From f17978001132abc1f1ad2458e90d3e8d66b025f4 Mon Sep 17 00:00:00 2001 From: resolritter Date: Sun, 12 Sep 2021 23:57:50 -0300 Subject: [PATCH 1/2] support more of the class syntax --- common/corpus/declarations.txt | 119 +++++++++++++++++++++++++++++++++ common/corpus/types.txt | 2 +- common/define-grammar.js | 21 +++--- 3 files changed, 132 insertions(+), 10 deletions(-) diff --git a/common/corpus/declarations.txt b/common/corpus/declarations.txt index 2c2e4cb0..91522a1b 100644 --- a/common/corpus/declarations.txt +++ b/common/corpus/declarations.txt @@ -877,3 +877,122 @@ export interface I { } (export_statement (class_declaration (type_identifier) (class_body))) (export_statement (interface_declaration (type_identifier) (object_type))) (export_statement (interface_declaration (type_identifier) (object_type)))) + +======================================= +Classes with generic parameters +======================================= + +class A< + B, + C, +> {} + +class D extends A< + X, + Y, +> {} + +--- + +(program + (class_declaration + (type_identifier) + (type_parameters (type_parameter (type_identifier)) (type_parameter (type_identifier))) + (class_body)) + (class_declaration + (type_identifier) + (class_heritage (extends_clause (generic_type + (type_identifier) + (type_arguments (type_identifier) (type_identifier))))) + (class_body))) + +======================================= +Classes with extensions +======================================= + +class A extends B(D) implements C {} +export class A extends B(D) implements C {} + +class A extends B(D) implements C {} +export class A extends B(D) implements C {} + +export class A extends B implements C {} + +--- + +(program + (class_declaration + (type_identifier) + (class_heritage + (extends_clause + (functional_extension + (generic_type + (type_identifier) + (type_arguments + (type_identifier))) + (arguments + (identifier)))) + (implements_clause + (type_identifier))) + (class_body)) + (export_statement + (class_declaration + (type_identifier) + (class_heritage + (extends_clause + (functional_extension + (generic_type + (type_identifier) + (type_arguments + (type_identifier))) + (arguments + (identifier)))) + (implements_clause + (type_identifier))) + (class_body))) + (class_declaration + (type_identifier) + (class_heritage + (extends_clause + (functional_extension + (generic_type + (type_identifier) + (type_arguments + (type_identifier))) + (arguments + (identifier)) + (type_arguments + (type_identifier)))) + (implements_clause + (type_identifier))) + (class_body)) + (export_statement + (class_declaration + (type_identifier) + (class_heritage + (extends_clause + (functional_extension + (generic_type + (type_identifier) + (type_arguments + (type_identifier))) + (arguments + (identifier)) + (type_arguments + (type_identifier)))) + (implements_clause + (type_identifier))) + (class_body))) + (export_statement + (class_declaration + (type_identifier) + (class_heritage + (extends_clause + (generic_type + (type_identifier) + (type_arguments + (type_identifier) + (type_identifier)))) + (implements_clause + (type_identifier))) + (class_body)))) diff --git a/common/corpus/types.txt b/common/corpus/types.txt index 8d11a60b..d420eee1 100644 --- a/common/corpus/types.txt +++ b/common/corpus/types.txt @@ -498,7 +498,7 @@ interface Enum extends Bar, Baz, funThatEvalsToInterface() { (extends_clause (type_identifier) (type_identifier) - (call_expression (identifier) (arguments))) + (functional_extension (type_identifier) (arguments))) (object_type (method_signature (accessibility_modifier) diff --git a/common/define-grammar.js b/common/define-grammar.js index c5139ca2..ca2a3cd7 100644 --- a/common/define-grammar.js +++ b/common/define-grammar.js @@ -36,7 +36,7 @@ module.exports = function defineGrammar(dialect) { [$.mapped_type_clause, $.primary_expression], [$.accessibility_modifier, $.primary_expression], ['unary_void', $.expression], - ['extends_type', $.primary_expression], + [$._extends_type, $.extends_clause, $.primary_expression], ['unary', 'assign'], ['declaration', $.expression], [$.predefined_type, $.unary_expression], @@ -255,7 +255,7 @@ module.exports = function defineGrammar(dialect) { previous, seq('export', 'type', $.export_clause), seq('export', '=', $.identifier, $._semicolon), - seq('export', 'as', 'namespace', $.identifier, $._semicolon) + seq('export', 'as', 'namespace', $.identifier, $._semicolon), ), non_null_expression: $ => prec.left('unary', seq( @@ -458,17 +458,20 @@ module.exports = function defineGrammar(dialect) { field('body', $.object_type) ), - extends_clause: $ => prec('extends_type', seq( + _extends_type: $ => choice( + $._type_identifier, + $.nested_type_identifier, + $.generic_type, + ), + functional_extension: $ => seq($._extends_type, $.arguments, optional($.type_arguments)), + + extends_clause: $ => seq( 'extends', commaSep1(choice( - prec('extends_type', choice( - $._type_identifier, - $.nested_type_identifier, - $.generic_type - )), + choice($._extends_type, $.functional_extension), $.expression )) - )), + ), enum_declaration: $ => seq( optional('const'), From af8df9944f7b8e9f00cbb9ed8e58cc94a7b86cbe Mon Sep 17 00:00:00 2001 From: resolritter Date: Tue, 14 Sep 2021 13:10:45 -0300 Subject: [PATCH 2/2] regenerate the parser --- tsx/src/grammar.json | 202 +- tsx/src/node-types.json | 55 +- tsx/src/parser.c | 404875 +++++++++++++++--------------- typescript/src/grammar.json | 202 +- typescript/src/node-types.json | 35 + typescript/src/parser.c | 391716 ++++++++++++++--------------- 6 files changed, 398784 insertions(+), 398301 deletions(-) diff --git a/tsx/src/grammar.json b/tsx/src/grammar.json index aa7617ca..30117c91 100644 --- a/tsx/src/grammar.json +++ b/tsx/src/grammar.json @@ -5260,7 +5260,7 @@ }, { "type": "PATTERN", - "value": "[^*]*\\*+([^\\/*][^*]*\\*+)*" + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" }, { "type": "STRING", @@ -5424,7 +5424,7 @@ }, { "type": "PATTERN", - "value": "[^\\/\\\\\\[\\n]" + "value": "[^/\\\\\\[\\n]" } ] } @@ -5947,13 +5947,13 @@ "members": [ { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] @@ -5970,13 +5970,13 @@ }, { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] @@ -7730,95 +7730,117 @@ } ] }, + "_extends_type": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "nested_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type" + } + ] + }, + "functional_extension": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_extends_type" + }, + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, "extends_clause": { - "type": "PREC", - "value": "extends_type", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "extends" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": "extends_type", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "nested_type_identifier" - }, - { - "type": "SYMBOL", - "name": "generic_type" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "SYMBOL", + "name": "_extends_type" }, { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": "extends_type", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "nested_type_identifier" - }, - { - "type": "SYMBOL", - "name": "generic_type" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] + "type": "SYMBOL", + "name": "functional_extension" } ] + }, + { + "type": "SYMBOL", + "name": "expression" } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_extends_type" + }, + { + "type": "SYMBOL", + "name": "functional_extension" + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] } - ] - } - ] - } + } + ] + } + ] }, "enum_declaration": { "type": "SEQ", @@ -10052,8 +10074,12 @@ ], [ { - "type": "STRING", - "value": "extends_type" + "type": "SYMBOL", + "name": "_extends_type" + }, + { + "type": "SYMBOL", + "name": "extends_clause" }, { "type": "SYMBOL", diff --git a/tsx/src/node-types.json b/tsx/src/node-types.json index 104d3bad..baf3a52f 100644 --- a/tsx/src/node-types.json +++ b/tsx/src/node-types.json @@ -1119,6 +1119,14 @@ { "type": "expression", "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true } ] }, @@ -2027,6 +2035,10 @@ "type": "expression", "named": true }, + { + "type": "functional_extension", + "named": true + }, { "type": "generic_type", "named": true @@ -2459,6 +2471,37 @@ ] } }, + { + "type": "functional_extension", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + }, + { + "type": "generic_type", + "named": true + }, + { + "type": "nested_type_identifier", + "named": true + }, + { + "type": "type_arguments", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, { "type": "generator_function", "named": true, @@ -3471,6 +3514,14 @@ { "type": "expression", "named": true + }, + { + "type": "identifier", + "named": true + }, + { + "type": "member_expression", + "named": true } ] }, @@ -5902,11 +5953,11 @@ }, { "type": "number", - "named": true + "named": false }, { "type": "number", - "named": false + "named": true }, { "type": "of", diff --git a/tsx/src/parser.c b/tsx/src/parser.c index fe6e0eaa..6e25caed 100644 --- a/tsx/src/parser.c +++ b/tsx/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 6140 -#define LARGE_STATE_COUNT 1264 -#define SYMBOL_COUNT 345 +#define STATE_COUNT 6150 +#define LARGE_STATE_COUNT 1265 +#define SYMBOL_COUNT 347 #define ALIAS_COUNT 6 #define TOKEN_COUNT 153 #define EXTERNAL_TOKEN_COUNT 4 @@ -286,87 +286,89 @@ enum { sym_import_alias = 267, sym_nested_type_identifier = 268, sym_interface_declaration = 269, - sym_extends_clause = 270, - sym_enum_declaration = 271, - sym_enum_body = 272, - sym_enum_assignment = 273, - sym_type_alias_declaration = 274, - sym_accessibility_modifier = 275, - sym_required_parameter = 276, - sym_optional_parameter = 277, - sym__parameter_name = 278, - sym_omitting_type_annotation = 279, - sym_opting_type_annotation = 280, - sym_type_annotation = 281, - sym_asserts = 282, - sym__type = 283, - sym_tuple_parameter = 284, - sym_optional_tuple_parameter = 285, - sym_optional_type = 286, - sym_rest_type = 287, - sym__tuple_type_member = 288, - sym_constructor_type = 289, - sym__primary_type = 290, - sym_infer_type = 291, - sym_conditional_type = 292, - sym_generic_type = 293, - sym_type_predicate = 294, - sym_type_predicate_annotation = 295, - sym_type_query = 296, - sym_index_type_query = 297, - sym_lookup_type = 298, - sym_mapped_type_clause = 299, - sym_literal_type = 300, - sym__number = 301, - sym_existential_type = 302, - sym_flow_maybe_type = 303, - sym_parenthesized_type = 304, - sym_predefined_type = 305, - sym_type_arguments = 306, - sym_object_type = 307, - sym_call_signature = 308, - sym_property_signature = 309, - sym_type_parameters = 310, - sym_type_parameter = 311, - sym_default_type = 312, - sym_constraint = 313, - sym_construct_signature = 314, - sym_index_signature = 315, - sym_array_type = 316, - sym_tuple_type = 317, - sym_readonly_type = 318, - sym_union_type = 319, - sym_intersection_type = 320, - sym_function_type = 321, - aux_sym_program_repeat1 = 322, - aux_sym_export_statement_repeat1 = 323, - aux_sym_export_clause_repeat1 = 324, - aux_sym_named_imports_repeat1 = 325, - aux_sym_variable_declaration_repeat1 = 326, - aux_sym_switch_body_repeat1 = 327, - aux_sym_object_repeat1 = 328, - aux_sym_object_pattern_repeat1 = 329, - aux_sym_array_repeat1 = 330, - aux_sym_array_pattern_repeat1 = 331, - aux_sym_jsx_element_repeat1 = 332, - aux_sym_string_repeat1 = 333, - aux_sym_string_repeat2 = 334, - aux_sym_template_string_repeat1 = 335, - aux_sym_class_body_repeat1 = 336, - aux_sym_formal_parameters_repeat1 = 337, - aux_sym__jsx_start_opening_element_repeat1 = 338, - aux_sym_implements_clause_repeat1 = 339, - aux_sym_extends_clause_repeat1 = 340, - aux_sym_enum_body_repeat1 = 341, - aux_sym_object_type_repeat1 = 342, - aux_sym_type_parameters_repeat1 = 343, - aux_sym_tuple_type_repeat1 = 344, - alias_sym_import_specifier = 345, - alias_sym_property_identifier = 346, - alias_sym_shorthand_property_identifier = 347, - alias_sym_shorthand_property_identifier_pattern = 348, - alias_sym_statement_identifier = 349, - alias_sym_type_identifier = 350, + sym__extends_type = 270, + sym_functional_extension = 271, + sym_extends_clause = 272, + sym_enum_declaration = 273, + sym_enum_body = 274, + sym_enum_assignment = 275, + sym_type_alias_declaration = 276, + sym_accessibility_modifier = 277, + sym_required_parameter = 278, + sym_optional_parameter = 279, + sym__parameter_name = 280, + sym_omitting_type_annotation = 281, + sym_opting_type_annotation = 282, + sym_type_annotation = 283, + sym_asserts = 284, + sym__type = 285, + sym_tuple_parameter = 286, + sym_optional_tuple_parameter = 287, + sym_optional_type = 288, + sym_rest_type = 289, + sym__tuple_type_member = 290, + sym_constructor_type = 291, + sym__primary_type = 292, + sym_infer_type = 293, + sym_conditional_type = 294, + sym_generic_type = 295, + sym_type_predicate = 296, + sym_type_predicate_annotation = 297, + sym_type_query = 298, + sym_index_type_query = 299, + sym_lookup_type = 300, + sym_mapped_type_clause = 301, + sym_literal_type = 302, + sym__number = 303, + sym_existential_type = 304, + sym_flow_maybe_type = 305, + sym_parenthesized_type = 306, + sym_predefined_type = 307, + sym_type_arguments = 308, + sym_object_type = 309, + sym_call_signature = 310, + sym_property_signature = 311, + sym_type_parameters = 312, + sym_type_parameter = 313, + sym_default_type = 314, + sym_constraint = 315, + sym_construct_signature = 316, + sym_index_signature = 317, + sym_array_type = 318, + sym_tuple_type = 319, + sym_readonly_type = 320, + sym_union_type = 321, + sym_intersection_type = 322, + sym_function_type = 323, + aux_sym_program_repeat1 = 324, + aux_sym_export_statement_repeat1 = 325, + aux_sym_export_clause_repeat1 = 326, + aux_sym_named_imports_repeat1 = 327, + aux_sym_variable_declaration_repeat1 = 328, + aux_sym_switch_body_repeat1 = 329, + aux_sym_object_repeat1 = 330, + aux_sym_object_pattern_repeat1 = 331, + aux_sym_array_repeat1 = 332, + aux_sym_array_pattern_repeat1 = 333, + aux_sym_jsx_element_repeat1 = 334, + aux_sym_string_repeat1 = 335, + aux_sym_string_repeat2 = 336, + aux_sym_template_string_repeat1 = 337, + aux_sym_class_body_repeat1 = 338, + aux_sym_formal_parameters_repeat1 = 339, + aux_sym__jsx_start_opening_element_repeat1 = 340, + aux_sym_implements_clause_repeat1 = 341, + aux_sym_extends_clause_repeat1 = 342, + aux_sym_enum_body_repeat1 = 343, + aux_sym_object_type_repeat1 = 344, + aux_sym_type_parameters_repeat1 = 345, + aux_sym_tuple_type_repeat1 = 346, + alias_sym_import_specifier = 347, + alias_sym_property_identifier = 348, + alias_sym_shorthand_property_identifier = 349, + alias_sym_shorthand_property_identifier_pattern = 350, + alias_sym_statement_identifier = 351, + alias_sym_type_identifier = 352, }; static const char *ts_symbol_names[] = { @@ -640,6 +642,8 @@ static const char *ts_symbol_names[] = { [sym_import_alias] = "import_alias", [sym_nested_type_identifier] = "nested_type_identifier", [sym_interface_declaration] = "interface_declaration", + [sym__extends_type] = "_extends_type", + [sym_functional_extension] = "functional_extension", [sym_extends_clause] = "extends_clause", [sym_enum_declaration] = "enum_declaration", [sym_enum_body] = "enum_body", @@ -994,6 +998,8 @@ static TSSymbol ts_symbol_map[] = { [sym_import_alias] = sym_import_alias, [sym_nested_type_identifier] = sym_nested_type_identifier, [sym_interface_declaration] = sym_interface_declaration, + [sym__extends_type] = sym__extends_type, + [sym_functional_extension] = sym_functional_extension, [sym_extends_clause] = sym_extends_clause, [sym_enum_declaration] = sym_enum_declaration, [sym_enum_body] = sym_enum_body, @@ -2162,6 +2168,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__extends_type] = { + .visible = false, + .named = true, + }, + [sym_functional_extension] = { + .visible = true, + .named = true, + }, [sym_extends_clause] = { .visible = true, .named = true, @@ -2611,48 +2625,48 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [39] = {.index = 55, .length = 1}, [40] = {.index = 56, .length = 2}, [41] = {.index = 58, .length = 2}, - [43] = {.index = 60, .length = 1}, - [44] = {.index = 61, .length = 2}, - [45] = {.index = 63, .length = 4}, - [46] = {.index = 67, .length = 2}, - [47] = {.index = 69, .length = 2}, - [48] = {.index = 24, .length = 2}, - [49] = {.index = 27, .length = 2}, - [50] = {.index = 56, .length = 2}, - [51] = {.index = 71, .length = 3}, + [42] = {.index = 60, .length = 1}, + [43] = {.index = 61, .length = 2}, + [44] = {.index = 63, .length = 4}, + [45] = {.index = 67, .length = 2}, + [46] = {.index = 69, .length = 2}, + [47] = {.index = 24, .length = 2}, + [48] = {.index = 27, .length = 2}, + [49] = {.index = 56, .length = 2}, + [50] = {.index = 71, .length = 3}, + [51] = {.index = 74, .length = 2}, [52] = {.index = 74, .length = 2}, - [53] = {.index = 74, .length = 2}, - [54] = {.index = 76, .length = 3}, - [55] = {.index = 79, .length = 2}, - [56] = {.index = 81, .length = 2}, - [57] = {.index = 83, .length = 4}, - [58] = {.index = 87, .length = 3}, - [59] = {.index = 90, .length = 2}, - [60] = {.index = 92, .length = 2}, - [61] = {.index = 94, .length = 1}, - [62] = {.index = 95, .length = 1}, - [63] = {.index = 96, .length = 1}, - [64] = {.index = 97, .length = 2}, - [65] = {.index = 24, .length = 2}, - [66] = {.index = 99, .length = 2}, - [67] = {.index = 101, .length = 5}, - [68] = {.index = 97, .length = 2}, - [69] = {.index = 106, .length = 1}, - [70] = {.index = 107, .length = 2}, - [71] = {.index = 109, .length = 3}, - [72] = {.index = 112, .length = 2}, - [73] = {.index = 114, .length = 3}, - [74] = {.index = 117, .length = 3}, - [75] = {.index = 120, .length = 2}, - [76] = {.index = 122, .length = 3}, - [77] = {.index = 125, .length = 2}, - [78] = {.index = 127, .length = 2}, - [79] = {.index = 129, .length = 2}, - [80] = {.index = 131, .length = 2}, - [81] = {.index = 133, .length = 4}, - [82] = {.index = 137, .length = 2}, - [83] = {.index = 139, .length = 3}, - [84] = {.index = 142, .length = 3}, + [53] = {.index = 76, .length = 3}, + [54] = {.index = 79, .length = 2}, + [55] = {.index = 81, .length = 2}, + [56] = {.index = 83, .length = 4}, + [57] = {.index = 87, .length = 3}, + [58] = {.index = 90, .length = 2}, + [59] = {.index = 92, .length = 2}, + [60] = {.index = 94, .length = 1}, + [61] = {.index = 95, .length = 1}, + [62] = {.index = 96, .length = 1}, + [63] = {.index = 97, .length = 2}, + [64] = {.index = 24, .length = 2}, + [65] = {.index = 99, .length = 2}, + [66] = {.index = 101, .length = 5}, + [67] = {.index = 97, .length = 2}, + [68] = {.index = 106, .length = 1}, + [69] = {.index = 107, .length = 2}, + [70] = {.index = 109, .length = 3}, + [71] = {.index = 112, .length = 2}, + [72] = {.index = 114, .length = 3}, + [73] = {.index = 117, .length = 3}, + [74] = {.index = 120, .length = 2}, + [75] = {.index = 122, .length = 3}, + [76] = {.index = 125, .length = 2}, + [77] = {.index = 127, .length = 2}, + [78] = {.index = 129, .length = 2}, + [79] = {.index = 131, .length = 2}, + [80] = {.index = 133, .length = 4}, + [81] = {.index = 137, .length = 2}, + [82] = {.index = 139, .length = 3}, + [83] = {.index = 142, .length = 3}, [85] = {.index = 145, .length = 2}, [86] = {.index = 147, .length = 2}, [87] = {.index = 149, .length = 4}, @@ -3387,22 +3401,22 @@ static TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGT [40] = { [1] = alias_sym_type_identifier, }, - [42] = { - [1] = alias_sym_type_identifier, - }, - [52] = { + [51] = { [2] = alias_sym_property_identifier, }, - [65] = { + [64] = { [0] = alias_sym_shorthand_property_identifier_pattern, }, - [68] = { + [67] = { [1] = alias_sym_import_specifier, }, + [81] = { + [1] = alias_sym_type_identifier, + }, [82] = { [1] = alias_sym_type_identifier, }, - [83] = { + [84] = { [1] = alias_sym_type_identifier, }, [86] = { @@ -3498,40 +3512,6 @@ static inline bool sym_identifier_character_set_1(int32_t c) { : c <= 65279))))); } -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < '`' - ? (c < '%' - ? (c < 0 - ? c == 0 - : c <= '#') - : (c <= '/' || (c < '[' - ? (c >= ':' && c <= '@') - : c <= '^'))) - : (c <= '~' || (c < 8288 - ? (c < 8203 - ? c == 160 - : c <= 8203) - : (c <= 8288 || c == 65279)))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < '`' - ? (c < '%' - ? (c < 0 - ? c == 0 - : c <= '#') - : (c <= '/' || (c < '[' - ? (c >= ':' && c <= '@') - : c <= '^'))) - : (c <= '`' || (c < 8203 - ? (c < 160 - ? (c >= '|' && c <= '~') - : c <= 160) - : (c <= 8203 || (c < 65279 - ? c == 8288 - : c <= 65279))))); -} - static inline bool sym_private_property_identifier_character_set_1(int32_t c) { return (c < '{' ? (c < '%' @@ -5164,7 +5144,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_regex_flags); if (lookahead == '\\') ADVANCE(35); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(204); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(217); + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '/' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '`' || '~' < lookahead) && + lookahead != 160 && + lookahead != 8203 && + lookahead != 8288 && + lookahead != 65279) ADVANCE(217); END_STATE(); case 205: ACCEPT_TOKEN(sym_number); @@ -5259,7 +5248,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(35); if (lookahead == '{') ADVANCE(200); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(217); + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '/' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead) && + lookahead != 160 && + lookahead != 8203 && + lookahead != 8288 && + lookahead != 65279) ADVANCE(217); END_STATE(); case 217: ACCEPT_TOKEN(sym_identifier); @@ -6385,7 +6384,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [89] = {.lex_state = 10}, [90] = {.lex_state = 10}, [91] = {.lex_state = 10}, - [92] = {.lex_state = 10}, + [92] = {.lex_state = 74, .external_lex_state = 2}, [93] = {.lex_state = 10}, [94] = {.lex_state = 10}, [95] = {.lex_state = 10}, @@ -6395,29 +6394,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [99] = {.lex_state = 10}, [100] = {.lex_state = 10}, [101] = {.lex_state = 10}, - [102] = {.lex_state = 74, .external_lex_state = 2}, + [102] = {.lex_state = 74, .external_lex_state = 3}, [103] = {.lex_state = 10}, [104] = {.lex_state = 10}, - [105] = {.lex_state = 74, .external_lex_state = 3}, + [105] = {.lex_state = 10}, [106] = {.lex_state = 10}, [107] = {.lex_state = 10}, [108] = {.lex_state = 10}, [109] = {.lex_state = 10}, - [110] = {.lex_state = 74, .external_lex_state = 2}, - [111] = {.lex_state = 74, .external_lex_state = 3}, - [112] = {.lex_state = 74, .external_lex_state = 4}, - [113] = {.lex_state = 74, .external_lex_state = 4}, + [110] = {.lex_state = 74, .external_lex_state = 4}, + [111] = {.lex_state = 74, .external_lex_state = 2}, + [112] = {.lex_state = 74, .external_lex_state = 3}, + [113] = {.lex_state = 74, .external_lex_state = 2}, [114] = {.lex_state = 74, .external_lex_state = 3}, - [115] = {.lex_state = 74, .external_lex_state = 2}, - [116] = {.lex_state = 74, .external_lex_state = 3}, - [117] = {.lex_state = 74, .external_lex_state = 3}, - [118] = {.lex_state = 2, .external_lex_state = 3}, - [119] = {.lex_state = 4, .external_lex_state = 3}, - [120] = {.lex_state = 74, .external_lex_state = 2}, + [115] = {.lex_state = 74, .external_lex_state = 4}, + [116] = {.lex_state = 2, .external_lex_state = 3}, + [117] = {.lex_state = 4, .external_lex_state = 3}, + [118] = {.lex_state = 74, .external_lex_state = 3}, + [119] = {.lex_state = 74, .external_lex_state = 3}, + [120] = {.lex_state = 74, .external_lex_state = 3}, [121] = {.lex_state = 74, .external_lex_state = 3}, - [122] = {.lex_state = 74, .external_lex_state = 3}, - [123] = {.lex_state = 74, .external_lex_state = 3}, - [124] = {.lex_state = 4, .external_lex_state = 3}, + [122] = {.lex_state = 74, .external_lex_state = 2}, + [123] = {.lex_state = 4, .external_lex_state = 3}, + [124] = {.lex_state = 74, .external_lex_state = 3}, [125] = {.lex_state = 74, .external_lex_state = 3}, [126] = {.lex_state = 74, .external_lex_state = 2}, [127] = {.lex_state = 74, .external_lex_state = 3}, @@ -6437,68 +6436,68 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [141] = {.lex_state = 2, .external_lex_state = 4}, [142] = {.lex_state = 2, .external_lex_state = 2}, [143] = {.lex_state = 2, .external_lex_state = 2}, - [144] = {.lex_state = 75}, - [145] = {.lex_state = 2, .external_lex_state = 3}, - [146] = {.lex_state = 75}, - [147] = {.lex_state = 2, .external_lex_state = 2}, - [148] = {.lex_state = 75}, + [144] = {.lex_state = 2, .external_lex_state = 2}, + [145] = {.lex_state = 75}, + [146] = {.lex_state = 74, .external_lex_state = 2}, + [147] = {.lex_state = 74, .external_lex_state = 2}, + [148] = {.lex_state = 2, .external_lex_state = 3}, [149] = {.lex_state = 75}, [150] = {.lex_state = 2, .external_lex_state = 3}, - [151] = {.lex_state = 74, .external_lex_state = 2}, + [151] = {.lex_state = 75}, [152] = {.lex_state = 2, .external_lex_state = 3}, - [153] = {.lex_state = 74, .external_lex_state = 2}, - [154] = {.lex_state = 74, .external_lex_state = 2}, - [155] = {.lex_state = 2, .external_lex_state = 3}, - [156] = {.lex_state = 74, .external_lex_state = 2}, + [153] = {.lex_state = 2, .external_lex_state = 3}, + [154] = {.lex_state = 75}, + [155] = {.lex_state = 74, .external_lex_state = 2}, + [156] = {.lex_state = 75}, [157] = {.lex_state = 75}, - [158] = {.lex_state = 2, .external_lex_state = 3}, - [159] = {.lex_state = 75}, - [160] = {.lex_state = 75}, - [161] = {.lex_state = 74, .external_lex_state = 2}, + [158] = {.lex_state = 74, .external_lex_state = 2}, + [159] = {.lex_state = 74, .external_lex_state = 2}, + [160] = {.lex_state = 2, .external_lex_state = 3}, + [161] = {.lex_state = 75}, [162] = {.lex_state = 74, .external_lex_state = 2}, [163] = {.lex_state = 74, .external_lex_state = 2}, - [164] = {.lex_state = 74, .external_lex_state = 2}, + [164] = {.lex_state = 2, .external_lex_state = 3}, [165] = {.lex_state = 74, .external_lex_state = 2}, - [166] = {.lex_state = 2, .external_lex_state = 3}, + [166] = {.lex_state = 74, .external_lex_state = 2}, [167] = {.lex_state = 74, .external_lex_state = 2}, [168] = {.lex_state = 74, .external_lex_state = 2}, [169] = {.lex_state = 75}, - [170] = {.lex_state = 74, .external_lex_state = 2}, - [171] = {.lex_state = 2, .external_lex_state = 2}, - [172] = {.lex_state = 2, .external_lex_state = 3}, - [173] = {.lex_state = 75}, - [174] = {.lex_state = 74, .external_lex_state = 2}, - [175] = {.lex_state = 74, .external_lex_state = 2}, - [176] = {.lex_state = 74, .external_lex_state = 2}, - [177] = {.lex_state = 2, .external_lex_state = 3}, - [178] = {.lex_state = 74, .external_lex_state = 2}, + [170] = {.lex_state = 75}, + [171] = {.lex_state = 74, .external_lex_state = 2}, + [172] = {.lex_state = 75}, + [173] = {.lex_state = 2, .external_lex_state = 2}, + [174] = {.lex_state = 75}, + [175] = {.lex_state = 2, .external_lex_state = 3}, + [176] = {.lex_state = 75}, + [177] = {.lex_state = 74, .external_lex_state = 2}, + [178] = {.lex_state = 2, .external_lex_state = 3}, [179] = {.lex_state = 74, .external_lex_state = 2}, - [180] = {.lex_state = 74, .external_lex_state = 2}, - [181] = {.lex_state = 2, .external_lex_state = 3}, - [182] = {.lex_state = 75}, - [183] = {.lex_state = 75}, + [180] = {.lex_state = 2, .external_lex_state = 3}, + [181] = {.lex_state = 75}, + [182] = {.lex_state = 74, .external_lex_state = 2}, + [183] = {.lex_state = 74, .external_lex_state = 2}, [184] = {.lex_state = 74, .external_lex_state = 2}, - [185] = {.lex_state = 75}, + [185] = {.lex_state = 74, .external_lex_state = 2}, [186] = {.lex_state = 74, .external_lex_state = 2}, - [187] = {.lex_state = 75}, - [188] = {.lex_state = 74, .external_lex_state = 2}, + [187] = {.lex_state = 74, .external_lex_state = 2}, + [188] = {.lex_state = 75}, [189] = {.lex_state = 74, .external_lex_state = 2}, - [190] = {.lex_state = 75}, - [191] = {.lex_state = 74, .external_lex_state = 2}, + [190] = {.lex_state = 74, .external_lex_state = 2}, + [191] = {.lex_state = 75}, [192] = {.lex_state = 74, .external_lex_state = 2}, - [193] = {.lex_state = 74, .external_lex_state = 2}, + [193] = {.lex_state = 75}, [194] = {.lex_state = 74, .external_lex_state = 2}, - [195] = {.lex_state = 75}, - [196] = {.lex_state = 2, .external_lex_state = 3}, - [197] = {.lex_state = 74, .external_lex_state = 2}, + [195] = {.lex_state = 2, .external_lex_state = 3}, + [196] = {.lex_state = 75}, + [197] = {.lex_state = 75}, [198] = {.lex_state = 2, .external_lex_state = 3}, [199] = {.lex_state = 75}, - [200] = {.lex_state = 75}, - [201] = {.lex_state = 75}, - [202] = {.lex_state = 75}, - [203] = {.lex_state = 75, .external_lex_state = 5}, + [200] = {.lex_state = 74, .external_lex_state = 2}, + [201] = {.lex_state = 74, .external_lex_state = 2}, + [202] = {.lex_state = 74, .external_lex_state = 2}, + [203] = {.lex_state = 2, .external_lex_state = 3}, [204] = {.lex_state = 75}, - [205] = {.lex_state = 2, .external_lex_state = 3}, + [205] = {.lex_state = 75, .external_lex_state = 5}, [206] = {.lex_state = 2, .external_lex_state = 3}, [207] = {.lex_state = 75}, [208] = {.lex_state = 2, .external_lex_state = 3}, @@ -6544,12 +6543,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [248] = {.lex_state = 75}, [249] = {.lex_state = 75}, [250] = {.lex_state = 75}, - [251] = {.lex_state = 75, .external_lex_state = 5}, + [251] = {.lex_state = 75}, [252] = {.lex_state = 75}, [253] = {.lex_state = 75}, [254] = {.lex_state = 75}, [255] = {.lex_state = 75}, - [256] = {.lex_state = 75}, + [256] = {.lex_state = 3, .external_lex_state = 2}, [257] = {.lex_state = 75}, [258] = {.lex_state = 75}, [259] = {.lex_state = 75}, @@ -6559,48 +6558,48 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [263] = {.lex_state = 75}, [264] = {.lex_state = 75}, [265] = {.lex_state = 75}, - [266] = {.lex_state = 3, .external_lex_state = 2}, + [266] = {.lex_state = 75}, [267] = {.lex_state = 75}, [268] = {.lex_state = 75}, [269] = {.lex_state = 75}, [270] = {.lex_state = 75}, [271] = {.lex_state = 75}, [272] = {.lex_state = 75}, - [273] = {.lex_state = 75}, + [273] = {.lex_state = 3, .external_lex_state = 2}, [274] = {.lex_state = 75}, [275] = {.lex_state = 75}, [276] = {.lex_state = 75}, [277] = {.lex_state = 75}, - [278] = {.lex_state = 3, .external_lex_state = 2}, + [278] = {.lex_state = 75}, [279] = {.lex_state = 75}, [280] = {.lex_state = 75}, [281] = {.lex_state = 3, .external_lex_state = 2}, - [282] = {.lex_state = 75}, + [282] = {.lex_state = 3, .external_lex_state = 2}, [283] = {.lex_state = 75}, [284] = {.lex_state = 75}, [285] = {.lex_state = 75}, [286] = {.lex_state = 75}, [287] = {.lex_state = 75}, [288] = {.lex_state = 75}, - [289] = {.lex_state = 3, .external_lex_state = 2}, + [289] = {.lex_state = 75}, [290] = {.lex_state = 75}, - [291] = {.lex_state = 75}, + [291] = {.lex_state = 3, .external_lex_state = 2}, [292] = {.lex_state = 75}, [293] = {.lex_state = 75}, [294] = {.lex_state = 75}, [295] = {.lex_state = 75}, [296] = {.lex_state = 75}, [297] = {.lex_state = 75}, - [298] = {.lex_state = 3, .external_lex_state = 2}, + [298] = {.lex_state = 75}, [299] = {.lex_state = 75}, - [300] = {.lex_state = 75}, - [301] = {.lex_state = 3, .external_lex_state = 2}, + [300] = {.lex_state = 3, .external_lex_state = 2}, + [301] = {.lex_state = 75}, [302] = {.lex_state = 75}, - [303] = {.lex_state = 3, .external_lex_state = 2}, + [303] = {.lex_state = 75}, [304] = {.lex_state = 75}, - [305] = {.lex_state = 75}, + [305] = {.lex_state = 75, .external_lex_state = 5}, [306] = {.lex_state = 75}, - [307] = {.lex_state = 75}, + [307] = {.lex_state = 3, .external_lex_state = 2}, [308] = {.lex_state = 75}, [309] = {.lex_state = 75}, [310] = {.lex_state = 75}, @@ -6807,7 +6806,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [511] = {.lex_state = 75}, [512] = {.lex_state = 75}, [513] = {.lex_state = 75}, - [514] = {.lex_state = 75}, + [514] = {.lex_state = 3, .external_lex_state = 2}, [515] = {.lex_state = 75}, [516] = {.lex_state = 75}, [517] = {.lex_state = 75}, @@ -6834,7 +6833,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [538] = {.lex_state = 75}, [539] = {.lex_state = 75}, [540] = {.lex_state = 75}, - [541] = {.lex_state = 75}, + [541] = {.lex_state = 2, .external_lex_state = 2}, [542] = {.lex_state = 75}, [543] = {.lex_state = 75}, [544] = {.lex_state = 75}, @@ -6850,7 +6849,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [554] = {.lex_state = 75}, [555] = {.lex_state = 75}, [556] = {.lex_state = 75}, - [557] = {.lex_state = 2, .external_lex_state = 2}, + [557] = {.lex_state = 75}, [558] = {.lex_state = 75}, [559] = {.lex_state = 75}, [560] = {.lex_state = 75}, @@ -6891,7 +6890,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [595] = {.lex_state = 75}, [596] = {.lex_state = 75}, [597] = {.lex_state = 75}, - [598] = {.lex_state = 3, .external_lex_state = 2}, + [598] = {.lex_state = 75}, [599] = {.lex_state = 75}, [600] = {.lex_state = 75}, [601] = {.lex_state = 75}, @@ -6900,7 +6899,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [604] = {.lex_state = 75}, [605] = {.lex_state = 75}, [606] = {.lex_state = 75}, - [607] = {.lex_state = 2, .external_lex_state = 2}, + [607] = {.lex_state = 75}, [608] = {.lex_state = 75}, [609] = {.lex_state = 75}, [610] = {.lex_state = 75}, @@ -6920,11 +6919,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [624] = {.lex_state = 75}, [625] = {.lex_state = 75}, [626] = {.lex_state = 75}, - [627] = {.lex_state = 2, .external_lex_state = 2}, + [627] = {.lex_state = 75}, [628] = {.lex_state = 75}, [629] = {.lex_state = 75}, [630] = {.lex_state = 75}, - [631] = {.lex_state = 75}, + [631] = {.lex_state = 2, .external_lex_state = 2}, [632] = {.lex_state = 75}, [633] = {.lex_state = 75}, [634] = {.lex_state = 75}, @@ -6941,7 +6940,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [645] = {.lex_state = 75}, [646] = {.lex_state = 75}, [647] = {.lex_state = 75}, - [648] = {.lex_state = 2, .external_lex_state = 2}, + [648] = {.lex_state = 75}, [649] = {.lex_state = 75}, [650] = {.lex_state = 75}, [651] = {.lex_state = 75}, @@ -6949,14 +6948,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [653] = {.lex_state = 75}, [654] = {.lex_state = 75}, [655] = {.lex_state = 75}, - [656] = {.lex_state = 2, .external_lex_state = 2}, + [656] = {.lex_state = 75}, [657] = {.lex_state = 75}, [658] = {.lex_state = 75}, [659] = {.lex_state = 75}, [660] = {.lex_state = 75}, [661] = {.lex_state = 75}, [662] = {.lex_state = 75}, - [663] = {.lex_state = 2, .external_lex_state = 2}, + [663] = {.lex_state = 75}, [664] = {.lex_state = 75}, [665] = {.lex_state = 75}, [666] = {.lex_state = 75}, @@ -6968,7 +6967,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [672] = {.lex_state = 75}, [673] = {.lex_state = 75}, [674] = {.lex_state = 75}, - [675] = {.lex_state = 2, .external_lex_state = 2}, + [675] = {.lex_state = 75}, [676] = {.lex_state = 75}, [677] = {.lex_state = 75}, [678] = {.lex_state = 75}, @@ -6983,11 +6982,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [687] = {.lex_state = 75}, [688] = {.lex_state = 75}, [689] = {.lex_state = 75}, - [690] = {.lex_state = 3, .external_lex_state = 2}, + [690] = {.lex_state = 75}, [691] = {.lex_state = 75}, [692] = {.lex_state = 75}, [693] = {.lex_state = 75}, - [694] = {.lex_state = 3, .external_lex_state = 2}, + [694] = {.lex_state = 75}, [695] = {.lex_state = 75}, [696] = {.lex_state = 75}, [697] = {.lex_state = 75}, @@ -7031,7 +7030,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [735] = {.lex_state = 75}, [736] = {.lex_state = 75}, [737] = {.lex_state = 75}, - [738] = {.lex_state = 75}, + [738] = {.lex_state = 2, .external_lex_state = 2}, [739] = {.lex_state = 75}, [740] = {.lex_state = 75}, [741] = {.lex_state = 75}, @@ -7068,8 +7067,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [772] = {.lex_state = 75}, [773] = {.lex_state = 75}, [774] = {.lex_state = 75}, - [775] = {.lex_state = 75}, - [776] = {.lex_state = 75}, + [775] = {.lex_state = 2, .external_lex_state = 2}, + [776] = {.lex_state = 2, .external_lex_state = 2}, [777] = {.lex_state = 75}, [778] = {.lex_state = 75}, [779] = {.lex_state = 75}, @@ -7102,13 +7101,13 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [806] = {.lex_state = 75}, [807] = {.lex_state = 75}, [808] = {.lex_state = 75}, - [809] = {.lex_state = 75}, + [809] = {.lex_state = 3, .external_lex_state = 2}, [810] = {.lex_state = 75}, [811] = {.lex_state = 75}, [812] = {.lex_state = 75}, [813] = {.lex_state = 75}, [814] = {.lex_state = 75}, - [815] = {.lex_state = 75}, + [815] = {.lex_state = 2, .external_lex_state = 2}, [816] = {.lex_state = 75}, [817] = {.lex_state = 75}, [818] = {.lex_state = 75}, @@ -7123,7 +7122,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [827] = {.lex_state = 75}, [828] = {.lex_state = 75}, [829] = {.lex_state = 75}, - [830] = {.lex_state = 75}, + [830] = {.lex_state = 3, .external_lex_state = 2}, [831] = {.lex_state = 75}, [832] = {.lex_state = 75}, [833] = {.lex_state = 75}, @@ -7171,7 +7170,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [875] = {.lex_state = 75}, [876] = {.lex_state = 75}, [877] = {.lex_state = 75}, - [878] = {.lex_state = 75}, + [878] = {.lex_state = 2, .external_lex_state = 2}, [879] = {.lex_state = 75}, [880] = {.lex_state = 75}, [881] = {.lex_state = 75}, @@ -7203,7 +7202,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [907] = {.lex_state = 75}, [908] = {.lex_state = 75}, [909] = {.lex_state = 75}, - [910] = {.lex_state = 2, .external_lex_state = 2}, + [910] = {.lex_state = 75}, [911] = {.lex_state = 2, .external_lex_state = 2}, [912] = {.lex_state = 2, .external_lex_state = 2}, [913] = {.lex_state = 2, .external_lex_state = 2}, @@ -7217,26 +7216,26 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [921] = {.lex_state = 2, .external_lex_state = 2}, [922] = {.lex_state = 2, .external_lex_state = 2}, [923] = {.lex_state = 2, .external_lex_state = 2}, - [924] = {.lex_state = 2, .external_lex_state = 2}, - [925] = {.lex_state = 2, .external_lex_state = 2}, + [924] = {.lex_state = 75}, + [925] = {.lex_state = 75}, [926] = {.lex_state = 2, .external_lex_state = 2}, - [927] = {.lex_state = 75}, + [927] = {.lex_state = 2, .external_lex_state = 2}, [928] = {.lex_state = 2, .external_lex_state = 2}, [929] = {.lex_state = 75}, - [930] = {.lex_state = 2, .external_lex_state = 2}, - [931] = {.lex_state = 75}, + [930] = {.lex_state = 75}, + [931] = {.lex_state = 2, .external_lex_state = 2}, [932] = {.lex_state = 2, .external_lex_state = 2}, [933] = {.lex_state = 2, .external_lex_state = 2}, [934] = {.lex_state = 2, .external_lex_state = 2}, [935] = {.lex_state = 75}, - [936] = {.lex_state = 75}, - [937] = {.lex_state = 75}, - [938] = {.lex_state = 2, .external_lex_state = 2}, + [936] = {.lex_state = 2, .external_lex_state = 2}, + [937] = {.lex_state = 2, .external_lex_state = 2}, + [938] = {.lex_state = 75}, [939] = {.lex_state = 2, .external_lex_state = 2}, - [940] = {.lex_state = 2, .external_lex_state = 2}, + [940] = {.lex_state = 75}, [941] = {.lex_state = 2, .external_lex_state = 2}, [942] = {.lex_state = 2, .external_lex_state = 2}, - [943] = {.lex_state = 75}, + [943] = {.lex_state = 2, .external_lex_state = 2}, [944] = {.lex_state = 2, .external_lex_state = 2}, [945] = {.lex_state = 2, .external_lex_state = 2}, [946] = {.lex_state = 2, .external_lex_state = 2}, @@ -7244,7 +7243,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [948] = {.lex_state = 2, .external_lex_state = 2}, [949] = {.lex_state = 2, .external_lex_state = 2}, [950] = {.lex_state = 2, .external_lex_state = 2}, - [951] = {.lex_state = 11}, + [951] = {.lex_state = 2, .external_lex_state = 2}, [952] = {.lex_state = 11}, [953] = {.lex_state = 11}, [954] = {.lex_state = 11}, @@ -7255,115 +7254,115 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [959] = {.lex_state = 11}, [960] = {.lex_state = 11}, [961] = {.lex_state = 11}, - [962] = {.lex_state = 2, .external_lex_state = 2}, - [963] = {.lex_state = 2, .external_lex_state = 2}, - [964] = {.lex_state = 3, .external_lex_state = 3}, + [962] = {.lex_state = 11}, + [963] = {.lex_state = 3, .external_lex_state = 3}, + [964] = {.lex_state = 2, .external_lex_state = 2}, [965] = {.lex_state = 3, .external_lex_state = 2}, - [966] = {.lex_state = 3, .external_lex_state = 3}, + [966] = {.lex_state = 3, .external_lex_state = 2}, [967] = {.lex_state = 2, .external_lex_state = 2}, [968] = {.lex_state = 2, .external_lex_state = 2}, - [969] = {.lex_state = 2, .external_lex_state = 2}, + [969] = {.lex_state = 3, .external_lex_state = 3}, [970] = {.lex_state = 2, .external_lex_state = 2}, - [971] = {.lex_state = 3, .external_lex_state = 2}, + [971] = {.lex_state = 2, .external_lex_state = 2}, [972] = {.lex_state = 2, .external_lex_state = 2}, - [973] = {.lex_state = 3, .external_lex_state = 3}, - [974] = {.lex_state = 3, .external_lex_state = 4}, - [975] = {.lex_state = 3, .external_lex_state = 4}, + [973] = {.lex_state = 2, .external_lex_state = 2}, + [974] = {.lex_state = 3, .external_lex_state = 3}, + [975] = {.lex_state = 2, .external_lex_state = 3}, [976] = {.lex_state = 3, .external_lex_state = 4}, - [977] = {.lex_state = 2, .external_lex_state = 2}, - [978] = {.lex_state = 2, .external_lex_state = 3}, - [979] = {.lex_state = 2, .external_lex_state = 3}, + [977] = {.lex_state = 3, .external_lex_state = 4}, + [978] = {.lex_state = 2, .external_lex_state = 2}, + [979] = {.lex_state = 3, .external_lex_state = 4}, [980] = {.lex_state = 2, .external_lex_state = 3}, - [981] = {.lex_state = 3, .external_lex_state = 3}, - [982] = {.lex_state = 2, .external_lex_state = 2}, + [981] = {.lex_state = 2, .external_lex_state = 3}, + [982] = {.lex_state = 3, .external_lex_state = 4}, [983] = {.lex_state = 3, .external_lex_state = 4}, - [984] = {.lex_state = 3, .external_lex_state = 4}, - [985] = {.lex_state = 2, .external_lex_state = 2}, - [986] = {.lex_state = 2, .external_lex_state = 3}, + [984] = {.lex_state = 2, .external_lex_state = 2}, + [985] = {.lex_state = 3, .external_lex_state = 3}, + [986] = {.lex_state = 2, .external_lex_state = 2}, [987] = {.lex_state = 2, .external_lex_state = 2}, - [988] = {.lex_state = 2, .external_lex_state = 2}, + [988] = {.lex_state = 3, .external_lex_state = 3}, [989] = {.lex_state = 2, .external_lex_state = 2}, - [990] = {.lex_state = 2, .external_lex_state = 2}, + [990] = {.lex_state = 3, .external_lex_state = 3}, [991] = {.lex_state = 2, .external_lex_state = 2}, [992] = {.lex_state = 2, .external_lex_state = 2}, [993] = {.lex_state = 2, .external_lex_state = 3}, - [994] = {.lex_state = 3, .external_lex_state = 3}, + [994] = {.lex_state = 2, .external_lex_state = 3}, [995] = {.lex_state = 2, .external_lex_state = 3}, - [996] = {.lex_state = 3, .external_lex_state = 3}, - [997] = {.lex_state = 2, .external_lex_state = 3}, + [996] = {.lex_state = 2, .external_lex_state = 2}, + [997] = {.lex_state = 2, .external_lex_state = 2}, [998] = {.lex_state = 2, .external_lex_state = 2}, - [999] = {.lex_state = 3, .external_lex_state = 3}, - [1000] = {.lex_state = 2, .external_lex_state = 2}, - [1001] = {.lex_state = 3, .external_lex_state = 3}, - [1002] = {.lex_state = 2, .external_lex_state = 2}, + [999] = {.lex_state = 2, .external_lex_state = 3}, + [1000] = {.lex_state = 3, .external_lex_state = 3}, + [1001] = {.lex_state = 2, .external_lex_state = 2}, + [1002] = {.lex_state = 3, .external_lex_state = 3}, [1003] = {.lex_state = 3, .external_lex_state = 3}, - [1004] = {.lex_state = 2, .external_lex_state = 3}, + [1004] = {.lex_state = 2, .external_lex_state = 2}, [1005] = {.lex_state = 2, .external_lex_state = 3}, - [1006] = {.lex_state = 2, .external_lex_state = 3}, + [1006] = {.lex_state = 75, .external_lex_state = 5}, [1007] = {.lex_state = 2, .external_lex_state = 3}, [1008] = {.lex_state = 2, .external_lex_state = 3}, - [1009] = {.lex_state = 75, .external_lex_state = 5}, - [1010] = {.lex_state = 11}, - [1011] = {.lex_state = 3, .external_lex_state = 3}, + [1009] = {.lex_state = 2, .external_lex_state = 2}, + [1010] = {.lex_state = 3, .external_lex_state = 3}, + [1011] = {.lex_state = 2, .external_lex_state = 3}, [1012] = {.lex_state = 2, .external_lex_state = 3}, - [1013] = {.lex_state = 2, .external_lex_state = 3}, - [1014] = {.lex_state = 75}, + [1013] = {.lex_state = 11}, + [1014] = {.lex_state = 2, .external_lex_state = 3}, [1015] = {.lex_state = 75, .external_lex_state = 5}, - [1016] = {.lex_state = 2, .external_lex_state = 2}, - [1017] = {.lex_state = 2, .external_lex_state = 3}, - [1018] = {.lex_state = 2, .external_lex_state = 2}, - [1019] = {.lex_state = 3, .external_lex_state = 3}, - [1020] = {.lex_state = 2, .external_lex_state = 3}, - [1021] = {.lex_state = 75}, - [1022] = {.lex_state = 2, .external_lex_state = 3}, + [1016] = {.lex_state = 2, .external_lex_state = 3}, + [1017] = {.lex_state = 2, .external_lex_state = 2}, + [1018] = {.lex_state = 2, .external_lex_state = 3}, + [1019] = {.lex_state = 75}, + [1020] = {.lex_state = 3, .external_lex_state = 3}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, + [1022] = {.lex_state = 75}, [1023] = {.lex_state = 2, .external_lex_state = 2}, [1024] = {.lex_state = 2, .external_lex_state = 3}, - [1025] = {.lex_state = 2, .external_lex_state = 2}, + [1025] = {.lex_state = 2, .external_lex_state = 3}, [1026] = {.lex_state = 2, .external_lex_state = 3}, - [1027] = {.lex_state = 2, .external_lex_state = 3}, - [1028] = {.lex_state = 2, .external_lex_state = 3}, + [1027] = {.lex_state = 2, .external_lex_state = 2}, + [1028] = {.lex_state = 75, .external_lex_state = 5}, [1029] = {.lex_state = 2, .external_lex_state = 3}, - [1030] = {.lex_state = 75, .external_lex_state = 5}, - [1031] = {.lex_state = 2, .external_lex_state = 3}, + [1030] = {.lex_state = 2, .external_lex_state = 3}, + [1031] = {.lex_state = 2, .external_lex_state = 2}, [1032] = {.lex_state = 75, .external_lex_state = 5}, - [1033] = {.lex_state = 75, .external_lex_state = 5}, + [1033] = {.lex_state = 2, .external_lex_state = 2}, [1034] = {.lex_state = 2, .external_lex_state = 3}, - [1035] = {.lex_state = 2, .external_lex_state = 2}, - [1036] = {.lex_state = 2, .external_lex_state = 2}, - [1037] = {.lex_state = 75, .external_lex_state = 5}, - [1038] = {.lex_state = 2, .external_lex_state = 2}, - [1039] = {.lex_state = 75}, - [1040] = {.lex_state = 3, .external_lex_state = 3}, - [1041] = {.lex_state = 2, .external_lex_state = 3}, - [1042] = {.lex_state = 75, .external_lex_state = 5}, - [1043] = {.lex_state = 2, .external_lex_state = 3}, - [1044] = {.lex_state = 75, .external_lex_state = 5}, + [1035] = {.lex_state = 75, .external_lex_state = 5}, + [1036] = {.lex_state = 75, .external_lex_state = 5}, + [1037] = {.lex_state = 2, .external_lex_state = 2}, + [1038] = {.lex_state = 2, .external_lex_state = 3}, + [1039] = {.lex_state = 3, .external_lex_state = 3}, + [1040] = {.lex_state = 75, .external_lex_state = 5}, + [1041] = {.lex_state = 75}, + [1042] = {.lex_state = 2, .external_lex_state = 3}, + [1043] = {.lex_state = 75, .external_lex_state = 5}, + [1044] = {.lex_state = 2, .external_lex_state = 3}, [1045] = {.lex_state = 2, .external_lex_state = 3}, [1046] = {.lex_state = 2, .external_lex_state = 3}, - [1047] = {.lex_state = 2, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, - [1049] = {.lex_state = 75}, - [1050] = {.lex_state = 75}, - [1051] = {.lex_state = 75, .external_lex_state = 5}, - [1052] = {.lex_state = 75, .external_lex_state = 5}, + [1047] = {.lex_state = 75}, + [1048] = {.lex_state = 75}, + [1049] = {.lex_state = 2, .external_lex_state = 3}, + [1050] = {.lex_state = 2, .external_lex_state = 3}, + [1051] = {.lex_state = 2, .external_lex_state = 3}, + [1052] = {.lex_state = 75}, [1053] = {.lex_state = 75}, [1054] = {.lex_state = 75, .external_lex_state = 5}, - [1055] = {.lex_state = 75}, - [1056] = {.lex_state = 75}, - [1057] = {.lex_state = 75}, - [1058] = {.lex_state = 75}, + [1055] = {.lex_state = 75, .external_lex_state = 5}, + [1056] = {.lex_state = 75, .external_lex_state = 5}, + [1057] = {.lex_state = 75, .external_lex_state = 5}, + [1058] = {.lex_state = 75, .external_lex_state = 5}, [1059] = {.lex_state = 75}, [1060] = {.lex_state = 75, .external_lex_state = 5}, [1061] = {.lex_state = 75, .external_lex_state = 5}, - [1062] = {.lex_state = 75}, + [1062] = {.lex_state = 75, .external_lex_state = 5}, [1063] = {.lex_state = 75, .external_lex_state = 5}, - [1064] = {.lex_state = 75}, + [1064] = {.lex_state = 75, .external_lex_state = 5}, [1065] = {.lex_state = 75, .external_lex_state = 5}, - [1066] = {.lex_state = 75, .external_lex_state = 5}, + [1066] = {.lex_state = 75}, [1067] = {.lex_state = 75, .external_lex_state = 5}, - [1068] = {.lex_state = 75, .external_lex_state = 5}, - [1069] = {.lex_state = 75, .external_lex_state = 5}, - [1070] = {.lex_state = 75, .external_lex_state = 5}, + [1068] = {.lex_state = 75}, + [1069] = {.lex_state = 75}, + [1070] = {.lex_state = 75}, [1071] = {.lex_state = 75}, [1072] = {.lex_state = 75}, [1073] = {.lex_state = 75}, @@ -7435,11 +7434,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1139] = {.lex_state = 75}, [1140] = {.lex_state = 75}, [1141] = {.lex_state = 75}, - [1142] = {.lex_state = 75}, + [1142] = {.lex_state = 11}, [1143] = {.lex_state = 75}, [1144] = {.lex_state = 75}, [1145] = {.lex_state = 75}, - [1146] = {.lex_state = 11}, + [1146] = {.lex_state = 75}, [1147] = {.lex_state = 75}, [1148] = {.lex_state = 75}, [1149] = {.lex_state = 75}, @@ -7513,154 +7512,154 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1217] = {.lex_state = 75}, [1218] = {.lex_state = 75}, [1219] = {.lex_state = 75}, - [1220] = {.lex_state = 11}, - [1221] = {.lex_state = 11}, - [1222] = {.lex_state = 11}, - [1223] = {.lex_state = 3, .external_lex_state = 3}, + [1220] = {.lex_state = 75}, + [1221] = {.lex_state = 2, .external_lex_state = 2}, + [1222] = {.lex_state = 2, .external_lex_state = 2}, + [1223] = {.lex_state = 2, .external_lex_state = 2}, [1224] = {.lex_state = 2, .external_lex_state = 2}, - [1225] = {.lex_state = 2, .external_lex_state = 2}, - [1226] = {.lex_state = 11}, - [1227] = {.lex_state = 11}, - [1228] = {.lex_state = 3, .external_lex_state = 2}, + [1225] = {.lex_state = 3, .external_lex_state = 2}, + [1226] = {.lex_state = 2, .external_lex_state = 2}, + [1227] = {.lex_state = 2, .external_lex_state = 2}, + [1228] = {.lex_state = 11}, [1229] = {.lex_state = 2, .external_lex_state = 2}, - [1230] = {.lex_state = 11}, - [1231] = {.lex_state = 3, .external_lex_state = 2}, - [1232] = {.lex_state = 2, .external_lex_state = 2}, - [1233] = {.lex_state = 2, .external_lex_state = 2}, - [1234] = {.lex_state = 3, .external_lex_state = 3}, + [1230] = {.lex_state = 2, .external_lex_state = 2}, + [1231] = {.lex_state = 2, .external_lex_state = 2}, + [1232] = {.lex_state = 11}, + [1233] = {.lex_state = 3, .external_lex_state = 3}, + [1234] = {.lex_state = 3, .external_lex_state = 2}, [1235] = {.lex_state = 2, .external_lex_state = 2}, [1236] = {.lex_state = 2, .external_lex_state = 2}, [1237] = {.lex_state = 2, .external_lex_state = 2}, - [1238] = {.lex_state = 2, .external_lex_state = 2}, - [1239] = {.lex_state = 2, .external_lex_state = 2}, - [1240] = {.lex_state = 2, .external_lex_state = 2}, + [1238] = {.lex_state = 11}, + [1239] = {.lex_state = 11}, + [1240] = {.lex_state = 11}, [1241] = {.lex_state = 2, .external_lex_state = 2}, - [1242] = {.lex_state = 11}, - [1243] = {.lex_state = 2, .external_lex_state = 2}, - [1244] = {.lex_state = 2, .external_lex_state = 2}, + [1242] = {.lex_state = 2, .external_lex_state = 2}, + [1243] = {.lex_state = 11}, + [1244] = {.lex_state = 3, .external_lex_state = 3}, [1245] = {.lex_state = 11}, [1246] = {.lex_state = 11}, [1247] = {.lex_state = 11}, - [1248] = {.lex_state = 11}, + [1248] = {.lex_state = 3, .external_lex_state = 4}, [1249] = {.lex_state = 11}, [1250] = {.lex_state = 11}, [1251] = {.lex_state = 11}, - [1252] = {.lex_state = 11}, + [1252] = {.lex_state = 3, .external_lex_state = 4}, [1253] = {.lex_state = 11}, [1254] = {.lex_state = 11}, - [1255] = {.lex_state = 2, .external_lex_state = 3}, - [1256] = {.lex_state = 3, .external_lex_state = 4}, - [1257] = {.lex_state = 2, .external_lex_state = 2}, - [1258] = {.lex_state = 11}, + [1255] = {.lex_state = 2, .external_lex_state = 2}, + [1256] = {.lex_state = 11}, + [1257] = {.lex_state = 11}, + [1258] = {.lex_state = 2, .external_lex_state = 3}, [1259] = {.lex_state = 11}, - [1260] = {.lex_state = 11}, - [1261] = {.lex_state = 3, .external_lex_state = 4}, - [1262] = {.lex_state = 3, .external_lex_state = 4}, + [1260] = {.lex_state = 3, .external_lex_state = 4}, + [1261] = {.lex_state = 11}, + [1262] = {.lex_state = 11}, [1263] = {.lex_state = 11}, - [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 2, .external_lex_state = 2}, - [1266] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 11}, + [1265] = {.lex_state = 2, .external_lex_state = 3}, + [1266] = {.lex_state = 11}, [1267] = {.lex_state = 3, .external_lex_state = 4}, - [1268] = {.lex_state = 3, .external_lex_state = 3}, - [1269] = {.lex_state = 11}, - [1270] = {.lex_state = 3, .external_lex_state = 4}, - [1271] = {.lex_state = 13}, - [1272] = {.lex_state = 2, .external_lex_state = 2}, - [1273] = {.lex_state = 13}, + [1268] = {.lex_state = 2, .external_lex_state = 2}, + [1269] = {.lex_state = 3, .external_lex_state = 4}, + [1270] = {.lex_state = 2, .external_lex_state = 3}, + [1271] = {.lex_state = 3, .external_lex_state = 3}, + [1272] = {.lex_state = 13}, + [1273] = {.lex_state = 3, .external_lex_state = 3}, [1274] = {.lex_state = 2, .external_lex_state = 2}, - [1275] = {.lex_state = 3, .external_lex_state = 3}, - [1276] = {.lex_state = 2, .external_lex_state = 2}, + [1275] = {.lex_state = 2, .external_lex_state = 2}, + [1276] = {.lex_state = 13}, [1277] = {.lex_state = 13}, - [1278] = {.lex_state = 2, .external_lex_state = 3}, - [1279] = {.lex_state = 2, .external_lex_state = 3}, - [1280] = {.lex_state = 13}, - [1281] = {.lex_state = 13}, - [1282] = {.lex_state = 2, .external_lex_state = 2}, - [1283] = {.lex_state = 13}, - [1284] = {.lex_state = 13}, + [1278] = {.lex_state = 13}, + [1279] = {.lex_state = 3, .external_lex_state = 3}, + [1280] = {.lex_state = 2, .external_lex_state = 2}, + [1281] = {.lex_state = 2, .external_lex_state = 2}, + [1282] = {.lex_state = 13}, + [1283] = {.lex_state = 2, .external_lex_state = 2}, + [1284] = {.lex_state = 2, .external_lex_state = 2}, [1285] = {.lex_state = 13}, - [1286] = {.lex_state = 2, .external_lex_state = 2}, - [1287] = {.lex_state = 13}, + [1286] = {.lex_state = 13}, + [1287] = {.lex_state = 3, .external_lex_state = 3}, [1288] = {.lex_state = 13}, - [1289] = {.lex_state = 3, .external_lex_state = 3}, - [1290] = {.lex_state = 13}, + [1289] = {.lex_state = 13}, + [1290] = {.lex_state = 2, .external_lex_state = 2}, [1291] = {.lex_state = 2, .external_lex_state = 2}, - [1292] = {.lex_state = 2, .external_lex_state = 3}, + [1292] = {.lex_state = 13}, [1293] = {.lex_state = 13}, - [1294] = {.lex_state = 13}, + [1294] = {.lex_state = 2, .external_lex_state = 3}, [1295] = {.lex_state = 13}, - [1296] = {.lex_state = 13}, - [1297] = {.lex_state = 13}, + [1296] = {.lex_state = 3, .external_lex_state = 3}, + [1297] = {.lex_state = 2, .external_lex_state = 3}, [1298] = {.lex_state = 2, .external_lex_state = 2}, [1299] = {.lex_state = 13}, [1300] = {.lex_state = 13}, - [1301] = {.lex_state = 2, .external_lex_state = 2}, - [1302] = {.lex_state = 2, .external_lex_state = 2}, - [1303] = {.lex_state = 3, .external_lex_state = 3}, - [1304] = {.lex_state = 3, .external_lex_state = 3}, + [1301] = {.lex_state = 13}, + [1302] = {.lex_state = 2, .external_lex_state = 3}, + [1303] = {.lex_state = 2, .external_lex_state = 3}, + [1304] = {.lex_state = 2, .external_lex_state = 2}, [1305] = {.lex_state = 2, .external_lex_state = 2}, [1306] = {.lex_state = 13}, - [1307] = {.lex_state = 13}, - [1308] = {.lex_state = 2, .external_lex_state = 2}, - [1309] = {.lex_state = 2, .external_lex_state = 3}, - [1310] = {.lex_state = 2, .external_lex_state = 2}, - [1311] = {.lex_state = 2, .external_lex_state = 2}, - [1312] = {.lex_state = 2, .external_lex_state = 3}, - [1313] = {.lex_state = 3, .external_lex_state = 3}, + [1307] = {.lex_state = 2, .external_lex_state = 2}, + [1308] = {.lex_state = 3, .external_lex_state = 3}, + [1309] = {.lex_state = 13}, + [1310] = {.lex_state = 13}, + [1311] = {.lex_state = 13}, + [1312] = {.lex_state = 2, .external_lex_state = 2}, + [1313] = {.lex_state = 13}, [1314] = {.lex_state = 2, .external_lex_state = 3}, - [1315] = {.lex_state = 3, .external_lex_state = 3}, + [1315] = {.lex_state = 2, .external_lex_state = 3}, [1316] = {.lex_state = 3, .external_lex_state = 3}, [1317] = {.lex_state = 3, .external_lex_state = 3}, [1318] = {.lex_state = 3, .external_lex_state = 3}, [1319] = {.lex_state = 3, .external_lex_state = 3}, [1320] = {.lex_state = 3, .external_lex_state = 3}, - [1321] = {.lex_state = 3, .external_lex_state = 3}, + [1321] = {.lex_state = 2, .external_lex_state = 3}, [1322] = {.lex_state = 2, .external_lex_state = 3}, [1323] = {.lex_state = 2, .external_lex_state = 3}, - [1324] = {.lex_state = 2, .external_lex_state = 3}, + [1324] = {.lex_state = 3, .external_lex_state = 3}, [1325] = {.lex_state = 2, .external_lex_state = 3}, - [1326] = {.lex_state = 2, .external_lex_state = 2}, - [1327] = {.lex_state = 2, .external_lex_state = 3}, - [1328] = {.lex_state = 3, .external_lex_state = 3}, - [1329] = {.lex_state = 3, .external_lex_state = 3}, + [1326] = {.lex_state = 3, .external_lex_state = 3}, + [1327] = {.lex_state = 3, .external_lex_state = 3}, + [1328] = {.lex_state = 2, .external_lex_state = 2}, + [1329] = {.lex_state = 2, .external_lex_state = 3}, [1330] = {.lex_state = 2, .external_lex_state = 3}, - [1331] = {.lex_state = 2, .external_lex_state = 3}, + [1331] = {.lex_state = 3, .external_lex_state = 3}, [1332] = {.lex_state = 2, .external_lex_state = 2}, [1333] = {.lex_state = 2, .external_lex_state = 3}, - [1334] = {.lex_state = 2, .external_lex_state = 2}, - [1335] = {.lex_state = 2, .external_lex_state = 2}, - [1336] = {.lex_state = 3, .external_lex_state = 3}, - [1337] = {.lex_state = 2, .external_lex_state = 3}, - [1338] = {.lex_state = 3, .external_lex_state = 2}, - [1339] = {.lex_state = 2, .external_lex_state = 3}, - [1340] = {.lex_state = 11}, - [1341] = {.lex_state = 3, .external_lex_state = 3}, + [1334] = {.lex_state = 11}, + [1335] = {.lex_state = 3, .external_lex_state = 3}, + [1336] = {.lex_state = 2, .external_lex_state = 2}, + [1337] = {.lex_state = 3, .external_lex_state = 3}, + [1338] = {.lex_state = 2, .external_lex_state = 2}, + [1339] = {.lex_state = 2, .external_lex_state = 2}, + [1340] = {.lex_state = 3, .external_lex_state = 2}, + [1341] = {.lex_state = 2, .external_lex_state = 2}, [1342] = {.lex_state = 2, .external_lex_state = 3}, [1343] = {.lex_state = 2, .external_lex_state = 2}, [1344] = {.lex_state = 2, .external_lex_state = 2}, [1345] = {.lex_state = 2, .external_lex_state = 2}, [1346] = {.lex_state = 2, .external_lex_state = 3}, [1347] = {.lex_state = 3, .external_lex_state = 3}, - [1348] = {.lex_state = 2, .external_lex_state = 2}, + [1348] = {.lex_state = 2, .external_lex_state = 3}, [1349] = {.lex_state = 2, .external_lex_state = 3}, [1350] = {.lex_state = 2, .external_lex_state = 3}, [1351] = {.lex_state = 2, .external_lex_state = 3}, - [1352] = {.lex_state = 2, .external_lex_state = 2}, - [1353] = {.lex_state = 3, .external_lex_state = 2}, - [1354] = {.lex_state = 2, .external_lex_state = 3}, - [1355] = {.lex_state = 2, .external_lex_state = 2}, + [1352] = {.lex_state = 3, .external_lex_state = 2}, + [1353] = {.lex_state = 2, .external_lex_state = 2}, + [1354] = {.lex_state = 2, .external_lex_state = 2}, + [1355] = {.lex_state = 2, .external_lex_state = 3}, [1356] = {.lex_state = 2, .external_lex_state = 2}, - [1357] = {.lex_state = 2, .external_lex_state = 2}, - [1358] = {.lex_state = 3, .external_lex_state = 2}, - [1359] = {.lex_state = 2, .external_lex_state = 2}, - [1360] = {.lex_state = 3, .external_lex_state = 3}, - [1361] = {.lex_state = 2, .external_lex_state = 2}, + [1357] = {.lex_state = 2, .external_lex_state = 3}, + [1358] = {.lex_state = 2, .external_lex_state = 3}, + [1359] = {.lex_state = 3, .external_lex_state = 3}, + [1360] = {.lex_state = 2, .external_lex_state = 3}, + [1361] = {.lex_state = 3, .external_lex_state = 2}, [1362] = {.lex_state = 2, .external_lex_state = 2}, - [1363] = {.lex_state = 3, .external_lex_state = 2}, - [1364] = {.lex_state = 2, .external_lex_state = 3}, - [1365] = {.lex_state = 3, .external_lex_state = 4}, + [1363] = {.lex_state = 2, .external_lex_state = 2}, + [1364] = {.lex_state = 3, .external_lex_state = 2}, + [1365] = {.lex_state = 2, .external_lex_state = 2}, [1366] = {.lex_state = 2, .external_lex_state = 2}, - [1367] = {.lex_state = 3, .external_lex_state = 4}, + [1367] = {.lex_state = 2, .external_lex_state = 3}, [1368] = {.lex_state = 3, .external_lex_state = 2}, [1369] = {.lex_state = 3, .external_lex_state = 2}, [1370] = {.lex_state = 3, .external_lex_state = 2}, @@ -7669,220 +7668,220 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1373] = {.lex_state = 2, .external_lex_state = 2}, [1374] = {.lex_state = 3, .external_lex_state = 2}, [1375] = {.lex_state = 2, .external_lex_state = 2}, - [1376] = {.lex_state = 2, .external_lex_state = 3}, - [1377] = {.lex_state = 3, .external_lex_state = 2}, - [1378] = {.lex_state = 2, .external_lex_state = 2}, - [1379] = {.lex_state = 3, .external_lex_state = 3}, - [1380] = {.lex_state = 2, .external_lex_state = 2}, - [1381] = {.lex_state = 2, .external_lex_state = 2}, - [1382] = {.lex_state = 3, .external_lex_state = 2}, + [1376] = {.lex_state = 3, .external_lex_state = 2}, + [1377] = {.lex_state = 3, .external_lex_state = 4}, + [1378] = {.lex_state = 3, .external_lex_state = 3}, + [1379] = {.lex_state = 2, .external_lex_state = 2}, + [1380] = {.lex_state = 3, .external_lex_state = 4}, + [1381] = {.lex_state = 2, .external_lex_state = 3}, + [1382] = {.lex_state = 11}, [1383] = {.lex_state = 3, .external_lex_state = 2}, - [1384] = {.lex_state = 3, .external_lex_state = 4}, - [1385] = {.lex_state = 2, .external_lex_state = 3}, - [1386] = {.lex_state = 3, .external_lex_state = 2}, + [1384] = {.lex_state = 3, .external_lex_state = 2}, + [1385] = {.lex_state = 2, .external_lex_state = 2}, + [1386] = {.lex_state = 2, .external_lex_state = 2}, [1387] = {.lex_state = 2, .external_lex_state = 2}, - [1388] = {.lex_state = 2, .external_lex_state = 2}, - [1389] = {.lex_state = 2, .external_lex_state = 3}, - [1390] = {.lex_state = 2, .external_lex_state = 2}, - [1391] = {.lex_state = 2, .external_lex_state = 2}, - [1392] = {.lex_state = 3, .external_lex_state = 3}, - [1393] = {.lex_state = 2, .external_lex_state = 2}, - [1394] = {.lex_state = 11}, - [1395] = {.lex_state = 3, .external_lex_state = 4}, - [1396] = {.lex_state = 3, .external_lex_state = 4}, + [1388] = {.lex_state = 2, .external_lex_state = 3}, + [1389] = {.lex_state = 3, .external_lex_state = 3}, + [1390] = {.lex_state = 3, .external_lex_state = 2}, + [1391] = {.lex_state = 3, .external_lex_state = 2}, + [1392] = {.lex_state = 3, .external_lex_state = 2}, + [1393] = {.lex_state = 3, .external_lex_state = 4}, + [1394] = {.lex_state = 2, .external_lex_state = 3}, + [1395] = {.lex_state = 3, .external_lex_state = 2}, + [1396] = {.lex_state = 11}, [1397] = {.lex_state = 2, .external_lex_state = 2}, - [1398] = {.lex_state = 11}, + [1398] = {.lex_state = 2, .external_lex_state = 2}, [1399] = {.lex_state = 2, .external_lex_state = 2}, - [1400] = {.lex_state = 2, .external_lex_state = 3}, - [1401] = {.lex_state = 3, .external_lex_state = 3}, - [1402] = {.lex_state = 3, .external_lex_state = 2}, - [1403] = {.lex_state = 3, .external_lex_state = 3}, - [1404] = {.lex_state = 3, .external_lex_state = 2}, - [1405] = {.lex_state = 2, .external_lex_state = 2}, - [1406] = {.lex_state = 3, .external_lex_state = 2}, - [1407] = {.lex_state = 11}, + [1400] = {.lex_state = 2, .external_lex_state = 2}, + [1401] = {.lex_state = 2, .external_lex_state = 2}, + [1402] = {.lex_state = 3, .external_lex_state = 4}, + [1403] = {.lex_state = 3, .external_lex_state = 2}, + [1404] = {.lex_state = 3, .external_lex_state = 3}, + [1405] = {.lex_state = 3, .external_lex_state = 4}, + [1406] = {.lex_state = 2, .external_lex_state = 2}, + [1407] = {.lex_state = 2, .external_lex_state = 3}, [1408] = {.lex_state = 3, .external_lex_state = 3}, [1409] = {.lex_state = 2, .external_lex_state = 2}, - [1410] = {.lex_state = 2, .external_lex_state = 3}, - [1411] = {.lex_state = 3, .external_lex_state = 2}, - [1412] = {.lex_state = 3, .external_lex_state = 4}, - [1413] = {.lex_state = 11}, + [1410] = {.lex_state = 2, .external_lex_state = 2}, + [1411] = {.lex_state = 11}, + [1412] = {.lex_state = 3, .external_lex_state = 3}, + [1413] = {.lex_state = 3, .external_lex_state = 4}, [1414] = {.lex_state = 11}, - [1415] = {.lex_state = 13}, - [1416] = {.lex_state = 2, .external_lex_state = 2}, - [1417] = {.lex_state = 3, .external_lex_state = 4}, - [1418] = {.lex_state = 11}, + [1415] = {.lex_state = 2, .external_lex_state = 2}, + [1416] = {.lex_state = 3, .external_lex_state = 3}, + [1417] = {.lex_state = 11}, + [1418] = {.lex_state = 3, .external_lex_state = 4}, [1419] = {.lex_state = 11}, - [1420] = {.lex_state = 11}, - [1421] = {.lex_state = 11}, - [1422] = {.lex_state = 13}, + [1420] = {.lex_state = 13}, + [1421] = {.lex_state = 13}, + [1422] = {.lex_state = 3, .external_lex_state = 3}, [1423] = {.lex_state = 2, .external_lex_state = 2}, - [1424] = {.lex_state = 3, .external_lex_state = 2}, - [1425] = {.lex_state = 11}, + [1424] = {.lex_state = 11}, + [1425] = {.lex_state = 2, .external_lex_state = 2}, [1426] = {.lex_state = 11}, - [1427] = {.lex_state = 3, .external_lex_state = 4}, - [1428] = {.lex_state = 11}, - [1429] = {.lex_state = 3, .external_lex_state = 4}, + [1427] = {.lex_state = 11}, + [1428] = {.lex_state = 2, .external_lex_state = 3}, + [1429] = {.lex_state = 11}, [1430] = {.lex_state = 3, .external_lex_state = 4}, - [1431] = {.lex_state = 3, .external_lex_state = 3}, - [1432] = {.lex_state = 13}, + [1431] = {.lex_state = 13}, + [1432] = {.lex_state = 11}, [1433] = {.lex_state = 3, .external_lex_state = 4}, - [1434] = {.lex_state = 2, .external_lex_state = 3}, - [1435] = {.lex_state = 2, .external_lex_state = 3}, - [1436] = {.lex_state = 3, .external_lex_state = 3}, + [1434] = {.lex_state = 3, .external_lex_state = 3}, + [1435] = {.lex_state = 11}, + [1436] = {.lex_state = 11}, [1437] = {.lex_state = 11}, - [1438] = {.lex_state = 11}, - [1439] = {.lex_state = 3, .external_lex_state = 3}, - [1440] = {.lex_state = 3, .external_lex_state = 4}, + [1438] = {.lex_state = 13}, + [1439] = {.lex_state = 13}, + [1440] = {.lex_state = 3, .external_lex_state = 2}, [1441] = {.lex_state = 11}, - [1442] = {.lex_state = 13}, - [1443] = {.lex_state = 11}, - [1444] = {.lex_state = 2, .external_lex_state = 2}, - [1445] = {.lex_state = 11}, - [1446] = {.lex_state = 13}, - [1447] = {.lex_state = 11}, - [1448] = {.lex_state = 2, .external_lex_state = 2}, - [1449] = {.lex_state = 11}, - [1450] = {.lex_state = 2, .external_lex_state = 3}, + [1442] = {.lex_state = 11}, + [1443] = {.lex_state = 2, .external_lex_state = 2}, + [1444] = {.lex_state = 11}, + [1445] = {.lex_state = 3, .external_lex_state = 4}, + [1446] = {.lex_state = 3, .external_lex_state = 2}, + [1447] = {.lex_state = 3, .external_lex_state = 4}, + [1448] = {.lex_state = 2, .external_lex_state = 3}, + [1449] = {.lex_state = 3, .external_lex_state = 4}, + [1450] = {.lex_state = 3, .external_lex_state = 4}, [1451] = {.lex_state = 11}, - [1452] = {.lex_state = 3, .external_lex_state = 4}, - [1453] = {.lex_state = 3, .external_lex_state = 3}, - [1454] = {.lex_state = 11}, - [1455] = {.lex_state = 13}, - [1456] = {.lex_state = 3, .external_lex_state = 2}, - [1457] = {.lex_state = 3, .external_lex_state = 4}, - [1458] = {.lex_state = 11}, + [1452] = {.lex_state = 11}, + [1453] = {.lex_state = 11}, + [1454] = {.lex_state = 2, .external_lex_state = 3}, + [1455] = {.lex_state = 3, .external_lex_state = 4}, + [1456] = {.lex_state = 3, .external_lex_state = 3}, + [1457] = {.lex_state = 11}, + [1458] = {.lex_state = 13}, [1459] = {.lex_state = 11}, [1460] = {.lex_state = 11}, [1461] = {.lex_state = 3, .external_lex_state = 4}, [1462] = {.lex_state = 11}, [1463] = {.lex_state = 3, .external_lex_state = 4}, [1464] = {.lex_state = 11}, - [1465] = {.lex_state = 2, .external_lex_state = 3}, - [1466] = {.lex_state = 2, .external_lex_state = 2}, - [1467] = {.lex_state = 3, .external_lex_state = 4}, + [1465] = {.lex_state = 3, .external_lex_state = 4}, + [1466] = {.lex_state = 11}, + [1467] = {.lex_state = 11}, [1468] = {.lex_state = 11}, - [1469] = {.lex_state = 11}, - [1470] = {.lex_state = 2, .external_lex_state = 2}, + [1469] = {.lex_state = 3, .external_lex_state = 4}, + [1470] = {.lex_state = 11}, [1471] = {.lex_state = 11}, - [1472] = {.lex_state = 3, .external_lex_state = 4}, - [1473] = {.lex_state = 11}, - [1474] = {.lex_state = 2, .external_lex_state = 3}, - [1475] = {.lex_state = 11}, - [1476] = {.lex_state = 11}, - [1477] = {.lex_state = 3, .external_lex_state = 4}, - [1478] = {.lex_state = 11}, - [1479] = {.lex_state = 3, .external_lex_state = 3}, - [1480] = {.lex_state = 2, .external_lex_state = 3}, - [1481] = {.lex_state = 2, .external_lex_state = 3}, - [1482] = {.lex_state = 11}, - [1483] = {.lex_state = 11}, - [1484] = {.lex_state = 11}, - [1485] = {.lex_state = 3, .external_lex_state = 4}, - [1486] = {.lex_state = 3, .external_lex_state = 4}, - [1487] = {.lex_state = 3, .external_lex_state = 4}, - [1488] = {.lex_state = 11}, - [1489] = {.lex_state = 11}, - [1490] = {.lex_state = 2, .external_lex_state = 2}, - [1491] = {.lex_state = 2, .external_lex_state = 3}, - [1492] = {.lex_state = 3, .external_lex_state = 3}, + [1472] = {.lex_state = 11}, + [1473] = {.lex_state = 2, .external_lex_state = 2}, + [1474] = {.lex_state = 11}, + [1475] = {.lex_state = 2, .external_lex_state = 2}, + [1476] = {.lex_state = 3, .external_lex_state = 4}, + [1477] = {.lex_state = 2, .external_lex_state = 3}, + [1478] = {.lex_state = 3, .external_lex_state = 4}, + [1479] = {.lex_state = 11}, + [1480] = {.lex_state = 11}, + [1481] = {.lex_state = 3, .external_lex_state = 4}, + [1482] = {.lex_state = 3, .external_lex_state = 3}, + [1483] = {.lex_state = 2, .external_lex_state = 3}, + [1484] = {.lex_state = 2, .external_lex_state = 3}, + [1485] = {.lex_state = 2, .external_lex_state = 3}, + [1486] = {.lex_state = 11}, + [1487] = {.lex_state = 11}, + [1488] = {.lex_state = 3, .external_lex_state = 3}, + [1489] = {.lex_state = 3, .external_lex_state = 4}, + [1490] = {.lex_state = 11}, + [1491] = {.lex_state = 11}, + [1492] = {.lex_state = 3, .external_lex_state = 4}, [1493] = {.lex_state = 2, .external_lex_state = 3}, - [1494] = {.lex_state = 11}, - [1495] = {.lex_state = 3, .external_lex_state = 4}, - [1496] = {.lex_state = 11}, - [1497] = {.lex_state = 11}, - [1498] = {.lex_state = 2, .external_lex_state = 2}, - [1499] = {.lex_state = 2, .external_lex_state = 2}, - [1500] = {.lex_state = 11}, + [1494] = {.lex_state = 3, .external_lex_state = 3}, + [1495] = {.lex_state = 11}, + [1496] = {.lex_state = 3, .external_lex_state = 3}, + [1497] = {.lex_state = 2, .external_lex_state = 3}, + [1498] = {.lex_state = 3, .external_lex_state = 4}, + [1499] = {.lex_state = 11}, + [1500] = {.lex_state = 3, .external_lex_state = 4}, [1501] = {.lex_state = 11}, - [1502] = {.lex_state = 11}, - [1503] = {.lex_state = 3, .external_lex_state = 4}, + [1502] = {.lex_state = 3, .external_lex_state = 4}, + [1503] = {.lex_state = 2, .external_lex_state = 2}, [1504] = {.lex_state = 11}, [1505] = {.lex_state = 11}, - [1506] = {.lex_state = 11}, - [1507] = {.lex_state = 3, .external_lex_state = 3}, + [1506] = {.lex_state = 3, .external_lex_state = 3}, + [1507] = {.lex_state = 11}, [1508] = {.lex_state = 11}, - [1509] = {.lex_state = 11}, - [1510] = {.lex_state = 11}, - [1511] = {.lex_state = 11}, + [1509] = {.lex_state = 2, .external_lex_state = 3}, + [1510] = {.lex_state = 2, .external_lex_state = 2}, + [1511] = {.lex_state = 3, .external_lex_state = 3}, [1512] = {.lex_state = 11}, - [1513] = {.lex_state = 3, .external_lex_state = 4}, - [1514] = {.lex_state = 3, .external_lex_state = 4}, - [1515] = {.lex_state = 2, .external_lex_state = 3}, - [1516] = {.lex_state = 11}, - [1517] = {.lex_state = 11}, + [1513] = {.lex_state = 11}, + [1514] = {.lex_state = 11}, + [1515] = {.lex_state = 11}, + [1516] = {.lex_state = 3, .external_lex_state = 4}, + [1517] = {.lex_state = 2, .external_lex_state = 3}, [1518] = {.lex_state = 11}, - [1519] = {.lex_state = 2, .external_lex_state = 2}, + [1519] = {.lex_state = 2, .external_lex_state = 3}, [1520] = {.lex_state = 11}, - [1521] = {.lex_state = 11}, + [1521] = {.lex_state = 3, .external_lex_state = 3}, [1522] = {.lex_state = 11}, - [1523] = {.lex_state = 2, .external_lex_state = 2}, - [1524] = {.lex_state = 11}, + [1523] = {.lex_state = 2, .external_lex_state = 3}, + [1524] = {.lex_state = 2, .external_lex_state = 3}, [1525] = {.lex_state = 2, .external_lex_state = 2}, - [1526] = {.lex_state = 3, .external_lex_state = 4}, - [1527] = {.lex_state = 3, .external_lex_state = 3}, + [1526] = {.lex_state = 11}, + [1527] = {.lex_state = 11}, [1528] = {.lex_state = 11}, - [1529] = {.lex_state = 2, .external_lex_state = 3}, - [1530] = {.lex_state = 2, .external_lex_state = 3}, - [1531] = {.lex_state = 2, .external_lex_state = 3}, - [1532] = {.lex_state = 11}, - [1533] = {.lex_state = 2, .external_lex_state = 3}, + [1529] = {.lex_state = 11}, + [1530] = {.lex_state = 3, .external_lex_state = 3}, + [1531] = {.lex_state = 11}, + [1532] = {.lex_state = 2, .external_lex_state = 3}, + [1533] = {.lex_state = 11}, [1534] = {.lex_state = 11}, - [1535] = {.lex_state = 3, .external_lex_state = 4}, - [1536] = {.lex_state = 11}, + [1535] = {.lex_state = 11}, + [1536] = {.lex_state = 14}, [1537] = {.lex_state = 11}, [1538] = {.lex_state = 11}, - [1539] = {.lex_state = 2, .external_lex_state = 3}, - [1540] = {.lex_state = 11}, + [1539] = {.lex_state = 3, .external_lex_state = 3}, + [1540] = {.lex_state = 2, .external_lex_state = 3}, [1541] = {.lex_state = 11}, [1542] = {.lex_state = 11}, - [1543] = {.lex_state = 2, .external_lex_state = 2}, - [1544] = {.lex_state = 2, .external_lex_state = 3}, - [1545] = {.lex_state = 3, .external_lex_state = 3}, + [1543] = {.lex_state = 11}, + [1544] = {.lex_state = 11}, + [1545] = {.lex_state = 11}, [1546] = {.lex_state = 11}, [1547] = {.lex_state = 11}, - [1548] = {.lex_state = 11}, + [1548] = {.lex_state = 2, .external_lex_state = 2}, [1549] = {.lex_state = 11}, - [1550] = {.lex_state = 11}, - [1551] = {.lex_state = 11}, + [1550] = {.lex_state = 2, .external_lex_state = 2}, + [1551] = {.lex_state = 2, .external_lex_state = 2}, [1552] = {.lex_state = 11}, - [1553] = {.lex_state = 2, .external_lex_state = 2}, + [1553] = {.lex_state = 11}, [1554] = {.lex_state = 11}, [1555] = {.lex_state = 11}, - [1556] = {.lex_state = 2, .external_lex_state = 3}, - [1557] = {.lex_state = 11}, + [1556] = {.lex_state = 11}, + [1557] = {.lex_state = 2, .external_lex_state = 3}, [1558] = {.lex_state = 11}, [1559] = {.lex_state = 11}, [1560] = {.lex_state = 11}, - [1561] = {.lex_state = 3, .external_lex_state = 3}, + [1561] = {.lex_state = 11}, [1562] = {.lex_state = 11}, - [1563] = {.lex_state = 3, .external_lex_state = 3}, - [1564] = {.lex_state = 14}, - [1565] = {.lex_state = 11}, + [1563] = {.lex_state = 11}, + [1564] = {.lex_state = 2, .external_lex_state = 2}, + [1565] = {.lex_state = 2, .external_lex_state = 2}, [1566] = {.lex_state = 11}, [1567] = {.lex_state = 11}, [1568] = {.lex_state = 2, .external_lex_state = 2}, - [1569] = {.lex_state = 3, .external_lex_state = 3}, - [1570] = {.lex_state = 11}, + [1569] = {.lex_state = 11}, + [1570] = {.lex_state = 2, .external_lex_state = 2}, [1571] = {.lex_state = 11}, [1572] = {.lex_state = 11}, [1573] = {.lex_state = 11}, [1574] = {.lex_state = 11}, - [1575] = {.lex_state = 11}, + [1575] = {.lex_state = 2, .external_lex_state = 3}, [1576] = {.lex_state = 11}, [1577] = {.lex_state = 11}, - [1578] = {.lex_state = 11}, + [1578] = {.lex_state = 2, .external_lex_state = 2}, [1579] = {.lex_state = 11}, - [1580] = {.lex_state = 2, .external_lex_state = 2}, + [1580] = {.lex_state = 2, .external_lex_state = 3}, [1581] = {.lex_state = 11}, - [1582] = {.lex_state = 2, .external_lex_state = 3}, - [1583] = {.lex_state = 2, .external_lex_state = 2}, - [1584] = {.lex_state = 2, .external_lex_state = 2}, - [1585] = {.lex_state = 2, .external_lex_state = 3}, - [1586] = {.lex_state = 3, .external_lex_state = 3}, - [1587] = {.lex_state = 2, .external_lex_state = 3}, + [1582] = {.lex_state = 11}, + [1583] = {.lex_state = 11}, + [1584] = {.lex_state = 11}, + [1585] = {.lex_state = 11}, + [1586] = {.lex_state = 2, .external_lex_state = 2}, + [1587] = {.lex_state = 11}, [1588] = {.lex_state = 11}, - [1589] = {.lex_state = 3, .external_lex_state = 3}, + [1589] = {.lex_state = 3, .external_lex_state = 4}, [1590] = {.lex_state = 11}, [1591] = {.lex_state = 11}, [1592] = {.lex_state = 11}, @@ -7892,14 +7891,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1596] = {.lex_state = 11}, [1597] = {.lex_state = 11}, [1598] = {.lex_state = 11}, - [1599] = {.lex_state = 2, .external_lex_state = 2}, - [1600] = {.lex_state = 11}, + [1599] = {.lex_state = 11}, + [1600] = {.lex_state = 2, .external_lex_state = 2}, [1601] = {.lex_state = 11}, [1602] = {.lex_state = 11}, [1603] = {.lex_state = 11}, [1604] = {.lex_state = 11}, [1605] = {.lex_state = 11}, - [1606] = {.lex_state = 2, .external_lex_state = 2}, + [1606] = {.lex_state = 11}, [1607] = {.lex_state = 11}, [1608] = {.lex_state = 11}, [1609] = {.lex_state = 11}, @@ -7907,29 +7906,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1611] = {.lex_state = 11}, [1612] = {.lex_state = 11}, [1613] = {.lex_state = 11}, - [1614] = {.lex_state = 11}, + [1614] = {.lex_state = 2, .external_lex_state = 2}, [1615] = {.lex_state = 11}, [1616] = {.lex_state = 11}, [1617] = {.lex_state = 11}, - [1618] = {.lex_state = 2, .external_lex_state = 3}, - [1619] = {.lex_state = 2, .external_lex_state = 2}, - [1620] = {.lex_state = 2, .external_lex_state = 2}, + [1618] = {.lex_state = 11}, + [1619] = {.lex_state = 11}, + [1620] = {.lex_state = 11}, [1621] = {.lex_state = 11}, [1622] = {.lex_state = 11}, - [1623] = {.lex_state = 2, .external_lex_state = 3}, - [1624] = {.lex_state = 3, .external_lex_state = 3}, - [1625] = {.lex_state = 2, .external_lex_state = 2}, + [1623] = {.lex_state = 11}, + [1624] = {.lex_state = 11}, + [1625] = {.lex_state = 11}, [1626] = {.lex_state = 11}, [1627] = {.lex_state = 11}, [1628] = {.lex_state = 11}, - [1629] = {.lex_state = 2, .external_lex_state = 3}, - [1630] = {.lex_state = 2, .external_lex_state = 2}, + [1629] = {.lex_state = 11}, + [1630] = {.lex_state = 11}, [1631] = {.lex_state = 11}, [1632] = {.lex_state = 11}, [1633] = {.lex_state = 11}, [1634] = {.lex_state = 11}, [1635] = {.lex_state = 2, .external_lex_state = 3}, - [1636] = {.lex_state = 11}, + [1636] = {.lex_state = 2, .external_lex_state = 2}, [1637] = {.lex_state = 11}, [1638] = {.lex_state = 2, .external_lex_state = 3}, [1639] = {.lex_state = 11}, @@ -7953,44 +7952,44 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1657] = {.lex_state = 11}, [1658] = {.lex_state = 11}, [1659] = {.lex_state = 11}, - [1660] = {.lex_state = 11}, - [1661] = {.lex_state = 2, .external_lex_state = 3}, + [1660] = {.lex_state = 2, .external_lex_state = 3}, + [1661] = {.lex_state = 11}, [1662] = {.lex_state = 11}, - [1663] = {.lex_state = 11}, + [1663] = {.lex_state = 2, .external_lex_state = 3}, [1664] = {.lex_state = 11}, [1665] = {.lex_state = 11}, [1666] = {.lex_state = 11}, [1667] = {.lex_state = 11}, - [1668] = {.lex_state = 11}, + [1668] = {.lex_state = 2, .external_lex_state = 3}, [1669] = {.lex_state = 11}, [1670] = {.lex_state = 11}, [1671] = {.lex_state = 11}, [1672] = {.lex_state = 11}, [1673] = {.lex_state = 11}, - [1674] = {.lex_state = 11}, + [1674] = {.lex_state = 2, .external_lex_state = 3}, [1675] = {.lex_state = 11}, [1676] = {.lex_state = 11}, [1677] = {.lex_state = 11}, [1678] = {.lex_state = 11}, [1679] = {.lex_state = 11}, - [1680] = {.lex_state = 2, .external_lex_state = 2}, - [1681] = {.lex_state = 11}, + [1680] = {.lex_state = 11}, + [1681] = {.lex_state = 2, .external_lex_state = 2}, [1682] = {.lex_state = 11}, [1683] = {.lex_state = 2, .external_lex_state = 2}, [1684] = {.lex_state = 11}, [1685] = {.lex_state = 11}, - [1686] = {.lex_state = 2, .external_lex_state = 2}, + [1686] = {.lex_state = 11}, [1687] = {.lex_state = 11}, [1688] = {.lex_state = 11}, [1689] = {.lex_state = 11}, [1690] = {.lex_state = 11}, [1691] = {.lex_state = 11}, [1692] = {.lex_state = 11}, - [1693] = {.lex_state = 11}, + [1693] = {.lex_state = 2, .external_lex_state = 3}, [1694] = {.lex_state = 11}, [1695] = {.lex_state = 11}, - [1696] = {.lex_state = 2, .external_lex_state = 2}, - [1697] = {.lex_state = 11}, + [1696] = {.lex_state = 11}, + [1697] = {.lex_state = 2, .external_lex_state = 2}, [1698] = {.lex_state = 11}, [1699] = {.lex_state = 11}, [1700] = {.lex_state = 11}, @@ -8005,7 +8004,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1709] = {.lex_state = 11}, [1710] = {.lex_state = 11}, [1711] = {.lex_state = 11}, - [1712] = {.lex_state = 2, .external_lex_state = 2}, + [1712] = {.lex_state = 11}, [1713] = {.lex_state = 11}, [1714] = {.lex_state = 11}, [1715] = {.lex_state = 11}, @@ -8016,41 +8015,41 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1720] = {.lex_state = 11}, [1721] = {.lex_state = 11}, [1722] = {.lex_state = 11}, - [1723] = {.lex_state = 2, .external_lex_state = 2}, + [1723] = {.lex_state = 11}, [1724] = {.lex_state = 11}, [1725] = {.lex_state = 11}, [1726] = {.lex_state = 11}, [1727] = {.lex_state = 11}, [1728] = {.lex_state = 11}, - [1729] = {.lex_state = 11}, + [1729] = {.lex_state = 2, .external_lex_state = 2}, [1730] = {.lex_state = 11}, [1731] = {.lex_state = 11}, - [1732] = {.lex_state = 2, .external_lex_state = 2}, + [1732] = {.lex_state = 11}, [1733] = {.lex_state = 11}, - [1734] = {.lex_state = 2, .external_lex_state = 2}, + [1734] = {.lex_state = 11}, [1735] = {.lex_state = 11}, [1736] = {.lex_state = 11}, [1737] = {.lex_state = 11}, - [1738] = {.lex_state = 11}, + [1738] = {.lex_state = 2, .external_lex_state = 2}, [1739] = {.lex_state = 11}, [1740] = {.lex_state = 11}, [1741] = {.lex_state = 11}, - [1742] = {.lex_state = 11}, + [1742] = {.lex_state = 2, .external_lex_state = 3}, [1743] = {.lex_state = 11}, - [1744] = {.lex_state = 3, .external_lex_state = 3}, - [1745] = {.lex_state = 2, .external_lex_state = 3}, + [1744] = {.lex_state = 11}, + [1745] = {.lex_state = 11}, [1746] = {.lex_state = 11}, - [1747] = {.lex_state = 11}, + [1747] = {.lex_state = 3, .external_lex_state = 3}, [1748] = {.lex_state = 11}, [1749] = {.lex_state = 11}, - [1750] = {.lex_state = 11}, - [1751] = {.lex_state = 3, .external_lex_state = 3}, - [1752] = {.lex_state = 11}, + [1750] = {.lex_state = 3, .external_lex_state = 3}, + [1751] = {.lex_state = 2, .external_lex_state = 2}, + [1752] = {.lex_state = 2, .external_lex_state = 2}, [1753] = {.lex_state = 11}, - [1754] = {.lex_state = 3, .external_lex_state = 3}, + [1754] = {.lex_state = 11}, [1755] = {.lex_state = 11}, [1756] = {.lex_state = 11}, - [1757] = {.lex_state = 2, .external_lex_state = 3}, + [1757] = {.lex_state = 11}, [1758] = {.lex_state = 11}, [1759] = {.lex_state = 11}, [1760] = {.lex_state = 11}, @@ -8062,20 +8061,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1766] = {.lex_state = 11}, [1767] = {.lex_state = 11}, [1768] = {.lex_state = 11}, - [1769] = {.lex_state = 3, .external_lex_state = 3}, + [1769] = {.lex_state = 11}, [1770] = {.lex_state = 11}, [1771] = {.lex_state = 11}, [1772] = {.lex_state = 11}, [1773] = {.lex_state = 11}, [1774] = {.lex_state = 11}, [1775] = {.lex_state = 11}, - [1776] = {.lex_state = 2, .external_lex_state = 2}, - [1777] = {.lex_state = 2, .external_lex_state = 3}, - [1778] = {.lex_state = 11}, + [1776] = {.lex_state = 11}, + [1777] = {.lex_state = 11}, + [1778] = {.lex_state = 2, .external_lex_state = 2}, [1779] = {.lex_state = 11}, - [1780] = {.lex_state = 11}, + [1780] = {.lex_state = 3, .external_lex_state = 3}, [1781] = {.lex_state = 11}, - [1782] = {.lex_state = 11}, + [1782] = {.lex_state = 3, .external_lex_state = 3}, [1783] = {.lex_state = 11}, [1784] = {.lex_state = 11}, [1785] = {.lex_state = 11}, @@ -8085,28 +8084,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1789] = {.lex_state = 11}, [1790] = {.lex_state = 11}, [1791] = {.lex_state = 11}, - [1792] = {.lex_state = 11}, + [1792] = {.lex_state = 2, .external_lex_state = 3}, [1793] = {.lex_state = 11}, - [1794] = {.lex_state = 11}, + [1794] = {.lex_state = 2, .external_lex_state = 2}, [1795] = {.lex_state = 11}, [1796] = {.lex_state = 11}, [1797] = {.lex_state = 11}, [1798] = {.lex_state = 11}, - [1799] = {.lex_state = 11}, + [1799] = {.lex_state = 3, .external_lex_state = 3}, [1800] = {.lex_state = 11}, - [1801] = {.lex_state = 11}, + [1801] = {.lex_state = 2, .external_lex_state = 2}, [1802] = {.lex_state = 11}, [1803] = {.lex_state = 11}, [1804] = {.lex_state = 11}, [1805] = {.lex_state = 11}, - [1806] = {.lex_state = 11}, + [1806] = {.lex_state = 3, .external_lex_state = 3}, [1807] = {.lex_state = 11}, [1808] = {.lex_state = 11}, [1809] = {.lex_state = 11}, - [1810] = {.lex_state = 11}, - [1811] = {.lex_state = 2, .external_lex_state = 3}, + [1810] = {.lex_state = 2, .external_lex_state = 3}, + [1811] = {.lex_state = 11}, [1812] = {.lex_state = 11}, - [1813] = {.lex_state = 2, .external_lex_state = 3}, + [1813] = {.lex_state = 11}, [1814] = {.lex_state = 11}, [1815] = {.lex_state = 11}, [1816] = {.lex_state = 11}, @@ -8121,7 +8120,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1825] = {.lex_state = 11}, [1826] = {.lex_state = 11}, [1827] = {.lex_state = 11}, - [1828] = {.lex_state = 2, .external_lex_state = 3}, + [1828] = {.lex_state = 11}, [1829] = {.lex_state = 11}, [1830] = {.lex_state = 11}, [1831] = {.lex_state = 11}, @@ -8136,30 +8135,30 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1840] = {.lex_state = 11}, [1841] = {.lex_state = 11}, [1842] = {.lex_state = 11}, - [1843] = {.lex_state = 2, .external_lex_state = 3}, + [1843] = {.lex_state = 11}, [1844] = {.lex_state = 11}, - [1845] = {.lex_state = 2, .external_lex_state = 2}, + [1845] = {.lex_state = 11}, [1846] = {.lex_state = 11}, - [1847] = {.lex_state = 11}, + [1847] = {.lex_state = 2, .external_lex_state = 2}, [1848] = {.lex_state = 11}, [1849] = {.lex_state = 11}, - [1850] = {.lex_state = 3, .external_lex_state = 3}, - [1851] = {.lex_state = 2, .external_lex_state = 2}, + [1850] = {.lex_state = 11}, + [1851] = {.lex_state = 11}, [1852] = {.lex_state = 11}, [1853] = {.lex_state = 11}, - [1854] = {.lex_state = 11}, + [1854] = {.lex_state = 2, .external_lex_state = 2}, [1855] = {.lex_state = 11}, [1856] = {.lex_state = 11}, [1857] = {.lex_state = 11}, [1858] = {.lex_state = 11}, [1859] = {.lex_state = 11}, - [1860] = {.lex_state = 2, .external_lex_state = 3}, + [1860] = {.lex_state = 11}, [1861] = {.lex_state = 11}, - [1862] = {.lex_state = 2, .external_lex_state = 3}, + [1862] = {.lex_state = 11}, [1863] = {.lex_state = 11}, [1864] = {.lex_state = 11}, - [1865] = {.lex_state = 11}, - [1866] = {.lex_state = 11}, + [1865] = {.lex_state = 3, .external_lex_state = 3}, + [1866] = {.lex_state = 2, .external_lex_state = 2}, [1867] = {.lex_state = 11}, [1868] = {.lex_state = 11}, [1869] = {.lex_state = 11}, @@ -8167,11 +8166,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1871] = {.lex_state = 11}, [1872] = {.lex_state = 11}, [1873] = {.lex_state = 11}, - [1874] = {.lex_state = 11}, + [1874] = {.lex_state = 2, .external_lex_state = 2}, [1875] = {.lex_state = 11}, [1876] = {.lex_state = 11}, - [1877] = {.lex_state = 11}, - [1878] = {.lex_state = 2, .external_lex_state = 3}, + [1877] = {.lex_state = 2, .external_lex_state = 3}, + [1878] = {.lex_state = 11}, [1879] = {.lex_state = 11}, [1880] = {.lex_state = 11}, [1881] = {.lex_state = 11}, @@ -8182,21 +8181,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1886] = {.lex_state = 11}, [1887] = {.lex_state = 11}, [1888] = {.lex_state = 11}, - [1889] = {.lex_state = 11}, + [1889] = {.lex_state = 2, .external_lex_state = 2}, [1890] = {.lex_state = 11}, [1891] = {.lex_state = 11}, [1892] = {.lex_state = 11}, - [1893] = {.lex_state = 11}, + [1893] = {.lex_state = 2, .external_lex_state = 2}, [1894] = {.lex_state = 11}, [1895] = {.lex_state = 11}, [1896] = {.lex_state = 11}, - [1897] = {.lex_state = 2, .external_lex_state = 2}, + [1897] = {.lex_state = 2, .external_lex_state = 3}, [1898] = {.lex_state = 11}, [1899] = {.lex_state = 11}, [1900] = {.lex_state = 11}, [1901] = {.lex_state = 11}, [1902] = {.lex_state = 11}, - [1903] = {.lex_state = 2, .external_lex_state = 3}, + [1903] = {.lex_state = 11}, [1904] = {.lex_state = 11}, [1905] = {.lex_state = 11}, [1906] = {.lex_state = 11}, @@ -8206,42 +8205,42 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1910] = {.lex_state = 11}, [1911] = {.lex_state = 11}, [1912] = {.lex_state = 11}, - [1913] = {.lex_state = 11}, + [1913] = {.lex_state = 2, .external_lex_state = 3}, [1914] = {.lex_state = 11}, [1915] = {.lex_state = 11}, [1916] = {.lex_state = 11}, [1917] = {.lex_state = 11}, [1918] = {.lex_state = 11}, - [1919] = {.lex_state = 11}, + [1919] = {.lex_state = 2, .external_lex_state = 2}, [1920] = {.lex_state = 11}, [1921] = {.lex_state = 11}, [1922] = {.lex_state = 11}, [1923] = {.lex_state = 11}, - [1924] = {.lex_state = 11}, - [1925] = {.lex_state = 11}, + [1924] = {.lex_state = 2, .external_lex_state = 2}, + [1925] = {.lex_state = 2, .external_lex_state = 3}, [1926] = {.lex_state = 11}, - [1927] = {.lex_state = 11}, + [1927] = {.lex_state = 2, .external_lex_state = 2}, [1928] = {.lex_state = 11}, [1929] = {.lex_state = 11}, [1930] = {.lex_state = 11}, - [1931] = {.lex_state = 11}, - [1932] = {.lex_state = 11}, + [1931] = {.lex_state = 2, .external_lex_state = 2}, + [1932] = {.lex_state = 2, .external_lex_state = 2}, [1933] = {.lex_state = 11}, [1934] = {.lex_state = 11}, - [1935] = {.lex_state = 2, .external_lex_state = 2}, - [1936] = {.lex_state = 2, .external_lex_state = 2}, - [1937] = {.lex_state = 2, .external_lex_state = 2}, + [1935] = {.lex_state = 11}, + [1936] = {.lex_state = 11}, + [1937] = {.lex_state = 11}, [1938] = {.lex_state = 11}, - [1939] = {.lex_state = 3, .external_lex_state = 3}, - [1940] = {.lex_state = 11}, + [1939] = {.lex_state = 11}, + [1940] = {.lex_state = 2, .external_lex_state = 2}, [1941] = {.lex_state = 11}, - [1942] = {.lex_state = 2, .external_lex_state = 2}, + [1942] = {.lex_state = 11}, [1943] = {.lex_state = 11}, [1944] = {.lex_state = 11}, - [1945] = {.lex_state = 2, .external_lex_state = 2}, + [1945] = {.lex_state = 11}, [1946] = {.lex_state = 11}, [1947] = {.lex_state = 11}, - [1948] = {.lex_state = 3, .external_lex_state = 3}, + [1948] = {.lex_state = 11}, [1949] = {.lex_state = 11}, [1950] = {.lex_state = 11}, [1951] = {.lex_state = 11}, @@ -8250,10 +8249,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1954] = {.lex_state = 11}, [1955] = {.lex_state = 11}, [1956] = {.lex_state = 11}, - [1957] = {.lex_state = 11}, + [1957] = {.lex_state = 3, .external_lex_state = 3}, [1958] = {.lex_state = 11}, [1959] = {.lex_state = 11}, - [1960] = {.lex_state = 2, .external_lex_state = 3}, + [1960] = {.lex_state = 11}, [1961] = {.lex_state = 11}, [1962] = {.lex_state = 11}, [1963] = {.lex_state = 11}, @@ -8261,111 +8260,111 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1965] = {.lex_state = 11}, [1966] = {.lex_state = 11}, [1967] = {.lex_state = 11}, - [1968] = {.lex_state = 11}, + [1968] = {.lex_state = 2, .external_lex_state = 3}, [1969] = {.lex_state = 11}, [1970] = {.lex_state = 11}, [1971] = {.lex_state = 11}, - [1972] = {.lex_state = 2, .external_lex_state = 3}, + [1972] = {.lex_state = 11}, [1973] = {.lex_state = 11}, [1974] = {.lex_state = 11}, [1975] = {.lex_state = 11}, - [1976] = {.lex_state = 3, .external_lex_state = 3}, - [1977] = {.lex_state = 11}, + [1976] = {.lex_state = 11}, + [1977] = {.lex_state = 2, .external_lex_state = 3}, [1978] = {.lex_state = 11}, - [1979] = {.lex_state = 2, .external_lex_state = 2}, + [1979] = {.lex_state = 3, .external_lex_state = 3}, [1980] = {.lex_state = 11}, [1981] = {.lex_state = 11}, [1982] = {.lex_state = 11}, [1983] = {.lex_state = 11}, [1984] = {.lex_state = 11}, - [1985] = {.lex_state = 3, .external_lex_state = 3}, + [1985] = {.lex_state = 11}, [1986] = {.lex_state = 11}, [1987] = {.lex_state = 11}, - [1988] = {.lex_state = 11}, + [1988] = {.lex_state = 3, .external_lex_state = 3}, [1989] = {.lex_state = 11}, [1990] = {.lex_state = 11}, - [1991] = {.lex_state = 11}, + [1991] = {.lex_state = 2, .external_lex_state = 3}, [1992] = {.lex_state = 11}, - [1993] = {.lex_state = 3, .external_lex_state = 3}, + [1993] = {.lex_state = 11}, [1994] = {.lex_state = 11}, - [1995] = {.lex_state = 3, .external_lex_state = 3}, + [1995] = {.lex_state = 11}, [1996] = {.lex_state = 11}, [1997] = {.lex_state = 11}, [1998] = {.lex_state = 11}, [1999] = {.lex_state = 11}, [2000] = {.lex_state = 11}, - [2001] = {.lex_state = 11}, - [2002] = {.lex_state = 11}, + [2001] = {.lex_state = 2, .external_lex_state = 3}, + [2002] = {.lex_state = 3, .external_lex_state = 3}, [2003] = {.lex_state = 11}, - [2004] = {.lex_state = 11}, + [2004] = {.lex_state = 2, .external_lex_state = 3}, [2005] = {.lex_state = 11}, - [2006] = {.lex_state = 11}, + [2006] = {.lex_state = 3, .external_lex_state = 3}, [2007] = {.lex_state = 11}, [2008] = {.lex_state = 11}, [2009] = {.lex_state = 11}, [2010] = {.lex_state = 11}, [2011] = {.lex_state = 11}, - [2012] = {.lex_state = 3, .external_lex_state = 3}, - [2013] = {.lex_state = 2, .external_lex_state = 2}, - [2014] = {.lex_state = 11}, + [2012] = {.lex_state = 11}, + [2013] = {.lex_state = 11}, + [2014] = {.lex_state = 3, .external_lex_state = 3}, [2015] = {.lex_state = 11}, [2016] = {.lex_state = 11}, - [2017] = {.lex_state = 11}, + [2017] = {.lex_state = 2, .external_lex_state = 2}, [2018] = {.lex_state = 11}, - [2019] = {.lex_state = 2, .external_lex_state = 2}, - [2020] = {.lex_state = 11}, - [2021] = {.lex_state = 3, .external_lex_state = 3}, + [2019] = {.lex_state = 11}, + [2020] = {.lex_state = 3, .external_lex_state = 3}, + [2021] = {.lex_state = 13}, [2022] = {.lex_state = 2, .external_lex_state = 3}, - [2023] = {.lex_state = 13}, + [2023] = {.lex_state = 2, .external_lex_state = 3}, [2024] = {.lex_state = 2, .external_lex_state = 3}, [2025] = {.lex_state = 2, .external_lex_state = 3}, [2026] = {.lex_state = 2, .external_lex_state = 3}, [2027] = {.lex_state = 2, .external_lex_state = 3}, [2028] = {.lex_state = 2, .external_lex_state = 3}, [2029] = {.lex_state = 2, .external_lex_state = 3}, - [2030] = {.lex_state = 2, .external_lex_state = 2}, - [2031] = {.lex_state = 2, .external_lex_state = 2}, - [2032] = {.lex_state = 2, .external_lex_state = 3}, + [2030] = {.lex_state = 2, .external_lex_state = 3}, + [2031] = {.lex_state = 2, .external_lex_state = 3}, + [2032] = {.lex_state = 3, .external_lex_state = 3}, [2033] = {.lex_state = 2, .external_lex_state = 3}, [2034] = {.lex_state = 2, .external_lex_state = 3}, - [2035] = {.lex_state = 2, .external_lex_state = 3}, + [2035] = {.lex_state = 2, .external_lex_state = 2}, [2036] = {.lex_state = 2, .external_lex_state = 3}, - [2037] = {.lex_state = 3, .external_lex_state = 3}, - [2038] = {.lex_state = 2, .external_lex_state = 3}, - [2039] = {.lex_state = 2, .external_lex_state = 2}, - [2040] = {.lex_state = 3, .external_lex_state = 3}, + [2037] = {.lex_state = 2, .external_lex_state = 2}, + [2038] = {.lex_state = 2, .external_lex_state = 2}, + [2039] = {.lex_state = 2, .external_lex_state = 3}, + [2040] = {.lex_state = 2, .external_lex_state = 3}, [2041] = {.lex_state = 2, .external_lex_state = 3}, - [2042] = {.lex_state = 2, .external_lex_state = 3}, + [2042] = {.lex_state = 3, .external_lex_state = 3}, [2043] = {.lex_state = 2, .external_lex_state = 3}, [2044] = {.lex_state = 2, .external_lex_state = 3}, - [2045] = {.lex_state = 2, .external_lex_state = 3}, - [2046] = {.lex_state = 2, .external_lex_state = 2}, - [2047] = {.lex_state = 13}, + [2045] = {.lex_state = 3, .external_lex_state = 3}, + [2046] = {.lex_state = 2, .external_lex_state = 3}, + [2047] = {.lex_state = 2, .external_lex_state = 3}, [2048] = {.lex_state = 3, .external_lex_state = 3}, - [2049] = {.lex_state = 3, .external_lex_state = 3}, + [2049] = {.lex_state = 2, .external_lex_state = 3}, [2050] = {.lex_state = 2, .external_lex_state = 3}, - [2051] = {.lex_state = 2, .external_lex_state = 3}, - [2052] = {.lex_state = 2, .external_lex_state = 3}, + [2051] = {.lex_state = 3, .external_lex_state = 3}, + [2052] = {.lex_state = 2, .external_lex_state = 2}, [2053] = {.lex_state = 2, .external_lex_state = 3}, - [2054] = {.lex_state = 2, .external_lex_state = 2}, + [2054] = {.lex_state = 2, .external_lex_state = 3}, [2055] = {.lex_state = 2, .external_lex_state = 3}, - [2056] = {.lex_state = 2, .external_lex_state = 3}, - [2057] = {.lex_state = 2, .external_lex_state = 3}, - [2058] = {.lex_state = 2, .external_lex_state = 3}, + [2056] = {.lex_state = 2, .external_lex_state = 2}, + [2057] = {.lex_state = 2, .external_lex_state = 2}, + [2058] = {.lex_state = 2, .external_lex_state = 2}, [2059] = {.lex_state = 2, .external_lex_state = 3}, [2060] = {.lex_state = 2, .external_lex_state = 3}, [2061] = {.lex_state = 2, .external_lex_state = 3}, - [2062] = {.lex_state = 3, .external_lex_state = 3}, + [2062] = {.lex_state = 2, .external_lex_state = 3}, [2063] = {.lex_state = 2, .external_lex_state = 3}, [2064] = {.lex_state = 2, .external_lex_state = 3}, [2065] = {.lex_state = 2, .external_lex_state = 3}, [2066] = {.lex_state = 2, .external_lex_state = 2}, - [2067] = {.lex_state = 2, .external_lex_state = 3}, + [2067] = {.lex_state = 2, .external_lex_state = 2}, [2068] = {.lex_state = 2, .external_lex_state = 3}, - [2069] = {.lex_state = 2, .external_lex_state = 2}, + [2069] = {.lex_state = 2, .external_lex_state = 3}, [2070] = {.lex_state = 2, .external_lex_state = 3}, - [2071] = {.lex_state = 2, .external_lex_state = 2}, - [2072] = {.lex_state = 2, .external_lex_state = 2}, + [2071] = {.lex_state = 2, .external_lex_state = 3}, + [2072] = {.lex_state = 13}, [2073] = {.lex_state = 2, .external_lex_state = 2}, [2074] = {.lex_state = 2, .external_lex_state = 3}, [2075] = {.lex_state = 2, .external_lex_state = 3}, @@ -8373,11 +8372,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2077] = {.lex_state = 2, .external_lex_state = 3}, [2078] = {.lex_state = 2, .external_lex_state = 3}, [2079] = {.lex_state = 2, .external_lex_state = 3}, - [2080] = {.lex_state = 2, .external_lex_state = 3}, - [2081] = {.lex_state = 2, .external_lex_state = 2}, + [2080] = {.lex_state = 2, .external_lex_state = 2}, + [2081] = {.lex_state = 2, .external_lex_state = 3}, [2082] = {.lex_state = 2, .external_lex_state = 3}, - [2083] = {.lex_state = 2, .external_lex_state = 2}, - [2084] = {.lex_state = 2, .external_lex_state = 2}, + [2083] = {.lex_state = 2, .external_lex_state = 3}, + [2084] = {.lex_state = 2, .external_lex_state = 3}, [2085] = {.lex_state = 2, .external_lex_state = 3}, [2086] = {.lex_state = 2, .external_lex_state = 3}, [2087] = {.lex_state = 2, .external_lex_state = 3}, @@ -8387,11 +8386,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2091] = {.lex_state = 2, .external_lex_state = 3}, [2092] = {.lex_state = 2, .external_lex_state = 3}, [2093] = {.lex_state = 2, .external_lex_state = 3}, - [2094] = {.lex_state = 2, .external_lex_state = 3}, + [2094] = {.lex_state = 2, .external_lex_state = 2}, [2095] = {.lex_state = 2, .external_lex_state = 3}, - [2096] = {.lex_state = 2, .external_lex_state = 3}, - [2097] = {.lex_state = 2, .external_lex_state = 2}, - [2098] = {.lex_state = 2, .external_lex_state = 3}, + [2096] = {.lex_state = 2, .external_lex_state = 2}, + [2097] = {.lex_state = 2, .external_lex_state = 3}, + [2098] = {.lex_state = 2, .external_lex_state = 2}, [2099] = {.lex_state = 2, .external_lex_state = 3}, [2100] = {.lex_state = 2, .external_lex_state = 3}, [2101] = {.lex_state = 2, .external_lex_state = 3}, @@ -8410,7 +8409,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2114] = {.lex_state = 2, .external_lex_state = 3}, [2115] = {.lex_state = 2, .external_lex_state = 3}, [2116] = {.lex_state = 2, .external_lex_state = 3}, - [2117] = {.lex_state = 2, .external_lex_state = 3}, + [2117] = {.lex_state = 75, .external_lex_state = 5}, [2118] = {.lex_state = 75, .external_lex_state = 5}, [2119] = {.lex_state = 75, .external_lex_state = 5}, [2120] = {.lex_state = 75, .external_lex_state = 5}, @@ -8419,23 +8418,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2123] = {.lex_state = 75, .external_lex_state = 5}, [2124] = {.lex_state = 75, .external_lex_state = 5}, [2125] = {.lex_state = 75, .external_lex_state = 5}, - [2126] = {.lex_state = 75, .external_lex_state = 5}, - [2127] = {.lex_state = 11}, + [2126] = {.lex_state = 11}, + [2127] = {.lex_state = 74, .external_lex_state = 2}, [2128] = {.lex_state = 11}, - [2129] = {.lex_state = 75, .external_lex_state = 5}, + [2129] = {.lex_state = 11}, [2130] = {.lex_state = 11}, - [2131] = {.lex_state = 74, .external_lex_state = 2}, + [2131] = {.lex_state = 11}, [2132] = {.lex_state = 11}, [2133] = {.lex_state = 11}, - [2134] = {.lex_state = 11}, - [2135] = {.lex_state = 11}, + [2134] = {.lex_state = 75, .external_lex_state = 5}, + [2135] = {.lex_state = 75, .external_lex_state = 5}, [2136] = {.lex_state = 75, .external_lex_state = 5}, [2137] = {.lex_state = 75, .external_lex_state = 5}, - [2138] = {.lex_state = 75, .external_lex_state = 5}, - [2139] = {.lex_state = 74, .external_lex_state = 3}, + [2138] = {.lex_state = 11}, + [2139] = {.lex_state = 11}, [2140] = {.lex_state = 11}, [2141] = {.lex_state = 11}, - [2142] = {.lex_state = 11}, + [2142] = {.lex_state = 74, .external_lex_state = 3}, [2143] = {.lex_state = 11}, [2144] = {.lex_state = 11}, [2145] = {.lex_state = 11}, @@ -8453,44 +8452,44 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2157] = {.lex_state = 11}, [2158] = {.lex_state = 11}, [2159] = {.lex_state = 11}, - [2160] = {.lex_state = 11}, - [2161] = {.lex_state = 74, .external_lex_state = 2}, + [2160] = {.lex_state = 74, .external_lex_state = 2}, + [2161] = {.lex_state = 74, .external_lex_state = 3}, [2162] = {.lex_state = 74, .external_lex_state = 3}, - [2163] = {.lex_state = 74, .external_lex_state = 3}, - [2164] = {.lex_state = 74, .external_lex_state = 2}, + [2163] = {.lex_state = 74, .external_lex_state = 2}, + [2164] = {.lex_state = 74, .external_lex_state = 3}, [2165] = {.lex_state = 74, .external_lex_state = 2}, - [2166] = {.lex_state = 74, .external_lex_state = 3}, - [2167] = {.lex_state = 74, .external_lex_state = 2}, + [2166] = {.lex_state = 74, .external_lex_state = 2}, + [2167] = {.lex_state = 74, .external_lex_state = 3}, [2168] = {.lex_state = 74, .external_lex_state = 2}, [2169] = {.lex_state = 74, .external_lex_state = 3}, - [2170] = {.lex_state = 74, .external_lex_state = 3}, + [2170] = {.lex_state = 74, .external_lex_state = 2}, [2171] = {.lex_state = 74, .external_lex_state = 2}, - [2172] = {.lex_state = 74, .external_lex_state = 2}, - [2173] = {.lex_state = 74, .external_lex_state = 2}, + [2172] = {.lex_state = 74, .external_lex_state = 3}, + [2173] = {.lex_state = 74, .external_lex_state = 3}, [2174] = {.lex_state = 74, .external_lex_state = 3}, - [2175] = {.lex_state = 74, .external_lex_state = 2}, + [2175] = {.lex_state = 74, .external_lex_state = 3}, [2176] = {.lex_state = 74, .external_lex_state = 3}, - [2177] = {.lex_state = 74, .external_lex_state = 2}, - [2178] = {.lex_state = 74, .external_lex_state = 2}, + [2177] = {.lex_state = 74, .external_lex_state = 3}, + [2178] = {.lex_state = 74, .external_lex_state = 3}, [2179] = {.lex_state = 74, .external_lex_state = 3}, [2180] = {.lex_state = 74, .external_lex_state = 2}, [2181] = {.lex_state = 74, .external_lex_state = 3}, - [2182] = {.lex_state = 74, .external_lex_state = 2}, + [2182] = {.lex_state = 74, .external_lex_state = 3}, [2183] = {.lex_state = 74, .external_lex_state = 3}, [2184] = {.lex_state = 74, .external_lex_state = 3}, - [2185] = {.lex_state = 74, .external_lex_state = 2}, + [2185] = {.lex_state = 74, .external_lex_state = 3}, [2186] = {.lex_state = 74, .external_lex_state = 3}, [2187] = {.lex_state = 74, .external_lex_state = 3}, - [2188] = {.lex_state = 74, .external_lex_state = 2}, + [2188] = {.lex_state = 74, .external_lex_state = 3}, [2189] = {.lex_state = 74, .external_lex_state = 3}, [2190] = {.lex_state = 74, .external_lex_state = 3}, [2191] = {.lex_state = 74, .external_lex_state = 3}, [2192] = {.lex_state = 74, .external_lex_state = 3}, - [2193] = {.lex_state = 74, .external_lex_state = 3}, + [2193] = {.lex_state = 74, .external_lex_state = 2}, [2194] = {.lex_state = 74, .external_lex_state = 3}, [2195] = {.lex_state = 74, .external_lex_state = 3}, [2196] = {.lex_state = 74, .external_lex_state = 3}, - [2197] = {.lex_state = 74, .external_lex_state = 2}, + [2197] = {.lex_state = 74, .external_lex_state = 3}, [2198] = {.lex_state = 74, .external_lex_state = 3}, [2199] = {.lex_state = 74, .external_lex_state = 3}, [2200] = {.lex_state = 74, .external_lex_state = 3}, @@ -8506,55 +8505,55 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2210] = {.lex_state = 74, .external_lex_state = 3}, [2211] = {.lex_state = 74, .external_lex_state = 3}, [2212] = {.lex_state = 74, .external_lex_state = 3}, - [2213] = {.lex_state = 74, .external_lex_state = 3}, + [2213] = {.lex_state = 74, .external_lex_state = 2}, [2214] = {.lex_state = 74, .external_lex_state = 3}, [2215] = {.lex_state = 74, .external_lex_state = 3}, [2216] = {.lex_state = 74, .external_lex_state = 3}, [2217] = {.lex_state = 74, .external_lex_state = 3}, - [2218] = {.lex_state = 74, .external_lex_state = 3}, - [2219] = {.lex_state = 74, .external_lex_state = 2}, + [2218] = {.lex_state = 74, .external_lex_state = 2}, + [2219] = {.lex_state = 74, .external_lex_state = 3}, [2220] = {.lex_state = 74, .external_lex_state = 3}, - [2221] = {.lex_state = 74, .external_lex_state = 2}, - [2222] = {.lex_state = 74, .external_lex_state = 3}, - [2223] = {.lex_state = 74, .external_lex_state = 3}, - [2224] = {.lex_state = 74, .external_lex_state = 3}, + [2221] = {.lex_state = 74, .external_lex_state = 3}, + [2222] = {.lex_state = 74, .external_lex_state = 2}, + [2223] = {.lex_state = 74, .external_lex_state = 2}, + [2224] = {.lex_state = 74, .external_lex_state = 2}, [2225] = {.lex_state = 74, .external_lex_state = 3}, - [2226] = {.lex_state = 74, .external_lex_state = 3}, - [2227] = {.lex_state = 74, .external_lex_state = 3}, + [2226] = {.lex_state = 74, .external_lex_state = 2}, + [2227] = {.lex_state = 74, .external_lex_state = 2}, [2228] = {.lex_state = 74, .external_lex_state = 3}, [2229] = {.lex_state = 74, .external_lex_state = 3}, - [2230] = {.lex_state = 74, .external_lex_state = 3}, - [2231] = {.lex_state = 74, .external_lex_state = 2}, - [2232] = {.lex_state = 74, .external_lex_state = 3}, + [2230] = {.lex_state = 74, .external_lex_state = 2}, + [2231] = {.lex_state = 74, .external_lex_state = 3}, + [2232] = {.lex_state = 11}, [2233] = {.lex_state = 11}, [2234] = {.lex_state = 74, .external_lex_state = 3}, [2235] = {.lex_state = 74, .external_lex_state = 2}, - [2236] = {.lex_state = 74, .external_lex_state = 3}, - [2237] = {.lex_state = 74, .external_lex_state = 3}, - [2238] = {.lex_state = 74, .external_lex_state = 2}, - [2239] = {.lex_state = 74, .external_lex_state = 3}, - [2240] = {.lex_state = 74, .external_lex_state = 3}, + [2236] = {.lex_state = 74, .external_lex_state = 2}, + [2237] = {.lex_state = 74, .external_lex_state = 2}, + [2238] = {.lex_state = 74, .external_lex_state = 3}, + [2239] = {.lex_state = 74, .external_lex_state = 2}, + [2240] = {.lex_state = 74, .external_lex_state = 2}, [2241] = {.lex_state = 74, .external_lex_state = 3}, - [2242] = {.lex_state = 74, .external_lex_state = 3}, - [2243] = {.lex_state = 74, .external_lex_state = 3}, - [2244] = {.lex_state = 74, .external_lex_state = 2}, + [2242] = {.lex_state = 74, .external_lex_state = 2}, + [2243] = {.lex_state = 74, .external_lex_state = 2}, + [2244] = {.lex_state = 74, .external_lex_state = 3}, [2245] = {.lex_state = 74, .external_lex_state = 3}, - [2246] = {.lex_state = 74, .external_lex_state = 3}, - [2247] = {.lex_state = 74, .external_lex_state = 3}, - [2248] = {.lex_state = 74, .external_lex_state = 3}, - [2249] = {.lex_state = 74, .external_lex_state = 3}, + [2246] = {.lex_state = 74, .external_lex_state = 2}, + [2247] = {.lex_state = 74, .external_lex_state = 2}, + [2248] = {.lex_state = 74, .external_lex_state = 2}, + [2249] = {.lex_state = 74, .external_lex_state = 2}, [2250] = {.lex_state = 74, .external_lex_state = 3}, - [2251] = {.lex_state = 74, .external_lex_state = 3}, - [2252] = {.lex_state = 74, .external_lex_state = 3}, + [2251] = {.lex_state = 74, .external_lex_state = 2}, + [2252] = {.lex_state = 74, .external_lex_state = 2}, [2253] = {.lex_state = 74, .external_lex_state = 3}, - [2254] = {.lex_state = 74, .external_lex_state = 3}, - [2255] = {.lex_state = 74, .external_lex_state = 3}, - [2256] = {.lex_state = 74, .external_lex_state = 3}, + [2254] = {.lex_state = 74, .external_lex_state = 2}, + [2255] = {.lex_state = 74, .external_lex_state = 2}, + [2256] = {.lex_state = 11}, [2257] = {.lex_state = 74, .external_lex_state = 3}, [2258] = {.lex_state = 74, .external_lex_state = 3}, [2259] = {.lex_state = 11}, - [2260] = {.lex_state = 74, .external_lex_state = 3}, - [2261] = {.lex_state = 74, .external_lex_state = 3}, + [2260] = {.lex_state = 74, .external_lex_state = 2}, + [2261] = {.lex_state = 11}, [2262] = {.lex_state = 74, .external_lex_state = 3}, [2263] = {.lex_state = 74, .external_lex_state = 3}, [2264] = {.lex_state = 74, .external_lex_state = 3}, @@ -8565,84 +8564,84 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2269] = {.lex_state = 74, .external_lex_state = 3}, [2270] = {.lex_state = 74, .external_lex_state = 3}, [2271] = {.lex_state = 74, .external_lex_state = 3}, - [2272] = {.lex_state = 74, .external_lex_state = 3}, + [2272] = {.lex_state = 74, .external_lex_state = 2}, [2273] = {.lex_state = 74, .external_lex_state = 3}, [2274] = {.lex_state = 74, .external_lex_state = 3}, - [2275] = {.lex_state = 74, .external_lex_state = 3}, - [2276] = {.lex_state = 74, .external_lex_state = 3}, + [2275] = {.lex_state = 74, .external_lex_state = 2}, + [2276] = {.lex_state = 74, .external_lex_state = 2}, [2277] = {.lex_state = 74, .external_lex_state = 3}, - [2278] = {.lex_state = 11}, - [2279] = {.lex_state = 74, .external_lex_state = 2}, - [2280] = {.lex_state = 5, .external_lex_state = 3}, - [2281] = {.lex_state = 74, .external_lex_state = 2}, + [2278] = {.lex_state = 74, .external_lex_state = 2}, + [2279] = {.lex_state = 74, .external_lex_state = 3}, + [2280] = {.lex_state = 74, .external_lex_state = 3}, + [2281] = {.lex_state = 11}, [2282] = {.lex_state = 74, .external_lex_state = 3}, - [2283] = {.lex_state = 74, .external_lex_state = 3}, + [2283] = {.lex_state = 5, .external_lex_state = 3}, [2284] = {.lex_state = 74, .external_lex_state = 3}, [2285] = {.lex_state = 74, .external_lex_state = 3}, [2286] = {.lex_state = 74, .external_lex_state = 3}, [2287] = {.lex_state = 74, .external_lex_state = 3}, [2288] = {.lex_state = 74, .external_lex_state = 3}, [2289] = {.lex_state = 74, .external_lex_state = 3}, - [2290] = {.lex_state = 74, .external_lex_state = 2}, + [2290] = {.lex_state = 74, .external_lex_state = 3}, [2291] = {.lex_state = 74, .external_lex_state = 3}, - [2292] = {.lex_state = 74, .external_lex_state = 2}, + [2292] = {.lex_state = 74, .external_lex_state = 3}, [2293] = {.lex_state = 74, .external_lex_state = 3}, [2294] = {.lex_state = 74, .external_lex_state = 3}, [2295] = {.lex_state = 74, .external_lex_state = 3}, [2296] = {.lex_state = 74, .external_lex_state = 3}, - [2297] = {.lex_state = 74, .external_lex_state = 2}, - [2298] = {.lex_state = 11}, + [2297] = {.lex_state = 74, .external_lex_state = 3}, + [2298] = {.lex_state = 74, .external_lex_state = 3}, [2299] = {.lex_state = 74, .external_lex_state = 3}, - [2300] = {.lex_state = 11}, - [2301] = {.lex_state = 74, .external_lex_state = 2}, + [2300] = {.lex_state = 74, .external_lex_state = 3}, + [2301] = {.lex_state = 74, .external_lex_state = 3}, [2302] = {.lex_state = 74, .external_lex_state = 3}, - [2303] = {.lex_state = 74, .external_lex_state = 3}, + [2303] = {.lex_state = 11}, [2304] = {.lex_state = 74, .external_lex_state = 3}, [2305] = {.lex_state = 74, .external_lex_state = 3}, [2306] = {.lex_state = 74, .external_lex_state = 3}, [2307] = {.lex_state = 74, .external_lex_state = 3}, [2308] = {.lex_state = 74, .external_lex_state = 3}, - [2309] = {.lex_state = 74, .external_lex_state = 2}, - [2310] = {.lex_state = 74, .external_lex_state = 2}, + [2309] = {.lex_state = 74, .external_lex_state = 3}, + [2310] = {.lex_state = 74, .external_lex_state = 3}, [2311] = {.lex_state = 74, .external_lex_state = 3}, - [2312] = {.lex_state = 74, .external_lex_state = 2}, - [2313] = {.lex_state = 74, .external_lex_state = 2}, + [2312] = {.lex_state = 74, .external_lex_state = 3}, + [2313] = {.lex_state = 74, .external_lex_state = 3}, [2314] = {.lex_state = 74, .external_lex_state = 3}, - [2315] = {.lex_state = 74, .external_lex_state = 2}, - [2316] = {.lex_state = 74, .external_lex_state = 2}, + [2315] = {.lex_state = 74, .external_lex_state = 3}, + [2316] = {.lex_state = 74, .external_lex_state = 3}, [2317] = {.lex_state = 74, .external_lex_state = 3}, - [2318] = {.lex_state = 74, .external_lex_state = 2}, - [2319] = {.lex_state = 74, .external_lex_state = 2}, + [2318] = {.lex_state = 74, .external_lex_state = 3}, + [2319] = {.lex_state = 74, .external_lex_state = 3}, [2320] = {.lex_state = 74, .external_lex_state = 3}, [2321] = {.lex_state = 74, .external_lex_state = 3}, [2322] = {.lex_state = 74, .external_lex_state = 3}, - [2323] = {.lex_state = 74, .external_lex_state = 3}, + [2323] = {.lex_state = 74, .external_lex_state = 2}, [2324] = {.lex_state = 74, .external_lex_state = 3}, - [2325] = {.lex_state = 11}, + [2325] = {.lex_state = 74, .external_lex_state = 3}, [2326] = {.lex_state = 74, .external_lex_state = 3}, [2327] = {.lex_state = 74, .external_lex_state = 3}, [2328] = {.lex_state = 74, .external_lex_state = 3}, [2329] = {.lex_state = 74, .external_lex_state = 3}, - [2330] = {.lex_state = 74, .external_lex_state = 2}, + [2330] = {.lex_state = 74, .external_lex_state = 3}, [2331] = {.lex_state = 74, .external_lex_state = 3}, [2332] = {.lex_state = 74, .external_lex_state = 3}, [2333] = {.lex_state = 74, .external_lex_state = 3}, - [2334] = {.lex_state = 74, .external_lex_state = 3}, - [2335] = {.lex_state = 11}, + [2334] = {.lex_state = 11}, + [2335] = {.lex_state = 74, .external_lex_state = 3}, [2336] = {.lex_state = 74, .external_lex_state = 3}, [2337] = {.lex_state = 74, .external_lex_state = 3}, [2338] = {.lex_state = 74, .external_lex_state = 3}, [2339] = {.lex_state = 74, .external_lex_state = 3}, - [2340] = {.lex_state = 74, .external_lex_state = 2}, - [2341] = {.lex_state = 74, .external_lex_state = 3}, + [2340] = {.lex_state = 74, .external_lex_state = 3}, + [2341] = {.lex_state = 74, .external_lex_state = 2}, [2342] = {.lex_state = 74, .external_lex_state = 2}, - [2343] = {.lex_state = 74, .external_lex_state = 3}, - [2344] = {.lex_state = 74, .external_lex_state = 2}, - [2345] = {.lex_state = 11}, + [2343] = {.lex_state = 74, .external_lex_state = 2}, + [2344] = {.lex_state = 74, .external_lex_state = 3}, + [2345] = {.lex_state = 74, .external_lex_state = 3}, [2346] = {.lex_state = 74, .external_lex_state = 3}, [2347] = {.lex_state = 74, .external_lex_state = 3}, [2348] = {.lex_state = 74, .external_lex_state = 3}, - [2349] = {.lex_state = 74, .external_lex_state = 2}, + [2349] = {.lex_state = 74, .external_lex_state = 3}, [2350] = {.lex_state = 74, .external_lex_state = 3}, [2351] = {.lex_state = 74, .external_lex_state = 3}, [2352] = {.lex_state = 74, .external_lex_state = 3}, @@ -8653,69 +8652,69 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2357] = {.lex_state = 74, .external_lex_state = 3}, [2358] = {.lex_state = 74, .external_lex_state = 3}, [2359] = {.lex_state = 74, .external_lex_state = 3}, - [2360] = {.lex_state = 74, .external_lex_state = 3}, - [2361] = {.lex_state = 74, .external_lex_state = 4}, - [2362] = {.lex_state = 75}, + [2360] = {.lex_state = 74, .external_lex_state = 2}, + [2361] = {.lex_state = 74, .external_lex_state = 3}, + [2362] = {.lex_state = 74, .external_lex_state = 3}, [2363] = {.lex_state = 75}, - [2364] = {.lex_state = 74, .external_lex_state = 4}, - [2365] = {.lex_state = 74, .external_lex_state = 4}, - [2366] = {.lex_state = 74, .external_lex_state = 4}, - [2367] = {.lex_state = 74, .external_lex_state = 3}, + [2364] = {.lex_state = 75}, + [2365] = {.lex_state = 75}, + [2366] = {.lex_state = 74, .external_lex_state = 3}, + [2367] = {.lex_state = 74, .external_lex_state = 4}, [2368] = {.lex_state = 74, .external_lex_state = 4}, - [2369] = {.lex_state = 75}, - [2370] = {.lex_state = 75}, - [2371] = {.lex_state = 75}, - [2372] = {.lex_state = 74, .external_lex_state = 4}, - [2373] = {.lex_state = 74, .external_lex_state = 4}, - [2374] = {.lex_state = 74, .external_lex_state = 4}, - [2375] = {.lex_state = 74, .external_lex_state = 2}, - [2376] = {.lex_state = 74, .external_lex_state = 2}, - [2377] = {.lex_state = 74, .external_lex_state = 2}, - [2378] = {.lex_state = 75}, - [2379] = {.lex_state = 75}, + [2369] = {.lex_state = 74, .external_lex_state = 4}, + [2370] = {.lex_state = 74, .external_lex_state = 4}, + [2371] = {.lex_state = 74, .external_lex_state = 4}, + [2372] = {.lex_state = 74, .external_lex_state = 3}, + [2373] = {.lex_state = 74, .external_lex_state = 3}, + [2374] = {.lex_state = 74, .external_lex_state = 3}, + [2375] = {.lex_state = 74, .external_lex_state = 3}, + [2376] = {.lex_state = 74, .external_lex_state = 4}, + [2377] = {.lex_state = 74, .external_lex_state = 4}, + [2378] = {.lex_state = 74, .external_lex_state = 4}, + [2379] = {.lex_state = 74, .external_lex_state = 4}, [2380] = {.lex_state = 74, .external_lex_state = 4}, [2381] = {.lex_state = 74, .external_lex_state = 4}, [2382] = {.lex_state = 74, .external_lex_state = 4}, - [2383] = {.lex_state = 74, .external_lex_state = 2}, + [2383] = {.lex_state = 74, .external_lex_state = 4}, [2384] = {.lex_state = 74, .external_lex_state = 4}, - [2385] = {.lex_state = 5, .external_lex_state = 2}, + [2385] = {.lex_state = 74, .external_lex_state = 4}, [2386] = {.lex_state = 74, .external_lex_state = 4}, [2387] = {.lex_state = 74, .external_lex_state = 4}, [2388] = {.lex_state = 74, .external_lex_state = 4}, [2389] = {.lex_state = 74, .external_lex_state = 4}, - [2390] = {.lex_state = 75}, + [2390] = {.lex_state = 74, .external_lex_state = 4}, [2391] = {.lex_state = 74, .external_lex_state = 4}, - [2392] = {.lex_state = 74, .external_lex_state = 3}, - [2393] = {.lex_state = 74, .external_lex_state = 3}, + [2392] = {.lex_state = 74, .external_lex_state = 4}, + [2393] = {.lex_state = 74, .external_lex_state = 4}, [2394] = {.lex_state = 74, .external_lex_state = 4}, - [2395] = {.lex_state = 74, .external_lex_state = 3}, - [2396] = {.lex_state = 74, .external_lex_state = 4}, - [2397] = {.lex_state = 74, .external_lex_state = 3}, - [2398] = {.lex_state = 74, .external_lex_state = 4}, - [2399] = {.lex_state = 74, .external_lex_state = 4}, + [2395] = {.lex_state = 75}, + [2396] = {.lex_state = 74, .external_lex_state = 3}, + [2397] = {.lex_state = 75}, + [2398] = {.lex_state = 75}, + [2399] = {.lex_state = 75}, [2400] = {.lex_state = 75}, - [2401] = {.lex_state = 74, .external_lex_state = 3}, - [2402] = {.lex_state = 74, .external_lex_state = 4}, + [2401] = {.lex_state = 75}, + [2402] = {.lex_state = 74, .external_lex_state = 2}, [2403] = {.lex_state = 75}, - [2404] = {.lex_state = 74, .external_lex_state = 4}, - [2405] = {.lex_state = 74, .external_lex_state = 4}, - [2406] = {.lex_state = 74, .external_lex_state = 3}, - [2407] = {.lex_state = 74, .external_lex_state = 3}, - [2408] = {.lex_state = 75}, + [2404] = {.lex_state = 74, .external_lex_state = 2}, + [2405] = {.lex_state = 75}, + [2406] = {.lex_state = 5, .external_lex_state = 2}, + [2407] = {.lex_state = 74, .external_lex_state = 2}, + [2408] = {.lex_state = 74, .external_lex_state = 2}, [2409] = {.lex_state = 74, .external_lex_state = 2}, [2410] = {.lex_state = 74, .external_lex_state = 2}, - [2411] = {.lex_state = 74, .external_lex_state = 2}, - [2412] = {.lex_state = 74, .external_lex_state = 3}, - [2413] = {.lex_state = 74, .external_lex_state = 3}, + [2411] = {.lex_state = 74, .external_lex_state = 3}, + [2412] = {.lex_state = 74, .external_lex_state = 2}, + [2413] = {.lex_state = 74, .external_lex_state = 2}, [2414] = {.lex_state = 74, .external_lex_state = 2}, - [2415] = {.lex_state = 74, .external_lex_state = 2}, - [2416] = {.lex_state = 74, .external_lex_state = 3}, - [2417] = {.lex_state = 74, .external_lex_state = 3}, - [2418] = {.lex_state = 74, .external_lex_state = 3}, - [2419] = {.lex_state = 74, .external_lex_state = 3}, + [2415] = {.lex_state = 74, .external_lex_state = 4}, + [2416] = {.lex_state = 74, .external_lex_state = 2}, + [2417] = {.lex_state = 74, .external_lex_state = 2}, + [2418] = {.lex_state = 74, .external_lex_state = 2}, + [2419] = {.lex_state = 74, .external_lex_state = 4}, [2420] = {.lex_state = 74, .external_lex_state = 2}, [2421] = {.lex_state = 74, .external_lex_state = 2}, - [2422] = {.lex_state = 74, .external_lex_state = 3}, + [2422] = {.lex_state = 74, .external_lex_state = 2}, [2423] = {.lex_state = 74, .external_lex_state = 2}, [2424] = {.lex_state = 74, .external_lex_state = 2}, [2425] = {.lex_state = 74, .external_lex_state = 2}, @@ -8725,155 +8724,155 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2429] = {.lex_state = 74, .external_lex_state = 2}, [2430] = {.lex_state = 74, .external_lex_state = 3}, [2431] = {.lex_state = 74, .external_lex_state = 2}, - [2432] = {.lex_state = 74, .external_lex_state = 2}, - [2433] = {.lex_state = 74, .external_lex_state = 3}, - [2434] = {.lex_state = 74, .external_lex_state = 3}, + [2432] = {.lex_state = 74, .external_lex_state = 3}, + [2433] = {.lex_state = 74, .external_lex_state = 2}, + [2434] = {.lex_state = 74, .external_lex_state = 2}, [2435] = {.lex_state = 74, .external_lex_state = 2}, - [2436] = {.lex_state = 74, .external_lex_state = 3}, - [2437] = {.lex_state = 74, .external_lex_state = 3}, - [2438] = {.lex_state = 74, .external_lex_state = 3}, + [2436] = {.lex_state = 74, .external_lex_state = 2}, + [2437] = {.lex_state = 74, .external_lex_state = 2}, + [2438] = {.lex_state = 74, .external_lex_state = 2}, [2439] = {.lex_state = 74, .external_lex_state = 3}, - [2440] = {.lex_state = 74, .external_lex_state = 3}, + [2440] = {.lex_state = 74, .external_lex_state = 2}, [2441] = {.lex_state = 74, .external_lex_state = 2}, - [2442] = {.lex_state = 74, .external_lex_state = 3}, + [2442] = {.lex_state = 74, .external_lex_state = 2}, [2443] = {.lex_state = 74, .external_lex_state = 2}, [2444] = {.lex_state = 74, .external_lex_state = 3}, - [2445] = {.lex_state = 74, .external_lex_state = 3}, - [2446] = {.lex_state = 74, .external_lex_state = 3}, - [2447] = {.lex_state = 74, .external_lex_state = 3}, - [2448] = {.lex_state = 74, .external_lex_state = 3}, - [2449] = {.lex_state = 74, .external_lex_state = 3}, + [2445] = {.lex_state = 74, .external_lex_state = 2}, + [2446] = {.lex_state = 74, .external_lex_state = 2}, + [2447] = {.lex_state = 74, .external_lex_state = 2}, + [2448] = {.lex_state = 74, .external_lex_state = 2}, + [2449] = {.lex_state = 74, .external_lex_state = 2}, [2450] = {.lex_state = 74, .external_lex_state = 2}, - [2451] = {.lex_state = 74, .external_lex_state = 3}, - [2452] = {.lex_state = 74, .external_lex_state = 3}, + [2451] = {.lex_state = 74, .external_lex_state = 2}, + [2452] = {.lex_state = 74, .external_lex_state = 2}, [2453] = {.lex_state = 74, .external_lex_state = 2}, [2454] = {.lex_state = 74, .external_lex_state = 2}, [2455] = {.lex_state = 74, .external_lex_state = 2}, - [2456] = {.lex_state = 74, .external_lex_state = 2}, + [2456] = {.lex_state = 74, .external_lex_state = 3}, [2457] = {.lex_state = 74, .external_lex_state = 2}, [2458] = {.lex_state = 74, .external_lex_state = 2}, - [2459] = {.lex_state = 74, .external_lex_state = 4}, + [2459] = {.lex_state = 74, .external_lex_state = 2}, [2460] = {.lex_state = 74, .external_lex_state = 2}, [2461] = {.lex_state = 74, .external_lex_state = 2}, [2462] = {.lex_state = 74, .external_lex_state = 2}, - [2463] = {.lex_state = 74, .external_lex_state = 2}, + [2463] = {.lex_state = 74, .external_lex_state = 3}, [2464] = {.lex_state = 74, .external_lex_state = 2}, [2465] = {.lex_state = 74, .external_lex_state = 2}, - [2466] = {.lex_state = 74, .external_lex_state = 2}, - [2467] = {.lex_state = 74, .external_lex_state = 3}, - [2468] = {.lex_state = 74, .external_lex_state = 4}, - [2469] = {.lex_state = 74, .external_lex_state = 4}, + [2466] = {.lex_state = 74, .external_lex_state = 3}, + [2467] = {.lex_state = 74, .external_lex_state = 2}, + [2468] = {.lex_state = 74, .external_lex_state = 2}, + [2469] = {.lex_state = 74, .external_lex_state = 2}, [2470] = {.lex_state = 74, .external_lex_state = 2}, - [2471] = {.lex_state = 74, .external_lex_state = 2}, + [2471] = {.lex_state = 74, .external_lex_state = 3}, [2472] = {.lex_state = 74, .external_lex_state = 2}, - [2473] = {.lex_state = 74, .external_lex_state = 2}, - [2474] = {.lex_state = 74, .external_lex_state = 2}, + [2473] = {.lex_state = 74, .external_lex_state = 4}, + [2474] = {.lex_state = 74, .external_lex_state = 4}, [2475] = {.lex_state = 74, .external_lex_state = 2}, - [2476] = {.lex_state = 74, .external_lex_state = 2}, + [2476] = {.lex_state = 74, .external_lex_state = 3}, [2477] = {.lex_state = 74, .external_lex_state = 2}, [2478] = {.lex_state = 74, .external_lex_state = 2}, [2479] = {.lex_state = 74, .external_lex_state = 2}, - [2480] = {.lex_state = 74, .external_lex_state = 2}, - [2481] = {.lex_state = 74, .external_lex_state = 2}, + [2480] = {.lex_state = 74, .external_lex_state = 3}, + [2481] = {.lex_state = 74, .external_lex_state = 4}, [2482] = {.lex_state = 74, .external_lex_state = 2}, - [2483] = {.lex_state = 74, .external_lex_state = 4}, - [2484] = {.lex_state = 74, .external_lex_state = 2}, + [2483] = {.lex_state = 74, .external_lex_state = 2}, + [2484] = {.lex_state = 74, .external_lex_state = 4}, [2485] = {.lex_state = 74, .external_lex_state = 2}, [2486] = {.lex_state = 74, .external_lex_state = 2}, - [2487] = {.lex_state = 74, .external_lex_state = 2}, + [2487] = {.lex_state = 74, .external_lex_state = 4}, [2488] = {.lex_state = 74, .external_lex_state = 2}, [2489] = {.lex_state = 74, .external_lex_state = 2}, - [2490] = {.lex_state = 74, .external_lex_state = 2}, + [2490] = {.lex_state = 74, .external_lex_state = 3}, [2491] = {.lex_state = 74, .external_lex_state = 2}, - [2492] = {.lex_state = 74, .external_lex_state = 2}, - [2493] = {.lex_state = 74, .external_lex_state = 2}, + [2492] = {.lex_state = 74, .external_lex_state = 3}, + [2493] = {.lex_state = 74, .external_lex_state = 3}, [2494] = {.lex_state = 74, .external_lex_state = 2}, - [2495] = {.lex_state = 74, .external_lex_state = 2}, - [2496] = {.lex_state = 74, .external_lex_state = 2}, - [2497] = {.lex_state = 74, .external_lex_state = 2}, - [2498] = {.lex_state = 74, .external_lex_state = 4}, + [2495] = {.lex_state = 74, .external_lex_state = 3}, + [2496] = {.lex_state = 74, .external_lex_state = 3}, + [2497] = {.lex_state = 74, .external_lex_state = 3}, + [2498] = {.lex_state = 74, .external_lex_state = 3}, [2499] = {.lex_state = 74, .external_lex_state = 2}, - [2500] = {.lex_state = 74, .external_lex_state = 3}, - [2501] = {.lex_state = 74, .external_lex_state = 2}, + [2500] = {.lex_state = 74, .external_lex_state = 2}, + [2501] = {.lex_state = 74, .external_lex_state = 3}, [2502] = {.lex_state = 74, .external_lex_state = 2}, - [2503] = {.lex_state = 74, .external_lex_state = 4}, - [2504] = {.lex_state = 74, .external_lex_state = 4}, - [2505] = {.lex_state = 74, .external_lex_state = 4}, - [2506] = {.lex_state = 74, .external_lex_state = 3}, + [2503] = {.lex_state = 74, .external_lex_state = 2}, + [2504] = {.lex_state = 74, .external_lex_state = 2}, + [2505] = {.lex_state = 74, .external_lex_state = 2}, + [2506] = {.lex_state = 74, .external_lex_state = 4}, [2507] = {.lex_state = 74, .external_lex_state = 4}, [2508] = {.lex_state = 74, .external_lex_state = 4}, [2509] = {.lex_state = 74, .external_lex_state = 2}, - [2510] = {.lex_state = 74, .external_lex_state = 2}, + [2510] = {.lex_state = 74, .external_lex_state = 4}, [2511] = {.lex_state = 74, .external_lex_state = 2}, - [2512] = {.lex_state = 74, .external_lex_state = 2}, + [2512] = {.lex_state = 74, .external_lex_state = 3}, [2513] = {.lex_state = 74, .external_lex_state = 2}, [2514] = {.lex_state = 74, .external_lex_state = 2}, [2515] = {.lex_state = 74, .external_lex_state = 2}, - [2516] = {.lex_state = 74, .external_lex_state = 2}, - [2517] = {.lex_state = 74, .external_lex_state = 4}, - [2518] = {.lex_state = 74, .external_lex_state = 4}, - [2519] = {.lex_state = 74, .external_lex_state = 4}, + [2516] = {.lex_state = 74, .external_lex_state = 3}, + [2517] = {.lex_state = 74, .external_lex_state = 2}, + [2518] = {.lex_state = 74, .external_lex_state = 2}, + [2519] = {.lex_state = 74, .external_lex_state = 3}, [2520] = {.lex_state = 74, .external_lex_state = 4}, [2521] = {.lex_state = 74, .external_lex_state = 4}, - [2522] = {.lex_state = 74, .external_lex_state = 2}, + [2522] = {.lex_state = 74, .external_lex_state = 4}, [2523] = {.lex_state = 74, .external_lex_state = 4}, [2524] = {.lex_state = 74, .external_lex_state = 4}, [2525] = {.lex_state = 74, .external_lex_state = 2}, - [2526] = {.lex_state = 74, .external_lex_state = 3}, - [2527] = {.lex_state = 74, .external_lex_state = 2}, + [2526] = {.lex_state = 74, .external_lex_state = 4}, + [2527] = {.lex_state = 74, .external_lex_state = 4}, [2528] = {.lex_state = 74, .external_lex_state = 2}, - [2529] = {.lex_state = 74, .external_lex_state = 2}, + [2529] = {.lex_state = 74, .external_lex_state = 3}, [2530] = {.lex_state = 74, .external_lex_state = 2}, - [2531] = {.lex_state = 74, .external_lex_state = 4}, - [2532] = {.lex_state = 74, .external_lex_state = 2}, + [2531] = {.lex_state = 74, .external_lex_state = 2}, + [2532] = {.lex_state = 74, .external_lex_state = 4}, [2533] = {.lex_state = 74, .external_lex_state = 2}, - [2534] = {.lex_state = 74, .external_lex_state = 4}, - [2535] = {.lex_state = 74, .external_lex_state = 2}, - [2536] = {.lex_state = 74, .external_lex_state = 2}, - [2537] = {.lex_state = 74, .external_lex_state = 2}, + [2534] = {.lex_state = 74, .external_lex_state = 2}, + [2535] = {.lex_state = 74, .external_lex_state = 3}, + [2536] = {.lex_state = 74, .external_lex_state = 3}, + [2537] = {.lex_state = 74, .external_lex_state = 4}, [2538] = {.lex_state = 74, .external_lex_state = 2}, [2539] = {.lex_state = 74, .external_lex_state = 2}, [2540] = {.lex_state = 74, .external_lex_state = 2}, [2541] = {.lex_state = 74, .external_lex_state = 2}, [2542] = {.lex_state = 74, .external_lex_state = 2}, - [2543] = {.lex_state = 74, .external_lex_state = 4}, + [2543] = {.lex_state = 74, .external_lex_state = 2}, [2544] = {.lex_state = 74, .external_lex_state = 2}, [2545] = {.lex_state = 74, .external_lex_state = 2}, - [2546] = {.lex_state = 74, .external_lex_state = 2}, - [2547] = {.lex_state = 74, .external_lex_state = 4}, - [2548] = {.lex_state = 74, .external_lex_state = 4}, - [2549] = {.lex_state = 74, .external_lex_state = 4}, - [2550] = {.lex_state = 74, .external_lex_state = 4}, - [2551] = {.lex_state = 74, .external_lex_state = 4}, - [2552] = {.lex_state = 74, .external_lex_state = 2}, - [2553] = {.lex_state = 74, .external_lex_state = 2}, - [2554] = {.lex_state = 74, .external_lex_state = 2}, + [2546] = {.lex_state = 74, .external_lex_state = 3}, + [2547] = {.lex_state = 74, .external_lex_state = 2}, + [2548] = {.lex_state = 74, .external_lex_state = 3}, + [2549] = {.lex_state = 74, .external_lex_state = 2}, + [2550] = {.lex_state = 74, .external_lex_state = 2}, + [2551] = {.lex_state = 74, .external_lex_state = 2}, + [2552] = {.lex_state = 74, .external_lex_state = 4}, + [2553] = {.lex_state = 74, .external_lex_state = 4}, + [2554] = {.lex_state = 74, .external_lex_state = 4}, [2555] = {.lex_state = 74, .external_lex_state = 2}, - [2556] = {.lex_state = 74, .external_lex_state = 3}, - [2557] = {.lex_state = 74, .external_lex_state = 3}, + [2556] = {.lex_state = 74, .external_lex_state = 2}, + [2557] = {.lex_state = 74, .external_lex_state = 2}, [2558] = {.lex_state = 74, .external_lex_state = 2}, [2559] = {.lex_state = 74, .external_lex_state = 2}, [2560] = {.lex_state = 74, .external_lex_state = 2}, [2561] = {.lex_state = 74, .external_lex_state = 2}, [2562] = {.lex_state = 74, .external_lex_state = 2}, [2563] = {.lex_state = 74, .external_lex_state = 2}, - [2564] = {.lex_state = 74, .external_lex_state = 2}, + [2564] = {.lex_state = 74, .external_lex_state = 3}, [2565] = {.lex_state = 74, .external_lex_state = 2}, [2566] = {.lex_state = 74, .external_lex_state = 2}, [2567] = {.lex_state = 74, .external_lex_state = 2}, [2568] = {.lex_state = 74, .external_lex_state = 2}, [2569] = {.lex_state = 74, .external_lex_state = 2}, - [2570] = {.lex_state = 74, .external_lex_state = 2}, + [2570] = {.lex_state = 74, .external_lex_state = 4}, [2571] = {.lex_state = 74, .external_lex_state = 2}, [2572] = {.lex_state = 74, .external_lex_state = 2}, [2573] = {.lex_state = 74, .external_lex_state = 2}, [2574] = {.lex_state = 74, .external_lex_state = 2}, - [2575] = {.lex_state = 74, .external_lex_state = 3}, + [2575] = {.lex_state = 74, .external_lex_state = 4}, [2576] = {.lex_state = 74, .external_lex_state = 2}, - [2577] = {.lex_state = 74, .external_lex_state = 4}, + [2577] = {.lex_state = 74, .external_lex_state = 3}, [2578] = {.lex_state = 74, .external_lex_state = 2}, [2579] = {.lex_state = 74, .external_lex_state = 2}, - [2580] = {.lex_state = 74, .external_lex_state = 2}, + [2580] = {.lex_state = 74, .external_lex_state = 4}, [2581] = {.lex_state = 74, .external_lex_state = 2}, [2582] = {.lex_state = 74, .external_lex_state = 2}, [2583] = {.lex_state = 74, .external_lex_state = 2}, @@ -8885,11 +8884,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2589] = {.lex_state = 74, .external_lex_state = 2}, [2590] = {.lex_state = 74, .external_lex_state = 2}, [2591] = {.lex_state = 74, .external_lex_state = 2}, - [2592] = {.lex_state = 74, .external_lex_state = 2}, + [2592] = {.lex_state = 74, .external_lex_state = 3}, [2593] = {.lex_state = 74, .external_lex_state = 2}, [2594] = {.lex_state = 74, .external_lex_state = 2}, - [2595] = {.lex_state = 74, .external_lex_state = 2}, - [2596] = {.lex_state = 74, .external_lex_state = 2}, + [2595] = {.lex_state = 74, .external_lex_state = 3}, + [2596] = {.lex_state = 74, .external_lex_state = 3}, [2597] = {.lex_state = 74, .external_lex_state = 2}, [2598] = {.lex_state = 74, .external_lex_state = 2}, [2599] = {.lex_state = 74, .external_lex_state = 2}, @@ -8898,101 +8897,101 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2602] = {.lex_state = 74, .external_lex_state = 2}, [2603] = {.lex_state = 74, .external_lex_state = 2}, [2604] = {.lex_state = 74, .external_lex_state = 2}, - [2605] = {.lex_state = 74, .external_lex_state = 3}, - [2606] = {.lex_state = 74, .external_lex_state = 2}, + [2605] = {.lex_state = 74, .external_lex_state = 2}, + [2606] = {.lex_state = 4, .external_lex_state = 3}, [2607] = {.lex_state = 74, .external_lex_state = 3}, - [2608] = {.lex_state = 74, .external_lex_state = 3}, - [2609] = {.lex_state = 74, .external_lex_state = 2}, - [2610] = {.lex_state = 74, .external_lex_state = 3}, - [2611] = {.lex_state = 74, .external_lex_state = 4}, - [2612] = {.lex_state = 74, .external_lex_state = 2}, - [2613] = {.lex_state = 74, .external_lex_state = 2}, - [2614] = {.lex_state = 74, .external_lex_state = 2}, - [2615] = {.lex_state = 74, .external_lex_state = 3}, - [2616] = {.lex_state = 74, .external_lex_state = 3}, - [2617] = {.lex_state = 74, .external_lex_state = 3}, - [2618] = {.lex_state = 74, .external_lex_state = 3}, - [2619] = {.lex_state = 74, .external_lex_state = 2}, - [2620] = {.lex_state = 74, .external_lex_state = 3}, - [2621] = {.lex_state = 74, .external_lex_state = 3}, - [2622] = {.lex_state = 74, .external_lex_state = 3}, - [2623] = {.lex_state = 75}, - [2624] = {.lex_state = 74, .external_lex_state = 3}, - [2625] = {.lex_state = 74, .external_lex_state = 3}, - [2626] = {.lex_state = 74, .external_lex_state = 3}, - [2627] = {.lex_state = 74, .external_lex_state = 3}, + [2608] = {.lex_state = 4, .external_lex_state = 3}, + [2609] = {.lex_state = 4, .external_lex_state = 3}, + [2610] = {.lex_state = 4, .external_lex_state = 3}, + [2611] = {.lex_state = 4, .external_lex_state = 3}, + [2612] = {.lex_state = 4, .external_lex_state = 3}, + [2613] = {.lex_state = 4, .external_lex_state = 3}, + [2614] = {.lex_state = 4, .external_lex_state = 3}, + [2615] = {.lex_state = 4, .external_lex_state = 3}, + [2616] = {.lex_state = 4, .external_lex_state = 3}, + [2617] = {.lex_state = 74, .external_lex_state = 2}, + [2618] = {.lex_state = 4, .external_lex_state = 3}, + [2619] = {.lex_state = 4, .external_lex_state = 3}, + [2620] = {.lex_state = 74, .external_lex_state = 2}, + [2621] = {.lex_state = 4, .external_lex_state = 3}, + [2622] = {.lex_state = 4, .external_lex_state = 3}, + [2623] = {.lex_state = 74, .external_lex_state = 2}, + [2624] = {.lex_state = 4, .external_lex_state = 3}, + [2625] = {.lex_state = 74, .external_lex_state = 4}, + [2626] = {.lex_state = 4, .external_lex_state = 3}, + [2627] = {.lex_state = 4, .external_lex_state = 3}, [2628] = {.lex_state = 74, .external_lex_state = 3}, [2629] = {.lex_state = 74, .external_lex_state = 3}, - [2630] = {.lex_state = 74, .external_lex_state = 4}, + [2630] = {.lex_state = 4, .external_lex_state = 3}, [2631] = {.lex_state = 74, .external_lex_state = 3}, [2632] = {.lex_state = 74, .external_lex_state = 3}, - [2633] = {.lex_state = 74, .external_lex_state = 3}, - [2634] = {.lex_state = 74, .external_lex_state = 4}, + [2633] = {.lex_state = 74, .external_lex_state = 4}, + [2634] = {.lex_state = 74, .external_lex_state = 3}, [2635] = {.lex_state = 74, .external_lex_state = 3}, [2636] = {.lex_state = 74, .external_lex_state = 3}, - [2637] = {.lex_state = 74, .external_lex_state = 3}, - [2638] = {.lex_state = 74, .external_lex_state = 2}, + [2637] = {.lex_state = 74, .external_lex_state = 4}, + [2638] = {.lex_state = 74, .external_lex_state = 3}, [2639] = {.lex_state = 74, .external_lex_state = 3}, [2640] = {.lex_state = 74, .external_lex_state = 2}, [2641] = {.lex_state = 74, .external_lex_state = 3}, - [2642] = {.lex_state = 74, .external_lex_state = 3}, - [2643] = {.lex_state = 74, .external_lex_state = 2}, - [2644] = {.lex_state = 74, .external_lex_state = 3}, - [2645] = {.lex_state = 74, .external_lex_state = 4}, + [2642] = {.lex_state = 4, .external_lex_state = 3}, + [2643] = {.lex_state = 4, .external_lex_state = 3}, + [2644] = {.lex_state = 74, .external_lex_state = 2}, + [2645] = {.lex_state = 74, .external_lex_state = 3}, [2646] = {.lex_state = 74, .external_lex_state = 3}, [2647] = {.lex_state = 74, .external_lex_state = 3}, - [2648] = {.lex_state = 74, .external_lex_state = 2}, + [2648] = {.lex_state = 74, .external_lex_state = 3}, [2649] = {.lex_state = 74, .external_lex_state = 4}, [2650] = {.lex_state = 74, .external_lex_state = 3}, [2651] = {.lex_state = 74, .external_lex_state = 3}, [2652] = {.lex_state = 74, .external_lex_state = 3}, - [2653] = {.lex_state = 74, .external_lex_state = 2}, - [2654] = {.lex_state = 74, .external_lex_state = 2}, + [2653] = {.lex_state = 74, .external_lex_state = 3}, + [2654] = {.lex_state = 74, .external_lex_state = 3}, [2655] = {.lex_state = 74, .external_lex_state = 3}, [2656] = {.lex_state = 74, .external_lex_state = 3}, - [2657] = {.lex_state = 74, .external_lex_state = 3}, - [2658] = {.lex_state = 74, .external_lex_state = 2}, - [2659] = {.lex_state = 74, .external_lex_state = 2}, + [2657] = {.lex_state = 4, .external_lex_state = 3}, + [2658] = {.lex_state = 74, .external_lex_state = 3}, + [2659] = {.lex_state = 74, .external_lex_state = 3}, [2660] = {.lex_state = 74, .external_lex_state = 3}, - [2661] = {.lex_state = 74, .external_lex_state = 4}, - [2662] = {.lex_state = 4, .external_lex_state = 3}, - [2663] = {.lex_state = 4, .external_lex_state = 3}, - [2664] = {.lex_state = 4, .external_lex_state = 3}, - [2665] = {.lex_state = 4, .external_lex_state = 3}, - [2666] = {.lex_state = 4, .external_lex_state = 3}, - [2667] = {.lex_state = 4, .external_lex_state = 3}, - [2668] = {.lex_state = 4, .external_lex_state = 3}, - [2669] = {.lex_state = 4, .external_lex_state = 3}, - [2670] = {.lex_state = 4, .external_lex_state = 3}, - [2671] = {.lex_state = 4, .external_lex_state = 3}, - [2672] = {.lex_state = 4, .external_lex_state = 3}, - [2673] = {.lex_state = 4, .external_lex_state = 3}, - [2674] = {.lex_state = 4, .external_lex_state = 3}, - [2675] = {.lex_state = 4, .external_lex_state = 3}, - [2676] = {.lex_state = 4, .external_lex_state = 3}, - [2677] = {.lex_state = 4, .external_lex_state = 3}, - [2678] = {.lex_state = 4, .external_lex_state = 3}, - [2679] = {.lex_state = 4, .external_lex_state = 3}, - [2680] = {.lex_state = 4, .external_lex_state = 3}, + [2661] = {.lex_state = 74, .external_lex_state = 3}, + [2662] = {.lex_state = 74, .external_lex_state = 3}, + [2663] = {.lex_state = 74, .external_lex_state = 3}, + [2664] = {.lex_state = 74, .external_lex_state = 3}, + [2665] = {.lex_state = 74, .external_lex_state = 3}, + [2666] = {.lex_state = 74, .external_lex_state = 3}, + [2667] = {.lex_state = 74, .external_lex_state = 3}, + [2668] = {.lex_state = 74, .external_lex_state = 3}, + [2669] = {.lex_state = 74, .external_lex_state = 3}, + [2670] = {.lex_state = 74, .external_lex_state = 2}, + [2671] = {.lex_state = 74, .external_lex_state = 2}, + [2672] = {.lex_state = 74, .external_lex_state = 3}, + [2673] = {.lex_state = 74, .external_lex_state = 3}, + [2674] = {.lex_state = 74, .external_lex_state = 3}, + [2675] = {.lex_state = 74, .external_lex_state = 3}, + [2676] = {.lex_state = 74, .external_lex_state = 3}, + [2677] = {.lex_state = 74, .external_lex_state = 3}, + [2678] = {.lex_state = 74, .external_lex_state = 3}, + [2679] = {.lex_state = 74, .external_lex_state = 3}, + [2680] = {.lex_state = 74, .external_lex_state = 3}, [2681] = {.lex_state = 4, .external_lex_state = 3}, - [2682] = {.lex_state = 4, .external_lex_state = 3}, - [2683] = {.lex_state = 4, .external_lex_state = 3}, - [2684] = {.lex_state = 4, .external_lex_state = 3}, - [2685] = {.lex_state = 4, .external_lex_state = 3}, + [2682] = {.lex_state = 74, .external_lex_state = 3}, + [2683] = {.lex_state = 74, .external_lex_state = 3}, + [2684] = {.lex_state = 74, .external_lex_state = 3}, + [2685] = {.lex_state = 74, .external_lex_state = 2}, [2686] = {.lex_state = 74, .external_lex_state = 2}, - [2687] = {.lex_state = 74, .external_lex_state = 2}, - [2688] = {.lex_state = 74, .external_lex_state = 3}, + [2687] = {.lex_state = 74, .external_lex_state = 3}, + [2688] = {.lex_state = 74, .external_lex_state = 2}, [2689] = {.lex_state = 74, .external_lex_state = 3}, [2690] = {.lex_state = 74, .external_lex_state = 3}, - [2691] = {.lex_state = 74, .external_lex_state = 3}, - [2692] = {.lex_state = 74, .external_lex_state = 4}, - [2693] = {.lex_state = 74, .external_lex_state = 3}, + [2691] = {.lex_state = 74, .external_lex_state = 2}, + [2692] = {.lex_state = 74, .external_lex_state = 3}, + [2693] = {.lex_state = 4, .external_lex_state = 3}, [2694] = {.lex_state = 74, .external_lex_state = 3}, [2695] = {.lex_state = 74, .external_lex_state = 3}, [2696] = {.lex_state = 74, .external_lex_state = 3}, [2697] = {.lex_state = 74, .external_lex_state = 3}, [2698] = {.lex_state = 74, .external_lex_state = 3}, - [2699] = {.lex_state = 74, .external_lex_state = 3}, + [2699] = {.lex_state = 74, .external_lex_state = 2}, [2700] = {.lex_state = 74, .external_lex_state = 3}, [2701] = {.lex_state = 74, .external_lex_state = 3}, [2702] = {.lex_state = 74, .external_lex_state = 3}, @@ -9000,1035 +8999,1035 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2704] = {.lex_state = 74, .external_lex_state = 3}, [2705] = {.lex_state = 74, .external_lex_state = 3}, [2706] = {.lex_state = 74, .external_lex_state = 3}, - [2707] = {.lex_state = 74, .external_lex_state = 3}, - [2708] = {.lex_state = 74, .external_lex_state = 3}, - [2709] = {.lex_state = 74, .external_lex_state = 4}, - [2710] = {.lex_state = 74, .external_lex_state = 4}, - [2711] = {.lex_state = 74, .external_lex_state = 3}, - [2712] = {.lex_state = 74, .external_lex_state = 4}, - [2713] = {.lex_state = 74, .external_lex_state = 3}, - [2714] = {.lex_state = 74, .external_lex_state = 3}, - [2715] = {.lex_state = 74, .external_lex_state = 3}, - [2716] = {.lex_state = 74, .external_lex_state = 3}, + [2707] = {.lex_state = 74, .external_lex_state = 2}, + [2708] = {.lex_state = 74, .external_lex_state = 2}, + [2709] = {.lex_state = 74, .external_lex_state = 3}, + [2710] = {.lex_state = 74, .external_lex_state = 3}, + [2711] = {.lex_state = 74, .external_lex_state = 4}, + [2712] = {.lex_state = 74, .external_lex_state = 3}, + [2713] = {.lex_state = 74, .external_lex_state = 2}, + [2714] = {.lex_state = 74, .external_lex_state = 2}, + [2715] = {.lex_state = 74, .external_lex_state = 4}, + [2716] = {.lex_state = 74, .external_lex_state = 4}, [2717] = {.lex_state = 74, .external_lex_state = 3}, - [2718] = {.lex_state = 74, .external_lex_state = 3}, - [2719] = {.lex_state = 74, .external_lex_state = 2}, + [2718] = {.lex_state = 74, .external_lex_state = 4}, + [2719] = {.lex_state = 74, .external_lex_state = 3}, [2720] = {.lex_state = 74, .external_lex_state = 2}, - [2721] = {.lex_state = 74, .external_lex_state = 3}, - [2722] = {.lex_state = 74, .external_lex_state = 3}, - [2723] = {.lex_state = 74, .external_lex_state = 3}, - [2724] = {.lex_state = 74, .external_lex_state = 3}, - [2725] = {.lex_state = 74, .external_lex_state = 3}, + [2721] = {.lex_state = 74, .external_lex_state = 2}, + [2722] = {.lex_state = 74, .external_lex_state = 2}, + [2723] = {.lex_state = 74, .external_lex_state = 2}, + [2724] = {.lex_state = 74, .external_lex_state = 2}, + [2725] = {.lex_state = 74, .external_lex_state = 2}, [2726] = {.lex_state = 74, .external_lex_state = 3}, [2727] = {.lex_state = 74, .external_lex_state = 2}, - [2728] = {.lex_state = 74, .external_lex_state = 3}, - [2729] = {.lex_state = 74, .external_lex_state = 3}, - [2730] = {.lex_state = 5, .external_lex_state = 4}, - [2731] = {.lex_state = 74, .external_lex_state = 3}, - [2732] = {.lex_state = 74, .external_lex_state = 3}, - [2733] = {.lex_state = 74, .external_lex_state = 3}, - [2734] = {.lex_state = 74, .external_lex_state = 2}, - [2735] = {.lex_state = 74, .external_lex_state = 2}, - [2736] = {.lex_state = 74, .external_lex_state = 3}, + [2728] = {.lex_state = 74, .external_lex_state = 2}, + [2729] = {.lex_state = 74, .external_lex_state = 2}, + [2730] = {.lex_state = 74, .external_lex_state = 3}, + [2731] = {.lex_state = 74, .external_lex_state = 2}, + [2732] = {.lex_state = 74, .external_lex_state = 4}, + [2733] = {.lex_state = 74, .external_lex_state = 2}, + [2734] = {.lex_state = 74, .external_lex_state = 3}, + [2735] = {.lex_state = 74, .external_lex_state = 3}, + [2736] = {.lex_state = 5, .external_lex_state = 4}, [2737] = {.lex_state = 74, .external_lex_state = 3}, - [2738] = {.lex_state = 74, .external_lex_state = 3}, - [2739] = {.lex_state = 74, .external_lex_state = 2}, - [2740] = {.lex_state = 74, .external_lex_state = 2}, - [2741] = {.lex_state = 74, .external_lex_state = 2}, + [2738] = {.lex_state = 74, .external_lex_state = 2}, + [2739] = {.lex_state = 74, .external_lex_state = 3}, + [2740] = {.lex_state = 74, .external_lex_state = 3}, + [2741] = {.lex_state = 74, .external_lex_state = 3}, [2742] = {.lex_state = 74, .external_lex_state = 2}, - [2743] = {.lex_state = 74, .external_lex_state = 2}, + [2743] = {.lex_state = 74, .external_lex_state = 3}, [2744] = {.lex_state = 74, .external_lex_state = 2}, - [2745] = {.lex_state = 74, .external_lex_state = 2}, + [2745] = {.lex_state = 75}, [2746] = {.lex_state = 74, .external_lex_state = 3}, - [2747] = {.lex_state = 74, .external_lex_state = 2}, + [2747] = {.lex_state = 74, .external_lex_state = 3}, [2748] = {.lex_state = 74, .external_lex_state = 3}, - [2749] = {.lex_state = 74, .external_lex_state = 3}, - [2750] = {.lex_state = 74, .external_lex_state = 2}, - [2751] = {.lex_state = 74, .external_lex_state = 2}, - [2752] = {.lex_state = 74, .external_lex_state = 3}, - [2753] = {.lex_state = 74, .external_lex_state = 2}, + [2749] = {.lex_state = 74, .external_lex_state = 4}, + [2750] = {.lex_state = 74, .external_lex_state = 4}, + [2751] = {.lex_state = 74, .external_lex_state = 4}, + [2752] = {.lex_state = 74, .external_lex_state = 4}, + [2753] = {.lex_state = 74, .external_lex_state = 3}, [2754] = {.lex_state = 74, .external_lex_state = 3}, [2755] = {.lex_state = 74, .external_lex_state = 3}, - [2756] = {.lex_state = 74, .external_lex_state = 4}, + [2756] = {.lex_state = 74, .external_lex_state = 2}, [2757] = {.lex_state = 74, .external_lex_state = 2}, - [2758] = {.lex_state = 74, .external_lex_state = 2}, - [2759] = {.lex_state = 74, .external_lex_state = 2}, + [2758] = {.lex_state = 4, .external_lex_state = 3}, + [2759] = {.lex_state = 4, .external_lex_state = 3}, [2760] = {.lex_state = 74, .external_lex_state = 3}, - [2761] = {.lex_state = 74, .external_lex_state = 2}, - [2762] = {.lex_state = 74, .external_lex_state = 4}, - [2763] = {.lex_state = 74, .external_lex_state = 4}, + [2761] = {.lex_state = 74, .external_lex_state = 3}, + [2762] = {.lex_state = 74, .external_lex_state = 3}, + [2763] = {.lex_state = 74, .external_lex_state = 3}, [2764] = {.lex_state = 74, .external_lex_state = 4}, [2765] = {.lex_state = 74, .external_lex_state = 4}, - [2766] = {.lex_state = 74, .external_lex_state = 3}, + [2766] = {.lex_state = 74, .external_lex_state = 4}, [2767] = {.lex_state = 74, .external_lex_state = 2}, - [2768] = {.lex_state = 74, .external_lex_state = 3}, - [2769] = {.lex_state = 4, .external_lex_state = 3}, - [2770] = {.lex_state = 74, .external_lex_state = 2}, - [2771] = {.lex_state = 74, .external_lex_state = 4}, - [2772] = {.lex_state = 74, .external_lex_state = 4}, + [2768] = {.lex_state = 74, .external_lex_state = 2}, + [2769] = {.lex_state = 74, .external_lex_state = 2}, + [2770] = {.lex_state = 74, .external_lex_state = 3}, + [2771] = {.lex_state = 74, .external_lex_state = 3}, + [2772] = {.lex_state = 74, .external_lex_state = 3}, [2773] = {.lex_state = 74, .external_lex_state = 4}, - [2774] = {.lex_state = 74, .external_lex_state = 3}, - [2775] = {.lex_state = 74, .external_lex_state = 3}, - [2776] = {.lex_state = 74, .external_lex_state = 3}, + [2774] = {.lex_state = 74, .external_lex_state = 2}, + [2775] = {.lex_state = 74, .external_lex_state = 2}, + [2776] = {.lex_state = 74, .external_lex_state = 4}, [2777] = {.lex_state = 74, .external_lex_state = 2}, [2778] = {.lex_state = 74, .external_lex_state = 2}, - [2779] = {.lex_state = 74, .external_lex_state = 3}, - [2780] = {.lex_state = 74, .external_lex_state = 2}, - [2781] = {.lex_state = 74, .external_lex_state = 4}, - [2782] = {.lex_state = 4, .external_lex_state = 3}, - [2783] = {.lex_state = 4, .external_lex_state = 3}, - [2784] = {.lex_state = 74, .external_lex_state = 4}, + [2779] = {.lex_state = 74, .external_lex_state = 4}, + [2780] = {.lex_state = 74, .external_lex_state = 4}, + [2781] = {.lex_state = 74, .external_lex_state = 3}, + [2782] = {.lex_state = 74, .external_lex_state = 4}, + [2783] = {.lex_state = 74, .external_lex_state = 3}, + [2784] = {.lex_state = 74, .external_lex_state = 3}, [2785] = {.lex_state = 74, .external_lex_state = 3}, - [2786] = {.lex_state = 74, .external_lex_state = 3}, + [2786] = {.lex_state = 74, .external_lex_state = 4}, [2787] = {.lex_state = 74, .external_lex_state = 3}, [2788] = {.lex_state = 74, .external_lex_state = 4}, [2789] = {.lex_state = 74, .external_lex_state = 3}, - [2790] = {.lex_state = 74, .external_lex_state = 4}, + [2790] = {.lex_state = 74, .external_lex_state = 3}, [2791] = {.lex_state = 74, .external_lex_state = 3}, [2792] = {.lex_state = 74, .external_lex_state = 3}, [2793] = {.lex_state = 74, .external_lex_state = 3}, - [2794] = {.lex_state = 74, .external_lex_state = 4}, - [2795] = {.lex_state = 74, .external_lex_state = 4}, + [2794] = {.lex_state = 74, .external_lex_state = 3}, + [2795] = {.lex_state = 74, .external_lex_state = 3}, [2796] = {.lex_state = 74, .external_lex_state = 3}, - [2797] = {.lex_state = 74, .external_lex_state = 4}, - [2798] = {.lex_state = 74, .external_lex_state = 2}, - [2799] = {.lex_state = 74, .external_lex_state = 4}, + [2797] = {.lex_state = 74, .external_lex_state = 3}, + [2798] = {.lex_state = 74, .external_lex_state = 3}, + [2799] = {.lex_state = 74, .external_lex_state = 3}, [2800] = {.lex_state = 74, .external_lex_state = 3}, [2801] = {.lex_state = 74, .external_lex_state = 3}, [2802] = {.lex_state = 74, .external_lex_state = 3}, - [2803] = {.lex_state = 4, .external_lex_state = 2}, - [2804] = {.lex_state = 74, .external_lex_state = 4}, - [2805] = {.lex_state = 74, .external_lex_state = 3}, - [2806] = {.lex_state = 74, .external_lex_state = 3}, - [2807] = {.lex_state = 74, .external_lex_state = 3}, - [2808] = {.lex_state = 74, .external_lex_state = 3}, + [2803] = {.lex_state = 74, .external_lex_state = 3}, + [2804] = {.lex_state = 74, .external_lex_state = 3}, + [2805] = {.lex_state = 4, .external_lex_state = 3}, + [2806] = {.lex_state = 74, .external_lex_state = 2}, + [2807] = {.lex_state = 74, .external_lex_state = 4}, + [2808] = {.lex_state = 74, .external_lex_state = 4}, [2809] = {.lex_state = 74, .external_lex_state = 4}, - [2810] = {.lex_state = 74, .external_lex_state = 3}, - [2811] = {.lex_state = 74, .external_lex_state = 3}, - [2812] = {.lex_state = 74, .external_lex_state = 3}, - [2813] = {.lex_state = 74, .external_lex_state = 3}, - [2814] = {.lex_state = 74, .external_lex_state = 2}, + [2810] = {.lex_state = 4, .external_lex_state = 2}, + [2811] = {.lex_state = 74, .external_lex_state = 4}, + [2812] = {.lex_state = 74, .external_lex_state = 4}, + [2813] = {.lex_state = 74, .external_lex_state = 4}, + [2814] = {.lex_state = 74, .external_lex_state = 4}, [2815] = {.lex_state = 74, .external_lex_state = 4}, [2816] = {.lex_state = 74, .external_lex_state = 4}, - [2817] = {.lex_state = 4, .external_lex_state = 3}, - [2818] = {.lex_state = 4, .external_lex_state = 3}, - [2819] = {.lex_state = 74, .external_lex_state = 4}, - [2820] = {.lex_state = 74, .external_lex_state = 3}, + [2817] = {.lex_state = 74, .external_lex_state = 3}, + [2818] = {.lex_state = 74, .external_lex_state = 3}, + [2819] = {.lex_state = 4, .external_lex_state = 3}, + [2820] = {.lex_state = 74, .external_lex_state = 4}, [2821] = {.lex_state = 74, .external_lex_state = 4}, - [2822] = {.lex_state = 74, .external_lex_state = 2}, - [2823] = {.lex_state = 74, .external_lex_state = 4}, - [2824] = {.lex_state = 74, .external_lex_state = 3}, - [2825] = {.lex_state = 74, .external_lex_state = 3}, - [2826] = {.lex_state = 74, .external_lex_state = 4}, - [2827] = {.lex_state = 4, .external_lex_state = 3}, - [2828] = {.lex_state = 4, .external_lex_state = 3}, - [2829] = {.lex_state = 4, .external_lex_state = 3}, - [2830] = {.lex_state = 74, .external_lex_state = 3}, - [2831] = {.lex_state = 74, .external_lex_state = 4}, - [2832] = {.lex_state = 4, .external_lex_state = 3}, - [2833] = {.lex_state = 74, .external_lex_state = 4}, - [2834] = {.lex_state = 4, .external_lex_state = 3}, + [2822] = {.lex_state = 74, .external_lex_state = 4}, + [2823] = {.lex_state = 4, .external_lex_state = 3}, + [2824] = {.lex_state = 74, .external_lex_state = 2}, + [2825] = {.lex_state = 74, .external_lex_state = 4}, + [2826] = {.lex_state = 74, .external_lex_state = 2}, + [2827] = {.lex_state = 74, .external_lex_state = 4}, + [2828] = {.lex_state = 74, .external_lex_state = 2}, + [2829] = {.lex_state = 74, .external_lex_state = 4}, + [2830] = {.lex_state = 4, .external_lex_state = 3}, + [2831] = {.lex_state = 4, .external_lex_state = 3}, + [2832] = {.lex_state = 74, .external_lex_state = 4}, + [2833] = {.lex_state = 4, .external_lex_state = 3}, + [2834] = {.lex_state = 74, .external_lex_state = 4}, [2835] = {.lex_state = 74, .external_lex_state = 4}, [2836] = {.lex_state = 74, .external_lex_state = 4}, - [2837] = {.lex_state = 74, .external_lex_state = 4}, - [2838] = {.lex_state = 74, .external_lex_state = 4}, + [2837] = {.lex_state = 4, .external_lex_state = 3}, + [2838] = {.lex_state = 74, .external_lex_state = 3}, [2839] = {.lex_state = 74, .external_lex_state = 4}, - [2840] = {.lex_state = 74, .external_lex_state = 4}, + [2840] = {.lex_state = 74, .external_lex_state = 3}, [2841] = {.lex_state = 74, .external_lex_state = 4}, - [2842] = {.lex_state = 74, .external_lex_state = 4}, - [2843] = {.lex_state = 74, .external_lex_state = 2}, + [2842] = {.lex_state = 74, .external_lex_state = 3}, + [2843] = {.lex_state = 74, .external_lex_state = 4}, [2844] = {.lex_state = 74, .external_lex_state = 3}, - [2845] = {.lex_state = 74, .external_lex_state = 2}, + [2845] = {.lex_state = 74, .external_lex_state = 4}, [2846] = {.lex_state = 74, .external_lex_state = 3}, - [2847] = {.lex_state = 74, .external_lex_state = 2}, - [2848] = {.lex_state = 74, .external_lex_state = 4}, - [2849] = {.lex_state = 4, .external_lex_state = 3}, - [2850] = {.lex_state = 74, .external_lex_state = 4}, - [2851] = {.lex_state = 74, .external_lex_state = 4}, - [2852] = {.lex_state = 74, .external_lex_state = 4}, - [2853] = {.lex_state = 74, .external_lex_state = 4}, - [2854] = {.lex_state = 74, .external_lex_state = 3}, - [2855] = {.lex_state = 74, .external_lex_state = 4}, - [2856] = {.lex_state = 74, .external_lex_state = 2}, - [2857] = {.lex_state = 74, .external_lex_state = 3}, - [2858] = {.lex_state = 4, .external_lex_state = 3}, - [2859] = {.lex_state = 74, .external_lex_state = 4}, - [2860] = {.lex_state = 74, .external_lex_state = 4}, + [2847] = {.lex_state = 74, .external_lex_state = 3}, + [2848] = {.lex_state = 74, .external_lex_state = 3}, + [2849] = {.lex_state = 74, .external_lex_state = 3}, + [2850] = {.lex_state = 74, .external_lex_state = 3}, + [2851] = {.lex_state = 74, .external_lex_state = 3}, + [2852] = {.lex_state = 74, .external_lex_state = 3}, + [2853] = {.lex_state = 74, .external_lex_state = 2}, + [2854] = {.lex_state = 74, .external_lex_state = 2}, + [2855] = {.lex_state = 74, .external_lex_state = 2}, + [2856] = {.lex_state = 74, .external_lex_state = 3}, + [2857] = {.lex_state = 74, .external_lex_state = 2}, + [2858] = {.lex_state = 74, .external_lex_state = 2}, + [2859] = {.lex_state = 74, .external_lex_state = 3}, + [2860] = {.lex_state = 74, .external_lex_state = 3}, [2861] = {.lex_state = 74, .external_lex_state = 4}, - [2862] = {.lex_state = 74, .external_lex_state = 4}, - [2863] = {.lex_state = 74, .external_lex_state = 4}, - [2864] = {.lex_state = 4, .external_lex_state = 3}, - [2865] = {.lex_state = 74, .external_lex_state = 4}, + [2862] = {.lex_state = 74, .external_lex_state = 3}, + [2863] = {.lex_state = 74, .external_lex_state = 3}, + [2864] = {.lex_state = 74, .external_lex_state = 4}, + [2865] = {.lex_state = 74, .external_lex_state = 2}, [2866] = {.lex_state = 74, .external_lex_state = 4}, [2867] = {.lex_state = 4, .external_lex_state = 3}, [2868] = {.lex_state = 74, .external_lex_state = 4}, [2869] = {.lex_state = 4, .external_lex_state = 3}, [2870] = {.lex_state = 74, .external_lex_state = 4}, [2871] = {.lex_state = 74, .external_lex_state = 4}, - [2872] = {.lex_state = 74, .external_lex_state = 4}, - [2873] = {.lex_state = 4, .external_lex_state = 3}, - [2874] = {.lex_state = 74, .external_lex_state = 4}, + [2872] = {.lex_state = 4, .external_lex_state = 3}, + [2873] = {.lex_state = 74, .external_lex_state = 4}, + [2874] = {.lex_state = 74, .external_lex_state = 2}, [2875] = {.lex_state = 74, .external_lex_state = 4}, [2876] = {.lex_state = 74, .external_lex_state = 4}, [2877] = {.lex_state = 74, .external_lex_state = 4}, [2878] = {.lex_state = 74, .external_lex_state = 4}, [2879] = {.lex_state = 74, .external_lex_state = 4}, - [2880] = {.lex_state = 74, .external_lex_state = 4}, - [2881] = {.lex_state = 74, .external_lex_state = 4}, - [2882] = {.lex_state = 74, .external_lex_state = 4}, + [2880] = {.lex_state = 74, .external_lex_state = 3}, + [2881] = {.lex_state = 74, .external_lex_state = 3}, + [2882] = {.lex_state = 74, .external_lex_state = 3}, [2883] = {.lex_state = 74, .external_lex_state = 4}, [2884] = {.lex_state = 74, .external_lex_state = 4}, [2885] = {.lex_state = 74, .external_lex_state = 4}, - [2886] = {.lex_state = 74, .external_lex_state = 4}, + [2886] = {.lex_state = 74, .external_lex_state = 2}, [2887] = {.lex_state = 74, .external_lex_state = 3}, - [2888] = {.lex_state = 4, .external_lex_state = 3}, - [2889] = {.lex_state = 74, .external_lex_state = 3}, - [2890] = {.lex_state = 74, .external_lex_state = 4}, - [2891] = {.lex_state = 74, .external_lex_state = 4}, - [2892] = {.lex_state = 74, .external_lex_state = 4}, - [2893] = {.lex_state = 74, .external_lex_state = 3}, + [2888] = {.lex_state = 74, .external_lex_state = 3}, + [2889] = {.lex_state = 74, .external_lex_state = 4}, + [2890] = {.lex_state = 74, .external_lex_state = 3}, + [2891] = {.lex_state = 4, .external_lex_state = 3}, + [2892] = {.lex_state = 74, .external_lex_state = 3}, + [2893] = {.lex_state = 74, .external_lex_state = 2}, [2894] = {.lex_state = 74, .external_lex_state = 4}, - [2895] = {.lex_state = 74, .external_lex_state = 4}, - [2896] = {.lex_state = 74, .external_lex_state = 4}, + [2895] = {.lex_state = 74, .external_lex_state = 2}, + [2896] = {.lex_state = 74, .external_lex_state = 2}, [2897] = {.lex_state = 74, .external_lex_state = 4}, [2898] = {.lex_state = 74, .external_lex_state = 4}, - [2899] = {.lex_state = 74, .external_lex_state = 4}, - [2900] = {.lex_state = 4, .external_lex_state = 3}, - [2901] = {.lex_state = 74, .external_lex_state = 4}, + [2899] = {.lex_state = 74, .external_lex_state = 2}, + [2900] = {.lex_state = 74, .external_lex_state = 2}, + [2901] = {.lex_state = 74, .external_lex_state = 3}, [2902] = {.lex_state = 74, .external_lex_state = 3}, - [2903] = {.lex_state = 74, .external_lex_state = 4}, + [2903] = {.lex_state = 74, .external_lex_state = 3}, [2904] = {.lex_state = 74, .external_lex_state = 4}, - [2905] = {.lex_state = 74, .external_lex_state = 4}, - [2906] = {.lex_state = 74, .external_lex_state = 4}, - [2907] = {.lex_state = 74, .external_lex_state = 4}, - [2908] = {.lex_state = 74, .external_lex_state = 4}, - [2909] = {.lex_state = 74, .external_lex_state = 4}, - [2910] = {.lex_state = 74, .external_lex_state = 4}, - [2911] = {.lex_state = 74, .external_lex_state = 3}, - [2912] = {.lex_state = 4, .external_lex_state = 3}, - [2913] = {.lex_state = 74, .external_lex_state = 4}, - [2914] = {.lex_state = 4, .external_lex_state = 3}, + [2905] = {.lex_state = 74, .external_lex_state = 2}, + [2906] = {.lex_state = 74, .external_lex_state = 2}, + [2907] = {.lex_state = 74, .external_lex_state = 2}, + [2908] = {.lex_state = 74, .external_lex_state = 2}, + [2909] = {.lex_state = 74, .external_lex_state = 2}, + [2910] = {.lex_state = 74, .external_lex_state = 2}, + [2911] = {.lex_state = 74, .external_lex_state = 2}, + [2912] = {.lex_state = 74, .external_lex_state = 2}, + [2913] = {.lex_state = 74, .external_lex_state = 2}, + [2914] = {.lex_state = 74, .external_lex_state = 2}, [2915] = {.lex_state = 74, .external_lex_state = 4}, - [2916] = {.lex_state = 74, .external_lex_state = 4}, - [2917] = {.lex_state = 74, .external_lex_state = 4}, - [2918] = {.lex_state = 74, .external_lex_state = 3}, - [2919] = {.lex_state = 74, .external_lex_state = 3}, - [2920] = {.lex_state = 74, .external_lex_state = 3}, - [2921] = {.lex_state = 74, .external_lex_state = 3}, + [2916] = {.lex_state = 74, .external_lex_state = 3}, + [2917] = {.lex_state = 74, .external_lex_state = 2}, + [2918] = {.lex_state = 74, .external_lex_state = 2}, + [2919] = {.lex_state = 74, .external_lex_state = 2}, + [2920] = {.lex_state = 74, .external_lex_state = 2}, + [2921] = {.lex_state = 74, .external_lex_state = 4}, [2922] = {.lex_state = 74, .external_lex_state = 3}, - [2923] = {.lex_state = 74, .external_lex_state = 4}, - [2924] = {.lex_state = 74, .external_lex_state = 4}, - [2925] = {.lex_state = 74, .external_lex_state = 3}, - [2926] = {.lex_state = 74, .external_lex_state = 3}, - [2927] = {.lex_state = 74, .external_lex_state = 4}, - [2928] = {.lex_state = 74, .external_lex_state = 3}, - [2929] = {.lex_state = 74, .external_lex_state = 3}, - [2930] = {.lex_state = 74, .external_lex_state = 3}, - [2931] = {.lex_state = 5, .external_lex_state = 3}, - [2932] = {.lex_state = 74, .external_lex_state = 4}, + [2923] = {.lex_state = 74, .external_lex_state = 2}, + [2924] = {.lex_state = 74, .external_lex_state = 2}, + [2925] = {.lex_state = 74, .external_lex_state = 2}, + [2926] = {.lex_state = 5, .external_lex_state = 3}, + [2927] = {.lex_state = 74, .external_lex_state = 3}, + [2928] = {.lex_state = 74, .external_lex_state = 4}, + [2929] = {.lex_state = 74, .external_lex_state = 4}, + [2930] = {.lex_state = 74, .external_lex_state = 4}, + [2931] = {.lex_state = 4, .external_lex_state = 3}, + [2932] = {.lex_state = 4, .external_lex_state = 3}, [2933] = {.lex_state = 74, .external_lex_state = 4}, - [2934] = {.lex_state = 74, .external_lex_state = 3}, - [2935] = {.lex_state = 74, .external_lex_state = 3}, - [2936] = {.lex_state = 74, .external_lex_state = 4}, - [2937] = {.lex_state = 74, .external_lex_state = 4}, - [2938] = {.lex_state = 74, .external_lex_state = 4}, - [2939] = {.lex_state = 74, .external_lex_state = 4}, - [2940] = {.lex_state = 4, .external_lex_state = 3}, - [2941] = {.lex_state = 74, .external_lex_state = 4}, - [2942] = {.lex_state = 74, .external_lex_state = 3}, + [2934] = {.lex_state = 74, .external_lex_state = 4}, + [2935] = {.lex_state = 74, .external_lex_state = 4}, + [2936] = {.lex_state = 4, .external_lex_state = 3}, + [2937] = {.lex_state = 4, .external_lex_state = 3}, + [2938] = {.lex_state = 4, .external_lex_state = 3}, + [2939] = {.lex_state = 4, .external_lex_state = 3}, + [2940] = {.lex_state = 74, .external_lex_state = 4}, + [2941] = {.lex_state = 4, .external_lex_state = 3}, + [2942] = {.lex_state = 4, .external_lex_state = 3}, [2943] = {.lex_state = 74, .external_lex_state = 4}, - [2944] = {.lex_state = 74, .external_lex_state = 3}, - [2945] = {.lex_state = 74, .external_lex_state = 3}, - [2946] = {.lex_state = 74, .external_lex_state = 3}, - [2947] = {.lex_state = 74, .external_lex_state = 3}, + [2944] = {.lex_state = 4, .external_lex_state = 3}, + [2945] = {.lex_state = 74, .external_lex_state = 4}, + [2946] = {.lex_state = 4, .external_lex_state = 3}, + [2947] = {.lex_state = 4, .external_lex_state = 3}, [2948] = {.lex_state = 74, .external_lex_state = 4}, - [2949] = {.lex_state = 74, .external_lex_state = 4}, - [2950] = {.lex_state = 74, .external_lex_state = 3}, - [2951] = {.lex_state = 74, .external_lex_state = 3}, + [2949] = {.lex_state = 4, .external_lex_state = 3}, + [2950] = {.lex_state = 74, .external_lex_state = 4}, + [2951] = {.lex_state = 74, .external_lex_state = 4}, [2952] = {.lex_state = 74, .external_lex_state = 4}, [2953] = {.lex_state = 74, .external_lex_state = 4}, [2954] = {.lex_state = 74, .external_lex_state = 4}, [2955] = {.lex_state = 74, .external_lex_state = 4}, - [2956] = {.lex_state = 74, .external_lex_state = 3}, + [2956] = {.lex_state = 74, .external_lex_state = 4}, [2957] = {.lex_state = 74, .external_lex_state = 3}, - [2958] = {.lex_state = 74, .external_lex_state = 4}, - [2959] = {.lex_state = 74, .external_lex_state = 4}, + [2958] = {.lex_state = 74, .external_lex_state = 3}, + [2959] = {.lex_state = 74, .external_lex_state = 3}, [2960] = {.lex_state = 74, .external_lex_state = 3}, - [2961] = {.lex_state = 74, .external_lex_state = 2}, - [2962] = {.lex_state = 74, .external_lex_state = 4}, - [2963] = {.lex_state = 74, .external_lex_state = 2}, - [2964] = {.lex_state = 74, .external_lex_state = 2}, - [2965] = {.lex_state = 74, .external_lex_state = 2}, - [2966] = {.lex_state = 74, .external_lex_state = 2}, - [2967] = {.lex_state = 74, .external_lex_state = 4}, + [2961] = {.lex_state = 74, .external_lex_state = 4}, + [2962] = {.lex_state = 74, .external_lex_state = 3}, + [2963] = {.lex_state = 74, .external_lex_state = 3}, + [2964] = {.lex_state = 74, .external_lex_state = 4}, + [2965] = {.lex_state = 74, .external_lex_state = 4}, + [2966] = {.lex_state = 74, .external_lex_state = 3}, + [2967] = {.lex_state = 74, .external_lex_state = 3}, [2968] = {.lex_state = 74, .external_lex_state = 3}, [2969] = {.lex_state = 74, .external_lex_state = 3}, - [2970] = {.lex_state = 74, .external_lex_state = 4}, + [2970] = {.lex_state = 74, .external_lex_state = 3}, [2971] = {.lex_state = 74, .external_lex_state = 3}, - [2972] = {.lex_state = 74, .external_lex_state = 4}, + [2972] = {.lex_state = 74, .external_lex_state = 3}, [2973] = {.lex_state = 74, .external_lex_state = 3}, [2974] = {.lex_state = 74, .external_lex_state = 3}, [2975] = {.lex_state = 74, .external_lex_state = 3}, [2976] = {.lex_state = 74, .external_lex_state = 3}, - [2977] = {.lex_state = 74, .external_lex_state = 4}, - [2978] = {.lex_state = 74, .external_lex_state = 4}, - [2979] = {.lex_state = 74, .external_lex_state = 4}, - [2980] = {.lex_state = 74, .external_lex_state = 3}, - [2981] = {.lex_state = 74, .external_lex_state = 2}, + [2977] = {.lex_state = 74, .external_lex_state = 3}, + [2978] = {.lex_state = 74, .external_lex_state = 3}, + [2979] = {.lex_state = 74, .external_lex_state = 3}, + [2980] = {.lex_state = 74, .external_lex_state = 4}, + [2981] = {.lex_state = 74, .external_lex_state = 3}, [2982] = {.lex_state = 74, .external_lex_state = 3}, - [2983] = {.lex_state = 74, .external_lex_state = 2}, - [2984] = {.lex_state = 74, .external_lex_state = 2}, - [2985] = {.lex_state = 74, .external_lex_state = 3}, + [2983] = {.lex_state = 74, .external_lex_state = 3}, + [2984] = {.lex_state = 74, .external_lex_state = 4}, + [2985] = {.lex_state = 74, .external_lex_state = 4}, [2986] = {.lex_state = 74, .external_lex_state = 4}, [2987] = {.lex_state = 74, .external_lex_state = 4}, - [2988] = {.lex_state = 74, .external_lex_state = 3}, - [2989] = {.lex_state = 74, .external_lex_state = 3}, - [2990] = {.lex_state = 74, .external_lex_state = 2}, - [2991] = {.lex_state = 74, .external_lex_state = 2}, - [2992] = {.lex_state = 74, .external_lex_state = 3}, - [2993] = {.lex_state = 74, .external_lex_state = 2}, - [2994] = {.lex_state = 74, .external_lex_state = 3}, - [2995] = {.lex_state = 4, .external_lex_state = 3}, - [2996] = {.lex_state = 4, .external_lex_state = 3}, - [2997] = {.lex_state = 74, .external_lex_state = 2}, - [2998] = {.lex_state = 74, .external_lex_state = 2}, - [2999] = {.lex_state = 74, .external_lex_state = 2}, - [3000] = {.lex_state = 74, .external_lex_state = 3}, + [2988] = {.lex_state = 74, .external_lex_state = 4}, + [2989] = {.lex_state = 74, .external_lex_state = 4}, + [2990] = {.lex_state = 4, .external_lex_state = 3}, + [2991] = {.lex_state = 74, .external_lex_state = 4}, + [2992] = {.lex_state = 74, .external_lex_state = 4}, + [2993] = {.lex_state = 74, .external_lex_state = 4}, + [2994] = {.lex_state = 74, .external_lex_state = 4}, + [2995] = {.lex_state = 74, .external_lex_state = 4}, + [2996] = {.lex_state = 74, .external_lex_state = 4}, + [2997] = {.lex_state = 74, .external_lex_state = 4}, + [2998] = {.lex_state = 74, .external_lex_state = 4}, + [2999] = {.lex_state = 74, .external_lex_state = 3}, + [3000] = {.lex_state = 74, .external_lex_state = 4}, [3001] = {.lex_state = 74, .external_lex_state = 4}, - [3002] = {.lex_state = 74, .external_lex_state = 3}, + [3002] = {.lex_state = 74, .external_lex_state = 4}, [3003] = {.lex_state = 74, .external_lex_state = 4}, [3004] = {.lex_state = 4, .external_lex_state = 3}, [3005] = {.lex_state = 74, .external_lex_state = 3}, - [3006] = {.lex_state = 74, .external_lex_state = 2}, - [3007] = {.lex_state = 74, .external_lex_state = 2}, - [3008] = {.lex_state = 74, .external_lex_state = 2}, + [3006] = {.lex_state = 74, .external_lex_state = 3}, + [3007] = {.lex_state = 74, .external_lex_state = 4}, + [3008] = {.lex_state = 74, .external_lex_state = 3}, [3009] = {.lex_state = 74, .external_lex_state = 3}, [3010] = {.lex_state = 74, .external_lex_state = 3}, [3011] = {.lex_state = 74, .external_lex_state = 3}, [3012] = {.lex_state = 74, .external_lex_state = 4}, [3013] = {.lex_state = 74, .external_lex_state = 4}, - [3014] = {.lex_state = 74, .external_lex_state = 3}, - [3015] = {.lex_state = 74, .external_lex_state = 3}, - [3016] = {.lex_state = 74, .external_lex_state = 3}, - [3017] = {.lex_state = 74, .external_lex_state = 2}, - [3018] = {.lex_state = 74, .external_lex_state = 3}, - [3019] = {.lex_state = 74, .external_lex_state = 3}, - [3020] = {.lex_state = 74, .external_lex_state = 3}, - [3021] = {.lex_state = 74, .external_lex_state = 2}, - [3022] = {.lex_state = 74, .external_lex_state = 2}, + [3014] = {.lex_state = 74, .external_lex_state = 4}, + [3015] = {.lex_state = 74, .external_lex_state = 4}, + [3016] = {.lex_state = 74, .external_lex_state = 4}, + [3017] = {.lex_state = 74, .external_lex_state = 4}, + [3018] = {.lex_state = 4, .external_lex_state = 3}, + [3019] = {.lex_state = 74, .external_lex_state = 4}, + [3020] = {.lex_state = 74, .external_lex_state = 4}, + [3021] = {.lex_state = 74, .external_lex_state = 4}, + [3022] = {.lex_state = 74, .external_lex_state = 4}, [3023] = {.lex_state = 74, .external_lex_state = 4}, - [3024] = {.lex_state = 74, .external_lex_state = 3}, + [3024] = {.lex_state = 74, .external_lex_state = 4}, [3025] = {.lex_state = 74, .external_lex_state = 4}, - [3026] = {.lex_state = 74, .external_lex_state = 2}, + [3026] = {.lex_state = 74, .external_lex_state = 4}, [3027] = {.lex_state = 74, .external_lex_state = 4}, - [3028] = {.lex_state = 74, .external_lex_state = 2}, - [3029] = {.lex_state = 74, .external_lex_state = 2}, - [3030] = {.lex_state = 74, .external_lex_state = 2}, + [3028] = {.lex_state = 74, .external_lex_state = 4}, + [3029] = {.lex_state = 74, .external_lex_state = 4}, + [3030] = {.lex_state = 74, .external_lex_state = 4}, [3031] = {.lex_state = 74, .external_lex_state = 4}, [3032] = {.lex_state = 74, .external_lex_state = 4}, - [3033] = {.lex_state = 74, .external_lex_state = 3}, + [3033] = {.lex_state = 74, .external_lex_state = 4}, [3034] = {.lex_state = 74, .external_lex_state = 4}, - [3035] = {.lex_state = 74, .external_lex_state = 4}, + [3035] = {.lex_state = 74, .external_lex_state = 3}, [3036] = {.lex_state = 74, .external_lex_state = 3}, [3037] = {.lex_state = 74, .external_lex_state = 4}, - [3038] = {.lex_state = 74, .external_lex_state = 2}, + [3038] = {.lex_state = 74, .external_lex_state = 3}, [3039] = {.lex_state = 74, .external_lex_state = 4}, [3040] = {.lex_state = 74, .external_lex_state = 3}, - [3041] = {.lex_state = 74, .external_lex_state = 3}, + [3041] = {.lex_state = 74, .external_lex_state = 2}, [3042] = {.lex_state = 74, .external_lex_state = 2}, - [3043] = {.lex_state = 74, .external_lex_state = 3}, - [3044] = {.lex_state = 74, .external_lex_state = 2}, + [3043] = {.lex_state = 74, .external_lex_state = 4}, + [3044] = {.lex_state = 74, .external_lex_state = 3}, [3045] = {.lex_state = 74, .external_lex_state = 3}, - [3046] = {.lex_state = 74, .external_lex_state = 4}, + [3046] = {.lex_state = 74, .external_lex_state = 3}, [3047] = {.lex_state = 74, .external_lex_state = 4}, - [3048] = {.lex_state = 74, .external_lex_state = 4}, - [3049] = {.lex_state = 4, .external_lex_state = 3}, - [3050] = {.lex_state = 74, .external_lex_state = 2}, + [3048] = {.lex_state = 74, .external_lex_state = 3}, + [3049] = {.lex_state = 74, .external_lex_state = 2}, + [3050] = {.lex_state = 74, .external_lex_state = 4}, [3051] = {.lex_state = 74, .external_lex_state = 4}, [3052] = {.lex_state = 74, .external_lex_state = 4}, - [3053] = {.lex_state = 74, .external_lex_state = 3}, - [3054] = {.lex_state = 74, .external_lex_state = 3}, - [3055] = {.lex_state = 4, .external_lex_state = 3}, + [3053] = {.lex_state = 74, .external_lex_state = 4}, + [3054] = {.lex_state = 74, .external_lex_state = 4}, + [3055] = {.lex_state = 74, .external_lex_state = 4}, [3056] = {.lex_state = 74, .external_lex_state = 4}, [3057] = {.lex_state = 74, .external_lex_state = 4}, - [3058] = {.lex_state = 4, .external_lex_state = 3}, - [3059] = {.lex_state = 4, .external_lex_state = 3}, - [3060] = {.lex_state = 74, .external_lex_state = 4}, + [3058] = {.lex_state = 74, .external_lex_state = 4}, + [3059] = {.lex_state = 74, .external_lex_state = 3}, + [3060] = {.lex_state = 4, .external_lex_state = 3}, [3061] = {.lex_state = 74, .external_lex_state = 4}, - [3062] = {.lex_state = 74, .external_lex_state = 3}, - [3063] = {.lex_state = 74, .external_lex_state = 3}, - [3064] = {.lex_state = 74, .external_lex_state = 2}, - [3065] = {.lex_state = 74, .external_lex_state = 2}, - [3066] = {.lex_state = 74, .external_lex_state = 3}, + [3062] = {.lex_state = 74, .external_lex_state = 4}, + [3063] = {.lex_state = 74, .external_lex_state = 4}, + [3064] = {.lex_state = 74, .external_lex_state = 3}, + [3065] = {.lex_state = 4, .external_lex_state = 3}, + [3066] = {.lex_state = 74, .external_lex_state = 2}, [3067] = {.lex_state = 74, .external_lex_state = 2}, - [3068] = {.lex_state = 74, .external_lex_state = 3}, - [3069] = {.lex_state = 74, .external_lex_state = 3}, + [3068] = {.lex_state = 74, .external_lex_state = 2}, + [3069] = {.lex_state = 74, .external_lex_state = 2}, [3070] = {.lex_state = 74, .external_lex_state = 3}, - [3071] = {.lex_state = 74, .external_lex_state = 2}, + [3071] = {.lex_state = 74, .external_lex_state = 3}, [3072] = {.lex_state = 74, .external_lex_state = 2}, - [3073] = {.lex_state = 74, .external_lex_state = 3}, + [3073] = {.lex_state = 74, .external_lex_state = 2}, [3074] = {.lex_state = 74, .external_lex_state = 3}, [3075] = {.lex_state = 74, .external_lex_state = 2}, [3076] = {.lex_state = 74, .external_lex_state = 3}, [3077] = {.lex_state = 74, .external_lex_state = 3}, - [3078] = {.lex_state = 74, .external_lex_state = 3}, - [3079] = {.lex_state = 75, .external_lex_state = 5}, - [3080] = {.lex_state = 74, .external_lex_state = 2}, - [3081] = {.lex_state = 75, .external_lex_state = 5}, - [3082] = {.lex_state = 75, .external_lex_state = 5}, + [3078] = {.lex_state = 74, .external_lex_state = 2}, + [3079] = {.lex_state = 11}, + [3080] = {.lex_state = 11}, + [3081] = {.lex_state = 4, .external_lex_state = 3}, + [3082] = {.lex_state = 4, .external_lex_state = 3}, [3083] = {.lex_state = 74, .external_lex_state = 3}, [3084] = {.lex_state = 74, .external_lex_state = 2}, - [3085] = {.lex_state = 74, .external_lex_state = 3}, - [3086] = {.lex_state = 11}, - [3087] = {.lex_state = 74, .external_lex_state = 2}, - [3088] = {.lex_state = 74, .external_lex_state = 2}, - [3089] = {.lex_state = 74, .external_lex_state = 2}, + [3085] = {.lex_state = 11}, + [3086] = {.lex_state = 74, .external_lex_state = 2}, + [3087] = {.lex_state = 11}, + [3088] = {.lex_state = 5, .external_lex_state = 2}, + [3089] = {.lex_state = 4, .external_lex_state = 3}, [3090] = {.lex_state = 74, .external_lex_state = 2}, - [3091] = {.lex_state = 74, .external_lex_state = 2}, - [3092] = {.lex_state = 74, .external_lex_state = 2}, - [3093] = {.lex_state = 74, .external_lex_state = 2}, - [3094] = {.lex_state = 4, .external_lex_state = 3}, - [3095] = {.lex_state = 4, .external_lex_state = 2}, - [3096] = {.lex_state = 11}, - [3097] = {.lex_state = 75, .external_lex_state = 5}, - [3098] = {.lex_state = 75, .external_lex_state = 5}, + [3091] = {.lex_state = 4, .external_lex_state = 3}, + [3092] = {.lex_state = 74, .external_lex_state = 3}, + [3093] = {.lex_state = 4, .external_lex_state = 3}, + [3094] = {.lex_state = 74, .external_lex_state = 2}, + [3095] = {.lex_state = 11}, + [3096] = {.lex_state = 74, .external_lex_state = 3}, + [3097] = {.lex_state = 4, .external_lex_state = 3}, + [3098] = {.lex_state = 74, .external_lex_state = 2}, [3099] = {.lex_state = 74, .external_lex_state = 2}, - [3100] = {.lex_state = 74, .external_lex_state = 3}, - [3101] = {.lex_state = 74, .external_lex_state = 2}, + [3100] = {.lex_state = 4, .external_lex_state = 3}, + [3101] = {.lex_state = 74, .external_lex_state = 3}, [3102] = {.lex_state = 74, .external_lex_state = 3}, [3103] = {.lex_state = 74, .external_lex_state = 2}, - [3104] = {.lex_state = 5, .external_lex_state = 3}, - [3105] = {.lex_state = 74, .external_lex_state = 3}, - [3106] = {.lex_state = 74, .external_lex_state = 3}, - [3107] = {.lex_state = 74, .external_lex_state = 2}, - [3108] = {.lex_state = 74, .external_lex_state = 2}, - [3109] = {.lex_state = 74, .external_lex_state = 3}, + [3104] = {.lex_state = 75, .external_lex_state = 5}, + [3105] = {.lex_state = 74, .external_lex_state = 2}, + [3106] = {.lex_state = 75, .external_lex_state = 5}, + [3107] = {.lex_state = 75, .external_lex_state = 5}, + [3108] = {.lex_state = 74, .external_lex_state = 3}, + [3109] = {.lex_state = 74, .external_lex_state = 2}, [3110] = {.lex_state = 74, .external_lex_state = 3}, - [3111] = {.lex_state = 74, .external_lex_state = 3}, - [3112] = {.lex_state = 74, .external_lex_state = 2}, - [3113] = {.lex_state = 74, .external_lex_state = 2}, - [3114] = {.lex_state = 4, .external_lex_state = 3}, - [3115] = {.lex_state = 4, .external_lex_state = 3}, + [3111] = {.lex_state = 74, .external_lex_state = 2}, + [3112] = {.lex_state = 4, .external_lex_state = 3}, + [3113] = {.lex_state = 4, .external_lex_state = 3}, + [3114] = {.lex_state = 74, .external_lex_state = 2}, + [3115] = {.lex_state = 74, .external_lex_state = 2}, [3116] = {.lex_state = 75, .external_lex_state = 5}, [3117] = {.lex_state = 74, .external_lex_state = 2}, - [3118] = {.lex_state = 74, .external_lex_state = 3}, - [3119] = {.lex_state = 74, .external_lex_state = 3}, - [3120] = {.lex_state = 74, .external_lex_state = 3}, - [3121] = {.lex_state = 4, .external_lex_state = 3}, - [3122] = {.lex_state = 11}, - [3123] = {.lex_state = 74, .external_lex_state = 3}, - [3124] = {.lex_state = 74, .external_lex_state = 2}, + [3118] = {.lex_state = 75, .external_lex_state = 5}, + [3119] = {.lex_state = 74, .external_lex_state = 4}, + [3120] = {.lex_state = 74, .external_lex_state = 2}, + [3121] = {.lex_state = 75, .external_lex_state = 5}, + [3122] = {.lex_state = 74, .external_lex_state = 3}, + [3123] = {.lex_state = 74, .external_lex_state = 2}, + [3124] = {.lex_state = 74, .external_lex_state = 3}, [3125] = {.lex_state = 74, .external_lex_state = 2}, - [3126] = {.lex_state = 74, .external_lex_state = 2}, - [3127] = {.lex_state = 74, .external_lex_state = 3}, + [3126] = {.lex_state = 74, .external_lex_state = 3}, + [3127] = {.lex_state = 74, .external_lex_state = 2}, [3128] = {.lex_state = 74, .external_lex_state = 2}, [3129] = {.lex_state = 74, .external_lex_state = 3}, [3130] = {.lex_state = 74, .external_lex_state = 3}, - [3131] = {.lex_state = 75, .external_lex_state = 5}, - [3132] = {.lex_state = 74, .external_lex_state = 2}, - [3133] = {.lex_state = 74, .external_lex_state = 2}, + [3131] = {.lex_state = 74, .external_lex_state = 3}, + [3132] = {.lex_state = 74, .external_lex_state = 4}, + [3133] = {.lex_state = 74, .external_lex_state = 4}, [3134] = {.lex_state = 74, .external_lex_state = 2}, - [3135] = {.lex_state = 74, .external_lex_state = 2}, - [3136] = {.lex_state = 74, .external_lex_state = 2}, - [3137] = {.lex_state = 4, .external_lex_state = 2}, - [3138] = {.lex_state = 74, .external_lex_state = 3}, - [3139] = {.lex_state = 75, .external_lex_state = 5}, + [3135] = {.lex_state = 4, .external_lex_state = 3}, + [3136] = {.lex_state = 11}, + [3137] = {.lex_state = 4, .external_lex_state = 3}, + [3138] = {.lex_state = 74, .external_lex_state = 2}, + [3139] = {.lex_state = 74, .external_lex_state = 2}, [3140] = {.lex_state = 74, .external_lex_state = 2}, [3141] = {.lex_state = 74, .external_lex_state = 2}, - [3142] = {.lex_state = 75, .external_lex_state = 5}, - [3143] = {.lex_state = 74, .external_lex_state = 2}, + [3142] = {.lex_state = 74, .external_lex_state = 2}, + [3143] = {.lex_state = 74, .external_lex_state = 4}, [3144] = {.lex_state = 74, .external_lex_state = 3}, [3145] = {.lex_state = 74, .external_lex_state = 3}, - [3146] = {.lex_state = 74, .external_lex_state = 3}, + [3146] = {.lex_state = 74, .external_lex_state = 2}, [3147] = {.lex_state = 74, .external_lex_state = 2}, - [3148] = {.lex_state = 11}, - [3149] = {.lex_state = 74, .external_lex_state = 2}, - [3150] = {.lex_state = 4, .external_lex_state = 3}, - [3151] = {.lex_state = 74, .external_lex_state = 2}, + [3148] = {.lex_state = 74, .external_lex_state = 3}, + [3149] = {.lex_state = 74, .external_lex_state = 3}, + [3150] = {.lex_state = 11}, + [3151] = {.lex_state = 74, .external_lex_state = 3}, [3152] = {.lex_state = 74, .external_lex_state = 3}, [3153] = {.lex_state = 74, .external_lex_state = 3}, - [3154] = {.lex_state = 74, .external_lex_state = 3}, - [3155] = {.lex_state = 74, .external_lex_state = 4}, - [3156] = {.lex_state = 74, .external_lex_state = 2}, + [3154] = {.lex_state = 74, .external_lex_state = 4}, + [3155] = {.lex_state = 74, .external_lex_state = 3}, + [3156] = {.lex_state = 74, .external_lex_state = 3}, [3157] = {.lex_state = 74, .external_lex_state = 3}, - [3158] = {.lex_state = 74, .external_lex_state = 2}, - [3159] = {.lex_state = 74, .external_lex_state = 3}, - [3160] = {.lex_state = 74, .external_lex_state = 2}, - [3161] = {.lex_state = 74, .external_lex_state = 2}, - [3162] = {.lex_state = 4, .external_lex_state = 3}, - [3163] = {.lex_state = 11}, - [3164] = {.lex_state = 75, .external_lex_state = 5}, - [3165] = {.lex_state = 11}, - [3166] = {.lex_state = 11}, - [3167] = {.lex_state = 74, .external_lex_state = 3}, - [3168] = {.lex_state = 75, .external_lex_state = 5}, + [3158] = {.lex_state = 74, .external_lex_state = 3}, + [3159] = {.lex_state = 4, .external_lex_state = 3}, + [3160] = {.lex_state = 74, .external_lex_state = 3}, + [3161] = {.lex_state = 74, .external_lex_state = 3}, + [3162] = {.lex_state = 74, .external_lex_state = 3}, + [3163] = {.lex_state = 74, .external_lex_state = 3}, + [3164] = {.lex_state = 74, .external_lex_state = 3}, + [3165] = {.lex_state = 74, .external_lex_state = 3}, + [3166] = {.lex_state = 74, .external_lex_state = 3}, + [3167] = {.lex_state = 74, .external_lex_state = 2}, + [3168] = {.lex_state = 74, .external_lex_state = 3}, [3169] = {.lex_state = 74, .external_lex_state = 3}, - [3170] = {.lex_state = 5, .external_lex_state = 2}, - [3171] = {.lex_state = 74, .external_lex_state = 2}, - [3172] = {.lex_state = 74, .external_lex_state = 2}, - [3173] = {.lex_state = 74, .external_lex_state = 2}, + [3170] = {.lex_state = 74, .external_lex_state = 2}, + [3171] = {.lex_state = 74, .external_lex_state = 3}, + [3172] = {.lex_state = 74, .external_lex_state = 3}, + [3173] = {.lex_state = 74, .external_lex_state = 3}, [3174] = {.lex_state = 74, .external_lex_state = 3}, - [3175] = {.lex_state = 74, .external_lex_state = 2}, - [3176] = {.lex_state = 75, .external_lex_state = 5}, - [3177] = {.lex_state = 75, .external_lex_state = 5}, - [3178] = {.lex_state = 75, .external_lex_state = 5}, - [3179] = {.lex_state = 4, .external_lex_state = 3}, - [3180] = {.lex_state = 4, .external_lex_state = 3}, - [3181] = {.lex_state = 11}, - [3182] = {.lex_state = 75, .external_lex_state = 5}, - [3183] = {.lex_state = 4, .external_lex_state = 3}, - [3184] = {.lex_state = 74, .external_lex_state = 4}, - [3185] = {.lex_state = 4, .external_lex_state = 3}, - [3186] = {.lex_state = 74, .external_lex_state = 2}, - [3187] = {.lex_state = 74, .external_lex_state = 3}, - [3188] = {.lex_state = 74, .external_lex_state = 2}, - [3189] = {.lex_state = 74, .external_lex_state = 2}, - [3190] = {.lex_state = 75, .external_lex_state = 5}, - [3191] = {.lex_state = 75, .external_lex_state = 5}, - [3192] = {.lex_state = 74, .external_lex_state = 2}, + [3175] = {.lex_state = 74, .external_lex_state = 3}, + [3176] = {.lex_state = 4, .external_lex_state = 3}, + [3177] = {.lex_state = 4, .external_lex_state = 3}, + [3178] = {.lex_state = 74, .external_lex_state = 2}, + [3179] = {.lex_state = 74, .external_lex_state = 2}, + [3180] = {.lex_state = 75, .external_lex_state = 5}, + [3181] = {.lex_state = 75, .external_lex_state = 5}, + [3182] = {.lex_state = 74, .external_lex_state = 3}, + [3183] = {.lex_state = 75, .external_lex_state = 5}, + [3184] = {.lex_state = 74, .external_lex_state = 3}, + [3185] = {.lex_state = 11}, + [3186] = {.lex_state = 74, .external_lex_state = 3}, + [3187] = {.lex_state = 74, .external_lex_state = 2}, + [3188] = {.lex_state = 74, .external_lex_state = 3}, + [3189] = {.lex_state = 74, .external_lex_state = 3}, + [3190] = {.lex_state = 74, .external_lex_state = 3}, + [3191] = {.lex_state = 74, .external_lex_state = 2}, + [3192] = {.lex_state = 74, .external_lex_state = 3}, [3193] = {.lex_state = 74, .external_lex_state = 2}, - [3194] = {.lex_state = 75, .external_lex_state = 5}, - [3195] = {.lex_state = 74, .external_lex_state = 2}, - [3196] = {.lex_state = 74, .external_lex_state = 2}, - [3197] = {.lex_state = 11}, - [3198] = {.lex_state = 74, .external_lex_state = 3}, + [3194] = {.lex_state = 74, .external_lex_state = 2}, + [3195] = {.lex_state = 11}, + [3196] = {.lex_state = 74, .external_lex_state = 3}, + [3197] = {.lex_state = 74, .external_lex_state = 2}, + [3198] = {.lex_state = 74, .external_lex_state = 2}, [3199] = {.lex_state = 74, .external_lex_state = 3}, - [3200] = {.lex_state = 74, .external_lex_state = 2}, - [3201] = {.lex_state = 74, .external_lex_state = 2}, + [3200] = {.lex_state = 74, .external_lex_state = 3}, + [3201] = {.lex_state = 74, .external_lex_state = 3}, [3202] = {.lex_state = 74, .external_lex_state = 2}, - [3203] = {.lex_state = 74, .external_lex_state = 3}, - [3204] = {.lex_state = 11}, - [3205] = {.lex_state = 4, .external_lex_state = 3}, + [3203] = {.lex_state = 74, .external_lex_state = 4}, + [3204] = {.lex_state = 74, .external_lex_state = 3}, + [3205] = {.lex_state = 74, .external_lex_state = 3}, [3206] = {.lex_state = 74, .external_lex_state = 3}, [3207] = {.lex_state = 74, .external_lex_state = 2}, - [3208] = {.lex_state = 74, .external_lex_state = 2}, - [3209] = {.lex_state = 4, .external_lex_state = 3}, - [3210] = {.lex_state = 4, .external_lex_state = 3}, - [3211] = {.lex_state = 74, .external_lex_state = 2}, - [3212] = {.lex_state = 74, .external_lex_state = 2}, + [3208] = {.lex_state = 74, .external_lex_state = 3}, + [3209] = {.lex_state = 4, .external_lex_state = 2}, + [3210] = {.lex_state = 74, .external_lex_state = 2}, + [3211] = {.lex_state = 74, .external_lex_state = 3}, + [3212] = {.lex_state = 74, .external_lex_state = 3}, [3213] = {.lex_state = 74, .external_lex_state = 2}, [3214] = {.lex_state = 74, .external_lex_state = 3}, [3215] = {.lex_state = 74, .external_lex_state = 2}, - [3216] = {.lex_state = 74, .external_lex_state = 3}, - [3217] = {.lex_state = 74, .external_lex_state = 3}, - [3218] = {.lex_state = 4, .external_lex_state = 3}, - [3219] = {.lex_state = 74, .external_lex_state = 3}, - [3220] = {.lex_state = 74, .external_lex_state = 3}, - [3221] = {.lex_state = 4, .external_lex_state = 3}, - [3222] = {.lex_state = 74, .external_lex_state = 4}, + [3216] = {.lex_state = 74, .external_lex_state = 2}, + [3217] = {.lex_state = 74, .external_lex_state = 2}, + [3218] = {.lex_state = 74, .external_lex_state = 2}, + [3219] = {.lex_state = 11}, + [3220] = {.lex_state = 74, .external_lex_state = 2}, + [3221] = {.lex_state = 74, .external_lex_state = 3}, + [3222] = {.lex_state = 74, .external_lex_state = 2}, [3223] = {.lex_state = 74, .external_lex_state = 3}, - [3224] = {.lex_state = 74, .external_lex_state = 3}, - [3225] = {.lex_state = 74, .external_lex_state = 3}, - [3226] = {.lex_state = 74, .external_lex_state = 3}, - [3227] = {.lex_state = 74, .external_lex_state = 3}, - [3228] = {.lex_state = 74, .external_lex_state = 3}, - [3229] = {.lex_state = 74, .external_lex_state = 3}, - [3230] = {.lex_state = 74, .external_lex_state = 3}, + [3224] = {.lex_state = 75, .external_lex_state = 5}, + [3225] = {.lex_state = 75, .external_lex_state = 5}, + [3226] = {.lex_state = 75, .external_lex_state = 5}, + [3227] = {.lex_state = 74, .external_lex_state = 2}, + [3228] = {.lex_state = 74, .external_lex_state = 2}, + [3229] = {.lex_state = 11}, + [3230] = {.lex_state = 11}, [3231] = {.lex_state = 74, .external_lex_state = 3}, - [3232] = {.lex_state = 74, .external_lex_state = 2}, - [3233] = {.lex_state = 74, .external_lex_state = 4}, - [3234] = {.lex_state = 4, .external_lex_state = 3}, - [3235] = {.lex_state = 74, .external_lex_state = 3}, + [3232] = {.lex_state = 74, .external_lex_state = 4}, + [3233] = {.lex_state = 11}, + [3234] = {.lex_state = 74, .external_lex_state = 3}, + [3235] = {.lex_state = 74, .external_lex_state = 4}, [3236] = {.lex_state = 74, .external_lex_state = 2}, - [3237] = {.lex_state = 75, .external_lex_state = 5}, - [3238] = {.lex_state = 74, .external_lex_state = 2}, - [3239] = {.lex_state = 74, .external_lex_state = 2}, - [3240] = {.lex_state = 75, .external_lex_state = 5}, + [3237] = {.lex_state = 74, .external_lex_state = 3}, + [3238] = {.lex_state = 75, .external_lex_state = 5}, + [3239] = {.lex_state = 11}, + [3240] = {.lex_state = 74, .external_lex_state = 4}, [3241] = {.lex_state = 75, .external_lex_state = 5}, - [3242] = {.lex_state = 74, .external_lex_state = 2}, - [3243] = {.lex_state = 74, .external_lex_state = 2}, - [3244] = {.lex_state = 74, .external_lex_state = 2}, - [3245] = {.lex_state = 74, .external_lex_state = 2}, - [3246] = {.lex_state = 11}, - [3247] = {.lex_state = 74, .external_lex_state = 2}, - [3248] = {.lex_state = 74, .external_lex_state = 2}, - [3249] = {.lex_state = 74, .external_lex_state = 2}, - [3250] = {.lex_state = 11}, - [3251] = {.lex_state = 11}, + [3242] = {.lex_state = 75, .external_lex_state = 5}, + [3243] = {.lex_state = 75, .external_lex_state = 5}, + [3244] = {.lex_state = 75, .external_lex_state = 5}, + [3245] = {.lex_state = 74, .external_lex_state = 3}, + [3246] = {.lex_state = 74, .external_lex_state = 2}, + [3247] = {.lex_state = 74, .external_lex_state = 3}, + [3248] = {.lex_state = 74, .external_lex_state = 3}, + [3249] = {.lex_state = 75, .external_lex_state = 5}, + [3250] = {.lex_state = 74, .external_lex_state = 3}, + [3251] = {.lex_state = 74, .external_lex_state = 3}, [3252] = {.lex_state = 74, .external_lex_state = 2}, - [3253] = {.lex_state = 74, .external_lex_state = 2}, + [3253] = {.lex_state = 74, .external_lex_state = 3}, [3254] = {.lex_state = 74, .external_lex_state = 2}, - [3255] = {.lex_state = 74, .external_lex_state = 4}, + [3255] = {.lex_state = 74, .external_lex_state = 2}, [3256] = {.lex_state = 74, .external_lex_state = 2}, - [3257] = {.lex_state = 74, .external_lex_state = 3}, + [3257] = {.lex_state = 74, .external_lex_state = 2}, [3258] = {.lex_state = 74, .external_lex_state = 2}, - [3259] = {.lex_state = 74, .external_lex_state = 3}, - [3260] = {.lex_state = 74, .external_lex_state = 2}, - [3261] = {.lex_state = 74, .external_lex_state = 2}, - [3262] = {.lex_state = 74, .external_lex_state = 3}, - [3263] = {.lex_state = 74, .external_lex_state = 3}, - [3264] = {.lex_state = 75, .external_lex_state = 5}, - [3265] = {.lex_state = 75, .external_lex_state = 5}, - [3266] = {.lex_state = 75, .external_lex_state = 5}, - [3267] = {.lex_state = 74, .external_lex_state = 3}, - [3268] = {.lex_state = 74, .external_lex_state = 3}, - [3269] = {.lex_state = 74, .external_lex_state = 3}, + [3259] = {.lex_state = 74, .external_lex_state = 2}, + [3260] = {.lex_state = 4, .external_lex_state = 3}, + [3261] = {.lex_state = 74, .external_lex_state = 3}, + [3262] = {.lex_state = 74, .external_lex_state = 2}, + [3263] = {.lex_state = 74, .external_lex_state = 2}, + [3264] = {.lex_state = 74, .external_lex_state = 3}, + [3265] = {.lex_state = 74, .external_lex_state = 2}, + [3266] = {.lex_state = 74, .external_lex_state = 2}, + [3267] = {.lex_state = 74, .external_lex_state = 2}, + [3268] = {.lex_state = 74, .external_lex_state = 2}, + [3269] = {.lex_state = 74, .external_lex_state = 2}, [3270] = {.lex_state = 74, .external_lex_state = 3}, [3271] = {.lex_state = 74, .external_lex_state = 3}, - [3272] = {.lex_state = 74, .external_lex_state = 3}, - [3273] = {.lex_state = 74, .external_lex_state = 3}, - [3274] = {.lex_state = 7, .external_lex_state = 3}, - [3275] = {.lex_state = 74, .external_lex_state = 3}, - [3276] = {.lex_state = 74, .external_lex_state = 3}, - [3277] = {.lex_state = 74, .external_lex_state = 3}, - [3278] = {.lex_state = 74, .external_lex_state = 3}, + [3272] = {.lex_state = 4, .external_lex_state = 2}, + [3273] = {.lex_state = 74, .external_lex_state = 2}, + [3274] = {.lex_state = 74, .external_lex_state = 2}, + [3275] = {.lex_state = 74, .external_lex_state = 2}, + [3276] = {.lex_state = 74, .external_lex_state = 2}, + [3277] = {.lex_state = 74, .external_lex_state = 2}, + [3278] = {.lex_state = 75, .external_lex_state = 5}, [3279] = {.lex_state = 74, .external_lex_state = 3}, - [3280] = {.lex_state = 74, .external_lex_state = 2}, + [3280] = {.lex_state = 75, .external_lex_state = 5}, [3281] = {.lex_state = 74, .external_lex_state = 3}, - [3282] = {.lex_state = 74, .external_lex_state = 3}, + [3282] = {.lex_state = 75, .external_lex_state = 5}, [3283] = {.lex_state = 74, .external_lex_state = 2}, - [3284] = {.lex_state = 74, .external_lex_state = 2}, - [3285] = {.lex_state = 74, .external_lex_state = 3}, - [3286] = {.lex_state = 74, .external_lex_state = 3}, - [3287] = {.lex_state = 74, .external_lex_state = 3}, - [3288] = {.lex_state = 74, .external_lex_state = 3}, - [3289] = {.lex_state = 74, .external_lex_state = 4}, - [3290] = {.lex_state = 74, .external_lex_state = 3}, - [3291] = {.lex_state = 74, .external_lex_state = 3}, - [3292] = {.lex_state = 74, .external_lex_state = 3}, - [3293] = {.lex_state = 74, .external_lex_state = 3}, - [3294] = {.lex_state = 75, .external_lex_state = 5}, + [3284] = {.lex_state = 5, .external_lex_state = 3}, + [3285] = {.lex_state = 74, .external_lex_state = 2}, + [3286] = {.lex_state = 75, .external_lex_state = 5}, + [3287] = {.lex_state = 74, .external_lex_state = 2}, + [3288] = {.lex_state = 74, .external_lex_state = 2}, + [3289] = {.lex_state = 74, .external_lex_state = 3}, + [3290] = {.lex_state = 74, .external_lex_state = 2}, + [3291] = {.lex_state = 74, .external_lex_state = 2}, + [3292] = {.lex_state = 75, .external_lex_state = 5}, + [3293] = {.lex_state = 75, .external_lex_state = 5}, + [3294] = {.lex_state = 11}, [3295] = {.lex_state = 75, .external_lex_state = 5}, - [3296] = {.lex_state = 74, .external_lex_state = 4}, - [3297] = {.lex_state = 75, .external_lex_state = 5}, - [3298] = {.lex_state = 74, .external_lex_state = 4}, + [3296] = {.lex_state = 74, .external_lex_state = 3}, + [3297] = {.lex_state = 74, .external_lex_state = 3}, + [3298] = {.lex_state = 75, .external_lex_state = 5}, [3299] = {.lex_state = 74, .external_lex_state = 3}, [3300] = {.lex_state = 74, .external_lex_state = 3}, - [3301] = {.lex_state = 11}, - [3302] = {.lex_state = 74, .external_lex_state = 3}, - [3303] = {.lex_state = 74, .external_lex_state = 3}, - [3304] = {.lex_state = 74, .external_lex_state = 4}, - [3305] = {.lex_state = 11}, - [3306] = {.lex_state = 74, .external_lex_state = 2}, - [3307] = {.lex_state = 75, .external_lex_state = 5}, + [3301] = {.lex_state = 74, .external_lex_state = 3}, + [3302] = {.lex_state = 7, .external_lex_state = 3}, + [3303] = {.lex_state = 75, .external_lex_state = 5}, + [3304] = {.lex_state = 74, .external_lex_state = 3}, + [3305] = {.lex_state = 74, .external_lex_state = 3}, + [3306] = {.lex_state = 74, .external_lex_state = 3}, + [3307] = {.lex_state = 4, .external_lex_state = 3}, [3308] = {.lex_state = 4, .external_lex_state = 3}, - [3309] = {.lex_state = 4, .external_lex_state = 3}, - [3310] = {.lex_state = 4, .external_lex_state = 3}, - [3311] = {.lex_state = 74, .external_lex_state = 3}, - [3312] = {.lex_state = 74, .external_lex_state = 3}, - [3313] = {.lex_state = 74, .external_lex_state = 3}, + [3309] = {.lex_state = 74, .external_lex_state = 3}, + [3310] = {.lex_state = 74, .external_lex_state = 3}, + [3311] = {.lex_state = 4, .external_lex_state = 3}, + [3312] = {.lex_state = 74, .external_lex_state = 2}, + [3313] = {.lex_state = 4, .external_lex_state = 3}, [3314] = {.lex_state = 74, .external_lex_state = 3}, - [3315] = {.lex_state = 7, .external_lex_state = 3}, - [3316] = {.lex_state = 74, .external_lex_state = 3}, - [3317] = {.lex_state = 74, .external_lex_state = 3}, - [3318] = {.lex_state = 4, .external_lex_state = 3}, - [3319] = {.lex_state = 4, .external_lex_state = 3}, + [3315] = {.lex_state = 74, .external_lex_state = 3}, + [3316] = {.lex_state = 4, .external_lex_state = 3}, + [3317] = {.lex_state = 75, .external_lex_state = 5}, + [3318] = {.lex_state = 74, .external_lex_state = 3}, + [3319] = {.lex_state = 74, .external_lex_state = 3}, [3320] = {.lex_state = 4, .external_lex_state = 3}, - [3321] = {.lex_state = 4, .external_lex_state = 3}, - [3322] = {.lex_state = 74, .external_lex_state = 3}, - [3323] = {.lex_state = 74, .external_lex_state = 3}, + [3321] = {.lex_state = 74, .external_lex_state = 3}, + [3322] = {.lex_state = 7, .external_lex_state = 3}, + [3323] = {.lex_state = 4, .external_lex_state = 3}, [3324] = {.lex_state = 74, .external_lex_state = 3}, [3325] = {.lex_state = 74, .external_lex_state = 3}, - [3326] = {.lex_state = 4, .external_lex_state = 3}, + [3326] = {.lex_state = 74, .external_lex_state = 2}, [3327] = {.lex_state = 74, .external_lex_state = 3}, - [3328] = {.lex_state = 4, .external_lex_state = 3}, - [3329] = {.lex_state = 4, .external_lex_state = 3}, + [3328] = {.lex_state = 74, .external_lex_state = 3}, + [3329] = {.lex_state = 74, .external_lex_state = 3}, [3330] = {.lex_state = 74, .external_lex_state = 3}, - [3331] = {.lex_state = 74, .external_lex_state = 3}, - [3332] = {.lex_state = 74, .external_lex_state = 3}, - [3333] = {.lex_state = 74, .external_lex_state = 3}, + [3331] = {.lex_state = 4, .external_lex_state = 3}, + [3332] = {.lex_state = 4, .external_lex_state = 3}, + [3333] = {.lex_state = 4, .external_lex_state = 3}, [3334] = {.lex_state = 74, .external_lex_state = 3}, [3335] = {.lex_state = 74, .external_lex_state = 3}, [3336] = {.lex_state = 74, .external_lex_state = 3}, [3337] = {.lex_state = 74, .external_lex_state = 3}, - [3338] = {.lex_state = 4, .external_lex_state = 3}, + [3338] = {.lex_state = 74, .external_lex_state = 3}, [3339] = {.lex_state = 74, .external_lex_state = 3}, - [3340] = {.lex_state = 4, .external_lex_state = 3}, - [3341] = {.lex_state = 4, .external_lex_state = 3}, - [3342] = {.lex_state = 4, .external_lex_state = 3}, + [3340] = {.lex_state = 74, .external_lex_state = 3}, + [3341] = {.lex_state = 74, .external_lex_state = 3}, + [3342] = {.lex_state = 74, .external_lex_state = 3}, [3343] = {.lex_state = 74, .external_lex_state = 3}, - [3344] = {.lex_state = 74, .external_lex_state = 3}, + [3344] = {.lex_state = 4, .external_lex_state = 3}, [3345] = {.lex_state = 74, .external_lex_state = 3}, - [3346] = {.lex_state = 4, .external_lex_state = 3}, + [3346] = {.lex_state = 74, .external_lex_state = 3}, [3347] = {.lex_state = 4, .external_lex_state = 3}, [3348] = {.lex_state = 74, .external_lex_state = 3}, - [3349] = {.lex_state = 75, .external_lex_state = 5}, - [3350] = {.lex_state = 75, .external_lex_state = 5}, + [3349] = {.lex_state = 74, .external_lex_state = 3}, + [3350] = {.lex_state = 74, .external_lex_state = 3}, [3351] = {.lex_state = 4, .external_lex_state = 3}, - [3352] = {.lex_state = 4, .external_lex_state = 3}, + [3352] = {.lex_state = 75, .external_lex_state = 5}, [3353] = {.lex_state = 74, .external_lex_state = 3}, [3354] = {.lex_state = 4, .external_lex_state = 3}, - [3355] = {.lex_state = 74, .external_lex_state = 3}, + [3355] = {.lex_state = 75, .external_lex_state = 5}, [3356] = {.lex_state = 74, .external_lex_state = 3}, - [3357] = {.lex_state = 4, .external_lex_state = 3}, - [3358] = {.lex_state = 74, .external_lex_state = 3}, - [3359] = {.lex_state = 75, .external_lex_state = 5}, - [3360] = {.lex_state = 4, .external_lex_state = 3}, - [3361] = {.lex_state = 4, .external_lex_state = 3}, - [3362] = {.lex_state = 75, .external_lex_state = 5}, + [3357] = {.lex_state = 74, .external_lex_state = 3}, + [3358] = {.lex_state = 4, .external_lex_state = 3}, + [3359] = {.lex_state = 4, .external_lex_state = 3}, + [3360] = {.lex_state = 74, .external_lex_state = 3}, + [3361] = {.lex_state = 74, .external_lex_state = 3}, + [3362] = {.lex_state = 4, .external_lex_state = 3}, [3363] = {.lex_state = 4, .external_lex_state = 3}, - [3364] = {.lex_state = 4, .external_lex_state = 3}, - [3365] = {.lex_state = 4, .external_lex_state = 3}, + [3364] = {.lex_state = 74, .external_lex_state = 3}, + [3365] = {.lex_state = 74, .external_lex_state = 3}, [3366] = {.lex_state = 4, .external_lex_state = 3}, - [3367] = {.lex_state = 75, .external_lex_state = 5}, - [3368] = {.lex_state = 74, .external_lex_state = 3}, - [3369] = {.lex_state = 74, .external_lex_state = 3}, + [3367] = {.lex_state = 74, .external_lex_state = 3}, + [3368] = {.lex_state = 74, .external_lex_state = 2}, + [3369] = {.lex_state = 4, .external_lex_state = 3}, [3370] = {.lex_state = 4, .external_lex_state = 3}, [3371] = {.lex_state = 4, .external_lex_state = 3}, [3372] = {.lex_state = 4, .external_lex_state = 3}, - [3373] = {.lex_state = 4, .external_lex_state = 3}, + [3373] = {.lex_state = 74, .external_lex_state = 3}, [3374] = {.lex_state = 4, .external_lex_state = 3}, [3375] = {.lex_state = 4, .external_lex_state = 3}, - [3376] = {.lex_state = 74, .external_lex_state = 3}, - [3377] = {.lex_state = 74, .external_lex_state = 3}, - [3378] = {.lex_state = 74, .external_lex_state = 3}, - [3379] = {.lex_state = 74, .external_lex_state = 3}, - [3380] = {.lex_state = 74, .external_lex_state = 3}, + [3376] = {.lex_state = 4, .external_lex_state = 3}, + [3377] = {.lex_state = 4, .external_lex_state = 3}, + [3378] = {.lex_state = 4, .external_lex_state = 3}, + [3379] = {.lex_state = 4, .external_lex_state = 3}, + [3380] = {.lex_state = 75, .external_lex_state = 5}, [3381] = {.lex_state = 4, .external_lex_state = 3}, - [3382] = {.lex_state = 4, .external_lex_state = 3}, - [3383] = {.lex_state = 4, .external_lex_state = 3}, - [3384] = {.lex_state = 4, .external_lex_state = 3}, - [3385] = {.lex_state = 75, .external_lex_state = 5}, + [3382] = {.lex_state = 75, .external_lex_state = 5}, + [3383] = {.lex_state = 74, .external_lex_state = 3}, + [3384] = {.lex_state = 75, .external_lex_state = 5}, + [3385] = {.lex_state = 74, .external_lex_state = 3}, [3386] = {.lex_state = 4, .external_lex_state = 3}, - [3387] = {.lex_state = 74, .external_lex_state = 3}, - [3388] = {.lex_state = 74, .external_lex_state = 3}, + [3387] = {.lex_state = 4, .external_lex_state = 3}, + [3388] = {.lex_state = 4, .external_lex_state = 3}, [3389] = {.lex_state = 74, .external_lex_state = 3}, [3390] = {.lex_state = 4, .external_lex_state = 3}, [3391] = {.lex_state = 4, .external_lex_state = 3}, [3392] = {.lex_state = 4, .external_lex_state = 3}, [3393] = {.lex_state = 4, .external_lex_state = 3}, - [3394] = {.lex_state = 4, .external_lex_state = 3}, - [3395] = {.lex_state = 74, .external_lex_state = 3}, + [3394] = {.lex_state = 74, .external_lex_state = 3}, + [3395] = {.lex_state = 4, .external_lex_state = 3}, [3396] = {.lex_state = 4, .external_lex_state = 3}, [3397] = {.lex_state = 4, .external_lex_state = 3}, - [3398] = {.lex_state = 74, .external_lex_state = 3}, - [3399] = {.lex_state = 74, .external_lex_state = 3}, - [3400] = {.lex_state = 4, .external_lex_state = 3}, + [3398] = {.lex_state = 4, .external_lex_state = 3}, + [3399] = {.lex_state = 4, .external_lex_state = 3}, + [3400] = {.lex_state = 74, .external_lex_state = 3}, [3401] = {.lex_state = 4, .external_lex_state = 3}, - [3402] = {.lex_state = 74, .external_lex_state = 3}, - [3403] = {.lex_state = 4, .external_lex_state = 3}, + [3402] = {.lex_state = 4, .external_lex_state = 3}, + [3403] = {.lex_state = 74, .external_lex_state = 3}, [3404] = {.lex_state = 4, .external_lex_state = 3}, [3405] = {.lex_state = 4, .external_lex_state = 3}, [3406] = {.lex_state = 74, .external_lex_state = 3}, - [3407] = {.lex_state = 4, .external_lex_state = 3}, + [3407] = {.lex_state = 74, .external_lex_state = 3}, [3408] = {.lex_state = 74, .external_lex_state = 3}, - [3409] = {.lex_state = 5, .external_lex_state = 3}, + [3409] = {.lex_state = 74, .external_lex_state = 3}, [3410] = {.lex_state = 74, .external_lex_state = 3}, - [3411] = {.lex_state = 4, .external_lex_state = 3}, - [3412] = {.lex_state = 4, .external_lex_state = 3}, - [3413] = {.lex_state = 4, .external_lex_state = 3}, - [3414] = {.lex_state = 4, .external_lex_state = 3}, - [3415] = {.lex_state = 4, .external_lex_state = 3}, - [3416] = {.lex_state = 74, .external_lex_state = 3}, - [3417] = {.lex_state = 74, .external_lex_state = 3}, + [3411] = {.lex_state = 74, .external_lex_state = 3}, + [3412] = {.lex_state = 74, .external_lex_state = 3}, + [3413] = {.lex_state = 74, .external_lex_state = 3}, + [3414] = {.lex_state = 75, .external_lex_state = 5}, + [3415] = {.lex_state = 74, .external_lex_state = 3}, + [3416] = {.lex_state = 4, .external_lex_state = 3}, + [3417] = {.lex_state = 74, .external_lex_state = 2}, [3418] = {.lex_state = 4, .external_lex_state = 3}, [3419] = {.lex_state = 4, .external_lex_state = 3}, - [3420] = {.lex_state = 74, .external_lex_state = 3}, + [3420] = {.lex_state = 4, .external_lex_state = 3}, [3421] = {.lex_state = 4, .external_lex_state = 3}, - [3422] = {.lex_state = 74, .external_lex_state = 3}, + [3422] = {.lex_state = 4, .external_lex_state = 3}, [3423] = {.lex_state = 4, .external_lex_state = 3}, [3424] = {.lex_state = 4, .external_lex_state = 3}, - [3425] = {.lex_state = 4, .external_lex_state = 3}, + [3425] = {.lex_state = 75, .external_lex_state = 5}, [3426] = {.lex_state = 4, .external_lex_state = 3}, [3427] = {.lex_state = 4, .external_lex_state = 3}, - [3428] = {.lex_state = 4, .external_lex_state = 3}, - [3429] = {.lex_state = 74, .external_lex_state = 3}, - [3430] = {.lex_state = 4, .external_lex_state = 3}, - [3431] = {.lex_state = 75, .external_lex_state = 5}, + [3428] = {.lex_state = 75, .external_lex_state = 5}, + [3429] = {.lex_state = 5, .external_lex_state = 3}, + [3430] = {.lex_state = 74, .external_lex_state = 3}, + [3431] = {.lex_state = 4, .external_lex_state = 3}, [3432] = {.lex_state = 4, .external_lex_state = 3}, - [3433] = {.lex_state = 74, .external_lex_state = 3}, - [3434] = {.lex_state = 74, .external_lex_state = 3}, + [3433] = {.lex_state = 4, .external_lex_state = 3}, + [3434] = {.lex_state = 4, .external_lex_state = 3}, [3435] = {.lex_state = 4, .external_lex_state = 3}, - [3436] = {.lex_state = 4, .external_lex_state = 3}, - [3437] = {.lex_state = 4, .external_lex_state = 3}, + [3436] = {.lex_state = 75, .external_lex_state = 5}, + [3437] = {.lex_state = 74, .external_lex_state = 3}, [3438] = {.lex_state = 74, .external_lex_state = 3}, - [3439] = {.lex_state = 4, .external_lex_state = 3}, - [3440] = {.lex_state = 4, .external_lex_state = 3}, + [3439] = {.lex_state = 74, .external_lex_state = 3}, + [3440] = {.lex_state = 74, .external_lex_state = 3}, [3441] = {.lex_state = 74, .external_lex_state = 3}, - [3442] = {.lex_state = 4, .external_lex_state = 3}, - [3443] = {.lex_state = 4, .external_lex_state = 3}, + [3442] = {.lex_state = 74, .external_lex_state = 3}, + [3443] = {.lex_state = 74, .external_lex_state = 3}, [3444] = {.lex_state = 74, .external_lex_state = 3}, - [3445] = {.lex_state = 4, .external_lex_state = 3}, - [3446] = {.lex_state = 74, .external_lex_state = 3}, + [3445] = {.lex_state = 74, .external_lex_state = 2}, + [3446] = {.lex_state = 4, .external_lex_state = 3}, [3447] = {.lex_state = 74, .external_lex_state = 3}, - [3448] = {.lex_state = 75, .external_lex_state = 5}, - [3449] = {.lex_state = 4, .external_lex_state = 3}, - [3450] = {.lex_state = 4, .external_lex_state = 3}, - [3451] = {.lex_state = 4, .external_lex_state = 3}, + [3448] = {.lex_state = 4, .external_lex_state = 3}, + [3449] = {.lex_state = 74, .external_lex_state = 3}, + [3450] = {.lex_state = 74, .external_lex_state = 3}, + [3451] = {.lex_state = 74, .external_lex_state = 3}, [3452] = {.lex_state = 74, .external_lex_state = 3}, [3453] = {.lex_state = 74, .external_lex_state = 3}, [3454] = {.lex_state = 4, .external_lex_state = 3}, - [3455] = {.lex_state = 4, .external_lex_state = 3}, - [3456] = {.lex_state = 74, .external_lex_state = 3}, - [3457] = {.lex_state = 74, .external_lex_state = 3}, - [3458] = {.lex_state = 4, .external_lex_state = 3}, + [3455] = {.lex_state = 74, .external_lex_state = 3}, + [3456] = {.lex_state = 4, .external_lex_state = 3}, + [3457] = {.lex_state = 4, .external_lex_state = 3}, + [3458] = {.lex_state = 74, .external_lex_state = 3}, [3459] = {.lex_state = 4, .external_lex_state = 3}, [3460] = {.lex_state = 4, .external_lex_state = 3}, - [3461] = {.lex_state = 4, .external_lex_state = 3}, + [3461] = {.lex_state = 74, .external_lex_state = 3}, [3462] = {.lex_state = 4, .external_lex_state = 3}, [3463] = {.lex_state = 4, .external_lex_state = 3}, - [3464] = {.lex_state = 4, .external_lex_state = 3}, - [3465] = {.lex_state = 74, .external_lex_state = 3}, + [3464] = {.lex_state = 74, .external_lex_state = 3}, + [3465] = {.lex_state = 4, .external_lex_state = 3}, [3466] = {.lex_state = 74, .external_lex_state = 3}, - [3467] = {.lex_state = 4, .external_lex_state = 3}, - [3468] = {.lex_state = 74, .external_lex_state = 3}, - [3469] = {.lex_state = 74, .external_lex_state = 3}, + [3467] = {.lex_state = 74, .external_lex_state = 3}, + [3468] = {.lex_state = 4, .external_lex_state = 3}, + [3469] = {.lex_state = 4, .external_lex_state = 3}, [3470] = {.lex_state = 4, .external_lex_state = 3}, [3471] = {.lex_state = 4, .external_lex_state = 3}, - [3472] = {.lex_state = 74, .external_lex_state = 3}, + [3472] = {.lex_state = 4, .external_lex_state = 3}, [3473] = {.lex_state = 4, .external_lex_state = 3}, [3474] = {.lex_state = 4, .external_lex_state = 3}, - [3475] = {.lex_state = 74, .external_lex_state = 2}, - [3476] = {.lex_state = 75, .external_lex_state = 5}, - [3477] = {.lex_state = 4, .external_lex_state = 3}, + [3475] = {.lex_state = 4, .external_lex_state = 3}, + [3476] = {.lex_state = 4, .external_lex_state = 3}, + [3477] = {.lex_state = 74, .external_lex_state = 3}, [3478] = {.lex_state = 4, .external_lex_state = 3}, [3479] = {.lex_state = 4, .external_lex_state = 3}, [3480] = {.lex_state = 4, .external_lex_state = 3}, [3481] = {.lex_state = 4, .external_lex_state = 3}, - [3482] = {.lex_state = 74, .external_lex_state = 3}, + [3482] = {.lex_state = 4, .external_lex_state = 3}, [3483] = {.lex_state = 4, .external_lex_state = 3}, [3484] = {.lex_state = 4, .external_lex_state = 3}, [3485] = {.lex_state = 4, .external_lex_state = 3}, - [3486] = {.lex_state = 74, .external_lex_state = 3}, - [3487] = {.lex_state = 4, .external_lex_state = 3}, - [3488] = {.lex_state = 4, .external_lex_state = 3}, - [3489] = {.lex_state = 4, .external_lex_state = 3}, - [3490] = {.lex_state = 4, .external_lex_state = 3}, - [3491] = {.lex_state = 74, .external_lex_state = 3}, - [3492] = {.lex_state = 74, .external_lex_state = 3}, - [3493] = {.lex_state = 74, .external_lex_state = 3}, - [3494] = {.lex_state = 4, .external_lex_state = 3}, - [3495] = {.lex_state = 74, .external_lex_state = 3}, - [3496] = {.lex_state = 4, .external_lex_state = 3}, - [3497] = {.lex_state = 4, .external_lex_state = 3}, + [3486] = {.lex_state = 4, .external_lex_state = 3}, + [3487] = {.lex_state = 75, .external_lex_state = 5}, + [3488] = {.lex_state = 74, .external_lex_state = 3}, + [3489] = {.lex_state = 74, .external_lex_state = 3}, + [3490] = {.lex_state = 74, .external_lex_state = 2}, + [3491] = {.lex_state = 4, .external_lex_state = 3}, + [3492] = {.lex_state = 4, .external_lex_state = 3}, + [3493] = {.lex_state = 4, .external_lex_state = 3}, + [3494] = {.lex_state = 74, .external_lex_state = 3}, + [3495] = {.lex_state = 4, .external_lex_state = 3}, + [3496] = {.lex_state = 74, .external_lex_state = 3}, + [3497] = {.lex_state = 74, .external_lex_state = 3}, [3498] = {.lex_state = 74, .external_lex_state = 3}, [3499] = {.lex_state = 4, .external_lex_state = 3}, [3500] = {.lex_state = 74, .external_lex_state = 3}, - [3501] = {.lex_state = 4, .external_lex_state = 3}, + [3501] = {.lex_state = 74, .external_lex_state = 2}, [3502] = {.lex_state = 4, .external_lex_state = 3}, - [3503] = {.lex_state = 4, .external_lex_state = 3}, + [3503] = {.lex_state = 74, .external_lex_state = 3}, [3504] = {.lex_state = 4, .external_lex_state = 3}, - [3505] = {.lex_state = 74, .external_lex_state = 2}, + [3505] = {.lex_state = 74, .external_lex_state = 3}, [3506] = {.lex_state = 4, .external_lex_state = 3}, - [3507] = {.lex_state = 4, .external_lex_state = 3}, + [3507] = {.lex_state = 74, .external_lex_state = 3}, [3508] = {.lex_state = 74, .external_lex_state = 3}, - [3509] = {.lex_state = 74, .external_lex_state = 3}, - [3510] = {.lex_state = 75, .external_lex_state = 5}, - [3511] = {.lex_state = 75, .external_lex_state = 5}, + [3509] = {.lex_state = 4, .external_lex_state = 3}, + [3510] = {.lex_state = 74, .external_lex_state = 3}, + [3511] = {.lex_state = 4, .external_lex_state = 3}, [3512] = {.lex_state = 74, .external_lex_state = 3}, - [3513] = {.lex_state = 74, .external_lex_state = 2}, + [3513] = {.lex_state = 4, .external_lex_state = 3}, [3514] = {.lex_state = 4, .external_lex_state = 3}, [3515] = {.lex_state = 4, .external_lex_state = 3}, - [3516] = {.lex_state = 74, .external_lex_state = 2}, + [3516] = {.lex_state = 4, .external_lex_state = 3}, [3517] = {.lex_state = 4, .external_lex_state = 3}, [3518] = {.lex_state = 4, .external_lex_state = 3}, - [3519] = {.lex_state = 4, .external_lex_state = 3}, - [3520] = {.lex_state = 74, .external_lex_state = 2}, - [3521] = {.lex_state = 74, .external_lex_state = 3}, + [3519] = {.lex_state = 74, .external_lex_state = 3}, + [3520] = {.lex_state = 74, .external_lex_state = 3}, + [3521] = {.lex_state = 75, .external_lex_state = 5}, [3522] = {.lex_state = 4, .external_lex_state = 3}, - [3523] = {.lex_state = 74, .external_lex_state = 3}, - [3524] = {.lex_state = 74, .external_lex_state = 3}, + [3523] = {.lex_state = 4, .external_lex_state = 3}, + [3524] = {.lex_state = 4, .external_lex_state = 3}, [3525] = {.lex_state = 74, .external_lex_state = 3}, - [3526] = {.lex_state = 74, .external_lex_state = 3}, - [3527] = {.lex_state = 74, .external_lex_state = 3}, + [3526] = {.lex_state = 4, .external_lex_state = 3}, + [3527] = {.lex_state = 4, .external_lex_state = 3}, [3528] = {.lex_state = 4, .external_lex_state = 3}, - [3529] = {.lex_state = 74, .external_lex_state = 3}, - [3530] = {.lex_state = 74, .external_lex_state = 3}, - [3531] = {.lex_state = 74, .external_lex_state = 2}, - [3532] = {.lex_state = 74, .external_lex_state = 2}, + [3529] = {.lex_state = 4, .external_lex_state = 3}, + [3530] = {.lex_state = 4, .external_lex_state = 3}, + [3531] = {.lex_state = 4, .external_lex_state = 3}, + [3532] = {.lex_state = 4, .external_lex_state = 3}, [3533] = {.lex_state = 4, .external_lex_state = 3}, - [3534] = {.lex_state = 74, .external_lex_state = 3}, - [3535] = {.lex_state = 4, .external_lex_state = 3}, + [3534] = {.lex_state = 4, .external_lex_state = 3}, + [3535] = {.lex_state = 74, .external_lex_state = 3}, [3536] = {.lex_state = 4, .external_lex_state = 3}, [3537] = {.lex_state = 4, .external_lex_state = 3}, - [3538] = {.lex_state = 74, .external_lex_state = 3}, - [3539] = {.lex_state = 74, .external_lex_state = 3}, + [3538] = {.lex_state = 4, .external_lex_state = 3}, + [3539] = {.lex_state = 4, .external_lex_state = 3}, [3540] = {.lex_state = 4, .external_lex_state = 3}, [3541] = {.lex_state = 74, .external_lex_state = 3}, - [3542] = {.lex_state = 74, .external_lex_state = 3}, - [3543] = {.lex_state = 74, .external_lex_state = 3}, + [3542] = {.lex_state = 4, .external_lex_state = 3}, + [3543] = {.lex_state = 4, .external_lex_state = 3}, [3544] = {.lex_state = 74, .external_lex_state = 3}, - [3545] = {.lex_state = 74, .external_lex_state = 3}, + [3545] = {.lex_state = 4, .external_lex_state = 3}, [3546] = {.lex_state = 74, .external_lex_state = 3}, [3547] = {.lex_state = 74, .external_lex_state = 2}, [3548] = {.lex_state = 74, .external_lex_state = 3}, [3549] = {.lex_state = 74, .external_lex_state = 2}, - [3550] = {.lex_state = 74, .external_lex_state = 3}, - [3551] = {.lex_state = 74, .external_lex_state = 3}, - [3552] = {.lex_state = 74, .external_lex_state = 3}, + [3550] = {.lex_state = 75}, + [3551] = {.lex_state = 74, .external_lex_state = 2}, + [3552] = {.lex_state = 74, .external_lex_state = 2}, [3553] = {.lex_state = 74, .external_lex_state = 2}, - [3554] = {.lex_state = 74, .external_lex_state = 3}, + [3554] = {.lex_state = 75, .external_lex_state = 5}, [3555] = {.lex_state = 75, .external_lex_state = 5}, - [3556] = {.lex_state = 74, .external_lex_state = 2}, + [3556] = {.lex_state = 75, .external_lex_state = 5}, [3557] = {.lex_state = 74, .external_lex_state = 3}, - [3558] = {.lex_state = 74, .external_lex_state = 2}, - [3559] = {.lex_state = 74, .external_lex_state = 2}, + [3558] = {.lex_state = 74, .external_lex_state = 3}, + [3559] = {.lex_state = 74, .external_lex_state = 3}, [3560] = {.lex_state = 74, .external_lex_state = 3}, [3561] = {.lex_state = 74, .external_lex_state = 3}, - [3562] = {.lex_state = 74, .external_lex_state = 2}, + [3562] = {.lex_state = 74, .external_lex_state = 3}, [3563] = {.lex_state = 74, .external_lex_state = 3}, [3564] = {.lex_state = 74, .external_lex_state = 3}, - [3565] = {.lex_state = 74, .external_lex_state = 2}, + [3565] = {.lex_state = 74, .external_lex_state = 3}, [3566] = {.lex_state = 74, .external_lex_state = 3}, - [3567] = {.lex_state = 74, .external_lex_state = 3}, - [3568] = {.lex_state = 74, .external_lex_state = 3}, - [3569] = {.lex_state = 74, .external_lex_state = 2}, - [3570] = {.lex_state = 75, .external_lex_state = 5}, - [3571] = {.lex_state = 75}, + [3567] = {.lex_state = 75, .external_lex_state = 5}, + [3568] = {.lex_state = 75, .external_lex_state = 5}, + [3569] = {.lex_state = 75, .external_lex_state = 5}, + [3570] = {.lex_state = 74, .external_lex_state = 3}, + [3571] = {.lex_state = 74, .external_lex_state = 3}, [3572] = {.lex_state = 75, .external_lex_state = 5}, - [3573] = {.lex_state = 75}, - [3574] = {.lex_state = 74, .external_lex_state = 3}, + [3573] = {.lex_state = 75, .external_lex_state = 5}, + [3574] = {.lex_state = 75}, [3575] = {.lex_state = 74, .external_lex_state = 3}, - [3576] = {.lex_state = 75, .external_lex_state = 5}, - [3577] = {.lex_state = 74, .external_lex_state = 3}, - [3578] = {.lex_state = 74, .external_lex_state = 2}, - [3579] = {.lex_state = 75, .external_lex_state = 5}, + [3576] = {.lex_state = 74, .external_lex_state = 3}, + [3577] = {.lex_state = 75, .external_lex_state = 5}, + [3578] = {.lex_state = 74, .external_lex_state = 3}, + [3579] = {.lex_state = 74, .external_lex_state = 2}, [3580] = {.lex_state = 75, .external_lex_state = 5}, - [3581] = {.lex_state = 75, .external_lex_state = 5}, - [3582] = {.lex_state = 75, .external_lex_state = 5}, - [3583] = {.lex_state = 74, .external_lex_state = 3}, - [3584] = {.lex_state = 75, .external_lex_state = 5}, + [3581] = {.lex_state = 74, .external_lex_state = 3}, + [3582] = {.lex_state = 74, .external_lex_state = 3}, + [3583] = {.lex_state = 74, .external_lex_state = 2}, + [3584] = {.lex_state = 74, .external_lex_state = 3}, [3585] = {.lex_state = 74, .external_lex_state = 3}, [3586] = {.lex_state = 74, .external_lex_state = 3}, [3587] = {.lex_state = 74, .external_lex_state = 3}, [3588] = {.lex_state = 74, .external_lex_state = 3}, [3589] = {.lex_state = 74, .external_lex_state = 3}, - [3590] = {.lex_state = 75, .external_lex_state = 5}, + [3590] = {.lex_state = 74, .external_lex_state = 2}, [3591] = {.lex_state = 74, .external_lex_state = 3}, - [3592] = {.lex_state = 74, .external_lex_state = 3}, - [3593] = {.lex_state = 74, .external_lex_state = 3}, + [3592] = {.lex_state = 74, .external_lex_state = 2}, + [3593] = {.lex_state = 74, .external_lex_state = 2}, [3594] = {.lex_state = 74, .external_lex_state = 3}, [3595] = {.lex_state = 74, .external_lex_state = 3}, [3596] = {.lex_state = 74, .external_lex_state = 3}, [3597] = {.lex_state = 74, .external_lex_state = 3}, [3598] = {.lex_state = 74, .external_lex_state = 3}, - [3599] = {.lex_state = 75}, - [3600] = {.lex_state = 75, .external_lex_state = 5}, + [3599] = {.lex_state = 74, .external_lex_state = 3}, + [3600] = {.lex_state = 75}, [3601] = {.lex_state = 75, .external_lex_state = 5}, - [3602] = {.lex_state = 74, .external_lex_state = 3}, - [3603] = {.lex_state = 74, .external_lex_state = 3}, + [3602] = {.lex_state = 75}, + [3603] = {.lex_state = 75}, [3604] = {.lex_state = 75, .external_lex_state = 5}, [3605] = {.lex_state = 74, .external_lex_state = 3}, - [3606] = {.lex_state = 74, .external_lex_state = 3}, - [3607] = {.lex_state = 74, .external_lex_state = 3}, - [3608] = {.lex_state = 74, .external_lex_state = 3}, - [3609] = {.lex_state = 75, .external_lex_state = 5}, + [3606] = {.lex_state = 75}, + [3607] = {.lex_state = 75}, + [3608] = {.lex_state = 75, .external_lex_state = 5}, + [3609] = {.lex_state = 74, .external_lex_state = 3}, [3610] = {.lex_state = 75, .external_lex_state = 5}, [3611] = {.lex_state = 75, .external_lex_state = 5}, - [3612] = {.lex_state = 74, .external_lex_state = 3}, - [3613] = {.lex_state = 75}, - [3614] = {.lex_state = 75}, - [3615] = {.lex_state = 75}, - [3616] = {.lex_state = 75, .external_lex_state = 5}, + [3612] = {.lex_state = 75}, + [3613] = {.lex_state = 74, .external_lex_state = 3}, + [3614] = {.lex_state = 75, .external_lex_state = 5}, + [3615] = {.lex_state = 75, .external_lex_state = 5}, + [3616] = {.lex_state = 75}, [3617] = {.lex_state = 75, .external_lex_state = 5}, [3618] = {.lex_state = 75, .external_lex_state = 5}, - [3619] = {.lex_state = 75}, - [3620] = {.lex_state = 75, .external_lex_state = 5}, - [3621] = {.lex_state = 75, .external_lex_state = 5}, + [3619] = {.lex_state = 75, .external_lex_state = 5}, + [3620] = {.lex_state = 74, .external_lex_state = 3}, + [3621] = {.lex_state = 75}, [3622] = {.lex_state = 74, .external_lex_state = 3}, - [3623] = {.lex_state = 75}, + [3623] = {.lex_state = 75, .external_lex_state = 5}, [3624] = {.lex_state = 75}, [3625] = {.lex_state = 75}, - [3626] = {.lex_state = 75, .external_lex_state = 5}, - [3627] = {.lex_state = 74, .external_lex_state = 3}, - [3628] = {.lex_state = 75}, + [3626] = {.lex_state = 75}, + [3627] = {.lex_state = 75}, + [3628] = {.lex_state = 75, .external_lex_state = 5}, [3629] = {.lex_state = 75, .external_lex_state = 5}, - [3630] = {.lex_state = 75, .external_lex_state = 5}, - [3631] = {.lex_state = 75, .external_lex_state = 5}, - [3632] = {.lex_state = 75, .external_lex_state = 5}, + [3630] = {.lex_state = 74, .external_lex_state = 3}, + [3631] = {.lex_state = 75}, + [3632] = {.lex_state = 75}, [3633] = {.lex_state = 75}, [3634] = {.lex_state = 75}, - [3635] = {.lex_state = 75}, + [3635] = {.lex_state = 75, .external_lex_state = 5}, [3636] = {.lex_state = 75}, [3637] = {.lex_state = 75}, [3638] = {.lex_state = 75}, - [3639] = {.lex_state = 75}, - [3640] = {.lex_state = 75, .external_lex_state = 5}, + [3639] = {.lex_state = 75, .external_lex_state = 5}, + [3640] = {.lex_state = 75}, [3641] = {.lex_state = 75, .external_lex_state = 5}, - [3642] = {.lex_state = 75, .external_lex_state = 5}, + [3642] = {.lex_state = 74, .external_lex_state = 3}, [3643] = {.lex_state = 75, .external_lex_state = 5}, [3644] = {.lex_state = 75, .external_lex_state = 5}, - [3645] = {.lex_state = 75}, - [3646] = {.lex_state = 74, .external_lex_state = 3}, + [3645] = {.lex_state = 75, .external_lex_state = 5}, + [3646] = {.lex_state = 75, .external_lex_state = 5}, [3647] = {.lex_state = 75, .external_lex_state = 5}, [3648] = {.lex_state = 75, .external_lex_state = 5}, - [3649] = {.lex_state = 75}, - [3650] = {.lex_state = 75}, + [3649] = {.lex_state = 75, .external_lex_state = 5}, + [3650] = {.lex_state = 75, .external_lex_state = 5}, [3651] = {.lex_state = 75}, [3652] = {.lex_state = 75}, [3653] = {.lex_state = 75, .external_lex_state = 5}, - [3654] = {.lex_state = 74, .external_lex_state = 3}, + [3654] = {.lex_state = 75}, [3655] = {.lex_state = 75}, [3656] = {.lex_state = 75}, [3657] = {.lex_state = 75}, - [3658] = {.lex_state = 75}, - [3659] = {.lex_state = 75}, - [3660] = {.lex_state = 74, .external_lex_state = 3}, + [3658] = {.lex_state = 74, .external_lex_state = 3}, + [3659] = {.lex_state = 75, .external_lex_state = 5}, + [3660] = {.lex_state = 75}, [3661] = {.lex_state = 75}, [3662] = {.lex_state = 75, .external_lex_state = 5}, [3663] = {.lex_state = 75}, [3664] = {.lex_state = 75}, - [3665] = {.lex_state = 75}, - [3666] = {.lex_state = 75}, + [3665] = {.lex_state = 75, .external_lex_state = 5}, + [3666] = {.lex_state = 75, .external_lex_state = 5}, [3667] = {.lex_state = 75}, [3668] = {.lex_state = 75}, [3669] = {.lex_state = 75, .external_lex_state = 5}, [3670] = {.lex_state = 75}, - [3671] = {.lex_state = 75, .external_lex_state = 5}, + [3671] = {.lex_state = 75}, [3672] = {.lex_state = 75, .external_lex_state = 5}, [3673] = {.lex_state = 75, .external_lex_state = 5}, - [3674] = {.lex_state = 75}, + [3674] = {.lex_state = 75, .external_lex_state = 5}, [3675] = {.lex_state = 75}, [3676] = {.lex_state = 75}, [3677] = {.lex_state = 75}, - [3678] = {.lex_state = 75, .external_lex_state = 5}, + [3678] = {.lex_state = 75}, [3679] = {.lex_state = 75}, [3680] = {.lex_state = 75}, - [3681] = {.lex_state = 75, .external_lex_state = 5}, + [3681] = {.lex_state = 75}, [3682] = {.lex_state = 75}, [3683] = {.lex_state = 75, .external_lex_state = 5}, - [3684] = {.lex_state = 75}, + [3684] = {.lex_state = 74, .external_lex_state = 3}, [3685] = {.lex_state = 75, .external_lex_state = 5}, - [3686] = {.lex_state = 75}, - [3687] = {.lex_state = 75, .external_lex_state = 5}, - [3688] = {.lex_state = 75, .external_lex_state = 5}, - [3689] = {.lex_state = 75, .external_lex_state = 5}, - [3690] = {.lex_state = 75, .external_lex_state = 5}, + [3686] = {.lex_state = 74, .external_lex_state = 3}, + [3687] = {.lex_state = 74, .external_lex_state = 3}, + [3688] = {.lex_state = 75}, + [3689] = {.lex_state = 75}, + [3690] = {.lex_state = 75}, [3691] = {.lex_state = 75, .external_lex_state = 5}, [3692] = {.lex_state = 75, .external_lex_state = 5}, - [3693] = {.lex_state = 75, .external_lex_state = 5}, - [3694] = {.lex_state = 75}, - [3695] = {.lex_state = 13}, - [3696] = {.lex_state = 75, .external_lex_state = 5}, - [3697] = {.lex_state = 75}, + [3693] = {.lex_state = 75}, + [3694] = {.lex_state = 75, .external_lex_state = 5}, + [3695] = {.lex_state = 75, .external_lex_state = 5}, + [3696] = {.lex_state = 75}, + [3697] = {.lex_state = 13}, [3698] = {.lex_state = 75, .external_lex_state = 5}, - [3699] = {.lex_state = 75}, + [3699] = {.lex_state = 75, .external_lex_state = 5}, [3700] = {.lex_state = 75, .external_lex_state = 5}, [3701] = {.lex_state = 75, .external_lex_state = 5}, - [3702] = {.lex_state = 75}, + [3702] = {.lex_state = 75, .external_lex_state = 5}, [3703] = {.lex_state = 75}, - [3704] = {.lex_state = 75}, + [3704] = {.lex_state = 75, .external_lex_state = 5}, [3705] = {.lex_state = 75}, - [3706] = {.lex_state = 75, .external_lex_state = 5}, - [3707] = {.lex_state = 75, .external_lex_state = 5}, + [3706] = {.lex_state = 75}, + [3707] = {.lex_state = 13}, [3708] = {.lex_state = 75}, - [3709] = {.lex_state = 75}, - [3710] = {.lex_state = 75}, + [3709] = {.lex_state = 75, .external_lex_state = 5}, + [3710] = {.lex_state = 75, .external_lex_state = 5}, [3711] = {.lex_state = 75}, - [3712] = {.lex_state = 75, .external_lex_state = 5}, - [3713] = {.lex_state = 75, .external_lex_state = 5}, - [3714] = {.lex_state = 75, .external_lex_state = 5}, + [3712] = {.lex_state = 75}, + [3713] = {.lex_state = 13}, + [3714] = {.lex_state = 75}, [3715] = {.lex_state = 75, .external_lex_state = 5}, - [3716] = {.lex_state = 75, .external_lex_state = 5}, - [3717] = {.lex_state = 75}, + [3716] = {.lex_state = 13}, + [3717] = {.lex_state = 75, .external_lex_state = 5}, [3718] = {.lex_state = 75, .external_lex_state = 5}, [3719] = {.lex_state = 75, .external_lex_state = 5}, - [3720] = {.lex_state = 75, .external_lex_state = 5}, - [3721] = {.lex_state = 13}, + [3720] = {.lex_state = 75}, + [3721] = {.lex_state = 75, .external_lex_state = 5}, [3722] = {.lex_state = 75}, [3723] = {.lex_state = 75}, [3724] = {.lex_state = 75, .external_lex_state = 5}, - [3725] = {.lex_state = 75}, - [3726] = {.lex_state = 75}, + [3725] = {.lex_state = 75, .external_lex_state = 5}, + [3726] = {.lex_state = 13}, [3727] = {.lex_state = 75}, [3728] = {.lex_state = 75}, [3729] = {.lex_state = 75, .external_lex_state = 5}, - [3730] = {.lex_state = 75}, + [3730] = {.lex_state = 75, .external_lex_state = 5}, [3731] = {.lex_state = 75}, - [3732] = {.lex_state = 75, .external_lex_state = 5}, + [3732] = {.lex_state = 75}, [3733] = {.lex_state = 75}, [3734] = {.lex_state = 75}, - [3735] = {.lex_state = 75}, + [3735] = {.lex_state = 75, .external_lex_state = 5}, [3736] = {.lex_state = 75}, [3737] = {.lex_state = 75}, [3738] = {.lex_state = 75}, @@ -10037,60 +10036,60 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3741] = {.lex_state = 75}, [3742] = {.lex_state = 75}, [3743] = {.lex_state = 75}, - [3744] = {.lex_state = 75, .external_lex_state = 5}, + [3744] = {.lex_state = 75}, [3745] = {.lex_state = 75}, - [3746] = {.lex_state = 75}, + [3746] = {.lex_state = 75, .external_lex_state = 5}, [3747] = {.lex_state = 75}, [3748] = {.lex_state = 75}, [3749] = {.lex_state = 75}, - [3750] = {.lex_state = 13}, - [3751] = {.lex_state = 75}, - [3752] = {.lex_state = 13}, - [3753] = {.lex_state = 75}, - [3754] = {.lex_state = 13}, + [3750] = {.lex_state = 75}, + [3751] = {.lex_state = 13}, + [3752] = {.lex_state = 75}, + [3753] = {.lex_state = 13}, + [3754] = {.lex_state = 75}, [3755] = {.lex_state = 75}, [3756] = {.lex_state = 75}, [3757] = {.lex_state = 75}, - [3758] = {.lex_state = 13}, + [3758] = {.lex_state = 75}, [3759] = {.lex_state = 75}, - [3760] = {.lex_state = 13}, + [3760] = {.lex_state = 75}, [3761] = {.lex_state = 75}, [3762] = {.lex_state = 75}, [3763] = {.lex_state = 75}, [3764] = {.lex_state = 75}, - [3765] = {.lex_state = 75}, - [3766] = {.lex_state = 11, .external_lex_state = 5}, + [3765] = {.lex_state = 11, .external_lex_state = 5}, + [3766] = {.lex_state = 75}, [3767] = {.lex_state = 11, .external_lex_state = 5}, [3768] = {.lex_state = 11, .external_lex_state = 5}, [3769] = {.lex_state = 11, .external_lex_state = 5}, - [3770] = {.lex_state = 75}, + [3770] = {.lex_state = 11, .external_lex_state = 5}, [3771] = {.lex_state = 11, .external_lex_state = 5}, [3772] = {.lex_state = 11, .external_lex_state = 5}, - [3773] = {.lex_state = 75}, - [3774] = {.lex_state = 75}, + [3773] = {.lex_state = 11, .external_lex_state = 5}, + [3774] = {.lex_state = 11, .external_lex_state = 5}, [3775] = {.lex_state = 11, .external_lex_state = 5}, [3776] = {.lex_state = 11, .external_lex_state = 5}, [3777] = {.lex_state = 11, .external_lex_state = 5}, - [3778] = {.lex_state = 11, .external_lex_state = 5}, + [3778] = {.lex_state = 75}, [3779] = {.lex_state = 11, .external_lex_state = 5}, - [3780] = {.lex_state = 11, .external_lex_state = 5}, + [3780] = {.lex_state = 75}, [3781] = {.lex_state = 11, .external_lex_state = 5}, [3782] = {.lex_state = 75}, - [3783] = {.lex_state = 11, .external_lex_state = 5}, - [3784] = {.lex_state = 75}, - [3785] = {.lex_state = 75}, - [3786] = {.lex_state = 75}, + [3783] = {.lex_state = 75}, + [3784] = {.lex_state = 11, .external_lex_state = 5}, + [3785] = {.lex_state = 11, .external_lex_state = 5}, + [3786] = {.lex_state = 11, .external_lex_state = 5}, [3787] = {.lex_state = 11, .external_lex_state = 5}, - [3788] = {.lex_state = 11, .external_lex_state = 5}, + [3788] = {.lex_state = 75}, [3789] = {.lex_state = 11, .external_lex_state = 5}, - [3790] = {.lex_state = 75}, - [3791] = {.lex_state = 75}, + [3790] = {.lex_state = 11, .external_lex_state = 5}, + [3791] = {.lex_state = 11, .external_lex_state = 5}, [3792] = {.lex_state = 11, .external_lex_state = 5}, - [3793] = {.lex_state = 11, .external_lex_state = 5}, - [3794] = {.lex_state = 11, .external_lex_state = 5}, - [3795] = {.lex_state = 11, .external_lex_state = 5}, + [3793] = {.lex_state = 75}, + [3794] = {.lex_state = 75}, + [3795] = {.lex_state = 75}, [3796] = {.lex_state = 11, .external_lex_state = 5}, - [3797] = {.lex_state = 11, .external_lex_state = 5}, + [3797] = {.lex_state = 75}, [3798] = {.lex_state = 75}, [3799] = {.lex_state = 75}, [3800] = {.lex_state = 75}, @@ -10111,11 +10110,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3815] = {.lex_state = 75}, [3816] = {.lex_state = 75}, [3817] = {.lex_state = 75}, - [3818] = {.lex_state = 75}, + [3818] = {.lex_state = 11}, [3819] = {.lex_state = 75}, [3820] = {.lex_state = 75}, [3821] = {.lex_state = 75}, - [3822] = {.lex_state = 11}, + [3822] = {.lex_state = 75}, [3823] = {.lex_state = 75}, [3824] = {.lex_state = 75}, [3825] = {.lex_state = 75}, @@ -10172,7 +10171,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3876] = {.lex_state = 2}, [3877] = {.lex_state = 2}, [3878] = {.lex_state = 2}, - [3879] = {.lex_state = 2}, + [3879] = {.lex_state = 75}, [3880] = {.lex_state = 2}, [3881] = {.lex_state = 2}, [3882] = {.lex_state = 2}, @@ -10181,42 +10180,42 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3885] = {.lex_state = 2}, [3886] = {.lex_state = 2}, [3887] = {.lex_state = 2}, - [3888] = {.lex_state = 2}, - [3889] = {.lex_state = 2}, + [3888] = {.lex_state = 75}, + [3889] = {.lex_state = 75}, [3890] = {.lex_state = 2}, [3891] = {.lex_state = 2}, [3892] = {.lex_state = 2}, - [3893] = {.lex_state = 2}, + [3893] = {.lex_state = 75}, [3894] = {.lex_state = 2}, - [3895] = {.lex_state = 75, .external_lex_state = 5}, + [3895] = {.lex_state = 2}, [3896] = {.lex_state = 75}, - [3897] = {.lex_state = 75, .external_lex_state = 5}, - [3898] = {.lex_state = 75}, - [3899] = {.lex_state = 75, .external_lex_state = 5}, - [3900] = {.lex_state = 75}, - [3901] = {.lex_state = 75, .external_lex_state = 5}, + [3897] = {.lex_state = 2}, + [3898] = {.lex_state = 2}, + [3899] = {.lex_state = 2}, + [3900] = {.lex_state = 75, .external_lex_state = 5}, + [3901] = {.lex_state = 18}, [3902] = {.lex_state = 75, .external_lex_state = 5}, - [3903] = {.lex_state = 75}, + [3903] = {.lex_state = 75, .external_lex_state = 5}, [3904] = {.lex_state = 75, .external_lex_state = 5}, [3905] = {.lex_state = 75, .external_lex_state = 5}, [3906] = {.lex_state = 75, .external_lex_state = 5}, - [3907] = {.lex_state = 75}, - [3908] = {.lex_state = 18}, + [3907] = {.lex_state = 75, .external_lex_state = 5}, + [3908] = {.lex_state = 75, .external_lex_state = 5}, [3909] = {.lex_state = 75}, - [3910] = {.lex_state = 75}, + [3910] = {.lex_state = 18}, [3911] = {.lex_state = 75}, - [3912] = {.lex_state = 75}, - [3913] = {.lex_state = 75}, - [3914] = {.lex_state = 75, .external_lex_state = 5}, + [3912] = {.lex_state = 75, .external_lex_state = 5}, + [3913] = {.lex_state = 75, .external_lex_state = 5}, + [3914] = {.lex_state = 75}, [3915] = {.lex_state = 75, .external_lex_state = 5}, - [3916] = {.lex_state = 75}, + [3916] = {.lex_state = 75, .external_lex_state = 5}, [3917] = {.lex_state = 75}, - [3918] = {.lex_state = 75, .external_lex_state = 5}, - [3919] = {.lex_state = 75, .external_lex_state = 5}, - [3920] = {.lex_state = 75, .external_lex_state = 5}, - [3921] = {.lex_state = 18}, - [3922] = {.lex_state = 75, .external_lex_state = 5}, - [3923] = {.lex_state = 75, .external_lex_state = 5}, + [3918] = {.lex_state = 75}, + [3919] = {.lex_state = 75}, + [3920] = {.lex_state = 75}, + [3921] = {.lex_state = 75}, + [3922] = {.lex_state = 75}, + [3923] = {.lex_state = 75}, [3924] = {.lex_state = 75, .external_lex_state = 5}, [3925] = {.lex_state = 75}, [3926] = {.lex_state = 75}, @@ -10226,55 +10225,55 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3930] = {.lex_state = 75}, [3931] = {.lex_state = 75}, [3932] = {.lex_state = 75}, - [3933] = {.lex_state = 75, .external_lex_state = 5}, + [3933] = {.lex_state = 75}, [3934] = {.lex_state = 75}, - [3935] = {.lex_state = 75}, - [3936] = {.lex_state = 75}, + [3935] = {.lex_state = 75, .external_lex_state = 5}, + [3936] = {.lex_state = 75, .external_lex_state = 5}, [3937] = {.lex_state = 75}, [3938] = {.lex_state = 75}, [3939] = {.lex_state = 18}, [3940] = {.lex_state = 75, .external_lex_state = 5}, - [3941] = {.lex_state = 75}, - [3942] = {.lex_state = 75}, + [3941] = {.lex_state = 75, .external_lex_state = 5}, + [3942] = {.lex_state = 75, .external_lex_state = 5}, [3943] = {.lex_state = 75}, - [3944] = {.lex_state = 75}, - [3945] = {.lex_state = 75, .external_lex_state = 5}, + [3944] = {.lex_state = 75, .external_lex_state = 5}, + [3945] = {.lex_state = 75}, [3946] = {.lex_state = 75}, - [3947] = {.lex_state = 75, .external_lex_state = 6}, - [3948] = {.lex_state = 75, .external_lex_state = 5}, - [3949] = {.lex_state = 75, .external_lex_state = 5}, - [3950] = {.lex_state = 75, .external_lex_state = 5}, + [3947] = {.lex_state = 75, .external_lex_state = 5}, + [3948] = {.lex_state = 18}, + [3949] = {.lex_state = 18}, + [3950] = {.lex_state = 18}, [3951] = {.lex_state = 75, .external_lex_state = 5}, [3952] = {.lex_state = 75, .external_lex_state = 5}, - [3953] = {.lex_state = 18}, - [3954] = {.lex_state = 75}, - [3955] = {.lex_state = 18}, - [3956] = {.lex_state = 18}, + [3953] = {.lex_state = 75}, + [3954] = {.lex_state = 75, .external_lex_state = 5}, + [3955] = {.lex_state = 75, .external_lex_state = 5}, + [3956] = {.lex_state = 75, .external_lex_state = 5}, [3957] = {.lex_state = 75, .external_lex_state = 5}, [3958] = {.lex_state = 75, .external_lex_state = 5}, - [3959] = {.lex_state = 75, .external_lex_state = 5}, - [3960] = {.lex_state = 18}, + [3959] = {.lex_state = 75, .external_lex_state = 6}, + [3960] = {.lex_state = 75, .external_lex_state = 5}, [3961] = {.lex_state = 75, .external_lex_state = 5}, [3962] = {.lex_state = 75, .external_lex_state = 5}, - [3963] = {.lex_state = 75, .external_lex_state = 5}, + [3963] = {.lex_state = 18}, [3964] = {.lex_state = 75, .external_lex_state = 5}, [3965] = {.lex_state = 75, .external_lex_state = 5}, [3966] = {.lex_state = 75, .external_lex_state = 5}, [3967] = {.lex_state = 75, .external_lex_state = 5}, - [3968] = {.lex_state = 75, .external_lex_state = 5}, + [3968] = {.lex_state = 75}, [3969] = {.lex_state = 75, .external_lex_state = 5}, [3970] = {.lex_state = 75, .external_lex_state = 5}, - [3971] = {.lex_state = 75}, + [3971] = {.lex_state = 18}, [3972] = {.lex_state = 75, .external_lex_state = 5}, [3973] = {.lex_state = 75, .external_lex_state = 5}, - [3974] = {.lex_state = 18}, + [3974] = {.lex_state = 75, .external_lex_state = 5}, [3975] = {.lex_state = 75, .external_lex_state = 5}, [3976] = {.lex_state = 75, .external_lex_state = 5}, - [3977] = {.lex_state = 18}, - [3978] = {.lex_state = 75, .external_lex_state = 5}, + [3977] = {.lex_state = 75, .external_lex_state = 5}, + [3978] = {.lex_state = 18}, [3979] = {.lex_state = 75, .external_lex_state = 5}, [3980] = {.lex_state = 75, .external_lex_state = 5}, - [3981] = {.lex_state = 75, .external_lex_state = 6}, + [3981] = {.lex_state = 75, .external_lex_state = 5}, [3982] = {.lex_state = 75, .external_lex_state = 5}, [3983] = {.lex_state = 75, .external_lex_state = 5}, [3984] = {.lex_state = 75, .external_lex_state = 5}, @@ -10284,20 +10283,20 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3988] = {.lex_state = 75, .external_lex_state = 5}, [3989] = {.lex_state = 75, .external_lex_state = 5}, [3990] = {.lex_state = 75, .external_lex_state = 5}, - [3991] = {.lex_state = 75}, - [3992] = {.lex_state = 75}, + [3991] = {.lex_state = 75, .external_lex_state = 5}, + [3992] = {.lex_state = 75, .external_lex_state = 5}, [3993] = {.lex_state = 75, .external_lex_state = 5}, [3994] = {.lex_state = 75, .external_lex_state = 5}, [3995] = {.lex_state = 75, .external_lex_state = 5}, [3996] = {.lex_state = 75, .external_lex_state = 5}, - [3997] = {.lex_state = 75}, + [3997] = {.lex_state = 75, .external_lex_state = 5}, [3998] = {.lex_state = 75, .external_lex_state = 5}, [3999] = {.lex_state = 75, .external_lex_state = 5}, [4000] = {.lex_state = 75, .external_lex_state = 5}, - [4001] = {.lex_state = 75}, + [4001] = {.lex_state = 75, .external_lex_state = 5}, [4002] = {.lex_state = 75, .external_lex_state = 5}, [4003] = {.lex_state = 75, .external_lex_state = 5}, - [4004] = {.lex_state = 75, .external_lex_state = 5}, + [4004] = {.lex_state = 75}, [4005] = {.lex_state = 75, .external_lex_state = 5}, [4006] = {.lex_state = 75, .external_lex_state = 5}, [4007] = {.lex_state = 75, .external_lex_state = 5}, @@ -10306,142 +10305,142 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4010] = {.lex_state = 75, .external_lex_state = 5}, [4011] = {.lex_state = 75, .external_lex_state = 5}, [4012] = {.lex_state = 75}, - [4013] = {.lex_state = 75, .external_lex_state = 5}, - [4014] = {.lex_state = 75, .external_lex_state = 5}, + [4013] = {.lex_state = 75}, + [4014] = {.lex_state = 75, .external_lex_state = 6}, [4015] = {.lex_state = 75, .external_lex_state = 5}, [4016] = {.lex_state = 75, .external_lex_state = 5}, [4017] = {.lex_state = 75}, [4018] = {.lex_state = 75, .external_lex_state = 5}, [4019] = {.lex_state = 75, .external_lex_state = 5}, - [4020] = {.lex_state = 75, .external_lex_state = 5}, + [4020] = {.lex_state = 75}, [4021] = {.lex_state = 75, .external_lex_state = 5}, [4022] = {.lex_state = 75, .external_lex_state = 5}, [4023] = {.lex_state = 75, .external_lex_state = 5}, - [4024] = {.lex_state = 75, .external_lex_state = 5}, + [4024] = {.lex_state = 75}, [4025] = {.lex_state = 75, .external_lex_state = 5}, [4026] = {.lex_state = 18}, - [4027] = {.lex_state = 18}, + [4027] = {.lex_state = 75, .external_lex_state = 5}, [4028] = {.lex_state = 18}, - [4029] = {.lex_state = 26}, - [4030] = {.lex_state = 75, .external_lex_state = 5}, + [4029] = {.lex_state = 18}, + [4030] = {.lex_state = 75}, [4031] = {.lex_state = 75}, [4032] = {.lex_state = 75, .external_lex_state = 5}, - [4033] = {.lex_state = 26}, + [4033] = {.lex_state = 75}, [4034] = {.lex_state = 75}, [4035] = {.lex_state = 75}, - [4036] = {.lex_state = 75, .external_lex_state = 5}, - [4037] = {.lex_state = 75, .external_lex_state = 5}, - [4038] = {.lex_state = 26}, - [4039] = {.lex_state = 18}, - [4040] = {.lex_state = 75}, + [4036] = {.lex_state = 75, .external_lex_state = 6}, + [4037] = {.lex_state = 26}, + [4038] = {.lex_state = 75}, + [4039] = {.lex_state = 75, .external_lex_state = 6}, + [4040] = {.lex_state = 26}, [4041] = {.lex_state = 75, .external_lex_state = 5}, [4042] = {.lex_state = 75}, - [4043] = {.lex_state = 75, .external_lex_state = 5}, + [4043] = {.lex_state = 26}, [4044] = {.lex_state = 75, .external_lex_state = 5}, - [4045] = {.lex_state = 75, .external_lex_state = 5}, - [4046] = {.lex_state = 75}, - [4047] = {.lex_state = 26}, - [4048] = {.lex_state = 26}, - [4049] = {.lex_state = 75, .external_lex_state = 5}, - [4050] = {.lex_state = 75, .external_lex_state = 6}, - [4051] = {.lex_state = 75, .external_lex_state = 6}, - [4052] = {.lex_state = 75}, - [4053] = {.lex_state = 26}, + [4045] = {.lex_state = 18}, + [4046] = {.lex_state = 75, .external_lex_state = 5}, + [4047] = {.lex_state = 75, .external_lex_state = 5}, + [4048] = {.lex_state = 75}, + [4049] = {.lex_state = 18}, + [4050] = {.lex_state = 75}, + [4051] = {.lex_state = 75}, + [4052] = {.lex_state = 26}, + [4053] = {.lex_state = 75}, [4054] = {.lex_state = 75}, [4055] = {.lex_state = 75}, - [4056] = {.lex_state = 18}, - [4057] = {.lex_state = 75, .external_lex_state = 5}, - [4058] = {.lex_state = 75, .external_lex_state = 5}, - [4059] = {.lex_state = 26}, - [4060] = {.lex_state = 26}, - [4061] = {.lex_state = 75}, - [4062] = {.lex_state = 75}, - [4063] = {.lex_state = 75, .external_lex_state = 5}, + [4056] = {.lex_state = 75, .external_lex_state = 5}, + [4057] = {.lex_state = 75}, + [4058] = {.lex_state = 26}, + [4059] = {.lex_state = 75, .external_lex_state = 5}, + [4060] = {.lex_state = 75, .external_lex_state = 5}, + [4061] = {.lex_state = 18}, + [4062] = {.lex_state = 75, .external_lex_state = 5}, + [4063] = {.lex_state = 26}, [4064] = {.lex_state = 26}, [4065] = {.lex_state = 75}, [4066] = {.lex_state = 26}, - [4067] = {.lex_state = 75}, - [4068] = {.lex_state = 26}, - [4069] = {.lex_state = 75}, + [4067] = {.lex_state = 75, .external_lex_state = 5}, + [4068] = {.lex_state = 75}, + [4069] = {.lex_state = 26}, [4070] = {.lex_state = 75, .external_lex_state = 5}, - [4071] = {.lex_state = 75}, - [4072] = {.lex_state = 75}, - [4073] = {.lex_state = 75}, + [4071] = {.lex_state = 26}, + [4072] = {.lex_state = 26}, + [4073] = {.lex_state = 26}, [4074] = {.lex_state = 75}, - [4075] = {.lex_state = 18}, + [4075] = {.lex_state = 75}, [4076] = {.lex_state = 75}, - [4077] = {.lex_state = 26}, - [4078] = {.lex_state = 75}, - [4079] = {.lex_state = 75}, - [4080] = {.lex_state = 75, .external_lex_state = 6}, - [4081] = {.lex_state = 75, .external_lex_state = 5}, + [4077] = {.lex_state = 75, .external_lex_state = 5}, + [4078] = {.lex_state = 18}, + [4079] = {.lex_state = 18}, + [4080] = {.lex_state = 75}, + [4081] = {.lex_state = 18}, [4082] = {.lex_state = 75}, - [4083] = {.lex_state = 18}, - [4084] = {.lex_state = 18}, + [4083] = {.lex_state = 26}, + [4084] = {.lex_state = 75, .external_lex_state = 5}, [4085] = {.lex_state = 75}, [4086] = {.lex_state = 18}, - [4087] = {.lex_state = 26}, - [4088] = {.lex_state = 75}, - [4089] = {.lex_state = 18}, - [4090] = {.lex_state = 18}, + [4087] = {.lex_state = 75}, + [4088] = {.lex_state = 18}, + [4089] = {.lex_state = 75}, + [4090] = {.lex_state = 75}, [4091] = {.lex_state = 18}, - [4092] = {.lex_state = 18}, - [4093] = {.lex_state = 75}, + [4092] = {.lex_state = 75}, + [4093] = {.lex_state = 75, .external_lex_state = 5}, [4094] = {.lex_state = 75}, [4095] = {.lex_state = 75}, - [4096] = {.lex_state = 18}, - [4097] = {.lex_state = 18}, + [4096] = {.lex_state = 26}, + [4097] = {.lex_state = 75}, [4098] = {.lex_state = 18}, - [4099] = {.lex_state = 18}, + [4099] = {.lex_state = 75}, [4100] = {.lex_state = 75}, [4101] = {.lex_state = 18}, [4102] = {.lex_state = 18}, [4103] = {.lex_state = 75}, - [4104] = {.lex_state = 18}, - [4105] = {.lex_state = 18}, - [4106] = {.lex_state = 75, .external_lex_state = 5}, + [4104] = {.lex_state = 75, .external_lex_state = 5}, + [4105] = {.lex_state = 75}, + [4106] = {.lex_state = 75}, [4107] = {.lex_state = 18}, - [4108] = {.lex_state = 18}, + [4108] = {.lex_state = 75}, [4109] = {.lex_state = 18}, [4110] = {.lex_state = 18}, [4111] = {.lex_state = 75}, - [4112] = {.lex_state = 26}, - [4113] = {.lex_state = 26}, - [4114] = {.lex_state = 26}, - [4115] = {.lex_state = 75}, + [4112] = {.lex_state = 75}, + [4113] = {.lex_state = 18}, + [4114] = {.lex_state = 18}, + [4115] = {.lex_state = 18}, [4116] = {.lex_state = 75}, - [4117] = {.lex_state = 18}, - [4118] = {.lex_state = 75}, - [4119] = {.lex_state = 75}, - [4120] = {.lex_state = 26}, - [4121] = {.lex_state = 26}, - [4122] = {.lex_state = 75}, - [4123] = {.lex_state = 26}, - [4124] = {.lex_state = 26}, + [4117] = {.lex_state = 26}, + [4118] = {.lex_state = 75, .external_lex_state = 5}, + [4119] = {.lex_state = 18}, + [4120] = {.lex_state = 18}, + [4121] = {.lex_state = 18}, + [4122] = {.lex_state = 18}, + [4123] = {.lex_state = 75}, + [4124] = {.lex_state = 75}, [4125] = {.lex_state = 75}, - [4126] = {.lex_state = 75}, - [4127] = {.lex_state = 18}, - [4128] = {.lex_state = 75}, - [4129] = {.lex_state = 75}, - [4130] = {.lex_state = 26}, + [4126] = {.lex_state = 75, .external_lex_state = 5}, + [4127] = {.lex_state = 75}, + [4128] = {.lex_state = 18}, + [4129] = {.lex_state = 75, .external_lex_state = 5}, + [4130] = {.lex_state = 18}, [4131] = {.lex_state = 18}, - [4132] = {.lex_state = 18}, + [4132] = {.lex_state = 75}, [4133] = {.lex_state = 18}, [4134] = {.lex_state = 18}, - [4135] = {.lex_state = 26}, - [4136] = {.lex_state = 75}, + [4135] = {.lex_state = 75}, + [4136] = {.lex_state = 18}, [4137] = {.lex_state = 18}, [4138] = {.lex_state = 75}, - [4139] = {.lex_state = 75}, + [4139] = {.lex_state = 18}, [4140] = {.lex_state = 75}, - [4141] = {.lex_state = 75}, - [4142] = {.lex_state = 75}, - [4143] = {.lex_state = 75}, - [4144] = {.lex_state = 75}, - [4145] = {.lex_state = 75, .external_lex_state = 5}, - [4146] = {.lex_state = 75}, - [4147] = {.lex_state = 26}, - [4148] = {.lex_state = 75}, + [4141] = {.lex_state = 26}, + [4142] = {.lex_state = 26}, + [4143] = {.lex_state = 18}, + [4144] = {.lex_state = 18}, + [4145] = {.lex_state = 18}, + [4146] = {.lex_state = 18}, + [4147] = {.lex_state = 18}, + [4148] = {.lex_state = 18}, [4149] = {.lex_state = 75}, [4150] = {.lex_state = 75}, [4151] = {.lex_state = 75}, @@ -10450,214 +10449,214 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4154] = {.lex_state = 75}, [4155] = {.lex_state = 75}, [4156] = {.lex_state = 75}, - [4157] = {.lex_state = 18}, - [4158] = {.lex_state = 75}, - [4159] = {.lex_state = 18}, + [4157] = {.lex_state = 75}, + [4158] = {.lex_state = 26}, + [4159] = {.lex_state = 75}, [4160] = {.lex_state = 18}, [4161] = {.lex_state = 18}, [4162] = {.lex_state = 18}, - [4163] = {.lex_state = 75, .external_lex_state = 5}, + [4163] = {.lex_state = 18}, [4164] = {.lex_state = 18}, [4165] = {.lex_state = 18}, - [4166] = {.lex_state = 18}, + [4166] = {.lex_state = 75}, [4167] = {.lex_state = 75}, - [4168] = {.lex_state = 75, .external_lex_state = 5}, - [4169] = {.lex_state = 18}, - [4170] = {.lex_state = 18}, + [4168] = {.lex_state = 26}, + [4169] = {.lex_state = 75}, + [4170] = {.lex_state = 26}, [4171] = {.lex_state = 18}, - [4172] = {.lex_state = 18}, + [4172] = {.lex_state = 26}, [4173] = {.lex_state = 18}, - [4174] = {.lex_state = 18}, - [4175] = {.lex_state = 18}, - [4176] = {.lex_state = 75, .external_lex_state = 5}, - [4177] = {.lex_state = 75}, - [4178] = {.lex_state = 75, .external_lex_state = 5}, - [4179] = {.lex_state = 75, .external_lex_state = 5}, + [4174] = {.lex_state = 75}, + [4175] = {.lex_state = 75}, + [4176] = {.lex_state = 75}, + [4177] = {.lex_state = 26}, + [4178] = {.lex_state = 75}, + [4179] = {.lex_state = 75}, [4180] = {.lex_state = 75}, [4181] = {.lex_state = 75}, - [4182] = {.lex_state = 75}, + [4182] = {.lex_state = 26}, [4183] = {.lex_state = 75}, - [4184] = {.lex_state = 26}, - [4185] = {.lex_state = 26}, - [4186] = {.lex_state = 75}, - [4187] = {.lex_state = 75}, - [4188] = {.lex_state = 75}, + [4184] = {.lex_state = 75, .external_lex_state = 5}, + [4185] = {.lex_state = 75, .external_lex_state = 5}, + [4186] = {.lex_state = 26}, + [4187] = {.lex_state = 75, .external_lex_state = 5}, + [4188] = {.lex_state = 18}, [4189] = {.lex_state = 75}, [4190] = {.lex_state = 75}, - [4191] = {.lex_state = 75}, - [4192] = {.lex_state = 75}, - [4193] = {.lex_state = 75, .external_lex_state = 5}, - [4194] = {.lex_state = 18}, - [4195] = {.lex_state = 18}, - [4196] = {.lex_state = 75}, + [4191] = {.lex_state = 18}, + [4192] = {.lex_state = 75, .external_lex_state = 6}, + [4193] = {.lex_state = 75}, + [4194] = {.lex_state = 75}, + [4195] = {.lex_state = 26}, + [4196] = {.lex_state = 75, .external_lex_state = 6}, [4197] = {.lex_state = 75, .external_lex_state = 6}, [4198] = {.lex_state = 75, .external_lex_state = 6}, - [4199] = {.lex_state = 75, .external_lex_state = 5}, - [4200] = {.lex_state = 75, .external_lex_state = 5}, + [4199] = {.lex_state = 75, .external_lex_state = 6}, + [4200] = {.lex_state = 75, .external_lex_state = 6}, [4201] = {.lex_state = 75, .external_lex_state = 6}, - [4202] = {.lex_state = 75, .external_lex_state = 5}, - [4203] = {.lex_state = 75, .external_lex_state = 5}, - [4204] = {.lex_state = 75, .external_lex_state = 5}, - [4205] = {.lex_state = 75, .external_lex_state = 5}, - [4206] = {.lex_state = 75, .external_lex_state = 5}, + [4202] = {.lex_state = 75, .external_lex_state = 6}, + [4203] = {.lex_state = 75, .external_lex_state = 6}, + [4204] = {.lex_state = 75}, + [4205] = {.lex_state = 75, .external_lex_state = 6}, + [4206] = {.lex_state = 75, .external_lex_state = 6}, [4207] = {.lex_state = 75, .external_lex_state = 6}, [4208] = {.lex_state = 75, .external_lex_state = 6}, - [4209] = {.lex_state = 75, .external_lex_state = 6}, + [4209] = {.lex_state = 75}, [4210] = {.lex_state = 75, .external_lex_state = 6}, [4211] = {.lex_state = 75, .external_lex_state = 6}, [4212] = {.lex_state = 75, .external_lex_state = 6}, - [4213] = {.lex_state = 75}, - [4214] = {.lex_state = 75, .external_lex_state = 6}, - [4215] = {.lex_state = 18}, - [4216] = {.lex_state = 75, .external_lex_state = 6}, - [4217] = {.lex_state = 75, .external_lex_state = 6}, + [4213] = {.lex_state = 75, .external_lex_state = 6}, + [4214] = {.lex_state = 75}, + [4215] = {.lex_state = 75, .external_lex_state = 6}, + [4216] = {.lex_state = 75, .external_lex_state = 5}, + [4217] = {.lex_state = 75, .external_lex_state = 5}, [4218] = {.lex_state = 75, .external_lex_state = 6}, [4219] = {.lex_state = 75, .external_lex_state = 6}, - [4220] = {.lex_state = 75, .external_lex_state = 6}, - [4221] = {.lex_state = 75, .external_lex_state = 5}, + [4220] = {.lex_state = 75, .external_lex_state = 5}, + [4221] = {.lex_state = 75, .external_lex_state = 6}, [4222] = {.lex_state = 75, .external_lex_state = 6}, [4223] = {.lex_state = 75, .external_lex_state = 6}, - [4224] = {.lex_state = 75}, + [4224] = {.lex_state = 75, .external_lex_state = 5}, [4225] = {.lex_state = 75, .external_lex_state = 6}, - [4226] = {.lex_state = 75, .external_lex_state = 6}, + [4226] = {.lex_state = 75, .external_lex_state = 5}, [4227] = {.lex_state = 75, .external_lex_state = 6}, - [4228] = {.lex_state = 75}, - [4229] = {.lex_state = 75}, + [4228] = {.lex_state = 75, .external_lex_state = 6}, + [4229] = {.lex_state = 75, .external_lex_state = 6}, [4230] = {.lex_state = 75, .external_lex_state = 6}, - [4231] = {.lex_state = 75, .external_lex_state = 6}, + [4231] = {.lex_state = 75, .external_lex_state = 5}, [4232] = {.lex_state = 75, .external_lex_state = 6}, [4233] = {.lex_state = 75, .external_lex_state = 6}, - [4234] = {.lex_state = 75, .external_lex_state = 6}, + [4234] = {.lex_state = 75}, [4235] = {.lex_state = 75, .external_lex_state = 6}, [4236] = {.lex_state = 75, .external_lex_state = 6}, - [4237] = {.lex_state = 75, .external_lex_state = 6}, - [4238] = {.lex_state = 75, .external_lex_state = 6}, - [4239] = {.lex_state = 75, .external_lex_state = 6}, - [4240] = {.lex_state = 75}, - [4241] = {.lex_state = 75, .external_lex_state = 6}, - [4242] = {.lex_state = 75, .external_lex_state = 6}, + [4237] = {.lex_state = 75}, + [4238] = {.lex_state = 75}, + [4239] = {.lex_state = 75}, + [4240] = {.lex_state = 75, .external_lex_state = 6}, + [4241] = {.lex_state = 75, .external_lex_state = 5}, + [4242] = {.lex_state = 75, .external_lex_state = 5}, [4243] = {.lex_state = 75, .external_lex_state = 6}, [4244] = {.lex_state = 75, .external_lex_state = 6}, [4245] = {.lex_state = 75, .external_lex_state = 6}, - [4246] = {.lex_state = 75, .external_lex_state = 6}, - [4247] = {.lex_state = 75}, - [4248] = {.lex_state = 75, .external_lex_state = 5}, + [4246] = {.lex_state = 75, .external_lex_state = 5}, + [4247] = {.lex_state = 75, .external_lex_state = 6}, + [4248] = {.lex_state = 75, .external_lex_state = 6}, [4249] = {.lex_state = 75, .external_lex_state = 6}, [4250] = {.lex_state = 75, .external_lex_state = 6}, - [4251] = {.lex_state = 75, .external_lex_state = 6}, + [4251] = {.lex_state = 75, .external_lex_state = 5}, [4252] = {.lex_state = 75, .external_lex_state = 6}, - [4253] = {.lex_state = 75, .external_lex_state = 6}, + [4253] = {.lex_state = 18}, [4254] = {.lex_state = 75, .external_lex_state = 6}, [4255] = {.lex_state = 75, .external_lex_state = 6}, [4256] = {.lex_state = 75}, - [4257] = {.lex_state = 75, .external_lex_state = 6}, + [4257] = {.lex_state = 75, .external_lex_state = 5}, [4258] = {.lex_state = 75, .external_lex_state = 6}, - [4259] = {.lex_state = 75, .external_lex_state = 5}, - [4260] = {.lex_state = 75, .external_lex_state = 5}, - [4261] = {.lex_state = 75}, + [4259] = {.lex_state = 75, .external_lex_state = 6}, + [4260] = {.lex_state = 75, .external_lex_state = 6}, + [4261] = {.lex_state = 75, .external_lex_state = 5}, [4262] = {.lex_state = 75}, - [4263] = {.lex_state = 75}, + [4263] = {.lex_state = 0, .external_lex_state = 5}, [4264] = {.lex_state = 75}, [4265] = {.lex_state = 75}, [4266] = {.lex_state = 75}, - [4267] = {.lex_state = 75, .external_lex_state = 5}, + [4267] = {.lex_state = 75}, [4268] = {.lex_state = 75}, [4269] = {.lex_state = 75}, [4270] = {.lex_state = 75}, - [4271] = {.lex_state = 75}, - [4272] = {.lex_state = 18}, + [4271] = {.lex_state = 18}, + [4272] = {.lex_state = 75, .external_lex_state = 6}, [4273] = {.lex_state = 75}, - [4274] = {.lex_state = 75}, - [4275] = {.lex_state = 75}, + [4274] = {.lex_state = 75, .external_lex_state = 5}, + [4275] = {.lex_state = 75, .external_lex_state = 5}, [4276] = {.lex_state = 75, .external_lex_state = 5}, [4277] = {.lex_state = 75}, [4278] = {.lex_state = 75}, [4279] = {.lex_state = 75}, - [4280] = {.lex_state = 75}, - [4281] = {.lex_state = 75}, + [4280] = {.lex_state = 75, .external_lex_state = 5}, + [4281] = {.lex_state = 18}, [4282] = {.lex_state = 75}, - [4283] = {.lex_state = 18}, + [4283] = {.lex_state = 75, .external_lex_state = 5}, [4284] = {.lex_state = 75, .external_lex_state = 5}, - [4285] = {.lex_state = 0, .external_lex_state = 5}, + [4285] = {.lex_state = 75, .external_lex_state = 5}, [4286] = {.lex_state = 75, .external_lex_state = 5}, - [4287] = {.lex_state = 75}, + [4287] = {.lex_state = 75, .external_lex_state = 5}, [4288] = {.lex_state = 75}, [4289] = {.lex_state = 75, .external_lex_state = 5}, - [4290] = {.lex_state = 75}, + [4290] = {.lex_state = 75, .external_lex_state = 5}, [4291] = {.lex_state = 75, .external_lex_state = 5}, - [4292] = {.lex_state = 75, .external_lex_state = 5}, + [4292] = {.lex_state = 75}, [4293] = {.lex_state = 75}, - [4294] = {.lex_state = 75}, + [4294] = {.lex_state = 75, .external_lex_state = 5}, [4295] = {.lex_state = 75}, - [4296] = {.lex_state = 75, .external_lex_state = 5}, - [4297] = {.lex_state = 75, .external_lex_state = 5}, + [4296] = {.lex_state = 0, .external_lex_state = 5}, + [4297] = {.lex_state = 75}, [4298] = {.lex_state = 75}, [4299] = {.lex_state = 75}, - [4300] = {.lex_state = 75}, - [4301] = {.lex_state = 75}, + [4300] = {.lex_state = 75, .external_lex_state = 5}, + [4301] = {.lex_state = 18}, [4302] = {.lex_state = 75}, [4303] = {.lex_state = 75}, - [4304] = {.lex_state = 18}, - [4305] = {.lex_state = 10}, + [4304] = {.lex_state = 75, .external_lex_state = 5}, + [4305] = {.lex_state = 75}, [4306] = {.lex_state = 75}, - [4307] = {.lex_state = 0, .external_lex_state = 5}, + [4307] = {.lex_state = 75}, [4308] = {.lex_state = 75}, - [4309] = {.lex_state = 10}, - [4310] = {.lex_state = 75, .external_lex_state = 5}, + [4309] = {.lex_state = 75}, + [4310] = {.lex_state = 75}, [4311] = {.lex_state = 75}, - [4312] = {.lex_state = 75}, - [4313] = {.lex_state = 75, .external_lex_state = 5}, - [4314] = {.lex_state = 0, .external_lex_state = 5}, + [4312] = {.lex_state = 75, .external_lex_state = 5}, + [4313] = {.lex_state = 75}, + [4314] = {.lex_state = 75, .external_lex_state = 5}, [4315] = {.lex_state = 75}, - [4316] = {.lex_state = 75}, - [4317] = {.lex_state = 75, .external_lex_state = 6}, + [4316] = {.lex_state = 75, .external_lex_state = 5}, + [4317] = {.lex_state = 0, .external_lex_state = 5}, [4318] = {.lex_state = 75}, [4319] = {.lex_state = 75}, - [4320] = {.lex_state = 0, .external_lex_state = 5}, + [4320] = {.lex_state = 75, .external_lex_state = 5}, [4321] = {.lex_state = 75}, - [4322] = {.lex_state = 75, .external_lex_state = 5}, - [4323] = {.lex_state = 75}, - [4324] = {.lex_state = 75}, + [4322] = {.lex_state = 75}, + [4323] = {.lex_state = 75, .external_lex_state = 5}, + [4324] = {.lex_state = 0, .external_lex_state = 5}, [4325] = {.lex_state = 75}, - [4326] = {.lex_state = 75, .external_lex_state = 5}, + [4326] = {.lex_state = 75}, [4327] = {.lex_state = 75}, [4328] = {.lex_state = 75}, - [4329] = {.lex_state = 75}, - [4330] = {.lex_state = 75, .external_lex_state = 5}, + [4329] = {.lex_state = 75, .external_lex_state = 5}, + [4330] = {.lex_state = 75}, [4331] = {.lex_state = 75}, - [4332] = {.lex_state = 75, .external_lex_state = 5}, + [4332] = {.lex_state = 75}, [4333] = {.lex_state = 75}, [4334] = {.lex_state = 75}, - [4335] = {.lex_state = 75, .external_lex_state = 5}, - [4336] = {.lex_state = 75, .external_lex_state = 5}, - [4337] = {.lex_state = 75, .external_lex_state = 5}, - [4338] = {.lex_state = 75, .external_lex_state = 5}, + [4335] = {.lex_state = 75}, + [4336] = {.lex_state = 75}, + [4337] = {.lex_state = 75}, + [4338] = {.lex_state = 75}, [4339] = {.lex_state = 75, .external_lex_state = 5}, - [4340] = {.lex_state = 75, .external_lex_state = 5}, - [4341] = {.lex_state = 75, .external_lex_state = 5}, + [4340] = {.lex_state = 75}, + [4341] = {.lex_state = 75}, [4342] = {.lex_state = 75}, [4343] = {.lex_state = 75}, [4344] = {.lex_state = 75}, [4345] = {.lex_state = 75}, - [4346] = {.lex_state = 18}, - [4347] = {.lex_state = 75}, - [4348] = {.lex_state = 75, .external_lex_state = 5}, - [4349] = {.lex_state = 75, .external_lex_state = 5}, - [4350] = {.lex_state = 75, .external_lex_state = 5}, + [4346] = {.lex_state = 75}, + [4347] = {.lex_state = 10}, + [4348] = {.lex_state = 75}, + [4349] = {.lex_state = 0, .external_lex_state = 5}, + [4350] = {.lex_state = 75}, [4351] = {.lex_state = 75}, - [4352] = {.lex_state = 75}, - [4353] = {.lex_state = 75, .external_lex_state = 5}, + [4352] = {.lex_state = 18}, + [4353] = {.lex_state = 75}, [4354] = {.lex_state = 75, .external_lex_state = 5}, [4355] = {.lex_state = 75}, [4356] = {.lex_state = 75}, [4357] = {.lex_state = 75}, - [4358] = {.lex_state = 75}, + [4358] = {.lex_state = 75, .external_lex_state = 5}, [4359] = {.lex_state = 75}, [4360] = {.lex_state = 75}, [4361] = {.lex_state = 75}, - [4362] = {.lex_state = 75}, - [4363] = {.lex_state = 75}, - [4364] = {.lex_state = 75}, + [4362] = {.lex_state = 75, .external_lex_state = 5}, + [4363] = {.lex_state = 75, .external_lex_state = 5}, + [4364] = {.lex_state = 75, .external_lex_state = 5}, [4365] = {.lex_state = 75}, [4366] = {.lex_state = 75}, [4367] = {.lex_state = 75}, @@ -10666,1581 +10665,1581 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4370] = {.lex_state = 75}, [4371] = {.lex_state = 75}, [4372] = {.lex_state = 75}, - [4373] = {.lex_state = 75}, + [4373] = {.lex_state = 75, .external_lex_state = 5}, [4374] = {.lex_state = 75}, - [4375] = {.lex_state = 75}, + [4375] = {.lex_state = 0, .external_lex_state = 5}, [4376] = {.lex_state = 75}, - [4377] = {.lex_state = 75}, - [4378] = {.lex_state = 75}, - [4379] = {.lex_state = 75, .external_lex_state = 5}, + [4377] = {.lex_state = 75, .external_lex_state = 5}, + [4378] = {.lex_state = 10}, + [4379] = {.lex_state = 75}, [4380] = {.lex_state = 75}, [4381] = {.lex_state = 75}, [4382] = {.lex_state = 75}, [4383] = {.lex_state = 75}, - [4384] = {.lex_state = 75, .external_lex_state = 5}, - [4385] = {.lex_state = 75, .external_lex_state = 5}, - [4386] = {.lex_state = 75, .external_lex_state = 5}, - [4387] = {.lex_state = 75, .external_lex_state = 5}, - [4388] = {.lex_state = 75}, + [4384] = {.lex_state = 75}, + [4385] = {.lex_state = 75}, + [4386] = {.lex_state = 75}, + [4387] = {.lex_state = 75}, + [4388] = {.lex_state = 0, .external_lex_state = 5}, [4389] = {.lex_state = 75}, [4390] = {.lex_state = 75}, - [4391] = {.lex_state = 0, .external_lex_state = 5}, + [4391] = {.lex_state = 75}, [4392] = {.lex_state = 75, .external_lex_state = 5}, [4393] = {.lex_state = 75}, [4394] = {.lex_state = 75}, - [4395] = {.lex_state = 75}, + [4395] = {.lex_state = 75, .external_lex_state = 5}, [4396] = {.lex_state = 75}, - [4397] = {.lex_state = 75}, - [4398] = {.lex_state = 75}, + [4397] = {.lex_state = 75, .external_lex_state = 5}, + [4398] = {.lex_state = 75, .external_lex_state = 5}, [4399] = {.lex_state = 75}, [4400] = {.lex_state = 75}, [4401] = {.lex_state = 75}, [4402] = {.lex_state = 75}, - [4403] = {.lex_state = 75, .external_lex_state = 5}, + [4403] = {.lex_state = 75}, [4404] = {.lex_state = 75}, [4405] = {.lex_state = 75}, - [4406] = {.lex_state = 0, .external_lex_state = 5}, - [4407] = {.lex_state = 75}, + [4406] = {.lex_state = 75, .external_lex_state = 5}, + [4407] = {.lex_state = 0, .external_lex_state = 5}, [4408] = {.lex_state = 75}, [4409] = {.lex_state = 75}, - [4410] = {.lex_state = 75, .external_lex_state = 5}, - [4411] = {.lex_state = 0, .external_lex_state = 5}, + [4410] = {.lex_state = 75}, + [4411] = {.lex_state = 75}, [4412] = {.lex_state = 75}, [4413] = {.lex_state = 75}, - [4414] = {.lex_state = 0, .external_lex_state = 5}, + [4414] = {.lex_state = 75}, [4415] = {.lex_state = 75}, - [4416] = {.lex_state = 14}, - [4417] = {.lex_state = 14}, + [4416] = {.lex_state = 0, .external_lex_state = 5}, + [4417] = {.lex_state = 75}, [4418] = {.lex_state = 75}, - [4419] = {.lex_state = 18}, + [4419] = {.lex_state = 75, .external_lex_state = 5}, [4420] = {.lex_state = 75}, - [4421] = {.lex_state = 0, .external_lex_state = 5}, - [4422] = {.lex_state = 0, .external_lex_state = 5}, + [4421] = {.lex_state = 75}, + [4422] = {.lex_state = 18}, [4423] = {.lex_state = 75}, - [4424] = {.lex_state = 75, .external_lex_state = 5}, - [4425] = {.lex_state = 18}, + [4424] = {.lex_state = 75}, + [4425] = {.lex_state = 75}, [4426] = {.lex_state = 75}, - [4427] = {.lex_state = 0, .external_lex_state = 5}, - [4428] = {.lex_state = 75}, - [4429] = {.lex_state = 75}, - [4430] = {.lex_state = 16, .external_lex_state = 7}, - [4431] = {.lex_state = 16, .external_lex_state = 7}, - [4432] = {.lex_state = 75}, + [4427] = {.lex_state = 75}, + [4428] = {.lex_state = 16, .external_lex_state = 7}, + [4429] = {.lex_state = 14}, + [4430] = {.lex_state = 75}, + [4431] = {.lex_state = 75}, + [4432] = {.lex_state = 18}, [4433] = {.lex_state = 75}, - [4434] = {.lex_state = 18}, - [4435] = {.lex_state = 18}, + [4434] = {.lex_state = 0, .external_lex_state = 5}, + [4435] = {.lex_state = 75}, [4436] = {.lex_state = 14}, - [4437] = {.lex_state = 14}, + [4437] = {.lex_state = 75}, [4438] = {.lex_state = 75}, [4439] = {.lex_state = 75}, - [4440] = {.lex_state = 18}, - [4441] = {.lex_state = 16, .external_lex_state = 7}, - [4442] = {.lex_state = 75}, + [4440] = {.lex_state = 16, .external_lex_state = 7}, + [4441] = {.lex_state = 75}, + [4442] = {.lex_state = 75, .external_lex_state = 5}, [4443] = {.lex_state = 75}, [4444] = {.lex_state = 75}, [4445] = {.lex_state = 75}, [4446] = {.lex_state = 75}, - [4447] = {.lex_state = 75}, - [4448] = {.lex_state = 14}, - [4449] = {.lex_state = 10}, + [4447] = {.lex_state = 75, .external_lex_state = 5}, + [4448] = {.lex_state = 75}, + [4449] = {.lex_state = 14}, [4450] = {.lex_state = 75}, - [4451] = {.lex_state = 18}, - [4452] = {.lex_state = 75, .external_lex_state = 5}, - [4453] = {.lex_state = 0, .external_lex_state = 5}, + [4451] = {.lex_state = 75}, + [4452] = {.lex_state = 0, .external_lex_state = 5}, + [4453] = {.lex_state = 75}, [4454] = {.lex_state = 0, .external_lex_state = 5}, [4455] = {.lex_state = 0, .external_lex_state = 5}, - [4456] = {.lex_state = 0, .external_lex_state = 5}, - [4457] = {.lex_state = 14}, + [4456] = {.lex_state = 75}, + [4457] = {.lex_state = 75}, [4458] = {.lex_state = 14}, [4459] = {.lex_state = 75, .external_lex_state = 5}, - [4460] = {.lex_state = 14}, - [4461] = {.lex_state = 75}, - [4462] = {.lex_state = 0, .external_lex_state = 5}, - [4463] = {.lex_state = 14}, - [4464] = {.lex_state = 75}, - [4465] = {.lex_state = 75}, + [4460] = {.lex_state = 0, .external_lex_state = 5}, + [4461] = {.lex_state = 14}, + [4462] = {.lex_state = 14}, + [4463] = {.lex_state = 75}, + [4464] = {.lex_state = 0}, + [4465] = {.lex_state = 0, .external_lex_state = 5}, [4466] = {.lex_state = 75}, - [4467] = {.lex_state = 75}, - [4468] = {.lex_state = 75}, + [4467] = {.lex_state = 75, .external_lex_state = 5}, + [4468] = {.lex_state = 0, .external_lex_state = 5}, [4469] = {.lex_state = 75}, - [4470] = {.lex_state = 75}, - [4471] = {.lex_state = 75}, - [4472] = {.lex_state = 75}, + [4470] = {.lex_state = 18}, + [4471] = {.lex_state = 14}, + [4472] = {.lex_state = 0, .external_lex_state = 5}, [4473] = {.lex_state = 14}, [4474] = {.lex_state = 18}, - [4475] = {.lex_state = 16, .external_lex_state = 7}, - [4476] = {.lex_state = 75}, + [4475] = {.lex_state = 0, .external_lex_state = 5}, + [4476] = {.lex_state = 0, .external_lex_state = 5}, [4477] = {.lex_state = 75}, [4478] = {.lex_state = 75}, - [4479] = {.lex_state = 75}, + [4479] = {.lex_state = 14}, [4480] = {.lex_state = 75}, - [4481] = {.lex_state = 75}, - [4482] = {.lex_state = 75}, + [4481] = {.lex_state = 0, .external_lex_state = 5}, + [4482] = {.lex_state = 14}, [4483] = {.lex_state = 75}, [4484] = {.lex_state = 75}, - [4485] = {.lex_state = 75}, - [4486] = {.lex_state = 14}, - [4487] = {.lex_state = 75, .external_lex_state = 5}, - [4488] = {.lex_state = 18}, - [4489] = {.lex_state = 75}, - [4490] = {.lex_state = 75, .external_lex_state = 5}, - [4491] = {.lex_state = 14}, - [4492] = {.lex_state = 0, .external_lex_state = 5}, + [4485] = {.lex_state = 75, .external_lex_state = 5}, + [4486] = {.lex_state = 75, .external_lex_state = 5}, + [4487] = {.lex_state = 75}, + [4488] = {.lex_state = 75}, + [4489] = {.lex_state = 14}, + [4490] = {.lex_state = 14}, + [4491] = {.lex_state = 75, .external_lex_state = 5}, + [4492] = {.lex_state = 75, .external_lex_state = 5}, [4493] = {.lex_state = 75}, - [4494] = {.lex_state = 75, .external_lex_state = 5}, - [4495] = {.lex_state = 14}, - [4496] = {.lex_state = 14}, - [4497] = {.lex_state = 75}, - [4498] = {.lex_state = 75}, + [4494] = {.lex_state = 75}, + [4495] = {.lex_state = 75}, + [4496] = {.lex_state = 75}, + [4497] = {.lex_state = 75, .external_lex_state = 5}, + [4498] = {.lex_state = 0, .external_lex_state = 5}, [4499] = {.lex_state = 75}, - [4500] = {.lex_state = 16, .external_lex_state = 7}, - [4501] = {.lex_state = 0, .external_lex_state = 5}, - [4502] = {.lex_state = 75}, + [4500] = {.lex_state = 0, .external_lex_state = 5}, + [4501] = {.lex_state = 75}, + [4502] = {.lex_state = 14}, [4503] = {.lex_state = 75}, [4504] = {.lex_state = 75}, [4505] = {.lex_state = 75}, - [4506] = {.lex_state = 0, .external_lex_state = 5}, - [4507] = {.lex_state = 75}, - [4508] = {.lex_state = 0, .external_lex_state = 5}, - [4509] = {.lex_state = 75}, - [4510] = {.lex_state = 75}, - [4511] = {.lex_state = 75}, + [4506] = {.lex_state = 75, .external_lex_state = 5}, + [4507] = {.lex_state = 18}, + [4508] = {.lex_state = 75}, + [4509] = {.lex_state = 16, .external_lex_state = 7}, + [4510] = {.lex_state = 16, .external_lex_state = 7}, + [4511] = {.lex_state = 0, .external_lex_state = 5}, [4512] = {.lex_state = 75}, - [4513] = {.lex_state = 14}, - [4514] = {.lex_state = 75}, - [4515] = {.lex_state = 14}, + [4513] = {.lex_state = 75}, + [4514] = {.lex_state = 75, .external_lex_state = 5}, + [4515] = {.lex_state = 0, .external_lex_state = 5}, [4516] = {.lex_state = 75}, - [4517] = {.lex_state = 75}, - [4518] = {.lex_state = 0, .external_lex_state = 5}, - [4519] = {.lex_state = 14}, - [4520] = {.lex_state = 75}, - [4521] = {.lex_state = 75, .external_lex_state = 5}, - [4522] = {.lex_state = 75, .external_lex_state = 5}, - [4523] = {.lex_state = 0, .external_lex_state = 5}, - [4524] = {.lex_state = 75, .external_lex_state = 5}, - [4525] = {.lex_state = 0, .external_lex_state = 5}, - [4526] = {.lex_state = 75, .external_lex_state = 5}, - [4527] = {.lex_state = 75}, - [4528] = {.lex_state = 75, .external_lex_state = 5}, - [4529] = {.lex_state = 75, .external_lex_state = 5}, - [4530] = {.lex_state = 0, .external_lex_state = 5}, - [4531] = {.lex_state = 0, .external_lex_state = 5}, - [4532] = {.lex_state = 14}, - [4533] = {.lex_state = 75}, - [4534] = {.lex_state = 0, .external_lex_state = 5}, - [4535] = {.lex_state = 18}, + [4517] = {.lex_state = 18}, + [4518] = {.lex_state = 75}, + [4519] = {.lex_state = 75}, + [4520] = {.lex_state = 18}, + [4521] = {.lex_state = 0, .external_lex_state = 5}, + [4522] = {.lex_state = 75}, + [4523] = {.lex_state = 75}, + [4524] = {.lex_state = 0, .external_lex_state = 5}, + [4525] = {.lex_state = 75}, + [4526] = {.lex_state = 14}, + [4527] = {.lex_state = 0, .external_lex_state = 5}, + [4528] = {.lex_state = 14}, + [4529] = {.lex_state = 14}, + [4530] = {.lex_state = 75}, + [4531] = {.lex_state = 75}, + [4532] = {.lex_state = 0, .external_lex_state = 5}, + [4533] = {.lex_state = 0, .external_lex_state = 5}, + [4534] = {.lex_state = 75}, + [4535] = {.lex_state = 14}, [4536] = {.lex_state = 75}, - [4537] = {.lex_state = 0, .external_lex_state = 5}, - [4538] = {.lex_state = 75}, - [4539] = {.lex_state = 0, .external_lex_state = 5}, + [4537] = {.lex_state = 75}, + [4538] = {.lex_state = 14}, + [4539] = {.lex_state = 16, .external_lex_state = 7}, [4540] = {.lex_state = 0, .external_lex_state = 5}, [4541] = {.lex_state = 75}, - [4542] = {.lex_state = 75}, - [4543] = {.lex_state = 75}, - [4544] = {.lex_state = 75}, + [4542] = {.lex_state = 0}, + [4543] = {.lex_state = 10}, + [4544] = {.lex_state = 14}, [4545] = {.lex_state = 75}, - [4546] = {.lex_state = 16, .external_lex_state = 7}, - [4547] = {.lex_state = 16, .external_lex_state = 7}, - [4548] = {.lex_state = 0, .external_lex_state = 5}, + [4546] = {.lex_state = 75, .external_lex_state = 5}, + [4547] = {.lex_state = 75}, + [4548] = {.lex_state = 75, .external_lex_state = 5}, [4549] = {.lex_state = 75}, - [4550] = {.lex_state = 75}, - [4551] = {.lex_state = 14}, - [4552] = {.lex_state = 18}, - [4553] = {.lex_state = 75}, - [4554] = {.lex_state = 0, .external_lex_state = 5}, - [4555] = {.lex_state = 75}, - [4556] = {.lex_state = 14}, - [4557] = {.lex_state = 75, .external_lex_state = 5}, + [4550] = {.lex_state = 75, .external_lex_state = 5}, + [4551] = {.lex_state = 75}, + [4552] = {.lex_state = 75}, + [4553] = {.lex_state = 0, .external_lex_state = 5}, + [4554] = {.lex_state = 14}, + [4555] = {.lex_state = 16, .external_lex_state = 7}, + [4556] = {.lex_state = 16, .external_lex_state = 7}, + [4557] = {.lex_state = 0, .external_lex_state = 5}, [4558] = {.lex_state = 75}, - [4559] = {.lex_state = 18}, - [4560] = {.lex_state = 75}, - [4561] = {.lex_state = 75}, - [4562] = {.lex_state = 75}, + [4559] = {.lex_state = 75}, + [4560] = {.lex_state = 14}, + [4561] = {.lex_state = 0, .external_lex_state = 5}, + [4562] = {.lex_state = 0, .external_lex_state = 5}, [4563] = {.lex_state = 75}, [4564] = {.lex_state = 75}, - [4565] = {.lex_state = 16, .external_lex_state = 7}, - [4566] = {.lex_state = 75, .external_lex_state = 5}, - [4567] = {.lex_state = 75}, - [4568] = {.lex_state = 75}, - [4569] = {.lex_state = 16, .external_lex_state = 7}, - [4570] = {.lex_state = 75, .external_lex_state = 5}, - [4571] = {.lex_state = 0, .external_lex_state = 5}, - [4572] = {.lex_state = 0}, - [4573] = {.lex_state = 14}, - [4574] = {.lex_state = 75}, - [4575] = {.lex_state = 75}, - [4576] = {.lex_state = 0, .external_lex_state = 5}, + [4565] = {.lex_state = 75}, + [4566] = {.lex_state = 75}, + [4567] = {.lex_state = 0, .external_lex_state = 5}, + [4568] = {.lex_state = 14}, + [4569] = {.lex_state = 18}, + [4570] = {.lex_state = 75}, + [4571] = {.lex_state = 75}, + [4572] = {.lex_state = 0, .external_lex_state = 5}, + [4573] = {.lex_state = 75}, + [4574] = {.lex_state = 10}, + [4575] = {.lex_state = 16, .external_lex_state = 7}, + [4576] = {.lex_state = 75}, [4577] = {.lex_state = 75}, - [4578] = {.lex_state = 14}, + [4578] = {.lex_state = 16, .external_lex_state = 7}, [4579] = {.lex_state = 75, .external_lex_state = 5}, [4580] = {.lex_state = 75}, [4581] = {.lex_state = 0, .external_lex_state = 5}, - [4582] = {.lex_state = 75, .external_lex_state = 5}, - [4583] = {.lex_state = 75}, - [4584] = {.lex_state = 0, .external_lex_state = 5}, - [4585] = {.lex_state = 0, .external_lex_state = 5}, - [4586] = {.lex_state = 0, .external_lex_state = 5}, - [4587] = {.lex_state = 18}, - [4588] = {.lex_state = 75}, - [4589] = {.lex_state = 0, .external_lex_state = 5}, - [4590] = {.lex_state = 0, .external_lex_state = 5}, - [4591] = {.lex_state = 75}, + [4582] = {.lex_state = 75}, + [4583] = {.lex_state = 75, .external_lex_state = 5}, + [4584] = {.lex_state = 18}, + [4585] = {.lex_state = 75}, + [4586] = {.lex_state = 75}, + [4587] = {.lex_state = 75}, + [4588] = {.lex_state = 18}, + [4589] = {.lex_state = 18}, + [4590] = {.lex_state = 75, .external_lex_state = 6}, + [4591] = {.lex_state = 0, .external_lex_state = 5}, [4592] = {.lex_state = 75}, - [4593] = {.lex_state = 75}, + [4593] = {.lex_state = 75, .external_lex_state = 6}, [4594] = {.lex_state = 0, .external_lex_state = 5}, - [4595] = {.lex_state = 18}, - [4596] = {.lex_state = 18}, - [4597] = {.lex_state = 75}, + [4595] = {.lex_state = 75}, + [4596] = {.lex_state = 75, .external_lex_state = 5}, + [4597] = {.lex_state = 0, .external_lex_state = 5}, [4598] = {.lex_state = 75}, [4599] = {.lex_state = 0, .external_lex_state = 5}, [4600] = {.lex_state = 75}, - [4601] = {.lex_state = 75}, + [4601] = {.lex_state = 0, .external_lex_state = 5}, [4602] = {.lex_state = 0, .external_lex_state = 5}, [4603] = {.lex_state = 75}, - [4604] = {.lex_state = 18}, - [4605] = {.lex_state = 0, .external_lex_state = 5}, - [4606] = {.lex_state = 0, .external_lex_state = 5}, - [4607] = {.lex_state = 0, .external_lex_state = 5}, + [4604] = {.lex_state = 75}, + [4605] = {.lex_state = 75}, + [4606] = {.lex_state = 75, .external_lex_state = 6}, + [4607] = {.lex_state = 18}, [4608] = {.lex_state = 0, .external_lex_state = 5}, - [4609] = {.lex_state = 75, .external_lex_state = 5}, + [4609] = {.lex_state = 75}, [4610] = {.lex_state = 75, .external_lex_state = 5}, - [4611] = {.lex_state = 0, .external_lex_state = 5}, - [4612] = {.lex_state = 0, .external_lex_state = 5}, + [4611] = {.lex_state = 75, .external_lex_state = 5}, + [4612] = {.lex_state = 0}, [4613] = {.lex_state = 0, .external_lex_state = 5}, - [4614] = {.lex_state = 0, .external_lex_state = 5}, - [4615] = {.lex_state = 0, .external_lex_state = 5}, - [4616] = {.lex_state = 75, .external_lex_state = 6}, - [4617] = {.lex_state = 0, .external_lex_state = 5}, + [4614] = {.lex_state = 75}, + [4615] = {.lex_state = 75}, + [4616] = {.lex_state = 75}, + [4617] = {.lex_state = 75}, [4618] = {.lex_state = 75}, - [4619] = {.lex_state = 75}, - [4620] = {.lex_state = 75}, + [4619] = {.lex_state = 0}, + [4620] = {.lex_state = 0}, [4621] = {.lex_state = 0, .external_lex_state = 5}, - [4622] = {.lex_state = 75, .external_lex_state = 6}, - [4623] = {.lex_state = 0, .external_lex_state = 5}, - [4624] = {.lex_state = 0, .external_lex_state = 5}, + [4622] = {.lex_state = 75}, + [4623] = {.lex_state = 75}, + [4624] = {.lex_state = 10}, [4625] = {.lex_state = 75}, - [4626] = {.lex_state = 0, .external_lex_state = 5}, - [4627] = {.lex_state = 0}, + [4626] = {.lex_state = 75}, + [4627] = {.lex_state = 75}, [4628] = {.lex_state = 0}, - [4629] = {.lex_state = 75, .external_lex_state = 6}, + [4629] = {.lex_state = 75}, [4630] = {.lex_state = 75}, - [4631] = {.lex_state = 0, .external_lex_state = 5}, + [4631] = {.lex_state = 75, .external_lex_state = 6}, [4632] = {.lex_state = 0, .external_lex_state = 5}, - [4633] = {.lex_state = 0, .external_lex_state = 5}, - [4634] = {.lex_state = 0, .external_lex_state = 5}, - [4635] = {.lex_state = 0, .external_lex_state = 5}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0, .external_lex_state = 5}, - [4638] = {.lex_state = 75, .external_lex_state = 6}, - [4639] = {.lex_state = 75, .external_lex_state = 6}, + [4633] = {.lex_state = 75}, + [4634] = {.lex_state = 18}, + [4635] = {.lex_state = 0}, + [4636] = {.lex_state = 75}, + [4637] = {.lex_state = 75}, + [4638] = {.lex_state = 0}, + [4639] = {.lex_state = 75}, [4640] = {.lex_state = 0, .external_lex_state = 5}, [4641] = {.lex_state = 0, .external_lex_state = 5}, [4642] = {.lex_state = 0, .external_lex_state = 5}, - [4643] = {.lex_state = 0}, - [4644] = {.lex_state = 75}, - [4645] = {.lex_state = 0, .external_lex_state = 5}, - [4646] = {.lex_state = 0, .external_lex_state = 5}, - [4647] = {.lex_state = 75}, - [4648] = {.lex_state = 75}, - [4649] = {.lex_state = 0}, - [4650] = {.lex_state = 75}, - [4651] = {.lex_state = 0}, - [4652] = {.lex_state = 0}, + [4643] = {.lex_state = 0, .external_lex_state = 5}, + [4644] = {.lex_state = 0, .external_lex_state = 5}, + [4645] = {.lex_state = 18}, + [4646] = {.lex_state = 18}, + [4647] = {.lex_state = 0, .external_lex_state = 5}, + [4648] = {.lex_state = 75, .external_lex_state = 6}, + [4649] = {.lex_state = 0, .external_lex_state = 5}, + [4650] = {.lex_state = 0}, + [4651] = {.lex_state = 0, .external_lex_state = 5}, + [4652] = {.lex_state = 0, .external_lex_state = 5}, [4653] = {.lex_state = 75}, - [4654] = {.lex_state = 0}, - [4655] = {.lex_state = 75}, - [4656] = {.lex_state = 0, .external_lex_state = 5}, - [4657] = {.lex_state = 75}, + [4654] = {.lex_state = 0, .external_lex_state = 5}, + [4655] = {.lex_state = 0, .external_lex_state = 5}, + [4656] = {.lex_state = 75}, + [4657] = {.lex_state = 0, .external_lex_state = 5}, [4658] = {.lex_state = 75}, - [4659] = {.lex_state = 10}, - [4660] = {.lex_state = 14}, - [4661] = {.lex_state = 0}, - [4662] = {.lex_state = 0, .external_lex_state = 5}, + [4659] = {.lex_state = 0, .external_lex_state = 5}, + [4660] = {.lex_state = 75}, + [4661] = {.lex_state = 18}, + [4662] = {.lex_state = 10}, [4663] = {.lex_state = 75}, - [4664] = {.lex_state = 0, .external_lex_state = 5}, - [4665] = {.lex_state = 0, .external_lex_state = 5}, - [4666] = {.lex_state = 75}, - [4667] = {.lex_state = 0}, - [4668] = {.lex_state = 0}, - [4669] = {.lex_state = 0, .external_lex_state = 5}, - [4670] = {.lex_state = 0, .external_lex_state = 5}, - [4671] = {.lex_state = 75}, - [4672] = {.lex_state = 75}, - [4673] = {.lex_state = 75}, - [4674] = {.lex_state = 75, .external_lex_state = 6}, + [4664] = {.lex_state = 75}, + [4665] = {.lex_state = 18}, + [4666] = {.lex_state = 18}, + [4667] = {.lex_state = 18}, + [4668] = {.lex_state = 18}, + [4669] = {.lex_state = 75}, + [4670] = {.lex_state = 75}, + [4671] = {.lex_state = 75, .external_lex_state = 6}, + [4672] = {.lex_state = 75, .external_lex_state = 5}, + [4673] = {.lex_state = 0, .external_lex_state = 5}, + [4674] = {.lex_state = 18}, [4675] = {.lex_state = 75}, - [4676] = {.lex_state = 75}, - [4677] = {.lex_state = 75, .external_lex_state = 5}, - [4678] = {.lex_state = 75}, - [4679] = {.lex_state = 75}, - [4680] = {.lex_state = 75}, + [4676] = {.lex_state = 18}, + [4677] = {.lex_state = 18}, + [4678] = {.lex_state = 0, .external_lex_state = 5}, + [4679] = {.lex_state = 75, .external_lex_state = 6}, + [4680] = {.lex_state = 0, .external_lex_state = 5}, [4681] = {.lex_state = 0, .external_lex_state = 5}, - [4682] = {.lex_state = 75}, - [4683] = {.lex_state = 75}, - [4684] = {.lex_state = 75}, + [4682] = {.lex_state = 18}, + [4683] = {.lex_state = 75, .external_lex_state = 5}, + [4684] = {.lex_state = 0, .external_lex_state = 5}, [4685] = {.lex_state = 75}, - [4686] = {.lex_state = 18}, - [4687] = {.lex_state = 75}, - [4688] = {.lex_state = 0, .external_lex_state = 5}, - [4689] = {.lex_state = 75}, - [4690] = {.lex_state = 75, .external_lex_state = 5}, - [4691] = {.lex_state = 0, .external_lex_state = 5}, - [4692] = {.lex_state = 75}, + [4686] = {.lex_state = 75}, + [4687] = {.lex_state = 0, .external_lex_state = 5}, + [4688] = {.lex_state = 75}, + [4689] = {.lex_state = 75, .external_lex_state = 5}, + [4690] = {.lex_state = 18}, + [4691] = {.lex_state = 75, .external_lex_state = 6}, + [4692] = {.lex_state = 0, .external_lex_state = 5}, [4693] = {.lex_state = 0, .external_lex_state = 5}, - [4694] = {.lex_state = 75}, + [4694] = {.lex_state = 0, .external_lex_state = 5}, [4695] = {.lex_state = 75, .external_lex_state = 5}, [4696] = {.lex_state = 0, .external_lex_state = 5}, [4697] = {.lex_state = 75}, - [4698] = {.lex_state = 75}, - [4699] = {.lex_state = 75}, - [4700] = {.lex_state = 0, .external_lex_state = 5}, - [4701] = {.lex_state = 75}, - [4702] = {.lex_state = 0}, + [4698] = {.lex_state = 0, .external_lex_state = 5}, + [4699] = {.lex_state = 0, .external_lex_state = 5}, + [4700] = {.lex_state = 18}, + [4701] = {.lex_state = 0, .external_lex_state = 5}, + [4702] = {.lex_state = 75, .external_lex_state = 5}, [4703] = {.lex_state = 0, .external_lex_state = 5}, [4704] = {.lex_state = 18}, [4705] = {.lex_state = 0, .external_lex_state = 5}, - [4706] = {.lex_state = 0, .external_lex_state = 5}, - [4707] = {.lex_state = 0}, - [4708] = {.lex_state = 75}, + [4706] = {.lex_state = 75, .external_lex_state = 5}, + [4707] = {.lex_state = 0, .external_lex_state = 5}, + [4708] = {.lex_state = 0, .external_lex_state = 5}, [4709] = {.lex_state = 0, .external_lex_state = 5}, [4710] = {.lex_state = 75, .external_lex_state = 5}, - [4711] = {.lex_state = 75}, + [4711] = {.lex_state = 0, .external_lex_state = 5}, [4712] = {.lex_state = 0, .external_lex_state = 5}, - [4713] = {.lex_state = 18}, - [4714] = {.lex_state = 75}, - [4715] = {.lex_state = 75}, - [4716] = {.lex_state = 14}, - [4717] = {.lex_state = 0, .external_lex_state = 5}, + [4713] = {.lex_state = 0, .external_lex_state = 5}, + [4714] = {.lex_state = 0, .external_lex_state = 5}, + [4715] = {.lex_state = 0, .external_lex_state = 5}, + [4716] = {.lex_state = 0, .external_lex_state = 5}, + [4717] = {.lex_state = 75}, [4718] = {.lex_state = 75}, [4719] = {.lex_state = 0, .external_lex_state = 5}, - [4720] = {.lex_state = 75, .external_lex_state = 5}, - [4721] = {.lex_state = 0}, + [4720] = {.lex_state = 0, .external_lex_state = 5}, + [4721] = {.lex_state = 75}, [4722] = {.lex_state = 0, .external_lex_state = 5}, - [4723] = {.lex_state = 18}, - [4724] = {.lex_state = 0, .external_lex_state = 5}, + [4723] = {.lex_state = 0, .external_lex_state = 5}, + [4724] = {.lex_state = 75}, [4725] = {.lex_state = 0, .external_lex_state = 5}, [4726] = {.lex_state = 75}, [4727] = {.lex_state = 75}, - [4728] = {.lex_state = 0, .external_lex_state = 5}, + [4728] = {.lex_state = 75}, [4729] = {.lex_state = 18}, [4730] = {.lex_state = 0, .external_lex_state = 5}, - [4731] = {.lex_state = 75}, - [4732] = {.lex_state = 0, .external_lex_state = 5}, - [4733] = {.lex_state = 18}, - [4734] = {.lex_state = 0, .external_lex_state = 5}, - [4735] = {.lex_state = 75}, + [4731] = {.lex_state = 0, .external_lex_state = 5}, + [4732] = {.lex_state = 75}, + [4733] = {.lex_state = 75, .external_lex_state = 5}, + [4734] = {.lex_state = 75, .external_lex_state = 5}, + [4735] = {.lex_state = 0}, [4736] = {.lex_state = 0, .external_lex_state = 5}, - [4737] = {.lex_state = 0, .external_lex_state = 5}, + [4737] = {.lex_state = 0}, [4738] = {.lex_state = 75}, - [4739] = {.lex_state = 0}, - [4740] = {.lex_state = 0, .external_lex_state = 5}, - [4741] = {.lex_state = 0, .external_lex_state = 5}, - [4742] = {.lex_state = 0, .external_lex_state = 5}, - [4743] = {.lex_state = 75}, - [4744] = {.lex_state = 18}, + [4739] = {.lex_state = 0, .external_lex_state = 5}, + [4740] = {.lex_state = 75}, + [4741] = {.lex_state = 75}, + [4742] = {.lex_state = 75}, + [4743] = {.lex_state = 18}, + [4744] = {.lex_state = 75}, [4745] = {.lex_state = 75}, - [4746] = {.lex_state = 0, .external_lex_state = 5}, - [4747] = {.lex_state = 0, .external_lex_state = 5}, - [4748] = {.lex_state = 0, .external_lex_state = 5}, - [4749] = {.lex_state = 75, .external_lex_state = 5}, - [4750] = {.lex_state = 0, .external_lex_state = 5}, - [4751] = {.lex_state = 0, .external_lex_state = 5}, - [4752] = {.lex_state = 0, .external_lex_state = 5}, + [4746] = {.lex_state = 75}, + [4747] = {.lex_state = 75}, + [4748] = {.lex_state = 75}, + [4749] = {.lex_state = 14}, + [4750] = {.lex_state = 0}, + [4751] = {.lex_state = 0}, + [4752] = {.lex_state = 0}, [4753] = {.lex_state = 75}, [4754] = {.lex_state = 75}, - [4755] = {.lex_state = 0, .external_lex_state = 5}, - [4756] = {.lex_state = 0, .external_lex_state = 5}, - [4757] = {.lex_state = 75, .external_lex_state = 5}, - [4758] = {.lex_state = 75}, + [4755] = {.lex_state = 18}, + [4756] = {.lex_state = 75}, + [4757] = {.lex_state = 0, .external_lex_state = 5}, + [4758] = {.lex_state = 75, .external_lex_state = 6}, [4759] = {.lex_state = 75}, - [4760] = {.lex_state = 0, .external_lex_state = 5}, - [4761] = {.lex_state = 75}, - [4762] = {.lex_state = 75}, + [4760] = {.lex_state = 75}, + [4761] = {.lex_state = 0, .external_lex_state = 5}, + [4762] = {.lex_state = 75, .external_lex_state = 5}, [4763] = {.lex_state = 75}, - [4764] = {.lex_state = 0}, - [4765] = {.lex_state = 75}, - [4766] = {.lex_state = 0}, + [4764] = {.lex_state = 0, .external_lex_state = 5}, + [4765] = {.lex_state = 0, .external_lex_state = 5}, + [4766] = {.lex_state = 75, .external_lex_state = 6}, [4767] = {.lex_state = 75}, [4768] = {.lex_state = 75}, [4769] = {.lex_state = 0, .external_lex_state = 5}, - [4770] = {.lex_state = 75}, + [4770] = {.lex_state = 0, .external_lex_state = 5}, [4771] = {.lex_state = 75}, [4772] = {.lex_state = 0, .external_lex_state = 5}, [4773] = {.lex_state = 75}, - [4774] = {.lex_state = 75}, - [4775] = {.lex_state = 18}, - [4776] = {.lex_state = 75, .external_lex_state = 5}, - [4777] = {.lex_state = 75}, - [4778] = {.lex_state = 75}, - [4779] = {.lex_state = 0, .external_lex_state = 5}, - [4780] = {.lex_state = 75}, + [4774] = {.lex_state = 75, .external_lex_state = 5}, + [4775] = {.lex_state = 75}, + [4776] = {.lex_state = 0}, + [4777] = {.lex_state = 0, .external_lex_state = 5}, + [4778] = {.lex_state = 0, .external_lex_state = 5}, + [4779] = {.lex_state = 75}, + [4780] = {.lex_state = 0, .external_lex_state = 5}, [4781] = {.lex_state = 75}, [4782] = {.lex_state = 0, .external_lex_state = 5}, [4783] = {.lex_state = 75}, - [4784] = {.lex_state = 75, .external_lex_state = 5}, - [4785] = {.lex_state = 0, .external_lex_state = 5}, + [4784] = {.lex_state = 75}, + [4785] = {.lex_state = 75}, [4786] = {.lex_state = 75}, - [4787] = {.lex_state = 0}, - [4788] = {.lex_state = 0}, + [4787] = {.lex_state = 0, .external_lex_state = 5}, + [4788] = {.lex_state = 75}, [4789] = {.lex_state = 0, .external_lex_state = 5}, [4790] = {.lex_state = 75}, [4791] = {.lex_state = 75}, - [4792] = {.lex_state = 75}, + [4792] = {.lex_state = 0, .external_lex_state = 5}, [4793] = {.lex_state = 75, .external_lex_state = 6}, - [4794] = {.lex_state = 0, .external_lex_state = 5}, + [4794] = {.lex_state = 75}, [4795] = {.lex_state = 0, .external_lex_state = 5}, - [4796] = {.lex_state = 75, .external_lex_state = 5}, + [4796] = {.lex_state = 75}, [4797] = {.lex_state = 0}, - [4798] = {.lex_state = 18}, - [4799] = {.lex_state = 75}, - [4800] = {.lex_state = 0, .external_lex_state = 5}, - [4801] = {.lex_state = 75, .external_lex_state = 5}, - [4802] = {.lex_state = 10}, + [4798] = {.lex_state = 0}, + [4799] = {.lex_state = 0, .external_lex_state = 5}, + [4800] = {.lex_state = 0}, + [4801] = {.lex_state = 75}, + [4802] = {.lex_state = 0, .external_lex_state = 5}, [4803] = {.lex_state = 0, .external_lex_state = 5}, - [4804] = {.lex_state = 0, .external_lex_state = 5}, + [4804] = {.lex_state = 0}, [4805] = {.lex_state = 0, .external_lex_state = 5}, - [4806] = {.lex_state = 0, .external_lex_state = 5}, - [4807] = {.lex_state = 75}, + [4806] = {.lex_state = 75}, + [4807] = {.lex_state = 0}, [4808] = {.lex_state = 75}, - [4809] = {.lex_state = 75, .external_lex_state = 5}, - [4810] = {.lex_state = 75}, + [4809] = {.lex_state = 0, .external_lex_state = 5}, + [4810] = {.lex_state = 0, .external_lex_state = 5}, [4811] = {.lex_state = 75}, - [4812] = {.lex_state = 0, .external_lex_state = 5}, - [4813] = {.lex_state = 75}, - [4814] = {.lex_state = 75}, - [4815] = {.lex_state = 75}, + [4812] = {.lex_state = 0}, + [4813] = {.lex_state = 0}, + [4814] = {.lex_state = 0, .external_lex_state = 5}, + [4815] = {.lex_state = 75, .external_lex_state = 5}, [4816] = {.lex_state = 0}, - [4817] = {.lex_state = 75, .external_lex_state = 5}, - [4818] = {.lex_state = 75}, - [4819] = {.lex_state = 75, .external_lex_state = 5}, - [4820] = {.lex_state = 18}, - [4821] = {.lex_state = 75, .external_lex_state = 5}, - [4822] = {.lex_state = 75}, - [4823] = {.lex_state = 75}, - [4824] = {.lex_state = 0, .external_lex_state = 5}, - [4825] = {.lex_state = 0, .external_lex_state = 5}, - [4826] = {.lex_state = 0, .external_lex_state = 5}, - [4827] = {.lex_state = 75, .external_lex_state = 5}, - [4828] = {.lex_state = 0, .external_lex_state = 5}, + [4817] = {.lex_state = 75}, + [4818] = {.lex_state = 75, .external_lex_state = 6}, + [4819] = {.lex_state = 75}, + [4820] = {.lex_state = 0, .external_lex_state = 5}, + [4821] = {.lex_state = 0, .external_lex_state = 5}, + [4822] = {.lex_state = 0, .external_lex_state = 5}, + [4823] = {.lex_state = 0, .external_lex_state = 5}, + [4824] = {.lex_state = 75}, + [4825] = {.lex_state = 75}, + [4826] = {.lex_state = 75}, + [4827] = {.lex_state = 75}, + [4828] = {.lex_state = 75}, [4829] = {.lex_state = 0, .external_lex_state = 5}, - [4830] = {.lex_state = 0, .external_lex_state = 5}, - [4831] = {.lex_state = 75, .external_lex_state = 6}, + [4830] = {.lex_state = 14}, + [4831] = {.lex_state = 75}, [4832] = {.lex_state = 75}, - [4833] = {.lex_state = 18}, - [4834] = {.lex_state = 75, .external_lex_state = 6}, - [4835] = {.lex_state = 0, .external_lex_state = 5}, - [4836] = {.lex_state = 75, .external_lex_state = 5}, - [4837] = {.lex_state = 75}, - [4838] = {.lex_state = 0, .external_lex_state = 5}, - [4839] = {.lex_state = 0, .external_lex_state = 5}, - [4840] = {.lex_state = 75}, - [4841] = {.lex_state = 0}, - [4842] = {.lex_state = 0, .external_lex_state = 5}, - [4843] = {.lex_state = 0}, - [4844] = {.lex_state = 75}, - [4845] = {.lex_state = 0, .external_lex_state = 5}, - [4846] = {.lex_state = 0}, - [4847] = {.lex_state = 75}, + [4833] = {.lex_state = 75}, + [4834] = {.lex_state = 0, .external_lex_state = 5}, + [4835] = {.lex_state = 75}, + [4836] = {.lex_state = 0, .external_lex_state = 5}, + [4837] = {.lex_state = 0, .external_lex_state = 5}, + [4838] = {.lex_state = 75}, + [4839] = {.lex_state = 0}, + [4840] = {.lex_state = 75, .external_lex_state = 5}, + [4841] = {.lex_state = 0, .external_lex_state = 5}, + [4842] = {.lex_state = 75}, + [4843] = {.lex_state = 0, .external_lex_state = 5}, + [4844] = {.lex_state = 0}, + [4845] = {.lex_state = 0}, + [4846] = {.lex_state = 75}, + [4847] = {.lex_state = 75, .external_lex_state = 6}, [4848] = {.lex_state = 0, .external_lex_state = 5}, - [4849] = {.lex_state = 75, .external_lex_state = 6}, + [4849] = {.lex_state = 75, .external_lex_state = 5}, [4850] = {.lex_state = 0, .external_lex_state = 5}, [4851] = {.lex_state = 0, .external_lex_state = 5}, [4852] = {.lex_state = 0, .external_lex_state = 5}, [4853] = {.lex_state = 0, .external_lex_state = 5}, - [4854] = {.lex_state = 0, .external_lex_state = 5}, - [4855] = {.lex_state = 0, .external_lex_state = 5}, - [4856] = {.lex_state = 18}, + [4854] = {.lex_state = 75}, + [4855] = {.lex_state = 75}, + [4856] = {.lex_state = 75}, [4857] = {.lex_state = 75}, - [4858] = {.lex_state = 0, .external_lex_state = 5}, - [4859] = {.lex_state = 75, .external_lex_state = 6}, + [4858] = {.lex_state = 0}, + [4859] = {.lex_state = 0, .external_lex_state = 5}, [4860] = {.lex_state = 0, .external_lex_state = 5}, - [4861] = {.lex_state = 75}, - [4862] = {.lex_state = 0, .external_lex_state = 5}, - [4863] = {.lex_state = 75, .external_lex_state = 5}, - [4864] = {.lex_state = 0}, - [4865] = {.lex_state = 75}, - [4866] = {.lex_state = 75}, - [4867] = {.lex_state = 10}, - [4868] = {.lex_state = 75}, - [4869] = {.lex_state = 75}, - [4870] = {.lex_state = 0, .external_lex_state = 5}, - [4871] = {.lex_state = 75, .external_lex_state = 6}, - [4872] = {.lex_state = 0}, - [4873] = {.lex_state = 75}, - [4874] = {.lex_state = 0, .external_lex_state = 5}, - [4875] = {.lex_state = 75, .external_lex_state = 5}, + [4861] = {.lex_state = 0, .external_lex_state = 5}, + [4862] = {.lex_state = 0}, + [4863] = {.lex_state = 75}, + [4864] = {.lex_state = 75, .external_lex_state = 5}, + [4865] = {.lex_state = 0, .external_lex_state = 5}, + [4866] = {.lex_state = 0, .external_lex_state = 5}, + [4867] = {.lex_state = 75}, + [4868] = {.lex_state = 10}, + [4869] = {.lex_state = 75, .external_lex_state = 6}, + [4870] = {.lex_state = 75, .external_lex_state = 5}, + [4871] = {.lex_state = 75}, + [4872] = {.lex_state = 0, .external_lex_state = 5}, + [4873] = {.lex_state = 75, .external_lex_state = 5}, + [4874] = {.lex_state = 75}, + [4875] = {.lex_state = 75}, [4876] = {.lex_state = 75}, [4877] = {.lex_state = 75}, - [4878] = {.lex_state = 18}, - [4879] = {.lex_state = 75, .external_lex_state = 6}, + [4878] = {.lex_state = 75, .external_lex_state = 6}, + [4879] = {.lex_state = 0, .external_lex_state = 5}, [4880] = {.lex_state = 0, .external_lex_state = 5}, - [4881] = {.lex_state = 0, .external_lex_state = 5}, - [4882] = {.lex_state = 75, .external_lex_state = 6}, - [4883] = {.lex_state = 18}, + [4881] = {.lex_state = 75}, + [4882] = {.lex_state = 75}, + [4883] = {.lex_state = 75}, [4884] = {.lex_state = 0, .external_lex_state = 5}, [4885] = {.lex_state = 0, .external_lex_state = 5}, - [4886] = {.lex_state = 75}, - [4887] = {.lex_state = 0, .external_lex_state = 5}, + [4886] = {.lex_state = 0}, + [4887] = {.lex_state = 75}, [4888] = {.lex_state = 0, .external_lex_state = 5}, - [4889] = {.lex_state = 0, .external_lex_state = 5}, - [4890] = {.lex_state = 75, .external_lex_state = 5}, - [4891] = {.lex_state = 0, .external_lex_state = 5}, - [4892] = {.lex_state = 75}, + [4889] = {.lex_state = 75}, + [4890] = {.lex_state = 0, .external_lex_state = 5}, + [4891] = {.lex_state = 75}, + [4892] = {.lex_state = 0, .external_lex_state = 5}, [4893] = {.lex_state = 0, .external_lex_state = 5}, - [4894] = {.lex_state = 75}, - [4895] = {.lex_state = 75}, - [4896] = {.lex_state = 0, .external_lex_state = 5}, - [4897] = {.lex_state = 0}, - [4898] = {.lex_state = 0, .external_lex_state = 5}, - [4899] = {.lex_state = 18}, - [4900] = {.lex_state = 75}, - [4901] = {.lex_state = 10}, - [4902] = {.lex_state = 75, .external_lex_state = 5}, + [4894] = {.lex_state = 0, .external_lex_state = 5}, + [4895] = {.lex_state = 75, .external_lex_state = 5}, + [4896] = {.lex_state = 75, .external_lex_state = 5}, + [4897] = {.lex_state = 0, .external_lex_state = 5}, + [4898] = {.lex_state = 75}, + [4899] = {.lex_state = 0, .external_lex_state = 5}, + [4900] = {.lex_state = 0, .external_lex_state = 5}, + [4901] = {.lex_state = 75, .external_lex_state = 5}, + [4902] = {.lex_state = 0, .external_lex_state = 5}, [4903] = {.lex_state = 75}, - [4904] = {.lex_state = 75}, - [4905] = {.lex_state = 75}, - [4906] = {.lex_state = 75, .external_lex_state = 6}, - [4907] = {.lex_state = 75}, - [4908] = {.lex_state = 75, .external_lex_state = 5}, - [4909] = {.lex_state = 0, .external_lex_state = 5}, + [4904] = {.lex_state = 0, .external_lex_state = 5}, + [4905] = {.lex_state = 0, .external_lex_state = 5}, + [4906] = {.lex_state = 0, .external_lex_state = 5}, + [4907] = {.lex_state = 75, .external_lex_state = 5}, + [4908] = {.lex_state = 0, .external_lex_state = 5}, + [4909] = {.lex_state = 75}, [4910] = {.lex_state = 0, .external_lex_state = 5}, [4911] = {.lex_state = 0, .external_lex_state = 5}, - [4912] = {.lex_state = 75}, - [4913] = {.lex_state = 75}, - [4914] = {.lex_state = 75}, - [4915] = {.lex_state = 75}, - [4916] = {.lex_state = 75}, - [4917] = {.lex_state = 75}, + [4912] = {.lex_state = 0, .external_lex_state = 5}, + [4913] = {.lex_state = 0, .external_lex_state = 5}, + [4914] = {.lex_state = 0}, + [4915] = {.lex_state = 0, .external_lex_state = 5}, + [4916] = {.lex_state = 0}, + [4917] = {.lex_state = 0, .external_lex_state = 5}, [4918] = {.lex_state = 75}, [4919] = {.lex_state = 15}, - [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 75, .external_lex_state = 6}, - [4922] = {.lex_state = 0, .external_lex_state = 5}, + [4920] = {.lex_state = 75}, + [4921] = {.lex_state = 19}, + [4922] = {.lex_state = 75}, [4923] = {.lex_state = 75}, - [4924] = {.lex_state = 75}, - [4925] = {.lex_state = 15}, - [4926] = {.lex_state = 19}, + [4924] = {.lex_state = 19}, + [4925] = {.lex_state = 0}, + [4926] = {.lex_state = 75}, [4927] = {.lex_state = 75}, [4928] = {.lex_state = 75}, [4929] = {.lex_state = 75}, [4930] = {.lex_state = 75}, - [4931] = {.lex_state = 15}, - [4932] = {.lex_state = 19}, + [4931] = {.lex_state = 75}, + [4932] = {.lex_state = 0}, [4933] = {.lex_state = 75}, - [4934] = {.lex_state = 19}, - [4935] = {.lex_state = 15}, - [4936] = {.lex_state = 75}, + [4934] = {.lex_state = 75}, + [4935] = {.lex_state = 19}, + [4936] = {.lex_state = 15}, [4937] = {.lex_state = 75}, - [4938] = {.lex_state = 75}, - [4939] = {.lex_state = 0}, + [4938] = {.lex_state = 19}, + [4939] = {.lex_state = 75}, [4940] = {.lex_state = 75}, [4941] = {.lex_state = 75}, - [4942] = {.lex_state = 75}, - [4943] = {.lex_state = 15}, + [4942] = {.lex_state = 0}, + [4943] = {.lex_state = 75}, [4944] = {.lex_state = 75}, [4945] = {.lex_state = 75}, - [4946] = {.lex_state = 75, .external_lex_state = 6}, - [4947] = {.lex_state = 0}, + [4946] = {.lex_state = 19}, + [4947] = {.lex_state = 15}, [4948] = {.lex_state = 75}, [4949] = {.lex_state = 75}, [4950] = {.lex_state = 75}, - [4951] = {.lex_state = 75}, - [4952] = {.lex_state = 75}, + [4951] = {.lex_state = 19}, + [4952] = {.lex_state = 15}, [4953] = {.lex_state = 75}, [4954] = {.lex_state = 75}, [4955] = {.lex_state = 75}, - [4956] = {.lex_state = 75}, - [4957] = {.lex_state = 0, .external_lex_state = 5}, - [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 75, .external_lex_state = 6}, - [4960] = {.lex_state = 75}, - [4961] = {.lex_state = 75}, + [4956] = {.lex_state = 0}, + [4957] = {.lex_state = 75}, + [4958] = {.lex_state = 15}, + [4959] = {.lex_state = 0}, + [4960] = {.lex_state = 19}, + [4961] = {.lex_state = 0}, [4962] = {.lex_state = 75}, - [4963] = {.lex_state = 75}, - [4964] = {.lex_state = 75}, + [4963] = {.lex_state = 19}, + [4964] = {.lex_state = 15}, [4965] = {.lex_state = 75}, - [4966] = {.lex_state = 0, .external_lex_state = 5}, - [4967] = {.lex_state = 75}, + [4966] = {.lex_state = 19}, + [4967] = {.lex_state = 15}, [4968] = {.lex_state = 75}, - [4969] = {.lex_state = 75, .external_lex_state = 6}, + [4969] = {.lex_state = 75}, [4970] = {.lex_state = 75}, - [4971] = {.lex_state = 0}, - [4972] = {.lex_state = 14}, + [4971] = {.lex_state = 75}, + [4972] = {.lex_state = 75}, [4973] = {.lex_state = 75}, [4974] = {.lex_state = 75}, [4975] = {.lex_state = 75}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 0}, - [4978] = {.lex_state = 0}, - [4979] = {.lex_state = 19}, + [4976] = {.lex_state = 75}, + [4977] = {.lex_state = 0, .external_lex_state = 5}, + [4978] = {.lex_state = 75}, + [4979] = {.lex_state = 75}, [4980] = {.lex_state = 75}, - [4981] = {.lex_state = 15}, + [4981] = {.lex_state = 14}, [4982] = {.lex_state = 75}, - [4983] = {.lex_state = 15}, - [4984] = {.lex_state = 19}, - [4985] = {.lex_state = 19}, - [4986] = {.lex_state = 75}, - [4987] = {.lex_state = 15}, - [4988] = {.lex_state = 75}, - [4989] = {.lex_state = 75}, + [4983] = {.lex_state = 75}, + [4984] = {.lex_state = 75}, + [4985] = {.lex_state = 75}, + [4986] = {.lex_state = 0}, + [4987] = {.lex_state = 75}, + [4988] = {.lex_state = 0, .external_lex_state = 5}, + [4989] = {.lex_state = 15}, [4990] = {.lex_state = 75}, - [4991] = {.lex_state = 16, .external_lex_state = 7}, + [4991] = {.lex_state = 75}, [4992] = {.lex_state = 75}, [4993] = {.lex_state = 75}, [4994] = {.lex_state = 75}, - [4995] = {.lex_state = 75}, - [4996] = {.lex_state = 75, .external_lex_state = 5}, + [4995] = {.lex_state = 0, .external_lex_state = 5}, + [4996] = {.lex_state = 75}, [4997] = {.lex_state = 15}, - [4998] = {.lex_state = 75, .external_lex_state = 5}, + [4998] = {.lex_state = 19}, [4999] = {.lex_state = 75}, - [5000] = {.lex_state = 75}, - [5001] = {.lex_state = 19}, - [5002] = {.lex_state = 75}, + [5000] = {.lex_state = 0, .external_lex_state = 5}, + [5001] = {.lex_state = 14}, + [5002] = {.lex_state = 0, .external_lex_state = 5}, [5003] = {.lex_state = 75}, - [5004] = {.lex_state = 0}, - [5005] = {.lex_state = 75}, - [5006] = {.lex_state = 19}, + [5004] = {.lex_state = 75, .external_lex_state = 6}, + [5005] = {.lex_state = 75, .external_lex_state = 6}, + [5006] = {.lex_state = 15}, [5007] = {.lex_state = 75}, - [5008] = {.lex_state = 75}, + [5008] = {.lex_state = 19}, [5009] = {.lex_state = 75}, - [5010] = {.lex_state = 0, .external_lex_state = 5}, + [5010] = {.lex_state = 75}, [5011] = {.lex_state = 75}, - [5012] = {.lex_state = 15}, - [5013] = {.lex_state = 0, .external_lex_state = 5}, - [5014] = {.lex_state = 0}, + [5012] = {.lex_state = 75}, + [5013] = {.lex_state = 75, .external_lex_state = 6}, + [5014] = {.lex_state = 75}, [5015] = {.lex_state = 75}, - [5016] = {.lex_state = 75}, + [5016] = {.lex_state = 19}, [5017] = {.lex_state = 15}, [5018] = {.lex_state = 75}, - [5019] = {.lex_state = 19}, - [5020] = {.lex_state = 75}, + [5019] = {.lex_state = 0}, + [5020] = {.lex_state = 0}, [5021] = {.lex_state = 75}, [5022] = {.lex_state = 19}, - [5023] = {.lex_state = 0}, - [5024] = {.lex_state = 14}, + [5023] = {.lex_state = 15}, + [5024] = {.lex_state = 16, .external_lex_state = 7}, [5025] = {.lex_state = 75}, [5026] = {.lex_state = 75}, [5027] = {.lex_state = 75}, - [5028] = {.lex_state = 19}, - [5029] = {.lex_state = 15}, + [5028] = {.lex_state = 75}, + [5029] = {.lex_state = 75}, [5030] = {.lex_state = 75}, [5031] = {.lex_state = 15}, - [5032] = {.lex_state = 75}, - [5033] = {.lex_state = 75}, - [5034] = {.lex_state = 19}, - [5035] = {.lex_state = 75}, + [5032] = {.lex_state = 0}, + [5033] = {.lex_state = 19}, + [5034] = {.lex_state = 75}, + [5035] = {.lex_state = 19}, [5036] = {.lex_state = 15}, - [5037] = {.lex_state = 75}, - [5038] = {.lex_state = 19}, - [5039] = {.lex_state = 75}, - [5040] = {.lex_state = 15}, + [5037] = {.lex_state = 15}, + [5038] = {.lex_state = 75}, + [5039] = {.lex_state = 19}, + [5040] = {.lex_state = 0}, [5041] = {.lex_state = 75}, [5042] = {.lex_state = 75}, - [5043] = {.lex_state = 19}, - [5044] = {.lex_state = 75}, - [5045] = {.lex_state = 14}, - [5046] = {.lex_state = 75}, - [5047] = {.lex_state = 75}, - [5048] = {.lex_state = 75}, + [5043] = {.lex_state = 75}, + [5044] = {.lex_state = 19}, + [5045] = {.lex_state = 75}, + [5046] = {.lex_state = 15}, + [5047] = {.lex_state = 0}, + [5048] = {.lex_state = 14}, [5049] = {.lex_state = 75}, [5050] = {.lex_state = 75}, - [5051] = {.lex_state = 0, .external_lex_state = 5}, + [5051] = {.lex_state = 75}, [5052] = {.lex_state = 0, .external_lex_state = 5}, [5053] = {.lex_state = 75}, - [5054] = {.lex_state = 75}, - [5055] = {.lex_state = 0}, - [5056] = {.lex_state = 0}, + [5054] = {.lex_state = 0}, + [5055] = {.lex_state = 75}, + [5056] = {.lex_state = 75}, [5057] = {.lex_state = 75}, [5058] = {.lex_state = 75}, - [5059] = {.lex_state = 19}, - [5060] = {.lex_state = 15}, + [5059] = {.lex_state = 0, .external_lex_state = 5}, + [5060] = {.lex_state = 75}, [5061] = {.lex_state = 75}, [5062] = {.lex_state = 75}, [5063] = {.lex_state = 75}, - [5064] = {.lex_state = 0, .external_lex_state = 5}, + [5064] = {.lex_state = 75}, [5065] = {.lex_state = 75}, - [5066] = {.lex_state = 19}, + [5066] = {.lex_state = 0, .external_lex_state = 5}, [5067] = {.lex_state = 75}, [5068] = {.lex_state = 75}, [5069] = {.lex_state = 75}, - [5070] = {.lex_state = 75}, + [5070] = {.lex_state = 0}, [5071] = {.lex_state = 75}, - [5072] = {.lex_state = 75}, - [5073] = {.lex_state = 75}, - [5074] = {.lex_state = 15}, + [5072] = {.lex_state = 15}, + [5073] = {.lex_state = 0}, + [5074] = {.lex_state = 75}, [5075] = {.lex_state = 75}, [5076] = {.lex_state = 75}, [5077] = {.lex_state = 75}, [5078] = {.lex_state = 75}, - [5079] = {.lex_state = 75}, - [5080] = {.lex_state = 75}, - [5081] = {.lex_state = 75}, - [5082] = {.lex_state = 0}, - [5083] = {.lex_state = 0, .external_lex_state = 5}, - [5084] = {.lex_state = 75}, - [5085] = {.lex_state = 15}, - [5086] = {.lex_state = 19}, + [5079] = {.lex_state = 10}, + [5080] = {.lex_state = 0}, + [5081] = {.lex_state = 10}, + [5082] = {.lex_state = 75}, + [5083] = {.lex_state = 75, .external_lex_state = 5}, + [5084] = {.lex_state = 10}, + [5085] = {.lex_state = 75}, + [5086] = {.lex_state = 0}, [5087] = {.lex_state = 75}, - [5088] = {.lex_state = 0}, - [5089] = {.lex_state = 14}, - [5090] = {.lex_state = 14}, - [5091] = {.lex_state = 19}, + [5088] = {.lex_state = 75}, + [5089] = {.lex_state = 75}, + [5090] = {.lex_state = 15}, + [5091] = {.lex_state = 75}, [5092] = {.lex_state = 75}, - [5093] = {.lex_state = 75}, + [5093] = {.lex_state = 19}, [5094] = {.lex_state = 75}, [5095] = {.lex_state = 75}, - [5096] = {.lex_state = 0}, - [5097] = {.lex_state = 0}, - [5098] = {.lex_state = 19}, + [5096] = {.lex_state = 75}, + [5097] = {.lex_state = 19}, + [5098] = {.lex_state = 75}, [5099] = {.lex_state = 15}, [5100] = {.lex_state = 75}, - [5101] = {.lex_state = 75}, + [5101] = {.lex_state = 0}, [5102] = {.lex_state = 75}, [5103] = {.lex_state = 75}, - [5104] = {.lex_state = 14}, - [5105] = {.lex_state = 75}, + [5104] = {.lex_state = 75}, + [5105] = {.lex_state = 0}, [5106] = {.lex_state = 0}, - [5107] = {.lex_state = 75}, - [5108] = {.lex_state = 0}, - [5109] = {.lex_state = 0, .external_lex_state = 5}, - [5110] = {.lex_state = 0}, - [5111] = {.lex_state = 0}, - [5112] = {.lex_state = 0}, + [5107] = {.lex_state = 75, .external_lex_state = 5}, + [5108] = {.lex_state = 75}, + [5109] = {.lex_state = 75, .external_lex_state = 6}, + [5110] = {.lex_state = 75}, + [5111] = {.lex_state = 75}, + [5112] = {.lex_state = 14}, [5113] = {.lex_state = 75}, - [5114] = {.lex_state = 26}, - [5115] = {.lex_state = 75}, - [5116] = {.lex_state = 0, .external_lex_state = 5}, - [5117] = {.lex_state = 26}, - [5118] = {.lex_state = 0}, - [5119] = {.lex_state = 0}, + [5114] = {.lex_state = 14}, + [5115] = {.lex_state = 14}, + [5116] = {.lex_state = 75}, + [5117] = {.lex_state = 0}, + [5118] = {.lex_state = 75}, + [5119] = {.lex_state = 75}, [5120] = {.lex_state = 0}, - [5121] = {.lex_state = 75}, + [5121] = {.lex_state = 0}, [5122] = {.lex_state = 75}, [5123] = {.lex_state = 75}, - [5124] = {.lex_state = 0}, - [5125] = {.lex_state = 0}, + [5124] = {.lex_state = 75}, + [5125] = {.lex_state = 75}, [5126] = {.lex_state = 0}, [5127] = {.lex_state = 0}, [5128] = {.lex_state = 0, .external_lex_state = 5}, [5129] = {.lex_state = 0}, - [5130] = {.lex_state = 75}, - [5131] = {.lex_state = 0}, + [5130] = {.lex_state = 0, .external_lex_state = 5}, + [5131] = {.lex_state = 0, .external_lex_state = 5}, [5132] = {.lex_state = 0, .external_lex_state = 5}, - [5133] = {.lex_state = 75}, - [5134] = {.lex_state = 75}, - [5135] = {.lex_state = 0, .external_lex_state = 5}, - [5136] = {.lex_state = 0, .external_lex_state = 5}, + [5133] = {.lex_state = 0}, + [5134] = {.lex_state = 0, .external_lex_state = 5}, + [5135] = {.lex_state = 75}, + [5136] = {.lex_state = 0}, [5137] = {.lex_state = 75}, - [5138] = {.lex_state = 75}, + [5138] = {.lex_state = 0}, [5139] = {.lex_state = 0, .external_lex_state = 5}, - [5140] = {.lex_state = 0, .external_lex_state = 5}, - [5141] = {.lex_state = 0}, - [5142] = {.lex_state = 0}, - [5143] = {.lex_state = 26}, - [5144] = {.lex_state = 0, .external_lex_state = 5}, + [5140] = {.lex_state = 0}, + [5141] = {.lex_state = 0, .external_lex_state = 5}, + [5142] = {.lex_state = 75}, + [5143] = {.lex_state = 0, .external_lex_state = 5}, + [5144] = {.lex_state = 0}, [5145] = {.lex_state = 0}, [5146] = {.lex_state = 0}, - [5147] = {.lex_state = 0, .external_lex_state = 5}, + [5147] = {.lex_state = 0}, [5148] = {.lex_state = 0}, - [5149] = {.lex_state = 0}, - [5150] = {.lex_state = 0}, + [5149] = {.lex_state = 0, .external_lex_state = 5}, + [5150] = {.lex_state = 75}, [5151] = {.lex_state = 0}, - [5152] = {.lex_state = 0, .external_lex_state = 5}, - [5153] = {.lex_state = 0, .external_lex_state = 5}, - [5154] = {.lex_state = 0, .external_lex_state = 5}, - [5155] = {.lex_state = 26}, + [5152] = {.lex_state = 0}, + [5153] = {.lex_state = 0}, + [5154] = {.lex_state = 75}, + [5155] = {.lex_state = 75}, [5156] = {.lex_state = 0}, - [5157] = {.lex_state = 0, .external_lex_state = 5}, + [5157] = {.lex_state = 0}, [5158] = {.lex_state = 0, .external_lex_state = 5}, [5159] = {.lex_state = 0}, - [5160] = {.lex_state = 0}, - [5161] = {.lex_state = 0}, - [5162] = {.lex_state = 0, .external_lex_state = 5}, + [5160] = {.lex_state = 75}, + [5161] = {.lex_state = 26}, + [5162] = {.lex_state = 75}, [5163] = {.lex_state = 0}, - [5164] = {.lex_state = 75}, - [5165] = {.lex_state = 0}, - [5166] = {.lex_state = 0, .external_lex_state = 5}, - [5167] = {.lex_state = 0, .external_lex_state = 5}, - [5168] = {.lex_state = 0, .external_lex_state = 5}, - [5169] = {.lex_state = 0, .external_lex_state = 5}, - [5170] = {.lex_state = 0, .external_lex_state = 5}, + [5164] = {.lex_state = 0, .external_lex_state = 5}, + [5165] = {.lex_state = 0, .external_lex_state = 5}, + [5166] = {.lex_state = 0}, + [5167] = {.lex_state = 0}, + [5168] = {.lex_state = 0}, + [5169] = {.lex_state = 26}, + [5170] = {.lex_state = 0}, [5171] = {.lex_state = 0}, - [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 0}, + [5172] = {.lex_state = 0, .external_lex_state = 5}, + [5173] = {.lex_state = 0, .external_lex_state = 5}, [5174] = {.lex_state = 75}, - [5175] = {.lex_state = 75}, - [5176] = {.lex_state = 0}, - [5177] = {.lex_state = 75}, - [5178] = {.lex_state = 0, .external_lex_state = 5}, - [5179] = {.lex_state = 75}, + [5175] = {.lex_state = 0, .external_lex_state = 5}, + [5176] = {.lex_state = 0, .external_lex_state = 5}, + [5177] = {.lex_state = 26}, + [5178] = {.lex_state = 75}, + [5179] = {.lex_state = 26}, [5180] = {.lex_state = 0, .external_lex_state = 5}, - [5181] = {.lex_state = 26}, - [5182] = {.lex_state = 0, .external_lex_state = 5}, - [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 0, .external_lex_state = 5}, + [5181] = {.lex_state = 0}, + [5182] = {.lex_state = 0}, + [5183] = {.lex_state = 75}, + [5184] = {.lex_state = 75}, [5185] = {.lex_state = 0, .external_lex_state = 5}, [5186] = {.lex_state = 75}, - [5187] = {.lex_state = 0}, - [5188] = {.lex_state = 0}, + [5187] = {.lex_state = 0, .external_lex_state = 5}, + [5188] = {.lex_state = 75}, [5189] = {.lex_state = 0}, - [5190] = {.lex_state = 75}, + [5190] = {.lex_state = 0, .external_lex_state = 5}, [5191] = {.lex_state = 0}, [5192] = {.lex_state = 0}, - [5193] = {.lex_state = 75}, + [5193] = {.lex_state = 26}, [5194] = {.lex_state = 0}, [5195] = {.lex_state = 75}, [5196] = {.lex_state = 0}, - [5197] = {.lex_state = 75}, - [5198] = {.lex_state = 0, .external_lex_state = 5}, + [5197] = {.lex_state = 10}, + [5198] = {.lex_state = 0}, [5199] = {.lex_state = 75}, - [5200] = {.lex_state = 75}, - [5201] = {.lex_state = 0, .external_lex_state = 5}, - [5202] = {.lex_state = 75}, + [5200] = {.lex_state = 0}, + [5201] = {.lex_state = 0}, + [5202] = {.lex_state = 26}, [5203] = {.lex_state = 0}, [5204] = {.lex_state = 0}, - [5205] = {.lex_state = 75}, - [5206] = {.lex_state = 0}, + [5205] = {.lex_state = 26}, + [5206] = {.lex_state = 26}, [5207] = {.lex_state = 75}, - [5208] = {.lex_state = 0, .external_lex_state = 5}, - [5209] = {.lex_state = 0, .external_lex_state = 5}, - [5210] = {.lex_state = 10}, - [5211] = {.lex_state = 75}, - [5212] = {.lex_state = 0}, + [5208] = {.lex_state = 0}, + [5209] = {.lex_state = 75}, + [5210] = {.lex_state = 0}, + [5211] = {.lex_state = 26}, + [5212] = {.lex_state = 26}, [5213] = {.lex_state = 0}, [5214] = {.lex_state = 0}, - [5215] = {.lex_state = 75}, - [5216] = {.lex_state = 0, .external_lex_state = 5}, - [5217] = {.lex_state = 0}, - [5218] = {.lex_state = 75}, - [5219] = {.lex_state = 0}, - [5220] = {.lex_state = 0}, + [5215] = {.lex_state = 0}, + [5216] = {.lex_state = 0}, + [5217] = {.lex_state = 10}, + [5218] = {.lex_state = 0}, + [5219] = {.lex_state = 75}, + [5220] = {.lex_state = 75}, [5221] = {.lex_state = 0}, - [5222] = {.lex_state = 0}, - [5223] = {.lex_state = 75}, - [5224] = {.lex_state = 0}, + [5222] = {.lex_state = 75, .external_lex_state = 5}, + [5223] = {.lex_state = 0}, + [5224] = {.lex_state = 0, .external_lex_state = 5}, [5225] = {.lex_state = 75}, - [5226] = {.lex_state = 0}, - [5227] = {.lex_state = 75}, - [5228] = {.lex_state = 0}, - [5229] = {.lex_state = 75}, + [5226] = {.lex_state = 75, .external_lex_state = 5}, + [5227] = {.lex_state = 0, .external_lex_state = 5}, + [5228] = {.lex_state = 26}, + [5229] = {.lex_state = 0}, [5230] = {.lex_state = 0}, - [5231] = {.lex_state = 26}, + [5231] = {.lex_state = 0}, [5232] = {.lex_state = 0}, - [5233] = {.lex_state = 26}, + [5233] = {.lex_state = 0}, [5234] = {.lex_state = 0}, [5235] = {.lex_state = 0}, - [5236] = {.lex_state = 0, .external_lex_state = 5}, + [5236] = {.lex_state = 75}, [5237] = {.lex_state = 26}, - [5238] = {.lex_state = 0}, + [5238] = {.lex_state = 75}, [5239] = {.lex_state = 0, .external_lex_state = 5}, - [5240] = {.lex_state = 26}, - [5241] = {.lex_state = 26}, - [5242] = {.lex_state = 75}, - [5243] = {.lex_state = 0}, - [5244] = {.lex_state = 75}, + [5240] = {.lex_state = 75}, + [5241] = {.lex_state = 0, .external_lex_state = 5}, + [5242] = {.lex_state = 0}, + [5243] = {.lex_state = 26}, + [5244] = {.lex_state = 0}, [5245] = {.lex_state = 75}, [5246] = {.lex_state = 0}, - [5247] = {.lex_state = 10}, - [5248] = {.lex_state = 75}, + [5247] = {.lex_state = 0}, + [5248] = {.lex_state = 0}, [5249] = {.lex_state = 0}, - [5250] = {.lex_state = 75}, - [5251] = {.lex_state = 75}, + [5250] = {.lex_state = 0}, + [5251] = {.lex_state = 0}, [5252] = {.lex_state = 0}, - [5253] = {.lex_state = 26}, - [5254] = {.lex_state = 75}, - [5255] = {.lex_state = 26}, - [5256] = {.lex_state = 75}, - [5257] = {.lex_state = 0}, - [5258] = {.lex_state = 26}, + [5253] = {.lex_state = 0}, + [5254] = {.lex_state = 0, .external_lex_state = 5}, + [5255] = {.lex_state = 75}, + [5256] = {.lex_state = 26}, + [5257] = {.lex_state = 75}, + [5258] = {.lex_state = 75}, [5259] = {.lex_state = 75}, - [5260] = {.lex_state = 0}, + [5260] = {.lex_state = 75}, [5261] = {.lex_state = 26}, - [5262] = {.lex_state = 0}, + [5262] = {.lex_state = 26}, [5263] = {.lex_state = 75}, - [5264] = {.lex_state = 26}, + [5264] = {.lex_state = 0}, [5265] = {.lex_state = 75}, - [5266] = {.lex_state = 26}, - [5267] = {.lex_state = 0}, - [5268] = {.lex_state = 75}, - [5269] = {.lex_state = 26}, - [5270] = {.lex_state = 75}, - [5271] = {.lex_state = 0}, - [5272] = {.lex_state = 0}, + [5266] = {.lex_state = 75}, + [5267] = {.lex_state = 75}, + [5268] = {.lex_state = 0}, + [5269] = {.lex_state = 0}, + [5270] = {.lex_state = 0, .external_lex_state = 5}, + [5271] = {.lex_state = 75}, + [5272] = {.lex_state = 75}, [5273] = {.lex_state = 0}, - [5274] = {.lex_state = 75}, - [5275] = {.lex_state = 0, .external_lex_state = 5}, + [5274] = {.lex_state = 0, .external_lex_state = 5}, + [5275] = {.lex_state = 75}, [5276] = {.lex_state = 75}, - [5277] = {.lex_state = 75}, - [5278] = {.lex_state = 26}, - [5279] = {.lex_state = 0}, - [5280] = {.lex_state = 75}, - [5281] = {.lex_state = 0}, - [5282] = {.lex_state = 0}, - [5283] = {.lex_state = 0}, + [5277] = {.lex_state = 26}, + [5278] = {.lex_state = 75}, + [5279] = {.lex_state = 75}, + [5280] = {.lex_state = 0}, + [5281] = {.lex_state = 0, .external_lex_state = 5}, + [5282] = {.lex_state = 0, .external_lex_state = 5}, + [5283] = {.lex_state = 75}, [5284] = {.lex_state = 0}, [5285] = {.lex_state = 0}, - [5286] = {.lex_state = 0}, - [5287] = {.lex_state = 26}, - [5288] = {.lex_state = 26}, - [5289] = {.lex_state = 26}, + [5286] = {.lex_state = 75}, + [5287] = {.lex_state = 75}, + [5288] = {.lex_state = 75}, + [5289] = {.lex_state = 75}, [5290] = {.lex_state = 0}, [5291] = {.lex_state = 0}, - [5292] = {.lex_state = 0}, - [5293] = {.lex_state = 0, .external_lex_state = 5}, - [5294] = {.lex_state = 75}, - [5295] = {.lex_state = 75}, - [5296] = {.lex_state = 75}, - [5297] = {.lex_state = 0, .external_lex_state = 5}, - [5298] = {.lex_state = 0, .external_lex_state = 5}, - [5299] = {.lex_state = 0}, + [5292] = {.lex_state = 75}, + [5293] = {.lex_state = 0}, + [5294] = {.lex_state = 0}, + [5295] = {.lex_state = 0}, + [5296] = {.lex_state = 26}, + [5297] = {.lex_state = 75}, + [5298] = {.lex_state = 75}, + [5299] = {.lex_state = 75}, [5300] = {.lex_state = 75}, - [5301] = {.lex_state = 0}, + [5301] = {.lex_state = 75}, [5302] = {.lex_state = 0}, - [5303] = {.lex_state = 0}, - [5304] = {.lex_state = 0}, + [5303] = {.lex_state = 75}, + [5304] = {.lex_state = 75}, [5305] = {.lex_state = 75}, - [5306] = {.lex_state = 0, .external_lex_state = 5}, + [5306] = {.lex_state = 0}, [5307] = {.lex_state = 0}, [5308] = {.lex_state = 0}, [5309] = {.lex_state = 0}, [5310] = {.lex_state = 75}, [5311] = {.lex_state = 75}, - [5312] = {.lex_state = 75}, - [5313] = {.lex_state = 75, .external_lex_state = 5}, - [5314] = {.lex_state = 75}, + [5312] = {.lex_state = 0}, + [5313] = {.lex_state = 75}, + [5314] = {.lex_state = 0}, [5315] = {.lex_state = 0}, - [5316] = {.lex_state = 0, .external_lex_state = 5}, + [5316] = {.lex_state = 0}, [5317] = {.lex_state = 75}, [5318] = {.lex_state = 75}, - [5319] = {.lex_state = 0, .external_lex_state = 5}, - [5320] = {.lex_state = 0, .external_lex_state = 5}, - [5321] = {.lex_state = 0, .external_lex_state = 5}, + [5319] = {.lex_state = 0}, + [5320] = {.lex_state = 75}, + [5321] = {.lex_state = 0}, [5322] = {.lex_state = 75}, [5323] = {.lex_state = 75}, [5324] = {.lex_state = 75}, [5325] = {.lex_state = 75}, [5326] = {.lex_state = 0}, - [5327] = {.lex_state = 75}, - [5328] = {.lex_state = 75, .external_lex_state = 5}, - [5329] = {.lex_state = 0, .external_lex_state = 5}, + [5327] = {.lex_state = 0}, + [5328] = {.lex_state = 0}, + [5329] = {.lex_state = 0}, [5330] = {.lex_state = 0}, - [5331] = {.lex_state = 0, .external_lex_state = 5}, + [5331] = {.lex_state = 75}, [5332] = {.lex_state = 0}, - [5333] = {.lex_state = 75}, + [5333] = {.lex_state = 0}, [5334] = {.lex_state = 0}, [5335] = {.lex_state = 0}, - [5336] = {.lex_state = 75}, - [5337] = {.lex_state = 0, .external_lex_state = 5}, + [5336] = {.lex_state = 0}, + [5337] = {.lex_state = 75}, [5338] = {.lex_state = 75}, - [5339] = {.lex_state = 0}, + [5339] = {.lex_state = 75}, [5340] = {.lex_state = 0}, [5341] = {.lex_state = 75}, [5342] = {.lex_state = 0}, - [5343] = {.lex_state = 0, .external_lex_state = 5}, - [5344] = {.lex_state = 75}, - [5345] = {.lex_state = 0}, - [5346] = {.lex_state = 75}, - [5347] = {.lex_state = 0}, - [5348] = {.lex_state = 0}, - [5349] = {.lex_state = 75}, - [5350] = {.lex_state = 0}, - [5351] = {.lex_state = 0, .external_lex_state = 5}, - [5352] = {.lex_state = 0}, - [5353] = {.lex_state = 0}, + [5343] = {.lex_state = 26}, + [5344] = {.lex_state = 0}, + [5345] = {.lex_state = 0, .external_lex_state = 5}, + [5346] = {.lex_state = 26}, + [5347] = {.lex_state = 75}, + [5348] = {.lex_state = 75}, + [5349] = {.lex_state = 0, .external_lex_state = 5}, + [5350] = {.lex_state = 0, .external_lex_state = 5}, + [5351] = {.lex_state = 75}, + [5352] = {.lex_state = 75}, + [5353] = {.lex_state = 0, .external_lex_state = 5}, [5354] = {.lex_state = 75}, - [5355] = {.lex_state = 75}, - [5356] = {.lex_state = 75}, - [5357] = {.lex_state = 10}, - [5358] = {.lex_state = 75}, - [5359] = {.lex_state = 75}, - [5360] = {.lex_state = 75}, - [5361] = {.lex_state = 75}, + [5355] = {.lex_state = 26}, + [5356] = {.lex_state = 0, .external_lex_state = 5}, + [5357] = {.lex_state = 0, .external_lex_state = 5}, + [5358] = {.lex_state = 10}, + [5359] = {.lex_state = 0}, + [5360] = {.lex_state = 0}, + [5361] = {.lex_state = 0, .external_lex_state = 5}, [5362] = {.lex_state = 75}, - [5363] = {.lex_state = 75}, - [5364] = {.lex_state = 0}, - [5365] = {.lex_state = 0}, - [5366] = {.lex_state = 0}, - [5367] = {.lex_state = 75}, - [5368] = {.lex_state = 0}, + [5363] = {.lex_state = 0, .external_lex_state = 5}, + [5364] = {.lex_state = 0, .external_lex_state = 5}, + [5365] = {.lex_state = 0, .external_lex_state = 5}, + [5366] = {.lex_state = 0, .external_lex_state = 5}, + [5367] = {.lex_state = 0, .external_lex_state = 5}, + [5368] = {.lex_state = 0, .external_lex_state = 5}, [5369] = {.lex_state = 0}, - [5370] = {.lex_state = 0}, - [5371] = {.lex_state = 75}, + [5370] = {.lex_state = 0, .external_lex_state = 5}, + [5371] = {.lex_state = 0, .external_lex_state = 5}, [5372] = {.lex_state = 0}, - [5373] = {.lex_state = 75}, + [5373] = {.lex_state = 0}, [5374] = {.lex_state = 75}, - [5375] = {.lex_state = 0}, - [5376] = {.lex_state = 75}, + [5375] = {.lex_state = 0, .external_lex_state = 5}, + [5376] = {.lex_state = 0}, [5377] = {.lex_state = 0}, [5378] = {.lex_state = 0}, [5379] = {.lex_state = 75}, [5380] = {.lex_state = 75}, - [5381] = {.lex_state = 75}, + [5381] = {.lex_state = 0}, [5382] = {.lex_state = 75}, [5383] = {.lex_state = 0}, [5384] = {.lex_state = 0}, - [5385] = {.lex_state = 75}, + [5385] = {.lex_state = 0, .external_lex_state = 5}, [5386] = {.lex_state = 75}, - [5387] = {.lex_state = 0}, - [5388] = {.lex_state = 75}, - [5389] = {.lex_state = 75}, - [5390] = {.lex_state = 0}, - [5391] = {.lex_state = 0}, + [5387] = {.lex_state = 75}, + [5388] = {.lex_state = 0, .external_lex_state = 5}, + [5389] = {.lex_state = 0}, + [5390] = {.lex_state = 75}, + [5391] = {.lex_state = 75}, [5392] = {.lex_state = 75}, - [5393] = {.lex_state = 0}, + [5393] = {.lex_state = 75}, [5394] = {.lex_state = 75}, [5395] = {.lex_state = 0}, [5396] = {.lex_state = 0}, - [5397] = {.lex_state = 0}, + [5397] = {.lex_state = 75}, [5398] = {.lex_state = 0}, [5399] = {.lex_state = 75}, - [5400] = {.lex_state = 0}, - [5401] = {.lex_state = 75}, - [5402] = {.lex_state = 0, .external_lex_state = 5}, - [5403] = {.lex_state = 0}, - [5404] = {.lex_state = 0}, + [5400] = {.lex_state = 75}, + [5401] = {.lex_state = 0}, + [5402] = {.lex_state = 0}, + [5403] = {.lex_state = 75}, + [5404] = {.lex_state = 75}, [5405] = {.lex_state = 75}, - [5406] = {.lex_state = 75}, + [5406] = {.lex_state = 0}, [5407] = {.lex_state = 75}, - [5408] = {.lex_state = 0}, - [5409] = {.lex_state = 0}, + [5408] = {.lex_state = 75}, + [5409] = {.lex_state = 75}, [5410] = {.lex_state = 0}, - [5411] = {.lex_state = 75}, - [5412] = {.lex_state = 75}, - [5413] = {.lex_state = 0}, + [5411] = {.lex_state = 0}, + [5412] = {.lex_state = 0}, + [5413] = {.lex_state = 75}, [5414] = {.lex_state = 0}, - [5415] = {.lex_state = 75}, - [5416] = {.lex_state = 0}, - [5417] = {.lex_state = 75}, + [5415] = {.lex_state = 0}, + [5416] = {.lex_state = 75}, + [5417] = {.lex_state = 0}, [5418] = {.lex_state = 0}, - [5419] = {.lex_state = 75}, + [5419] = {.lex_state = 0}, [5420] = {.lex_state = 75}, - [5421] = {.lex_state = 0, .external_lex_state = 5}, - [5422] = {.lex_state = 0}, + [5421] = {.lex_state = 0}, + [5422] = {.lex_state = 0, .external_lex_state = 5}, [5423] = {.lex_state = 0}, [5424] = {.lex_state = 0}, [5425] = {.lex_state = 75}, - [5426] = {.lex_state = 0}, - [5427] = {.lex_state = 0}, - [5428] = {.lex_state = 75}, + [5426] = {.lex_state = 0, .external_lex_state = 5}, + [5427] = {.lex_state = 75}, + [5428] = {.lex_state = 0}, [5429] = {.lex_state = 75}, [5430] = {.lex_state = 75}, - [5431] = {.lex_state = 0}, - [5432] = {.lex_state = 0}, + [5431] = {.lex_state = 75}, + [5432] = {.lex_state = 75}, [5433] = {.lex_state = 0}, - [5434] = {.lex_state = 75}, - [5435] = {.lex_state = 75}, - [5436] = {.lex_state = 0}, - [5437] = {.lex_state = 0}, + [5434] = {.lex_state = 0}, + [5435] = {.lex_state = 0}, + [5436] = {.lex_state = 75}, + [5437] = {.lex_state = 0, .external_lex_state = 5}, [5438] = {.lex_state = 75}, - [5439] = {.lex_state = 0, .external_lex_state = 5}, + [5439] = {.lex_state = 75}, [5440] = {.lex_state = 75}, [5441] = {.lex_state = 75}, - [5442] = {.lex_state = 75}, + [5442] = {.lex_state = 0}, [5443] = {.lex_state = 0}, - [5444] = {.lex_state = 75}, + [5444] = {.lex_state = 0}, [5445] = {.lex_state = 75}, [5446] = {.lex_state = 75}, - [5447] = {.lex_state = 75}, + [5447] = {.lex_state = 0}, [5448] = {.lex_state = 0}, - [5449] = {.lex_state = 0, .external_lex_state = 5}, - [5450] = {.lex_state = 0}, + [5449] = {.lex_state = 0}, + [5450] = {.lex_state = 75}, [5451] = {.lex_state = 0}, [5452] = {.lex_state = 75}, - [5453] = {.lex_state = 0}, + [5453] = {.lex_state = 75}, [5454] = {.lex_state = 75}, [5455] = {.lex_state = 75}, - [5456] = {.lex_state = 75}, - [5457] = {.lex_state = 0}, + [5456] = {.lex_state = 0, .external_lex_state = 5}, + [5457] = {.lex_state = 75}, [5458] = {.lex_state = 75}, - [5459] = {.lex_state = 0, .external_lex_state = 5}, + [5459] = {.lex_state = 14}, [5460] = {.lex_state = 75}, - [5461] = {.lex_state = 75}, - [5462] = {.lex_state = 0}, - [5463] = {.lex_state = 75}, - [5464] = {.lex_state = 0}, + [5461] = {.lex_state = 0}, + [5462] = {.lex_state = 75}, + [5463] = {.lex_state = 0}, + [5464] = {.lex_state = 75}, [5465] = {.lex_state = 75}, - [5466] = {.lex_state = 75}, + [5466] = {.lex_state = 0}, [5467] = {.lex_state = 0}, [5468] = {.lex_state = 0}, [5469] = {.lex_state = 0}, [5470] = {.lex_state = 75}, [5471] = {.lex_state = 0}, - [5472] = {.lex_state = 14}, + [5472] = {.lex_state = 0}, [5473] = {.lex_state = 0}, - [5474] = {.lex_state = 0}, - [5475] = {.lex_state = 75}, - [5476] = {.lex_state = 0}, + [5474] = {.lex_state = 75}, + [5475] = {.lex_state = 0}, + [5476] = {.lex_state = 0, .external_lex_state = 5}, [5477] = {.lex_state = 0}, - [5478] = {.lex_state = 0}, - [5479] = {.lex_state = 0}, - [5480] = {.lex_state = 75}, - [5481] = {.lex_state = 0}, + [5478] = {.lex_state = 75}, + [5479] = {.lex_state = 75}, + [5480] = {.lex_state = 0}, + [5481] = {.lex_state = 75}, [5482] = {.lex_state = 0}, [5483] = {.lex_state = 0}, [5484] = {.lex_state = 0}, [5485] = {.lex_state = 0}, - [5486] = {.lex_state = 75}, - [5487] = {.lex_state = 0}, + [5486] = {.lex_state = 0}, + [5487] = {.lex_state = 75}, [5488] = {.lex_state = 75}, [5489] = {.lex_state = 75}, [5490] = {.lex_state = 75}, - [5491] = {.lex_state = 0}, - [5492] = {.lex_state = 0}, + [5491] = {.lex_state = 75}, + [5492] = {.lex_state = 75}, [5493] = {.lex_state = 0}, - [5494] = {.lex_state = 0, .external_lex_state = 5}, - [5495] = {.lex_state = 0}, + [5494] = {.lex_state = 0}, + [5495] = {.lex_state = 75}, [5496] = {.lex_state = 75}, [5497] = {.lex_state = 75}, - [5498] = {.lex_state = 75}, - [5499] = {.lex_state = 75}, + [5498] = {.lex_state = 0}, + [5499] = {.lex_state = 0, .external_lex_state = 5}, [5500] = {.lex_state = 75}, - [5501] = {.lex_state = 0, .external_lex_state = 5}, + [5501] = {.lex_state = 75}, [5502] = {.lex_state = 75}, - [5503] = {.lex_state = 75}, - [5504] = {.lex_state = 0}, + [5503] = {.lex_state = 0}, + [5504] = {.lex_state = 75}, [5505] = {.lex_state = 75}, [5506] = {.lex_state = 75}, [5507] = {.lex_state = 75}, - [5508] = {.lex_state = 0, .external_lex_state = 5}, + [5508] = {.lex_state = 0}, [5509] = {.lex_state = 0}, - [5510] = {.lex_state = 0}, + [5510] = {.lex_state = 75}, [5511] = {.lex_state = 75}, [5512] = {.lex_state = 75}, - [5513] = {.lex_state = 75}, - [5514] = {.lex_state = 75}, + [5513] = {.lex_state = 0}, + [5514] = {.lex_state = 0}, [5515] = {.lex_state = 75}, [5516] = {.lex_state = 0}, - [5517] = {.lex_state = 0}, - [5518] = {.lex_state = 0}, - [5519] = {.lex_state = 75}, + [5517] = {.lex_state = 75}, + [5518] = {.lex_state = 75}, + [5519] = {.lex_state = 0}, [5520] = {.lex_state = 0}, - [5521] = {.lex_state = 75}, - [5522] = {.lex_state = 0, .external_lex_state = 5}, - [5523] = {.lex_state = 75}, - [5524] = {.lex_state = 0, .external_lex_state = 5}, - [5525] = {.lex_state = 75}, + [5521] = {.lex_state = 0}, + [5522] = {.lex_state = 0}, + [5523] = {.lex_state = 0}, + [5524] = {.lex_state = 0}, + [5525] = {.lex_state = 0}, [5526] = {.lex_state = 75}, - [5527] = {.lex_state = 0, .external_lex_state = 5}, - [5528] = {.lex_state = 0, .external_lex_state = 5}, - [5529] = {.lex_state = 75}, + [5527] = {.lex_state = 75}, + [5528] = {.lex_state = 75}, + [5529] = {.lex_state = 0}, [5530] = {.lex_state = 75}, - [5531] = {.lex_state = 0, .external_lex_state = 5}, + [5531] = {.lex_state = 0}, [5532] = {.lex_state = 75}, - [5533] = {.lex_state = 0}, + [5533] = {.lex_state = 75}, [5534] = {.lex_state = 0}, - [5535] = {.lex_state = 0, .external_lex_state = 5}, + [5535] = {.lex_state = 75}, [5536] = {.lex_state = 75}, [5537] = {.lex_state = 75}, [5538] = {.lex_state = 75}, [5539] = {.lex_state = 75}, [5540] = {.lex_state = 75}, [5541] = {.lex_state = 0}, - [5542] = {.lex_state = 75}, + [5542] = {.lex_state = 0}, [5543] = {.lex_state = 75}, - [5544] = {.lex_state = 0}, + [5544] = {.lex_state = 75}, [5545] = {.lex_state = 75}, [5546] = {.lex_state = 75}, [5547] = {.lex_state = 0}, [5548] = {.lex_state = 0}, - [5549] = {.lex_state = 75}, + [5549] = {.lex_state = 0, .external_lex_state = 5}, [5550] = {.lex_state = 0}, [5551] = {.lex_state = 75}, [5552] = {.lex_state = 75}, - [5553] = {.lex_state = 75}, + [5553] = {.lex_state = 0}, [5554] = {.lex_state = 0}, [5555] = {.lex_state = 75}, - [5556] = {.lex_state = 0}, + [5556] = {.lex_state = 75}, [5557] = {.lex_state = 75}, - [5558] = {.lex_state = 0}, + [5558] = {.lex_state = 75}, [5559] = {.lex_state = 75}, [5560] = {.lex_state = 75}, [5561] = {.lex_state = 0}, - [5562] = {.lex_state = 0, .external_lex_state = 5}, + [5562] = {.lex_state = 0}, [5563] = {.lex_state = 75}, [5564] = {.lex_state = 0}, - [5565] = {.lex_state = 75}, - [5566] = {.lex_state = 75}, + [5565] = {.lex_state = 0}, + [5566] = {.lex_state = 0, .external_lex_state = 5}, [5567] = {.lex_state = 75}, - [5568] = {.lex_state = 75}, - [5569] = {.lex_state = 0, .external_lex_state = 5}, + [5568] = {.lex_state = 0}, + [5569] = {.lex_state = 0}, [5570] = {.lex_state = 0}, - [5571] = {.lex_state = 0}, - [5572] = {.lex_state = 0, .external_lex_state = 5}, - [5573] = {.lex_state = 0, .external_lex_state = 5}, + [5571] = {.lex_state = 75}, + [5572] = {.lex_state = 75}, + [5573] = {.lex_state = 75}, [5574] = {.lex_state = 75}, - [5575] = {.lex_state = 0}, - [5576] = {.lex_state = 75}, - [5577] = {.lex_state = 0}, - [5578] = {.lex_state = 75}, - [5579] = {.lex_state = 0}, - [5580] = {.lex_state = 0}, - [5581] = {.lex_state = 0}, + [5575] = {.lex_state = 75}, + [5576] = {.lex_state = 0}, + [5577] = {.lex_state = 75}, + [5578] = {.lex_state = 0, .external_lex_state = 5}, + [5579] = {.lex_state = 0, .external_lex_state = 5}, + [5580] = {.lex_state = 75}, + [5581] = {.lex_state = 75}, [5582] = {.lex_state = 75}, [5583] = {.lex_state = 75}, - [5584] = {.lex_state = 0}, - [5585] = {.lex_state = 75}, + [5584] = {.lex_state = 75}, + [5585] = {.lex_state = 0}, [5586] = {.lex_state = 0}, - [5587] = {.lex_state = 0, .external_lex_state = 5}, - [5588] = {.lex_state = 75}, + [5587] = {.lex_state = 0}, + [5588] = {.lex_state = 0, .external_lex_state = 5}, [5589] = {.lex_state = 75}, - [5590] = {.lex_state = 0}, - [5591] = {.lex_state = 75}, - [5592] = {.lex_state = 75}, - [5593] = {.lex_state = 0}, + [5590] = {.lex_state = 0, .external_lex_state = 5}, + [5591] = {.lex_state = 0, .external_lex_state = 5}, + [5592] = {.lex_state = 0, .external_lex_state = 5}, + [5593] = {.lex_state = 75}, [5594] = {.lex_state = 75}, - [5595] = {.lex_state = 75}, + [5595] = {.lex_state = 0, .external_lex_state = 5}, [5596] = {.lex_state = 75}, [5597] = {.lex_state = 0}, [5598] = {.lex_state = 0}, - [5599] = {.lex_state = 75}, + [5599] = {.lex_state = 0}, [5600] = {.lex_state = 0}, [5601] = {.lex_state = 0}, [5602] = {.lex_state = 75}, - [5603] = {.lex_state = 0}, - [5604] = {.lex_state = 0}, + [5603] = {.lex_state = 75}, + [5604] = {.lex_state = 75}, [5605] = {.lex_state = 75}, [5606] = {.lex_state = 75}, - [5607] = {.lex_state = 75}, + [5607] = {.lex_state = 0, .external_lex_state = 5}, [5608] = {.lex_state = 0}, - [5609] = {.lex_state = 75}, - [5610] = {.lex_state = 0}, - [5611] = {.lex_state = 75}, + [5609] = {.lex_state = 0, .external_lex_state = 5}, + [5610] = {.lex_state = 0, .external_lex_state = 5}, + [5611] = {.lex_state = 0}, [5612] = {.lex_state = 75}, - [5613] = {.lex_state = 75}, + [5613] = {.lex_state = 0}, [5614] = {.lex_state = 75}, - [5615] = {.lex_state = 75}, - [5616] = {.lex_state = 0, .external_lex_state = 5}, - [5617] = {.lex_state = 0, .external_lex_state = 5}, + [5615] = {.lex_state = 0}, + [5616] = {.lex_state = 75}, + [5617] = {.lex_state = 0}, [5618] = {.lex_state = 0}, [5619] = {.lex_state = 75}, - [5620] = {.lex_state = 75}, - [5621] = {.lex_state = 0}, - [5622] = {.lex_state = 0}, + [5620] = {.lex_state = 0}, + [5621] = {.lex_state = 75}, + [5622] = {.lex_state = 75}, [5623] = {.lex_state = 75}, - [5624] = {.lex_state = 0, .external_lex_state = 5}, - [5625] = {.lex_state = 0, .external_lex_state = 5}, - [5626] = {.lex_state = 75}, - [5627] = {.lex_state = 75}, - [5628] = {.lex_state = 75}, + [5624] = {.lex_state = 75}, + [5625] = {.lex_state = 75}, + [5626] = {.lex_state = 0}, + [5627] = {.lex_state = 0}, + [5628] = {.lex_state = 0}, [5629] = {.lex_state = 75}, - [5630] = {.lex_state = 75}, - [5631] = {.lex_state = 75}, + [5630] = {.lex_state = 0}, + [5631] = {.lex_state = 0}, [5632] = {.lex_state = 75}, - [5633] = {.lex_state = 75}, + [5633] = {.lex_state = 0}, [5634] = {.lex_state = 0}, - [5635] = {.lex_state = 0}, + [5635] = {.lex_state = 75}, [5636] = {.lex_state = 75}, - [5637] = {.lex_state = 0}, - [5638] = {.lex_state = 0}, + [5637] = {.lex_state = 75}, + [5638] = {.lex_state = 75}, [5639] = {.lex_state = 75}, [5640] = {.lex_state = 0}, [5641] = {.lex_state = 75}, - [5642] = {.lex_state = 75}, + [5642] = {.lex_state = 0}, [5643] = {.lex_state = 75}, [5644] = {.lex_state = 75}, [5645] = {.lex_state = 0}, - [5646] = {.lex_state = 0}, + [5646] = {.lex_state = 75}, [5647] = {.lex_state = 75}, - [5648] = {.lex_state = 75}, + [5648] = {.lex_state = 0}, [5649] = {.lex_state = 75}, - [5650] = {.lex_state = 75}, - [5651] = {.lex_state = 0}, + [5650] = {.lex_state = 0, .external_lex_state = 5}, + [5651] = {.lex_state = 75}, [5652] = {.lex_state = 0}, [5653] = {.lex_state = 75}, [5654] = {.lex_state = 0}, - [5655] = {.lex_state = 0}, - [5656] = {.lex_state = 75}, - [5657] = {.lex_state = 75}, + [5655] = {.lex_state = 75}, + [5656] = {.lex_state = 0, .external_lex_state = 5}, + [5657] = {.lex_state = 0, .external_lex_state = 5}, [5658] = {.lex_state = 0}, [5659] = {.lex_state = 75}, - [5660] = {.lex_state = 0}, + [5660] = {.lex_state = 75}, [5661] = {.lex_state = 75}, - [5662] = {.lex_state = 75}, - [5663] = {.lex_state = 0}, - [5664] = {.lex_state = 75}, + [5662] = {.lex_state = 0}, + [5663] = {.lex_state = 75}, + [5664] = {.lex_state = 0}, [5665] = {.lex_state = 75}, - [5666] = {.lex_state = 0}, - [5667] = {.lex_state = 0}, + [5666] = {.lex_state = 75}, + [5667] = {.lex_state = 75}, [5668] = {.lex_state = 75}, [5669] = {.lex_state = 0}, [5670] = {.lex_state = 75}, [5671] = {.lex_state = 75}, - [5672] = {.lex_state = 0}, + [5672] = {.lex_state = 75}, [5673] = {.lex_state = 75}, - [5674] = {.lex_state = 0}, - [5675] = {.lex_state = 75}, + [5674] = {.lex_state = 75}, + [5675] = {.lex_state = 0, .external_lex_state = 5}, [5676] = {.lex_state = 0}, - [5677] = {.lex_state = 75}, + [5677] = {.lex_state = 0}, [5678] = {.lex_state = 75}, - [5679] = {.lex_state = 0}, + [5679] = {.lex_state = 75}, [5680] = {.lex_state = 75}, - [5681] = {.lex_state = 75}, + [5681] = {.lex_state = 0}, [5682] = {.lex_state = 75}, - [5683] = {.lex_state = 75}, - [5684] = {.lex_state = 75}, + [5683] = {.lex_state = 0}, + [5684] = {.lex_state = 0}, [5685] = {.lex_state = 75}, [5686] = {.lex_state = 75}, - [5687] = {.lex_state = 0, .external_lex_state = 5}, - [5688] = {.lex_state = 75}, + [5687] = {.lex_state = 75}, + [5688] = {.lex_state = 0}, [5689] = {.lex_state = 0}, - [5690] = {.lex_state = 75}, + [5690] = {.lex_state = 0, .external_lex_state = 5}, [5691] = {.lex_state = 75}, - [5692] = {.lex_state = 0, .external_lex_state = 5}, + [5692] = {.lex_state = 75}, [5693] = {.lex_state = 0}, - [5694] = {.lex_state = 0}, + [5694] = {.lex_state = 75}, [5695] = {.lex_state = 75}, [5696] = {.lex_state = 75}, [5697] = {.lex_state = 75}, - [5698] = {.lex_state = 0}, - [5699] = {.lex_state = 0}, - [5700] = {.lex_state = 75}, + [5698] = {.lex_state = 0, .external_lex_state = 5}, + [5699] = {.lex_state = 75}, + [5700] = {.lex_state = 0}, [5701] = {.lex_state = 75}, - [5702] = {.lex_state = 75}, + [5702] = {.lex_state = 0, .external_lex_state = 5}, [5703] = {.lex_state = 0}, - [5704] = {.lex_state = 75}, - [5705] = {.lex_state = 0}, + [5704] = {.lex_state = 0}, + [5705] = {.lex_state = 75}, [5706] = {.lex_state = 0}, - [5707] = {.lex_state = 0}, + [5707] = {.lex_state = 75}, [5708] = {.lex_state = 0}, - [5709] = {.lex_state = 0}, - [5710] = {.lex_state = 0}, + [5709] = {.lex_state = 75}, + [5710] = {.lex_state = 75}, [5711] = {.lex_state = 75}, - [5712] = {.lex_state = 75}, - [5713] = {.lex_state = 0}, - [5714] = {.lex_state = 75}, - [5715] = {.lex_state = 75}, - [5716] = {.lex_state = 75}, - [5717] = {.lex_state = 75}, - [5718] = {.lex_state = 75}, - [5719] = {.lex_state = 75}, + [5712] = {.lex_state = 0}, + [5713] = {.lex_state = 75}, + [5714] = {.lex_state = 0}, + [5715] = {.lex_state = 0}, + [5716] = {.lex_state = 0}, + [5717] = {.lex_state = 0}, + [5718] = {.lex_state = 0}, + [5719] = {.lex_state = 0}, [5720] = {.lex_state = 0}, [5721] = {.lex_state = 0}, [5722] = {.lex_state = 75}, [5723] = {.lex_state = 0}, - [5724] = {.lex_state = 75}, + [5724] = {.lex_state = 0}, [5725] = {.lex_state = 0}, - [5726] = {.lex_state = 0}, - [5727] = {.lex_state = 0}, - [5728] = {.lex_state = 0}, - [5729] = {.lex_state = 0}, - [5730] = {.lex_state = 0}, + [5726] = {.lex_state = 75}, + [5727] = {.lex_state = 75}, + [5728] = {.lex_state = 75}, + [5729] = {.lex_state = 75}, + [5730] = {.lex_state = 75}, [5731] = {.lex_state = 0}, [5732] = {.lex_state = 0}, - [5733] = {.lex_state = 0}, + [5733] = {.lex_state = 75}, [5734] = {.lex_state = 0}, - [5735] = {.lex_state = 0}, - [5736] = {.lex_state = 0}, - [5737] = {.lex_state = 0}, - [5738] = {.lex_state = 75}, + [5735] = {.lex_state = 75}, + [5736] = {.lex_state = 75}, + [5737] = {.lex_state = 75}, + [5738] = {.lex_state = 0}, [5739] = {.lex_state = 0}, - [5740] = {.lex_state = 75}, + [5740] = {.lex_state = 0}, [5741] = {.lex_state = 0}, - [5742] = {.lex_state = 75}, + [5742] = {.lex_state = 0}, [5743] = {.lex_state = 75}, - [5744] = {.lex_state = 75}, - [5745] = {.lex_state = 75}, - [5746] = {.lex_state = 0}, - [5747] = {.lex_state = 75}, - [5748] = {.lex_state = 75}, + [5744] = {.lex_state = 0}, + [5745] = {.lex_state = 0}, + [5746] = {.lex_state = 75}, + [5747] = {.lex_state = 1}, + [5748] = {.lex_state = 0}, [5749] = {.lex_state = 0}, - [5750] = {.lex_state = 1}, + [5750] = {.lex_state = 0}, [5751] = {.lex_state = 0}, [5752] = {.lex_state = 0}, [5753] = {.lex_state = 0}, - [5754] = {.lex_state = 0}, - [5755] = {.lex_state = 75}, + [5754] = {.lex_state = 75}, + [5755] = {.lex_state = 0}, [5756] = {.lex_state = 0}, [5757] = {.lex_state = 75}, [5758] = {.lex_state = 0}, [5759] = {.lex_state = 75}, [5760] = {.lex_state = 0}, - [5761] = {.lex_state = 0}, + [5761] = {.lex_state = 75}, [5762] = {.lex_state = 75}, [5763] = {.lex_state = 0}, - [5764] = {.lex_state = 0}, - [5765] = {.lex_state = 0}, - [5766] = {.lex_state = 1}, - [5767] = {.lex_state = 0}, + [5764] = {.lex_state = 75}, + [5765] = {.lex_state = 75}, + [5766] = {.lex_state = 75}, + [5767] = {.lex_state = 75}, [5768] = {.lex_state = 0}, [5769] = {.lex_state = 0}, - [5770] = {.lex_state = 0}, - [5771] = {.lex_state = 0}, + [5770] = {.lex_state = 75}, + [5771] = {.lex_state = 75}, [5772] = {.lex_state = 0}, [5773] = {.lex_state = 0}, - [5774] = {.lex_state = 0}, + [5774] = {.lex_state = 75}, [5775] = {.lex_state = 0}, [5776] = {.lex_state = 75}, [5777] = {.lex_state = 0}, [5778] = {.lex_state = 0}, [5779] = {.lex_state = 0}, [5780] = {.lex_state = 0}, - [5781] = {.lex_state = 0}, + [5781] = {.lex_state = 75}, [5782] = {.lex_state = 0}, - [5783] = {.lex_state = 75}, + [5783] = {.lex_state = 0}, [5784] = {.lex_state = 75}, - [5785] = {.lex_state = 0}, - [5786] = {.lex_state = 0}, + [5785] = {.lex_state = 75}, + [5786] = {.lex_state = 75}, [5787] = {.lex_state = 75}, - [5788] = {.lex_state = 0}, + [5788] = {.lex_state = 75}, [5789] = {.lex_state = 0}, [5790] = {.lex_state = 0}, - [5791] = {.lex_state = 0}, - [5792] = {.lex_state = 0}, + [5791] = {.lex_state = 11}, + [5792] = {.lex_state = 75}, [5793] = {.lex_state = 0}, [5794] = {.lex_state = 0}, [5795] = {.lex_state = 0}, [5796] = {.lex_state = 0}, - [5797] = {.lex_state = 0}, - [5798] = {.lex_state = 75}, - [5799] = {.lex_state = 75}, - [5800] = {.lex_state = 11}, - [5801] = {.lex_state = 0}, + [5797] = {.lex_state = 75}, + [5798] = {.lex_state = 0}, + [5799] = {.lex_state = 0}, + [5800] = {.lex_state = 0}, + [5801] = {.lex_state = 75}, [5802] = {.lex_state = 0}, [5803] = {.lex_state = 0}, - [5804] = {.lex_state = 75}, + [5804] = {.lex_state = 0}, [5805] = {.lex_state = 0}, - [5806] = {.lex_state = 0}, - [5807] = {.lex_state = 75}, + [5806] = {.lex_state = 75}, + [5807] = {.lex_state = 0}, [5808] = {.lex_state = 75}, - [5809] = {.lex_state = 75}, - [5810] = {.lex_state = 75}, + [5809] = {.lex_state = 0}, + [5810] = {.lex_state = 0}, [5811] = {.lex_state = 75}, [5812] = {.lex_state = 0}, - [5813] = {.lex_state = 0}, + [5813] = {.lex_state = 75}, [5814] = {.lex_state = 0}, - [5815] = {.lex_state = 75}, - [5816] = {.lex_state = 0}, + [5815] = {.lex_state = 0}, + [5816] = {.lex_state = 75}, [5817] = {.lex_state = 75}, - [5818] = {.lex_state = 75}, + [5818] = {.lex_state = 0}, [5819] = {.lex_state = 0}, - [5820] = {.lex_state = 75}, + [5820] = {.lex_state = 0}, [5821] = {.lex_state = 75}, [5822] = {.lex_state = 0}, - [5823] = {.lex_state = 0}, + [5823] = {.lex_state = 75}, [5824] = {.lex_state = 0}, - [5825] = {.lex_state = 0}, - [5826] = {.lex_state = 1}, + [5825] = {.lex_state = 11}, + [5826] = {.lex_state = 0}, [5827] = {.lex_state = 0}, - [5828] = {.lex_state = 0}, + [5828] = {.lex_state = 75}, [5829] = {.lex_state = 0}, [5830] = {.lex_state = 75}, [5831] = {.lex_state = 0}, - [5832] = {.lex_state = 75}, + [5832] = {.lex_state = 0}, [5833] = {.lex_state = 0}, - [5834] = {.lex_state = 75}, + [5834] = {.lex_state = 0}, [5835] = {.lex_state = 0}, [5836] = {.lex_state = 0}, - [5837] = {.lex_state = 11}, + [5837] = {.lex_state = 0}, [5838] = {.lex_state = 0}, [5839] = {.lex_state = 0}, - [5840] = {.lex_state = 0}, + [5840] = {.lex_state = 75}, [5841] = {.lex_state = 0}, - [5842] = {.lex_state = 0}, - [5843] = {.lex_state = 75}, + [5842] = {.lex_state = 75}, + [5843] = {.lex_state = 0}, [5844] = {.lex_state = 0}, - [5845] = {.lex_state = 75}, + [5845] = {.lex_state = 0}, [5846] = {.lex_state = 75}, - [5847] = {.lex_state = 0}, - [5848] = {.lex_state = 0}, - [5849] = {.lex_state = 75}, - [5850] = {.lex_state = 0}, - [5851] = {.lex_state = 0}, - [5852] = {.lex_state = 75}, + [5847] = {.lex_state = 75}, + [5848] = {.lex_state = 75}, + [5849] = {.lex_state = 0}, + [5850] = {.lex_state = 75}, + [5851] = {.lex_state = 75}, + [5852] = {.lex_state = 0}, [5853] = {.lex_state = 0}, [5854] = {.lex_state = 0}, [5855] = {.lex_state = 0}, - [5856] = {.lex_state = 75}, + [5856] = {.lex_state = 0}, [5857] = {.lex_state = 0}, - [5858] = {.lex_state = 0}, + [5858] = {.lex_state = 75}, [5859] = {.lex_state = 0}, - [5860] = {.lex_state = 75}, - [5861] = {.lex_state = 75}, + [5860] = {.lex_state = 0}, + [5861] = {.lex_state = 0}, [5862] = {.lex_state = 0}, [5863] = {.lex_state = 0}, - [5864] = {.lex_state = 75}, + [5864] = {.lex_state = 11}, [5865] = {.lex_state = 0}, [5866] = {.lex_state = 0}, - [5867] = {.lex_state = 75}, + [5867] = {.lex_state = 0}, [5868] = {.lex_state = 75}, - [5869] = {.lex_state = 75}, + [5869] = {.lex_state = 0}, [5870] = {.lex_state = 0}, - [5871] = {.lex_state = 0}, + [5871] = {.lex_state = 75}, [5872] = {.lex_state = 0}, - [5873] = {.lex_state = 0}, + [5873] = {.lex_state = 75}, [5874] = {.lex_state = 0}, [5875] = {.lex_state = 75}, [5876] = {.lex_state = 0}, - [5877] = {.lex_state = 0}, + [5877] = {.lex_state = 75}, [5878] = {.lex_state = 0}, - [5879] = {.lex_state = 75}, + [5879] = {.lex_state = 11}, [5880] = {.lex_state = 75}, - [5881] = {.lex_state = 0}, + [5881] = {.lex_state = 75}, [5882] = {.lex_state = 0}, [5883] = {.lex_state = 0}, [5884] = {.lex_state = 0}, - [5885] = {.lex_state = 0}, + [5885] = {.lex_state = 75}, [5886] = {.lex_state = 0}, [5887] = {.lex_state = 0}, - [5888] = {.lex_state = 0}, + [5888] = {.lex_state = 11}, [5889] = {.lex_state = 0}, [5890] = {.lex_state = 0}, - [5891] = {.lex_state = 0}, - [5892] = {.lex_state = 75}, - [5893] = {.lex_state = 0}, - [5894] = {.lex_state = 75}, + [5891] = {.lex_state = 1}, + [5892] = {.lex_state = 11}, + [5893] = {.lex_state = 75}, + [5894] = {.lex_state = 0}, [5895] = {.lex_state = 1}, [5896] = {.lex_state = 0}, [5897] = {.lex_state = 0}, - [5898] = {.lex_state = 0}, - [5899] = {.lex_state = 0}, - [5900] = {.lex_state = 0}, - [5901] = {.lex_state = 75}, + [5898] = {.lex_state = 75}, + [5899] = {.lex_state = 75}, + [5900] = {.lex_state = 75}, + [5901] = {.lex_state = 0}, [5902] = {.lex_state = 0}, [5903] = {.lex_state = 0}, [5904] = {.lex_state = 0}, - [5905] = {.lex_state = 0}, - [5906] = {.lex_state = 75}, + [5905] = {.lex_state = 75}, + [5906] = {.lex_state = 0}, [5907] = {.lex_state = 75}, - [5908] = {.lex_state = 75}, - [5909] = {.lex_state = 0}, - [5910] = {.lex_state = 0}, - [5911] = {.lex_state = 75}, - [5912] = {.lex_state = 0}, + [5908] = {.lex_state = 0}, + [5909] = {.lex_state = 75}, + [5910] = {.lex_state = 75}, + [5911] = {.lex_state = 0}, + [5912] = {.lex_state = 75}, [5913] = {.lex_state = 0}, - [5914] = {.lex_state = 75}, - [5915] = {.lex_state = 0}, - [5916] = {.lex_state = 0}, + [5914] = {.lex_state = 0}, + [5915] = {.lex_state = 1}, + [5916] = {.lex_state = 1}, [5917] = {.lex_state = 0}, [5918] = {.lex_state = 75}, [5919] = {.lex_state = 75}, - [5920] = {.lex_state = 1}, + [5920] = {.lex_state = 0}, [5921] = {.lex_state = 0}, - [5922] = {.lex_state = 0}, - [5923] = {.lex_state = 75}, - [5924] = {.lex_state = 75}, + [5922] = {.lex_state = 75}, + [5923] = {.lex_state = 0}, + [5924] = {.lex_state = 0}, [5925] = {.lex_state = 0}, [5926] = {.lex_state = 0}, - [5927] = {.lex_state = 11}, + [5927] = {.lex_state = 0}, [5928] = {.lex_state = 0}, - [5929] = {.lex_state = 75}, + [5929] = {.lex_state = 0}, [5930] = {.lex_state = 0}, - [5931] = {.lex_state = 0}, - [5932] = {.lex_state = 1}, + [5931] = {.lex_state = 75}, + [5932] = {.lex_state = 0}, [5933] = {.lex_state = 75}, - [5934] = {.lex_state = 0}, + [5934] = {.lex_state = 75}, [5935] = {.lex_state = 75}, - [5936] = {.lex_state = 75}, + [5936] = {.lex_state = 0}, [5937] = {.lex_state = 0}, [5938] = {.lex_state = 75}, - [5939] = {.lex_state = 0}, + [5939] = {.lex_state = 75}, [5940] = {.lex_state = 0}, - [5941] = {.lex_state = 75}, + [5941] = {.lex_state = 0}, [5942] = {.lex_state = 0}, [5943] = {.lex_state = 75}, - [5944] = {.lex_state = 0}, + [5944] = {.lex_state = 75}, [5945] = {.lex_state = 0}, - [5946] = {.lex_state = 0}, - [5947] = {.lex_state = 75}, + [5946] = {.lex_state = 75}, + [5947] = {.lex_state = 0}, [5948] = {.lex_state = 75}, [5949] = {.lex_state = 75}, [5950] = {.lex_state = 0}, @@ -12248,68 +12247,68 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [5952] = {.lex_state = 0}, [5953] = {.lex_state = 0}, [5954] = {.lex_state = 0}, - [5955] = {.lex_state = 75}, + [5955] = {.lex_state = 0}, [5956] = {.lex_state = 11}, - [5957] = {.lex_state = 0}, - [5958] = {.lex_state = 75}, + [5957] = {.lex_state = 75}, + [5958] = {.lex_state = 0}, [5959] = {.lex_state = 0}, - [5960] = {.lex_state = 75}, - [5961] = {.lex_state = 75}, - [5962] = {.lex_state = 75}, + [5960] = {.lex_state = 0}, + [5961] = {.lex_state = 0}, + [5962] = {.lex_state = 11}, [5963] = {.lex_state = 0}, - [5964] = {.lex_state = 75}, - [5965] = {.lex_state = 75}, - [5966] = {.lex_state = 75}, - [5967] = {.lex_state = 75}, + [5964] = {.lex_state = 0}, + [5965] = {.lex_state = 0}, + [5966] = {.lex_state = 0}, + [5967] = {.lex_state = 0}, [5968] = {.lex_state = 0}, [5969] = {.lex_state = 0}, - [5970] = {.lex_state = 0}, + [5970] = {.lex_state = 75}, [5971] = {.lex_state = 0}, [5972] = {.lex_state = 0}, - [5973] = {.lex_state = 0}, + [5973] = {.lex_state = 75}, [5974] = {.lex_state = 0}, - [5975] = {.lex_state = 0}, + [5975] = {.lex_state = 75}, [5976] = {.lex_state = 0}, - [5977] = {.lex_state = 0}, - [5978] = {.lex_state = 0}, - [5979] = {.lex_state = 75}, - [5980] = {.lex_state = 0}, + [5977] = {.lex_state = 75}, + [5978] = {.lex_state = 75}, + [5979] = {.lex_state = 0}, + [5980] = {.lex_state = 75}, [5981] = {.lex_state = 75}, - [5982] = {.lex_state = 0}, - [5983] = {.lex_state = 0}, - [5984] = {.lex_state = 0}, - [5985] = {.lex_state = 0}, - [5986] = {.lex_state = 0}, - [5987] = {.lex_state = 75}, + [5982] = {.lex_state = 75}, + [5983] = {.lex_state = 75}, + [5984] = {.lex_state = 75}, + [5985] = {.lex_state = 75}, + [5986] = {.lex_state = 75}, + [5987] = {.lex_state = 0}, [5988] = {.lex_state = 0}, [5989] = {.lex_state = 0}, [5990] = {.lex_state = 0}, [5991] = {.lex_state = 0}, [5992] = {.lex_state = 0}, - [5993] = {.lex_state = 75}, + [5993] = {.lex_state = 0}, [5994] = {.lex_state = 0}, [5995] = {.lex_state = 0}, [5996] = {.lex_state = 0}, [5997] = {.lex_state = 0}, [5998] = {.lex_state = 75}, - [5999] = {.lex_state = 0}, + [5999] = {.lex_state = 75}, [6000] = {.lex_state = 0}, - [6001] = {.lex_state = 75}, - [6002] = {.lex_state = 75}, + [6001] = {.lex_state = 0}, + [6002] = {.lex_state = 0}, [6003] = {.lex_state = 0}, - [6004] = {.lex_state = 75}, + [6004] = {.lex_state = 0}, [6005] = {.lex_state = 0}, - [6006] = {.lex_state = 0}, + [6006] = {.lex_state = 1}, [6007] = {.lex_state = 0}, [6008] = {.lex_state = 75}, - [6009] = {.lex_state = 0}, - [6010] = {.lex_state = 0}, - [6011] = {.lex_state = 0}, + [6009] = {.lex_state = 75}, + [6010] = {.lex_state = 75}, + [6011] = {.lex_state = 75}, [6012] = {.lex_state = 0}, - [6013] = {.lex_state = 0}, + [6013] = {.lex_state = 75}, [6014] = {.lex_state = 0}, [6015] = {.lex_state = 0}, - [6016] = {.lex_state = 0}, + [6016] = {.lex_state = 75}, [6017] = {.lex_state = 0}, [6018] = {.lex_state = 0}, [6019] = {.lex_state = 0}, @@ -12319,120 +12318,130 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [6023] = {.lex_state = 75}, [6024] = {.lex_state = 0}, [6025] = {.lex_state = 0}, - [6026] = {.lex_state = 1}, + [6026] = {.lex_state = 0}, [6027] = {.lex_state = 0}, - [6028] = {.lex_state = 0}, + [6028] = {.lex_state = 75}, [6029] = {.lex_state = 0}, [6030] = {.lex_state = 0}, [6031] = {.lex_state = 0}, - [6032] = {.lex_state = 11}, + [6032] = {.lex_state = 75}, [6033] = {.lex_state = 0}, [6034] = {.lex_state = 0}, [6035] = {.lex_state = 0}, - [6036] = {.lex_state = 11}, - [6037] = {.lex_state = 0}, + [6036] = {.lex_state = 75}, + [6037] = {.lex_state = 75}, [6038] = {.lex_state = 75}, [6039] = {.lex_state = 0}, - [6040] = {.lex_state = 0}, + [6040] = {.lex_state = 75}, [6041] = {.lex_state = 75}, [6042] = {.lex_state = 0}, [6043] = {.lex_state = 0}, - [6044] = {.lex_state = 75}, - [6045] = {.lex_state = 0}, - [6046] = {.lex_state = 75}, - [6047] = {.lex_state = 0}, - [6048] = {.lex_state = 0}, + [6044] = {.lex_state = 0}, + [6045] = {.lex_state = 75}, + [6046] = {.lex_state = 0}, + [6047] = {.lex_state = 75}, + [6048] = {.lex_state = 75}, [6049] = {.lex_state = 0}, - [6050] = {.lex_state = 11}, + [6050] = {.lex_state = 0}, [6051] = {.lex_state = 0}, [6052] = {.lex_state = 0}, [6053] = {.lex_state = 75}, - [6054] = {.lex_state = 0}, - [6055] = {.lex_state = 75}, - [6056] = {.lex_state = 75}, - [6057] = {.lex_state = 0}, + [6054] = {.lex_state = 75}, + [6055] = {.lex_state = 1}, + [6056] = {.lex_state = 0}, + [6057] = {.lex_state = 75}, [6058] = {.lex_state = 0}, - [6059] = {.lex_state = 0}, + [6059] = {.lex_state = 75}, [6060] = {.lex_state = 0}, - [6061] = {.lex_state = 11}, - [6062] = {.lex_state = 75}, - [6063] = {.lex_state = 75}, - [6064] = {.lex_state = 75}, + [6061] = {.lex_state = 0}, + [6062] = {.lex_state = 0}, + [6063] = {.lex_state = 0}, + [6064] = {.lex_state = 1}, [6065] = {.lex_state = 0}, [6066] = {.lex_state = 0}, - [6067] = {.lex_state = 75}, + [6067] = {.lex_state = 0}, [6068] = {.lex_state = 0}, - [6069] = {.lex_state = 75}, + [6069] = {.lex_state = 0}, [6070] = {.lex_state = 0}, - [6071] = {.lex_state = 0}, - [6072] = {.lex_state = 75}, - [6073] = {.lex_state = 0}, + [6071] = {.lex_state = 75}, + [6072] = {.lex_state = 0}, + [6073] = {.lex_state = 75}, [6074] = {.lex_state = 75}, [6075] = {.lex_state = 0}, - [6076] = {.lex_state = 75}, + [6076] = {.lex_state = 0}, [6077] = {.lex_state = 0}, - [6078] = {.lex_state = 0}, - [6079] = {.lex_state = 75}, - [6080] = {.lex_state = 11}, - [6081] = {.lex_state = 75}, - [6082] = {.lex_state = 0}, - [6083] = {.lex_state = 0}, - [6084] = {.lex_state = 75}, - [6085] = {.lex_state = 0}, + [6078] = {.lex_state = 75}, + [6079] = {.lex_state = 0}, + [6080] = {.lex_state = 75}, + [6081] = {.lex_state = 0}, + [6082] = {.lex_state = 75}, + [6083] = {.lex_state = 75}, + [6084] = {.lex_state = 0}, + [6085] = {.lex_state = 75}, [6086] = {.lex_state = 0}, - [6087] = {.lex_state = 75}, - [6088] = {.lex_state = 0}, - [6089] = {.lex_state = 75}, - [6090] = {.lex_state = 1}, - [6091] = {.lex_state = 0}, - [6092] = {.lex_state = 0}, + [6087] = {.lex_state = 0}, + [6088] = {.lex_state = 75}, + [6089] = {.lex_state = 0}, + [6090] = {.lex_state = 0}, + [6091] = {.lex_state = 75}, + [6092] = {.lex_state = 1}, [6093] = {.lex_state = 0}, - [6094] = {.lex_state = 75}, - [6095] = {.lex_state = 75}, + [6094] = {.lex_state = 0}, + [6095] = {.lex_state = 0}, [6096] = {.lex_state = 0}, [6097] = {.lex_state = 0}, [6098] = {.lex_state = 0}, - [6099] = {.lex_state = 75}, + [6099] = {.lex_state = 0}, [6100] = {.lex_state = 75}, - [6101] = {.lex_state = 75}, - [6102] = {.lex_state = 75}, - [6103] = {.lex_state = 75}, - [6104] = {.lex_state = 1}, - [6105] = {.lex_state = 75}, + [6101] = {.lex_state = 0}, + [6102] = {.lex_state = 0}, + [6103] = {.lex_state = 0}, + [6104] = {.lex_state = 0}, + [6105] = {.lex_state = 0}, [6106] = {.lex_state = 0}, [6107] = {.lex_state = 0}, [6108] = {.lex_state = 75}, [6109] = {.lex_state = 0}, [6110] = {.lex_state = 0}, - [6111] = {.lex_state = 75}, + [6111] = {.lex_state = 0}, [6112] = {.lex_state = 0}, [6113] = {.lex_state = 0}, [6114] = {.lex_state = 0}, [6115] = {.lex_state = 0}, [6116] = {.lex_state = 0}, [6117] = {.lex_state = 0}, - [6118] = {.lex_state = 75}, - [6119] = {.lex_state = 75}, - [6120] = {.lex_state = 75}, + [6118] = {.lex_state = 0}, + [6119] = {.lex_state = 0}, + [6120] = {.lex_state = 0}, [6121] = {.lex_state = 75}, - [6122] = {.lex_state = 75}, - [6123] = {.lex_state = 75}, - [6124] = {.lex_state = 0}, + [6122] = {.lex_state = 0}, + [6123] = {.lex_state = 0}, + [6124] = {.lex_state = 75}, [6125] = {.lex_state = 0}, - [6126] = {.lex_state = 0}, - [6127] = {.lex_state = 75}, - [6128] = {.lex_state = 75}, + [6126] = {.lex_state = 11}, + [6127] = {.lex_state = 0}, + [6128] = {.lex_state = 0}, [6129] = {.lex_state = 75}, [6130] = {.lex_state = 0}, [6131] = {.lex_state = 75}, [6132] = {.lex_state = 75}, [6133] = {.lex_state = 0}, - [6134] = {.lex_state = 0}, + [6134] = {.lex_state = 75}, [6135] = {.lex_state = 0}, - [6136] = {.lex_state = 0}, + [6136] = {.lex_state = 75}, [6137] = {.lex_state = 0}, - [6138] = {.lex_state = 75}, - [6139] = {.lex_state = 0}, + [6138] = {.lex_state = 0}, + [6139] = {.lex_state = 75}, + [6140] = {.lex_state = 75}, + [6141] = {.lex_state = 0}, + [6142] = {.lex_state = 0}, + [6143] = {.lex_state = 0}, + [6144] = {.lex_state = 0}, + [6145] = {.lex_state = 0}, + [6146] = {.lex_state = 0}, + [6147] = {.lex_state = 0}, + [6148] = {.lex_state = 0}, + [6149] = {.lex_state = 75}, }; enum { @@ -12629,14 +12638,330 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__function_signature_automatic_semicolon] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5872), + [sym_program] = STATE(6077), + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4457), + [ts_builtin_sym_end] = ACTIONS(5), + [sym_identifier] = ACTIONS(7), + [sym_hash_bang_line] = ACTIONS(9), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), + [anon_sym_abstract] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(103), + [anon_sym_enum] = ACTIONS(105), + }, + [2] = { + [sym_export_statement] = STATE(26), + [sym_declaration] = STATE(26), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5167), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5167), + [sym_pair] = STATE(5167), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5170), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(107), + [anon_sym_export] = ACTIONS(109), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_type] = ACTIONS(113), + [anon_sym_namespace] = ACTIONS(115), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(119), + [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(121), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(123), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(125), + [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(127), + [sym_private_property_identifier] = ACTIONS(129), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(131), + [anon_sym_readonly] = ACTIONS(133), + [anon_sym_get] = ACTIONS(135), + [anon_sym_set] = ACTIONS(135), + [anon_sym_declare] = ACTIONS(137), + [anon_sym_public] = ACTIONS(139), + [anon_sym_private] = ACTIONS(139), + [anon_sym_protected] = ACTIONS(139), + [anon_sym_module] = ACTIONS(141), + [anon_sym_any] = ACTIONS(143), + [anon_sym_number] = ACTIONS(143), + [anon_sym_boolean] = ACTIONS(143), + [anon_sym_string] = ACTIONS(143), + [anon_sym_symbol] = ACTIONS(143), + [anon_sym_abstract] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(103), + [anon_sym_enum] = ACTIONS(105), + }, + [3] = { [sym_export_statement] = STATE(22), [sym_declaration] = STATE(22), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(22), [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(22), [sym_if_statement] = STATE(22), [sym_switch_statement] = STATE(22), @@ -12653,67 +12978,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(22), [sym_empty_statement] = STATE(22), [sym_labeled_statement] = STATE(22), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5213), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5213), + [sym_pair] = STATE(5213), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(4545), - [ts_builtin_sym_end] = ACTIONS(5), - [sym_identifier] = ACTIONS(7), - [sym_hash_bang_line] = ACTIONS(9), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5218), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(145), + [anon_sym_export] = ACTIONS(147), + [anon_sym_STAR] = ACTIONS(111), + [anon_sym_type] = ACTIONS(149), + [anon_sym_namespace] = ACTIONS(151), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_COMMA] = ACTIONS(117), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -12736,13 +13073,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(57), [anon_sym_SEMI] = ACTIONS(59), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACK] = ACTIONS(121), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(71), + [anon_sym_async] = ACTIONS(155), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), + [anon_sym_DOT_DOT_DOT] = ACTIONS(125), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), [anon_sym_TILDE] = ACTIONS(29), @@ -12754,7 +13092,8 @@ 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(87), + [sym_number] = ACTIONS(127), + [sym_private_property_identifier] = ACTIONS(129), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -12762,121 +13101,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), + [anon_sym_static] = ACTIONS(157), + [anon_sym_readonly] = ACTIONS(159), + [anon_sym_get] = ACTIONS(161), + [anon_sym_set] = ACTIONS(161), + [anon_sym_declare] = ACTIONS(163), + [anon_sym_public] = ACTIONS(165), + [anon_sym_private] = ACTIONS(165), + [anon_sym_protected] = ACTIONS(165), + [anon_sym_module] = ACTIONS(167), + [anon_sym_any] = ACTIONS(169), + [anon_sym_number] = ACTIONS(169), + [anon_sym_boolean] = ACTIONS(169), + [anon_sym_string] = ACTIONS(169), + [anon_sym_symbol] = ACTIONS(169), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [2] = { - [sym_export_statement] = STATE(32), - [sym_declaration] = STATE(32), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_for_in_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_with_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_debugger_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_empty_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5284), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [4] = { + [sym_export_statement] = STATE(18), + [sym_declaration] = STATE(18), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5138), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5284), - [sym_pair] = STATE(5284), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5285), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(107), - [anon_sym_export] = ACTIONS(109), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5138), + [sym_pair] = STATE(5138), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5152), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(171), + [anon_sym_export] = ACTIONS(173), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(113), - [anon_sym_namespace] = ACTIONS(115), + [anon_sym_type] = ACTIONS(175), + [anon_sym_namespace] = ACTIONS(177), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(119), + [anon_sym_RBRACE] = ACTIONS(179), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -12903,7 +13242,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(123), + [anon_sym_async] = ACTIONS(181), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -12927,121 +13266,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(131), - [anon_sym_readonly] = ACTIONS(133), - [anon_sym_get] = ACTIONS(135), - [anon_sym_set] = ACTIONS(135), - [anon_sym_declare] = ACTIONS(137), - [anon_sym_public] = ACTIONS(139), - [anon_sym_private] = ACTIONS(139), - [anon_sym_protected] = ACTIONS(139), - [anon_sym_module] = ACTIONS(141), - [anon_sym_any] = ACTIONS(143), - [anon_sym_number] = ACTIONS(143), - [anon_sym_boolean] = ACTIONS(143), - [anon_sym_string] = ACTIONS(143), - [anon_sym_symbol] = ACTIONS(143), + [anon_sym_static] = ACTIONS(183), + [anon_sym_readonly] = ACTIONS(185), + [anon_sym_get] = ACTIONS(187), + [anon_sym_set] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_public] = ACTIONS(191), + [anon_sym_private] = ACTIONS(191), + [anon_sym_protected] = ACTIONS(191), + [anon_sym_module] = ACTIONS(193), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [3] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5106), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [5] = { + [sym_export_statement] = STATE(26), + [sym_declaration] = STATE(26), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5167), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5106), - [sym_pair] = STATE(5106), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5142), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(145), - [anon_sym_export] = ACTIONS(147), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5167), + [sym_pair] = STATE(5167), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5170), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(197), + [anon_sym_export] = ACTIONS(199), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(151), + [anon_sym_type] = ACTIONS(201), + [anon_sym_namespace] = ACTIONS(203), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(205), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13068,7 +13407,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(207), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -13092,32 +13431,32 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(157), - [anon_sym_readonly] = ACTIONS(159), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(161), - [anon_sym_declare] = ACTIONS(163), - [anon_sym_public] = ACTIONS(165), - [anon_sym_private] = ACTIONS(165), - [anon_sym_protected] = ACTIONS(165), - [anon_sym_module] = ACTIONS(167), - [anon_sym_any] = ACTIONS(169), - [anon_sym_number] = ACTIONS(169), - [anon_sym_boolean] = ACTIONS(169), - [anon_sym_string] = ACTIONS(169), - [anon_sym_symbol] = ACTIONS(169), + [anon_sym_static] = ACTIONS(209), + [anon_sym_readonly] = ACTIONS(211), + [anon_sym_get] = ACTIONS(213), + [anon_sym_set] = ACTIONS(213), + [anon_sym_declare] = ACTIONS(215), + [anon_sym_public] = ACTIONS(217), + [anon_sym_private] = ACTIONS(217), + [anon_sym_protected] = ACTIONS(217), + [anon_sym_module] = ACTIONS(219), + [anon_sym_any] = ACTIONS(221), + [anon_sym_number] = ACTIONS(221), + [anon_sym_boolean] = ACTIONS(221), + [anon_sym_string] = ACTIONS(221), + [anon_sym_symbol] = ACTIONS(221), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [4] = { + [6] = { [sym_export_statement] = STATE(18), [sym_declaration] = STATE(18), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(18), [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(18), [sym_if_statement] = STATE(18), [sym_switch_statement] = STATE(18), @@ -13134,79 +13473,79 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(18), [sym_empty_statement] = STATE(18), [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5106), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5138), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5106), - [sym_pair] = STATE(5106), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5138), + [sym_pair] = STATE(5138), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5142), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(145), - [anon_sym_export] = ACTIONS(147), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5152), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(171), + [anon_sym_export] = ACTIONS(173), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(151), + [anon_sym_type] = ACTIONS(175), + [anon_sym_namespace] = ACTIONS(177), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(171), + [anon_sym_RBRACE] = ACTIONS(223), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13233,7 +13572,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(181), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -13257,121 +13596,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(157), - [anon_sym_readonly] = ACTIONS(159), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(161), - [anon_sym_declare] = ACTIONS(163), - [anon_sym_public] = ACTIONS(165), - [anon_sym_private] = ACTIONS(165), - [anon_sym_protected] = ACTIONS(165), - [anon_sym_module] = ACTIONS(167), - [anon_sym_any] = ACTIONS(169), - [anon_sym_number] = ACTIONS(169), - [anon_sym_boolean] = ACTIONS(169), - [anon_sym_string] = ACTIONS(169), - [anon_sym_symbol] = ACTIONS(169), + [anon_sym_static] = ACTIONS(183), + [anon_sym_readonly] = ACTIONS(185), + [anon_sym_get] = ACTIONS(187), + [anon_sym_set] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_public] = ACTIONS(191), + [anon_sym_private] = ACTIONS(191), + [anon_sym_protected] = ACTIONS(191), + [anon_sym_module] = ACTIONS(193), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [5] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5106), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [7] = { + [sym_export_statement] = STATE(17), + [sym_declaration] = STATE(17), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5138), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5106), - [sym_pair] = STATE(5106), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5142), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(145), - [anon_sym_export] = ACTIONS(147), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5138), + [sym_pair] = STATE(5138), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5152), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(225), + [anon_sym_export] = ACTIONS(227), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(149), - [anon_sym_namespace] = ACTIONS(151), + [anon_sym_type] = ACTIONS(229), + [anon_sym_namespace] = ACTIONS(231), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(173), + [anon_sym_RBRACE] = ACTIONS(233), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13398,7 +13737,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(235), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -13422,121 +13761,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(157), - [anon_sym_readonly] = ACTIONS(159), - [anon_sym_get] = ACTIONS(161), - [anon_sym_set] = ACTIONS(161), - [anon_sym_declare] = ACTIONS(163), - [anon_sym_public] = ACTIONS(165), - [anon_sym_private] = ACTIONS(165), - [anon_sym_protected] = ACTIONS(165), - [anon_sym_module] = ACTIONS(167), - [anon_sym_any] = ACTIONS(169), - [anon_sym_number] = ACTIONS(169), - [anon_sym_boolean] = ACTIONS(169), - [anon_sym_string] = ACTIONS(169), - [anon_sym_symbol] = ACTIONS(169), + [anon_sym_static] = ACTIONS(237), + [anon_sym_readonly] = ACTIONS(239), + [anon_sym_get] = ACTIONS(241), + [anon_sym_set] = ACTIONS(241), + [anon_sym_declare] = ACTIONS(243), + [anon_sym_public] = ACTIONS(245), + [anon_sym_private] = ACTIONS(245), + [anon_sym_protected] = ACTIONS(245), + [anon_sym_module] = ACTIONS(247), + [anon_sym_any] = ACTIONS(249), + [anon_sym_number] = ACTIONS(249), + [anon_sym_boolean] = ACTIONS(249), + [anon_sym_string] = ACTIONS(249), + [anon_sym_symbol] = ACTIONS(249), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [6] = { - [sym_export_statement] = STATE(25), - [sym_declaration] = STATE(25), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5282), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [8] = { + [sym_export_statement] = STATE(32), + [sym_declaration] = STATE(32), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_for_in_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym_with_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_debugger_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_throw_statement] = STATE(32), + [sym_empty_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5369), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5282), - [sym_pair] = STATE(5282), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5272), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(175), - [anon_sym_export] = ACTIONS(177), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5369), + [sym_pair] = STATE(5369), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5372), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(251), + [anon_sym_export] = ACTIONS(253), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(179), - [anon_sym_namespace] = ACTIONS(181), + [anon_sym_type] = ACTIONS(255), + [anon_sym_namespace] = ACTIONS(257), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(259), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13563,7 +13902,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(185), + [anon_sym_async] = ACTIONS(261), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -13587,121 +13926,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(187), - [anon_sym_readonly] = ACTIONS(189), - [anon_sym_get] = ACTIONS(191), - [anon_sym_set] = ACTIONS(191), - [anon_sym_declare] = ACTIONS(193), - [anon_sym_public] = ACTIONS(195), - [anon_sym_private] = ACTIONS(195), - [anon_sym_protected] = ACTIONS(195), - [anon_sym_module] = ACTIONS(197), - [anon_sym_any] = ACTIONS(199), - [anon_sym_number] = ACTIONS(199), - [anon_sym_boolean] = ACTIONS(199), - [anon_sym_string] = ACTIONS(199), - [anon_sym_symbol] = ACTIONS(199), + [anon_sym_static] = ACTIONS(263), + [anon_sym_readonly] = ACTIONS(265), + [anon_sym_get] = ACTIONS(267), + [anon_sym_set] = ACTIONS(267), + [anon_sym_declare] = ACTIONS(269), + [anon_sym_public] = ACTIONS(271), + [anon_sym_private] = ACTIONS(271), + [anon_sym_protected] = ACTIONS(271), + [anon_sym_module] = ACTIONS(273), + [anon_sym_any] = ACTIONS(275), + [anon_sym_number] = ACTIONS(275), + [anon_sym_boolean] = ACTIONS(275), + [anon_sym_string] = ACTIONS(275), + [anon_sym_symbol] = ACTIONS(275), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [7] = { - [sym_export_statement] = STATE(25), - [sym_declaration] = STATE(25), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5282), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [9] = { + [sym_export_statement] = STATE(26), + [sym_declaration] = STATE(26), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5167), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5282), - [sym_pair] = STATE(5282), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5272), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(201), - [anon_sym_export] = ACTIONS(203), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5167), + [sym_pair] = STATE(5167), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5170), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(205), - [anon_sym_namespace] = ACTIONS(207), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(119), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13728,7 +14067,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(209), + [anon_sym_async] = ACTIONS(285), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -13752,121 +14091,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(211), - [anon_sym_readonly] = ACTIONS(213), - [anon_sym_get] = ACTIONS(215), - [anon_sym_set] = ACTIONS(215), - [anon_sym_declare] = ACTIONS(217), - [anon_sym_public] = ACTIONS(219), - [anon_sym_private] = ACTIONS(219), - [anon_sym_protected] = ACTIONS(219), - [anon_sym_module] = ACTIONS(221), - [anon_sym_any] = ACTIONS(223), - [anon_sym_number] = ACTIONS(223), - [anon_sym_boolean] = ACTIONS(223), - [anon_sym_string] = ACTIONS(223), - [anon_sym_symbol] = ACTIONS(223), + [anon_sym_static] = ACTIONS(287), + [anon_sym_readonly] = ACTIONS(289), + [anon_sym_get] = ACTIONS(291), + [anon_sym_set] = ACTIONS(291), + [anon_sym_declare] = ACTIONS(293), + [anon_sym_public] = ACTIONS(295), + [anon_sym_private] = ACTIONS(295), + [anon_sym_protected] = ACTIONS(295), + [anon_sym_module] = ACTIONS(297), + [anon_sym_any] = ACTIONS(299), + [anon_sym_number] = ACTIONS(299), + [anon_sym_boolean] = ACTIONS(299), + [anon_sym_string] = ACTIONS(299), + [anon_sym_symbol] = ACTIONS(299), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [8] = { - [sym_export_statement] = STATE(25), - [sym_declaration] = STATE(25), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5282), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [10] = { + [sym_export_statement] = STATE(17), + [sym_declaration] = STATE(17), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5996), + [sym_object_assignment_pattern] = STATE(5136), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5996), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5996), + [sym_spread_element] = STATE(5138), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(3490), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5282), - [sym_pair] = STATE(5282), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5272), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(225), - [anon_sym_export] = ACTIONS(227), + [sym_formal_parameters] = STATE(4737), + [sym_rest_pattern] = STATE(5136), + [sym_method_definition] = STATE(5138), + [sym_pair] = STATE(5138), + [sym_pair_pattern] = STATE(5136), + [sym__property_name] = STATE(4396), + [sym_computed_property_name] = STATE(4396), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_accessibility_modifier] = STATE(3834), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4457), + [aux_sym_object_repeat1] = STATE(5152), + [aux_sym_object_pattern_repeat1] = STATE(5156), + [sym_identifier] = ACTIONS(171), + [anon_sym_export] = ACTIONS(173), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(229), - [anon_sym_namespace] = ACTIONS(231), + [anon_sym_type] = ACTIONS(175), + [anon_sym_namespace] = ACTIONS(177), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(301), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13893,337 +14232,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(235), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_DOT_DOT_DOT] = ACTIONS(125), - [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(127), - [sym_private_property_identifier] = ACTIONS(129), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(237), - [anon_sym_readonly] = ACTIONS(239), - [anon_sym_get] = ACTIONS(241), - [anon_sym_set] = ACTIONS(241), - [anon_sym_declare] = ACTIONS(243), - [anon_sym_public] = ACTIONS(245), - [anon_sym_private] = ACTIONS(245), - [anon_sym_protected] = ACTIONS(245), - [anon_sym_module] = ACTIONS(247), - [anon_sym_any] = ACTIONS(249), - [anon_sym_number] = ACTIONS(249), - [anon_sym_boolean] = ACTIONS(249), - [anon_sym_string] = ACTIONS(249), - [anon_sym_symbol] = ACTIONS(249), - [anon_sym_abstract] = ACTIONS(101), - [anon_sym_interface] = ACTIONS(103), - [anon_sym_enum] = ACTIONS(105), - }, - [9] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5106), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5106), - [sym_pair] = STATE(5106), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5142), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(251), - [anon_sym_export] = ACTIONS(253), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(255), - [anon_sym_namespace] = ACTIONS(257), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(259), - [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(121), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(261), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(75), - [anon_sym_DOT_DOT_DOT] = ACTIONS(125), - [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(127), - [sym_private_property_identifier] = ACTIONS(129), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(263), - [anon_sym_readonly] = ACTIONS(265), - [anon_sym_get] = ACTIONS(267), - [anon_sym_set] = ACTIONS(267), - [anon_sym_declare] = ACTIONS(269), - [anon_sym_public] = ACTIONS(271), - [anon_sym_private] = ACTIONS(271), - [anon_sym_protected] = ACTIONS(271), - [anon_sym_module] = ACTIONS(273), - [anon_sym_any] = ACTIONS(275), - [anon_sym_number] = ACTIONS(275), - [anon_sym_boolean] = ACTIONS(275), - [anon_sym_string] = ACTIONS(275), - [anon_sym_symbol] = ACTIONS(275), - [anon_sym_abstract] = ACTIONS(101), - [anon_sym_interface] = ACTIONS(103), - [anon_sym_enum] = ACTIONS(105), - }, - [10] = { - [sym_export_statement] = STATE(29), - [sym_declaration] = STATE(29), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_for_in_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_with_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_debugger_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_empty_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5877), - [sym_object_assignment_pattern] = STATE(5148), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5877), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5877), - [sym_spread_element] = STATE(5108), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(3475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_rest_pattern] = STATE(5148), - [sym_method_definition] = STATE(5108), - [sym_pair] = STATE(5108), - [sym_pair_pattern] = STATE(5148), - [sym__property_name] = STATE(4362), - [sym_computed_property_name] = STATE(4362), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_accessibility_modifier] = STATE(3832), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(4545), - [aux_sym_object_repeat1] = STATE(5243), - [aux_sym_object_pattern_repeat1] = STATE(5141), - [sym_identifier] = ACTIONS(277), - [anon_sym_export] = ACTIONS(279), - [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(281), - [anon_sym_namespace] = ACTIONS(283), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(285), - [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(121), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(287), + [anon_sym_async] = ACTIONS(181), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -14247,20 +14256,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(289), - [anon_sym_readonly] = ACTIONS(291), - [anon_sym_get] = ACTIONS(293), - [anon_sym_set] = ACTIONS(293), - [anon_sym_declare] = ACTIONS(295), - [anon_sym_public] = ACTIONS(297), - [anon_sym_private] = ACTIONS(297), - [anon_sym_protected] = ACTIONS(297), - [anon_sym_module] = ACTIONS(299), - [anon_sym_any] = ACTIONS(301), - [anon_sym_number] = ACTIONS(301), - [anon_sym_boolean] = ACTIONS(301), - [anon_sym_string] = ACTIONS(301), - [anon_sym_symbol] = ACTIONS(301), + [anon_sym_static] = ACTIONS(183), + [anon_sym_readonly] = ACTIONS(185), + [anon_sym_get] = ACTIONS(187), + [anon_sym_set] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_public] = ACTIONS(191), + [anon_sym_private] = ACTIONS(191), + [anon_sym_protected] = ACTIONS(191), + [anon_sym_module] = ACTIONS(193), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), @@ -14268,11 +14277,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [11] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -14289,60 +14298,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [aux_sym_export_statement_repeat1] = STATE(4457), [ts_builtin_sym_end] = ACTIONS(303), [sym_identifier] = ACTIONS(305), [anon_sym_export] = ACTIONS(308), @@ -14419,83 +14428,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(451), }, [12] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(13), + [sym_declaration] = STATE(13), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(13), + [sym_expression_statement] = STATE(13), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(13), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(454), @@ -14571,83 +14580,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [13] = { - [sym_export_statement] = STATE(12), - [sym_declaration] = STATE(12), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(12), - [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(458), @@ -14723,83 +14732,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [14] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(462), @@ -14875,83 +14884,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [15] = { - [sym_export_statement] = STATE(14), - [sym_declaration] = STATE(14), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(14), - [sym_expression_statement] = STATE(14), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(14), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(466), @@ -15027,83 +15036,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [16] = { - [sym_export_statement] = STATE(18), - [sym_declaration] = STATE(18), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(18), - [sym_expression_statement] = STATE(18), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(18), - [sym_if_statement] = STATE(18), - [sym_switch_statement] = STATE(18), - [sym_for_statement] = STATE(18), - [sym_for_in_statement] = STATE(18), - [sym_while_statement] = STATE(18), - [sym_do_statement] = STATE(18), - [sym_try_statement] = STATE(18), - [sym_with_statement] = STATE(18), - [sym_break_statement] = STATE(18), - [sym_continue_statement] = STATE(18), - [sym_debugger_statement] = STATE(18), - [sym_return_statement] = STATE(18), - [sym_throw_statement] = STATE(18), - [sym_empty_statement] = STATE(18), - [sym_labeled_statement] = STATE(18), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(29), + [sym_declaration] = STATE(29), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(29), + [sym_expression_statement] = STATE(29), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(29), + [sym_if_statement] = STATE(29), + [sym_switch_statement] = STATE(29), + [sym_for_statement] = STATE(29), + [sym_for_in_statement] = STATE(29), + [sym_while_statement] = STATE(29), + [sym_do_statement] = STATE(29), + [sym_try_statement] = STATE(29), + [sym_with_statement] = STATE(29), + [sym_break_statement] = STATE(29), + [sym_continue_statement] = STATE(29), + [sym_debugger_statement] = STATE(29), + [sym_return_statement] = STATE(29), + [sym_throw_statement] = STATE(29), + [sym_empty_statement] = STATE(29), + [sym_labeled_statement] = STATE(29), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(18), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(29), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15177,83 +15186,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [17] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15329,11 +15338,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [18] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -15350,60 +15359,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15477,83 +15486,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [19] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(32), + [sym_declaration] = STATE(32), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(32), + [sym_expression_statement] = STATE(32), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(32), + [sym_if_statement] = STATE(32), + [sym_switch_statement] = STATE(32), + [sym_for_statement] = STATE(32), + [sym_for_in_statement] = STATE(32), + [sym_while_statement] = STATE(32), + [sym_do_statement] = STATE(32), + [sym_try_statement] = STATE(32), + [sym_with_statement] = STATE(32), + [sym_break_statement] = STATE(32), + [sym_continue_statement] = STATE(32), + [sym_debugger_statement] = STATE(32), + [sym_return_statement] = STATE(32), + [sym_throw_statement] = STATE(32), + [sym_empty_statement] = STATE(32), + [sym_labeled_statement] = STATE(32), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(32), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15627,83 +15636,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [20] = { - [sym_export_statement] = STATE(23), - [sym_declaration] = STATE(23), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -15777,89 +15786,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [21] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), - [ts_builtin_sym_end] = ACTIONS(480), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(480), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15929,11 +15938,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [22] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -15950,66 +15959,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), - [ts_builtin_sym_end] = ACTIONS(482), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(482), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16079,11 +16088,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [23] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -16100,66 +16109,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [aux_sym_export_statement_repeat1] = STATE(4457), + [ts_builtin_sym_end] = ACTIONS(484), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(484), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16229,11 +16238,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [24] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -16250,66 +16259,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [aux_sym_export_statement_repeat1] = STATE(4457), + [ts_builtin_sym_end] = ACTIONS(486), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16377,83 +16386,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [25] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(26), + [sym_declaration] = STATE(26), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(26), + [sym_expression_statement] = STATE(26), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(26), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16527,83 +16536,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [26] = { - [sym_export_statement] = STATE(29), - [sym_declaration] = STATE(29), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(29), - [sym_expression_statement] = STATE(29), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(29), - [sym_if_statement] = STATE(29), - [sym_switch_statement] = STATE(29), - [sym_for_statement] = STATE(29), - [sym_for_in_statement] = STATE(29), - [sym_while_statement] = STATE(29), - [sym_do_statement] = STATE(29), - [sym_try_statement] = STATE(29), - [sym_with_statement] = STATE(29), - [sym_break_statement] = STATE(29), - [sym_continue_statement] = STATE(29), - [sym_debugger_statement] = STATE(29), - [sym_return_statement] = STATE(29), - [sym_throw_statement] = STATE(29), - [sym_empty_statement] = STATE(29), - [sym_labeled_statement] = STATE(29), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(29), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16677,83 +16686,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [27] = { - [sym_export_statement] = STATE(25), - [sym_declaration] = STATE(25), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(25), - [sym_expression_statement] = STATE(25), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(17), + [sym_declaration] = STATE(17), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(17), + [sym_expression_statement] = STATE(17), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(25), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(17), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16827,83 +16836,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [28] = { - [sym_export_statement] = STATE(32), - [sym_declaration] = STATE(32), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(32), - [sym_expression_statement] = STATE(32), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(32), - [sym_if_statement] = STATE(32), - [sym_switch_statement] = STATE(32), - [sym_for_statement] = STATE(32), - [sym_for_in_statement] = STATE(32), - [sym_while_statement] = STATE(32), - [sym_do_statement] = STATE(32), - [sym_try_statement] = STATE(32), - [sym_with_statement] = STATE(32), - [sym_break_statement] = STATE(32), - [sym_continue_statement] = STATE(32), - [sym_debugger_statement] = STATE(32), - [sym_return_statement] = STATE(32), - [sym_throw_statement] = STATE(32), - [sym_empty_statement] = STATE(32), - [sym_labeled_statement] = STATE(32), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(18), + [sym_declaration] = STATE(18), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(18), + [sym_expression_statement] = STATE(18), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(18), + [sym_if_statement] = STATE(18), + [sym_switch_statement] = STATE(18), + [sym_for_statement] = STATE(18), + [sym_for_in_statement] = STATE(18), + [sym_while_statement] = STATE(18), + [sym_do_statement] = STATE(18), + [sym_try_statement] = STATE(18), + [sym_with_statement] = STATE(18), + [sym_break_statement] = STATE(18), + [sym_continue_statement] = STATE(18), + [sym_debugger_statement] = STATE(18), + [sym_return_statement] = STATE(18), + [sym_throw_statement] = STATE(18), + [sym_empty_statement] = STATE(18), + [sym_labeled_statement] = STATE(18), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(18), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -16979,11 +16988,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [29] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -17000,60 +17009,60 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -17127,89 +17136,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [30] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(33), + [sym_declaration] = STATE(33), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(33), + [sym_expression_statement] = STATE(33), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(33), + [sym_if_statement] = STATE(33), + [sym_switch_statement] = STATE(33), + [sym_for_statement] = STATE(33), + [sym_for_in_statement] = STATE(33), + [sym_while_statement] = STATE(33), + [sym_do_statement] = STATE(33), + [sym_try_statement] = STATE(33), + [sym_with_statement] = STATE(33), + [sym_break_statement] = STATE(33), + [sym_continue_statement] = STATE(33), + [sym_debugger_statement] = STATE(33), + [sym_return_statement] = STATE(33), + [sym_throw_statement] = STATE(33), + [sym_empty_statement] = STATE(33), + [sym_labeled_statement] = STATE(33), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(4545), - [ts_builtin_sym_end] = ACTIONS(482), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(33), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17277,89 +17286,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [31] = { - [sym_export_statement] = STATE(33), - [sym_declaration] = STATE(33), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(33), - [sym_expression_statement] = STATE(33), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(33), - [sym_if_statement] = STATE(33), - [sym_switch_statement] = STATE(33), - [sym_for_statement] = STATE(33), - [sym_for_in_statement] = STATE(33), - [sym_while_statement] = STATE(33), - [sym_do_statement] = STATE(33), - [sym_try_statement] = STATE(33), - [sym_with_statement] = STATE(33), - [sym_break_statement] = STATE(33), - [sym_continue_statement] = STATE(33), - [sym_debugger_statement] = STATE(33), - [sym_return_statement] = STATE(33), - [sym_throw_statement] = STATE(33), - [sym_empty_statement] = STATE(33), - [sym_labeled_statement] = STATE(33), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(22), + [sym_declaration] = STATE(22), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(33), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(500), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17429,11 +17438,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [32] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -17450,66 +17459,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17579,11 +17588,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [33] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2475), + [sym_import] = STATE(2413), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -17600,66 +17609,66 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4545), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(502), + [anon_sym_RBRACE] = ACTIONS(504), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17727,89 +17736,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [34] = { - [sym_export_statement] = STATE(24), - [sym_declaration] = STATE(24), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(24), - [sym_expression_statement] = STATE(24), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [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(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [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(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_program_repeat1] = STATE(24), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(4457), + [ts_builtin_sym_end] = ACTIONS(486), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(504), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17877,102 +17886,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [35] = { - [sym_export_statement] = STATE(1138), - [sym_declaration] = STATE(1138), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1138), - [sym_if_statement] = STATE(1138), - [sym_switch_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_for_in_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_statement] = STATE(1138), - [sym_try_statement] = STATE(1138), - [sym_with_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_debugger_statement] = STATE(1138), - [sym_return_statement] = STATE(1138), - [sym_throw_statement] = STATE(1138), - [sym_empty_statement] = STATE(1138), - [sym_labeled_statement] = STATE(1138), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1107), + [sym_declaration] = STATE(1107), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1107), + [sym_expression_statement] = STATE(1107), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1107), + [sym_if_statement] = STATE(1107), + [sym_switch_statement] = STATE(1107), + [sym_for_statement] = STATE(1107), + [sym_for_in_statement] = STATE(1107), + [sym_while_statement] = STATE(1107), + [sym_do_statement] = STATE(1107), + [sym_try_statement] = STATE(1107), + [sym_with_statement] = STATE(1107), + [sym_break_statement] = STATE(1107), + [sym_continue_statement] = STATE(1107), + [sym_debugger_statement] = STATE(1107), + [sym_return_statement] = STATE(1107), + [sym_throw_statement] = STATE(1107), + [sym_empty_statement] = STATE(1107), + [sym_labeled_statement] = STATE(1107), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(514), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17983,9 +17992,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(524), - [anon_sym_async] = ACTIONS(526), - [anon_sym_function] = ACTIONS(528), + [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), @@ -18006,101 +18015,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [36] = { - [sym_export_statement] = STATE(1110), - [sym_declaration] = STATE(1109), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1107), - [sym_expression_statement] = STATE(1106), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1105), - [sym_if_statement] = STATE(1104), - [sym_switch_statement] = STATE(1101), - [sym_for_statement] = STATE(1100), - [sym_for_in_statement] = STATE(1079), - [sym_while_statement] = STATE(1099), - [sym_do_statement] = STATE(1098), - [sym_try_statement] = STATE(1097), - [sym_with_statement] = STATE(1095), - [sym_break_statement] = STATE(1094), - [sym_continue_statement] = STATE(1093), - [sym_debugger_statement] = STATE(1092), - [sym_return_statement] = STATE(1091), - [sym_throw_statement] = STATE(1088), - [sym_empty_statement] = STATE(1085), - [sym_labeled_statement] = STATE(1083), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1098), + [sym_declaration] = STATE(1099), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1100), + [sym_expression_statement] = STATE(1101), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1102), + [sym_if_statement] = STATE(1103), + [sym_switch_statement] = STATE(1105), + [sym_for_statement] = STATE(1106), + [sym_for_in_statement] = STATE(1108), + [sym_while_statement] = STATE(1109), + [sym_do_statement] = STATE(1110), + [sym_try_statement] = STATE(1112), + [sym_with_statement] = STATE(1113), + [sym_break_statement] = STATE(1114), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1116), + [sym_return_statement] = STATE(1118), + [sym_throw_statement] = STATE(1121), + [sym_empty_statement] = STATE(1124), + [sym_labeled_statement] = STATE(1126), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -18173,86 +18182,234 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [37] = { - [sym_export_statement] = STATE(1131), - [sym_declaration] = STATE(1131), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1131), - [sym_expression_statement] = STATE(1131), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1131), - [sym_if_statement] = STATE(1131), - [sym_switch_statement] = STATE(1131), - [sym_for_statement] = STATE(1131), - [sym_for_in_statement] = STATE(1131), - [sym_while_statement] = STATE(1131), - [sym_do_statement] = STATE(1131), - [sym_try_statement] = STATE(1131), - [sym_with_statement] = STATE(1131), - [sym_break_statement] = STATE(1131), - [sym_continue_statement] = STATE(1131), - [sym_debugger_statement] = STATE(1131), - [sym_return_statement] = STATE(1131), - [sym_throw_statement] = STATE(1131), - [sym_empty_statement] = STATE(1131), - [sym_labeled_statement] = STATE(1131), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1162), + [sym_declaration] = STATE(1162), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1162), + [sym_expression_statement] = STATE(1162), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_for_in_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_statement] = STATE(1162), + [sym_try_statement] = STATE(1162), + [sym_with_statement] = STATE(1162), + [sym_break_statement] = STATE(1162), + [sym_continue_statement] = STATE(1162), + [sym_debugger_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_throw_statement] = STATE(1162), + [sym_empty_statement] = STATE(1162), + [sym_labeled_statement] = STATE(1162), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), - [sym_identifier] = ACTIONS(536), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(540), - [anon_sym_namespace] = ACTIONS(542), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(21), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_if] = ACTIONS(31), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(35), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(41), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(47), + [anon_sym_break] = ACTIONS(49), + [anon_sym_continue] = ACTIONS(51), + [anon_sym_debugger] = ACTIONS(53), + [anon_sym_return] = ACTIONS(55), + [anon_sym_throw] = ACTIONS(57), + [anon_sym_SEMI] = ACTIONS(59), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), + [anon_sym_abstract] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(103), + [anon_sym_enum] = ACTIONS(105), + }, + [38] = { + [sym_export_statement] = STATE(1087), + [sym_declaration] = STATE(1087), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1087), + [sym_expression_statement] = STATE(1087), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1087), + [sym_if_statement] = STATE(1087), + [sym_switch_statement] = STATE(1087), + [sym_for_statement] = STATE(1087), + [sym_for_in_statement] = STATE(1087), + [sym_while_statement] = STATE(1087), + [sym_do_statement] = STATE(1087), + [sym_try_statement] = STATE(1087), + [sym_with_statement] = STATE(1087), + [sym_break_statement] = STATE(1087), + [sym_continue_statement] = STATE(1087), + [sym_debugger_statement] = STATE(1087), + [sym_return_statement] = STATE(1087), + [sym_throw_statement] = STATE(1087), + [sym_empty_statement] = STATE(1087), + [sym_labeled_statement] = STATE(1087), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), [anon_sym_LBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -18260,15 +18417,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(544), + [anon_sym_if] = ACTIONS(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(546), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(548), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(550), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18280,7 +18437,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(524), - [anon_sym_async] = ACTIONS(552), + [anon_sym_async] = ACTIONS(526), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -18302,253 +18459,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(554), - [anon_sym_readonly] = ACTIONS(554), - [anon_sym_get] = ACTIONS(554), - [anon_sym_set] = ACTIONS(554), - [anon_sym_declare] = ACTIONS(556), - [anon_sym_public] = ACTIONS(554), - [anon_sym_private] = ACTIONS(554), - [anon_sym_protected] = ACTIONS(554), - [anon_sym_module] = ACTIONS(558), - [anon_sym_any] = ACTIONS(554), - [anon_sym_number] = ACTIONS(554), - [anon_sym_boolean] = ACTIONS(554), - [anon_sym_string] = ACTIONS(554), - [anon_sym_symbol] = ACTIONS(554), - [anon_sym_abstract] = ACTIONS(101), - [anon_sym_interface] = ACTIONS(103), - [anon_sym_enum] = ACTIONS(105), - }, - [38] = { - [sym_export_statement] = STATE(1189), - [sym_declaration] = STATE(1189), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1189), - [sym_expression_statement] = STATE(1189), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1189), - [sym_if_statement] = STATE(1189), - [sym_switch_statement] = STATE(1189), - [sym_for_statement] = STATE(1189), - [sym_for_in_statement] = STATE(1189), - [sym_while_statement] = STATE(1189), - [sym_do_statement] = STATE(1189), - [sym_try_statement] = STATE(1189), - [sym_with_statement] = STATE(1189), - [sym_break_statement] = STATE(1189), - [sym_continue_statement] = STATE(1189), - [sym_debugger_statement] = STATE(1189), - [sym_return_statement] = STATE(1189), - [sym_throw_statement] = STATE(1189), - [sym_empty_statement] = STATE(1189), - [sym_labeled_statement] = STATE(1189), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), - [sym_identifier] = ACTIONS(536), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(540), - [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(514), - [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(544), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(546), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(548), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(550), - [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(524), - [anon_sym_async] = ACTIONS(552), - [anon_sym_function] = ACTIONS(528), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(554), - [anon_sym_readonly] = ACTIONS(554), - [anon_sym_get] = ACTIONS(554), - [anon_sym_set] = ACTIONS(554), - [anon_sym_declare] = ACTIONS(556), - [anon_sym_public] = ACTIONS(554), - [anon_sym_private] = ACTIONS(554), - [anon_sym_protected] = ACTIONS(554), - [anon_sym_module] = ACTIONS(558), - [anon_sym_any] = ACTIONS(554), - [anon_sym_number] = ACTIONS(554), - [anon_sym_boolean] = ACTIONS(554), - [anon_sym_string] = ACTIONS(554), - [anon_sym_symbol] = ACTIONS(554), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [39] = { - [sym_export_statement] = STATE(1125), - [sym_declaration] = STATE(1125), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1125), - [sym_expression_statement] = STATE(1125), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1125), - [sym_if_statement] = STATE(1125), - [sym_switch_statement] = STATE(1125), - [sym_for_statement] = STATE(1125), - [sym_for_in_statement] = STATE(1125), - [sym_while_statement] = STATE(1125), - [sym_do_statement] = STATE(1125), - [sym_try_statement] = STATE(1125), - [sym_with_statement] = STATE(1125), - [sym_break_statement] = STATE(1125), - [sym_continue_statement] = STATE(1125), - [sym_debugger_statement] = STATE(1125), - [sym_return_statement] = STATE(1125), - [sym_throw_statement] = STATE(1125), - [sym_empty_statement] = STATE(1125), - [sym_labeled_statement] = STATE(1125), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1162), + [sym_declaration] = STATE(1162), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1162), + [sym_expression_statement] = STATE(1162), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_for_in_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_statement] = STATE(1162), + [sym_try_statement] = STATE(1162), + [sym_with_statement] = STATE(1162), + [sym_break_statement] = STATE(1162), + [sym_continue_statement] = STATE(1162), + [sym_debugger_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_throw_statement] = STATE(1162), + [sym_empty_statement] = STATE(1162), + [sym_labeled_statement] = STATE(1162), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), - [sym_identifier] = ACTIONS(536), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(540), - [anon_sym_namespace] = ACTIONS(542), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), [anon_sym_LBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -18556,15 +18565,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(544), + [anon_sym_if] = ACTIONS(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(546), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(548), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(550), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18576,7 +18585,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(524), - [anon_sym_async] = ACTIONS(552), + [anon_sym_async] = ACTIONS(526), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -18598,105 +18607,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(554), - [anon_sym_readonly] = ACTIONS(554), - [anon_sym_get] = ACTIONS(554), - [anon_sym_set] = ACTIONS(554), - [anon_sym_declare] = ACTIONS(556), - [anon_sym_public] = ACTIONS(554), - [anon_sym_private] = ACTIONS(554), - [anon_sym_protected] = ACTIONS(554), - [anon_sym_module] = ACTIONS(558), - [anon_sym_any] = ACTIONS(554), - [anon_sym_number] = ACTIONS(554), - [anon_sym_boolean] = ACTIONS(554), - [anon_sym_string] = ACTIONS(554), - [anon_sym_symbol] = ACTIONS(554), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [40] = { - [sym_export_statement] = STATE(1110), - [sym_declaration] = STATE(1109), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1107), - [sym_expression_statement] = STATE(1106), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1105), - [sym_if_statement] = STATE(1104), - [sym_switch_statement] = STATE(1101), - [sym_for_statement] = STATE(1100), - [sym_for_in_statement] = STATE(1079), - [sym_while_statement] = STATE(1099), - [sym_do_statement] = STATE(1098), - [sym_try_statement] = STATE(1097), - [sym_with_statement] = STATE(1095), - [sym_break_statement] = STATE(1094), - [sym_continue_statement] = STATE(1093), - [sym_debugger_statement] = STATE(1092), - [sym_return_statement] = STATE(1091), - [sym_throw_statement] = STATE(1088), - [sym_empty_statement] = STATE(1085), - [sym_labeled_statement] = STATE(1083), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1098), + [sym_declaration] = STATE(1099), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1100), + [sym_expression_statement] = STATE(1101), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1102), + [sym_if_statement] = STATE(1103), + [sym_switch_statement] = STATE(1105), + [sym_for_statement] = STATE(1106), + [sym_for_in_statement] = STATE(1108), + [sym_while_statement] = STATE(1109), + [sym_do_statement] = STATE(1110), + [sym_try_statement] = STATE(1112), + [sym_with_statement] = STATE(1113), + [sym_break_statement] = STATE(1114), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1116), + [sym_return_statement] = STATE(1118), + [sym_throw_statement] = STATE(1121), + [sym_empty_statement] = STATE(1124), + [sym_labeled_statement] = STATE(1126), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), - [sym_identifier] = ACTIONS(536), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(540), - [anon_sym_namespace] = ACTIONS(542), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), [anon_sym_LBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -18704,15 +18713,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(544), + [anon_sym_if] = ACTIONS(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(546), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(548), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(550), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18724,7 +18733,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(524), - [anon_sym_async] = ACTIONS(552), + [anon_sym_async] = ACTIONS(526), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -18746,105 +18755,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(554), - [anon_sym_readonly] = ACTIONS(554), - [anon_sym_get] = ACTIONS(554), - [anon_sym_set] = ACTIONS(554), - [anon_sym_declare] = ACTIONS(556), - [anon_sym_public] = ACTIONS(554), - [anon_sym_private] = ACTIONS(554), - [anon_sym_protected] = ACTIONS(554), - [anon_sym_module] = ACTIONS(558), - [anon_sym_any] = ACTIONS(554), - [anon_sym_number] = ACTIONS(554), - [anon_sym_boolean] = ACTIONS(554), - [anon_sym_string] = ACTIONS(554), - [anon_sym_symbol] = ACTIONS(554), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [41] = { - [sym_export_statement] = STATE(1138), - [sym_declaration] = STATE(1138), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1138), - [sym_if_statement] = STATE(1138), - [sym_switch_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_for_in_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_statement] = STATE(1138), - [sym_try_statement] = STATE(1138), - [sym_with_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_debugger_statement] = STATE(1138), - [sym_return_statement] = STATE(1138), - [sym_throw_statement] = STATE(1138), - [sym_empty_statement] = STATE(1138), - [sym_labeled_statement] = STATE(1138), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1107), + [sym_declaration] = STATE(1107), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1107), + [sym_expression_statement] = STATE(1107), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1107), + [sym_if_statement] = STATE(1107), + [sym_switch_statement] = STATE(1107), + [sym_for_statement] = STATE(1107), + [sym_for_in_statement] = STATE(1107), + [sym_while_statement] = STATE(1107), + [sym_do_statement] = STATE(1107), + [sym_try_statement] = STATE(1107), + [sym_with_statement] = STATE(1107), + [sym_break_statement] = STATE(1107), + [sym_continue_statement] = STATE(1107), + [sym_debugger_statement] = STATE(1107), + [sym_return_statement] = STATE(1107), + [sym_throw_statement] = STATE(1107), + [sym_empty_statement] = STATE(1107), + [sym_labeled_statement] = STATE(1107), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), - [sym_identifier] = ACTIONS(536), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(540), - [anon_sym_namespace] = ACTIONS(542), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), [anon_sym_LBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -18852,15 +18861,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(544), + [anon_sym_if] = ACTIONS(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(546), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(548), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(550), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18872,7 +18881,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(524), - [anon_sym_async] = ACTIONS(552), + [anon_sym_async] = ACTIONS(526), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -18894,121 +18903,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(554), - [anon_sym_readonly] = ACTIONS(554), - [anon_sym_get] = ACTIONS(554), - [anon_sym_set] = ACTIONS(554), - [anon_sym_declare] = ACTIONS(556), - [anon_sym_public] = ACTIONS(554), - [anon_sym_private] = ACTIONS(554), - [anon_sym_protected] = ACTIONS(554), - [anon_sym_module] = ACTIONS(558), - [anon_sym_any] = ACTIONS(554), - [anon_sym_number] = ACTIONS(554), - [anon_sym_boolean] = ACTIONS(554), - [anon_sym_string] = ACTIONS(554), - [anon_sym_symbol] = ACTIONS(554), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [42] = { - [sym_export_statement] = STATE(1117), - [sym_declaration] = STATE(1117), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1117), - [sym_expression_statement] = STATE(1117), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1117), - [sym_if_statement] = STATE(1117), - [sym_switch_statement] = STATE(1117), - [sym_for_statement] = STATE(1117), - [sym_for_in_statement] = STATE(1117), - [sym_while_statement] = STATE(1117), - [sym_do_statement] = STATE(1117), - [sym_try_statement] = STATE(1117), - [sym_with_statement] = STATE(1117), - [sym_break_statement] = STATE(1117), - [sym_continue_statement] = STATE(1117), - [sym_debugger_statement] = STATE(1117), - [sym_return_statement] = STATE(1117), - [sym_throw_statement] = STATE(1117), - [sym_empty_statement] = STATE(1117), - [sym_labeled_statement] = STATE(1117), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1087), + [sym_declaration] = STATE(1087), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1087), + [sym_expression_statement] = STATE(1087), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1087), + [sym_if_statement] = STATE(1087), + [sym_switch_statement] = STATE(1087), + [sym_for_statement] = STATE(1087), + [sym_for_in_statement] = STATE(1087), + [sym_while_statement] = STATE(1087), + [sym_do_statement] = STATE(1087), + [sym_try_statement] = STATE(1087), + [sym_with_statement] = STATE(1087), + [sym_break_statement] = STATE(1087), + [sym_continue_statement] = STATE(1087), + [sym_debugger_statement] = STATE(1087), + [sym_return_statement] = STATE(1087), + [sym_throw_statement] = STATE(1087), + [sym_empty_statement] = STATE(1087), + [sym_labeled_statement] = STATE(1087), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), - [sym_identifier] = ACTIONS(536), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(540), - [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(514), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(544), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(546), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(548), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(550), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19019,9 +19028,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(524), - [anon_sym_async] = ACTIONS(552), - [anon_sym_function] = ACTIONS(528), + [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), @@ -19042,105 +19051,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(554), - [anon_sym_readonly] = ACTIONS(554), - [anon_sym_get] = ACTIONS(554), - [anon_sym_set] = ACTIONS(554), - [anon_sym_declare] = ACTIONS(556), - [anon_sym_public] = ACTIONS(554), - [anon_sym_private] = ACTIONS(554), - [anon_sym_protected] = ACTIONS(554), - [anon_sym_module] = ACTIONS(558), - [anon_sym_any] = ACTIONS(554), - [anon_sym_number] = ACTIONS(554), - [anon_sym_boolean] = ACTIONS(554), - [anon_sym_string] = ACTIONS(554), - [anon_sym_symbol] = ACTIONS(554), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [43] = { - [sym_export_statement] = STATE(1084), - [sym_declaration] = STATE(1087), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1089), - [sym_expression_statement] = STATE(1090), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1096), - [sym_if_statement] = STATE(1166), - [sym_switch_statement] = STATE(1150), - [sym_for_statement] = STATE(1156), - [sym_for_in_statement] = STATE(1214), - [sym_while_statement] = STATE(1167), - [sym_do_statement] = STATE(1170), - [sym_try_statement] = STATE(1172), - [sym_with_statement] = STATE(1174), - [sym_break_statement] = STATE(1177), - [sym_continue_statement] = STATE(1178), - [sym_debugger_statement] = STATE(1179), - [sym_return_statement] = STATE(1183), - [sym_throw_statement] = STATE(1184), - [sym_empty_statement] = STATE(1196), - [sym_labeled_statement] = STATE(1201), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1179), + [sym_declaration] = STATE(1181), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1182), + [sym_expression_statement] = STATE(1183), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1184), + [sym_if_statement] = STATE(1185), + [sym_switch_statement] = STATE(1189), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1192), + [sym_while_statement] = STATE(1194), + [sym_do_statement] = STATE(1197), + [sym_try_statement] = STATE(1073), + [sym_with_statement] = STATE(1214), + [sym_break_statement] = STATE(1211), + [sym_continue_statement] = STATE(1209), + [sym_debugger_statement] = STATE(1208), + [sym_return_statement] = STATE(1207), + [sym_throw_statement] = STATE(1206), + [sym_empty_statement] = STATE(1205), + [sym_labeled_statement] = STATE(1204), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), - [sym_identifier] = ACTIONS(536), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(540), - [anon_sym_namespace] = ACTIONS(542), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), [anon_sym_LBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -19148,15 +19157,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(544), + [anon_sym_if] = ACTIONS(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(546), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(548), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(550), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19168,7 +19177,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(524), - [anon_sym_async] = ACTIONS(552), + [anon_sym_async] = ACTIONS(526), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -19190,101 +19199,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(554), - [anon_sym_readonly] = ACTIONS(554), - [anon_sym_get] = ACTIONS(554), - [anon_sym_set] = ACTIONS(554), - [anon_sym_declare] = ACTIONS(556), - [anon_sym_public] = ACTIONS(554), - [anon_sym_private] = ACTIONS(554), - [anon_sym_protected] = ACTIONS(554), - [anon_sym_module] = ACTIONS(558), - [anon_sym_any] = ACTIONS(554), - [anon_sym_number] = ACTIONS(554), - [anon_sym_boolean] = ACTIONS(554), - [anon_sym_string] = ACTIONS(554), - [anon_sym_symbol] = ACTIONS(554), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [44] = { - [sym_export_statement] = STATE(1164), - [sym_declaration] = STATE(1164), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1164), - [sym_expression_statement] = STATE(1164), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1164), - [sym_if_statement] = STATE(1164), - [sym_switch_statement] = STATE(1164), - [sym_for_statement] = STATE(1164), - [sym_for_in_statement] = STATE(1164), - [sym_while_statement] = STATE(1164), - [sym_do_statement] = STATE(1164), - [sym_try_statement] = STATE(1164), - [sym_with_statement] = STATE(1164), - [sym_break_statement] = STATE(1164), - [sym_continue_statement] = STATE(1164), - [sym_debugger_statement] = STATE(1164), - [sym_return_statement] = STATE(1164), - [sym_throw_statement] = STATE(1164), - [sym_empty_statement] = STATE(1164), - [sym_labeled_statement] = STATE(1164), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(5162), + [sym_declaration] = STATE(5162), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(5162), + [sym_expression_statement] = STATE(5162), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(5162), + [sym_if_statement] = STATE(5162), + [sym_switch_statement] = STATE(5162), + [sym_for_statement] = STATE(5162), + [sym_for_in_statement] = STATE(5162), + [sym_while_statement] = STATE(5162), + [sym_do_statement] = STATE(5162), + [sym_try_statement] = STATE(5162), + [sym_with_statement] = STATE(5162), + [sym_break_statement] = STATE(5162), + [sym_continue_statement] = STATE(5162), + [sym_debugger_statement] = STATE(5162), + [sym_return_statement] = STATE(5162), + [sym_throw_statement] = STATE(5162), + [sym_empty_statement] = STATE(5162), + [sym_labeled_statement] = STATE(5162), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(540), @@ -19357,82 +19366,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [45] = { - [sym_export_statement] = STATE(1164), - [sym_declaration] = STATE(1164), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1164), - [sym_expression_statement] = STATE(1164), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1164), - [sym_if_statement] = STATE(1164), - [sym_switch_statement] = STATE(1164), - [sym_for_statement] = STATE(1164), - [sym_for_in_statement] = STATE(1164), - [sym_while_statement] = STATE(1164), - [sym_do_statement] = STATE(1164), - [sym_try_statement] = STATE(1164), - [sym_with_statement] = STATE(1164), - [sym_break_statement] = STATE(1164), - [sym_continue_statement] = STATE(1164), - [sym_debugger_statement] = STATE(1164), - [sym_return_statement] = STATE(1164), - [sym_throw_statement] = STATE(1164), - [sym_empty_statement] = STATE(1164), - [sym_labeled_statement] = STATE(1164), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1127), + [sym_declaration] = STATE(1127), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1127), + [sym_expression_statement] = STATE(1127), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1127), + [sym_if_statement] = STATE(1127), + [sym_switch_statement] = STATE(1127), + [sym_for_statement] = STATE(1127), + [sym_for_in_statement] = STATE(1127), + [sym_while_statement] = STATE(1127), + [sym_do_statement] = STATE(1127), + [sym_try_statement] = STATE(1127), + [sym_with_statement] = STATE(1127), + [sym_break_statement] = STATE(1127), + [sym_continue_statement] = STATE(1127), + [sym_debugger_statement] = STATE(1127), + [sym_return_statement] = STATE(1127), + [sym_throw_statement] = STATE(1127), + [sym_empty_statement] = STATE(1127), + [sym_labeled_statement] = STATE(1127), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -19505,86 +19514,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [46] = { - [sym_export_statement] = STATE(1084), - [sym_declaration] = STATE(1087), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1089), - [sym_expression_statement] = STATE(1090), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1096), - [sym_if_statement] = STATE(1166), - [sym_switch_statement] = STATE(1150), - [sym_for_statement] = STATE(1156), - [sym_for_in_statement] = STATE(1214), - [sym_while_statement] = STATE(1167), - [sym_do_statement] = STATE(1170), - [sym_try_statement] = STATE(1172), - [sym_with_statement] = STATE(1174), - [sym_break_statement] = STATE(1177), - [sym_continue_statement] = STATE(1178), - [sym_debugger_statement] = STATE(1179), - [sym_return_statement] = STATE(1183), - [sym_throw_statement] = STATE(1184), - [sym_empty_statement] = STATE(1196), - [sym_labeled_statement] = STATE(1201), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1179), + [sym_declaration] = STATE(1181), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1182), + [sym_expression_statement] = STATE(1183), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1184), + [sym_if_statement] = STATE(1185), + [sym_switch_statement] = STATE(1189), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1192), + [sym_while_statement] = STATE(1194), + [sym_do_statement] = STATE(1197), + [sym_try_statement] = STATE(1073), + [sym_with_statement] = STATE(1214), + [sym_break_statement] = STATE(1211), + [sym_continue_statement] = STATE(1209), + [sym_debugger_statement] = STATE(1208), + [sym_return_statement] = STATE(1207), + [sym_throw_statement] = STATE(1206), + [sym_empty_statement] = STATE(1205), + [sym_labeled_statement] = STATE(1204), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(540), + [anon_sym_namespace] = ACTIONS(542), [anon_sym_LBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -19592,15 +19601,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(544), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(546), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(548), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(550), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19612,7 +19621,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(524), - [anon_sym_async] = ACTIONS(526), + [anon_sym_async] = ACTIONS(552), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -19634,121 +19643,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(554), + [anon_sym_readonly] = ACTIONS(554), + [anon_sym_get] = ACTIONS(554), + [anon_sym_set] = ACTIONS(554), + [anon_sym_declare] = ACTIONS(556), + [anon_sym_public] = ACTIONS(554), + [anon_sym_private] = ACTIONS(554), + [anon_sym_protected] = ACTIONS(554), + [anon_sym_module] = ACTIONS(558), + [anon_sym_any] = ACTIONS(554), + [anon_sym_number] = ACTIONS(554), + [anon_sym_boolean] = ACTIONS(554), + [anon_sym_string] = ACTIONS(554), + [anon_sym_symbol] = ACTIONS(554), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [47] = { - [sym_export_statement] = STATE(1084), + [sym_export_statement] = STATE(1087), [sym_declaration] = STATE(1087), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1089), - [sym_expression_statement] = STATE(1090), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1096), - [sym_if_statement] = STATE(1166), - [sym_switch_statement] = STATE(1150), - [sym_for_statement] = STATE(1156), - [sym_for_in_statement] = STATE(1214), - [sym_while_statement] = STATE(1167), - [sym_do_statement] = STATE(1170), - [sym_try_statement] = STATE(1172), - [sym_with_statement] = STATE(1174), - [sym_break_statement] = STATE(1177), - [sym_continue_statement] = STATE(1178), - [sym_debugger_statement] = STATE(1179), - [sym_return_statement] = STATE(1183), - [sym_throw_statement] = STATE(1184), - [sym_empty_statement] = STATE(1196), - [sym_labeled_statement] = STATE(1201), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1087), + [sym_expression_statement] = STATE(1087), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1087), + [sym_if_statement] = STATE(1087), + [sym_switch_statement] = STATE(1087), + [sym_for_statement] = STATE(1087), + [sym_for_in_statement] = STATE(1087), + [sym_while_statement] = STATE(1087), + [sym_do_statement] = STATE(1087), + [sym_try_statement] = STATE(1087), + [sym_with_statement] = STATE(1087), + [sym_break_statement] = STATE(1087), + [sym_continue_statement] = STATE(1087), + [sym_debugger_statement] = STATE(1087), + [sym_return_statement] = STATE(1087), + [sym_throw_statement] = STATE(1087), + [sym_empty_statement] = STATE(1087), + [sym_labeled_statement] = STATE(1087), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(540), + [anon_sym_namespace] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(514), [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(544), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(546), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(548), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(550), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19759,9 +19768,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(524), + [anon_sym_async] = ACTIONS(552), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -19782,101 +19791,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), + [anon_sym_static] = ACTIONS(554), + [anon_sym_readonly] = ACTIONS(554), + [anon_sym_get] = ACTIONS(554), + [anon_sym_set] = ACTIONS(554), + [anon_sym_declare] = ACTIONS(556), + [anon_sym_public] = ACTIONS(554), + [anon_sym_private] = ACTIONS(554), + [anon_sym_protected] = ACTIONS(554), + [anon_sym_module] = ACTIONS(558), + [anon_sym_any] = ACTIONS(554), + [anon_sym_number] = ACTIONS(554), + [anon_sym_boolean] = ACTIONS(554), + [anon_sym_string] = ACTIONS(554), + [anon_sym_symbol] = ACTIONS(554), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [48] = { - [sym_export_statement] = STATE(5333), - [sym_declaration] = STATE(5333), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(5333), - [sym_expression_statement] = STATE(5333), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(5333), - [sym_if_statement] = STATE(5333), - [sym_switch_statement] = STATE(5333), - [sym_for_statement] = STATE(5333), - [sym_for_in_statement] = STATE(5333), - [sym_while_statement] = STATE(5333), - [sym_do_statement] = STATE(5333), - [sym_try_statement] = STATE(5333), - [sym_with_statement] = STATE(5333), - [sym_break_statement] = STATE(5333), - [sym_continue_statement] = STATE(5333), - [sym_debugger_statement] = STATE(5333), - [sym_return_statement] = STATE(5333), - [sym_throw_statement] = STATE(5333), - [sym_empty_statement] = STATE(5333), - [sym_labeled_statement] = STATE(5333), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(5119), + [sym_declaration] = STATE(5119), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(5119), + [sym_expression_statement] = STATE(5119), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(5119), + [sym_if_statement] = STATE(5119), + [sym_switch_statement] = STATE(5119), + [sym_for_statement] = STATE(5119), + [sym_for_in_statement] = STATE(5119), + [sym_while_statement] = STATE(5119), + [sym_do_statement] = STATE(5119), + [sym_try_statement] = STATE(5119), + [sym_with_statement] = STATE(5119), + [sym_break_statement] = STATE(5119), + [sym_continue_statement] = STATE(5119), + [sym_debugger_statement] = STATE(5119), + [sym_return_statement] = STATE(5119), + [sym_throw_statement] = STATE(5119), + [sym_empty_statement] = STATE(5119), + [sym_labeled_statement] = STATE(5119), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(540), @@ -19949,82 +19958,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [49] = { - [sym_export_statement] = STATE(1189), - [sym_declaration] = STATE(1189), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1189), - [sym_expression_statement] = STATE(1189), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1189), - [sym_if_statement] = STATE(1189), - [sym_switch_statement] = STATE(1189), - [sym_for_statement] = STATE(1189), - [sym_for_in_statement] = STATE(1189), - [sym_while_statement] = STATE(1189), - [sym_do_statement] = STATE(1189), - [sym_try_statement] = STATE(1189), - [sym_with_statement] = STATE(1189), - [sym_break_statement] = STATE(1189), - [sym_continue_statement] = STATE(1189), - [sym_debugger_statement] = STATE(1189), - [sym_return_statement] = STATE(1189), - [sym_throw_statement] = STATE(1189), - [sym_empty_statement] = STATE(1189), - [sym_labeled_statement] = STATE(1189), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1053), + [sym_declaration] = STATE(1053), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1053), + [sym_expression_statement] = STATE(1053), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1053), + [sym_if_statement] = STATE(1053), + [sym_switch_statement] = STATE(1053), + [sym_for_statement] = STATE(1053), + [sym_for_in_statement] = STATE(1053), + [sym_while_statement] = STATE(1053), + [sym_do_statement] = STATE(1053), + [sym_try_statement] = STATE(1053), + [sym_with_statement] = STATE(1053), + [sym_break_statement] = STATE(1053), + [sym_continue_statement] = STATE(1053), + [sym_debugger_statement] = STATE(1053), + [sym_return_statement] = STATE(1053), + [sym_throw_statement] = STATE(1053), + [sym_empty_statement] = STATE(1053), + [sym_labeled_statement] = STATE(1053), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20097,82 +20106,230 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [50] = { - [sym_export_statement] = STATE(1138), - [sym_declaration] = STATE(1138), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1138), - [sym_expression_statement] = STATE(1138), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1138), - [sym_if_statement] = STATE(1138), - [sym_switch_statement] = STATE(1138), - [sym_for_statement] = STATE(1138), - [sym_for_in_statement] = STATE(1138), - [sym_while_statement] = STATE(1138), - [sym_do_statement] = STATE(1138), - [sym_try_statement] = STATE(1138), - [sym_with_statement] = STATE(1138), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1138), - [sym_debugger_statement] = STATE(1138), - [sym_return_statement] = STATE(1138), - [sym_throw_statement] = STATE(1138), - [sym_empty_statement] = STATE(1138), - [sym_labeled_statement] = STATE(1138), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1162), + [sym_declaration] = STATE(1162), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1162), + [sym_expression_statement] = STATE(1162), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1162), + [sym_if_statement] = STATE(1162), + [sym_switch_statement] = STATE(1162), + [sym_for_statement] = STATE(1162), + [sym_for_in_statement] = STATE(1162), + [sym_while_statement] = STATE(1162), + [sym_do_statement] = STATE(1162), + [sym_try_statement] = STATE(1162), + [sym_with_statement] = STATE(1162), + [sym_break_statement] = STATE(1162), + [sym_continue_statement] = STATE(1162), + [sym_debugger_statement] = STATE(1162), + [sym_return_statement] = STATE(1162), + [sym_throw_statement] = STATE(1162), + [sym_empty_statement] = STATE(1162), + [sym_labeled_statement] = STATE(1162), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(540), + [anon_sym_namespace] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(514), + [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(544), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(546), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(548), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(550), + [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(524), + [anon_sym_async] = ACTIONS(552), + [anon_sym_function] = ACTIONS(528), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(554), + [anon_sym_readonly] = ACTIONS(554), + [anon_sym_get] = ACTIONS(554), + [anon_sym_set] = ACTIONS(554), + [anon_sym_declare] = ACTIONS(556), + [anon_sym_public] = ACTIONS(554), + [anon_sym_private] = ACTIONS(554), + [anon_sym_protected] = ACTIONS(554), + [anon_sym_module] = ACTIONS(558), + [anon_sym_any] = ACTIONS(554), + [anon_sym_number] = ACTIONS(554), + [anon_sym_boolean] = ACTIONS(554), + [anon_sym_string] = ACTIONS(554), + [anon_sym_symbol] = ACTIONS(554), + [anon_sym_abstract] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(103), + [anon_sym_enum] = ACTIONS(105), + }, + [51] = { + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1133), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20244,87 +20401,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [51] = { - [sym_export_statement] = STATE(1110), - [sym_declaration] = STATE(1109), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1107), - [sym_expression_statement] = STATE(1106), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1105), - [sym_if_statement] = STATE(1104), - [sym_switch_statement] = STATE(1101), - [sym_for_statement] = STATE(1100), - [sym_for_in_statement] = STATE(1079), - [sym_while_statement] = STATE(1099), - [sym_do_statement] = STATE(1098), - [sym_try_statement] = STATE(1097), - [sym_with_statement] = STATE(1095), - [sym_break_statement] = STATE(1094), - [sym_continue_statement] = STATE(1093), - [sym_debugger_statement] = STATE(1092), - [sym_return_statement] = STATE(1091), - [sym_throw_statement] = STATE(1088), - [sym_empty_statement] = STATE(1085), - [sym_labeled_statement] = STATE(1083), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [52] = { + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1133), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(540), + [anon_sym_namespace] = ACTIONS(542), [anon_sym_LBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -20332,15 +20489,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(544), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(546), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(548), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(550), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -20352,7 +20509,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(524), - [anon_sym_async] = ACTIONS(526), + [anon_sym_async] = ACTIONS(552), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -20374,121 +20531,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(554), + [anon_sym_readonly] = ACTIONS(554), + [anon_sym_get] = ACTIONS(554), + [anon_sym_set] = ACTIONS(554), + [anon_sym_declare] = ACTIONS(556), + [anon_sym_public] = ACTIONS(554), + [anon_sym_private] = ACTIONS(554), + [anon_sym_protected] = ACTIONS(554), + [anon_sym_module] = ACTIONS(558), + [anon_sym_any] = ACTIONS(554), + [anon_sym_number] = ACTIONS(554), + [anon_sym_boolean] = ACTIONS(554), + [anon_sym_string] = ACTIONS(554), + [anon_sym_symbol] = ACTIONS(554), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [52] = { - [sym_export_statement] = STATE(1164), - [sym_declaration] = STATE(1164), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1164), - [sym_expression_statement] = STATE(1164), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1164), - [sym_if_statement] = STATE(1164), - [sym_switch_statement] = STATE(1164), - [sym_for_statement] = STATE(1164), - [sym_for_in_statement] = STATE(1164), - [sym_while_statement] = STATE(1164), - [sym_do_statement] = STATE(1164), - [sym_try_statement] = STATE(1164), - [sym_with_statement] = STATE(1164), - [sym_break_statement] = STATE(1164), - [sym_continue_statement] = STATE(1164), - [sym_debugger_statement] = STATE(1164), - [sym_return_statement] = STATE(1164), - [sym_throw_statement] = STATE(1164), - [sym_empty_statement] = STATE(1164), - [sym_labeled_statement] = STATE(1164), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [53] = { + [sym_export_statement] = STATE(1107), + [sym_declaration] = STATE(1107), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1107), + [sym_expression_statement] = STATE(1107), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1107), + [sym_if_statement] = STATE(1107), + [sym_switch_statement] = STATE(1107), + [sym_for_statement] = STATE(1107), + [sym_for_in_statement] = STATE(1107), + [sym_while_statement] = STATE(1107), + [sym_do_statement] = STATE(1107), + [sym_try_statement] = STATE(1107), + [sym_with_statement] = STATE(1107), + [sym_break_statement] = STATE(1107), + [sym_continue_statement] = STATE(1107), + [sym_debugger_statement] = STATE(1107), + [sym_return_statement] = STATE(1107), + [sym_throw_statement] = STATE(1107), + [sym_empty_statement] = STATE(1107), + [sym_labeled_statement] = STATE(1107), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(540), + [anon_sym_namespace] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(514), [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(544), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(546), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(548), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(550), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -20499,9 +20656,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(524), + [anon_sym_async] = ACTIONS(552), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -20522,101 +20679,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), + [anon_sym_static] = ACTIONS(554), + [anon_sym_readonly] = ACTIONS(554), + [anon_sym_get] = ACTIONS(554), + [anon_sym_set] = ACTIONS(554), + [anon_sym_declare] = ACTIONS(556), + [anon_sym_public] = ACTIONS(554), + [anon_sym_private] = ACTIONS(554), + [anon_sym_protected] = ACTIONS(554), + [anon_sym_module] = ACTIONS(558), + [anon_sym_any] = ACTIONS(554), + [anon_sym_number] = ACTIONS(554), + [anon_sym_boolean] = ACTIONS(554), + [anon_sym_string] = ACTIONS(554), + [anon_sym_symbol] = ACTIONS(554), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [53] = { - [sym_export_statement] = STATE(1117), - [sym_declaration] = STATE(1117), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1117), - [sym_expression_statement] = STATE(1117), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1117), - [sym_if_statement] = STATE(1117), - [sym_switch_statement] = STATE(1117), - [sym_for_statement] = STATE(1117), - [sym_for_in_statement] = STATE(1117), - [sym_while_statement] = STATE(1117), - [sym_do_statement] = STATE(1117), - [sym_try_statement] = STATE(1117), - [sym_with_statement] = STATE(1117), - [sym_break_statement] = STATE(1117), - [sym_continue_statement] = STATE(1117), - [sym_debugger_statement] = STATE(1117), - [sym_return_statement] = STATE(1117), - [sym_throw_statement] = STATE(1117), - [sym_empty_statement] = STATE(1117), - [sym_labeled_statement] = STATE(1117), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [54] = { + [sym_export_statement] = STATE(1179), + [sym_declaration] = STATE(1181), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1182), + [sym_expression_statement] = STATE(1183), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1184), + [sym_if_statement] = STATE(1185), + [sym_switch_statement] = STATE(1189), + [sym_for_statement] = STATE(1190), + [sym_for_in_statement] = STATE(1192), + [sym_while_statement] = STATE(1194), + [sym_do_statement] = STATE(1197), + [sym_try_statement] = STATE(1073), + [sym_with_statement] = STATE(1214), + [sym_break_statement] = STATE(1211), + [sym_continue_statement] = STATE(1209), + [sym_debugger_statement] = STATE(1208), + [sym_return_statement] = STATE(1207), + [sym_throw_statement] = STATE(1206), + [sym_empty_statement] = STATE(1205), + [sym_labeled_statement] = STATE(1204), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -20688,231 +20845,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [54] = { - [sym_export_statement] = STATE(1125), - [sym_declaration] = STATE(1125), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1125), - [sym_expression_statement] = STATE(1125), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1125), - [sym_if_statement] = STATE(1125), - [sym_switch_statement] = STATE(1125), - [sym_for_statement] = STATE(1125), - [sym_for_in_statement] = STATE(1125), - [sym_while_statement] = STATE(1125), - [sym_do_statement] = STATE(1125), - [sym_try_statement] = STATE(1125), - [sym_with_statement] = STATE(1125), - [sym_break_statement] = STATE(1125), - [sym_continue_statement] = STATE(1125), - [sym_debugger_statement] = STATE(1125), - [sym_return_statement] = STATE(1125), - [sym_throw_statement] = STATE(1125), - [sym_empty_statement] = STATE(1125), - [sym_labeled_statement] = STATE(1125), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(514), - [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(516), - [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), - [anon_sym_do] = ACTIONS(43), - [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), - [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(524), - [anon_sym_async] = ACTIONS(526), - [anon_sym_function] = ACTIONS(528), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), - [anon_sym_abstract] = ACTIONS(101), - [anon_sym_interface] = ACTIONS(103), - [anon_sym_enum] = ACTIONS(105), - }, [55] = { - [sym_export_statement] = STATE(5901), - [sym_declaration] = STATE(5901), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(5901), - [sym_expression_statement] = STATE(5901), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(5901), - [sym_if_statement] = STATE(5901), - [sym_switch_statement] = STATE(5901), - [sym_for_statement] = STATE(5901), - [sym_for_in_statement] = STATE(5901), - [sym_while_statement] = STATE(5901), - [sym_do_statement] = STATE(5901), - [sym_try_statement] = STATE(5901), - [sym_with_statement] = STATE(5901), - [sym_break_statement] = STATE(5901), - [sym_continue_statement] = STATE(5901), - [sym_debugger_statement] = STATE(5901), - [sym_return_statement] = STATE(5901), - [sym_throw_statement] = STATE(5901), - [sym_empty_statement] = STATE(5901), - [sym_labeled_statement] = STATE(5901), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1078), + [sym_declaration] = STATE(1078), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1078), + [sym_expression_statement] = STATE(1078), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1078), + [sym_if_statement] = STATE(1078), + [sym_switch_statement] = STATE(1078), + [sym_for_statement] = STATE(1078), + [sym_for_in_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_do_statement] = STATE(1078), + [sym_try_statement] = STATE(1078), + [sym_with_statement] = STATE(1078), + [sym_break_statement] = STATE(1078), + [sym_continue_statement] = STATE(1078), + [sym_debugger_statement] = STATE(1078), + [sym_return_statement] = STATE(1078), + [sym_throw_statement] = STATE(1078), + [sym_empty_statement] = STATE(1078), + [sym_labeled_statement] = STATE(1078), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -20985,102 +20994,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [56] = { - [sym_export_statement] = STATE(1189), - [sym_declaration] = STATE(1189), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1189), - [sym_expression_statement] = STATE(1189), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1189), - [sym_if_statement] = STATE(1189), - [sym_switch_statement] = STATE(1189), - [sym_for_statement] = STATE(1189), - [sym_for_in_statement] = STATE(1189), - [sym_while_statement] = STATE(1189), - [sym_do_statement] = STATE(1189), - [sym_try_statement] = STATE(1189), - [sym_with_statement] = STATE(1189), - [sym_break_statement] = STATE(1189), - [sym_continue_statement] = STATE(1189), - [sym_debugger_statement] = STATE(1189), - [sym_return_statement] = STATE(1189), - [sym_throw_statement] = STATE(1189), - [sym_empty_statement] = STATE(1189), - [sym_labeled_statement] = STATE(1189), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1127), + [sym_declaration] = STATE(1127), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1127), + [sym_expression_statement] = STATE(1127), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1127), + [sym_if_statement] = STATE(1127), + [sym_switch_statement] = STATE(1127), + [sym_for_statement] = STATE(1127), + [sym_for_in_statement] = STATE(1127), + [sym_while_statement] = STATE(1127), + [sym_do_statement] = STATE(1127), + [sym_try_statement] = STATE(1127), + [sym_with_statement] = STATE(1127), + [sym_break_statement] = STATE(1127), + [sym_continue_statement] = STATE(1127), + [sym_debugger_statement] = STATE(1127), + [sym_return_statement] = STATE(1127), + [sym_throw_statement] = STATE(1127), + [sym_empty_statement] = STATE(1127), + [sym_labeled_statement] = STATE(1127), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(514), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -21091,9 +21100,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(524), - [anon_sym_async] = ACTIONS(526), - [anon_sym_function] = ACTIONS(528), + [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), @@ -21114,101 +21123,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [57] = { - [sym_export_statement] = STATE(1131), - [sym_declaration] = STATE(1131), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1131), - [sym_expression_statement] = STATE(1131), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1131), - [sym_if_statement] = STATE(1131), - [sym_switch_statement] = STATE(1131), - [sym_for_statement] = STATE(1131), - [sym_for_in_statement] = STATE(1131), - [sym_while_statement] = STATE(1131), - [sym_do_statement] = STATE(1131), - [sym_try_statement] = STATE(1131), - [sym_with_statement] = STATE(1131), - [sym_break_statement] = STATE(1131), - [sym_continue_statement] = STATE(1131), - [sym_debugger_statement] = STATE(1131), - [sym_return_statement] = STATE(1131), - [sym_throw_statement] = STATE(1131), - [sym_empty_statement] = STATE(1131), - [sym_labeled_statement] = STATE(1131), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(5907), + [sym_declaration] = STATE(5907), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(5907), + [sym_expression_statement] = STATE(5907), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(5907), + [sym_if_statement] = STATE(5907), + [sym_switch_statement] = STATE(5907), + [sym_for_statement] = STATE(5907), + [sym_for_in_statement] = STATE(5907), + [sym_while_statement] = STATE(5907), + [sym_do_statement] = STATE(5907), + [sym_try_statement] = STATE(5907), + [sym_with_statement] = STATE(5907), + [sym_break_statement] = STATE(5907), + [sym_continue_statement] = STATE(5907), + [sym_debugger_statement] = STATE(5907), + [sym_return_statement] = STATE(5907), + [sym_throw_statement] = STATE(5907), + [sym_empty_statement] = STATE(5907), + [sym_labeled_statement] = STATE(5907), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -21281,82 +21290,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [58] = { - [sym_export_statement] = STATE(1058), - [sym_declaration] = STATE(1058), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1058), - [sym_expression_statement] = STATE(1058), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1058), - [sym_if_statement] = STATE(1058), - [sym_switch_statement] = STATE(1058), - [sym_for_statement] = STATE(1058), - [sym_for_in_statement] = STATE(1058), - [sym_while_statement] = STATE(1058), - [sym_do_statement] = STATE(1058), - [sym_try_statement] = STATE(1058), - [sym_with_statement] = STATE(1058), - [sym_break_statement] = STATE(1058), - [sym_continue_statement] = STATE(1058), - [sym_debugger_statement] = STATE(1058), - [sym_return_statement] = STATE(1058), - [sym_throw_statement] = STATE(1058), - [sym_empty_statement] = STATE(1058), - [sym_labeled_statement] = STATE(1058), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1078), + [sym_declaration] = STATE(1078), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1078), + [sym_expression_statement] = STATE(1078), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1078), + [sym_if_statement] = STATE(1078), + [sym_switch_statement] = STATE(1078), + [sym_for_statement] = STATE(1078), + [sym_for_in_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_do_statement] = STATE(1078), + [sym_try_statement] = STATE(1078), + [sym_with_statement] = STATE(1078), + [sym_break_statement] = STATE(1078), + [sym_continue_statement] = STATE(1078), + [sym_debugger_statement] = STATE(1078), + [sym_return_statement] = STATE(1078), + [sym_throw_statement] = STATE(1078), + [sym_empty_statement] = STATE(1078), + [sym_labeled_statement] = STATE(1078), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4457), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -21429,102 +21438,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [59] = { - [sym_export_statement] = STATE(1131), - [sym_declaration] = STATE(1131), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1131), - [sym_expression_statement] = STATE(1131), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1131), - [sym_if_statement] = STATE(1131), - [sym_switch_statement] = STATE(1131), - [sym_for_statement] = STATE(1131), - [sym_for_in_statement] = STATE(1131), - [sym_while_statement] = STATE(1131), - [sym_do_statement] = STATE(1131), - [sym_try_statement] = STATE(1131), - [sym_with_statement] = STATE(1131), - [sym_break_statement] = STATE(1131), - [sym_continue_statement] = STATE(1131), - [sym_debugger_statement] = STATE(1131), - [sym_return_statement] = STATE(1131), - [sym_throw_statement] = STATE(1131), - [sym_empty_statement] = STATE(1131), - [sym_labeled_statement] = STATE(1131), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1127), + [sym_declaration] = STATE(1127), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1127), + [sym_expression_statement] = STATE(1127), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1127), + [sym_if_statement] = STATE(1127), + [sym_switch_statement] = STATE(1127), + [sym_for_statement] = STATE(1127), + [sym_for_in_statement] = STATE(1127), + [sym_while_statement] = STATE(1127), + [sym_do_statement] = STATE(1127), + [sym_try_statement] = STATE(1127), + [sym_with_statement] = STATE(1127), + [sym_break_statement] = STATE(1127), + [sym_continue_statement] = STATE(1127), + [sym_debugger_statement] = STATE(1127), + [sym_return_statement] = STATE(1127), + [sym_throw_statement] = STATE(1127), + [sym_empty_statement] = STATE(1127), + [sym_labeled_statement] = STATE(1127), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(540), + [anon_sym_namespace] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(514), [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(544), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(546), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(548), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(550), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -21535,9 +21544,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(524), + [anon_sym_async] = ACTIONS(552), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -21558,101 +21567,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), + [anon_sym_static] = ACTIONS(554), + [anon_sym_readonly] = ACTIONS(554), + [anon_sym_get] = ACTIONS(554), + [anon_sym_set] = ACTIONS(554), + [anon_sym_declare] = ACTIONS(556), + [anon_sym_public] = ACTIONS(554), + [anon_sym_private] = ACTIONS(554), + [anon_sym_protected] = ACTIONS(554), + [anon_sym_module] = ACTIONS(558), + [anon_sym_any] = ACTIONS(554), + [anon_sym_number] = ACTIONS(554), + [anon_sym_boolean] = ACTIONS(554), + [anon_sym_string] = ACTIONS(554), + [anon_sym_symbol] = ACTIONS(554), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [60] = { - [sym_export_statement] = STATE(5305), - [sym_declaration] = STATE(5305), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(5305), - [sym_expression_statement] = STATE(5305), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(5305), - [sym_if_statement] = STATE(5305), - [sym_switch_statement] = STATE(5305), - [sym_for_statement] = STATE(5305), - [sym_for_in_statement] = STATE(5305), - [sym_while_statement] = STATE(5305), - [sym_do_statement] = STATE(5305), - [sym_try_statement] = STATE(5305), - [sym_with_statement] = STATE(5305), - [sym_break_statement] = STATE(5305), - [sym_continue_statement] = STATE(5305), - [sym_debugger_statement] = STATE(5305), - [sym_return_statement] = STATE(5305), - [sym_throw_statement] = STATE(5305), - [sym_empty_statement] = STATE(5305), - [sym_labeled_statement] = STATE(5305), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1098), + [sym_declaration] = STATE(1099), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1100), + [sym_expression_statement] = STATE(1101), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1102), + [sym_if_statement] = STATE(1103), + [sym_switch_statement] = STATE(1105), + [sym_for_statement] = STATE(1106), + [sym_for_in_statement] = STATE(1108), + [sym_while_statement] = STATE(1109), + [sym_do_statement] = STATE(1110), + [sym_try_statement] = STATE(1112), + [sym_with_statement] = STATE(1113), + [sym_break_statement] = STATE(1114), + [sym_continue_statement] = STATE(1115), + [sym_debugger_statement] = STATE(1116), + [sym_return_statement] = STATE(1118), + [sym_throw_statement] = STATE(1121), + [sym_empty_statement] = STATE(1124), + [sym_labeled_statement] = STATE(1126), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4439), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(540), @@ -21725,102 +21734,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [61] = { - [sym_export_statement] = STATE(1125), - [sym_declaration] = STATE(1125), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1125), - [sym_expression_statement] = STATE(1125), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1125), - [sym_if_statement] = STATE(1125), - [sym_switch_statement] = STATE(1125), - [sym_for_statement] = STATE(1125), - [sym_for_in_statement] = STATE(1125), - [sym_while_statement] = STATE(1125), - [sym_do_statement] = STATE(1125), - [sym_try_statement] = STATE(1125), - [sym_with_statement] = STATE(1125), - [sym_break_statement] = STATE(1125), - [sym_continue_statement] = STATE(1125), - [sym_debugger_statement] = STATE(1125), - [sym_return_statement] = STATE(1125), - [sym_throw_statement] = STATE(1125), - [sym_empty_statement] = STATE(1125), - [sym_labeled_statement] = STATE(1125), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1133), + [sym_declaration] = STATE(1133), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1133), + [sym_expression_statement] = STATE(1133), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1133), + [sym_if_statement] = STATE(1133), + [sym_switch_statement] = STATE(1133), + [sym_for_statement] = STATE(1133), + [sym_for_in_statement] = STATE(1133), + [sym_while_statement] = STATE(1133), + [sym_do_statement] = STATE(1133), + [sym_try_statement] = STATE(1133), + [sym_with_statement] = STATE(1133), + [sym_break_statement] = STATE(1133), + [sym_continue_statement] = STATE(1133), + [sym_debugger_statement] = STATE(1133), + [sym_return_statement] = STATE(1133), + [sym_throw_statement] = STATE(1133), + [sym_empty_statement] = STATE(1133), + [sym_labeled_statement] = STATE(1133), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4545), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4573), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(514), [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(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -21831,9 +21840,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(524), + [anon_sym_async] = ACTIONS(526), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -21854,105 +21863,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [62] = { - [sym_export_statement] = STATE(1117), - [sym_declaration] = STATE(1117), - [sym_import] = STATE(2475), - [sym_import_statement] = STATE(1117), - [sym_expression_statement] = STATE(1117), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_statement_block] = STATE(1117), - [sym_if_statement] = STATE(1117), - [sym_switch_statement] = STATE(1117), - [sym_for_statement] = STATE(1117), - [sym_for_in_statement] = STATE(1117), - [sym_while_statement] = STATE(1117), - [sym_do_statement] = STATE(1117), - [sym_try_statement] = STATE(1117), - [sym_with_statement] = STATE(1117), - [sym_break_statement] = STATE(1117), - [sym_continue_statement] = STATE(1117), - [sym_debugger_statement] = STATE(1117), - [sym_return_statement] = STATE(1117), - [sym_throw_statement] = STATE(1117), - [sym_empty_statement] = STATE(1117), - [sym_labeled_statement] = STATE(1117), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_export_statement] = STATE(1078), + [sym_declaration] = STATE(1078), + [sym_import] = STATE(2413), + [sym_import_statement] = STATE(1078), + [sym_expression_statement] = STATE(1078), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_statement_block] = STATE(1078), + [sym_if_statement] = STATE(1078), + [sym_switch_statement] = STATE(1078), + [sym_for_statement] = STATE(1078), + [sym_for_in_statement] = STATE(1078), + [sym_while_statement] = STATE(1078), + [sym_do_statement] = STATE(1078), + [sym_try_statement] = STATE(1078), + [sym_with_statement] = STATE(1078), + [sym_break_statement] = STATE(1078), + [sym_continue_statement] = STATE(1078), + [sym_debugger_statement] = STATE(1078), + [sym_return_statement] = STATE(1078), + [sym_throw_statement] = STATE(1078), + [sym_empty_statement] = STATE(1078), + [sym_labeled_statement] = STATE(1078), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4466), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4451), + [sym_identifier] = ACTIONS(536), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(540), + [anon_sym_namespace] = ACTIONS(542), [anon_sym_LBRACE] = ACTIONS(514), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), @@ -21960,15 +21969,15 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(544), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(546), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(548), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(550), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -21980,7 +21989,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(524), - [anon_sym_async] = ACTIONS(526), + [anon_sym_async] = ACTIONS(552), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), @@ -22002,102 +22011,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(554), + [anon_sym_readonly] = ACTIONS(554), + [anon_sym_get] = ACTIONS(554), + [anon_sym_set] = ACTIONS(554), + [anon_sym_declare] = ACTIONS(556), + [anon_sym_public] = ACTIONS(554), + [anon_sym_private] = ACTIONS(554), + [anon_sym_protected] = ACTIONS(554), + [anon_sym_module] = ACTIONS(558), + [anon_sym_any] = ACTIONS(554), + [anon_sym_number] = ACTIONS(554), + [anon_sym_boolean] = ACTIONS(554), + [anon_sym_string] = ACTIONS(554), + [anon_sym_symbol] = ACTIONS(554), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [63] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3054), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5125), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5127), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -22161,83 +22170,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [64] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -22301,83 +22310,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [65] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -22441,83 +22450,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [66] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5291), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5292), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -22581,90 +22590,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [67] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5303), - [sym_optional_tuple_parameter] = STATE(5303), - [sym_optional_type] = STATE(5303), - [sym_rest_type] = STATE(5303), - [sym__tuple_type_member] = STATE(5303), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(648), + [anon_sym_COMMA] = ACTIONS(570), [anon_sym_typeof] = ACTIONS(572), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), @@ -22672,7 +22681,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), [anon_sym_LBRACK] = ACTIONS(584), - [anon_sym_RBRACK] = ACTIONS(650), + [anon_sym_RBRACK] = ACTIONS(648), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), @@ -22721,90 +22730,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [68] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5290), + [sym_optional_tuple_parameter] = STATE(5290), + [sym_optional_type] = STATE(5290), + [sym_rest_type] = STATE(5290), + [sym__tuple_type_member] = STATE(5290), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), [anon_sym_LBRACE] = ACTIONS(568), - [anon_sym_COMMA] = ACTIONS(570), + [anon_sym_COMMA] = ACTIONS(650), [anon_sym_typeof] = ACTIONS(572), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), @@ -22861,83 +22870,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [69] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -23001,83 +23010,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [70] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -23141,83 +23150,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [71] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -23281,83 +23290,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [72] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -23421,83 +23430,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [73] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -23561,83 +23570,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [74] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -23701,83 +23710,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [75] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2981), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5302), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5229), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -23841,83 +23850,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [76] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2927), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5376), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5377), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -23981,83 +23990,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [77] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -24121,83 +24130,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [78] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5291), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2981), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5302), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5292), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5229), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -24261,83 +24270,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [79] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3054), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5125), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2927), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5376), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5127), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5377), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -24401,83 +24410,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [80] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3587), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3570), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4627), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5518), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), + [sym_formal_parameters] = STATE(4612), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5565), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), [sym_identifier] = ACTIONS(560), [anon_sym_export] = ACTIONS(562), [anon_sym_STAR] = ACTIONS(564), @@ -24541,80 +24550,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [81] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(6024), - [sym_string] = STATE(3446), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5793), + [sym_string] = STATE(3497), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4668), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4914), - [sym_constructor_type] = STATE(4914), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4914), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5457), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4914), - [sym_union_type] = STATE(4914), - [sym_intersection_type] = STATE(4914), - [sym_function_type] = STATE(4914), - [aux_sym_export_statement_repeat1] = STATE(3748), + [sym_formal_parameters] = STATE(4804), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(4950), + [sym_constructor_type] = STATE(4950), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4950), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5467), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4950), + [sym_union_type] = STATE(4950), + [sym_intersection_type] = STATE(4950), + [sym_function_type] = STATE(4950), + [aux_sym_export_statement_repeat1] = STATE(3752), [sym_identifier] = ACTIONS(678), [anon_sym_export] = ACTIONS(680), [anon_sym_STAR] = ACTIONS(564), @@ -24677,80 +24686,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [82] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2710), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), [sym_sequence_expression] = STATE(5876), - [sym_string] = STATE(3446), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_string] = STATE(3497), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4668), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4914), - [sym_constructor_type] = STATE(4914), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4914), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5457), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4914), - [sym_union_type] = STATE(4914), - [sym_intersection_type] = STATE(4914), - [sym_function_type] = STATE(4914), - [aux_sym_export_statement_repeat1] = STATE(3748), + [sym_formal_parameters] = STATE(4804), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(4996), + [sym_constructor_type] = STATE(4996), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4996), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5467), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4996), + [sym_union_type] = STATE(4996), + [sym_intersection_type] = STATE(4996), + [sym_function_type] = STATE(4996), + [aux_sym_export_statement_repeat1] = STATE(3752), [sym_identifier] = ACTIONS(678), [anon_sym_export] = ACTIONS(680), [anon_sym_STAR] = ACTIONS(564), @@ -24813,80 +24822,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [83] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2690), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5926), - [sym_string] = STATE(3446), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2719), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5963), + [sym_string] = STATE(3497), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4668), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4914), - [sym_constructor_type] = STATE(4914), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4914), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5457), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4914), - [sym_union_type] = STATE(4914), - [sym_intersection_type] = STATE(4914), - [sym_function_type] = STATE(4914), - [aux_sym_export_statement_repeat1] = STATE(3748), + [sym_formal_parameters] = STATE(4804), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(4950), + [sym_constructor_type] = STATE(4950), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4950), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5467), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4950), + [sym_union_type] = STATE(4950), + [sym_intersection_type] = STATE(4950), + [sym_function_type] = STATE(4950), + [aux_sym_export_statement_repeat1] = STATE(3752), [sym_identifier] = ACTIONS(678), [anon_sym_export] = ACTIONS(680), [anon_sym_STAR] = ACTIONS(564), @@ -24949,80 +24958,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [84] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(6024), - [sym_string] = STATE(3446), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2710), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5876), + [sym_string] = STATE(3497), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4668), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4988), - [sym_constructor_type] = STATE(4988), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4988), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5457), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym_intersection_type] = STATE(4988), - [sym_function_type] = STATE(4988), - [aux_sym_export_statement_repeat1] = STATE(3748), + [sym_formal_parameters] = STATE(4804), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(4950), + [sym_constructor_type] = STATE(4950), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4950), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5467), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4950), + [sym_union_type] = STATE(4950), + [sym_intersection_type] = STATE(4950), + [sym_function_type] = STATE(4950), + [aux_sym_export_statement_repeat1] = STATE(3752), [sym_identifier] = ACTIONS(678), [anon_sym_export] = ACTIONS(680), [anon_sym_STAR] = ACTIONS(564), @@ -25085,80 +25094,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [85] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5790), - [sym_string] = STATE(3446), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2712), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5917), + [sym_string] = STATE(3497), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4668), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4914), - [sym_constructor_type] = STATE(4914), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4914), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5457), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4914), - [sym_union_type] = STATE(4914), - [sym_intersection_type] = STATE(4914), - [sym_function_type] = STATE(4914), - [aux_sym_export_statement_repeat1] = STATE(3748), + [sym_formal_parameters] = STATE(4804), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(4950), + [sym_constructor_type] = STATE(4950), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4950), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5467), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4950), + [sym_union_type] = STATE(4950), + [sym_intersection_type] = STATE(4950), + [sym_function_type] = STATE(4950), + [aux_sym_export_statement_repeat1] = STATE(3752), [sym_identifier] = ACTIONS(678), [anon_sym_export] = ACTIONS(680), [anon_sym_STAR] = ACTIONS(564), @@ -25221,74 +25230,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [86] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3220), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5308), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5308), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(5905), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5308), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2822), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5246), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5246), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(5974), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2828), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4872), - [sym_pattern] = STATE(5651), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3914), - [sym__type] = STATE(4193), - [sym_constructor_type] = STATE(4193), - [sym__primary_type] = STATE(4015), - [sym_infer_type] = STATE(4193), - [sym_conditional_type] = STATE(4019), - [sym_generic_type] = STATE(4019), - [sym_type_query] = STATE(4019), - [sym_index_type_query] = STATE(4019), - [sym_lookup_type] = STATE(4019), - [sym_literal_type] = STATE(4019), - [sym__number] = STATE(4014), - [sym_existential_type] = STATE(4019), - [sym_flow_maybe_type] = STATE(4019), - [sym_parenthesized_type] = STATE(4019), - [sym_predefined_type] = STATE(4019), - [sym_object_type] = STATE(4019), - [sym_type_parameters] = STATE(5398), - [sym_array_type] = STATE(4019), - [sym_tuple_type] = STATE(4019), - [sym_readonly_type] = STATE(4193), - [sym_union_type] = STATE(4193), - [sym_intersection_type] = STATE(4193), - [sym_function_type] = STATE(4193), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4862), + [sym_pattern] = STATE(5645), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3916), + [sym__type] = STATE(4184), + [sym_constructor_type] = STATE(4184), + [sym__primary_type] = STATE(3990), + [sym_infer_type] = STATE(4184), + [sym_conditional_type] = STATE(3992), + [sym_generic_type] = STATE(3992), + [sym_type_query] = STATE(3992), + [sym_index_type_query] = STATE(3992), + [sym_lookup_type] = STATE(3992), + [sym_literal_type] = STATE(3992), + [sym__number] = STATE(3987), + [sym_existential_type] = STATE(3992), + [sym_flow_maybe_type] = STATE(3992), + [sym_parenthesized_type] = STATE(3992), + [sym_predefined_type] = STATE(3992), + [sym_object_type] = STATE(3992), + [sym_type_parameters] = STATE(5519), + [sym_array_type] = STATE(3992), + [sym_tuple_type] = STATE(3992), + [sym_readonly_type] = STATE(4184), + [sym_union_type] = STATE(4184), + [sym_intersection_type] = STATE(4184), + [sym_function_type] = STATE(4184), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(720), [anon_sym_export] = ACTIONS(722), [anon_sym_STAR] = ACTIONS(724), @@ -25350,72 +25359,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(764), }, [87] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2800), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2440), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2904), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(4944), [sym_identifier] = ACTIONS(766), [anon_sym_export] = ACTIONS(768), [anon_sym_STAR] = ACTIONS(564), @@ -25423,42 +25432,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(770), [anon_sym_LBRACE] = ACTIONS(772), [anon_sym_typeof] = ACTIONS(774), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(788), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(796), - [anon_sym_DASH] = ACTIONS(796), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(798), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(804), - [sym_this] = ACTIONS(806), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(808), - [sym_false] = ACTIONS(808), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(786), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(798), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(806), + [anon_sym_DASH] = ACTIONS(806), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(808), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(820), + [sym_this] = ACTIONS(822), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(826), + [sym_false] = ACTIONS(826), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = ACTIONS(812), + [anon_sym_readonly] = ACTIONS(830), [anon_sym_get] = ACTIONS(768), [anon_sym_set] = ACTIONS(768), [anon_sym_declare] = ACTIONS(768), @@ -25466,1242 +25475,1368 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(768), [anon_sym_protected] = ACTIONS(768), [anon_sym_module] = ACTIONS(768), - [anon_sym_any] = ACTIONS(814), - [anon_sym_number] = ACTIONS(814), - [anon_sym_boolean] = ACTIONS(814), - [anon_sym_string] = ACTIONS(814), - [anon_sym_symbol] = ACTIONS(814), + [anon_sym_any] = ACTIONS(832), + [anon_sym_number] = ACTIONS(832), + [anon_sym_boolean] = ACTIONS(832), + [anon_sym_string] = ACTIONS(832), + [anon_sym_symbol] = ACTIONS(832), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [88] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2444), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2440), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2942), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3377), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(818), - [anon_sym_export] = ACTIONS(820), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(836), + [anon_sym_export] = ACTIONS(838), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(772), - [anon_sym_typeof] = ACTIONS(824), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(782), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(828), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(830), - [anon_sym_DASH] = ACTIONS(830), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(610), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(804), - [sym_this] = ACTIONS(806), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(808), - [sym_false] = ACTIONS(808), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(842), + [anon_sym_typeof] = ACTIONS(844), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(856), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(868), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(870), + [anon_sym_DASH] = ACTIONS(870), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(872), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(884), + [sym_this] = ACTIONS(886), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(890), + [sym_false] = ACTIONS(890), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(832), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(834), - [anon_sym_number] = ACTIONS(834), - [anon_sym_boolean] = ACTIONS(834), - [anon_sym_string] = ACTIONS(834), - [anon_sym_symbol] = ACTIONS(834), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(894), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(896), + [anon_sym_number] = ACTIONS(896), + [anon_sym_boolean] = ACTIONS(896), + [anon_sym_string] = ACTIONS(896), + [anon_sym_symbol] = ACTIONS(896), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [89] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2211), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2175), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(836), - [anon_sym_export] = ACTIONS(838), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(898), + [anon_sym_export] = ACTIONS(900), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_typeof] = ACTIONS(844), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_typeof] = ACTIONS(906), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(908), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(914), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(858), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(860), - [anon_sym_DASH] = ACTIONS(860), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(862), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(920), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(922), + [anon_sym_DASH] = ACTIONS(922), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(924), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(868), - [sym_this] = ACTIONS(870), + [sym_number] = ACTIONS(930), + [sym_this] = ACTIONS(932), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(872), - [sym_false] = ACTIONS(872), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(876), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(878), - [anon_sym_number] = ACTIONS(878), - [anon_sym_boolean] = ACTIONS(878), - [anon_sym_string] = ACTIONS(878), - [anon_sym_symbol] = ACTIONS(878), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(938), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(940), + [anon_sym_number] = ACTIONS(940), + [anon_sym_boolean] = ACTIONS(940), + [anon_sym_string] = ACTIONS(940), + [anon_sym_symbol] = ACTIONS(940), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [90] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3017), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(3532), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2693), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3323), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(880), - [anon_sym_export] = ACTIONS(882), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(942), + [anon_sym_export] = ACTIONS(944), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(886), - [anon_sym_typeof] = ACTIONS(888), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(900), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(948), + [anon_sym_typeof] = ACTIONS(950), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(850), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(958), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(964), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(966), + [anon_sym_DASH] = ACTIONS(966), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(974), + [sym_this] = ACTIONS(976), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(978), + [sym_false] = ACTIONS(978), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(982), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(984), + [anon_sym_number] = ACTIONS(984), + [anon_sym_boolean] = ACTIONS(984), + [anon_sym_string] = ACTIONS(984), + [anon_sym_symbol] = ACTIONS(984), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [91] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(3368), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(986), + [anon_sym_export] = ACTIONS(988), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(992), + [anon_sym_typeof] = ACTIONS(994), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(1006), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(910), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(912), - [anon_sym_DASH] = ACTIONS(912), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(914), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1018), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(920), - [sym_this] = ACTIONS(922), + [sym_number] = ACTIONS(1024), + [sym_this] = ACTIONS(1026), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(924), - [sym_false] = ACTIONS(924), + [sym_true] = ACTIONS(1028), + [sym_false] = ACTIONS(1028), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(926), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(928), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(930), - [anon_sym_number] = ACTIONS(930), - [anon_sym_boolean] = ACTIONS(930), - [anon_sym_string] = ACTIONS(930), - [anon_sym_symbol] = ACTIONS(930), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(1032), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(1034), + [anon_sym_number] = ACTIONS(1034), + [anon_sym_boolean] = ACTIONS(1034), + [anon_sym_string] = ACTIONS(1034), + [anon_sym_symbol] = ACTIONS(1034), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [91] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2315), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2421), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [92] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2226), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(932), - [anon_sym_export] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(938), - [anon_sym_typeof] = ACTIONS(940), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(948), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(952), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(954), - [anon_sym_DASH] = ACTIONS(954), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(956), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(1040), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(962), - [sym_this] = ACTIONS(964), + [sym_number] = ACTIONS(87), + [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = ACTIONS(970), - [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(972), - [anon_sym_number] = ACTIONS(972), - [anon_sym_boolean] = ACTIONS(972), - [anon_sym_string] = ACTIONS(972), - [anon_sym_symbol] = ACTIONS(972), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_extends] = ACTIONS(1042), + [anon_sym_PIPE_RBRACE] = ACTIONS(1048), + [sym__automatic_semicolon] = ACTIONS(1048), }, - [92] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2211), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [93] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2705), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5019), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5019), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5019), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3562), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(974), - [anon_sym_export] = ACTIONS(976), + [sym_formal_parameters] = STATE(4776), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4616), + [sym_constructor_type] = STATE(4616), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4616), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5662), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4616), + [sym_union_type] = STATE(4616), + [sym_intersection_type] = STATE(4616), + [sym_function_type] = STATE(4616), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1072), + [anon_sym_export] = ACTIONS(1074), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_typeof] = ACTIONS(980), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1078), + [anon_sym_typeof] = ACTIONS(1080), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), + [anon_sym_BANG] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(990), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(992), - [anon_sym_DASH] = ACTIONS(992), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(994), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1086), + [anon_sym_QMARK] = ACTIONS(1088), + [anon_sym_AMP] = ACTIONS(1090), + [anon_sym_PIPE] = ACTIONS(1092), + [anon_sym_PLUS] = ACTIONS(1094), + [anon_sym_DASH] = ACTIONS(1094), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(610), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(868), - [sym_this] = ACTIONS(870), + [sym_number] = ACTIONS(1096), + [sym_this] = ACTIONS(1098), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(872), - [sym_false] = ACTIONS(872), + [sym_true] = ACTIONS(1100), + [sym_false] = ACTIONS(1100), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(1002), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(1004), - [anon_sym_number] = ACTIONS(1004), - [anon_sym_boolean] = ACTIONS(1004), - [anon_sym_string] = ACTIONS(1004), - [anon_sym_symbol] = ACTIONS(1004), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1102), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1104), + [anon_sym_number] = ACTIONS(1104), + [anon_sym_boolean] = ACTIONS(1104), + [anon_sym_string] = ACTIONS(1104), + [anon_sym_symbol] = ACTIONS(1104), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(1106), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [93] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2733), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2211), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [94] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2794), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2175), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1006), - [anon_sym_export] = ACTIONS(1008), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1108), + [anon_sym_export] = ACTIONS(1110), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1012), - [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_typeof] = ACTIONS(1114), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), + [anon_sym_BANG] = ACTIONS(1116), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1022), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(914), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1026), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1028), - [anon_sym_DASH] = ACTIONS(1028), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1030), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1126), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1128), + [anon_sym_DASH] = ACTIONS(1128), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1130), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(868), - [sym_this] = ACTIONS(870), + [sym_number] = ACTIONS(930), + [sym_this] = ACTIONS(932), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(872), - [sym_false] = ACTIONS(872), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1038), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1040), - [anon_sym_number] = ACTIONS(1040), - [anon_sym_boolean] = ACTIONS(1040), - [anon_sym_string] = ACTIONS(1040), - [anon_sym_symbol] = ACTIONS(1040), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1138), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1140), + [anon_sym_number] = ACTIONS(1140), + [anon_sym_boolean] = ACTIONS(1140), + [anon_sym_string] = ACTIONS(1140), + [anon_sym_symbol] = ACTIONS(1140), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [94] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3330), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3262), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [95] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3158), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2456), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1042), - [anon_sym_export] = ACTIONS(1044), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1142), + [anon_sym_export] = ACTIONS(1144), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1048), - [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_typeof] = ACTIONS(1150), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), + [anon_sym_BANG] = ACTIONS(1152), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1158), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1062), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1064), - [anon_sym_DASH] = ACTIONS(1064), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1066), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1162), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1164), + [anon_sym_DASH] = ACTIONS(1164), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1166), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1072), - [sym_this] = ACTIONS(1074), + [sym_number] = ACTIONS(1172), + [sym_this] = ACTIONS(1174), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), + [sym_true] = ACTIONS(1176), + [sym_false] = ACTIONS(1176), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1080), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [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_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [95] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2829), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3471), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1084), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1090), - [anon_sym_typeof] = ACTIONS(1092), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1104), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1120), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1132), - [sym_this] = ACTIONS(1134), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1138), - [sym_false] = ACTIONS(1138), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = ACTIONS(1142), - [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(1144), - [anon_sym_number] = ACTIONS(1144), - [anon_sym_boolean] = ACTIONS(1144), - [anon_sym_string] = ACTIONS(1144), - [anon_sym_symbol] = ACTIONS(1144), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1180), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1182), + [anon_sym_number] = ACTIONS(1182), + [anon_sym_boolean] = ACTIONS(1182), + [anon_sym_string] = ACTIONS(1182), + [anon_sym_symbol] = ACTIONS(1182), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [96] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3198), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2437), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3335), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3130), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1146), - [anon_sym_export] = ACTIONS(1148), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1184), + [anon_sym_export] = ACTIONS(1186), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_typeof] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1192), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), + [anon_sym_BANG] = ACTIONS(1194), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1200), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1166), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1168), - [anon_sym_DASH] = ACTIONS(1168), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1170), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1204), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1206), + [anon_sym_DASH] = ACTIONS(1206), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1208), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1176), - [sym_this] = ACTIONS(1178), + [sym_number] = ACTIONS(1214), + [sym_this] = ACTIONS(1216), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(1180), - [sym_false] = ACTIONS(1180), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = ACTIONS(1184), - [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(1186), - [anon_sym_number] = ACTIONS(1186), - [anon_sym_boolean] = ACTIONS(1186), - [anon_sym_string] = ACTIONS(1186), - [anon_sym_symbol] = ACTIONS(1186), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = ACTIONS(1222), + [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(1224), + [anon_sym_number] = ACTIONS(1224), + [anon_sym_boolean] = ACTIONS(1224), + [anon_sym_string] = ACTIONS(1224), + [anon_sym_symbol] = ACTIONS(1224), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [97] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(3126), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2384), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2921), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1188), - [anon_sym_export] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1226), + [anon_sym_export] = ACTIONS(1228), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1194), - [anon_sym_typeof] = ACTIONS(1196), - [anon_sym_import] = ACTIONS(890), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1232), + [anon_sym_typeof] = ACTIONS(1234), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(780), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1242), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1246), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1248), + [anon_sym_DASH] = ACTIONS(1248), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1250), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1256), + [sym_this] = ACTIONS(1258), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(1260), + [sym_false] = ACTIONS(1260), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = ACTIONS(1264), + [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(1266), + [anon_sym_number] = ACTIONS(1266), + [anon_sym_boolean] = ACTIONS(1266), + [anon_sym_string] = ACTIONS(1266), + [anon_sym_symbol] = ACTIONS(1266), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [98] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2723), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(3084), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1274), + [anon_sym_typeof] = ACTIONS(1276), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(894), + [anon_sym_LPAREN] = ACTIONS(1000), [anon_sym_await] = ACTIONS(39), [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1278), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1202), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1204), - [anon_sym_DASH] = ACTIONS(1204), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1282), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1284), + [anon_sym_DASH] = ACTIONS(1284), [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(1206), + [anon_sym_void] = ACTIONS(1286), [anon_sym_delete] = ACTIONS(19), [anon_sym_PLUS_PLUS] = ACTIONS(79), [anon_sym_DASH_DASH] = ACTIONS(79), @@ -26709,1509 +26844,879 @@ 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(1208), - [sym_this] = ACTIONS(1210), + [sym_number] = ACTIONS(1288), + [sym_this] = ACTIONS(1290), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1212), - [sym_false] = ACTIONS(1212), + [sym_true] = ACTIONS(1292), + [sym_false] = ACTIONS(1292), [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = ACTIONS(1214), - [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(1216), - [anon_sym_number] = ACTIONS(1216), - [anon_sym_boolean] = ACTIONS(1216), - [anon_sym_string] = ACTIONS(1216), - [anon_sym_symbol] = ACTIONS(1216), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = ACTIONS(1294), + [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(1296), + [anon_sym_number] = ACTIONS(1296), + [anon_sym_boolean] = ACTIONS(1296), + [anon_sym_string] = ACTIONS(1296), + [anon_sym_symbol] = ACTIONS(1296), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [98] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2942), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2437), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [99] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(3038), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2456), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1218), - [anon_sym_export] = ACTIONS(1220), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1298), + [anon_sym_export] = ACTIONS(1300), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1224), - [anon_sym_typeof] = ACTIONS(1226), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1304), + [anon_sym_typeof] = ACTIONS(1306), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), + [anon_sym_BANG] = ACTIONS(1308), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1162), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1158), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1236), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1238), - [anon_sym_DASH] = ACTIONS(1238), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1240), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1316), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1318), + [anon_sym_DASH] = ACTIONS(1318), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1320), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1176), - [sym_this] = ACTIONS(1178), + [sym_number] = ACTIONS(1172), + [sym_this] = ACTIONS(1174), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(1180), - [sym_false] = ACTIONS(1180), + [sym_true] = ACTIONS(1176), + [sym_false] = ACTIONS(1176), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1248), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [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_static] = ACTIONS(1300), + [anon_sym_readonly] = ACTIONS(1328), + [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(1330), + [anon_sym_number] = ACTIONS(1330), + [anon_sym_boolean] = ACTIONS(1330), + [anon_sym_string] = ACTIONS(1330), + [anon_sym_symbol] = ACTIONS(1330), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [99] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2915), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [100] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(3312), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1252), - [anon_sym_export] = ACTIONS(1254), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1332), + [anon_sym_export] = ACTIONS(1334), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1258), - [anon_sym_typeof] = ACTIONS(1260), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1286), - [anon_sym_DASH] = ACTIONS(1286), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1288), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1300), - [sym_this] = ACTIONS(1302), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1306), - [sym_false] = ACTIONS(1306), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1338), + [anon_sym_typeof] = ACTIONS(1340), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(1348), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1352), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1354), + [anon_sym_DASH] = ACTIONS(1354), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1356), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1362), + [sym_this] = ACTIONS(1364), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1366), + [sym_false] = ACTIONS(1366), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1310), - [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(1312), - [anon_sym_number] = ACTIONS(1312), - [anon_sym_boolean] = ACTIONS(1312), - [anon_sym_string] = ACTIONS(1312), - [anon_sym_symbol] = ACTIONS(1312), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1370), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1372), + [anon_sym_number] = ACTIONS(1372), + [anon_sym_boolean] = ACTIONS(1372), + [anon_sym_string] = ACTIONS(1372), + [anon_sym_symbol] = ACTIONS(1372), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [100] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3285), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3262), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [101] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2607), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2456), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1314), - [anon_sym_export] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1374), + [anon_sym_export] = ACTIONS(1376), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1320), - [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1148), + [anon_sym_typeof] = ACTIONS(1380), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), + [anon_sym_BANG] = ACTIONS(1382), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1158), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1332), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1334), - [anon_sym_DASH] = ACTIONS(1334), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1336), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1390), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1392), + [anon_sym_DASH] = ACTIONS(1392), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1394), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1072), - [sym_this] = ACTIONS(1074), + [sym_number] = ACTIONS(1172), + [sym_this] = ACTIONS(1174), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(1076), - [sym_false] = ACTIONS(1076), + [sym_true] = ACTIONS(1176), + [sym_false] = ACTIONS(1176), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1344), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1346), - [anon_sym_number] = ACTIONS(1346), - [anon_sym_boolean] = ACTIONS(1346), - [anon_sym_string] = ACTIONS(1346), - [anon_sym_symbol] = ACTIONS(1346), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [101] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2898), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1348), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1354), - [anon_sym_typeof] = ACTIONS(1356), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1266), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1364), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1368), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1370), - [anon_sym_DASH] = ACTIONS(1370), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1372), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1378), - [sym_this] = ACTIONS(1380), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1382), - [sym_false] = ACTIONS(1382), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1386), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1388), - [anon_sym_number] = ACTIONS(1388), - [anon_sym_boolean] = ACTIONS(1388), - [anon_sym_string] = ACTIONS(1388), - [anon_sym_symbol] = ACTIONS(1388), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1402), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1404), + [anon_sym_number] = ACTIONS(1404), + [anon_sym_boolean] = ACTIONS(1404), + [anon_sym_string] = ACTIONS(1404), + [anon_sym_symbol] = ACTIONS(1404), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [102] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2310), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_STAR] = ACTIONS(1392), - [anon_sym_type] = ACTIONS(934), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1400), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [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(968), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_extends] = ACTIONS(1394), - [anon_sym_PIPE_RBRACE] = ACTIONS(1398), - [sym__automatic_semicolon] = ACTIONS(1398), - }, - [103] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(3531), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2265), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1406), [anon_sym_export] = ACTIONS(1408), - [anon_sym_STAR] = ACTIONS(564), + [anon_sym_STAR] = ACTIONS(1410), [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1412), - [anon_sym_typeof] = ACTIONS(1414), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(1422), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1426), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1428), - [anon_sym_DASH] = ACTIONS(1428), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1430), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1436), - [sym_this] = ACTIONS(1438), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1440), - [sym_false] = ACTIONS(1440), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1444), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1446), - [anon_sym_number] = ACTIONS(1446), - [anon_sym_boolean] = ACTIONS(1446), - [anon_sym_string] = ACTIONS(1446), - [anon_sym_symbol] = ACTIONS(1446), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [104] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2421), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1448), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_typeof] = ACTIONS(1456), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(894), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1464), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1468), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1470), - [anon_sym_DASH] = ACTIONS(1470), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1472), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(962), - [sym_this] = ACTIONS(964), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(966), - [sym_false] = ACTIONS(966), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = ACTIONS(1480), - [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(1482), - [anon_sym_number] = ACTIONS(1482), - [anon_sym_boolean] = ACTIONS(1482), - [anon_sym_string] = ACTIONS(1482), - [anon_sym_symbol] = ACTIONS(1482), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [105] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2291), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_STAR] = ACTIONS(1486), - [anon_sym_type] = ACTIONS(838), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(864), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_await] = ACTIONS(848), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_RBRACK] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1418), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1042), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), - [anon_sym_extends] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_extends] = ACTIONS(1042), }, - [106] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2704), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2211), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [103] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2175), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1502), - [anon_sym_export] = ACTIONS(1504), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1442), + [anon_sym_export] = ACTIONS(1444), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(842), - [anon_sym_typeof] = ACTIONS(1508), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1448), + [anon_sym_typeof] = ACTIONS(1450), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), + [anon_sym_BANG] = ACTIONS(1452), [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(852), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1458), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1520), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1522), - [anon_sym_DASH] = ACTIONS(1522), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1524), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1462), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1464), + [anon_sym_DASH] = ACTIONS(1464), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(868), - [sym_this] = ACTIONS(870), + [sym_number] = ACTIONS(930), + [sym_this] = ACTIONS(932), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(872), - [sym_false] = ACTIONS(872), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1532), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [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), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = ACTIONS(1474), + [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(1476), + [anon_sym_number] = ACTIONS(1476), + [anon_sym_boolean] = ACTIONS(1476), + [anon_sym_string] = ACTIONS(1476), + [anon_sym_symbol] = ACTIONS(1476), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [107] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2678), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3533), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1536), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1542), - [anon_sym_typeof] = ACTIONS(1544), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1098), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1552), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1558), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1560), - [anon_sym_DASH] = ACTIONS(1560), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1562), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1568), - [sym_this] = ACTIONS(1570), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1572), - [sym_false] = ACTIONS(1572), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = ACTIONS(1576), - [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(1578), - [anon_sym_number] = ACTIONS(1578), - [anon_sym_boolean] = ACTIONS(1578), - [anon_sym_string] = ACTIONS(1578), - [anon_sym_symbol] = ACTIONS(1578), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [108] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2635), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2437), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [104] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2431), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4721), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4536), - [sym_constructor_type] = STATE(4536), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4536), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5544), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4536), - [sym_union_type] = STATE(4536), - [sym_intersection_type] = STATE(4536), - [sym_function_type] = STATE(4536), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1580), - [anon_sym_export] = ACTIONS(1582), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1478), + [anon_sym_export] = ACTIONS(1480), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1152), - [anon_sym_typeof] = ACTIONS(1586), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(578), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1162), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1596), - [anon_sym_QMARK] = ACTIONS(790), - [anon_sym_AMP] = ACTIONS(792), - [anon_sym_PIPE] = ACTIONS(794), - [anon_sym_PLUS] = ACTIONS(1598), - [anon_sym_DASH] = ACTIONS(1598), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1484), + [anon_sym_typeof] = ACTIONS(1486), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1498), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1500), + [anon_sym_DASH] = ACTIONS(1500), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1502), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1176), - [sym_this] = ACTIONS(1178), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(1180), - [sym_false] = ACTIONS(1180), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1608), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1610), - [anon_sym_number] = ACTIONS(1610), - [anon_sym_boolean] = ACTIONS(1610), - [anon_sym_string] = ACTIONS(1610), - [anon_sym_symbol] = ACTIONS(1610), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1516), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [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), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [109] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4920), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4920), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4920), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [105] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2496), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2493), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4766), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4886), - [sym_constructor_type] = STATE(4886), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4886), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5638), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4886), - [sym_union_type] = STATE(4886), - [sym_intersection_type] = STATE(4886), - [sym_function_type] = STATE(4886), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1612), - [anon_sym_export] = ACTIONS(820), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1520), + [anon_sym_export] = ACTIONS(1074), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1614), - [anon_sym_typeof] = ACTIONS(1616), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_typeof] = ACTIONS(1524), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), [anon_sym_LPAREN] = ACTIONS(578), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_LBRACK] = ACTIONS(1526), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1620), - [anon_sym_QMARK] = ACTIONS(1622), - [anon_sym_AMP] = ACTIONS(1624), - [anon_sym_PIPE] = ACTIONS(1626), - [anon_sym_PLUS] = ACTIONS(1628), - [anon_sym_DASH] = ACTIONS(1628), + [anon_sym_new] = ACTIONS(1528), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1530), + [anon_sym_DASH] = ACTIONS(1530), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(610), [anon_sym_delete] = ACTIONS(612), @@ -28221,128 +27726,757 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1630), - [sym_this] = ACTIONS(1632), + [sym_number] = ACTIONS(1532), + [sym_this] = ACTIONS(1534), [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(1634), - [sym_false] = ACTIONS(1634), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(1636), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(1638), - [anon_sym_number] = ACTIONS(1638), - [anon_sym_boolean] = ACTIONS(1638), - [anon_sym_string] = ACTIONS(1638), - [anon_sym_symbol] = ACTIONS(1638), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1538), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1540), + [anon_sym_number] = ACTIONS(1540), + [anon_sym_boolean] = ACTIONS(1540), + [anon_sym_string] = ACTIONS(1540), + [anon_sym_symbol] = ACTIONS(1540), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [106] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2294), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2175), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1542), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(904), + [anon_sym_typeof] = ACTIONS(1544), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(914), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1546), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1548), + [anon_sym_DASH] = ACTIONS(1548), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1550), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(930), + [sym_this] = ACTIONS(932), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(934), + [sym_false] = ACTIONS(934), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1440), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1552), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [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), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [107] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3169), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3130), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1556), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1562), + [anon_sym_typeof] = ACTIONS(1564), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1200), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1572), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1574), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1576), + [anon_sym_DASH] = ACTIONS(1576), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1578), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1214), + [sym_this] = ACTIONS(1216), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(1218), + [sym_false] = ACTIONS(1218), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1586), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1588), + [anon_sym_number] = ACTIONS(1588), + [anon_sym_boolean] = ACTIONS(1588), + [anon_sym_string] = ACTIONS(1588), + [anon_sym_symbol] = ACTIONS(1588), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [108] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2968), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2493), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1590), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_typeof] = ACTIONS(1596), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(578), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1526), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1608), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1610), + [anon_sym_DASH] = ACTIONS(1610), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1612), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1532), + [sym_this] = ACTIONS(1534), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(1536), + [sym_false] = ACTIONS(1536), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1620), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [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), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [109] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2431), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4638), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4565), + [sym_constructor_type] = STATE(4565), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4565), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5531), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4565), + [sym_union_type] = STATE(4565), + [sym_intersection_type] = STATE(4565), + [sym_function_type] = STATE(4565), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1624), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1626), + [anon_sym_typeof] = ACTIONS(1628), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(1630), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1632), + [anon_sym_QMARK] = ACTIONS(800), + [anon_sym_AMP] = ACTIONS(802), + [anon_sym_PIPE] = ACTIONS(804), + [anon_sym_PLUS] = ACTIONS(1634), + [anon_sym_DASH] = ACTIONS(1634), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1636), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1508), + [sym_this] = ACTIONS(1510), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1512), + [sym_false] = ACTIONS(1512), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1638), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [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_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(1640), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [110] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2595), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2368), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), + [anon_sym_export] = ACTIONS(1228), [anon_sym_STAR] = ACTIONS(1644), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1452), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1230), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), [anon_sym_BANG] = ACTIONS(1648), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(1648), [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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_extends] = ACTIONS(1042), + [sym__automatic_semicolon] = ACTIONS(1048), + [sym__function_signature_automatic_semicolon] = ACTIONS(1048), + }, + [111] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2491), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_STAR] = ACTIONS(1662), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1666), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -28353,118 +28487,118 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(1394), - [sym__automatic_semicolon] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + [anon_sym_extends] = ACTIONS(1042), + [sym__automatic_semicolon] = ACTIONS(1048), }, - [111] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [112] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_STAR] = ACTIONS(1656), - [anon_sym_type] = ACTIONS(820), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_STAR] = ACTIONS(1674), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1658), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1398), + [anon_sym_BANG] = ACTIONS(1676), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1048), [anon_sym_await] = ACTIONS(580), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1398), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1048), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_RBRACK] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1042), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -28474,7 +28608,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -28482,485 +28616,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - }, - [112] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2399), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_STAR] = ACTIONS(1664), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1668), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_extends] = ACTIONS(1394), - [sym__automatic_semicolon] = ACTIONS(1398), - [sym__function_signature_automatic_semicolon] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [113] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2534), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2707), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), + [anon_sym_export] = ACTIONS(1270), [anon_sym_STAR] = ACTIONS(1682), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1684), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1674), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_extends] = ACTIONS(1394), - [sym__automatic_semicolon] = ACTIONS(1398), - [sym__function_signature_automatic_semicolon] = ACTIONS(1398), - }, - [114] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_STAR] = ACTIONS(1690), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_EQ] = ACTIONS(1394), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1032), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1694), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), - [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), - [anon_sym_extends] = ACTIONS(1394), - }, - [115] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2757), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_STAR] = ACTIONS(1702), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_RBRACE] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_RBRACE] = ACTIONS(1048), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(77), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1398), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1048), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1042), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(75), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -28978,1343 +28739,1591 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - [sym__automatic_semicolon] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + [sym__automatic_semicolon] = ACTIONS(1048), }, - [116] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2792), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [114] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2753), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_STAR] = ACTIONS(1706), - [anon_sym_type] = ACTIONS(976), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_STAR] = ACTIONS(1686), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_EQ] = ACTIONS(1042), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1690), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1042), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), + [anon_sym_extends] = ACTIONS(1042), + }, + [115] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2537), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_STAR] = ACTIONS(1698), + [anon_sym_type] = ACTIONS(768), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1700), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(1654), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), - [anon_sym_extends] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + [anon_sym_extends] = ACTIONS(1042), + [sym__automatic_semicolon] = ACTIONS(1048), + [sym__function_signature_automatic_semicolon] = ACTIONS(1048), + }, + [116] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4639), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4343), + [sym_constructor_type] = STATE(4343), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4343), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4343), + [sym_union_type] = STATE(4343), + [sym_intersection_type] = STATE(4343), + [sym_function_type] = STATE(4343), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(696), + [anon_sym_QMARK] = ACTIONS(1736), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1738), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1740), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1752), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(1756), + [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(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(718), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [117] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2725), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2642), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_STAR] = ACTIONS(1762), + [anon_sym_type] = ACTIONS(944), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1766), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_extends] = ACTIONS(1042), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), + }, + [118] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2695), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_STAR] = ACTIONS(1714), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_STAR] = ACTIONS(1780), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1716), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1784), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(1048), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1042), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), - [anon_sym_implements] = ACTIONS(1394), - [anon_sym_extends] = ACTIONS(1394), - }, - [118] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4593), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4300), - [sym_constructor_type] = STATE(4300), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4300), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4300), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4300), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1748), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(1752), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1754), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1756), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1768), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1772), - [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(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(718), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), + [anon_sym_extends] = ACTIONS(1042), }, [119] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2663), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2882), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_STAR] = ACTIONS(1778), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_STAR] = ACTIONS(1792), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1794), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_function] = ACTIONS(596), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(1394), - [anon_sym_LBRACE_PIPE] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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_extends] = ACTIONS(1042), }, [120] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2965), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(882), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(1398), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_STAR] = ACTIONS(1800), + [anon_sym_type] = ACTIONS(900), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1802), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_QMARK_DOT] = ACTIONS(1048), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(926), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), - [anon_sym_extends] = ACTIONS(1394), - [sym__automatic_semicolon] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), + [anon_sym_implements] = ACTIONS(1042), + [anon_sym_extends] = ACTIONS(1042), }, [121] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2607), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2800), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_STAR] = ACTIONS(1808), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1808), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(1398), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_BANG] = ACTIONS(1810), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1042), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_EQ_GT] = ACTIONS(1048), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(1812), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), - [anon_sym_extends] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), + [anon_sym_extends] = ACTIONS(1042), }, [122] = { - [sym_import] = STATE(2339), + [sym_import] = STATE(2413), [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(3040), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), + [sym_expression] = STATE(2857), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), [sym_member_expression] = STATE(2038), [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), + [sym_formal_parameters] = STATE(4737), [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), + [anon_sym_export] = ACTIONS(1334), [anon_sym_STAR] = ACTIONS(1816), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(574), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(1818), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_RBRACK] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(1820), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(1818), [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - [anon_sym_extends] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), + [anon_sym_extends] = ACTIONS(1042), + [sym__automatic_semicolon] = ACTIONS(1048), }, [123] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3011), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2830), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), + [anon_sym_export] = ACTIONS(838), [anon_sym_STAR] = ACTIONS(1824), - [anon_sym_type] = ACTIONS(768), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(574), + [anon_sym_type] = ACTIONS(838), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(1764), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), [anon_sym_BANG] = ACTIONS(1826), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), - [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(1828), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), - [anon_sym_implements] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + [anon_sym_LBRACE_PIPE] = ACTIONS(1048), }, [124] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2873), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3296), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), + [anon_sym_export] = ACTIONS(1558), [anon_sym_STAR] = ACTIONS(1832), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(1780), - [anon_sym_COMMA] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1580), + [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(1834), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1788), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(1048), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1572), + [anon_sym_function] = ACTIONS(596), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(1836), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(1834), [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_LBRACE_PIPE] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, [125] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3303), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(3006), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), + [anon_sym_export] = ACTIONS(1592), [anon_sym_STAR] = ACTIONS(1840), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(1048), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(1842), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(1042), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_EQ_GT] = ACTIONS(1398), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(1844), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(1842), [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_extends] = ACTIONS(1394), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), + [anon_sym_implements] = ACTIONS(1042), }, [126] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3091), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3283), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(988), [anon_sym_STAR] = ACTIONS(1848), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), + [anon_sym_type] = ACTIONS(988), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(1850), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_SEMI] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_SEMI] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1402), - [anon_sym_GT] = ACTIONS(1394), + [anon_sym_LT] = ACTIONS(1058), + [anon_sym_GT] = ACTIONS(1042), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1394), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_DOT] = ACTIONS(1042), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(1852), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -30325,352 +30334,352 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [sym__automatic_semicolon] = ACTIONS(1398), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + [sym__automatic_semicolon] = ACTIONS(1048), }, [127] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3225), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3305), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), + [anon_sym_export] = ACTIONS(1144), [anon_sym_STAR] = ACTIONS(1856), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(1398), - [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(1858), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_RBRACK] = ACTIONS(1398), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(1042), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_EQ_GT] = ACTIONS(1048), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(1860), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(1858), [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), + [anon_sym_extends] = ACTIONS(1042), }, [128] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3377), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3449), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(1186), [anon_sym_STAR] = ACTIONS(1864), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_as] = ACTIONS(1394), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_as] = ACTIONS(1042), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(1866), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_in] = ACTIONS(1394), - [anon_sym_COLON] = ACTIONS(1398), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(1496), - [anon_sym_GT] = ACTIONS(1394), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_in] = ACTIONS(1042), + [anon_sym_COLON] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(1428), + [anon_sym_GT] = ACTIONS(1042), [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(1394), + [anon_sym_DOT] = ACTIONS(1042), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_QMARK_DOT] = ACTIONS(1398), + [anon_sym_QMARK_DOT] = ACTIONS(1048), [anon_sym_new] = ACTIONS(1868), - [anon_sym_QMARK] = ACTIONS(1394), - [anon_sym_AMP_AMP] = ACTIONS(1398), - [anon_sym_PIPE_PIPE] = ACTIONS(1398), - [anon_sym_GT_GT] = ACTIONS(1394), - [anon_sym_GT_GT_GT] = ACTIONS(1398), - [anon_sym_LT_LT] = ACTIONS(1398), - [anon_sym_AMP] = ACTIONS(1394), - [anon_sym_CARET] = ACTIONS(1398), - [anon_sym_PIPE] = ACTIONS(1394), + [anon_sym_QMARK] = ACTIONS(1042), + [anon_sym_AMP_AMP] = ACTIONS(1048), + [anon_sym_PIPE_PIPE] = ACTIONS(1048), + [anon_sym_GT_GT] = ACTIONS(1042), + [anon_sym_GT_GT_GT] = ACTIONS(1048), + [anon_sym_LT_LT] = ACTIONS(1048), + [anon_sym_AMP] = ACTIONS(1042), + [anon_sym_CARET] = ACTIONS(1048), + [anon_sym_PIPE] = ACTIONS(1042), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_PERCENT] = ACTIONS(1398), - [anon_sym_STAR_STAR] = ACTIONS(1398), - [anon_sym_LT_EQ] = ACTIONS(1398), - [anon_sym_EQ_EQ] = ACTIONS(1394), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1398), - [anon_sym_BANG_EQ] = ACTIONS(1394), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1398), - [anon_sym_GT_EQ] = ACTIONS(1398), - [anon_sym_QMARK_QMARK] = ACTIONS(1398), - [anon_sym_instanceof] = ACTIONS(1394), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_PERCENT] = ACTIONS(1048), + [anon_sym_STAR_STAR] = ACTIONS(1048), + [anon_sym_LT_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ] = ACTIONS(1042), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ] = ACTIONS(1042), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1048), + [anon_sym_GT_EQ] = ACTIONS(1048), + [anon_sym_QMARK_QMARK] = ACTIONS(1048), + [anon_sym_instanceof] = ACTIONS(1042), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [129] = { - [sym_declaration] = STATE(1145), - [sym_import] = STATE(2475), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3247), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_declaration] = STATE(1074), + [sym_import] = STATE(2413), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3215), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4619), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4786), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(988), [anon_sym_type] = ACTIONS(1870), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1872), + [anon_sym_namespace] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1874), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(524), - [anon_sym_async] = ACTIONS(1874), - [anon_sym_function] = ACTIONS(528), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(1876), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -30681,111 +30690,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1876), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(1878), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [130] = { - [sym_declaration] = STATE(1145), - [sym_import] = STATE(2475), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3247), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_declaration] = STATE(4642), + [sym_import] = STATE(2413), + [sym_variable_declaration] = STATE(4698), + [sym_lexical_declaration] = STATE(4698), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3067), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(4698), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(4698), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(4698), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4680), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_function_signature] = STATE(4698), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(4698), + [sym_abstract_class_declaration] = STATE(4698), + [sym_module] = STATE(4698), + [sym_internal_module] = STATE(3285), + [sym_import_alias] = STATE(4698), + [sym_interface_declaration] = STATE(4698), + [sym_enum_declaration] = STATE(4698), + [sym_type_alias_declaration] = STATE(4698), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4745), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1870), - [anon_sym_namespace] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1872), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1884), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(1882), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(1892), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -30796,111 +30805,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1876), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_abstract] = ACTIONS(101), - [anon_sym_interface] = ACTIONS(103), - [anon_sym_enum] = ACTIONS(105), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(1898), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(1900), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + [anon_sym_abstract] = ACTIONS(1902), + [anon_sym_interface] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1906), }, [131] = { - [sym_declaration] = STATE(1161), - [sym_import] = STATE(2475), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3112), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_declaration] = STATE(1074), + [sym_import] = STATE(2413), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3215), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(161), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4680), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4842), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(988), [anon_sym_type] = ACTIONS(1870), - [anon_sym_namespace] = ACTIONS(1880), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1872), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1874), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(1882), - [anon_sym_function] = ACTIONS(73), + [anon_sym_class] = ACTIONS(524), + [anon_sym_async] = ACTIONS(1908), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -30911,111 +30920,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1876), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(1910), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(1912), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [132] = { - [sym_declaration] = STATE(4602), - [sym_import] = STATE(2475), - [sym_variable_declaration] = STATE(4656), - [sym_lexical_declaration] = STATE(4656), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3093), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(4656), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(4656), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(4656), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_declaration] = STATE(1111), + [sym_import] = STATE(2413), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_function_signature] = STATE(4656), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(4656), - [sym_abstract_class_declaration] = STATE(4656), - [sym_module] = STATE(4656), - [sym_internal_module] = STATE(3161), - [sym_import_alias] = STATE(4656), - [sym_interface_declaration] = STATE(4656), - [sym_enum_declaration] = STATE(4656), - [sym_type_alias_declaration] = STATE(4656), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4735), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4842), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1886), - [anon_sym_var] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_function] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(524), + [anon_sym_async] = ACTIONS(1908), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -31026,111 +31035,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1900), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1902), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_abstract] = ACTIONS(1904), - [anon_sym_interface] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(1878), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + [anon_sym_abstract] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(103), + [anon_sym_enum] = ACTIONS(105), }, [133] = { - [sym_declaration] = STATE(1145), - [sym_import] = STATE(2475), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3247), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_declaration] = STATE(1111), + [sym_import] = STATE(2413), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4619), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4842), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(988), [anon_sym_type] = ACTIONS(1870), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1872), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1874), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(524), - [anon_sym_async] = ACTIONS(1874), + [anon_sym_async] = ACTIONS(1908), [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -31141,111 +31150,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), [anon_sym_declare] = ACTIONS(1910), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), [anon_sym_module] = ACTIONS(1912), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [134] = { - [sym_declaration] = STATE(4884), - [sym_import] = STATE(2475), - [sym_variable_declaration] = STATE(4656), - [sym_lexical_declaration] = STATE(4656), - [sym_parenthesized_expression] = STATE(2069), + [sym_declaration] = STATE(1074), + [sym_import] = STATE(2413), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_parenthesized_expression] = STATE(2058), [sym_expression] = STATE(3215), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(4656), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(4656), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(4656), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_function_signature] = STATE(4656), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(4656), - [sym_abstract_class_declaration] = STATE(4656), - [sym_module] = STATE(4656), - [sym_internal_module] = STATE(3161), - [sym_import_alias] = STATE(4656), - [sym_interface_declaration] = STATE(4656), - [sym_enum_declaration] = STATE(4656), - [sym_type_alias_declaration] = STATE(4656), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4735), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(3178), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4842), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1884), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1886), - [anon_sym_var] = ACTIONS(1888), - [anon_sym_let] = ACTIONS(1890), - [anon_sym_const] = ACTIONS(1892), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(1870), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1874), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(1894), - [anon_sym_async] = ACTIONS(1896), - [anon_sym_function] = ACTIONS(1898), + [anon_sym_class] = ACTIONS(524), + [anon_sym_async] = ACTIONS(1908), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -31256,111 +31265,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1900), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1902), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_abstract] = ACTIONS(1904), - [anon_sym_interface] = ACTIONS(1906), - [anon_sym_enum] = ACTIONS(1908), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(1878), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + [anon_sym_abstract] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(103), + [anon_sym_enum] = ACTIONS(105), }, [135] = { - [sym_declaration] = STATE(1161), - [sym_import] = STATE(2475), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3112), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_declaration] = STATE(4761), + [sym_import] = STATE(2413), + [sym_variable_declaration] = STATE(4698), + [sym_lexical_declaration] = STATE(4698), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3220), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(4698), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(4698), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(4698), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4619), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_function_signature] = STATE(4698), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(4698), + [sym_abstract_class_declaration] = STATE(4698), + [sym_module] = STATE(4698), + [sym_internal_module] = STATE(3285), + [sym_import_alias] = STATE(4698), + [sym_interface_declaration] = STATE(4698), + [sym_enum_declaration] = STATE(4698), + [sym_type_alias_declaration] = STATE(4698), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4745), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1870), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1872), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(1882), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1884), + [anon_sym_var] = ACTIONS(1886), + [anon_sym_let] = ACTIONS(1888), + [anon_sym_const] = ACTIONS(1890), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(524), - [anon_sym_async] = ACTIONS(1874), - [anon_sym_function] = ACTIONS(528), + [anon_sym_class] = ACTIONS(1892), + [anon_sym_async] = ACTIONS(1894), + [anon_sym_function] = ACTIONS(1896), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -31371,111 +31380,111 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1876), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1878), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_abstract] = ACTIONS(101), - [anon_sym_interface] = ACTIONS(103), - [anon_sym_enum] = ACTIONS(105), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(1898), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(1900), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + [anon_sym_abstract] = ACTIONS(1902), + [anon_sym_interface] = ACTIONS(1904), + [anon_sym_enum] = ACTIONS(1906), }, [136] = { - [sym_declaration] = STATE(1161), - [sym_import] = STATE(2475), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3112), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_class_declaration] = STATE(1086), - [sym_function] = STATE(2475), - [sym_function_declaration] = STATE(1086), - [sym_generator_function] = STATE(2475), - [sym_generator_function_declaration] = STATE(1086), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_declaration] = STATE(1111), + [sym_import] = STATE(2413), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3291), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_class_declaration] = STATE(1149), + [sym_function] = STATE(2413), + [sym_function_declaration] = STATE(1149), + [sym_generator_function] = STATE(2413), + [sym_generator_function_declaration] = STATE(1149), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_function_signature] = STATE(1086), - [sym_as_expression] = STATE(2484), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(3143), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4619), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_function_signature] = STATE(1149), + [sym_as_expression] = STATE(2453), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(165), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4786), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(988), [anon_sym_type] = ACTIONS(1870), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(1872), + [anon_sym_namespace] = ACTIONS(1872), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(1874), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(524), - [anon_sym_async] = ACTIONS(1874), - [anon_sym_function] = ACTIONS(528), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(1876), + [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -31486,847 +31495,952 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1910), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1912), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(1878), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(1880), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [137] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), - [anon_sym_PIPE_RBRACE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_PIPE_RBRACE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), }, [138] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [139] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_EQ] = ACTIONS(1942), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_EQ_GT] = ACTIONS(1944), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), }, [140] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [141] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), }, [142] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_EQ] = ACTIONS(1952), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1730), }, [143] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__automatic_semicolon] = ACTIONS(1730), }, [144] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1962), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [145] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2710), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), [sym_sequence_expression] = STATE(5876), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(3748), - [sym_identifier] = ACTIONS(1960), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(3752), + [sym_identifier] = ACTIONS(1964), [anon_sym_export] = ACTIONS(680), [anon_sym_type] = ACTIONS(680), [anon_sym_namespace] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1966), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_RPAREN] = ACTIONS(688), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1968), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(692), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -32336,8 +32450,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(1966), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(1970), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), @@ -32345,7 +32459,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(680), - [anon_sym_readonly] = ACTIONS(1968), + [anon_sym_readonly] = ACTIONS(1972), [anon_sym_get] = ACTIONS(680), [anon_sym_set] = ACTIONS(680), [anon_sym_declare] = ACTIONS(680), @@ -32359,184 +32473,394 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(680), [anon_sym_symbol] = ACTIONS(680), }, - [145] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [146] = { + [sym_statement_block] = STATE(200), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_export] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(1976), + [anon_sym_namespace] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym_import] = ACTIONS(1976), + [anon_sym_var] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_await] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_with] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_debugger] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_throw] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1976), + [anon_sym_GT] = ACTIONS(1976), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(1976), + [anon_sym_class] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_QMARK_DOT] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_QMARK] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1976), + [anon_sym_GT_GT_GT] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1974), + [anon_sym_STAR_STAR] = ACTIONS(1974), + [anon_sym_LT_EQ] = ACTIONS(1974), + [anon_sym_EQ_EQ] = ACTIONS(1976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1974), + [anon_sym_BANG_EQ] = ACTIONS(1976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1974), + [anon_sym_GT_EQ] = ACTIONS(1974), + [anon_sym_QMARK_QMARK] = ACTIONS(1974), + [anon_sym_instanceof] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_void] = ACTIONS(1976), + [anon_sym_delete] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1974), + [sym_number] = ACTIONS(1974), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_undefined] = ACTIONS(1976), + [anon_sym_AT] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_readonly] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1976), + [anon_sym_declare] = ACTIONS(1976), + [anon_sym_public] = ACTIONS(1976), + [anon_sym_private] = ACTIONS(1976), + [anon_sym_protected] = ACTIONS(1976), + [anon_sym_module] = ACTIONS(1976), + [anon_sym_any] = ACTIONS(1976), + [anon_sym_number] = ACTIONS(1976), + [anon_sym_boolean] = ACTIONS(1976), + [anon_sym_string] = ACTIONS(1976), + [anon_sym_symbol] = ACTIONS(1976), + [anon_sym_abstract] = ACTIONS(1976), + [anon_sym_interface] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [sym__automatic_semicolon] = ACTIONS(1974), + }, + [147] = { + [sym_statement_block] = STATE(200), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_export] = ACTIONS(1976), + [anon_sym_STAR] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(1976), + [anon_sym_namespace] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym_import] = ACTIONS(1976), + [anon_sym_var] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_await] = ACTIONS(1976), + [anon_sym_in] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_with] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_debugger] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_throw] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1976), + [anon_sym_GT] = ACTIONS(1976), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_QMARK_DOT] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_QMARK] = ACTIONS(1976), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1976), + [anon_sym_GT_GT_GT] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_PERCENT] = ACTIONS(1974), + [anon_sym_STAR_STAR] = ACTIONS(1974), + [anon_sym_LT_EQ] = ACTIONS(1974), + [anon_sym_EQ_EQ] = ACTIONS(1976), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1974), + [anon_sym_BANG_EQ] = ACTIONS(1976), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1974), + [anon_sym_GT_EQ] = ACTIONS(1974), + [anon_sym_QMARK_QMARK] = ACTIONS(1974), + [anon_sym_instanceof] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_void] = ACTIONS(1976), + [anon_sym_delete] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1974), + [sym_number] = ACTIONS(1974), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_undefined] = ACTIONS(1976), + [anon_sym_AT] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_readonly] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1976), + [anon_sym_declare] = ACTIONS(1976), + [anon_sym_public] = ACTIONS(1976), + [anon_sym_private] = ACTIONS(1976), + [anon_sym_protected] = ACTIONS(1976), + [anon_sym_module] = ACTIONS(1976), + [anon_sym_any] = ACTIONS(1976), + [anon_sym_number] = ACTIONS(1976), + [anon_sym_boolean] = ACTIONS(1976), + [anon_sym_string] = ACTIONS(1976), + [anon_sym_symbol] = ACTIONS(1976), + [anon_sym_abstract] = ACTIONS(1976), + [anon_sym_interface] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + [sym__automatic_semicolon] = ACTIONS(1974), + }, + [148] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1972), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1984), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_implements] = ACTIONS(1729), - [anon_sym_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [146] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2690), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5926), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [149] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2739), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5793), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(3748), - [sym_identifier] = ACTIONS(1960), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(3752), + [sym_identifier] = ACTIONS(1964), [anon_sym_export] = ACTIONS(680), [anon_sym_type] = ACTIONS(680), [anon_sym_namespace] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1966), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_RPAREN] = ACTIONS(688), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1968), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(692), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -32546,8 +32870,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(1966), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(1970), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), @@ -32555,7 +32879,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(680), - [anon_sym_readonly] = ACTIONS(1968), + [anon_sym_readonly] = ACTIONS(1972), [anon_sym_get] = ACTIONS(680), [anon_sym_set] = ACTIONS(680), [anon_sym_declare] = ACTIONS(680), @@ -32569,184 +32893,184 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(680), [anon_sym_symbol] = ACTIONS(680), }, - [147] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [150] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1974), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1976), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), - [sym__automatic_semicolon] = ACTIONS(1746), }, - [148] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5790), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [151] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2712), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5917), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(3748), - [sym_identifier] = ACTIONS(1960), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(3752), + [sym_identifier] = ACTIONS(1964), [anon_sym_export] = ACTIONS(680), [anon_sym_type] = ACTIONS(680), [anon_sym_namespace] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1966), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_RPAREN] = ACTIONS(688), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1968), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(692), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -32756,8 +33080,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(1966), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(1970), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), @@ -32765,7 +33089,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(680), - [anon_sym_readonly] = ACTIONS(1968), + [anon_sym_readonly] = ACTIONS(1972), [anon_sym_get] = ACTIONS(680), [anon_sym_set] = ACTIONS(680), [anon_sym_declare] = ACTIONS(680), @@ -32779,79 +33103,289 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(680), [anon_sym_symbol] = ACTIONS(680), }, - [149] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym__formal_parameter] = STATE(5176), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(6024), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [152] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [153] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1996), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_implements] = ACTIONS(1713), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [154] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2719), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym__formal_parameter] = STATE(5208), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5963), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(3748), - [sym_identifier] = ACTIONS(1960), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(3752), + [sym_identifier] = ACTIONS(1964), [anon_sym_export] = ACTIONS(680), [anon_sym_type] = ACTIONS(680), [anon_sym_namespace] = ACTIONS(682), - [anon_sym_LBRACE] = ACTIONS(1962), + [anon_sym_LBRACE] = ACTIONS(1966), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_RPAREN] = ACTIONS(688), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1964), + [anon_sym_LBRACK] = ACTIONS(1968), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(692), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -32861,8 +33395,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(1966), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(1970), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), @@ -32870,7 +33404,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(680), - [anon_sym_readonly] = ACTIONS(1968), + [anon_sym_readonly] = ACTIONS(1972), [anon_sym_get] = ACTIONS(680), [anon_sym_set] = ACTIONS(680), [anon_sym_declare] = ACTIONS(680), @@ -32884,333 +33418,18 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(680), [anon_sym_symbol] = ACTIONS(680), }, - [150] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1978), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1980), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [151] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1986), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_EQ] = ACTIONS(1988), - [anon_sym_as] = ACTIONS(1986), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_COMMA] = ACTIONS(1990), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_var] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_switch] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_in] = ACTIONS(1986), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_do] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_with] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_debugger] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_throw] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_GT] = ACTIONS(1986), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(1986), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_QMARK_DOT] = ACTIONS(1990), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(1986), - [anon_sym_AMP_AMP] = ACTIONS(1990), - [anon_sym_PIPE_PIPE] = ACTIONS(1990), - [anon_sym_GT_GT] = ACTIONS(1986), - [anon_sym_GT_GT_GT] = ACTIONS(1990), - [anon_sym_LT_LT] = ACTIONS(1990), - [anon_sym_AMP] = ACTIONS(1986), - [anon_sym_CARET] = ACTIONS(1990), - [anon_sym_PIPE] = ACTIONS(1986), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_PERCENT] = ACTIONS(1990), - [anon_sym_STAR_STAR] = ACTIONS(1990), - [anon_sym_LT_EQ] = ACTIONS(1990), - [anon_sym_EQ_EQ] = ACTIONS(1986), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1990), - [anon_sym_BANG_EQ] = ACTIONS(1986), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1990), - [anon_sym_GT_EQ] = ACTIONS(1990), - [anon_sym_QMARK_QMARK] = ACTIONS(1990), - [anon_sym_instanceof] = ACTIONS(1986), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_number] = ACTIONS(1982), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_abstract] = ACTIONS(1984), - [anon_sym_interface] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [sym__automatic_semicolon] = ACTIONS(1992), - }, - [152] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1994), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1996), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [153] = { - [sym_statement_block] = STATE(184), + [155] = { [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_export] = ACTIONS(2000), - [anon_sym_STAR] = ACTIONS(2000), + [anon_sym_STAR] = ACTIONS(2002), [anon_sym_default] = ACTIONS(2000), [anon_sym_type] = ACTIONS(2000), - [anon_sym_as] = ACTIONS(2000), + [anon_sym_EQ] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2002), [anon_sym_namespace] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), - [anon_sym_COMMA] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_COMMA] = ACTIONS(2006), [anon_sym_RBRACE] = ACTIONS(1998), [anon_sym_typeof] = ACTIONS(2000), [anon_sym_import] = ACTIONS(2000), @@ -33224,7 +33443,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2000), [anon_sym_LPAREN] = ACTIONS(1998), [anon_sym_await] = ACTIONS(2000), - [anon_sym_in] = ACTIONS(2000), + [anon_sym_in] = ACTIONS(2002), [anon_sym_while] = ACTIONS(2000), [anon_sym_do] = ACTIONS(2000), [anon_sym_try] = ACTIONS(2000), @@ -33239,35 +33458,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(1998), [anon_sym_LT] = ACTIONS(2000), - [anon_sym_GT] = ACTIONS(2000), + [anon_sym_GT] = ACTIONS(2002), [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_DOT] = ACTIONS(2000), + [anon_sym_DOT] = ACTIONS(2002), [anon_sym_class] = ACTIONS(2000), [anon_sym_async] = ACTIONS(2000), [anon_sym_function] = ACTIONS(2000), - [anon_sym_QMARK_DOT] = ACTIONS(1998), + [anon_sym_QMARK_DOT] = ACTIONS(2006), [anon_sym_new] = ACTIONS(2000), - [anon_sym_QMARK] = ACTIONS(2000), - [anon_sym_AMP_AMP] = ACTIONS(1998), - [anon_sym_PIPE_PIPE] = ACTIONS(1998), - [anon_sym_GT_GT] = ACTIONS(2000), - [anon_sym_GT_GT_GT] = ACTIONS(1998), - [anon_sym_LT_LT] = ACTIONS(1998), - [anon_sym_AMP] = ACTIONS(2000), - [anon_sym_CARET] = ACTIONS(1998), - [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_QMARK] = ACTIONS(2002), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [anon_sym_GT_GT] = ACTIONS(2002), + [anon_sym_GT_GT_GT] = ACTIONS(2006), + [anon_sym_LT_LT] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2002), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2002), [anon_sym_PLUS] = ACTIONS(2000), [anon_sym_DASH] = ACTIONS(2000), - [anon_sym_PERCENT] = ACTIONS(1998), - [anon_sym_STAR_STAR] = ACTIONS(1998), - [anon_sym_LT_EQ] = ACTIONS(1998), - [anon_sym_EQ_EQ] = ACTIONS(2000), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1998), - [anon_sym_BANG_EQ] = ACTIONS(2000), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1998), - [anon_sym_GT_EQ] = ACTIONS(1998), - [anon_sym_QMARK_QMARK] = ACTIONS(1998), - [anon_sym_instanceof] = ACTIONS(2000), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_STAR_STAR] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(2006), + [anon_sym_EQ_EQ] = ACTIONS(2002), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2006), + [anon_sym_BANG_EQ] = ACTIONS(2002), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2006), + [anon_sym_GT_EQ] = ACTIONS(2006), + [anon_sym_QMARK_QMARK] = ACTIONS(2006), + [anon_sym_instanceof] = ACTIONS(2002), [anon_sym_TILDE] = ACTIONS(1998), [anon_sym_void] = ACTIONS(2000), [anon_sym_delete] = ACTIONS(2000), @@ -33302,10 +33521,633 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2000), [anon_sym_interface] = ACTIONS(2000), [anon_sym_enum] = ACTIONS(2000), - [sym__automatic_semicolon] = ACTIONS(1998), + [sym__automatic_semicolon] = ACTIONS(2008), }, - [154] = { - [sym_statement_block] = STATE(184), + [156] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_namespace] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2014), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(594), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(562), + [anon_sym_readonly] = ACTIONS(562), + [anon_sym_get] = ACTIONS(562), + [anon_sym_set] = ACTIONS(562), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(562), + [anon_sym_private] = ACTIONS(562), + [anon_sym_protected] = ACTIONS(562), + [anon_sym_module] = ACTIONS(562), + [anon_sym_any] = ACTIONS(562), + [anon_sym_number] = ACTIONS(562), + [anon_sym_boolean] = ACTIONS(562), + [anon_sym_string] = ACTIONS(562), + [anon_sym_symbol] = ACTIONS(562), + }, + [157] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_namespace] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2018), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(594), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(562), + [anon_sym_readonly] = ACTIONS(562), + [anon_sym_get] = ACTIONS(562), + [anon_sym_set] = ACTIONS(562), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(562), + [anon_sym_private] = ACTIONS(562), + [anon_sym_protected] = ACTIONS(562), + [anon_sym_module] = ACTIONS(562), + [anon_sym_any] = ACTIONS(562), + [anon_sym_number] = ACTIONS(562), + [anon_sym_boolean] = ACTIONS(562), + [anon_sym_string] = ACTIONS(562), + [anon_sym_symbol] = ACTIONS(562), + }, + [158] = { + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2022), + [anon_sym_in] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_with] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_debugger] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_GT] = ACTIONS(2022), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_DOT] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_QMARK_DOT] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_QMARK] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_LT_LT] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_CARET] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_PERCENT] = ACTIONS(2020), + [anon_sym_STAR_STAR] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_QMARK_QMARK] = ACTIONS(2020), + [anon_sym_instanceof] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_void] = ACTIONS(2022), + [anon_sym_delete] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2020), + [sym_number] = ACTIONS(2020), + [sym_this] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_true] = ACTIONS(2022), + [sym_false] = ACTIONS(2022), + [sym_null] = ACTIONS(2022), + [sym_undefined] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [sym__automatic_semicolon] = ACTIONS(2020), + }, + [159] = { + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2026), + [anon_sym_namespace] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_COMMA] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(2026), + [anon_sym_import] = ACTIONS(2026), + [anon_sym_var] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_switch] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_await] = ACTIONS(2026), + [anon_sym_in] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_with] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_debugger] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_throw] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2026), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_DOT] = ACTIONS(2026), + [anon_sym_class] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(2026), + [anon_sym_QMARK_DOT] = ACTIONS(2024), + [anon_sym_new] = ACTIONS(2026), + [anon_sym_QMARK] = ACTIONS(2026), + [anon_sym_AMP_AMP] = ACTIONS(2024), + [anon_sym_PIPE_PIPE] = ACTIONS(2024), + [anon_sym_GT_GT] = ACTIONS(2026), + [anon_sym_GT_GT_GT] = ACTIONS(2024), + [anon_sym_LT_LT] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2026), + [anon_sym_CARET] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2024), + [anon_sym_STAR_STAR] = ACTIONS(2024), + [anon_sym_LT_EQ] = ACTIONS(2024), + [anon_sym_EQ_EQ] = ACTIONS(2026), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2024), + [anon_sym_BANG_EQ] = ACTIONS(2026), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2024), + [anon_sym_GT_EQ] = ACTIONS(2024), + [anon_sym_QMARK_QMARK] = ACTIONS(2024), + [anon_sym_instanceof] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2024), + [anon_sym_void] = ACTIONS(2026), + [anon_sym_delete] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2024), + [sym_number] = ACTIONS(2024), + [sym_this] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_true] = ACTIONS(2026), + [sym_false] = ACTIONS(2026), + [sym_null] = ACTIONS(2026), + [sym_undefined] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), + [anon_sym_abstract] = ACTIONS(2026), + [anon_sym_interface] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [sym__automatic_semicolon] = ACTIONS(2024), + }, + [160] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(2030), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [161] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), + [anon_sym_export] = ACTIONS(562), + [anon_sym_type] = ACTIONS(562), + [anon_sym_namespace] = ACTIONS(566), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2032), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(594), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(562), + [anon_sym_readonly] = ACTIONS(562), + [anon_sym_get] = ACTIONS(562), + [anon_sym_set] = ACTIONS(562), + [anon_sym_declare] = ACTIONS(562), + [anon_sym_public] = ACTIONS(562), + [anon_sym_private] = ACTIONS(562), + [anon_sym_protected] = ACTIONS(562), + [anon_sym_module] = ACTIONS(562), + [anon_sym_any] = ACTIONS(562), + [anon_sym_number] = ACTIONS(562), + [anon_sym_boolean] = ACTIONS(562), + [anon_sym_string] = ACTIONS(562), + [anon_sym_symbol] = ACTIONS(562), + }, + [162] = { [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_export] = ACTIONS(2000), @@ -33314,7 +34156,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_type] = ACTIONS(2000), [anon_sym_as] = ACTIONS(2000), [anon_sym_namespace] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_LBRACE] = ACTIONS(1998), [anon_sym_COMMA] = ACTIONS(1998), [anon_sym_RBRACE] = ACTIONS(1998), [anon_sym_typeof] = ACTIONS(2000), @@ -33346,7 +34188,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT] = ACTIONS(2000), [anon_sym_GT] = ACTIONS(2000), [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_DOT] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(2000), [anon_sym_class] = ACTIONS(2000), [anon_sym_async] = ACTIONS(2000), [anon_sym_function] = ACTIONS(2000), @@ -33407,289 +34249,704 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2000), [anon_sym_interface] = ACTIONS(2000), [anon_sym_enum] = ACTIONS(2000), - [sym__automatic_semicolon] = ACTIONS(1998), + [sym__automatic_semicolon] = ACTIONS(2034), }, - [155] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [163] = { + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_STAR] = ACTIONS(2040), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_as] = ACTIONS(2040), + [anon_sym_namespace] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_COMMA] = ACTIONS(2042), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2038), + [anon_sym_import] = ACTIONS(2038), + [anon_sym_var] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2038), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_switch] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2038), + [anon_sym_in] = ACTIONS(2040), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_with] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_debugger] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_throw] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2038), + [anon_sym_GT] = ACTIONS(2040), + [anon_sym_SLASH] = ACTIONS(2038), + [anon_sym_DOT] = ACTIONS(2040), + [anon_sym_class] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_function] = ACTIONS(2038), + [anon_sym_QMARK_DOT] = ACTIONS(2042), + [anon_sym_new] = ACTIONS(2038), + [anon_sym_QMARK] = ACTIONS(2040), + [anon_sym_AMP_AMP] = ACTIONS(2042), + [anon_sym_PIPE_PIPE] = ACTIONS(2042), + [anon_sym_GT_GT] = ACTIONS(2040), + [anon_sym_GT_GT_GT] = ACTIONS(2042), + [anon_sym_LT_LT] = ACTIONS(2042), + [anon_sym_AMP] = ACTIONS(2040), + [anon_sym_CARET] = ACTIONS(2042), + [anon_sym_PIPE] = ACTIONS(2040), + [anon_sym_PLUS] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2038), + [anon_sym_PERCENT] = ACTIONS(2042), + [anon_sym_STAR_STAR] = ACTIONS(2042), + [anon_sym_LT_EQ] = ACTIONS(2042), + [anon_sym_EQ_EQ] = ACTIONS(2040), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2042), + [anon_sym_BANG_EQ] = ACTIONS(2040), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2042), + [anon_sym_GT_EQ] = ACTIONS(2042), + [anon_sym_QMARK_QMARK] = ACTIONS(2042), + [anon_sym_instanceof] = ACTIONS(2040), + [anon_sym_TILDE] = ACTIONS(2036), + [anon_sym_void] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2036), + [sym_number] = ACTIONS(2036), + [sym_this] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [sym_null] = ACTIONS(2038), + [sym_undefined] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_readonly] = ACTIONS(2038), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2038), + [anon_sym_declare] = ACTIONS(2038), + [anon_sym_public] = ACTIONS(2038), + [anon_sym_private] = ACTIONS(2038), + [anon_sym_protected] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_any] = ACTIONS(2038), + [anon_sym_number] = ACTIONS(2038), + [anon_sym_boolean] = ACTIONS(2038), + [anon_sym_string] = ACTIONS(2038), + [anon_sym_symbol] = ACTIONS(2038), + [anon_sym_abstract] = ACTIONS(2038), + [anon_sym_interface] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [sym__automatic_semicolon] = ACTIONS(2044), + }, + [164] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(2006), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(2046), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1746), + [anon_sym_COMMA] = ACTIONS(1730), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(2048), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [156] = { - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_export] = ACTIONS(2012), - [anon_sym_STAR] = ACTIONS(2014), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_as] = ACTIONS(2014), - [anon_sym_namespace] = ACTIONS(2012), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_COMMA] = ACTIONS(2016), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_typeof] = ACTIONS(2012), - [anon_sym_import] = ACTIONS(2012), - [anon_sym_var] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(2012), - [anon_sym_else] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_switch] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_await] = ACTIONS(2012), - [anon_sym_in] = ACTIONS(2014), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_do] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [anon_sym_with] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_debugger] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_throw] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_case] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2012), - [anon_sym_GT] = ACTIONS(2014), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_DOT] = ACTIONS(2014), - [anon_sym_class] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_QMARK_DOT] = ACTIONS(2016), - [anon_sym_new] = ACTIONS(2012), - [anon_sym_QMARK] = ACTIONS(2014), - [anon_sym_AMP_AMP] = ACTIONS(2016), - [anon_sym_PIPE_PIPE] = ACTIONS(2016), - [anon_sym_GT_GT] = ACTIONS(2014), - [anon_sym_GT_GT_GT] = ACTIONS(2016), - [anon_sym_LT_LT] = ACTIONS(2016), - [anon_sym_AMP] = ACTIONS(2014), - [anon_sym_CARET] = ACTIONS(2016), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2012), - [anon_sym_PERCENT] = ACTIONS(2016), - [anon_sym_STAR_STAR] = ACTIONS(2016), - [anon_sym_LT_EQ] = ACTIONS(2016), - [anon_sym_EQ_EQ] = ACTIONS(2014), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2016), - [anon_sym_BANG_EQ] = ACTIONS(2014), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2016), - [anon_sym_GT_EQ] = ACTIONS(2016), - [anon_sym_QMARK_QMARK] = ACTIONS(2016), - [anon_sym_instanceof] = ACTIONS(2014), - [anon_sym_TILDE] = ACTIONS(2010), - [anon_sym_void] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2010), - [sym_number] = ACTIONS(2010), - [sym_this] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_true] = ACTIONS(2012), - [sym_false] = ACTIONS(2012), - [sym_null] = ACTIONS(2012), - [sym_undefined] = ACTIONS(2012), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(2012), - [anon_sym_set] = ACTIONS(2012), - [anon_sym_declare] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_protected] = ACTIONS(2012), - [anon_sym_module] = ACTIONS(2012), - [anon_sym_any] = ACTIONS(2012), - [anon_sym_number] = ACTIONS(2012), - [anon_sym_boolean] = ACTIONS(2012), - [anon_sym_string] = ACTIONS(2012), - [anon_sym_symbol] = ACTIONS(2012), - [anon_sym_abstract] = ACTIONS(2012), - [anon_sym_interface] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [sym__automatic_semicolon] = ACTIONS(2018), + [165] = { + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_export] = ACTIONS(2053), + [anon_sym_STAR] = ACTIONS(2055), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_as] = ACTIONS(2055), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_COMMA] = ACTIONS(2057), + [anon_sym_RBRACE] = ACTIONS(2051), + [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(2053), + [anon_sym_else] = ACTIONS(2053), + [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_in] = ACTIONS(2055), + [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(2053), + [anon_sym_GT] = ACTIONS(2055), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_DOT] = ACTIONS(2055), + [anon_sym_class] = ACTIONS(2053), + [anon_sym_async] = ACTIONS(2053), + [anon_sym_function] = ACTIONS(2053), + [anon_sym_QMARK_DOT] = ACTIONS(2057), + [anon_sym_new] = ACTIONS(2053), + [anon_sym_QMARK] = ACTIONS(2055), + [anon_sym_AMP_AMP] = ACTIONS(2057), + [anon_sym_PIPE_PIPE] = ACTIONS(2057), + [anon_sym_GT_GT] = ACTIONS(2055), + [anon_sym_GT_GT_GT] = ACTIONS(2057), + [anon_sym_LT_LT] = ACTIONS(2057), + [anon_sym_AMP] = ACTIONS(2055), + [anon_sym_CARET] = ACTIONS(2057), + [anon_sym_PIPE] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2053), + [anon_sym_DASH] = ACTIONS(2053), + [anon_sym_PERCENT] = ACTIONS(2057), + [anon_sym_STAR_STAR] = ACTIONS(2057), + [anon_sym_LT_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ] = ACTIONS(2055), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ] = ACTIONS(2055), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2057), + [anon_sym_GT_EQ] = ACTIONS(2057), + [anon_sym_QMARK_QMARK] = ACTIONS(2057), + [anon_sym_instanceof] = ACTIONS(2055), + [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_readonly] = ACTIONS(2053), + [anon_sym_get] = ACTIONS(2053), + [anon_sym_set] = ACTIONS(2053), + [anon_sym_declare] = ACTIONS(2053), + [anon_sym_public] = ACTIONS(2053), + [anon_sym_private] = ACTIONS(2053), + [anon_sym_protected] = ACTIONS(2053), + [anon_sym_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_abstract] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), + [sym__automatic_semicolon] = ACTIONS(2057), }, - [157] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [166] = { + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_export] = ACTIONS(2061), + [anon_sym_STAR] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_as] = ACTIONS(2061), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(2061), + [anon_sym_import] = ACTIONS(2061), + [anon_sym_var] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2061), + [anon_sym_else] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_in] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_with] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_debugger] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_throw] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_case] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2061), + [anon_sym_GT] = ACTIONS(2061), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_DOT] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2061), + [anon_sym_QMARK_DOT] = ACTIONS(2059), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_QMARK] = ACTIONS(2061), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2061), + [anon_sym_GT_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2061), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_PERCENT] = ACTIONS(2059), + [anon_sym_STAR_STAR] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2061), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ] = ACTIONS(2061), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_QMARK_QMARK] = ACTIONS(2059), + [anon_sym_instanceof] = ACTIONS(2061), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_void] = ACTIONS(2061), + [anon_sym_delete] = ACTIONS(2061), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2059), + [sym_number] = ACTIONS(2059), + [sym_this] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_null] = ACTIONS(2061), + [sym_undefined] = ACTIONS(2061), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), + [anon_sym_abstract] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [sym__automatic_semicolon] = ACTIONS(2059), + }, + [167] = { + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2022), + [anon_sym_in] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_with] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_debugger] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_GT] = ACTIONS(2022), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_DOT] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_QMARK_DOT] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_QMARK] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_LT_LT] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_CARET] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_PERCENT] = ACTIONS(2020), + [anon_sym_STAR_STAR] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_QMARK_QMARK] = ACTIONS(2020), + [anon_sym_instanceof] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_void] = ACTIONS(2022), + [anon_sym_delete] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2020), + [sym_number] = ACTIONS(2020), + [sym_this] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_true] = ACTIONS(2022), + [sym_false] = ACTIONS(2022), + [sym_null] = ACTIONS(2022), + [sym_undefined] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [sym__automatic_semicolon] = ACTIONS(2063), + }, + [168] = { + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_STAR] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_as] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2067), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_in] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_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(2067), + [anon_sym_GT] = ACTIONS(2067), + [anon_sym_SLASH] = ACTIONS(2067), + [anon_sym_DOT] = ACTIONS(2067), + [anon_sym_class] = ACTIONS(2067), + [anon_sym_async] = ACTIONS(2067), + [anon_sym_function] = ACTIONS(2067), + [anon_sym_QMARK_DOT] = ACTIONS(2065), + [anon_sym_new] = ACTIONS(2067), + [anon_sym_QMARK] = ACTIONS(2067), + [anon_sym_AMP_AMP] = ACTIONS(2065), + [anon_sym_PIPE_PIPE] = ACTIONS(2065), + [anon_sym_GT_GT] = ACTIONS(2067), + [anon_sym_GT_GT_GT] = ACTIONS(2065), + [anon_sym_LT_LT] = ACTIONS(2065), + [anon_sym_AMP] = ACTIONS(2067), + [anon_sym_CARET] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2067), + [anon_sym_PLUS] = ACTIONS(2067), + [anon_sym_DASH] = ACTIONS(2067), + [anon_sym_PERCENT] = ACTIONS(2065), + [anon_sym_STAR_STAR] = ACTIONS(2065), + [anon_sym_LT_EQ] = ACTIONS(2065), + [anon_sym_EQ_EQ] = ACTIONS(2067), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ] = ACTIONS(2067), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2065), + [anon_sym_GT_EQ] = ACTIONS(2065), + [anon_sym_QMARK_QMARK] = ACTIONS(2065), + [anon_sym_instanceof] = 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_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [sym__automatic_semicolon] = ACTIONS(2065), + }, + [169] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2981), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5302), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5229), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2024), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2069), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -33699,7 +34956,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -33722,286 +34979,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [158] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1936), - [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_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [159] = { - [sym_import] = STATE(2475), - [sym_expression_statement] = STATE(239), - [sym_variable_declaration] = STATE(239), - [sym_lexical_declaration] = STATE(239), - [sym_empty_statement] = STATE(239), - [sym_parenthesized_expression] = STATE(2054), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5376), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5376), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2054), - [sym_subscript_expression] = STATE(2054), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5376), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2054), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2032), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_namespace] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [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(2044), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_function] = ACTIONS(908), - [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(2048), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_readonly] = ACTIONS(2034), - [anon_sym_get] = ACTIONS(2034), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_declare] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_protected] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_any] = ACTIONS(2034), - [anon_sym_number] = ACTIONS(2034), - [anon_sym_boolean] = ACTIONS(2034), - [anon_sym_string] = ACTIONS(2034), - [anon_sym_symbol] = ACTIONS(2034), - }, - [160] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [170] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2999), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2050), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -34011,7 +35060,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -34034,910 +35083,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [161] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), - [anon_sym_export] = ACTIONS(2054), - [anon_sym_STAR] = ACTIONS(2056), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_as] = ACTIONS(2056), - [anon_sym_namespace] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_COMMA] = ACTIONS(2058), - [anon_sym_RBRACE] = ACTIONS(2052), - [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(2054), - [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_in] = ACTIONS(2056), - [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(2054), - [anon_sym_GT] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2054), - [anon_sym_DOT] = ACTIONS(2056), - [anon_sym_class] = ACTIONS(2054), - [anon_sym_async] = ACTIONS(2054), - [anon_sym_function] = ACTIONS(2054), - [anon_sym_QMARK_DOT] = ACTIONS(2058), - [anon_sym_new] = ACTIONS(2054), - [anon_sym_QMARK] = ACTIONS(2056), - [anon_sym_AMP_AMP] = ACTIONS(2058), - [anon_sym_PIPE_PIPE] = ACTIONS(2058), - [anon_sym_GT_GT] = ACTIONS(2056), - [anon_sym_GT_GT_GT] = ACTIONS(2058), - [anon_sym_LT_LT] = ACTIONS(2058), - [anon_sym_AMP] = ACTIONS(2056), - [anon_sym_CARET] = ACTIONS(2058), - [anon_sym_PIPE] = ACTIONS(2056), - [anon_sym_PLUS] = ACTIONS(2054), - [anon_sym_DASH] = ACTIONS(2054), - [anon_sym_PERCENT] = ACTIONS(2058), - [anon_sym_STAR_STAR] = ACTIONS(2058), - [anon_sym_LT_EQ] = ACTIONS(2058), - [anon_sym_EQ_EQ] = ACTIONS(2056), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2058), - [anon_sym_BANG_EQ] = ACTIONS(2056), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2058), - [anon_sym_GT_EQ] = ACTIONS(2058), - [anon_sym_QMARK_QMARK] = ACTIONS(2058), - [anon_sym_instanceof] = ACTIONS(2056), - [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_readonly] = 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_abstract] = ACTIONS(2054), - [anon_sym_interface] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), - [sym__automatic_semicolon] = ACTIONS(2058), - }, - [162] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [anon_sym_export] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_as] = ACTIONS(2062), - [anon_sym_namespace] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [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(2062), - [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_in] = 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(2062), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_DOT] = ACTIONS(2062), - [anon_sym_class] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2062), - [anon_sym_QMARK_DOT] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2062), - [anon_sym_QMARK] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_GT_GT_GT] = ACTIONS(2060), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_STAR_STAR] = ACTIONS(2060), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2062), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_QMARK_QMARK] = ACTIONS(2060), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2062), - [anon_sym_interface] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [sym__automatic_semicolon] = ACTIONS(2060), - }, - [163] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2066), - [anon_sym_export] = ACTIONS(2066), - [anon_sym_STAR] = ACTIONS(2068), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_as] = ACTIONS(2068), - [anon_sym_namespace] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_COMMA] = ACTIONS(2070), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_typeof] = ACTIONS(2066), - [anon_sym_import] = ACTIONS(2066), - [anon_sym_var] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2066), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_switch] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_await] = ACTIONS(2066), - [anon_sym_in] = ACTIONS(2068), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_try] = ACTIONS(2066), - [anon_sym_with] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_debugger] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_throw] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_case] = ACTIONS(2066), - [anon_sym_yield] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2066), - [anon_sym_GT] = ACTIONS(2068), - [anon_sym_SLASH] = ACTIONS(2066), - [anon_sym_DOT] = ACTIONS(2068), - [anon_sym_class] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_function] = ACTIONS(2066), - [anon_sym_QMARK_DOT] = ACTIONS(2070), - [anon_sym_new] = ACTIONS(2066), - [anon_sym_QMARK] = ACTIONS(2068), - [anon_sym_AMP_AMP] = ACTIONS(2070), - [anon_sym_PIPE_PIPE] = ACTIONS(2070), - [anon_sym_GT_GT] = ACTIONS(2068), - [anon_sym_GT_GT_GT] = ACTIONS(2070), - [anon_sym_LT_LT] = ACTIONS(2070), - [anon_sym_AMP] = ACTIONS(2068), - [anon_sym_CARET] = ACTIONS(2070), - [anon_sym_PIPE] = ACTIONS(2068), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_PERCENT] = ACTIONS(2070), - [anon_sym_STAR_STAR] = ACTIONS(2070), - [anon_sym_LT_EQ] = ACTIONS(2070), - [anon_sym_EQ_EQ] = ACTIONS(2068), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2070), - [anon_sym_BANG_EQ] = ACTIONS(2068), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2070), - [anon_sym_GT_EQ] = ACTIONS(2070), - [anon_sym_QMARK_QMARK] = ACTIONS(2070), - [anon_sym_instanceof] = ACTIONS(2068), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_void] = ACTIONS(2066), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_PLUS_PLUS] = ACTIONS(2064), - [anon_sym_DASH_DASH] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2064), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2064), - [sym_number] = ACTIONS(2064), - [sym_this] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_true] = ACTIONS(2066), - [sym_false] = ACTIONS(2066), - [sym_null] = ACTIONS(2066), - [sym_undefined] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_readonly] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(2066), - [anon_sym_set] = ACTIONS(2066), - [anon_sym_declare] = ACTIONS(2066), - [anon_sym_public] = ACTIONS(2066), - [anon_sym_private] = ACTIONS(2066), - [anon_sym_protected] = ACTIONS(2066), - [anon_sym_module] = ACTIONS(2066), - [anon_sym_any] = ACTIONS(2066), - [anon_sym_number] = ACTIONS(2066), - [anon_sym_boolean] = ACTIONS(2066), - [anon_sym_string] = ACTIONS(2066), - [anon_sym_symbol] = ACTIONS(2066), - [anon_sym_abstract] = ACTIONS(2066), - [anon_sym_interface] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [sym__automatic_semicolon] = ACTIONS(2072), - }, - [164] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [anon_sym_export] = ACTIONS(2062), - [anon_sym_STAR] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_as] = ACTIONS(2062), - [anon_sym_namespace] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [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(2062), - [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_in] = 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(2062), - [anon_sym_GT] = ACTIONS(2062), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_DOT] = ACTIONS(2062), - [anon_sym_class] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2062), - [anon_sym_QMARK_DOT] = ACTIONS(2060), - [anon_sym_new] = ACTIONS(2062), - [anon_sym_QMARK] = ACTIONS(2062), - [anon_sym_AMP_AMP] = ACTIONS(2060), - [anon_sym_PIPE_PIPE] = ACTIONS(2060), - [anon_sym_GT_GT] = ACTIONS(2062), - [anon_sym_GT_GT_GT] = ACTIONS(2060), - [anon_sym_LT_LT] = ACTIONS(2060), - [anon_sym_AMP] = ACTIONS(2062), - [anon_sym_CARET] = ACTIONS(2060), - [anon_sym_PIPE] = ACTIONS(2062), - [anon_sym_PLUS] = ACTIONS(2062), - [anon_sym_DASH] = ACTIONS(2062), - [anon_sym_PERCENT] = ACTIONS(2060), - [anon_sym_STAR_STAR] = ACTIONS(2060), - [anon_sym_LT_EQ] = ACTIONS(2060), - [anon_sym_EQ_EQ] = ACTIONS(2062), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ] = ACTIONS(2062), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2060), - [anon_sym_GT_EQ] = ACTIONS(2060), - [anon_sym_QMARK_QMARK] = ACTIONS(2060), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2062), - [anon_sym_interface] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [sym__automatic_semicolon] = ACTIONS(2074), - }, - [165] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [anon_sym_export] = ACTIONS(2078), - [anon_sym_STAR] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_as] = ACTIONS(2078), - [anon_sym_namespace] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [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(2078), - [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_in] = 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_yield] = ACTIONS(2078), - [anon_sym_LBRACK] = ACTIONS(2076), - [anon_sym_LT] = ACTIONS(2078), - [anon_sym_GT] = ACTIONS(2078), - [anon_sym_SLASH] = ACTIONS(2078), - [anon_sym_DOT] = ACTIONS(2078), - [anon_sym_class] = ACTIONS(2078), - [anon_sym_async] = ACTIONS(2078), - [anon_sym_function] = ACTIONS(2078), - [anon_sym_QMARK_DOT] = ACTIONS(2076), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_QMARK] = ACTIONS(2078), - [anon_sym_AMP_AMP] = ACTIONS(2076), - [anon_sym_PIPE_PIPE] = ACTIONS(2076), - [anon_sym_GT_GT] = ACTIONS(2078), - [anon_sym_GT_GT_GT] = ACTIONS(2076), - [anon_sym_LT_LT] = ACTIONS(2076), - [anon_sym_AMP] = ACTIONS(2078), - [anon_sym_CARET] = ACTIONS(2076), - [anon_sym_PIPE] = ACTIONS(2078), - [anon_sym_PLUS] = ACTIONS(2078), - [anon_sym_DASH] = ACTIONS(2078), - [anon_sym_PERCENT] = ACTIONS(2076), - [anon_sym_STAR_STAR] = ACTIONS(2076), - [anon_sym_LT_EQ] = ACTIONS(2076), - [anon_sym_EQ_EQ] = ACTIONS(2078), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2076), - [anon_sym_BANG_EQ] = ACTIONS(2078), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2076), - [anon_sym_GT_EQ] = ACTIONS(2076), - [anon_sym_QMARK_QMARK] = ACTIONS(2076), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2078), - [anon_sym_interface] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [sym__automatic_semicolon] = ACTIONS(2076), - }, - [166] = { - [sym_nested_identifier] = STATE(5905), - [sym_string] = STATE(4023), - [sym_formal_parameters] = STATE(6009), - [sym_nested_type_identifier] = STATE(3914), - [sym__type] = STATE(4058), - [sym_constructor_type] = STATE(4058), - [sym__primary_type] = STATE(4015), - [sym_infer_type] = STATE(4058), - [sym_conditional_type] = STATE(4019), - [sym_generic_type] = STATE(4019), - [sym_type_query] = STATE(4019), - [sym_index_type_query] = STATE(4019), - [sym_lookup_type] = STATE(4019), - [sym_literal_type] = STATE(4019), - [sym__number] = STATE(4014), - [sym_existential_type] = STATE(4019), - [sym_flow_maybe_type] = STATE(4019), - [sym_parenthesized_type] = STATE(4019), - [sym_predefined_type] = STATE(4019), - [sym_object_type] = STATE(4019), - [sym_type_parameters] = STATE(5481), - [sym_array_type] = STATE(4019), - [sym_tuple_type] = STATE(4019), - [sym_readonly_type] = STATE(4058), - [sym_union_type] = STATE(4058), - [sym_intersection_type] = STATE(4058), - [sym_function_type] = STATE(4058), - [sym_identifier] = ACTIONS(2080), - [anon_sym_STAR] = ACTIONS(2082), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(2084), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(2086), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(2090), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(2092), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(2096), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2100), - [anon_sym_DASH] = ACTIONS(2100), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(2102), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2108), - [sym_this] = ACTIONS(2110), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [anon_sym_readonly] = ACTIONS(2114), - [anon_sym_any] = ACTIONS(2102), - [anon_sym_number] = ACTIONS(2102), - [anon_sym_boolean] = ACTIONS(2102), - [anon_sym_string] = ACTIONS(2102), - [anon_sym_symbol] = ACTIONS(2102), - [anon_sym_infer] = ACTIONS(760), - [anon_sym_keyof] = ACTIONS(762), - [anon_sym_LBRACE_PIPE] = ACTIONS(764), - }, - [167] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2118), - [anon_sym_export] = ACTIONS(2118), - [anon_sym_STAR] = ACTIONS(2120), - [anon_sym_default] = ACTIONS(2118), - [anon_sym_type] = ACTIONS(2118), - [anon_sym_as] = ACTIONS(2120), - [anon_sym_namespace] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_COMMA] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2116), - [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(2118), - [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_in] = ACTIONS(2120), - [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_yield] = ACTIONS(2118), - [anon_sym_LBRACK] = ACTIONS(2116), - [anon_sym_LT] = ACTIONS(2118), - [anon_sym_GT] = ACTIONS(2120), - [anon_sym_SLASH] = ACTIONS(2118), - [anon_sym_DOT] = ACTIONS(2120), - [anon_sym_class] = ACTIONS(2118), - [anon_sym_async] = ACTIONS(2118), - [anon_sym_function] = ACTIONS(2118), - [anon_sym_QMARK_DOT] = ACTIONS(2122), - [anon_sym_new] = ACTIONS(2118), - [anon_sym_QMARK] = ACTIONS(2120), - [anon_sym_AMP_AMP] = ACTIONS(2122), - [anon_sym_PIPE_PIPE] = ACTIONS(2122), - [anon_sym_GT_GT] = ACTIONS(2120), - [anon_sym_GT_GT_GT] = ACTIONS(2122), - [anon_sym_LT_LT] = ACTIONS(2122), - [anon_sym_AMP] = ACTIONS(2120), - [anon_sym_CARET] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2120), - [anon_sym_PLUS] = ACTIONS(2118), - [anon_sym_DASH] = ACTIONS(2118), - [anon_sym_PERCENT] = ACTIONS(2122), - [anon_sym_STAR_STAR] = ACTIONS(2122), - [anon_sym_LT_EQ] = ACTIONS(2122), - [anon_sym_EQ_EQ] = ACTIONS(2120), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2122), - [anon_sym_BANG_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2122), - [anon_sym_GT_EQ] = ACTIONS(2122), - [anon_sym_QMARK_QMARK] = ACTIONS(2122), - [anon_sym_instanceof] = ACTIONS(2120), - [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_readonly] = ACTIONS(2118), - [anon_sym_get] = ACTIONS(2118), - [anon_sym_set] = ACTIONS(2118), - [anon_sym_declare] = ACTIONS(2118), - [anon_sym_public] = ACTIONS(2118), - [anon_sym_private] = ACTIONS(2118), - [anon_sym_protected] = ACTIONS(2118), - [anon_sym_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_abstract] = ACTIONS(2118), - [anon_sym_interface] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [sym__automatic_semicolon] = ACTIONS(2124), - }, - [168] = { - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2128), - [anon_sym_export] = ACTIONS(2128), - [anon_sym_STAR] = ACTIONS(2130), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_as] = ACTIONS(2130), - [anon_sym_namespace] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_COMMA] = ACTIONS(2132), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2128), - [anon_sym_import] = ACTIONS(2128), - [anon_sym_var] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2128), - [anon_sym_else] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_switch] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2128), - [anon_sym_in] = ACTIONS(2130), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_do] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [anon_sym_with] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_debugger] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_throw] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2128), - [anon_sym_GT] = ACTIONS(2130), - [anon_sym_SLASH] = ACTIONS(2128), - [anon_sym_DOT] = ACTIONS(2130), - [anon_sym_class] = ACTIONS(2128), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_function] = ACTIONS(2128), - [anon_sym_QMARK_DOT] = ACTIONS(2132), - [anon_sym_new] = ACTIONS(2128), - [anon_sym_QMARK] = ACTIONS(2130), - [anon_sym_AMP_AMP] = ACTIONS(2132), - [anon_sym_PIPE_PIPE] = ACTIONS(2132), - [anon_sym_GT_GT] = ACTIONS(2130), - [anon_sym_GT_GT_GT] = ACTIONS(2132), - [anon_sym_LT_LT] = ACTIONS(2132), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_CARET] = ACTIONS(2132), - [anon_sym_PIPE] = ACTIONS(2130), - [anon_sym_PLUS] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2128), - [anon_sym_PERCENT] = ACTIONS(2132), - [anon_sym_STAR_STAR] = ACTIONS(2132), - [anon_sym_LT_EQ] = ACTIONS(2132), - [anon_sym_EQ_EQ] = ACTIONS(2130), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2132), - [anon_sym_BANG_EQ] = ACTIONS(2130), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2132), - [anon_sym_GT_EQ] = ACTIONS(2132), - [anon_sym_QMARK_QMARK] = ACTIONS(2132), - [anon_sym_instanceof] = ACTIONS(2130), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2128), - [anon_sym_delete] = ACTIONS(2128), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_this] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_true] = ACTIONS(2128), - [sym_false] = ACTIONS(2128), - [sym_null] = ACTIONS(2128), - [sym_undefined] = ACTIONS(2128), - [anon_sym_AT] = ACTIONS(2126), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_readonly] = ACTIONS(2128), - [anon_sym_get] = ACTIONS(2128), - [anon_sym_set] = ACTIONS(2128), - [anon_sym_declare] = ACTIONS(2128), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [anon_sym_module] = ACTIONS(2128), - [anon_sym_any] = ACTIONS(2128), - [anon_sym_number] = ACTIONS(2128), - [anon_sym_boolean] = ACTIONS(2128), - [anon_sym_string] = ACTIONS(2128), - [anon_sym_symbol] = ACTIONS(2128), - [anon_sym_abstract] = ACTIONS(2128), - [anon_sym_interface] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [sym__automatic_semicolon] = ACTIONS(2134), + [171] = { + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_STAR] = ACTIONS(2077), + [anon_sym_default] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_as] = ACTIONS(2077), + [anon_sym_namespace] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_COMMA] = ACTIONS(2079), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_typeof] = ACTIONS(2075), + [anon_sym_import] = ACTIONS(2075), + [anon_sym_var] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2075), + [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_in] = ACTIONS(2077), + [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(2075), + [anon_sym_GT] = ACTIONS(2077), + [anon_sym_SLASH] = ACTIONS(2075), + [anon_sym_DOT] = ACTIONS(2077), + [anon_sym_class] = ACTIONS(2075), + [anon_sym_async] = ACTIONS(2075), + [anon_sym_function] = ACTIONS(2075), + [anon_sym_QMARK_DOT] = ACTIONS(2079), + [anon_sym_new] = ACTIONS(2075), + [anon_sym_QMARK] = ACTIONS(2077), + [anon_sym_AMP_AMP] = ACTIONS(2079), + [anon_sym_PIPE_PIPE] = ACTIONS(2079), + [anon_sym_GT_GT] = ACTIONS(2077), + [anon_sym_GT_GT_GT] = ACTIONS(2079), + [anon_sym_LT_LT] = ACTIONS(2079), + [anon_sym_AMP] = ACTIONS(2077), + [anon_sym_CARET] = ACTIONS(2079), + [anon_sym_PIPE] = ACTIONS(2077), + [anon_sym_PLUS] = ACTIONS(2075), + [anon_sym_DASH] = ACTIONS(2075), + [anon_sym_PERCENT] = ACTIONS(2079), + [anon_sym_STAR_STAR] = ACTIONS(2079), + [anon_sym_LT_EQ] = ACTIONS(2079), + [anon_sym_EQ_EQ] = ACTIONS(2077), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2079), + [anon_sym_BANG_EQ] = ACTIONS(2077), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2079), + [anon_sym_GT_EQ] = ACTIONS(2079), + [anon_sym_QMARK_QMARK] = ACTIONS(2079), + [anon_sym_instanceof] = ACTIONS(2077), + [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_readonly] = ACTIONS(2075), + [anon_sym_get] = ACTIONS(2075), + [anon_sym_set] = ACTIONS(2075), + [anon_sym_declare] = ACTIONS(2075), + [anon_sym_public] = ACTIONS(2075), + [anon_sym_private] = ACTIONS(2075), + [anon_sym_protected] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_any] = ACTIONS(2075), + [anon_sym_number] = ACTIONS(2075), + [anon_sym_boolean] = ACTIONS(2075), + [anon_sym_string] = ACTIONS(2075), + [anon_sym_symbol] = ACTIONS(2075), + [anon_sym_abstract] = ACTIONS(2075), + [anon_sym_interface] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [sym__automatic_semicolon] = ACTIONS(2081), }, - [169] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [172] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2136), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2083), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -34947,7 +35268,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -34970,1326 +35291,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [170] = { - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_STAR] = ACTIONS(2142), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2142), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_COMMA] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_in] = ACTIONS(2142), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2140), - [anon_sym_GT] = ACTIONS(2142), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_DOT] = ACTIONS(2142), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_QMARK_DOT] = ACTIONS(2144), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_QMARK] = ACTIONS(2142), - [anon_sym_AMP_AMP] = ACTIONS(2144), - [anon_sym_PIPE_PIPE] = ACTIONS(2144), - [anon_sym_GT_GT] = ACTIONS(2142), - [anon_sym_GT_GT_GT] = ACTIONS(2144), - [anon_sym_LT_LT] = ACTIONS(2144), - [anon_sym_AMP] = ACTIONS(2142), - [anon_sym_CARET] = ACTIONS(2144), - [anon_sym_PIPE] = ACTIONS(2142), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_PERCENT] = ACTIONS(2144), - [anon_sym_STAR_STAR] = ACTIONS(2144), - [anon_sym_LT_EQ] = ACTIONS(2144), - [anon_sym_EQ_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2144), - [anon_sym_BANG_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2144), - [anon_sym_GT_EQ] = ACTIONS(2144), - [anon_sym_QMARK_QMARK] = ACTIONS(2144), - [anon_sym_instanceof] = ACTIONS(2142), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2146), - }, - [171] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [173] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [172] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(2154), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1936), - [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_implements] = ACTIONS(1729), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [173] = { - [sym_import] = STATE(2475), - [sym_expression_statement] = STATE(240), - [sym_variable_declaration] = STATE(240), - [sym_lexical_declaration] = STATE(240), - [sym_empty_statement] = STATE(240), - [sym_parenthesized_expression] = STATE(2054), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5376), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5376), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2054), - [sym_subscript_expression] = STATE(2054), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5376), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2054), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2032), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_namespace] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2038), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), - [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(2044), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_function] = ACTIONS(908), - [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(2048), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_readonly] = ACTIONS(2034), - [anon_sym_get] = ACTIONS(2034), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_declare] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_protected] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_any] = ACTIONS(2034), - [anon_sym_number] = ACTIONS(2034), - [anon_sym_boolean] = ACTIONS(2034), - [anon_sym_string] = ACTIONS(2034), - [anon_sym_symbol] = ACTIONS(2034), + [sym__automatic_semicolon] = ACTIONS(1730), }, [174] = { - [ts_builtin_sym_end] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2158), - [anon_sym_export] = ACTIONS(2158), - [anon_sym_STAR] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2158), - [anon_sym_type] = ACTIONS(2158), - [anon_sym_as] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_COMMA] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2158), - [anon_sym_import] = ACTIONS(2158), - [anon_sym_var] = ACTIONS(2158), - [anon_sym_let] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2158), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2158), - [anon_sym_in] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_try] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_debugger] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_throw] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_case] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2158), - [anon_sym_GT] = ACTIONS(2158), - [anon_sym_SLASH] = ACTIONS(2158), - [anon_sym_DOT] = ACTIONS(2158), - [anon_sym_class] = ACTIONS(2158), - [anon_sym_async] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2158), - [anon_sym_QMARK_DOT] = ACTIONS(2156), - [anon_sym_new] = ACTIONS(2158), - [anon_sym_QMARK] = ACTIONS(2158), - [anon_sym_AMP_AMP] = ACTIONS(2156), - [anon_sym_PIPE_PIPE] = ACTIONS(2156), - [anon_sym_GT_GT] = ACTIONS(2158), - [anon_sym_GT_GT_GT] = ACTIONS(2156), - [anon_sym_LT_LT] = ACTIONS(2156), - [anon_sym_AMP] = ACTIONS(2158), - [anon_sym_CARET] = ACTIONS(2156), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2158), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_PERCENT] = ACTIONS(2156), - [anon_sym_STAR_STAR] = ACTIONS(2156), - [anon_sym_LT_EQ] = ACTIONS(2156), - [anon_sym_EQ_EQ] = ACTIONS(2158), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2156), - [anon_sym_BANG_EQ] = ACTIONS(2158), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2156), - [anon_sym_GT_EQ] = ACTIONS(2156), - [anon_sym_QMARK_QMARK] = ACTIONS(2156), - [anon_sym_instanceof] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2158), - [anon_sym_delete] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_this] = ACTIONS(2158), - [sym_super] = ACTIONS(2158), - [sym_true] = ACTIONS(2158), - [sym_false] = ACTIONS(2158), - [sym_null] = ACTIONS(2158), - [sym_undefined] = ACTIONS(2158), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_readonly] = ACTIONS(2158), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_declare] = ACTIONS(2158), - [anon_sym_public] = ACTIONS(2158), - [anon_sym_private] = ACTIONS(2158), - [anon_sym_protected] = ACTIONS(2158), - [anon_sym_module] = ACTIONS(2158), - [anon_sym_any] = ACTIONS(2158), - [anon_sym_number] = ACTIONS(2158), - [anon_sym_boolean] = ACTIONS(2158), - [anon_sym_string] = ACTIONS(2158), - [anon_sym_symbol] = ACTIONS(2158), - [anon_sym_abstract] = ACTIONS(2158), - [anon_sym_interface] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), - [sym__automatic_semicolon] = ACTIONS(2156), - }, - [175] = { - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2162), - [anon_sym_STAR] = ACTIONS(2162), - [anon_sym_default] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_as] = ACTIONS(2162), - [anon_sym_namespace] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2162), - [anon_sym_import] = ACTIONS(2162), - [anon_sym_var] = ACTIONS(2162), - [anon_sym_let] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2162), - [anon_sym_else] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_switch] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2162), - [anon_sym_in] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_do] = ACTIONS(2162), - [anon_sym_try] = ACTIONS(2162), - [anon_sym_with] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_debugger] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_throw] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2162), - [anon_sym_yield] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2162), - [anon_sym_GT] = ACTIONS(2162), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_DOT] = ACTIONS(2162), - [anon_sym_class] = ACTIONS(2162), - [anon_sym_async] = ACTIONS(2162), - [anon_sym_function] = ACTIONS(2162), - [anon_sym_QMARK_DOT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(2162), - [anon_sym_AMP_AMP] = ACTIONS(2160), - [anon_sym_PIPE_PIPE] = ACTIONS(2160), - [anon_sym_GT_GT] = ACTIONS(2162), - [anon_sym_GT_GT_GT] = ACTIONS(2160), - [anon_sym_LT_LT] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2162), - [anon_sym_CARET] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2162), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_PERCENT] = ACTIONS(2160), - [anon_sym_STAR_STAR] = ACTIONS(2160), - [anon_sym_LT_EQ] = ACTIONS(2160), - [anon_sym_EQ_EQ] = ACTIONS(2162), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2160), - [anon_sym_BANG_EQ] = ACTIONS(2162), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2160), - [anon_sym_GT_EQ] = ACTIONS(2160), - [anon_sym_QMARK_QMARK] = ACTIONS(2160), - [anon_sym_instanceof] = ACTIONS(2162), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2162), - [anon_sym_delete] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_this] = ACTIONS(2162), - [sym_super] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_null] = ACTIONS(2162), - [sym_undefined] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_readonly] = ACTIONS(2162), - [anon_sym_get] = ACTIONS(2162), - [anon_sym_set] = ACTIONS(2162), - [anon_sym_declare] = ACTIONS(2162), - [anon_sym_public] = ACTIONS(2162), - [anon_sym_private] = ACTIONS(2162), - [anon_sym_protected] = ACTIONS(2162), - [anon_sym_module] = ACTIONS(2162), - [anon_sym_any] = ACTIONS(2162), - [anon_sym_number] = ACTIONS(2162), - [anon_sym_boolean] = ACTIONS(2162), - [anon_sym_string] = ACTIONS(2162), - [anon_sym_symbol] = ACTIONS(2162), - [anon_sym_abstract] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), - [sym__automatic_semicolon] = ACTIONS(2160), - }, - [176] = { - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_STAR] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_as] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [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(2166), - [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_in] = 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_yield] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2164), - [anon_sym_LT] = ACTIONS(2166), - [anon_sym_GT] = ACTIONS(2166), - [anon_sym_SLASH] = ACTIONS(2166), - [anon_sym_DOT] = ACTIONS(2166), - [anon_sym_class] = ACTIONS(2166), - [anon_sym_async] = ACTIONS(2166), - [anon_sym_function] = ACTIONS(2166), - [anon_sym_QMARK_DOT] = ACTIONS(2164), - [anon_sym_new] = ACTIONS(2166), - [anon_sym_QMARK] = ACTIONS(2166), - [anon_sym_AMP_AMP] = ACTIONS(2164), - [anon_sym_PIPE_PIPE] = ACTIONS(2164), - [anon_sym_GT_GT] = ACTIONS(2166), - [anon_sym_GT_GT_GT] = ACTIONS(2164), - [anon_sym_LT_LT] = ACTIONS(2164), - [anon_sym_AMP] = ACTIONS(2166), - [anon_sym_CARET] = ACTIONS(2164), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_PLUS] = ACTIONS(2166), - [anon_sym_DASH] = ACTIONS(2166), - [anon_sym_PERCENT] = ACTIONS(2164), - [anon_sym_STAR_STAR] = ACTIONS(2164), - [anon_sym_LT_EQ] = ACTIONS(2164), - [anon_sym_EQ_EQ] = ACTIONS(2166), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2164), - [anon_sym_BANG_EQ] = ACTIONS(2166), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2164), - [anon_sym_GT_EQ] = ACTIONS(2164), - [anon_sym_QMARK_QMARK] = ACTIONS(2164), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [sym__automatic_semicolon] = ACTIONS(2164), - }, - [177] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(6068), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4273), - [sym_constructor_type] = STATE(4273), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4273), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5451), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4273), - [sym_union_type] = STATE(4273), - [sym_intersection_type] = STATE(4273), - [sym_function_type] = STATE(4273), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_typeof] = ACTIONS(2168), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(2170), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2172), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(2174), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2178), - [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_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(1640), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [178] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_STAR] = ACTIONS(2184), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_COMMA] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2180), - [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(2182), - [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_in] = ACTIONS(2184), - [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_yield] = ACTIONS(2182), - [anon_sym_LBRACK] = ACTIONS(2180), - [anon_sym_LT] = ACTIONS(2182), - [anon_sym_GT] = ACTIONS(2184), - [anon_sym_SLASH] = ACTIONS(2182), - [anon_sym_DOT] = ACTIONS(2184), - [anon_sym_class] = ACTIONS(2182), - [anon_sym_async] = ACTIONS(2182), - [anon_sym_function] = ACTIONS(2182), - [anon_sym_QMARK_DOT] = ACTIONS(2186), - [anon_sym_new] = ACTIONS(2182), - [anon_sym_QMARK] = ACTIONS(2184), - [anon_sym_AMP_AMP] = ACTIONS(2186), - [anon_sym_PIPE_PIPE] = ACTIONS(2186), - [anon_sym_GT_GT] = ACTIONS(2184), - [anon_sym_GT_GT_GT] = ACTIONS(2186), - [anon_sym_LT_LT] = ACTIONS(2186), - [anon_sym_AMP] = ACTIONS(2184), - [anon_sym_CARET] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2184), - [anon_sym_PLUS] = ACTIONS(2182), - [anon_sym_DASH] = ACTIONS(2182), - [anon_sym_PERCENT] = ACTIONS(2186), - [anon_sym_STAR_STAR] = ACTIONS(2186), - [anon_sym_LT_EQ] = ACTIONS(2186), - [anon_sym_EQ_EQ] = ACTIONS(2184), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2186), - [anon_sym_BANG_EQ] = ACTIONS(2184), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2186), - [anon_sym_GT_EQ] = ACTIONS(2186), - [anon_sym_QMARK_QMARK] = ACTIONS(2186), - [anon_sym_instanceof] = ACTIONS(2184), - [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_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_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_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2188), - }, - [179] = { - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_STAR] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_as] = ACTIONS(2192), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_COMMA] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [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(2192), - [anon_sym_else] = ACTIONS(2192), - [anon_sym_if] = ACTIONS(2192), - [anon_sym_switch] = ACTIONS(2192), - [anon_sym_for] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2190), - [anon_sym_await] = ACTIONS(2192), - [anon_sym_in] = 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(2192), - [anon_sym_GT] = ACTIONS(2192), - [anon_sym_SLASH] = ACTIONS(2192), - [anon_sym_DOT] = ACTIONS(2192), - [anon_sym_class] = ACTIONS(2192), - [anon_sym_async] = ACTIONS(2192), - [anon_sym_function] = ACTIONS(2192), - [anon_sym_QMARK_DOT] = ACTIONS(2190), - [anon_sym_new] = ACTIONS(2192), - [anon_sym_QMARK] = ACTIONS(2192), - [anon_sym_AMP_AMP] = ACTIONS(2190), - [anon_sym_PIPE_PIPE] = ACTIONS(2190), - [anon_sym_GT_GT] = ACTIONS(2192), - [anon_sym_GT_GT_GT] = ACTIONS(2190), - [anon_sym_LT_LT] = ACTIONS(2190), - [anon_sym_AMP] = ACTIONS(2192), - [anon_sym_CARET] = ACTIONS(2190), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_PLUS] = ACTIONS(2192), - [anon_sym_DASH] = ACTIONS(2192), - [anon_sym_PERCENT] = ACTIONS(2190), - [anon_sym_STAR_STAR] = ACTIONS(2190), - [anon_sym_LT_EQ] = ACTIONS(2190), - [anon_sym_EQ_EQ] = ACTIONS(2192), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2190), - [anon_sym_BANG_EQ] = ACTIONS(2192), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2190), - [anon_sym_GT_EQ] = ACTIONS(2190), - [anon_sym_QMARK_QMARK] = ACTIONS(2190), - [anon_sym_instanceof] = 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_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_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_abstract] = ACTIONS(2192), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - [sym__automatic_semicolon] = ACTIONS(2190), - }, - [180] = { - [ts_builtin_sym_end] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_STAR] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_as] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [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(2196), - [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_in] = 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(2196), - [anon_sym_GT] = ACTIONS(2196), - [anon_sym_SLASH] = ACTIONS(2196), - [anon_sym_DOT] = ACTIONS(2196), - [anon_sym_class] = ACTIONS(2196), - [anon_sym_async] = ACTIONS(2196), - [anon_sym_function] = ACTIONS(2196), - [anon_sym_QMARK_DOT] = ACTIONS(2194), - [anon_sym_new] = ACTIONS(2196), - [anon_sym_QMARK] = ACTIONS(2196), - [anon_sym_AMP_AMP] = ACTIONS(2194), - [anon_sym_PIPE_PIPE] = ACTIONS(2194), - [anon_sym_GT_GT] = ACTIONS(2196), - [anon_sym_GT_GT_GT] = ACTIONS(2194), - [anon_sym_LT_LT] = ACTIONS(2194), - [anon_sym_AMP] = ACTIONS(2196), - [anon_sym_CARET] = ACTIONS(2194), - [anon_sym_PIPE] = ACTIONS(2196), - [anon_sym_PLUS] = ACTIONS(2196), - [anon_sym_DASH] = ACTIONS(2196), - [anon_sym_PERCENT] = ACTIONS(2194), - [anon_sym_STAR_STAR] = ACTIONS(2194), - [anon_sym_LT_EQ] = ACTIONS(2194), - [anon_sym_EQ_EQ] = ACTIONS(2196), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2194), - [anon_sym_BANG_EQ] = ACTIONS(2196), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2194), - [anon_sym_GT_EQ] = ACTIONS(2194), - [anon_sym_QMARK_QMARK] = ACTIONS(2194), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [sym__automatic_semicolon] = ACTIONS(2194), - }, - [181] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(2198), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(2200), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [182] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2203), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2089), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -36299,7 +35476,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -36322,78 +35499,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [183] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3054), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5125), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [175] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4405), + [sym_constructor_type] = STATE(4405), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4405), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4405), + [sym_union_type] = STATE(4405), + [sym_intersection_type] = STATE(4405), + [sym_function_type] = STATE(4405), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_RBRACK] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2095), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(2097), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(2099), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(638), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [176] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5214), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5127), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5234), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2205), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2103), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -36403,7 +35684,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -36426,182 +35707,1222 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, + [177] = { + [ts_builtin_sym_end] = ACTIONS(2105), + [sym_identifier] = ACTIONS(2107), + [anon_sym_export] = ACTIONS(2107), + [anon_sym_STAR] = ACTIONS(2107), + [anon_sym_default] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2107), + [anon_sym_as] = ACTIONS(2107), + [anon_sym_namespace] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [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(2107), + [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_in] = 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(2107), + [anon_sym_GT] = ACTIONS(2107), + [anon_sym_SLASH] = ACTIONS(2107), + [anon_sym_DOT] = ACTIONS(2107), + [anon_sym_class] = ACTIONS(2107), + [anon_sym_async] = ACTIONS(2107), + [anon_sym_function] = ACTIONS(2107), + [anon_sym_QMARK_DOT] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2107), + [anon_sym_QMARK] = ACTIONS(2107), + [anon_sym_AMP_AMP] = ACTIONS(2105), + [anon_sym_PIPE_PIPE] = ACTIONS(2105), + [anon_sym_GT_GT] = ACTIONS(2107), + [anon_sym_GT_GT_GT] = ACTIONS(2105), + [anon_sym_LT_LT] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2107), + [anon_sym_CARET] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2107), + [anon_sym_PLUS] = ACTIONS(2107), + [anon_sym_DASH] = ACTIONS(2107), + [anon_sym_PERCENT] = ACTIONS(2105), + [anon_sym_STAR_STAR] = ACTIONS(2105), + [anon_sym_LT_EQ] = ACTIONS(2105), + [anon_sym_EQ_EQ] = ACTIONS(2107), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2105), + [anon_sym_BANG_EQ] = ACTIONS(2107), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2105), + [anon_sym_GT_EQ] = ACTIONS(2105), + [anon_sym_QMARK_QMARK] = ACTIONS(2105), + [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2107), + [anon_sym_interface] = ACTIONS(2107), + [anon_sym_enum] = ACTIONS(2107), + [sym__automatic_semicolon] = ACTIONS(2105), + }, + [178] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [179] = { + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2115), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_COMMA] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2113), + [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(2115), + [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_in] = ACTIONS(2117), + [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(2115), + [anon_sym_GT] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2115), + [anon_sym_DOT] = ACTIONS(2117), + [anon_sym_class] = ACTIONS(2115), + [anon_sym_async] = ACTIONS(2115), + [anon_sym_function] = ACTIONS(2115), + [anon_sym_QMARK_DOT] = ACTIONS(2119), + [anon_sym_new] = ACTIONS(2115), + [anon_sym_QMARK] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(2119), + [anon_sym_PIPE_PIPE] = ACTIONS(2119), + [anon_sym_GT_GT] = ACTIONS(2117), + [anon_sym_GT_GT_GT] = ACTIONS(2119), + [anon_sym_LT_LT] = ACTIONS(2119), + [anon_sym_AMP] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2119), + [anon_sym_PIPE] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2115), + [anon_sym_DASH] = ACTIONS(2115), + [anon_sym_PERCENT] = ACTIONS(2119), + [anon_sym_STAR_STAR] = ACTIONS(2119), + [anon_sym_LT_EQ] = ACTIONS(2119), + [anon_sym_EQ_EQ] = ACTIONS(2117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2119), + [anon_sym_BANG_EQ] = ACTIONS(2117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2119), + [anon_sym_GT_EQ] = ACTIONS(2119), + [anon_sym_QMARK_QMARK] = ACTIONS(2119), + [anon_sym_instanceof] = ACTIONS(2117), + [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_readonly] = ACTIONS(2115), + [anon_sym_get] = ACTIONS(2115), + [anon_sym_set] = ACTIONS(2115), + [anon_sym_declare] = ACTIONS(2115), + [anon_sym_public] = ACTIONS(2115), + [anon_sym_private] = ACTIONS(2115), + [anon_sym_protected] = ACTIONS(2115), + [anon_sym_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_abstract] = ACTIONS(2115), + [anon_sym_interface] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [sym__automatic_semicolon] = ACTIONS(2121), + }, + [180] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5960), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4385), + [sym_constructor_type] = STATE(4385), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4385), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5417), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4385), + [sym_union_type] = STATE(4385), + [sym_intersection_type] = STATE(4385), + [sym_function_type] = STATE(4385), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(2123), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(2125), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2127), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(2129), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(2131), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2133), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(1106), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [181] = { + [sym_import] = STATE(2413), + [sym_expression_statement] = STATE(245), + [sym_variable_declaration] = STATE(245), + [sym_lexical_declaration] = STATE(245), + [sym_empty_statement] = STATE(245), + [sym_parenthesized_expression] = STATE(2052), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5287), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5287), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2052), + [sym_subscript_expression] = STATE(2052), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5287), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2052), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2135), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [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(2147), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(1012), + [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(2151), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_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), + }, + [182] = { + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_STAR] = ACTIONS(2157), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_as] = ACTIONS(2157), + [anon_sym_namespace] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_COMMA] = ACTIONS(2159), + [anon_sym_RBRACE] = ACTIONS(2153), + [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(2155), + [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_in] = ACTIONS(2157), + [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(2155), + [anon_sym_GT] = ACTIONS(2157), + [anon_sym_SLASH] = ACTIONS(2155), + [anon_sym_DOT] = ACTIONS(2157), + [anon_sym_class] = ACTIONS(2155), + [anon_sym_async] = ACTIONS(2155), + [anon_sym_function] = ACTIONS(2155), + [anon_sym_QMARK_DOT] = ACTIONS(2159), + [anon_sym_new] = ACTIONS(2155), + [anon_sym_QMARK] = ACTIONS(2157), + [anon_sym_AMP_AMP] = ACTIONS(2159), + [anon_sym_PIPE_PIPE] = ACTIONS(2159), + [anon_sym_GT_GT] = ACTIONS(2157), + [anon_sym_GT_GT_GT] = ACTIONS(2159), + [anon_sym_LT_LT] = ACTIONS(2159), + [anon_sym_AMP] = ACTIONS(2157), + [anon_sym_CARET] = ACTIONS(2159), + [anon_sym_PIPE] = ACTIONS(2157), + [anon_sym_PLUS] = ACTIONS(2155), + [anon_sym_DASH] = ACTIONS(2155), + [anon_sym_PERCENT] = ACTIONS(2159), + [anon_sym_STAR_STAR] = ACTIONS(2159), + [anon_sym_LT_EQ] = ACTIONS(2159), + [anon_sym_EQ_EQ] = ACTIONS(2157), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2159), + [anon_sym_BANG_EQ] = ACTIONS(2157), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2159), + [anon_sym_GT_EQ] = ACTIONS(2159), + [anon_sym_QMARK_QMARK] = ACTIONS(2159), + [anon_sym_instanceof] = ACTIONS(2157), + [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_readonly] = 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_abstract] = ACTIONS(2155), + [anon_sym_interface] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [sym__automatic_semicolon] = ACTIONS(2161), + }, + [183] = { + [ts_builtin_sym_end] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2165), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_STAR] = ACTIONS(2167), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_as] = ACTIONS(2167), + [anon_sym_namespace] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_COMMA] = ACTIONS(2169), + [anon_sym_RBRACE] = ACTIONS(2163), + [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(2165), + [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_in] = ACTIONS(2167), + [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(2165), + [anon_sym_GT] = ACTIONS(2167), + [anon_sym_SLASH] = ACTIONS(2165), + [anon_sym_DOT] = ACTIONS(2167), + [anon_sym_class] = ACTIONS(2165), + [anon_sym_async] = ACTIONS(2165), + [anon_sym_function] = ACTIONS(2165), + [anon_sym_QMARK_DOT] = ACTIONS(2169), + [anon_sym_new] = ACTIONS(2165), + [anon_sym_QMARK] = ACTIONS(2167), + [anon_sym_AMP_AMP] = ACTIONS(2169), + [anon_sym_PIPE_PIPE] = ACTIONS(2169), + [anon_sym_GT_GT] = ACTIONS(2167), + [anon_sym_GT_GT_GT] = ACTIONS(2169), + [anon_sym_LT_LT] = ACTIONS(2169), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(2169), + [anon_sym_PIPE] = ACTIONS(2167), + [anon_sym_PLUS] = ACTIONS(2165), + [anon_sym_DASH] = ACTIONS(2165), + [anon_sym_PERCENT] = ACTIONS(2169), + [anon_sym_STAR_STAR] = ACTIONS(2169), + [anon_sym_LT_EQ] = ACTIONS(2169), + [anon_sym_EQ_EQ] = ACTIONS(2167), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2169), + [anon_sym_BANG_EQ] = ACTIONS(2167), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2169), + [anon_sym_GT_EQ] = ACTIONS(2169), + [anon_sym_QMARK_QMARK] = ACTIONS(2169), + [anon_sym_instanceof] = ACTIONS(2167), + [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_readonly] = ACTIONS(2165), + [anon_sym_get] = ACTIONS(2165), + [anon_sym_set] = ACTIONS(2165), + [anon_sym_declare] = ACTIONS(2165), + [anon_sym_public] = ACTIONS(2165), + [anon_sym_private] = ACTIONS(2165), + [anon_sym_protected] = ACTIONS(2165), + [anon_sym_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_abstract] = ACTIONS(2165), + [anon_sym_interface] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [sym__automatic_semicolon] = ACTIONS(2171), + }, [184] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2209), - [anon_sym_STAR] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(2209), - [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_COMMA] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [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(2209), - [anon_sym_else] = ACTIONS(2209), - [anon_sym_if] = ACTIONS(2209), - [anon_sym_switch] = ACTIONS(2209), - [anon_sym_for] = ACTIONS(2209), - [anon_sym_LPAREN] = ACTIONS(2207), - [anon_sym_await] = ACTIONS(2209), - [anon_sym_in] = ACTIONS(2209), - [anon_sym_while] = ACTIONS(2209), - [anon_sym_do] = ACTIONS(2209), - [anon_sym_try] = ACTIONS(2209), - [anon_sym_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(2209), - [anon_sym_GT] = ACTIONS(2209), - [anon_sym_SLASH] = ACTIONS(2209), - [anon_sym_DOT] = ACTIONS(2209), - [anon_sym_class] = ACTIONS(2209), - [anon_sym_async] = ACTIONS(2209), - [anon_sym_function] = ACTIONS(2209), - [anon_sym_QMARK_DOT] = ACTIONS(2207), - [anon_sym_new] = ACTIONS(2209), - [anon_sym_QMARK] = ACTIONS(2209), - [anon_sym_AMP_AMP] = ACTIONS(2207), - [anon_sym_PIPE_PIPE] = ACTIONS(2207), - [anon_sym_GT_GT] = ACTIONS(2209), - [anon_sym_GT_GT_GT] = ACTIONS(2207), - [anon_sym_LT_LT] = ACTIONS(2207), - [anon_sym_AMP] = ACTIONS(2209), - [anon_sym_CARET] = ACTIONS(2207), - [anon_sym_PIPE] = ACTIONS(2209), - [anon_sym_PLUS] = ACTIONS(2209), - [anon_sym_DASH] = ACTIONS(2209), - [anon_sym_PERCENT] = ACTIONS(2207), - [anon_sym_STAR_STAR] = ACTIONS(2207), - [anon_sym_LT_EQ] = ACTIONS(2207), - [anon_sym_EQ_EQ] = ACTIONS(2209), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2207), - [anon_sym_BANG_EQ] = ACTIONS(2209), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2207), - [anon_sym_GT_EQ] = ACTIONS(2207), - [anon_sym_QMARK_QMARK] = ACTIONS(2207), - [anon_sym_instanceof] = 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_readonly] = ACTIONS(2209), - [anon_sym_get] = ACTIONS(2209), - [anon_sym_set] = ACTIONS(2209), - [anon_sym_declare] = ACTIONS(2209), - [anon_sym_public] = ACTIONS(2209), - [anon_sym_private] = ACTIONS(2209), - [anon_sym_protected] = ACTIONS(2209), - [anon_sym_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_abstract] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), - [sym__automatic_semicolon] = ACTIONS(2207), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2177), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2177), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2179), + [anon_sym_RBRACE] = ACTIONS(2173), + [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(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_in] = ACTIONS(2177), + [anon_sym_while] = ACTIONS(2175), + [anon_sym_do] = ACTIONS(2175), + [anon_sym_try] = ACTIONS(2175), + [anon_sym_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(2175), + [anon_sym_GT] = ACTIONS(2177), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2177), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2179), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2177), + [anon_sym_AMP_AMP] = ACTIONS(2179), + [anon_sym_PIPE_PIPE] = ACTIONS(2179), + [anon_sym_GT_GT] = ACTIONS(2177), + [anon_sym_GT_GT_GT] = ACTIONS(2179), + [anon_sym_LT_LT] = ACTIONS(2179), + [anon_sym_AMP] = ACTIONS(2177), + [anon_sym_CARET] = ACTIONS(2179), + [anon_sym_PIPE] = ACTIONS(2177), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2179), + [anon_sym_STAR_STAR] = ACTIONS(2179), + [anon_sym_LT_EQ] = ACTIONS(2179), + [anon_sym_EQ_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2179), + [anon_sym_BANG_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2179), + [anon_sym_GT_EQ] = ACTIONS(2179), + [anon_sym_QMARK_QMARK] = ACTIONS(2179), + [anon_sym_instanceof] = ACTIONS(2177), + [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_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_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_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2181), }, [185] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3062), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_STAR] = ACTIONS(2187), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_as] = ACTIONS(2187), + [anon_sym_namespace] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_COMMA] = ACTIONS(2189), + [anon_sym_RBRACE] = ACTIONS(2183), + [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(2185), + [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_in] = ACTIONS(2187), + [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(2185), + [anon_sym_GT] = ACTIONS(2187), + [anon_sym_SLASH] = ACTIONS(2185), + [anon_sym_DOT] = ACTIONS(2187), + [anon_sym_class] = ACTIONS(2185), + [anon_sym_async] = ACTIONS(2185), + [anon_sym_function] = ACTIONS(2185), + [anon_sym_QMARK_DOT] = ACTIONS(2189), + [anon_sym_new] = ACTIONS(2185), + [anon_sym_QMARK] = ACTIONS(2187), + [anon_sym_AMP_AMP] = ACTIONS(2189), + [anon_sym_PIPE_PIPE] = ACTIONS(2189), + [anon_sym_GT_GT] = ACTIONS(2187), + [anon_sym_GT_GT_GT] = ACTIONS(2189), + [anon_sym_LT_LT] = ACTIONS(2189), + [anon_sym_AMP] = ACTIONS(2187), + [anon_sym_CARET] = ACTIONS(2189), + [anon_sym_PIPE] = ACTIONS(2187), + [anon_sym_PLUS] = ACTIONS(2185), + [anon_sym_DASH] = ACTIONS(2185), + [anon_sym_PERCENT] = ACTIONS(2189), + [anon_sym_STAR_STAR] = ACTIONS(2189), + [anon_sym_LT_EQ] = ACTIONS(2189), + [anon_sym_EQ_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2189), + [anon_sym_BANG_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2189), + [anon_sym_GT_EQ] = ACTIONS(2189), + [anon_sym_QMARK_QMARK] = ACTIONS(2189), + [anon_sym_instanceof] = ACTIONS(2187), + [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_readonly] = 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_abstract] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [sym__automatic_semicolon] = ACTIONS(2191), + }, + [186] = { + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2195), + [anon_sym_export] = ACTIONS(2195), + [anon_sym_STAR] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_as] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_COMMA] = ACTIONS(2199), + [anon_sym_RBRACE] = ACTIONS(2193), + [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(2195), + [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_in] = ACTIONS(2197), + [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(2195), + [anon_sym_GT] = ACTIONS(2197), + [anon_sym_SLASH] = ACTIONS(2195), + [anon_sym_DOT] = ACTIONS(2197), + [anon_sym_class] = ACTIONS(2195), + [anon_sym_async] = ACTIONS(2195), + [anon_sym_function] = ACTIONS(2195), + [anon_sym_QMARK_DOT] = ACTIONS(2199), + [anon_sym_new] = ACTIONS(2195), + [anon_sym_QMARK] = ACTIONS(2197), + [anon_sym_AMP_AMP] = ACTIONS(2199), + [anon_sym_PIPE_PIPE] = ACTIONS(2199), + [anon_sym_GT_GT] = ACTIONS(2197), + [anon_sym_GT_GT_GT] = ACTIONS(2199), + [anon_sym_LT_LT] = ACTIONS(2199), + [anon_sym_AMP] = ACTIONS(2197), + [anon_sym_CARET] = ACTIONS(2199), + [anon_sym_PIPE] = ACTIONS(2197), + [anon_sym_PLUS] = ACTIONS(2195), + [anon_sym_DASH] = ACTIONS(2195), + [anon_sym_PERCENT] = ACTIONS(2199), + [anon_sym_STAR_STAR] = ACTIONS(2199), + [anon_sym_LT_EQ] = ACTIONS(2199), + [anon_sym_EQ_EQ] = ACTIONS(2197), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2199), + [anon_sym_BANG_EQ] = ACTIONS(2197), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2199), + [anon_sym_GT_EQ] = ACTIONS(2199), + [anon_sym_QMARK_QMARK] = ACTIONS(2199), + [anon_sym_instanceof] = ACTIONS(2197), + [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_readonly] = 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_abstract] = ACTIONS(2195), + [anon_sym_interface] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [sym__automatic_semicolon] = ACTIONS(2201), + }, + [187] = { + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_STAR] = ACTIONS(2207), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_as] = ACTIONS(2207), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_COMMA] = ACTIONS(2209), + [anon_sym_RBRACE] = ACTIONS(2203), + [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(2205), + [anon_sym_else] = ACTIONS(2205), + [anon_sym_if] = ACTIONS(2205), + [anon_sym_switch] = ACTIONS(2205), + [anon_sym_for] = ACTIONS(2205), + [anon_sym_LPAREN] = ACTIONS(2203), + [anon_sym_await] = ACTIONS(2205), + [anon_sym_in] = ACTIONS(2207), + [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(2205), + [anon_sym_GT] = ACTIONS(2207), + [anon_sym_SLASH] = ACTIONS(2205), + [anon_sym_DOT] = ACTIONS(2207), + [anon_sym_class] = ACTIONS(2205), + [anon_sym_async] = ACTIONS(2205), + [anon_sym_function] = ACTIONS(2205), + [anon_sym_QMARK_DOT] = ACTIONS(2209), + [anon_sym_new] = ACTIONS(2205), + [anon_sym_QMARK] = ACTIONS(2207), + [anon_sym_AMP_AMP] = ACTIONS(2209), + [anon_sym_PIPE_PIPE] = ACTIONS(2209), + [anon_sym_GT_GT] = ACTIONS(2207), + [anon_sym_GT_GT_GT] = ACTIONS(2209), + [anon_sym_LT_LT] = ACTIONS(2209), + [anon_sym_AMP] = ACTIONS(2207), + [anon_sym_CARET] = ACTIONS(2209), + [anon_sym_PIPE] = ACTIONS(2207), + [anon_sym_PLUS] = ACTIONS(2205), + [anon_sym_DASH] = ACTIONS(2205), + [anon_sym_PERCENT] = ACTIONS(2209), + [anon_sym_STAR_STAR] = ACTIONS(2209), + [anon_sym_LT_EQ] = ACTIONS(2209), + [anon_sym_EQ_EQ] = ACTIONS(2207), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2209), + [anon_sym_BANG_EQ] = ACTIONS(2207), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2209), + [anon_sym_GT_EQ] = ACTIONS(2209), + [anon_sym_QMARK_QMARK] = ACTIONS(2209), + [anon_sym_instanceof] = ACTIONS(2207), + [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_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_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_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2211), + }, + [188] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2071), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -36611,7 +36932,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -36634,17 +36955,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [186] = { + [189] = { [ts_builtin_sym_end] = ACTIONS(2213), [sym_identifier] = ACTIONS(2215), [anon_sym_export] = ACTIONS(2215), - [anon_sym_STAR] = ACTIONS(2217), + [anon_sym_STAR] = ACTIONS(2215), [anon_sym_default] = ACTIONS(2215), [anon_sym_type] = ACTIONS(2215), - [anon_sym_as] = ACTIONS(2217), + [anon_sym_as] = ACTIONS(2215), [anon_sym_namespace] = ACTIONS(2215), [anon_sym_LBRACE] = ACTIONS(2213), - [anon_sym_COMMA] = ACTIONS(2219), + [anon_sym_COMMA] = ACTIONS(2213), [anon_sym_RBRACE] = ACTIONS(2213), [anon_sym_typeof] = ACTIONS(2215), [anon_sym_import] = ACTIONS(2215), @@ -36658,7 +36979,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_for] = ACTIONS(2215), [anon_sym_LPAREN] = ACTIONS(2213), [anon_sym_await] = ACTIONS(2215), - [anon_sym_in] = ACTIONS(2217), + [anon_sym_in] = ACTIONS(2215), [anon_sym_while] = ACTIONS(2215), [anon_sym_do] = ACTIONS(2215), [anon_sym_try] = ACTIONS(2215), @@ -36673,35 +36994,35 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_yield] = ACTIONS(2215), [anon_sym_LBRACK] = ACTIONS(2213), [anon_sym_LT] = ACTIONS(2215), - [anon_sym_GT] = ACTIONS(2217), + [anon_sym_GT] = ACTIONS(2215), [anon_sym_SLASH] = ACTIONS(2215), - [anon_sym_DOT] = ACTIONS(2217), + [anon_sym_DOT] = ACTIONS(2215), [anon_sym_class] = ACTIONS(2215), [anon_sym_async] = ACTIONS(2215), [anon_sym_function] = ACTIONS(2215), - [anon_sym_QMARK_DOT] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2213), [anon_sym_new] = ACTIONS(2215), - [anon_sym_QMARK] = ACTIONS(2217), - [anon_sym_AMP_AMP] = ACTIONS(2219), - [anon_sym_PIPE_PIPE] = ACTIONS(2219), - [anon_sym_GT_GT] = ACTIONS(2217), - [anon_sym_GT_GT_GT] = ACTIONS(2219), - [anon_sym_LT_LT] = ACTIONS(2219), - [anon_sym_AMP] = ACTIONS(2217), - [anon_sym_CARET] = ACTIONS(2219), - [anon_sym_PIPE] = ACTIONS(2217), + [anon_sym_QMARK] = ACTIONS(2215), + [anon_sym_AMP_AMP] = ACTIONS(2213), + [anon_sym_PIPE_PIPE] = ACTIONS(2213), + [anon_sym_GT_GT] = ACTIONS(2215), + [anon_sym_GT_GT_GT] = ACTIONS(2213), + [anon_sym_LT_LT] = ACTIONS(2213), + [anon_sym_AMP] = ACTIONS(2215), + [anon_sym_CARET] = ACTIONS(2213), + [anon_sym_PIPE] = ACTIONS(2215), [anon_sym_PLUS] = ACTIONS(2215), [anon_sym_DASH] = ACTIONS(2215), - [anon_sym_PERCENT] = ACTIONS(2219), - [anon_sym_STAR_STAR] = ACTIONS(2219), - [anon_sym_LT_EQ] = ACTIONS(2219), - [anon_sym_EQ_EQ] = ACTIONS(2217), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2219), - [anon_sym_BANG_EQ] = ACTIONS(2217), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2219), - [anon_sym_GT_EQ] = ACTIONS(2219), - [anon_sym_QMARK_QMARK] = ACTIONS(2219), - [anon_sym_instanceof] = ACTIONS(2217), + [anon_sym_PERCENT] = ACTIONS(2213), + [anon_sym_STAR_STAR] = ACTIONS(2213), + [anon_sym_LT_EQ] = ACTIONS(2213), + [anon_sym_EQ_EQ] = ACTIONS(2215), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2213), + [anon_sym_BANG_EQ] = ACTIONS(2215), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2213), + [anon_sym_GT_EQ] = ACTIONS(2213), + [anon_sym_QMARK_QMARK] = ACTIONS(2213), + [anon_sym_instanceof] = ACTIONS(2215), [anon_sym_TILDE] = ACTIONS(2213), [anon_sym_void] = ACTIONS(2215), [anon_sym_delete] = ACTIONS(2215), @@ -36736,392 +37057,392 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2215), [anon_sym_interface] = ACTIONS(2215), [anon_sym_enum] = ACTIONS(2215), - [sym__automatic_semicolon] = ACTIONS(2221), + [sym__automatic_semicolon] = ACTIONS(2213), }, - [187] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [190] = { + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_STAR] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_COMMA] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [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(2219), + [anon_sym_else] = ACTIONS(2219), + [anon_sym_if] = ACTIONS(2219), + [anon_sym_switch] = ACTIONS(2219), + [anon_sym_for] = ACTIONS(2219), + [anon_sym_LPAREN] = ACTIONS(2217), + [anon_sym_await] = ACTIONS(2219), + [anon_sym_in] = ACTIONS(2219), + [anon_sym_while] = ACTIONS(2219), + [anon_sym_do] = ACTIONS(2219), + [anon_sym_try] = ACTIONS(2219), + [anon_sym_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(2219), + [anon_sym_GT] = ACTIONS(2219), + [anon_sym_SLASH] = ACTIONS(2219), + [anon_sym_DOT] = ACTIONS(2219), + [anon_sym_class] = ACTIONS(2219), + [anon_sym_async] = ACTIONS(2219), + [anon_sym_function] = ACTIONS(2219), + [anon_sym_QMARK_DOT] = ACTIONS(2217), + [anon_sym_new] = ACTIONS(2219), + [anon_sym_QMARK] = ACTIONS(2219), + [anon_sym_AMP_AMP] = ACTIONS(2217), + [anon_sym_PIPE_PIPE] = ACTIONS(2217), + [anon_sym_GT_GT] = ACTIONS(2219), + [anon_sym_GT_GT_GT] = ACTIONS(2217), + [anon_sym_LT_LT] = ACTIONS(2217), + [anon_sym_AMP] = ACTIONS(2219), + [anon_sym_CARET] = ACTIONS(2217), + [anon_sym_PIPE] = ACTIONS(2219), + [anon_sym_PLUS] = ACTIONS(2219), + [anon_sym_DASH] = ACTIONS(2219), + [anon_sym_PERCENT] = ACTIONS(2217), + [anon_sym_STAR_STAR] = ACTIONS(2217), + [anon_sym_LT_EQ] = ACTIONS(2217), + [anon_sym_EQ_EQ] = ACTIONS(2219), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2217), + [anon_sym_BANG_EQ] = ACTIONS(2219), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2217), + [anon_sym_GT_EQ] = ACTIONS(2217), + [anon_sym_QMARK_QMARK] = ACTIONS(2217), + [anon_sym_instanceof] = 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_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_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_abstract] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [sym__automatic_semicolon] = ACTIONS(2217), + }, + [191] = { + [sym_import] = STATE(2413), + [sym_expression_statement] = STATE(247), + [sym_variable_declaration] = STATE(247), + [sym_lexical_declaration] = STATE(247), + [sym_empty_statement] = STATE(247), + [sym_parenthesized_expression] = STATE(2052), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5287), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5287), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2052), + [sym_subscript_expression] = STATE(2052), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5287), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), - [anon_sym_export] = ACTIONS(562), - [anon_sym_type] = ACTIONS(562), - [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2223), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(594), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2052), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2135), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), + [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(2147), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(1012), + [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(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [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(2151), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(562), - [anon_sym_readonly] = ACTIONS(562), - [anon_sym_get] = ACTIONS(562), - [anon_sym_set] = ACTIONS(562), - [anon_sym_declare] = ACTIONS(562), - [anon_sym_public] = ACTIONS(562), - [anon_sym_private] = ACTIONS(562), - [anon_sym_protected] = ACTIONS(562), - [anon_sym_module] = ACTIONS(562), - [anon_sym_any] = ACTIONS(562), - [anon_sym_number] = ACTIONS(562), - [anon_sym_boolean] = ACTIONS(562), - [anon_sym_string] = ACTIONS(562), - [anon_sym_symbol] = ACTIONS(562), - }, - [188] = { - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_STAR] = ACTIONS(2229), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_COMMA] = ACTIONS(2231), - [anon_sym_RBRACE] = ACTIONS(2225), - [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(2227), - [anon_sym_else] = ACTIONS(2227), - [anon_sym_if] = ACTIONS(2227), - [anon_sym_switch] = ACTIONS(2227), - [anon_sym_for] = ACTIONS(2227), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_await] = ACTIONS(2227), - [anon_sym_in] = ACTIONS(2229), - [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(2227), - [anon_sym_GT] = ACTIONS(2229), - [anon_sym_SLASH] = ACTIONS(2227), - [anon_sym_DOT] = ACTIONS(2229), - [anon_sym_class] = ACTIONS(2227), - [anon_sym_async] = ACTIONS(2227), - [anon_sym_function] = ACTIONS(2227), - [anon_sym_QMARK_DOT] = ACTIONS(2231), - [anon_sym_new] = ACTIONS(2227), - [anon_sym_QMARK] = ACTIONS(2229), - [anon_sym_AMP_AMP] = ACTIONS(2231), - [anon_sym_PIPE_PIPE] = ACTIONS(2231), - [anon_sym_GT_GT] = ACTIONS(2229), - [anon_sym_GT_GT_GT] = ACTIONS(2231), - [anon_sym_LT_LT] = ACTIONS(2231), - [anon_sym_AMP] = ACTIONS(2229), - [anon_sym_CARET] = ACTIONS(2231), - [anon_sym_PIPE] = ACTIONS(2229), - [anon_sym_PLUS] = ACTIONS(2227), - [anon_sym_DASH] = ACTIONS(2227), - [anon_sym_PERCENT] = ACTIONS(2231), - [anon_sym_STAR_STAR] = ACTIONS(2231), - [anon_sym_LT_EQ] = ACTIONS(2231), - [anon_sym_EQ_EQ] = ACTIONS(2229), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2231), - [anon_sym_BANG_EQ] = ACTIONS(2229), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2231), - [anon_sym_GT_EQ] = ACTIONS(2231), - [anon_sym_QMARK_QMARK] = ACTIONS(2231), - [anon_sym_instanceof] = ACTIONS(2229), - [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_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_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_abstract] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [sym__automatic_semicolon] = ACTIONS(2233), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_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), }, - [189] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_as] = ACTIONS(1984), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_COMMA] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_var] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_switch] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_in] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_do] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_with] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_debugger] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_throw] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_GT] = ACTIONS(1984), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(1984), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_QMARK_DOT] = ACTIONS(1982), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_GT_GT_GT] = ACTIONS(1982), - [anon_sym_LT_LT] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_PERCENT] = ACTIONS(1982), - [anon_sym_STAR_STAR] = ACTIONS(1982), - [anon_sym_LT_EQ] = ACTIONS(1982), - [anon_sym_EQ_EQ] = ACTIONS(1984), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1982), - [anon_sym_BANG_EQ] = ACTIONS(1984), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1982), - [anon_sym_GT_EQ] = ACTIONS(1982), - [anon_sym_QMARK_QMARK] = ACTIONS(1982), - [anon_sym_instanceof] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_number] = ACTIONS(1982), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_abstract] = ACTIONS(1984), - [anon_sym_interface] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [sym__automatic_semicolon] = ACTIONS(2235), + [192] = { + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_STAR] = ACTIONS(2225), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_as] = ACTIONS(2225), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_COMMA] = ACTIONS(2227), + [anon_sym_RBRACE] = ACTIONS(2221), + [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(2223), + [anon_sym_else] = ACTIONS(2223), + [anon_sym_if] = ACTIONS(2223), + [anon_sym_switch] = ACTIONS(2223), + [anon_sym_for] = ACTIONS(2223), + [anon_sym_LPAREN] = ACTIONS(2221), + [anon_sym_await] = ACTIONS(2223), + [anon_sym_in] = ACTIONS(2225), + [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(2223), + [anon_sym_GT] = ACTIONS(2225), + [anon_sym_SLASH] = ACTIONS(2223), + [anon_sym_DOT] = ACTIONS(2225), + [anon_sym_class] = ACTIONS(2223), + [anon_sym_async] = ACTIONS(2223), + [anon_sym_function] = ACTIONS(2223), + [anon_sym_QMARK_DOT] = ACTIONS(2227), + [anon_sym_new] = ACTIONS(2223), + [anon_sym_QMARK] = ACTIONS(2225), + [anon_sym_AMP_AMP] = ACTIONS(2227), + [anon_sym_PIPE_PIPE] = ACTIONS(2227), + [anon_sym_GT_GT] = ACTIONS(2225), + [anon_sym_GT_GT_GT] = ACTIONS(2227), + [anon_sym_LT_LT] = ACTIONS(2227), + [anon_sym_AMP] = ACTIONS(2225), + [anon_sym_CARET] = ACTIONS(2227), + [anon_sym_PIPE] = ACTIONS(2225), + [anon_sym_PLUS] = ACTIONS(2223), + [anon_sym_DASH] = ACTIONS(2223), + [anon_sym_PERCENT] = ACTIONS(2227), + [anon_sym_STAR_STAR] = ACTIONS(2227), + [anon_sym_LT_EQ] = ACTIONS(2227), + [anon_sym_EQ_EQ] = ACTIONS(2225), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2227), + [anon_sym_BANG_EQ] = ACTIONS(2225), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2227), + [anon_sym_GT_EQ] = ACTIONS(2227), + [anon_sym_QMARK_QMARK] = ACTIONS(2227), + [anon_sym_instanceof] = ACTIONS(2225), + [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_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_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_abstract] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [sym__automatic_semicolon] = ACTIONS(2229), }, - [190] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [193] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2927), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5376), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5377), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2237), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2231), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -37131,7 +37452,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -37154,1011 +37475,283 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [191] = { - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_STAR] = ACTIONS(2243), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_as] = ACTIONS(2243), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_COMMA] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2241), - [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_in] = ACTIONS(2243), - [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(2241), - [anon_sym_GT] = ACTIONS(2243), - [anon_sym_SLASH] = ACTIONS(2241), - [anon_sym_DOT] = ACTIONS(2243), - [anon_sym_class] = ACTIONS(2241), - [anon_sym_async] = ACTIONS(2241), - [anon_sym_function] = ACTIONS(2241), - [anon_sym_QMARK_DOT] = ACTIONS(2245), - [anon_sym_new] = ACTIONS(2241), - [anon_sym_QMARK] = ACTIONS(2243), - [anon_sym_AMP_AMP] = ACTIONS(2245), - [anon_sym_PIPE_PIPE] = ACTIONS(2245), - [anon_sym_GT_GT] = ACTIONS(2243), - [anon_sym_GT_GT_GT] = ACTIONS(2245), - [anon_sym_LT_LT] = ACTIONS(2245), - [anon_sym_AMP] = ACTIONS(2243), - [anon_sym_CARET] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2243), - [anon_sym_PLUS] = ACTIONS(2241), - [anon_sym_DASH] = ACTIONS(2241), - [anon_sym_PERCENT] = ACTIONS(2245), - [anon_sym_STAR_STAR] = ACTIONS(2245), - [anon_sym_LT_EQ] = ACTIONS(2245), - [anon_sym_EQ_EQ] = ACTIONS(2243), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2245), - [anon_sym_BANG_EQ] = ACTIONS(2243), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2245), - [anon_sym_GT_EQ] = ACTIONS(2245), - [anon_sym_QMARK_QMARK] = ACTIONS(2245), - [anon_sym_instanceof] = ACTIONS(2243), - [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_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2247), - }, - [192] = { - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_STAR] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_as] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [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(2251), - [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_in] = 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(2251), - [anon_sym_GT] = ACTIONS(2251), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_DOT] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_QMARK_DOT] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_QMARK] = ACTIONS(2251), - [anon_sym_AMP_AMP] = ACTIONS(2249), - [anon_sym_PIPE_PIPE] = ACTIONS(2249), - [anon_sym_GT_GT] = ACTIONS(2251), - [anon_sym_GT_GT_GT] = ACTIONS(2249), - [anon_sym_LT_LT] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2251), - [anon_sym_CARET] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2251), - [anon_sym_PLUS] = ACTIONS(2251), - [anon_sym_DASH] = ACTIONS(2251), - [anon_sym_PERCENT] = ACTIONS(2249), - [anon_sym_STAR_STAR] = ACTIONS(2249), - [anon_sym_LT_EQ] = ACTIONS(2249), - [anon_sym_EQ_EQ] = ACTIONS(2251), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2249), - [anon_sym_BANG_EQ] = ACTIONS(2251), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2249), - [anon_sym_GT_EQ] = ACTIONS(2249), - [anon_sym_QMARK_QMARK] = ACTIONS(2249), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), - [sym__automatic_semicolon] = ACTIONS(2249), + [194] = { + [ts_builtin_sym_end] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_STAR] = ACTIONS(2237), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_as] = ACTIONS(2237), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_COMMA] = ACTIONS(2239), + [anon_sym_RBRACE] = ACTIONS(2233), + [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(2235), + [anon_sym_else] = ACTIONS(2235), + [anon_sym_if] = ACTIONS(2235), + [anon_sym_switch] = ACTIONS(2235), + [anon_sym_for] = ACTIONS(2235), + [anon_sym_LPAREN] = ACTIONS(2233), + [anon_sym_await] = ACTIONS(2235), + [anon_sym_in] = ACTIONS(2237), + [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(2235), + [anon_sym_GT] = ACTIONS(2237), + [anon_sym_SLASH] = ACTIONS(2235), + [anon_sym_DOT] = ACTIONS(2237), + [anon_sym_class] = ACTIONS(2235), + [anon_sym_async] = ACTIONS(2235), + [anon_sym_function] = ACTIONS(2235), + [anon_sym_QMARK_DOT] = ACTIONS(2239), + [anon_sym_new] = ACTIONS(2235), + [anon_sym_QMARK] = ACTIONS(2237), + [anon_sym_AMP_AMP] = ACTIONS(2239), + [anon_sym_PIPE_PIPE] = ACTIONS(2239), + [anon_sym_GT_GT] = ACTIONS(2237), + [anon_sym_GT_GT_GT] = ACTIONS(2239), + [anon_sym_LT_LT] = ACTIONS(2239), + [anon_sym_AMP] = ACTIONS(2237), + [anon_sym_CARET] = ACTIONS(2239), + [anon_sym_PIPE] = ACTIONS(2237), + [anon_sym_PLUS] = ACTIONS(2235), + [anon_sym_DASH] = ACTIONS(2235), + [anon_sym_PERCENT] = ACTIONS(2239), + [anon_sym_STAR_STAR] = ACTIONS(2239), + [anon_sym_LT_EQ] = ACTIONS(2239), + [anon_sym_EQ_EQ] = ACTIONS(2237), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2239), + [anon_sym_BANG_EQ] = ACTIONS(2237), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2239), + [anon_sym_GT_EQ] = ACTIONS(2239), + [anon_sym_QMARK_QMARK] = ACTIONS(2239), + [anon_sym_instanceof] = ACTIONS(2237), + [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_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_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_abstract] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [sym__automatic_semicolon] = ACTIONS(2241), }, - [193] = { - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_STAR] = ACTIONS(2257), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_as] = ACTIONS(2257), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_COMMA] = ACTIONS(2259), - [anon_sym_RBRACE] = ACTIONS(2253), - [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(2255), - [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_in] = ACTIONS(2257), - [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), + [195] = { + [sym_nested_identifier] = STATE(5974), + [sym_string] = STATE(4002), + [sym_formal_parameters] = STATE(6019), + [sym_nested_type_identifier] = STATE(3916), + [sym__type] = STATE(4056), + [sym_constructor_type] = STATE(4056), + [sym__primary_type] = STATE(3990), + [sym_infer_type] = STATE(4056), + [sym_conditional_type] = STATE(3992), + [sym_generic_type] = STATE(3992), + [sym_type_query] = STATE(3992), + [sym_index_type_query] = STATE(3992), + [sym_lookup_type] = STATE(3992), + [sym_literal_type] = STATE(3992), + [sym__number] = STATE(3987), + [sym_existential_type] = STATE(3992), + [sym_flow_maybe_type] = STATE(3992), + [sym_parenthesized_type] = STATE(3992), + [sym_predefined_type] = STATE(3992), + [sym_object_type] = STATE(3992), + [sym_type_parameters] = STATE(5483), + [sym_array_type] = STATE(3992), + [sym_tuple_type] = STATE(3992), + [sym_readonly_type] = STATE(4056), + [sym_union_type] = STATE(4056), + [sym_intersection_type] = STATE(4056), + [sym_function_type] = STATE(4056), + [sym_identifier] = ACTIONS(2243), + [anon_sym_STAR] = ACTIONS(2245), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(2247), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_in] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(2253), - [anon_sym_LT] = ACTIONS(2255), - [anon_sym_GT] = ACTIONS(2257), - [anon_sym_SLASH] = ACTIONS(2255), - [anon_sym_DOT] = ACTIONS(2257), - [anon_sym_class] = ACTIONS(2255), - [anon_sym_async] = ACTIONS(2255), - [anon_sym_function] = ACTIONS(2255), - [anon_sym_QMARK_DOT] = ACTIONS(2259), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(2255), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(2257), - [anon_sym_AMP_AMP] = ACTIONS(2259), - [anon_sym_PIPE_PIPE] = ACTIONS(2259), - [anon_sym_GT_GT] = ACTIONS(2257), - [anon_sym_GT_GT_GT] = ACTIONS(2259), - [anon_sym_LT_LT] = ACTIONS(2259), - [anon_sym_AMP] = ACTIONS(2257), - [anon_sym_CARET] = ACTIONS(2259), - [anon_sym_PIPE] = ACTIONS(2257), - [anon_sym_PLUS] = ACTIONS(2255), - [anon_sym_DASH] = ACTIONS(2255), - [anon_sym_PERCENT] = ACTIONS(2259), - [anon_sym_STAR_STAR] = ACTIONS(2259), - [anon_sym_LT_EQ] = ACTIONS(2259), - [anon_sym_EQ_EQ] = ACTIONS(2257), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2259), - [anon_sym_BANG_EQ] = ACTIONS(2257), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2259), - [anon_sym_GT_EQ] = ACTIONS(2259), - [anon_sym_QMARK_QMARK] = ACTIONS(2259), - [anon_sym_instanceof] = ACTIONS(2257), - [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_readonly] = 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_abstract] = ACTIONS(2255), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2261), - }, - [194] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2265), - [anon_sym_STAR] = ACTIONS(2267), - [anon_sym_default] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_as] = ACTIONS(2267), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_COMMA] = ACTIONS(2269), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_typeof] = ACTIONS(2265), - [anon_sym_import] = ACTIONS(2265), - [anon_sym_var] = ACTIONS(2265), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2265), - [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_in] = ACTIONS(2267), - [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(2265), - [anon_sym_GT] = ACTIONS(2267), - [anon_sym_SLASH] = ACTIONS(2265), - [anon_sym_DOT] = ACTIONS(2267), - [anon_sym_class] = ACTIONS(2265), - [anon_sym_async] = ACTIONS(2265), - [anon_sym_function] = ACTIONS(2265), - [anon_sym_QMARK_DOT] = ACTIONS(2269), - [anon_sym_new] = ACTIONS(2265), - [anon_sym_QMARK] = ACTIONS(2267), - [anon_sym_AMP_AMP] = ACTIONS(2269), - [anon_sym_PIPE_PIPE] = ACTIONS(2269), - [anon_sym_GT_GT] = ACTIONS(2267), - [anon_sym_GT_GT_GT] = ACTIONS(2269), - [anon_sym_LT_LT] = ACTIONS(2269), - [anon_sym_AMP] = ACTIONS(2267), - [anon_sym_CARET] = ACTIONS(2269), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_PLUS] = ACTIONS(2265), - [anon_sym_DASH] = ACTIONS(2265), - [anon_sym_PERCENT] = ACTIONS(2269), - [anon_sym_STAR_STAR] = ACTIONS(2269), - [anon_sym_LT_EQ] = ACTIONS(2269), - [anon_sym_EQ_EQ] = ACTIONS(2267), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2269), - [anon_sym_BANG_EQ] = ACTIONS(2267), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2269), - [anon_sym_GT_EQ] = ACTIONS(2269), - [anon_sym_QMARK_QMARK] = ACTIONS(2269), - [anon_sym_instanceof] = ACTIONS(2267), - [anon_sym_TILDE] = ACTIONS(2263), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(2259), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(2261), + [anon_sym_PLUS] = ACTIONS(2263), + [anon_sym_DASH] = ACTIONS(2263), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), [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_readonly] = ACTIONS(2265), - [anon_sym_get] = ACTIONS(2265), - [anon_sym_set] = ACTIONS(2265), - [anon_sym_declare] = ACTIONS(2265), - [anon_sym_public] = ACTIONS(2265), - [anon_sym_private] = ACTIONS(2265), - [anon_sym_protected] = ACTIONS(2265), - [anon_sym_module] = ACTIONS(2265), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2271), + [sym_this] = ACTIONS(2273), + [sym_true] = ACTIONS(2275), + [sym_false] = ACTIONS(2275), + [anon_sym_readonly] = ACTIONS(2277), [anon_sym_any] = ACTIONS(2265), [anon_sym_number] = ACTIONS(2265), [anon_sym_boolean] = ACTIONS(2265), [anon_sym_string] = ACTIONS(2265), [anon_sym_symbol] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [sym__automatic_semicolon] = ACTIONS(2271), - }, - [195] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5291), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5292), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), - [anon_sym_export] = ACTIONS(562), - [anon_sym_type] = ACTIONS(562), - [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2273), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(594), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(562), - [anon_sym_readonly] = ACTIONS(562), - [anon_sym_get] = ACTIONS(562), - [anon_sym_set] = ACTIONS(562), - [anon_sym_declare] = ACTIONS(562), - [anon_sym_public] = ACTIONS(562), - [anon_sym_private] = ACTIONS(562), - [anon_sym_protected] = ACTIONS(562), - [anon_sym_module] = ACTIONS(562), - [anon_sym_any] = ACTIONS(562), - [anon_sym_number] = ACTIONS(562), - [anon_sym_boolean] = ACTIONS(562), - [anon_sym_string] = ACTIONS(562), - [anon_sym_symbol] = ACTIONS(562), + [anon_sym_infer] = ACTIONS(760), + [anon_sym_keyof] = ACTIONS(762), + [anon_sym_LBRACE_PIPE] = ACTIONS(764), }, [196] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(2277), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [197] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_STAR] = ACTIONS(2283), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2283), - [anon_sym_namespace] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_COMMA] = ACTIONS(2285), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_typeof] = ACTIONS(2281), - [anon_sym_import] = ACTIONS(2281), - [anon_sym_var] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_in] = ACTIONS(2283), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_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(2281), - [anon_sym_GT] = ACTIONS(2283), - [anon_sym_SLASH] = ACTIONS(2281), - [anon_sym_DOT] = ACTIONS(2283), - [anon_sym_class] = ACTIONS(2281), - [anon_sym_async] = ACTIONS(2281), - [anon_sym_function] = ACTIONS(2281), - [anon_sym_QMARK_DOT] = ACTIONS(2285), - [anon_sym_new] = ACTIONS(2281), - [anon_sym_QMARK] = ACTIONS(2283), - [anon_sym_AMP_AMP] = ACTIONS(2285), - [anon_sym_PIPE_PIPE] = ACTIONS(2285), - [anon_sym_GT_GT] = ACTIONS(2283), - [anon_sym_GT_GT_GT] = ACTIONS(2285), - [anon_sym_LT_LT] = ACTIONS(2285), - [anon_sym_AMP] = ACTIONS(2283), - [anon_sym_CARET] = ACTIONS(2285), - [anon_sym_PIPE] = ACTIONS(2283), - [anon_sym_PLUS] = ACTIONS(2281), - [anon_sym_DASH] = ACTIONS(2281), - [anon_sym_PERCENT] = ACTIONS(2285), - [anon_sym_STAR_STAR] = ACTIONS(2285), - [anon_sym_LT_EQ] = ACTIONS(2285), - [anon_sym_EQ_EQ] = ACTIONS(2283), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2285), - [anon_sym_BANG_EQ] = ACTIONS(2283), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2285), - [anon_sym_GT_EQ] = ACTIONS(2285), - [anon_sym_QMARK_QMARK] = ACTIONS(2285), - [anon_sym_instanceof] = ACTIONS(2283), - [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_readonly] = ACTIONS(2281), - [anon_sym_get] = ACTIONS(2281), - [anon_sym_set] = ACTIONS(2281), - [anon_sym_declare] = ACTIONS(2281), - [anon_sym_public] = ACTIONS(2281), - [anon_sym_private] = ACTIONS(2281), - [anon_sym_protected] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_any] = ACTIONS(2281), - [anon_sym_number] = ACTIONS(2281), - [anon_sym_boolean] = ACTIONS(2281), - [anon_sym_string] = ACTIONS(2281), - [anon_sym_symbol] = ACTIONS(2281), - [anon_sym_abstract] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [sym__automatic_semicolon] = ACTIONS(2287), - }, - [198] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4370), - [sym_constructor_type] = STATE(4370), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4370), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4370), - [sym_union_type] = STATE(4370), - [sym_intersection_type] = STATE(4370), - [sym_function_type] = STATE(4370), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2293), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(2295), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(2297), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(638), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [199] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), - [anon_sym_export] = ACTIONS(562), - [anon_sym_type] = ACTIONS(562), - [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2301), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(594), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(562), - [anon_sym_readonly] = ACTIONS(562), - [anon_sym_get] = ACTIONS(562), - [anon_sym_set] = ACTIONS(562), - [anon_sym_declare] = ACTIONS(562), - [anon_sym_public] = ACTIONS(562), - [anon_sym_private] = ACTIONS(562), - [anon_sym_protected] = ACTIONS(562), - [anon_sym_module] = ACTIONS(562), - [anon_sym_any] = ACTIONS(562), - [anon_sym_number] = ACTIONS(562), - [anon_sym_boolean] = ACTIONS(562), - [anon_sym_string] = ACTIONS(562), - [anon_sym_symbol] = ACTIONS(562), - }, - [200] = { - [sym_import] = STATE(2475), - [sym_expression_statement] = STATE(242), - [sym_variable_declaration] = STATE(242), - [sym_lexical_declaration] = STATE(242), - [sym_empty_statement] = STATE(242), - [sym_parenthesized_expression] = STATE(2054), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5376), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5376), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2054), - [sym_subscript_expression] = STATE(2054), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5376), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_expression_statement] = STATE(244), + [sym_variable_declaration] = STATE(244), + [sym_lexical_declaration] = STATE(244), + [sym_empty_statement] = STATE(244), + [sym_parenthesized_expression] = STATE(2052), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5287), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5287), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2052), + [sym_subscript_expression] = STATE(2052), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5287), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2054), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2032), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_namespace] = ACTIONS(2036), - [anon_sym_LBRACE] = ACTIONS(2038), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2052), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2135), + [anon_sym_export] = ACTIONS(2137), + [anon_sym_type] = ACTIONS(2137), + [anon_sym_namespace] = ACTIONS(2139), + [anon_sym_LBRACE] = ACTIONS(2141), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_var] = ACTIONS(2040), - [anon_sym_let] = ACTIONS(2042), - [anon_sym_const] = ACTIONS(2042), + [anon_sym_import] = ACTIONS(996), + [anon_sym_var] = ACTIONS(2143), + [anon_sym_let] = ACTIONS(2145), + [anon_sym_const] = ACTIONS(2145), [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(2044), + [anon_sym_LBRACK] = ACTIONS(2147), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2046), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2149), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -38177,95 +37770,95 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2048), + [sym_undefined] = ACTIONS(2151), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_readonly] = ACTIONS(2034), - [anon_sym_get] = ACTIONS(2034), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_declare] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_protected] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_any] = ACTIONS(2034), - [anon_sym_number] = ACTIONS(2034), - [anon_sym_boolean] = ACTIONS(2034), - [anon_sym_string] = ACTIONS(2034), - [anon_sym_symbol] = ACTIONS(2034), + [anon_sym_static] = ACTIONS(2137), + [anon_sym_readonly] = ACTIONS(2137), + [anon_sym_get] = ACTIONS(2137), + [anon_sym_set] = ACTIONS(2137), + [anon_sym_declare] = ACTIONS(2137), + [anon_sym_public] = ACTIONS(2137), + [anon_sym_private] = ACTIONS(2137), + [anon_sym_protected] = ACTIONS(2137), + [anon_sym_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), }, - [201] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5230), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [197] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5222), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2303), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2279), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -38275,7 +37868,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -38298,78 +37891,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [202] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5330), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [198] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(2283), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_implements] = ACTIONS(1713), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [199] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3048), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5344), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5171), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5334), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2012), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2211), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2285), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -38379,7 +38076,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -38402,74 +38099,491 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, + [200] = { + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_STAR] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_as] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_COMMA] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2289), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_in] = 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(2289), + [anon_sym_GT] = ACTIONS(2289), + [anon_sym_SLASH] = ACTIONS(2289), + [anon_sym_DOT] = ACTIONS(2289), + [anon_sym_class] = ACTIONS(2289), + [anon_sym_async] = ACTIONS(2289), + [anon_sym_function] = ACTIONS(2289), + [anon_sym_QMARK_DOT] = ACTIONS(2287), + [anon_sym_new] = ACTIONS(2289), + [anon_sym_QMARK] = ACTIONS(2289), + [anon_sym_AMP_AMP] = ACTIONS(2287), + [anon_sym_PIPE_PIPE] = ACTIONS(2287), + [anon_sym_GT_GT] = ACTIONS(2289), + [anon_sym_GT_GT_GT] = ACTIONS(2287), + [anon_sym_LT_LT] = ACTIONS(2287), + [anon_sym_AMP] = ACTIONS(2289), + [anon_sym_CARET] = ACTIONS(2287), + [anon_sym_PIPE] = ACTIONS(2289), + [anon_sym_PLUS] = ACTIONS(2289), + [anon_sym_DASH] = ACTIONS(2289), + [anon_sym_PERCENT] = ACTIONS(2287), + [anon_sym_STAR_STAR] = ACTIONS(2287), + [anon_sym_LT_EQ] = ACTIONS(2287), + [anon_sym_EQ_EQ] = ACTIONS(2289), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2287), + [anon_sym_BANG_EQ] = ACTIONS(2289), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2287), + [anon_sym_GT_EQ] = ACTIONS(2287), + [anon_sym_QMARK_QMARK] = ACTIONS(2287), + [anon_sym_instanceof] = 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_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), + [sym__automatic_semicolon] = ACTIONS(2287), + }, + [201] = { + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_STAR] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_as] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_COMMA] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_typeof] = ACTIONS(2293), + [anon_sym_import] = ACTIONS(2293), + [anon_sym_var] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2293), + [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_in] = 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(2293), + [anon_sym_GT] = ACTIONS(2293), + [anon_sym_SLASH] = ACTIONS(2293), + [anon_sym_DOT] = ACTIONS(2293), + [anon_sym_class] = ACTIONS(2293), + [anon_sym_async] = ACTIONS(2293), + [anon_sym_function] = ACTIONS(2293), + [anon_sym_QMARK_DOT] = ACTIONS(2291), + [anon_sym_new] = ACTIONS(2293), + [anon_sym_QMARK] = ACTIONS(2293), + [anon_sym_AMP_AMP] = ACTIONS(2291), + [anon_sym_PIPE_PIPE] = ACTIONS(2291), + [anon_sym_GT_GT] = ACTIONS(2293), + [anon_sym_GT_GT_GT] = ACTIONS(2291), + [anon_sym_LT_LT] = ACTIONS(2291), + [anon_sym_AMP] = ACTIONS(2293), + [anon_sym_CARET] = ACTIONS(2291), + [anon_sym_PIPE] = ACTIONS(2293), + [anon_sym_PLUS] = ACTIONS(2293), + [anon_sym_DASH] = ACTIONS(2293), + [anon_sym_PERCENT] = ACTIONS(2291), + [anon_sym_STAR_STAR] = ACTIONS(2291), + [anon_sym_LT_EQ] = ACTIONS(2291), + [anon_sym_EQ_EQ] = ACTIONS(2293), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2291), + [anon_sym_BANG_EQ] = ACTIONS(2293), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2291), + [anon_sym_GT_EQ] = ACTIONS(2291), + [anon_sym_QMARK_QMARK] = ACTIONS(2291), + [anon_sym_instanceof] = 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_readonly] = ACTIONS(2293), + [anon_sym_get] = ACTIONS(2293), + [anon_sym_set] = ACTIONS(2293), + [anon_sym_declare] = ACTIONS(2293), + [anon_sym_public] = ACTIONS(2293), + [anon_sym_private] = ACTIONS(2293), + [anon_sym_protected] = ACTIONS(2293), + [anon_sym_module] = ACTIONS(2293), + [anon_sym_any] = ACTIONS(2293), + [anon_sym_number] = ACTIONS(2293), + [anon_sym_boolean] = ACTIONS(2293), + [anon_sym_string] = ACTIONS(2293), + [anon_sym_symbol] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), + [sym__automatic_semicolon] = ACTIONS(2291), + }, + [202] = { + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_export] = ACTIONS(2297), + [anon_sym_STAR] = ACTIONS(2299), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_as] = ACTIONS(2299), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_COMMA] = ACTIONS(2301), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_typeof] = ACTIONS(2297), + [anon_sym_import] = ACTIONS(2297), + [anon_sym_var] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2297), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_in] = ACTIONS(2299), + [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(2297), + [anon_sym_GT] = ACTIONS(2299), + [anon_sym_SLASH] = ACTIONS(2297), + [anon_sym_DOT] = ACTIONS(2299), + [anon_sym_class] = ACTIONS(2297), + [anon_sym_async] = ACTIONS(2297), + [anon_sym_function] = ACTIONS(2297), + [anon_sym_QMARK_DOT] = ACTIONS(2301), + [anon_sym_new] = ACTIONS(2297), + [anon_sym_QMARK] = ACTIONS(2299), + [anon_sym_AMP_AMP] = ACTIONS(2301), + [anon_sym_PIPE_PIPE] = ACTIONS(2301), + [anon_sym_GT_GT] = ACTIONS(2299), + [anon_sym_GT_GT_GT] = ACTIONS(2301), + [anon_sym_LT_LT] = ACTIONS(2301), + [anon_sym_AMP] = ACTIONS(2299), + [anon_sym_CARET] = ACTIONS(2301), + [anon_sym_PIPE] = ACTIONS(2299), + [anon_sym_PLUS] = ACTIONS(2297), + [anon_sym_DASH] = ACTIONS(2297), + [anon_sym_PERCENT] = ACTIONS(2301), + [anon_sym_STAR_STAR] = ACTIONS(2301), + [anon_sym_LT_EQ] = ACTIONS(2301), + [anon_sym_EQ_EQ] = ACTIONS(2299), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2301), + [anon_sym_BANG_EQ] = ACTIONS(2299), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2301), + [anon_sym_GT_EQ] = ACTIONS(2301), + [anon_sym_QMARK_QMARK] = ACTIONS(2301), + [anon_sym_instanceof] = ACTIONS(2299), + [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_readonly] = ACTIONS(2297), + [anon_sym_get] = ACTIONS(2297), + [anon_sym_set] = ACTIONS(2297), + [anon_sym_declare] = ACTIONS(2297), + [anon_sym_public] = ACTIONS(2297), + [anon_sym_private] = ACTIONS(2297), + [anon_sym_protected] = ACTIONS(2297), + [anon_sym_module] = ACTIONS(2297), + [anon_sym_any] = ACTIONS(2297), + [anon_sym_number] = ACTIONS(2297), + [anon_sym_boolean] = ACTIONS(2297), + [anon_sym_string] = ACTIONS(2297), + [anon_sym_symbol] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [sym__automatic_semicolon] = ACTIONS(2303), + }, [203] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), + [sym_identifier] = ACTIONS(1914), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_typeof] = ACTIONS(1920), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_new] = ACTIONS(1926), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1928), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1932), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(1936), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(834), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [204] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_RBRACE] = ACTIONS(2305), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2309), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2309), [anon_sym_await] = ACTIONS(580), - [anon_sym_SEMI] = ACTIONS(2305), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_RBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(2309), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2307), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_QMARK] = ACTIONS(2309), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -38479,7 +38593,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -38487,94 +38601,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - [anon_sym_extends] = ACTIONS(2307), - [anon_sym_PIPE_RBRACE] = ACTIONS(2305), - [sym__automatic_semicolon] = ACTIONS(2305), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_extends] = ACTIONS(2311), }, - [204] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [205] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2305), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_RBRACE] = ACTIONS(2309), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2305), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), + [anon_sym_SEMI] = ACTIONS(2309), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_RBRACK] = ACTIONS(2305), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_QMARK] = ACTIONS(2305), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2311), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -38584,7 +38694,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -38592,504 +38702,403 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - [anon_sym_extends] = ACTIONS(2307), - }, - [205] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), - [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(2311), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(1936), - [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_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + [anon_sym_extends] = ACTIONS(2311), + [anon_sym_PIPE_RBRACE] = ACTIONS(2309), + [sym__automatic_semicolon] = ACTIONS(2309), }, [206] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), + [anon_sym_STAR] = ACTIONS(1708), [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_EQ_GT] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_extends] = ACTIONS(1713), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [207] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3542), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5339), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5339), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5339), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3498), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5360), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5360), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_mapped_type_clause] = STATE(5982), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2317), - [anon_sym_export] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2319), - [anon_sym_namespace] = ACTIONS(2321), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(2325), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_mapped_type_clause] = STATE(5820), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2318), + [anon_sym_export] = ACTIONS(2320), + [anon_sym_type] = ACTIONS(2320), + [anon_sym_namespace] = ACTIONS(2322), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_RBRACK] = ACTIONS(2329), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_RBRACK] = ACTIONS(2330), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2331), + [anon_sym_async] = ACTIONS(2332), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), + [anon_sym_new] = ACTIONS(1836), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2319), - [anon_sym_readonly] = 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_static] = ACTIONS(2320), + [anon_sym_readonly] = 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), }, [208] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5904), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4509), - [sym_constructor_type] = STATE(4509), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4509), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5640), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4509), - [sym_union_type] = STATE(4509), - [sym_intersection_type] = STATE(4509), - [sym_function_type] = STATE(4509), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6017), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4477), + [sym_constructor_type] = STATE(4477), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4477), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5664), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4477), + [sym_union_type] = STATE(4477), + [sym_intersection_type] = STATE(4477), + [sym_function_type] = STATE(4477), [sym_identifier] = ACTIONS(1914), - [anon_sym_STAR] = ACTIONS(1724), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1708), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), [anon_sym_LBRACE] = ACTIONS(1918), [anon_sym_typeof] = ACTIONS(1920), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_in] = ACTIONS(1729), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_LT] = ACTIONS(1742), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_EQ_GT] = ACTIONS(2335), - [anon_sym_QMARK_DOT] = ACTIONS(1746), + [anon_sym_LT] = ACTIONS(1726), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_EQ_GT] = ACTIONS(2336), + [anon_sym_QMARK_DOT] = ACTIONS(1730), [anon_sym_new] = ACTIONS(1926), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), [anon_sym_QMARK] = ACTIONS(1928), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1729), + [anon_sym_CARET] = ACTIONS(1713), [anon_sym_PIPE] = ACTIONS(1932), - [anon_sym_PLUS] = ACTIONS(1758), - [anon_sym_DASH] = ACTIONS(1758), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1742), + [anon_sym_DASH] = ACTIONS(1742), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_readonly] = ACTIONS(1936), - [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_extends] = ACTIONS(1729), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(816), + [anon_sym_keyof] = ACTIONS(834), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [209] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2902), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5622), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5368), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2922), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5503), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5312), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(5315), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1782), [anon_sym_COMMA] = ACTIONS(2338), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_RBRACK] = ACTIONS(2341), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -39099,7 +39108,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -39123,177 +39132,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(562), }, [210] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3544), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5339), - [sym_assignment_pattern] = STATE(5326), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5339), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5339), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2345), - [anon_sym_export] = ACTIONS(2347), - [anon_sym_type] = ACTIONS(2347), - [anon_sym_namespace] = ACTIONS(2349), - [anon_sym_LBRACE] = ACTIONS(2323), - [anon_sym_COMMA] = ACTIONS(2325), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(2327), - [anon_sym_RBRACK] = ACTIONS(2329), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2351), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2347), - [anon_sym_readonly] = 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), - }, - [211] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2902), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5622), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5368), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2922), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5503), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5312), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(5315), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1782), [anon_sym_COMMA] = ACTIONS(2338), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_RBRACK] = ACTIONS(2353), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_RBRACK] = ACTIONS(2345), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -39303,7 +39210,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -39326,76 +39233,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [212] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2902), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4507), - [sym_assignment_pattern] = STATE(5622), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4507), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4507), - [sym_spread_element] = STATE(5368), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [211] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2922), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(4437), + [sym_assignment_pattern] = STATE(5503), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(4437), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(4437), + [sym_spread_element] = STATE(5312), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(5146), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2020), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(5315), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2010), [anon_sym_export] = ACTIONS(562), [anon_sym_type] = ACTIONS(562), [anon_sym_namespace] = ACTIONS(566), - [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1782), [anon_sym_COMMA] = ACTIONS(2338), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_RBRACK] = ACTIONS(2338), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(594), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2026), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2016), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -39405,7 +39312,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -39428,174 +39335,276 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(562), [anon_sym_symbol] = ACTIONS(562), }, - [213] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3024), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), + [212] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3500), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5360), + [sym_assignment_pattern] = STATE(5182), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5360), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_spread_element] = STATE(5203), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5360), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5206), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2349), + [anon_sym_export] = ACTIONS(2351), + [anon_sym_type] = ACTIONS(2351), + [anon_sym_namespace] = ACTIONS(2353), + [anon_sym_LBRACE] = ACTIONS(2324), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2359), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(2328), + [anon_sym_RBRACK] = ACTIONS(2330), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(2355), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_DOT_DOT_DOT] = ACTIONS(696), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2351), + [anon_sym_readonly] = 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), + }, + [213] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3438), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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_extends] = ACTIONS(2311), }, [214] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3045), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_spread_element] = STATE(5145), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2916), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5378), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5370), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5373), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_COMMA] = ACTIONS(2357), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2363), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2359), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -39605,7 +39614,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -39613,289 +39622,189 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [215] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(3011), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), + [anon_sym_extends] = ACTIONS(2311), }, [216] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_extends] = ACTIONS(2307), - }, - [217] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2887), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_spread_element] = STATE(5196), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3064), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5235), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5194), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5233), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_COMMA] = ACTIONS(2357), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2365), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2363), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -39905,7 +39814,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -39913,489 +39822,489 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [218] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(3000), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [217] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_extends] = ACTIONS(2311), }, - [219] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(3019), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [218] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2763), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(4587), + [sym__extends_type] = STATE(4586), + [sym_functional_extension] = STATE(4930), + [sym_generic_type] = STATE(4586), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2365), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), + }, + [219] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2758), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_nested_identifier] = STATE(5721), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_nested_type_identifier] = STATE(4543), + [sym__extends_type] = STATE(4542), + [sym_functional_extension] = STATE(4932), + [sym_generic_type] = STATE(4542), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2367), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, [220] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3543), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), + [anon_sym_extends] = ACTIONS(2311), }, [221] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_extends] = ACTIONS(2307), - }, - [222] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2902), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_spread_element] = STATE(5368), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2967), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5268), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2367), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5269), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2357), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2367), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2371), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_RBRACK] = ACTIONS(2367), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -40405,7 +40314,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -40413,93 +40322,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [223] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [222] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3263), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -40510,192 +40419,292 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + [anon_sym_extends] = ACTIONS(2311), }, - [224] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2625), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), + [223] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3206), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), + [anon_sym_extends] = ACTIONS(2311), + }, + [224] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + [anon_sym_extends] = ACTIONS(2311), }, [225] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2974), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_spread_element] = STATE(5378), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2863), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5127), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5377), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5126), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_COMMA] = ACTIONS(2357), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2369), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2373), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -40705,7 +40714,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -40713,993 +40722,693 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [226] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2961), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), - [anon_sym_extends] = ACTIONS(2307), - }, - [227] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2722), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2743), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), - [anon_sym_extends] = ACTIONS(2307), - }, - [228] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(2307), - }, - [229] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [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(968), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), + [anon_sym_extends] = ACTIONS(2311), }, - [230] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3066), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [227] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2922), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5312), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2375), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_RBRACK] = ACTIONS(2375), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_extends] = ACTIONS(2307), - }, - [231] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [232] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2832), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [228] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(2305), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + [anon_sym_extends] = ACTIONS(2311), }, - [233] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [229] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), + [anon_sym_extends] = ACTIONS(2311), }, - [234] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3016), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [230] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2887), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5308), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5307), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2357), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2377), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [235] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3075), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [231] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [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(1368), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), + [anon_sym_extends] = ACTIONS(2311), + }, + [232] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2724), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2305), + [anon_sym_GT] = ACTIONS(2309), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [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), @@ -41710,291 +41419,1091 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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_extends] = ACTIONS(2311), }, - [236] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3005), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_spread_element] = STATE(5221), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [233] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2888), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [aux_sym_array_repeat1] = STATE(5217), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_COMMA] = ACTIONS(2357), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2373), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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_extends] = ACTIONS(2311), }, - [237] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2616), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [234] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2804), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_COMMA] = ACTIONS(2305), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(4587), + [sym__extends_type] = STATE(4627), + [sym_functional_extension] = STATE(5318), + [sym_generic_type] = STATE(4627), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2365), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(2305), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_GT] = ACTIONS(2305), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_AMP] = ACTIONS(2305), - [anon_sym_PIPE] = ACTIONS(2305), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), + }, + [235] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2880), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5249), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [aux_sym_array_repeat1] = STATE(5248), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2357), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2379), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2361), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(630), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + }, + [236] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2674), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(936), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), + [anon_sym_extends] = ACTIONS(2311), + }, + [237] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), - [anon_sym_extends] = ACTIONS(2307), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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_extends] = ACTIONS(2311), }, [238] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3109), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2222), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + [anon_sym_extends] = ACTIONS(2311), + }, + [239] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2819), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + [anon_sym_extends] = ACTIONS(2311), + }, + [240] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_spread_element] = STATE(5887), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5887), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(1580), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1572), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), + [anon_sym_extends] = ACTIONS(2311), + }, + [241] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(3060), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_nested_identifier] = STATE(5721), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_nested_type_identifier] = STATE(4543), + [sym__extends_type] = STATE(4914), + [sym_functional_extension] = STATE(5336), + [sym_generic_type] = STATE(4914), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2367), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [242] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_COMMA] = ACTIONS(2309), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(2309), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_GT] = ACTIONS(2309), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_AMP] = ACTIONS(2309), + [anon_sym_PIPE] = ACTIONS(2309), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + [anon_sym_extends] = ACTIONS(2311), + }, + [243] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3131), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5969), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5969), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(2375), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(2381), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -42004,7 +42513,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -42012,74 +42521,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [239] = { - [sym_import] = STATE(2475), - [sym_expression_statement] = STATE(307), - [sym_empty_statement] = STATE(307), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [244] = { + [sym_import] = STATE(2413), + [sym_expression_statement] = STATE(310), + [sym_empty_statement] = STATE(310), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -42088,9 +42597,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -42111,74 +42620,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [240] = { - [sym_import] = STATE(2475), + [245] = { + [sym_import] = STATE(2413), [sym_expression_statement] = STATE(309), [sym_empty_statement] = STATE(309), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -42187,9 +42696,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -42210,88 +42719,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [241] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3138), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_spread_element] = STATE(5721), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5721), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [246] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3144), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_spread_element] = STATE(5814), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5814), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_RBRACE] = ACTIONS(2379), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_RBRACE] = ACTIONS(2385), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2377), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2383), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -42301,7 +42810,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -42309,74 +42818,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [242] = { - [sym_import] = STATE(2475), + [247] = { + [sym_import] = STATE(2413), [sym_expression_statement] = STATE(308), [sym_empty_statement] = STATE(308), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2798), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5402), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5456), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -42385,9 +42894,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -42408,386 +42917,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - }, - [243] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2381), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), - }, - [244] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3543), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2383), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [245] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2557), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [248] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2586), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2383), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5670), + [sym_generic_type] = STATE(2587), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2387), + [anon_sym_export] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2389), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_readonly] = 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), - }, - [246] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2478), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2391), - [anon_sym_export] = ACTIONS(2393), - [anon_sym_type] = ACTIONS(2393), - [anon_sym_namespace] = ACTIONS(2395), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2397), - [anon_sym_function] = ACTIONS(908), - [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_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -42798,105 +43013,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2393), - [anon_sym_readonly] = ACTIONS(2393), - [anon_sym_get] = ACTIONS(2393), - [anon_sym_set] = ACTIONS(2393), - [anon_sym_declare] = ACTIONS(2393), - [anon_sym_public] = ACTIONS(2393), - [anon_sym_private] = ACTIONS(2393), - [anon_sym_protected] = ACTIONS(2393), - [anon_sym_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_static] = ACTIONS(2389), + [anon_sym_readonly] = 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), }, - [247] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2326), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [249] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5696), - [sym_generic_type] = STATE(2353), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(2399), [anon_sym_export] = ACTIONS(2401), [anon_sym_type] = ACTIONS(2401), [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(2405), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2401), [anon_sym_readonly] = ACTIONS(2401), @@ -42913,88 +43128,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2401), [anon_sym_symbol] = ACTIONS(2401), }, - [248] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3075), - [sym_primary_expression] = STATE(2478), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [250] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(2407), [anon_sym_export] = ACTIONS(2409), [anon_sym_type] = ACTIONS(2409), [anon_sym_namespace] = ACTIONS(2411), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(2413), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1442), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2409), [anon_sym_readonly] = ACTIONS(2409), @@ -43011,272 +43226,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2409), [anon_sym_symbol] = ACTIONS(2409), }, - [249] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2883), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2415), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [250] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2918), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(4895), - [sym_generic_type] = STATE(5367), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2417), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), - }, [251] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2847), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5524), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2586), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5670), + [sym_generic_type] = STATE(2587), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2415), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(2419), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43287,204 +43307,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - [sym__automatic_semicolon] = ACTIONS(2419), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), }, [252] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(3000), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2421), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), - }, - [253] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2326), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2516), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5696), - [sym_generic_type] = STATE(2353), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(2423), [anon_sym_export] = ACTIONS(2425), [anon_sym_type] = ACTIONS(2425), [anon_sym_namespace] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2425), [anon_sym_readonly] = ACTIONS(2425), @@ -43501,88 +43422,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2425), [anon_sym_symbol] = ACTIONS(2425), }, - [254] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2485), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [253] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(3563), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5445), - [sym_generic_type] = STATE(4018), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(2431), [anon_sym_export] = ACTIONS(2433), [anon_sym_type] = ACTIONS(2433), [anon_sym_namespace] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(2441), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2433), [anon_sym_readonly] = ACTIONS(2433), @@ -43599,371 +43520,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2433), [anon_sym_symbol] = ACTIONS(2433), }, - [255] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2557), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2443), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2449), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), - }, - [256] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3016), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2451), - [anon_sym_export] = ACTIONS(2453), - [anon_sym_type] = ACTIONS(2453), - [anon_sym_namespace] = ACTIONS(2455), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2457), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2453), - [anon_sym_readonly] = ACTIONS(2453), - [anon_sym_get] = ACTIONS(2453), - [anon_sym_set] = ACTIONS(2453), - [anon_sym_declare] = ACTIONS(2453), - [anon_sym_public] = ACTIONS(2453), - [anon_sym_private] = ACTIONS(2453), - [anon_sym_protected] = ACTIONS(2453), - [anon_sym_module] = ACTIONS(2453), - [anon_sym_any] = ACTIONS(2453), - [anon_sym_number] = ACTIONS(2453), - [anon_sym_boolean] = ACTIONS(2453), - [anon_sym_string] = ACTIONS(2453), - [anon_sym_symbol] = ACTIONS(2453), - }, - [257] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2486), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [254] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2222), + [sym_primary_expression] = STATE(2574), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5700), - [sym_generic_type] = STATE(2487), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2459), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2439), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(1054), [anon_sym_yield] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [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(2441), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_readonly] = ACTIONS(2461), - [anon_sym_get] = ACTIONS(2461), - [anon_sym_set] = ACTIONS(2461), - [anon_sym_declare] = ACTIONS(2461), - [anon_sym_public] = ACTIONS(2461), - [anon_sym_private] = ACTIONS(2461), - [anon_sym_protected] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_any] = ACTIONS(2461), - [anon_sym_number] = ACTIONS(2461), - [anon_sym_boolean] = ACTIONS(2461), - [anon_sym_string] = ACTIONS(2461), - [anon_sym_symbol] = ACTIONS(2461), - }, - [258] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2961), - [sym_primary_expression] = STATE(2478), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2467), - [anon_sym_export] = ACTIONS(2469), - [anon_sym_type] = ACTIONS(2469), - [anon_sym_namespace] = ACTIONS(2471), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2473), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43974,105 +43601,105 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(926), + [sym_undefined] = ACTIONS(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2469), - [anon_sym_readonly] = ACTIONS(2469), - [anon_sym_get] = ACTIONS(2469), - [anon_sym_set] = ACTIONS(2469), - [anon_sym_declare] = ACTIONS(2469), - [anon_sym_public] = ACTIONS(2469), - [anon_sym_private] = ACTIONS(2469), - [anon_sym_protected] = ACTIONS(2469), - [anon_sym_module] = ACTIONS(2469), - [anon_sym_any] = ACTIONS(2469), - [anon_sym_number] = ACTIONS(2469), - [anon_sym_boolean] = ACTIONS(2469), - [anon_sym_string] = ACTIONS(2469), - [anon_sym_symbol] = ACTIONS(2469), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [259] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2557), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [255] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2516), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2475), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2399), [anon_sym_export] = ACTIONS(2401), [anon_sym_type] = ACTIONS(2401), [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(2405), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2401), [anon_sym_readonly] = ACTIONS(2401), @@ -44089,1253 +43716,1155 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2401), [anon_sym_symbol] = ACTIONS(2401), }, - [260] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(3593), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [256] = { + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2477), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [257] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2516), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2490), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_namespace] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2483), + [anon_sym_async] = ACTIONS(2496), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_readonly] = ACTIONS(2479), - [anon_sym_get] = ACTIONS(2479), - [anon_sym_set] = ACTIONS(2479), - [anon_sym_declare] = ACTIONS(2479), - [anon_sym_public] = ACTIONS(2479), - [anon_sym_private] = ACTIONS(2479), - [anon_sym_protected] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_any] = ACTIONS(2479), - [anon_sym_number] = ACTIONS(2479), - [anon_sym_boolean] = ACTIONS(2479), - [anon_sym_string] = ACTIONS(2479), - [anon_sym_symbol] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_readonly] = 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), }, - [261] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2326), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [258] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2743), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5696), - [sym_generic_type] = STATE(2353), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2485), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2498), + [anon_sym_export] = ACTIONS(2500), + [anon_sym_type] = ACTIONS(2500), + [anon_sym_namespace] = ACTIONS(2502), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(2504), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_readonly] = ACTIONS(2487), - [anon_sym_get] = ACTIONS(2487), - [anon_sym_set] = ACTIONS(2487), - [anon_sym_declare] = ACTIONS(2487), - [anon_sym_public] = ACTIONS(2487), - [anon_sym_private] = ACTIONS(2487), - [anon_sym_protected] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_any] = ACTIONS(2487), - [anon_sym_number] = ACTIONS(2487), - [anon_sym_boolean] = ACTIONS(2487), - [anon_sym_string] = ACTIONS(2487), - [anon_sym_symbol] = ACTIONS(2487), - }, - [262] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2486), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5700), - [sym_generic_type] = STATE(2487), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2493), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [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(2441), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(2500), + [anon_sym_readonly] = ACTIONS(2500), + [anon_sym_get] = ACTIONS(2500), + [anon_sym_set] = ACTIONS(2500), + [anon_sym_declare] = ACTIONS(2500), + [anon_sym_public] = ACTIONS(2500), + [anon_sym_private] = ACTIONS(2500), + [anon_sym_protected] = ACTIONS(2500), + [anon_sym_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), }, - [263] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [259] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3206), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2477), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2506), + [anon_sym_export] = ACTIONS(2508), + [anon_sym_type] = ACTIONS(2508), + [anon_sym_namespace] = ACTIONS(2510), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2483), + [anon_sym_async] = ACTIONS(2512), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_readonly] = ACTIONS(2479), - [anon_sym_get] = ACTIONS(2479), - [anon_sym_set] = ACTIONS(2479), - [anon_sym_declare] = ACTIONS(2479), - [anon_sym_public] = ACTIONS(2479), - [anon_sym_private] = ACTIONS(2479), - [anon_sym_protected] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_any] = ACTIONS(2479), - [anon_sym_number] = ACTIONS(2479), - [anon_sym_boolean] = ACTIONS(2479), - [anon_sym_string] = ACTIONS(2479), - [anon_sym_symbol] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2508), + [anon_sym_readonly] = ACTIONS(2508), + [anon_sym_get] = ACTIONS(2508), + [anon_sym_set] = ACTIONS(2508), + [anon_sym_declare] = ACTIONS(2508), + [anon_sym_public] = ACTIONS(2508), + [anon_sym_private] = ACTIONS(2508), + [anon_sym_protected] = ACTIONS(2508), + [anon_sym_module] = ACTIONS(2508), + [anon_sym_any] = ACTIONS(2508), + [anon_sym_number] = ACTIONS(2508), + [anon_sym_boolean] = ACTIONS(2508), + [anon_sym_string] = ACTIONS(2508), + [anon_sym_symbol] = ACTIONS(2508), }, - [264] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1535), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2871), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1535), - [sym_subscript_expression] = STATE(1535), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [260] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1498), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2877), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1498), + [sym_subscript_expression] = STATE(1498), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1535), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5452), - [sym_generic_type] = STATE(2850), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1498), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5629), + [sym_generic_type] = STATE(3023), + [sym_type_parameters] = STATE(5461), [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2495), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1672), + [sym_identifier] = ACTIONS(2514), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1652), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(2503), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(2522), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(2505), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(2524), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), }, - [265] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2722), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), + [261] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2244), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2507), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5470), + [sym_generic_type] = STATE(2356), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2526), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_namespace] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(2496), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), - }, - [266] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_readonly] = 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), }, - [267] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2326), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [262] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2116), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5337), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5337), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2116), + [sym_subscript_expression] = STATE(2116), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5337), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5696), - [sym_generic_type] = STATE(2353), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2558), - [anon_sym_export] = ACTIONS(2560), - [anon_sym_type] = ACTIONS(2560), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2116), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2528), + [anon_sym_export] = ACTIONS(2530), + [anon_sym_type] = ACTIONS(2530), + [anon_sym_namespace] = ACTIONS(2532), + [anon_sym_LBRACE] = ACTIONS(2534), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_var] = ACTIONS(2536), + [anon_sym_let] = ACTIONS(2536), + [anon_sym_const] = ACTIONS(2536), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(2538), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2540), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(2542), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_readonly] = ACTIONS(2560), - [anon_sym_get] = ACTIONS(2560), - [anon_sym_set] = ACTIONS(2560), - [anon_sym_declare] = ACTIONS(2560), - [anon_sym_public] = ACTIONS(2560), - [anon_sym_private] = ACTIONS(2560), - [anon_sym_protected] = ACTIONS(2560), - [anon_sym_module] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2560), - [anon_sym_number] = ACTIONS(2560), - [anon_sym_boolean] = ACTIONS(2560), - [anon_sym_string] = ACTIONS(2560), - [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(2530), + [anon_sym_readonly] = ACTIONS(2530), + [anon_sym_get] = ACTIONS(2530), + [anon_sym_set] = ACTIONS(2530), + [anon_sym_declare] = ACTIONS(2530), + [anon_sym_public] = ACTIONS(2530), + [anon_sym_private] = ACTIONS(2530), + [anon_sym_protected] = ACTIONS(2530), + [anon_sym_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), }, - [268] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2832), - [sym_primary_expression] = STATE(3326), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), + [263] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(3389), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2566), - [anon_sym_export] = ACTIONS(2568), - [anon_sym_type] = ACTIONS(2568), - [anon_sym_namespace] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(2572), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_readonly] = ACTIONS(2568), - [anon_sym_get] = ACTIONS(2568), - [anon_sym_set] = ACTIONS(2568), - [anon_sym_declare] = ACTIONS(2568), - [anon_sym_public] = ACTIONS(2568), - [anon_sym_private] = ACTIONS(2568), - [anon_sym_protected] = ACTIONS(2568), - [anon_sym_module] = ACTIONS(2568), - [anon_sym_any] = ACTIONS(2568), - [anon_sym_number] = ACTIONS(2568), - [anon_sym_boolean] = ACTIONS(2568), - [anon_sym_string] = ACTIONS(2568), - [anon_sym_symbol] = ACTIONS(2568), - }, - [269] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(3019), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(2576), - [anon_sym_type] = ACTIONS(2576), - [anon_sym_namespace] = ACTIONS(2578), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2546), + [anon_sym_type] = ACTIONS(2546), + [anon_sym_namespace] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2580), + [anon_sym_async] = ACTIONS(2550), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2576), - [anon_sym_readonly] = ACTIONS(2576), - [anon_sym_get] = ACTIONS(2576), - [anon_sym_set] = ACTIONS(2576), - [anon_sym_declare] = ACTIONS(2576), - [anon_sym_public] = ACTIONS(2576), - [anon_sym_private] = ACTIONS(2576), - [anon_sym_protected] = ACTIONS(2576), - [anon_sym_module] = ACTIONS(2576), - [anon_sym_any] = ACTIONS(2576), - [anon_sym_number] = ACTIONS(2576), - [anon_sym_boolean] = ACTIONS(2576), - [anon_sym_string] = ACTIONS(2576), - [anon_sym_symbol] = ACTIONS(2576), - }, - [270] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2058), - [sym_expression] = STATE(3595), - [sym_primary_expression] = STATE(3535), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2058), - [sym_subscript_expression] = STATE(2058), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2058), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5505), - [sym_generic_type] = STATE(3445), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2582), - [anon_sym_export] = ACTIONS(2584), - [anon_sym_type] = ACTIONS(2584), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(2592), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_readonly] = ACTIONS(2584), - [anon_sym_get] = ACTIONS(2584), - [anon_sym_set] = ACTIONS(2584), - [anon_sym_declare] = ACTIONS(2584), - [anon_sym_public] = ACTIONS(2584), - [anon_sym_private] = ACTIONS(2584), - [anon_sym_protected] = ACTIONS(2584), - [anon_sym_module] = ACTIONS(2584), - [anon_sym_any] = ACTIONS(2584), - [anon_sym_number] = ACTIONS(2584), - [anon_sym_boolean] = ACTIONS(2584), - [anon_sym_string] = ACTIONS(2584), - [anon_sym_symbol] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_readonly] = ACTIONS(2546), + [anon_sym_get] = ACTIONS(2546), + [anon_sym_set] = ACTIONS(2546), + [anon_sym_declare] = ACTIONS(2546), + [anon_sym_public] = ACTIONS(2546), + [anon_sym_private] = ACTIONS(2546), + [anon_sym_protected] = ACTIONS(2546), + [anon_sym_module] = ACTIONS(2546), + [anon_sym_any] = ACTIONS(2546), + [anon_sym_number] = ACTIONS(2546), + [anon_sym_boolean] = ACTIONS(2546), + [anon_sym_string] = ACTIONS(2546), + [anon_sym_symbol] = ACTIONS(2546), }, - [271] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2117), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5202), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5202), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2117), - [sym_subscript_expression] = STATE(2117), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5202), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [264] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2244), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2117), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2594), - [anon_sym_export] = ACTIONS(2596), - [anon_sym_type] = ACTIONS(2596), - [anon_sym_namespace] = ACTIONS(2598), - [anon_sym_LBRACE] = ACTIONS(2600), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5470), + [sym_generic_type] = STATE(2356), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2552), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_var] = ACTIONS(2602), - [anon_sym_let] = ACTIONS(2602), - [anon_sym_const] = ACTIONS(2602), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(2604), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2606), + [anon_sym_async] = ACTIONS(2405), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(2608), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2596), - [anon_sym_readonly] = ACTIONS(2596), - [anon_sym_get] = ACTIONS(2596), - [anon_sym_set] = ACTIONS(2596), - [anon_sym_declare] = ACTIONS(2596), - [anon_sym_public] = ACTIONS(2596), - [anon_sym_private] = ACTIONS(2596), - [anon_sym_protected] = ACTIONS(2596), - [anon_sym_module] = ACTIONS(2596), - [anon_sym_any] = ACTIONS(2596), - [anon_sym_number] = ACTIONS(2596), - [anon_sym_boolean] = ACTIONS(2596), - [anon_sym_string] = ACTIONS(2596), - [anon_sym_symbol] = ACTIONS(2596), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_readonly] = ACTIONS(2401), + [anon_sym_get] = ACTIONS(2401), + [anon_sym_set] = ACTIONS(2401), + [anon_sym_declare] = ACTIONS(2401), + [anon_sym_public] = ACTIONS(2401), + [anon_sym_private] = ACTIONS(2401), + [anon_sym_protected] = ACTIONS(2401), + [anon_sym_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), }, - [272] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1583), - [sym_expression] = STATE(3174), - [sym_primary_expression] = STATE(2485), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1583), - [sym_subscript_expression] = STATE(1583), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [265] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1498), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(3240), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1498), + [sym_subscript_expression] = STATE(1498), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1583), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5445), - [sym_generic_type] = STATE(4018), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2610), - [anon_sym_export] = ACTIONS(2612), - [anon_sym_type] = ACTIONS(2612), - [anon_sym_namespace] = ACTIONS(2614), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1498), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5612), + [sym_generic_type] = STATE(4203), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(2554), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_namespace] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1652), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2616), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2618), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_readonly] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_declare] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_protected] = ACTIONS(2556), + [anon_sym_module] = ACTIONS(2556), + [anon_sym_any] = ACTIONS(2556), + [anon_sym_number] = ACTIONS(2556), + [anon_sym_boolean] = ACTIONS(2556), + [anon_sym_string] = ACTIONS(2556), + [anon_sym_symbol] = ACTIONS(2556), + }, + [266] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2819), + [sym_primary_expression] = STATE(3351), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2562), + [anon_sym_export] = ACTIONS(2564), + [anon_sym_type] = ACTIONS(2564), + [anon_sym_namespace] = ACTIONS(2566), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(2568), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2564), + [anon_sym_readonly] = ACTIONS(2564), + [anon_sym_get] = ACTIONS(2564), + [anon_sym_set] = ACTIONS(2564), + [anon_sym_declare] = ACTIONS(2564), + [anon_sym_public] = ACTIONS(2564), + [anon_sym_private] = ACTIONS(2564), + [anon_sym_protected] = ACTIONS(2564), + [anon_sym_module] = ACTIONS(2564), + [anon_sym_any] = ACTIONS(2564), + [anon_sym_number] = ACTIONS(2564), + [anon_sym_boolean] = ACTIONS(2564), + [anon_sym_string] = ACTIONS(2564), + [anon_sym_symbol] = ACTIONS(2564), + }, + [267] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(2574), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2570), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -45346,1069 +44875,1559 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2620), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2612), - [anon_sym_readonly] = ACTIONS(2612), - [anon_sym_get] = ACTIONS(2612), - [anon_sym_set] = ACTIONS(2612), - [anon_sym_declare] = ACTIONS(2612), - [anon_sym_public] = ACTIONS(2612), - [anon_sym_private] = ACTIONS(2612), - [anon_sym_protected] = ACTIONS(2612), - [anon_sym_module] = ACTIONS(2612), - [anon_sym_any] = ACTIONS(2612), - [anon_sym_number] = ACTIONS(2612), - [anon_sym_boolean] = ACTIONS(2612), - [anon_sym_string] = ACTIONS(2612), - [anon_sym_symbol] = ACTIONS(2612), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [273] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3066), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [268] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(2889), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2622), - [anon_sym_export] = ACTIONS(2624), - [anon_sym_type] = ACTIONS(2624), - [anon_sym_namespace] = ACTIONS(2626), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(2572), + [anon_sym_export] = ACTIONS(2574), + [anon_sym_type] = ACTIONS(2574), + [anon_sym_namespace] = ACTIONS(2576), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(2578), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2574), + [anon_sym_readonly] = ACTIONS(2574), + [anon_sym_get] = ACTIONS(2574), + [anon_sym_set] = ACTIONS(2574), + [anon_sym_declare] = ACTIONS(2574), + [anon_sym_public] = ACTIONS(2574), + [anon_sym_private] = ACTIONS(2574), + [anon_sym_protected] = ACTIONS(2574), + [anon_sym_module] = ACTIONS(2574), + [anon_sym_any] = ACTIONS(2574), + [anon_sym_number] = ACTIONS(2574), + [anon_sym_boolean] = ACTIONS(2574), + [anon_sym_string] = ACTIONS(2574), + [anon_sym_symbol] = ACTIONS(2574), + }, + [269] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2628), + [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2624), - [anon_sym_readonly] = ACTIONS(2624), - [anon_sym_get] = ACTIONS(2624), - [anon_sym_set] = ACTIONS(2624), - [anon_sym_declare] = ACTIONS(2624), - [anon_sym_public] = ACTIONS(2624), - [anon_sym_private] = ACTIONS(2624), - [anon_sym_protected] = ACTIONS(2624), - [anon_sym_module] = ACTIONS(2624), - [anon_sym_any] = ACTIONS(2624), - [anon_sym_number] = ACTIONS(2624), - [anon_sym_boolean] = ACTIONS(2624), - [anon_sym_string] = ACTIONS(2624), - [anon_sym_symbol] = ACTIONS(2624), - }, - [274] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1535), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(3233), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1535), - [sym_subscript_expression] = STATE(1535), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1535), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5574), - [sym_generic_type] = STATE(4245), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2630), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(2505), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), }, - [275] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(2883), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [270] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(2889), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2632), - [anon_sym_export] = ACTIONS(2634), - [anon_sym_type] = ACTIONS(2634), - [anon_sym_namespace] = ACTIONS(2636), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(2638), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2634), - [anon_sym_readonly] = ACTIONS(2634), - [anon_sym_get] = ACTIONS(2634), - [anon_sym_set] = ACTIONS(2634), - [anon_sym_declare] = ACTIONS(2634), - [anon_sym_public] = ACTIONS(2634), - [anon_sym_private] = ACTIONS(2634), - [anon_sym_protected] = ACTIONS(2634), - [anon_sym_module] = ACTIONS(2634), - [anon_sym_any] = ACTIONS(2634), - [anon_sym_number] = ACTIONS(2634), - [anon_sym_boolean] = ACTIONS(2634), - [anon_sym_string] = ACTIONS(2634), - [anon_sym_symbol] = ACTIONS(2634), - }, - [276] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2485), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5445), - [sym_generic_type] = STATE(4018), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2640), - [anon_sym_export] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2644), + [sym_identifier] = ACTIONS(2580), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [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(2441), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2642), - [anon_sym_set] = ACTIONS(2642), - [anon_sym_declare] = ACTIONS(2642), - [anon_sym_public] = ACTIONS(2642), - [anon_sym_private] = ACTIONS(2642), - [anon_sym_protected] = ACTIONS(2642), - [anon_sym_module] = ACTIONS(2642), - [anon_sym_any] = ACTIONS(2642), - [anon_sym_number] = ACTIONS(2642), - [anon_sym_boolean] = ACTIONS(2642), - [anon_sym_string] = ACTIONS(2642), - [anon_sym_symbol] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, - [277] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2616), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [271] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2244), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2648), - [anon_sym_export] = ACTIONS(2650), - [anon_sym_type] = ACTIONS(2650), - [anon_sym_namespace] = ACTIONS(2652), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5470), + [sym_generic_type] = STATE(2356), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2582), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2654), + [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_readonly] = ACTIONS(2650), - [anon_sym_get] = ACTIONS(2650), - [anon_sym_set] = ACTIONS(2650), - [anon_sym_declare] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_protected] = ACTIONS(2650), - [anon_sym_module] = ACTIONS(2650), - [anon_sym_any] = ACTIONS(2650), - [anon_sym_number] = ACTIONS(2650), - [anon_sym_boolean] = ACTIONS(2650), - [anon_sym_string] = ACTIONS(2650), - [anon_sym_symbol] = ACTIONS(2650), - }, - [278] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + }, + [272] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2724), + [sym_primary_expression] = STATE(2574), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2584), + [anon_sym_export] = ACTIONS(2586), + [anon_sym_type] = ACTIONS(2586), + [anon_sym_namespace] = ACTIONS(2588), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2590), + [anon_sym_function] = ACTIONS(1012), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(2586), + [anon_sym_readonly] = ACTIONS(2586), + [anon_sym_get] = ACTIONS(2586), + [anon_sym_set] = ACTIONS(2586), + [anon_sym_declare] = ACTIONS(2586), + [anon_sym_public] = ACTIONS(2586), + [anon_sym_private] = ACTIONS(2586), + [anon_sym_protected] = ACTIONS(2586), + [anon_sym_module] = ACTIONS(2586), + [anon_sym_any] = ACTIONS(2586), + [anon_sym_number] = ACTIONS(2586), + [anon_sym_boolean] = ACTIONS(2586), + [anon_sym_string] = ACTIONS(2586), + [anon_sym_symbol] = ACTIONS(2586), }, - [279] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(3593), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [273] = { + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2443), - [anon_sym_export] = ACTIONS(2445), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), [anon_sym_type] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [274] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2586), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5670), + [sym_generic_type] = STATE(2587), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2594), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + }, + [275] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2516), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2602), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_namespace] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2608), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_readonly] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_declare] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_module] = ACTIONS(2604), + [anon_sym_any] = ACTIONS(2604), + [anon_sym_number] = ACTIONS(2604), + [anon_sym_boolean] = ACTIONS(2604), + [anon_sym_string] = ACTIONS(2604), + [anon_sym_symbol] = ACTIONS(2604), }, - [280] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2769), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_nested_identifier] = STATE(5840), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), + [276] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(3563), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_nested_type_identifier] = STATE(4449), - [sym_generic_type] = STATE(4958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2658), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2546), + [anon_sym_type] = ACTIONS(2546), + [anon_sym_namespace] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(2550), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(2546), + [anon_sym_readonly] = ACTIONS(2546), + [anon_sym_get] = ACTIONS(2546), + [anon_sym_set] = ACTIONS(2546), + [anon_sym_declare] = ACTIONS(2546), + [anon_sym_public] = ACTIONS(2546), + [anon_sym_private] = ACTIONS(2546), + [anon_sym_protected] = ACTIONS(2546), + [anon_sym_module] = ACTIONS(2546), + [anon_sym_any] = ACTIONS(2546), + [anon_sym_number] = ACTIONS(2546), + [anon_sym_boolean] = ACTIONS(2546), + [anon_sym_string] = ACTIONS(2546), + [anon_sym_symbol] = ACTIONS(2546), }, - [281] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [277] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(3011), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2610), + [anon_sym_export] = ACTIONS(2612), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_namespace] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(2616), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_readonly] = ACTIONS(2612), + [anon_sym_get] = ACTIONS(2612), + [anon_sym_set] = ACTIONS(2612), + [anon_sym_declare] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_protected] = ACTIONS(2612), + [anon_sym_module] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2612), + [anon_sym_number] = ACTIONS(2612), + [anon_sym_boolean] = ACTIONS(2612), + [anon_sym_string] = ACTIONS(2612), + [anon_sym_symbol] = ACTIONS(2612), }, - [282] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2557), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [278] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2662), - [anon_sym_export] = ACTIONS(2560), - [anon_sym_type] = ACTIONS(2560), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2618), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), + }, + [279] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2594), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5532), + [sym_generic_type] = STATE(4005), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2620), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), + }, + [280] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(3315), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2622), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), + }, + [281] = { + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [282] = { + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_readonly] = ACTIONS(2560), - [anon_sym_get] = ACTIONS(2560), - [anon_sym_set] = ACTIONS(2560), - [anon_sym_declare] = ACTIONS(2560), - [anon_sym_public] = ACTIONS(2560), - [anon_sym_private] = ACTIONS(2560), - [anon_sym_protected] = ACTIONS(2560), - [anon_sym_module] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2560), - [anon_sym_number] = ACTIONS(2560), - [anon_sym_boolean] = ACTIONS(2560), - [anon_sym_string] = ACTIONS(2560), - [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, [283] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3220), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5308), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5308), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5308), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5246), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5246), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5246), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_pattern] = STATE(5651), - [sym_rest_pattern] = STATE(4319), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2664), + [sym_formal_parameters] = STATE(4737), + [sym_pattern] = STATE(5645), + [sym_rest_pattern] = STATE(4402), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2628), [anon_sym_export] = ACTIONS(722), [anon_sym_type] = ACTIONS(722), [anon_sym_namespace] = ACTIONS(726), - [anon_sym_LBRACE] = ACTIONS(1806), + [anon_sym_LBRACE] = ACTIONS(1782), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), [anon_sym_async] = ACTIONS(736), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), + [anon_sym_new] = ACTIONS(1678), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -46418,7 +46437,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -46442,169 +46461,365 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(722), }, [284] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2326), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2594), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5532), + [sym_generic_type] = STATE(4005), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2630), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + }, + [285] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(3351), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2632), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [286] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5696), - [sym_generic_type] = STATE(2353), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2666), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2634), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2672), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_readonly] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_declare] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_protected] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(2668), - [anon_sym_any] = ACTIONS(2668), - [anon_sym_number] = ACTIONS(2668), - [anon_sym_boolean] = ACTIONS(2668), - [anon_sym_string] = ACTIONS(2668), - [anon_sym_symbol] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [285] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(2557), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [287] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(2516), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2477), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2546), + [anon_sym_type] = ACTIONS(2546), + [anon_sym_namespace] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2483), + [anon_sym_async] = ACTIONS(2550), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -46614,7 +46829,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -46622,1366 +46837,1170 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_readonly] = ACTIONS(2479), - [anon_sym_get] = ACTIONS(2479), - [anon_sym_set] = ACTIONS(2479), - [anon_sym_declare] = ACTIONS(2479), - [anon_sym_public] = ACTIONS(2479), - [anon_sym_private] = ACTIONS(2479), - [anon_sym_protected] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_any] = ACTIONS(2479), - [anon_sym_number] = ACTIONS(2479), - [anon_sym_boolean] = ACTIONS(2479), - [anon_sym_string] = ACTIONS(2479), - [anon_sym_symbol] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_readonly] = ACTIONS(2546), + [anon_sym_get] = ACTIONS(2546), + [anon_sym_set] = ACTIONS(2546), + [anon_sym_declare] = ACTIONS(2546), + [anon_sym_public] = ACTIONS(2546), + [anon_sym_private] = ACTIONS(2546), + [anon_sym_protected] = ACTIONS(2546), + [anon_sym_module] = ACTIONS(2546), + [anon_sym_any] = ACTIONS(2546), + [anon_sym_number] = ACTIONS(2546), + [anon_sym_boolean] = ACTIONS(2546), + [anon_sym_string] = ACTIONS(2546), + [anon_sym_symbol] = ACTIONS(2546), }, - [286] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2326), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [288] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3438), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5696), - [sym_generic_type] = STATE(2353), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2674), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), - }, - [287] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(3326), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2676), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [288] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2486), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5700), - [sym_generic_type] = STATE(2487), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2678), - [anon_sym_export] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [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(2441), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2642), - [anon_sym_set] = ACTIONS(2642), - [anon_sym_declare] = ACTIONS(2642), - [anon_sym_public] = ACTIONS(2642), - [anon_sym_private] = ACTIONS(2642), - [anon_sym_protected] = ACTIONS(2642), - [anon_sym_module] = ACTIONS(2642), - [anon_sym_any] = ACTIONS(2642), - [anon_sym_number] = ACTIONS(2642), - [anon_sym_boolean] = ACTIONS(2642), - [anon_sym_string] = ACTIONS(2642), - [anon_sym_symbol] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), }, [289] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [290] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(2478), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2682), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [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(968), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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), - }, - [291] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2326), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2674), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5696), - [sym_generic_type] = STATE(2353), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2684), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2636), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_readonly] = 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_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [292] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [290] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2244), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2383), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5470), + [sym_generic_type] = STATE(2356), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2638), + [anon_sym_export] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2644), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_readonly] = ACTIONS(2640), + [anon_sym_get] = ACTIONS(2640), + [anon_sym_set] = ACTIONS(2640), + [anon_sym_declare] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_protected] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_any] = ACTIONS(2640), + [anon_sym_number] = ACTIONS(2640), + [anon_sym_boolean] = ACTIONS(2640), + [anon_sym_string] = ACTIONS(2640), + [anon_sym_symbol] = ACTIONS(2640), + }, + [291] = { + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [292] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2030), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(3347), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2030), + [sym_subscript_expression] = STATE(2030), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2030), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5692), + [sym_generic_type] = STATE(3545), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2648), + [anon_sym_export] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_namespace] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(2658), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_readonly] = 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_static] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_get] = ACTIONS(2650), + [anon_sym_set] = ACTIONS(2650), + [anon_sym_declare] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_protected] = ACTIONS(2650), + [anon_sym_module] = ACTIONS(2650), + [anon_sym_any] = ACTIONS(2650), + [anon_sym_number] = ACTIONS(2650), + [anon_sym_boolean] = ACTIONS(2650), + [anon_sym_string] = ACTIONS(2650), + [anon_sym_symbol] = ACTIONS(2650), }, [293] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2779), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2594), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(4541), - [sym_generic_type] = STATE(5025), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2686), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5532), + [sym_generic_type] = STATE(4005), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2660), + [anon_sym_export] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_readonly] = 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), + }, + [294] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(3563), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2423), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), - }, - [294] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1535), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2871), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1535), - [sym_subscript_expression] = STATE(1535), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1535), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5452), - [sym_generic_type] = STATE(2850), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2688), - [anon_sym_export] = ACTIONS(2690), - [anon_sym_type] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(2694), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(2505), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_readonly] = ACTIONS(2690), - [anon_sym_get] = ACTIONS(2690), - [anon_sym_set] = ACTIONS(2690), - [anon_sym_declare] = ACTIONS(2690), - [anon_sym_public] = ACTIONS(2690), - [anon_sym_private] = ACTIONS(2690), - [anon_sym_protected] = ACTIONS(2690), - [anon_sym_module] = ACTIONS(2690), - [anon_sym_any] = ACTIONS(2690), - [anon_sym_number] = ACTIONS(2690), - [anon_sym_boolean] = ACTIONS(2690), - [anon_sym_string] = ACTIONS(2690), - [anon_sym_symbol] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), }, [295] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(3593), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2244), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2383), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5470), + [sym_generic_type] = STATE(2356), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2662), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_namespace] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2608), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_readonly] = 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_static] = ACTIONS(2604), + [anon_sym_readonly] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_declare] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_module] = ACTIONS(2604), + [anon_sym_any] = ACTIONS(2604), + [anon_sym_number] = ACTIONS(2604), + [anon_sym_boolean] = ACTIONS(2604), + [anon_sym_string] = ACTIONS(2604), + [anon_sym_symbol] = ACTIONS(2604), }, [296] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(3406), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1578), + [sym_expression] = STATE(3301), + [sym_primary_expression] = STATE(2594), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1578), + [sym_subscript_expression] = STATE(1578), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2477), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_type] = ACTIONS(2479), - [anon_sym_namespace] = ACTIONS(2481), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1578), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5532), + [sym_generic_type] = STATE(4005), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2664), + [anon_sym_export] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_namespace] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(612), - [anon_sym_import] = ACTIONS(574), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2483), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2670), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2672), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), [anon_sym_PLUS_PLUS] = ACTIONS(614), [anon_sym_DASH_DASH] = ACTIONS(614), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [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(2674), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2479), - [anon_sym_readonly] = ACTIONS(2479), - [anon_sym_get] = ACTIONS(2479), - [anon_sym_set] = ACTIONS(2479), - [anon_sym_declare] = ACTIONS(2479), - [anon_sym_public] = ACTIONS(2479), - [anon_sym_private] = ACTIONS(2479), - [anon_sym_protected] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_any] = ACTIONS(2479), - [anon_sym_number] = ACTIONS(2479), - [anon_sym_boolean] = ACTIONS(2479), - [anon_sym_string] = ACTIONS(2479), - [anon_sym_symbol] = ACTIONS(2479), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_get] = ACTIONS(2666), + [anon_sym_set] = ACTIONS(2666), + [anon_sym_declare] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_protected] = ACTIONS(2666), + [anon_sym_module] = ACTIONS(2666), + [anon_sym_any] = ACTIONS(2666), + [anon_sym_number] = ACTIONS(2666), + [anon_sym_boolean] = ACTIONS(2666), + [anon_sym_string] = ACTIONS(2666), + [anon_sym_symbol] = ACTIONS(2666), }, [297] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2574), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2676), + [anon_sym_export] = ACTIONS(2678), + [anon_sym_type] = ACTIONS(2678), + [anon_sym_namespace] = ACTIONS(2680), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2682), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [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(1368), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2678), + [anon_sym_readonly] = ACTIONS(2678), + [anon_sym_get] = ACTIONS(2678), + [anon_sym_set] = ACTIONS(2678), + [anon_sym_declare] = ACTIONS(2678), + [anon_sym_public] = ACTIONS(2678), + [anon_sym_private] = ACTIONS(2678), + [anon_sym_protected] = ACTIONS(2678), + [anon_sym_module] = ACTIONS(2678), + [anon_sym_any] = ACTIONS(2678), + [anon_sym_number] = ACTIONS(2678), + [anon_sym_boolean] = ACTIONS(2678), + [anon_sym_string] = ACTIONS(2678), + [anon_sym_symbol] = ACTIONS(2678), + }, + [298] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2696), - [anon_sym_export] = ACTIONS(2698), - [anon_sym_type] = ACTIONS(2698), - [anon_sym_namespace] = ACTIONS(2700), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2544), + [anon_sym_export] = ACTIONS(2546), + [anon_sym_type] = ACTIONS(2546), + [anon_sym_namespace] = ACTIONS(2548), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2702), + [anon_sym_async] = ACTIONS(2550), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2698), - [anon_sym_readonly] = ACTIONS(2698), - [anon_sym_get] = ACTIONS(2698), - [anon_sym_set] = ACTIONS(2698), - [anon_sym_declare] = ACTIONS(2698), - [anon_sym_public] = ACTIONS(2698), - [anon_sym_private] = ACTIONS(2698), - [anon_sym_protected] = ACTIONS(2698), - [anon_sym_module] = ACTIONS(2698), - [anon_sym_any] = ACTIONS(2698), - [anon_sym_number] = ACTIONS(2698), - [anon_sym_boolean] = ACTIONS(2698), - [anon_sym_string] = ACTIONS(2698), - [anon_sym_symbol] = ACTIONS(2698), - }, - [298] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(2546), + [anon_sym_readonly] = ACTIONS(2546), + [anon_sym_get] = ACTIONS(2546), + [anon_sym_set] = ACTIONS(2546), + [anon_sym_declare] = ACTIONS(2546), + [anon_sym_public] = ACTIONS(2546), + [anon_sym_private] = ACTIONS(2546), + [anon_sym_protected] = ACTIONS(2546), + [anon_sym_module] = ACTIONS(2546), + [anon_sym_any] = ACTIONS(2546), + [anon_sym_number] = ACTIONS(2546), + [anon_sym_boolean] = ACTIONS(2546), + [anon_sym_string] = ACTIONS(2546), + [anon_sym_symbol] = ACTIONS(2546), }, [299] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2485), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3263), + [sym_primary_expression] = STATE(2574), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5445), - [sym_generic_type] = STATE(4018), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2706), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2684), + [anon_sym_export] = ACTIONS(2686), + [anon_sym_type] = ACTIONS(2686), + [anon_sym_namespace] = ACTIONS(2688), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2690), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -47992,682 +48011,583 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2441), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_readonly] = ACTIONS(2461), - [anon_sym_get] = ACTIONS(2461), - [anon_sym_set] = ACTIONS(2461), - [anon_sym_declare] = ACTIONS(2461), - [anon_sym_public] = ACTIONS(2461), - [anon_sym_private] = ACTIONS(2461), - [anon_sym_protected] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_any] = ACTIONS(2461), - [anon_sym_number] = ACTIONS(2461), - [anon_sym_boolean] = ACTIONS(2461), - [anon_sym_string] = ACTIONS(2461), - [anon_sym_symbol] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2686), + [anon_sym_readonly] = ACTIONS(2686), + [anon_sym_get] = ACTIONS(2686), + [anon_sym_set] = ACTIONS(2686), + [anon_sym_declare] = ACTIONS(2686), + [anon_sym_public] = ACTIONS(2686), + [anon_sym_private] = ACTIONS(2686), + [anon_sym_protected] = ACTIONS(2686), + [anon_sym_module] = ACTIONS(2686), + [anon_sym_any] = ACTIONS(2686), + [anon_sym_number] = ACTIONS(2686), + [anon_sym_boolean] = ACTIONS(2686), + [anon_sym_string] = ACTIONS(2686), + [anon_sym_symbol] = ACTIONS(2686), }, [300] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(3058), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_nested_identifier] = STATE(5840), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_nested_type_identifier] = STATE(4802), - [sym_generic_type] = STATE(5110), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2708), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, [301] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2516), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2431), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(2437), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_readonly] = ACTIONS(2433), + [anon_sym_get] = ACTIONS(2433), + [anon_sym_set] = ACTIONS(2433), + [anon_sym_declare] = ACTIONS(2433), + [anon_sym_public] = ACTIONS(2433), + [anon_sym_private] = ACTIONS(2433), + [anon_sym_protected] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_any] = ACTIONS(2433), + [anon_sym_number] = ACTIONS(2433), + [anon_sym_boolean] = ACTIONS(2433), + [anon_sym_string] = ACTIONS(2433), + [anon_sym_symbol] = ACTIONS(2433), }, [302] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2625), - [sym_primary_expression] = STATE(3539), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2888), + [sym_primary_expression] = STATE(2206), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2712), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5603), + [sym_generic_type] = STATE(3938), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(2700), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), }, [303] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2515), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [304] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2557), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2244), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2716), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5470), + [sym_generic_type] = STATE(2356), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2702), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2672), + [anon_sym_async] = ACTIONS(2437), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_readonly] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_declare] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_protected] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(2668), - [anon_sym_any] = ACTIONS(2668), - [anon_sym_number] = ACTIONS(2668), - [anon_sym_boolean] = ACTIONS(2668), - [anon_sym_string] = ACTIONS(2668), - [anon_sym_symbol] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_readonly] = ACTIONS(2433), + [anon_sym_get] = ACTIONS(2433), + [anon_sym_set] = ACTIONS(2433), + [anon_sym_declare] = ACTIONS(2433), + [anon_sym_public] = ACTIONS(2433), + [anon_sym_private] = ACTIONS(2433), + [anon_sym_protected] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_any] = ACTIONS(2433), + [anon_sym_number] = ACTIONS(2433), + [anon_sym_boolean] = ACTIONS(2433), + [anon_sym_string] = ACTIONS(2433), + [anon_sym_symbol] = ACTIONS(2433), }, - [305] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2276), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [304] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2244), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2716), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5470), + [sym_generic_type] = STATE(2356), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2704), + [anon_sym_export] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2672), + [anon_sym_async] = ACTIONS(2710), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_readonly] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_declare] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_protected] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(2668), - [anon_sym_any] = ACTIONS(2668), - [anon_sym_number] = ACTIONS(2668), - [anon_sym_boolean] = ACTIONS(2668), - [anon_sym_string] = ACTIONS(2668), - [anon_sym_symbol] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_readonly] = ACTIONS(2706), + [anon_sym_get] = ACTIONS(2706), + [anon_sym_set] = ACTIONS(2706), + [anon_sym_declare] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2706), + [anon_sym_private] = ACTIONS(2706), + [anon_sym_protected] = ACTIONS(2706), + [anon_sym_module] = ACTIONS(2706), + [anon_sym_any] = ACTIONS(2706), + [anon_sym_number] = ACTIONS(2706), + [anon_sym_boolean] = ACTIONS(2706), + [anon_sym_string] = ACTIONS(2706), + [anon_sym_symbol] = ACTIONS(2706), }, - [306] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2478), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_nested_identifier] = STATE(6070), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [305] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(3041), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5591), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_nested_type_identifier] = STATE(5385), - [sym_generic_type] = STATE(3917), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2718), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(2712), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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), @@ -48678,88 +48598,285 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + [sym__automatic_semicolon] = ACTIONS(2712), + }, + [306] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1498), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2877), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_nested_identifier] = STATE(6142), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1498), + [sym_subscript_expression] = STATE(1498), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1498), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_nested_type_identifier] = STATE(5629), + [sym_generic_type] = STATE(3023), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(2714), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_namespace] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_readonly] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_declare] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_protected] = ACTIONS(2556), + [anon_sym_module] = ACTIONS(2556), + [anon_sym_any] = ACTIONS(2556), + [anon_sym_number] = ACTIONS(2556), + [anon_sym_boolean] = ACTIONS(2556), + [anon_sym_string] = ACTIONS(2556), + [anon_sym_symbol] = ACTIONS(2556), }, [307] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3130), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(6110), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2447), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [308] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3264), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6050), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2720), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2718), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -48769,7 +48886,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -48777,86 +48894,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [308] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3153), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5751), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [309] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3237), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6066), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2722), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2720), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -48866,7 +48983,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -48874,86 +48991,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [309] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3074), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5858), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [310] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5744), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_RPAREN] = ACTIONS(2724), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_RPAREN] = ACTIONS(2722), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -48963,7 +49080,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -48971,1338 +49088,1146 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [310] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2194), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [311] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2030), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2831), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2030), + [sym_subscript_expression] = STATE(2030), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(2030), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2724), + [anon_sym_export] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_namespace] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1770), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_get] = ACTIONS(2650), + [anon_sym_set] = ACTIONS(2650), + [anon_sym_declare] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_protected] = ACTIONS(2650), + [anon_sym_module] = ACTIONS(2650), + [anon_sym_any] = ACTIONS(2650), + [anon_sym_number] = ACTIONS(2650), + [anon_sym_boolean] = ACTIONS(2650), + [anon_sym_string] = ACTIONS(2650), + [anon_sym_symbol] = ACTIONS(2650), + }, + [312] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2539), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3198), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, - [311] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [313] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2802), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2728), - [anon_sym_export] = ACTIONS(2560), - [anon_sym_type] = ACTIONS(2560), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_readonly] = ACTIONS(2560), - [anon_sym_get] = ACTIONS(2560), - [anon_sym_set] = ACTIONS(2560), - [anon_sym_declare] = ACTIONS(2560), - [anon_sym_public] = ACTIONS(2560), - [anon_sym_private] = ACTIONS(2560), - [anon_sym_protected] = ACTIONS(2560), - [anon_sym_module] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2560), - [anon_sym_number] = ACTIONS(2560), - [anon_sym_boolean] = ACTIONS(2560), - [anon_sym_string] = ACTIONS(2560), - [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [312] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3514), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), + [314] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2030), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2831), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(3478), [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), + [sym_array] = STATE(3478), [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2030), + [sym_subscript_expression] = STATE(2030), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2030), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2724), + [anon_sym_export] = ACTIONS(2650), + [anon_sym_type] = ACTIONS(2650), + [anon_sym_namespace] = ACTIONS(2652), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(2654), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(2658), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(2650), + [anon_sym_readonly] = ACTIONS(2650), + [anon_sym_get] = ACTIONS(2650), + [anon_sym_set] = ACTIONS(2650), + [anon_sym_declare] = ACTIONS(2650), + [anon_sym_public] = ACTIONS(2650), + [anon_sym_private] = ACTIONS(2650), + [anon_sym_protected] = ACTIONS(2650), + [anon_sym_module] = ACTIONS(2650), + [anon_sym_any] = ACTIONS(2650), + [anon_sym_number] = ACTIONS(2650), + [anon_sym_boolean] = ACTIONS(2650), + [anon_sym_string] = ACTIONS(2650), + [anon_sym_symbol] = ACTIONS(2650), }, - [313] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3436), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [315] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2870), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2553), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, - [314] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3424), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2669), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), + [316] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1498), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2779), [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), + [sym_array] = STATE(2779), [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1498), + [sym_subscript_expression] = STATE(1498), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1498), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(2734), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(2524), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), + }, + [317] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2868), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2554), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, - [315] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3413), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), + [318] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1498), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2779), [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), + [sym_array] = STATE(2779), [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1498), + [sym_subscript_expression] = STATE(1498), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [316] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(2913), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2387), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1498), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [317] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [sym_identifier] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_namespace] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1652), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(2522), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), - }, - [318] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2989), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(2524), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_readonly] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_declare] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_protected] = ACTIONS(2556), + [anon_sym_module] = ACTIONS(2556), + [anon_sym_any] = ACTIONS(2556), + [anon_sym_number] = ACTIONS(2556), + [anon_sym_boolean] = ACTIONS(2556), + [anon_sym_string] = ACTIONS(2556), + [anon_sym_symbol] = ACTIONS(2556), }, [319] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2969), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3212), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6089), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [320] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(3017), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, [321] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2893), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2535), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [322] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2889), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), - }, - [323] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2589), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2746), - [anon_sym_export] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(1054), [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -50313,1148 +50238,1244 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2441), + [sym_undefined] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [323] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1498), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1498), + [sym_subscript_expression] = STATE(1498), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1498), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(2738), + [anon_sym_export] = ACTIONS(2556), + [anon_sym_type] = ACTIONS(2556), + [anon_sym_namespace] = ACTIONS(2558), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(2560), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(2524), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2642), - [anon_sym_set] = ACTIONS(2642), - [anon_sym_declare] = ACTIONS(2642), - [anon_sym_public] = ACTIONS(2642), - [anon_sym_private] = ACTIONS(2642), - [anon_sym_protected] = ACTIONS(2642), - [anon_sym_module] = ACTIONS(2642), - [anon_sym_any] = ACTIONS(2642), - [anon_sym_number] = ACTIONS(2642), - [anon_sym_boolean] = ACTIONS(2642), - [anon_sym_string] = ACTIONS(2642), - [anon_sym_symbol] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(2556), + [anon_sym_readonly] = ACTIONS(2556), + [anon_sym_get] = ACTIONS(2556), + [anon_sym_set] = ACTIONS(2556), + [anon_sym_declare] = ACTIONS(2556), + [anon_sym_public] = ACTIONS(2556), + [anon_sym_private] = ACTIONS(2556), + [anon_sym_protected] = ACTIONS(2556), + [anon_sym_module] = ACTIONS(2556), + [anon_sym_any] = ACTIONS(2556), + [anon_sym_number] = ACTIONS(2556), + [anon_sym_boolean] = ACTIONS(2556), + [anon_sym_string] = ACTIONS(2556), + [anon_sym_symbol] = ACTIONS(2556), }, [324] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3421), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2867), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [325] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2748), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_readonly] = ACTIONS(2487), - [anon_sym_get] = ACTIONS(2487), - [anon_sym_set] = ACTIONS(2487), - [anon_sym_declare] = ACTIONS(2487), - [anon_sym_public] = ACTIONS(2487), - [anon_sym_private] = ACTIONS(2487), - [anon_sym_protected] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_any] = ACTIONS(2487), - [anon_sym_number] = ACTIONS(2487), - [anon_sym_boolean] = ACTIONS(2487), - [anon_sym_string] = ACTIONS(2487), - [anon_sym_symbol] = ACTIONS(2487), - }, - [325] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(2859), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), }, [326] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(2788), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2422), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2240), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, [327] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(3037), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2386), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [328] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(3052), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2389), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [329] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(3056), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2391), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [330] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3188), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5966), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [331] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [328] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2254), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2728), - [anon_sym_export] = ACTIONS(2560), - [anon_sym_type] = ACTIONS(2560), - [anon_sym_namespace] = ACTIONS(2562), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(1054), [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [329] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2752), + [anon_sym_export] = ACTIONS(2754), + [anon_sym_type] = ACTIONS(2754), + [anon_sym_namespace] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2564), + [anon_sym_async] = ACTIONS(2758), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2754), + [anon_sym_readonly] = ACTIONS(2754), + [anon_sym_get] = ACTIONS(2754), + [anon_sym_set] = ACTIONS(2754), + [anon_sym_declare] = ACTIONS(2754), + [anon_sym_public] = ACTIONS(2754), + [anon_sym_private] = ACTIONS(2754), + [anon_sym_protected] = ACTIONS(2754), + [anon_sym_module] = ACTIONS(2754), + [anon_sym_any] = ACTIONS(2754), + [anon_sym_number] = ACTIONS(2754), + [anon_sym_boolean] = ACTIONS(2754), + [anon_sym_string] = ACTIONS(2754), + [anon_sym_symbol] = ACTIONS(2754), + }, + [330] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2873), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2552), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [331] = { + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3454), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2872), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2560), - [anon_sym_readonly] = ACTIONS(2560), - [anon_sym_get] = ACTIONS(2560), - [anon_sym_set] = ACTIONS(2560), - [anon_sym_declare] = ACTIONS(2560), - [anon_sym_public] = ACTIONS(2560), - [anon_sym_private] = ACTIONS(2560), - [anon_sym_protected] = ACTIONS(2560), - [anon_sym_module] = ACTIONS(2560), - [anon_sym_any] = ACTIONS(2560), - [anon_sym_number] = ACTIONS(2560), - [anon_sym_boolean] = ACTIONS(2560), - [anon_sym_string] = ACTIONS(2560), - [anon_sym_symbol] = ACTIONS(2560), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, [332] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(3033), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2760), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_namespace] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(2608), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_readonly] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_declare] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_module] = ACTIONS(2604), + [anon_sym_any] = ACTIONS(2604), + [anon_sym_number] = ACTIONS(2604), + [anon_sym_boolean] = ACTIONS(2604), + [anon_sym_string] = ACTIONS(2604), + [anon_sym_symbol] = ACTIONS(2604), }, [333] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2058), - [sym_expression] = STATE(3595), - [sym_primary_expression] = STATE(2996), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2058), - [sym_subscript_expression] = STATE(2058), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2531), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2058), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2584), - [anon_sym_type] = ACTIONS(2584), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1784), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(1054), [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(2592), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_readonly] = ACTIONS(2584), - [anon_sym_get] = ACTIONS(2584), - [anon_sym_set] = ACTIONS(2584), - [anon_sym_declare] = ACTIONS(2584), - [anon_sym_public] = ACTIONS(2584), - [anon_sym_private] = ACTIONS(2584), - [anon_sym_protected] = ACTIONS(2584), - [anon_sym_module] = ACTIONS(2584), - [anon_sym_any] = ACTIONS(2584), - [anon_sym_number] = ACTIONS(2584), - [anon_sym_boolean] = ACTIONS(2584), - [anon_sym_string] = ACTIONS(2584), - [anon_sym_symbol] = ACTIONS(2584), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, [334] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1535), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2508), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1535), - [sym_subscript_expression] = STATE(1535), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2534), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1535), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2754), - [anon_sym_export] = ACTIONS(2690), - [anon_sym_type] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1670), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(1054), [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(2694), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(2505), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_readonly] = ACTIONS(2690), - [anon_sym_get] = ACTIONS(2690), - [anon_sym_set] = ACTIONS(2690), - [anon_sym_declare] = ACTIONS(2690), - [anon_sym_public] = ACTIONS(2690), - [anon_sym_private] = ACTIONS(2690), - [anon_sym_protected] = ACTIONS(2690), - [anon_sym_module] = ACTIONS(2690), - [anon_sym_any] = ACTIONS(2690), - [anon_sym_number] = ACTIONS(2690), - [anon_sym_boolean] = ACTIONS(2690), - [anon_sym_string] = ACTIONS(2690), - [anon_sym_symbol] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, [335] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2496), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2231), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2539), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -51465,92 +51486,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, [336] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2461), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2342), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2589), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -51561,87 +51582,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, [337] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3154), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(6018), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3163), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6012), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -51651,7 +51672,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -51659,565 +51680,277 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [338] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2466), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2177), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [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(968), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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), - }, - [339] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2058), - [sym_expression] = STATE(3595), - [sym_primary_expression] = STATE(2996), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2058), - [sym_subscript_expression] = STATE(2058), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2058), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2760), - [anon_sym_export] = ACTIONS(2762), - [anon_sym_type] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1786), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2764), + [anon_sym_export] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(2766), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(2590), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(2592), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2762), - [anon_sym_get] = ACTIONS(2762), - [anon_sym_set] = ACTIONS(2762), - [anon_sym_declare] = ACTIONS(2762), - [anon_sym_public] = ACTIONS(2762), - [anon_sym_private] = ACTIONS(2762), - [anon_sym_protected] = ACTIONS(2762), - [anon_sym_module] = ACTIONS(2762), - [anon_sym_any] = ACTIONS(2762), - [anon_sym_number] = ACTIONS(2762), - [anon_sym_boolean] = ACTIONS(2762), - [anon_sym_string] = ACTIONS(2762), - [anon_sym_symbol] = ACTIONS(2762), - }, - [340] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2560), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2180), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [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(968), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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), - }, - [341] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2562), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2182), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(968), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(2706), + [anon_sym_readonly] = ACTIONS(2706), + [anon_sym_get] = ACTIONS(2706), + [anon_sym_set] = ACTIONS(2706), + [anon_sym_declare] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2706), + [anon_sym_private] = ACTIONS(2706), + [anon_sym_protected] = ACTIONS(2706), + [anon_sym_module] = ACTIONS(2706), + [anon_sym_any] = ACTIONS(2706), + [anon_sym_number] = ACTIONS(2706), + [anon_sym_boolean] = ACTIONS(2706), + [anon_sym_string] = ACTIONS(2706), + [anon_sym_symbol] = ACTIONS(2706), }, - [342] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2563), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2185), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [339] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(4942), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(968), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [343] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3129), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(6019), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [340] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2717), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5967), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -52227,7 +51960,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -52235,1429 +51968,2197 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [344] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3292), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [341] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2466), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [345] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3288), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [342] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [346] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3276), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [343] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3156), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [347] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3273), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [344] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2030), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2831), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2030), + [sym_subscript_expression] = STATE(2030), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(2030), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2766), + [anon_sym_export] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_namespace] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_readonly] = ACTIONS(2768), + [anon_sym_get] = ACTIONS(2768), + [anon_sym_set] = ACTIONS(2768), + [anon_sym_declare] = ACTIONS(2768), + [anon_sym_public] = ACTIONS(2768), + [anon_sym_private] = ACTIONS(2768), + [anon_sym_protected] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_any] = ACTIONS(2768), + [anon_sym_number] = ACTIONS(2768), + [anon_sym_boolean] = ACTIONS(2768), + [anon_sym_string] = ACTIONS(2768), + [anon_sym_symbol] = ACTIONS(2768), + }, + [345] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [348] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [346] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3190), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2742), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [349] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3272), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [347] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3196), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [350] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3271), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [348] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3199), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [351] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [349] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3200), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4702), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5476), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [352] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [350] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4752), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5486), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2752), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + }, + [351] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2933), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2526), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [352] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1498), + [sym_expression] = STATE(3566), + [sym_primary_expression] = STATE(2570), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1498), + [sym_subscript_expression] = STATE(1498), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1498), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(2734), + [anon_sym_export] = ACTIONS(2516), + [anon_sym_type] = ACTIONS(2516), + [anon_sym_namespace] = ACTIONS(2518), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_DOT] = ACTIONS(2736), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(2520), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(2522), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(2524), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(2516), + [anon_sym_readonly] = ACTIONS(2516), + [anon_sym_get] = ACTIONS(2516), + [anon_sym_set] = ACTIONS(2516), + [anon_sym_declare] = ACTIONS(2516), + [anon_sym_public] = ACTIONS(2516), + [anon_sym_private] = ACTIONS(2516), + [anon_sym_protected] = ACTIONS(2516), + [anon_sym_module] = ACTIONS(2516), + [anon_sym_any] = ACTIONS(2516), + [anon_sym_number] = ACTIONS(2516), + [anon_sym_boolean] = ACTIONS(2516), + [anon_sym_string] = ACTIONS(2516), + [anon_sym_symbol] = ACTIONS(2516), }, [353] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2749), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5969), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3433), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2869), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [354] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3174), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), + }, + [355] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2868), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2393), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, - [354] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [356] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2870), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2392), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [357] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2873), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [358] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4843), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5409), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2776), + [anon_sym_export] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2644), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_readonly] = ACTIONS(2640), + [anon_sym_get] = ACTIONS(2640), + [anon_sym_set] = ACTIONS(2640), + [anon_sym_declare] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_protected] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_any] = ACTIONS(2640), + [anon_sym_number] = ACTIONS(2640), + [anon_sym_boolean] = ACTIONS(2640), + [anon_sym_string] = ACTIONS(2640), + [anon_sym_symbol] = ACTIONS(2640), }, - [355] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2496), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), + [359] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2933), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, - [356] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3187), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [360] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2726), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [357] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2461), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), + [361] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2948), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2381), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, - [358] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3144), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5710), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [362] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2030), + [sym_expression] = STATE(3586), + [sym_primary_expression] = STATE(2831), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2030), + [sym_subscript_expression] = STATE(2030), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2030), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(2766), + [anon_sym_export] = ACTIONS(2768), + [anon_sym_type] = ACTIONS(2768), + [anon_sym_namespace] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(2772), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(2656), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(2658), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2768), + [anon_sym_readonly] = ACTIONS(2768), + [anon_sym_get] = ACTIONS(2768), + [anon_sym_set] = ACTIONS(2768), + [anon_sym_declare] = ACTIONS(2768), + [anon_sym_public] = ACTIONS(2768), + [anon_sym_private] = ACTIONS(2768), + [anon_sym_protected] = ACTIONS(2768), + [anon_sym_module] = ACTIONS(2768), + [anon_sym_any] = ACTIONS(2768), + [anon_sym_number] = ACTIONS(2768), + [anon_sym_boolean] = ACTIONS(2768), + [anon_sym_string] = ACTIONS(2768), + [anon_sym_symbol] = ACTIONS(2768), + }, + [363] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2596), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2730), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -53667,7 +54168,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -53675,282 +54176,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - }, - [359] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2466), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2991), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), - }, - [360] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2560), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2984), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [361] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2562), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2983), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [364] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2422), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2436), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -53961,92 +54270,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(926), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [362] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2563), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2981), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [365] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5595), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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), @@ -54057,279 +54366,183 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(926), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [363] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2191), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [366] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), - }, - [364] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2746), - [anon_sym_export] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [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(2441), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2642), - [anon_sym_set] = ACTIONS(2642), - [anon_sym_declare] = ACTIONS(2642), - [anon_sym_public] = ACTIONS(2642), - [anon_sym_private] = ACTIONS(2642), - [anon_sym_protected] = ACTIONS(2642), - [anon_sym_module] = ACTIONS(2642), - [anon_sym_any] = ACTIONS(2642), - [anon_sym_number] = ACTIONS(2642), - [anon_sym_boolean] = ACTIONS(2642), - [anon_sym_string] = ACTIONS(2642), - [anon_sym_symbol] = ACTIONS(2642), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [365] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3152), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5749), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [367] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2592), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2730), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -54339,7 +54552,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -54347,378 +54560,378 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [366] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [368] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2770), - [anon_sym_export] = ACTIONS(2425), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2776), + [anon_sym_export] = ACTIONS(2640), + [anon_sym_type] = ACTIONS(2640), + [anon_sym_namespace] = ACTIONS(2642), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2429), + [anon_sym_async] = ACTIONS(2644), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_readonly] = ACTIONS(2425), - [anon_sym_get] = ACTIONS(2425), - [anon_sym_set] = ACTIONS(2425), - [anon_sym_declare] = ACTIONS(2425), - [anon_sym_public] = ACTIONS(2425), - [anon_sym_private] = ACTIONS(2425), - [anon_sym_protected] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_any] = ACTIONS(2425), - [anon_sym_number] = ACTIONS(2425), - [anon_sym_boolean] = ACTIONS(2425), - [anon_sym_string] = ACTIONS(2425), - [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(2640), + [anon_sym_readonly] = ACTIONS(2640), + [anon_sym_get] = ACTIONS(2640), + [anon_sym_set] = ACTIONS(2640), + [anon_sym_declare] = ACTIONS(2640), + [anon_sym_public] = ACTIONS(2640), + [anon_sym_private] = ACTIONS(2640), + [anon_sym_protected] = ACTIONS(2640), + [anon_sym_module] = ACTIONS(2640), + [anon_sym_any] = ACTIONS(2640), + [anon_sym_number] = ACTIONS(2640), + [anon_sym_boolean] = ACTIONS(2640), + [anon_sym_string] = ACTIONS(2640), + [anon_sym_symbol] = ACTIONS(2640), }, - [367] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2563), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2509), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [369] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2764), + [anon_sym_export] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(2710), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1478), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_readonly] = ACTIONS(2706), + [anon_sym_get] = ACTIONS(2706), + [anon_sym_set] = ACTIONS(2706), + [anon_sym_declare] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2706), + [anon_sym_private] = ACTIONS(2706), + [anon_sym_protected] = ACTIONS(2706), + [anon_sym_module] = ACTIONS(2706), + [anon_sym_any] = ACTIONS(2706), + [anon_sym_number] = ACTIONS(2706), + [anon_sym_boolean] = ACTIONS(2706), + [anon_sym_string] = ACTIONS(2706), + [anon_sym_symbol] = ACTIONS(2706), }, - [368] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2562), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2510), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [370] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2778), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_namespace] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(2496), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1478), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_readonly] = 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), }, - [369] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2560), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2511), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [371] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2589), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2924), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -54729,188 +54942,284 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [370] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3118), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5785), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [372] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2783), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [371] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2466), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2522), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [373] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2784), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1132), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1124), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1136), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), + }, + [374] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2422), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2918), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -54921,380 +55230,380 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [372] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2220), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [375] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2785), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [373] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2226), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [376] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3071), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6120), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [374] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2227), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [377] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2907), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [375] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2461), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2539), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [378] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2457), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -55305,92 +55614,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [376] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [379] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2531), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2899), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -55401,764 +55710,668 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2441), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [377] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2229), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [380] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2534), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2896), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [378] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [381] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2539), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2895), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4787), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5634), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2744), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [379] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [382] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2577), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2756), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [380] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2624), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [383] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2778), + [anon_sym_export] = ACTIONS(2492), + [anon_sym_type] = ACTIONS(2492), + [anon_sym_namespace] = ACTIONS(2494), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(2496), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(2492), + [anon_sym_readonly] = 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), }, - [381] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2631), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [384] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), }, - [382] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2642), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [385] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4619), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5562), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), }, - [383] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3430), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2681), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), + [386] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), + [sym_array] = STATE(2413), [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [384] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2496), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(2772), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2782), + [anon_sym_export] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_namespace] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2790), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -56169,3543 +56382,3639 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_readonly] = ACTIONS(2784), + [anon_sym_get] = ACTIONS(2784), + [anon_sym_set] = ACTIONS(2784), + [anon_sym_declare] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_protected] = ACTIONS(2784), + [anon_sym_module] = ACTIONS(2784), + [anon_sym_any] = ACTIONS(2784), + [anon_sym_number] = ACTIONS(2784), + [anon_sym_boolean] = ACTIONS(2784), + [anon_sym_string] = ACTIONS(2784), + [anon_sym_symbol] = ACTIONS(2784), }, - [385] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2646), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [387] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3070), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6015), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [386] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [388] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2978), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [387] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [389] = { + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3509), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2947), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [390] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2977), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [388] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2650), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [391] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2976), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [389] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3454), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2684), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), + [392] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), + [sym_array] = STATE(2172), [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [390] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2776), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), }, - [391] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [393] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2282), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [392] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [394] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2288), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2776), - [anon_sym_export] = ACTIONS(2445), - [anon_sym_type] = ACTIONS(2445), - [anon_sym_namespace] = ACTIONS(2447), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2449), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1440), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), + }, + [395] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2792), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2445), - [anon_sym_readonly] = ACTIONS(2445), - [anon_sym_get] = ACTIONS(2445), - [anon_sym_set] = ACTIONS(2445), - [anon_sym_declare] = ACTIONS(2445), - [anon_sym_public] = ACTIONS(2445), - [anon_sym_private] = ACTIONS(2445), - [anon_sym_protected] = ACTIONS(2445), - [anon_sym_module] = ACTIONS(2445), - [anon_sym_any] = ACTIONS(2445), - [anon_sym_number] = ACTIONS(2445), - [anon_sym_boolean] = ACTIONS(2445), - [anon_sym_string] = ACTIONS(2445), - [anon_sym_symbol] = ACTIONS(2445), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), }, - [393] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2752), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [396] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3498), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_mapped_type_clause] = STATE(6143), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2794), + [anon_sym_export] = ACTIONS(2796), + [anon_sym_type] = ACTIONS(2796), + [anon_sym_namespace] = ACTIONS(2798), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(2800), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), - }, - [394] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1535), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2508), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1535), - [sym_subscript_expression] = STATE(1535), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1535), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2780), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(2505), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(2796), + [anon_sym_readonly] = ACTIONS(2796), + [anon_sym_get] = ACTIONS(2796), + [anon_sym_set] = ACTIONS(2796), + [anon_sym_declare] = ACTIONS(2796), + [anon_sym_public] = ACTIONS(2796), + [anon_sym_private] = ACTIONS(2796), + [anon_sym_protected] = ACTIONS(2796), + [anon_sym_module] = ACTIONS(2796), + [anon_sym_any] = ACTIONS(2796), + [anon_sym_number] = ACTIONS(2796), + [anon_sym_boolean] = ACTIONS(2796), + [anon_sym_string] = ACTIONS(2796), + [anon_sym_symbol] = ACTIONS(2796), }, - [395] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [397] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2306), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2748), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_type] = ACTIONS(2487), - [anon_sym_namespace] = ACTIONS(2489), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2491), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2487), - [anon_sym_readonly] = ACTIONS(2487), - [anon_sym_get] = ACTIONS(2487), - [anon_sym_set] = ACTIONS(2487), - [anon_sym_declare] = ACTIONS(2487), - [anon_sym_public] = ACTIONS(2487), - [anon_sym_private] = ACTIONS(2487), - [anon_sym_protected] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_any] = ACTIONS(2487), - [anon_sym_number] = ACTIONS(2487), - [anon_sym_boolean] = ACTIONS(2487), - [anon_sym_string] = ACTIONS(2487), - [anon_sym_symbol] = ACTIONS(2487), - }, - [396] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(3056), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2551), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [397] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(3052), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2550), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, [398] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(3037), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2549), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [399] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(2788), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2523), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [400] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(2859), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2504), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [401] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2738), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2309), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [402] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2721), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [399] = { + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3482), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2932), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [400] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2789), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [403] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1535), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2508), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1535), - [sym_subscript_expression] = STATE(1535), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [401] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2531), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2408), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1535), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2780), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_type] = ACTIONS(2497), - [anon_sym_namespace] = ACTIONS(2499), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(2501), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(2505), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2497), - [anon_sym_readonly] = ACTIONS(2497), - [anon_sym_get] = ACTIONS(2497), - [anon_sym_set] = ACTIONS(2497), - [anon_sym_declare] = ACTIONS(2497), - [anon_sym_public] = ACTIONS(2497), - [anon_sym_private] = ACTIONS(2497), - [anon_sym_protected] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_any] = ACTIONS(2497), - [anon_sym_number] = ACTIONS(2497), - [anon_sym_boolean] = ACTIONS(2497), - [anon_sym_string] = ACTIONS(2497), - [anon_sym_symbol] = ACTIONS(2497), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [404] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3345), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [402] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2310), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [405] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3269), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [403] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2311), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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), - }, - [406] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), + }, + [404] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2534), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2468), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [405] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4797), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5654), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), }, - [407] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3267), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [406] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_type] = ACTIONS(2425), + [anon_sym_namespace] = ACTIONS(2427), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(2429), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2425), + [anon_sym_readonly] = ACTIONS(2425), + [anon_sym_get] = ACTIONS(2425), + [anon_sym_set] = ACTIONS(2425), + [anon_sym_declare] = ACTIONS(2425), + [anon_sym_public] = ACTIONS(2425), + [anon_sym_private] = ACTIONS(2425), + [anon_sym_protected] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_any] = ACTIONS(2425), + [anon_sym_number] = ACTIONS(2425), + [anon_sym_boolean] = ACTIONS(2425), + [anon_sym_string] = ACTIONS(2425), + [anon_sym_symbol] = ACTIONS(2425), + }, + [407] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2539), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(2762), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, [408] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3259), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2974), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1844), [anon_sym_PLUS] = ACTIONS(1842), [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, [409] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3344), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2802), + [anon_sym_export] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(2808), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(2804), + [anon_sym_readonly] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2804), + [anon_sym_set] = ACTIONS(2804), + [anon_sym_declare] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2804), + [anon_sym_any] = ACTIONS(2804), + [anon_sym_number] = ACTIONS(2804), + [anon_sym_boolean] = ACTIONS(2804), + [anon_sym_string] = ACTIONS(2804), + [anon_sym_symbol] = ACTIONS(2804), }, [410] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2694), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2736), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [411] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3223), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2798), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, [412] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2693), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(2778), - [anon_sym_typeof] = ACTIONS(1032), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2810), + [anon_sym_export] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [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(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_readonly] = 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), }, [413] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3070), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(3017), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2378), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1172), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, [414] = { - [sym_import] = STATE(2967), - [sym_statement_block] = STATE(2913), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2469), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(2734), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2812), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), }, [415] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3343), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3149), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, [416] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2589), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_readonly] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_declare] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_protected] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(2668), - [anon_sym_any] = ACTIONS(2668), - [anon_sym_number] = ACTIONS(2668), - [anon_sym_boolean] = ACTIONS(2668), - [anon_sym_string] = ACTIONS(2668), - [anon_sym_symbol] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [417] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3421), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2668), - [anon_sym_type] = ACTIONS(2668), - [anon_sym_namespace] = ACTIONS(2670), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2672), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2668), - [anon_sym_readonly] = ACTIONS(2668), - [anon_sym_get] = ACTIONS(2668), - [anon_sym_set] = ACTIONS(2668), - [anon_sym_declare] = ACTIONS(2668), - [anon_sym_public] = ACTIONS(2668), - [anon_sym_private] = ACTIONS(2668), - [anon_sym_protected] = ACTIONS(2668), - [anon_sym_module] = ACTIONS(2668), - [anon_sym_any] = ACTIONS(2668), - [anon_sym_number] = ACTIONS(2668), - [anon_sym_boolean] = ACTIONS(2668), - [anon_sym_string] = ACTIONS(2668), - [anon_sym_symbol] = ACTIONS(2668), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [418] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2920), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3433), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2626), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [419] = { + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3454), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2624), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [420] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2589), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3072), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + }, + [421] = { + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3468), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(3004), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [422] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3122), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [419] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2925), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [423] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3245), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6065), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - }, - [420] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2058), - [sym_expression] = STATE(3595), - [sym_primary_expression] = STATE(2996), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2058), - [sym_subscript_expression] = STATE(2058), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(2058), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2760), - [anon_sym_export] = ACTIONS(2762), - [anon_sym_type] = ACTIONS(2762), - [anon_sym_namespace] = ACTIONS(2764), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_DOT] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(2766), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(2592), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2762), - [anon_sym_readonly] = ACTIONS(2762), - [anon_sym_get] = ACTIONS(2762), - [anon_sym_set] = ACTIONS(2762), - [anon_sym_declare] = ACTIONS(2762), - [anon_sym_public] = ACTIONS(2762), - [anon_sym_private] = ACTIONS(2762), - [anon_sym_protected] = ACTIONS(2762), - [anon_sym_module] = ACTIONS(2762), - [anon_sym_any] = ACTIONS(2762), - [anon_sym_number] = ACTIONS(2762), - [anon_sym_boolean] = ACTIONS(2762), - [anon_sym_string] = ACTIONS(2762), - [anon_sym_symbol] = ACTIONS(2762), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [421] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3157), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5989), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [424] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3247), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6063), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -59715,7 +60024,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -59723,2293 +60032,1909 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - }, - [422] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3413), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(3059), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [423] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3424), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(3055), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [424] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3436), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(3049), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [425] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3336), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3250), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6062), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [426] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2926), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2761), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6123), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [427] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2929), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2702), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [428] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3514), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2782), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3482), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2621), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [429] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2950), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2698), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [430] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3430), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2858), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2422), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3115), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [431] = { - [sym_import] = STATE(3394), - [sym_statement_block] = STATE(3454), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2912), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2684), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2732), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1396), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [432] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2951), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2682), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [433] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2466), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2735), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - }, - [434] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2698), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [435] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2701), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [434] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2680), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), - }, - [436] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2496), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2659), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [437] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [435] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2814), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(2437), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_readonly] = ACTIONS(2433), + [anon_sym_get] = ACTIONS(2433), + [anon_sym_set] = ACTIONS(2433), + [anon_sym_declare] = ACTIONS(2433), + [anon_sym_public] = ACTIONS(2433), + [anon_sym_private] = ACTIONS(2433), + [anon_sym_protected] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_any] = ACTIONS(2433), + [anon_sym_number] = ACTIONS(2433), + [anon_sym_boolean] = ACTIONS(2433), + [anon_sym_string] = ACTIONS(2433), + [anon_sym_symbol] = ACTIONS(2433), }, - [438] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3323), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [436] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2814), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_type] = ACTIONS(2433), + [anon_sym_namespace] = ACTIONS(2435), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(2437), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2433), + [anon_sym_readonly] = ACTIONS(2433), + [anon_sym_get] = ACTIONS(2433), + [anon_sym_set] = ACTIONS(2433), + [anon_sym_declare] = ACTIONS(2433), + [anon_sym_public] = ACTIONS(2433), + [anon_sym_private] = ACTIONS(2433), + [anon_sym_protected] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_any] = ACTIONS(2433), + [anon_sym_number] = ACTIONS(2433), + [anon_sym_boolean] = ACTIONS(2433), + [anon_sym_string] = ACTIONS(2433), + [anon_sym_symbol] = ACTIONS(2433), + }, + [437] = { + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3509), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2610), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, - [439] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2713), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [438] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2692), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [440] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2506), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [439] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [441] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2556), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [440] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2788), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [442] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2500), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [441] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2962), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [443] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2461), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2751), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [442] = { + [sym_import] = STATE(2779), + [sym_statement_block] = STATE(2948), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2507), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(2732), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, - [444] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2715), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [443] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2631), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [445] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [444] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3124), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5818), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(2726), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -62019,7 +61944,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -62027,570 +61952,666 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), + }, + [445] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2646), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [446] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2716), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2958), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, [447] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2438), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5097), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2703), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [448] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2704), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(2816), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [449] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2717), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2752), + [anon_sym_export] = ACTIONS(2754), + [anon_sym_type] = ACTIONS(2754), + [anon_sym_namespace] = ACTIONS(2756), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(2758), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(2754), + [anon_sym_readonly] = ACTIONS(2754), + [anon_sym_get] = ACTIONS(2754), + [anon_sym_set] = ACTIONS(2754), + [anon_sym_declare] = ACTIONS(2754), + [anon_sym_public] = ACTIONS(2754), + [anon_sym_private] = ACTIONS(2754), + [anon_sym_protected] = ACTIONS(2754), + [anon_sym_module] = ACTIONS(2754), + [anon_sym_any] = ACTIONS(2754), + [anon_sym_number] = ACTIONS(2754), + [anon_sym_boolean] = ACTIONS(2754), + [anon_sym_string] = ACTIONS(2754), + [anon_sym_symbol] = ACTIONS(2754), }, [450] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2818), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(2405), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - }, - [451] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2784), - [anon_sym_export] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_readonly] = ACTIONS(2401), + [anon_sym_get] = ACTIONS(2401), + [anon_sym_set] = ACTIONS(2401), + [anon_sym_declare] = ACTIONS(2401), + [anon_sym_public] = ACTIONS(2401), + [anon_sym_private] = ACTIONS(2401), + [anon_sym_protected] = ACTIONS(2401), + [anon_sym_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), + }, + [451] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2792), + [anon_sym_export] = ACTIONS(2596), + [anon_sym_type] = ACTIONS(2596), + [anon_sym_namespace] = ACTIONS(2598), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2790), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2600), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -62601,938 +62622,938 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2441), + [sym_undefined] = ACTIONS(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_readonly] = ACTIONS(2786), - [anon_sym_get] = ACTIONS(2786), - [anon_sym_set] = ACTIONS(2786), - [anon_sym_declare] = ACTIONS(2786), - [anon_sym_public] = ACTIONS(2786), - [anon_sym_private] = ACTIONS(2786), - [anon_sym_protected] = ACTIONS(2786), - [anon_sym_module] = ACTIONS(2786), - [anon_sym_any] = ACTIONS(2786), - [anon_sym_number] = ACTIONS(2786), - [anon_sym_boolean] = ACTIONS(2786), - [anon_sym_string] = ACTIONS(2786), - [anon_sym_symbol] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2596), + [anon_sym_readonly] = ACTIONS(2596), + [anon_sym_get] = ACTIONS(2596), + [anon_sym_set] = ACTIONS(2596), + [anon_sym_declare] = ACTIONS(2596), + [anon_sym_public] = ACTIONS(2596), + [anon_sym_private] = ACTIONS(2596), + [anon_sym_protected] = ACTIONS(2596), + [anon_sym_module] = ACTIONS(2596), + [anon_sym_any] = ACTIONS(2596), + [anon_sym_number] = ACTIONS(2596), + [anon_sym_boolean] = ACTIONS(2596), + [anon_sym_string] = ACTIONS(2596), + [anon_sym_symbol] = ACTIONS(2596), }, [452] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3312), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_statement_block] = STATE(3468), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2613), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(2768), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2740), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [453] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2818), + [anon_sym_export] = ACTIONS(2401), + [anon_sym_type] = ACTIONS(2401), + [anon_sym_namespace] = ACTIONS(2403), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(2405), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - }, - [453] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2784), - [anon_sym_export] = ACTIONS(2786), - [anon_sym_type] = ACTIONS(2786), - [anon_sym_namespace] = ACTIONS(2788), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2790), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [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(2441), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2786), - [anon_sym_readonly] = ACTIONS(2786), - [anon_sym_get] = ACTIONS(2786), - [anon_sym_set] = ACTIONS(2786), - [anon_sym_declare] = ACTIONS(2786), - [anon_sym_public] = ACTIONS(2786), - [anon_sym_private] = ACTIONS(2786), - [anon_sym_protected] = ACTIONS(2786), - [anon_sym_module] = ACTIONS(2786), - [anon_sym_any] = ACTIONS(2786), - [anon_sym_number] = ACTIONS(2786), - [anon_sym_boolean] = ACTIONS(2786), - [anon_sym_string] = ACTIONS(2786), - [anon_sym_symbol] = ACTIONS(2786), + [anon_sym_static] = ACTIONS(2401), + [anon_sym_readonly] = ACTIONS(2401), + [anon_sym_get] = ACTIONS(2401), + [anon_sym_set] = ACTIONS(2401), + [anon_sym_declare] = ACTIONS(2401), + [anon_sym_public] = ACTIONS(2401), + [anon_sym_private] = ACTIONS(2401), + [anon_sym_protected] = ACTIONS(2401), + [anon_sym_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), }, [454] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2176), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2812), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3077), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(6035), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [455] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2352), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2786), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2840), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [456] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2333), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2810), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2846), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [457] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3206), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5713), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2847), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [458] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2295), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2820), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2849), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [459] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2285), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2824), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2850), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [460] = { - [sym_import] = STATE(2339), - [sym_statement_block] = STATE(2284), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2851), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(2726), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [461] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2998), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5508), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2479), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2688), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2728), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -63540,9 +63561,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -63563,570 +63584,570 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [462] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2812), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_type] = ACTIONS(2417), + [anon_sym_namespace] = ACTIONS(2419), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2421), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2417), + [anon_sym_readonly] = ACTIONS(2417), + [anon_sym_get] = ACTIONS(2417), + [anon_sym_set] = ACTIONS(2417), + [anon_sym_declare] = ACTIONS(2417), + [anon_sym_public] = ACTIONS(2417), + [anon_sym_private] = ACTIONS(2417), + [anon_sym_protected] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_any] = ACTIONS(2417), + [anon_sym_number] = ACTIONS(2417), + [anon_sym_boolean] = ACTIONS(2417), + [anon_sym_string] = ACTIONS(2417), + [anon_sym_symbol] = ACTIONS(2417), + }, + [463] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4636), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5516), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2738), - [anon_sym_type] = ACTIONS(2738), - [anon_sym_namespace] = ACTIONS(2740), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2744), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2738), - [anon_sym_readonly] = ACTIONS(2738), - [anon_sym_get] = ACTIONS(2738), - [anon_sym_set] = ACTIONS(2738), - [anon_sym_declare] = ACTIONS(2738), - [anon_sym_public] = ACTIONS(2738), - [anon_sym_private] = ACTIONS(2738), - [anon_sym_protected] = ACTIONS(2738), - [anon_sym_module] = ACTIONS(2738), - [anon_sym_any] = ACTIONS(2738), - [anon_sym_number] = ACTIONS(2738), - [anon_sym_boolean] = ACTIONS(2738), - [anon_sym_string] = ACTIONS(2738), - [anon_sym_symbol] = ACTIONS(2738), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [463] = { - [sym_import] = STATE(3394), + [464] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2479), [sym_parenthesized_expression] = STATE(2058), - [sym_expression] = STATE(3595), - [sym_primary_expression] = STATE(2996), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), + [sym_expression] = STATE(3146), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), [sym_member_expression] = STATE(2058), [sym_subscript_expression] = STATE(2058), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), + [sym_formal_parameters] = STATE(4737), [sym_non_null_expression] = STATE(2058), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(2750), - [anon_sym_export] = ACTIONS(2584), - [anon_sym_type] = ACTIONS(2584), - [anon_sym_namespace] = ACTIONS(2586), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_DOT] = ACTIONS(2752), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(2588), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(2590), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(2592), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2584), - [anon_sym_readonly] = ACTIONS(2584), - [anon_sym_get] = ACTIONS(2584), - [anon_sym_set] = ACTIONS(2584), - [anon_sym_declare] = ACTIONS(2584), - [anon_sym_public] = ACTIONS(2584), - [anon_sym_private] = ACTIONS(2584), - [anon_sym_protected] = ACTIONS(2584), - [anon_sym_module] = ACTIONS(2584), - [anon_sym_any] = ACTIONS(2584), - [anon_sym_number] = ACTIONS(2584), - [anon_sym_boolean] = ACTIONS(2584), - [anon_sym_string] = ACTIONS(2584), - [anon_sym_symbol] = ACTIONS(2584), - }, - [464] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1535), - [sym_expression] = STATE(3567), - [sym_primary_expression] = STATE(2508), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1535), - [sym_subscript_expression] = STATE(1535), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1535), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(2754), - [anon_sym_export] = ACTIONS(2690), - [anon_sym_type] = ACTIONS(2690), - [anon_sym_namespace] = ACTIONS(2692), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_DOT] = ACTIONS(2756), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(2694), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(2503), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(2505), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2690), - [anon_sym_readonly] = ACTIONS(2690), - [anon_sym_get] = ACTIONS(2690), - [anon_sym_set] = ACTIONS(2690), - [anon_sym_declare] = ACTIONS(2690), - [anon_sym_public] = ACTIONS(2690), - [anon_sym_private] = ACTIONS(2690), - [anon_sym_protected] = ACTIONS(2690), - [anon_sym_module] = ACTIONS(2690), - [anon_sym_any] = ACTIONS(2690), - [anon_sym_number] = ACTIONS(2690), - [anon_sym_boolean] = ACTIONS(2690), - [anon_sym_string] = ACTIONS(2690), - [anon_sym_symbol] = ACTIONS(2690), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [465] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3300), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5979), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2792), - [anon_sym_export] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2798), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_readonly] = ACTIONS(2794), - [anon_sym_get] = ACTIONS(2794), - [anon_sym_set] = ACTIONS(2794), - [anon_sym_declare] = ACTIONS(2794), - [anon_sym_public] = ACTIONS(2794), - [anon_sym_private] = ACTIONS(2794), - [anon_sym_protected] = ACTIONS(2794), - [anon_sym_module] = ACTIONS(2794), - [anon_sym_any] = ACTIONS(2794), - [anon_sym_number] = ACTIONS(2794), - [anon_sym_boolean] = ACTIONS(2794), - [anon_sym_string] = ACTIONS(2794), - [anon_sym_symbol] = ACTIONS(2794), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [466] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3219), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5865), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3350), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [467] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2466), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3140), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2422), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2768), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [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(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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), @@ -64137,284 +64158,284 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [468] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3349), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2800), - [anon_sym_export] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(2441), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_readonly] = ACTIONS(2802), - [anon_sym_get] = ACTIONS(2802), - [anon_sym_set] = ACTIONS(2802), - [anon_sym_declare] = ACTIONS(2802), - [anon_sym_public] = ACTIONS(2802), - [anon_sym_private] = ACTIONS(2802), - [anon_sym_protected] = ACTIONS(2802), - [anon_sym_module] = ACTIONS(2802), - [anon_sym_any] = ACTIONS(2802), - [anon_sym_number] = ACTIONS(2802), - [anon_sym_boolean] = ACTIONS(2802), - [anon_sym_string] = ACTIONS(2802), - [anon_sym_symbol] = ACTIONS(2802), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [469] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2560), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3189), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3348), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1442), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [470] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2808), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2820), + [anon_sym_export] = ACTIONS(2822), + [anon_sym_type] = ACTIONS(2822), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2826), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -64425,476 +64446,188 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2441), + [sym_undefined] = ACTIONS(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_readonly] = ACTIONS(2461), - [anon_sym_get] = ACTIONS(2461), - [anon_sym_set] = ACTIONS(2461), - [anon_sym_declare] = ACTIONS(2461), - [anon_sym_public] = ACTIONS(2461), - [anon_sym_private] = ACTIONS(2461), - [anon_sym_protected] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_any] = ACTIONS(2461), - [anon_sym_number] = ACTIONS(2461), - [anon_sym_boolean] = ACTIONS(2461), - [anon_sym_string] = ACTIONS(2461), - [anon_sym_symbol] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_readonly] = ACTIONS(2822), + [anon_sym_get] = ACTIONS(2822), + [anon_sym_set] = ACTIONS(2822), + [anon_sym_declare] = ACTIONS(2822), + [anon_sym_public] = ACTIONS(2822), + [anon_sym_private] = ACTIONS(2822), + [anon_sym_protected] = ACTIONS(2822), + [anon_sym_module] = ACTIONS(2822), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), }, [471] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3341), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2808), - [anon_sym_export] = ACTIONS(2461), - [anon_sym_type] = ACTIONS(2461), - [anon_sym_namespace] = ACTIONS(2463), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2465), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(2441), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2461), - [anon_sym_readonly] = ACTIONS(2461), - [anon_sym_get] = ACTIONS(2461), - [anon_sym_set] = ACTIONS(2461), - [anon_sym_declare] = ACTIONS(2461), - [anon_sym_public] = ACTIONS(2461), - [anon_sym_private] = ACTIONS(2461), - [anon_sym_protected] = ACTIONS(2461), - [anon_sym_module] = ACTIONS(2461), - [anon_sym_any] = ACTIONS(2461), - [anon_sym_number] = ACTIONS(2461), - [anon_sym_boolean] = ACTIONS(2461), - [anon_sym_string] = ACTIONS(2461), - [anon_sym_symbol] = ACTIONS(2461), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [472] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2562), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3192), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - }, - [473] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2845), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_sequence_expression] = STATE(5501), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - }, - [474] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2433), - [anon_sym_type] = ACTIONS(2433), - [anon_sym_namespace] = ACTIONS(2435), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2782), + [anon_sym_export] = ACTIONS(2784), + [anon_sym_type] = ACTIONS(2784), + [anon_sym_namespace] = ACTIONS(2786), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2437), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2790), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [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(2441), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2433), - [anon_sym_readonly] = ACTIONS(2433), - [anon_sym_get] = ACTIONS(2433), - [anon_sym_set] = ACTIONS(2433), - [anon_sym_declare] = ACTIONS(2433), - [anon_sym_public] = ACTIONS(2433), - [anon_sym_private] = ACTIONS(2433), - [anon_sym_protected] = ACTIONS(2433), - [anon_sym_module] = ACTIONS(2433), - [anon_sym_any] = ACTIONS(2433), - [anon_sym_number] = ACTIONS(2433), - [anon_sym_boolean] = ACTIONS(2433), - [anon_sym_string] = ACTIONS(2433), - [anon_sym_symbol] = ACTIONS(2433), - }, - [475] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2496), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3090), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -64905,1340 +64638,1244 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(2397), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(2784), + [anon_sym_readonly] = ACTIONS(2784), + [anon_sym_get] = ACTIONS(2784), + [anon_sym_set] = ACTIONS(2784), + [anon_sym_declare] = ACTIONS(2784), + [anon_sym_public] = ACTIONS(2784), + [anon_sym_private] = ACTIONS(2784), + [anon_sym_protected] = ACTIONS(2784), + [anon_sym_module] = ACTIONS(2784), + [anon_sym_any] = ACTIONS(2784), + [anon_sym_number] = ACTIONS(2784), + [anon_sym_boolean] = ACTIONS(2784), + [anon_sym_string] = ACTIONS(2784), + [anon_sym_symbol] = ACTIONS(2784), }, - [476] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [473] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2648), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2792), - [anon_sym_export] = ACTIONS(2794), - [anon_sym_type] = ACTIONS(2794), - [anon_sym_namespace] = ACTIONS(2796), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2798), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2794), - [anon_sym_readonly] = ACTIONS(2794), - [anon_sym_get] = ACTIONS(2794), - [anon_sym_set] = ACTIONS(2794), - [anon_sym_declare] = ACTIONS(2794), - [anon_sym_public] = ACTIONS(2794), - [anon_sym_private] = ACTIONS(2794), - [anon_sym_protected] = ACTIONS(2794), - [anon_sym_module] = ACTIONS(2794), - [anon_sym_any] = ACTIONS(2794), - [anon_sym_number] = ACTIONS(2794), - [anon_sym_boolean] = ACTIONS(2794), - [anon_sym_string] = ACTIONS(2794), - [anon_sym_symbol] = ACTIONS(2794), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [477] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [474] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2652), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2810), - [anon_sym_export] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_readonly] = ACTIONS(2812), - [anon_sym_get] = ACTIONS(2812), - [anon_sym_set] = ACTIONS(2812), - [anon_sym_declare] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_protected] = ACTIONS(2812), - [anon_sym_module] = ACTIONS(2812), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [478] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3542), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [475] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3110), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_mapped_type_clause] = STATE(5769), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2818), - [anon_sym_export] = ACTIONS(2820), - [anon_sym_type] = ACTIONS(2820), - [anon_sym_namespace] = ACTIONS(2822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2824), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1860), [anon_sym_PLUS] = ACTIONS(1858), [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2820), - [anon_sym_readonly] = ACTIONS(2820), - [anon_sym_get] = ACTIONS(2820), - [anon_sym_set] = ACTIONS(2820), - [anon_sym_declare] = ACTIONS(2820), - [anon_sym_public] = ACTIONS(2820), - [anon_sym_private] = ACTIONS(2820), - [anon_sym_protected] = ACTIONS(2820), - [anon_sym_module] = ACTIONS(2820), - [anon_sym_any] = ACTIONS(2820), - [anon_sym_number] = ACTIONS(2820), - [anon_sym_boolean] = ACTIONS(2820), - [anon_sym_string] = ACTIONS(2820), - [anon_sym_symbol] = ACTIONS(2820), - }, - [479] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2563), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3193), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [480] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3076), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5863), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [476] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2313), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3328), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [481] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3078), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5866), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [477] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2257), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2664), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [482] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5871), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [478] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2173), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2666), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [483] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2610), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5839), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [479] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2216), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2667), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [484] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [480] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2668), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2810), - [anon_sym_export] = ACTIONS(2812), - [anon_sym_type] = ACTIONS(2812), - [anon_sym_namespace] = ACTIONS(2814), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(2730), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2816), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2812), - [anon_sym_readonly] = ACTIONS(2812), - [anon_sym_get] = ACTIONS(2812), - [anon_sym_set] = ACTIONS(2812), - [anon_sym_declare] = ACTIONS(2812), - [anon_sym_public] = ACTIONS(2812), - [anon_sym_private] = ACTIONS(2812), - [anon_sym_protected] = ACTIONS(2812), - [anon_sym_module] = ACTIONS(2812), - [anon_sym_any] = ACTIONS(2812), - [anon_sym_number] = ACTIONS(2812), - [anon_sym_boolean] = ACTIONS(2812), - [anon_sym_string] = ACTIONS(2812), - [anon_sym_symbol] = ACTIONS(2812), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [485] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [481] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2826), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2802), + [anon_sym_export] = ACTIONS(2804), + [anon_sym_type] = ACTIONS(2804), + [anon_sym_namespace] = ACTIONS(2806), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2748), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2808), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_readonly] = 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_static] = ACTIONS(2804), + [anon_sym_readonly] = ACTIONS(2804), + [anon_sym_get] = ACTIONS(2804), + [anon_sym_set] = ACTIONS(2804), + [anon_sym_declare] = ACTIONS(2804), + [anon_sym_public] = ACTIONS(2804), + [anon_sym_private] = ACTIONS(2804), + [anon_sym_protected] = ACTIONS(2804), + [anon_sym_module] = ACTIONS(2804), + [anon_sym_any] = ACTIONS(2804), + [anon_sym_number] = ACTIONS(2804), + [anon_sym_boolean] = ACTIONS(2804), + [anon_sym_string] = ACTIONS(2804), + [anon_sym_symbol] = ACTIONS(2804), }, - [486] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3123), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5999), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [482] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3319), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [487] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [483] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2826), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_type] = ACTIONS(2385), - [anon_sym_namespace] = ACTIONS(2387), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2788), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2389), + [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2385), - [anon_sym_readonly] = 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_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), }, - [488] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [484] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2215), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3108), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2828), - [anon_sym_export] = ACTIONS(2401), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2405), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_readonly] = ACTIONS(2401), - [anon_sym_get] = ACTIONS(2401), - [anon_sym_set] = ACTIONS(2401), - [anon_sym_declare] = ACTIONS(2401), - [anon_sym_public] = ACTIONS(2401), - [anon_sym_private] = ACTIONS(2401), - [anon_sym_protected] = ACTIONS(2401), - [anon_sym_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_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [489] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1424), - [sym_expression] = STATE(3598), - [sym_primary_expression] = STATE(2197), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1424), - [sym_subscript_expression] = STATE(1424), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [485] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2531), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3194), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1424), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2800), - [anon_sym_export] = ACTIONS(2802), - [anon_sym_type] = ACTIONS(2802), - [anon_sym_namespace] = ACTIONS(2804), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1052), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(588), + [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2742), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(2806), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(2439), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -66249,279 +65886,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2441), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2802), - [anon_sym_readonly] = ACTIONS(2802), - [anon_sym_get] = ACTIONS(2802), - [anon_sym_set] = ACTIONS(2802), - [anon_sym_declare] = ACTIONS(2802), - [anon_sym_public] = ACTIONS(2802), - [anon_sym_private] = ACTIONS(2802), - [anon_sym_protected] = ACTIONS(2802), - [anon_sym_module] = ACTIONS(2802), - [anon_sym_any] = ACTIONS(2802), - [anon_sym_number] = ACTIONS(2802), - [anon_sym_boolean] = ACTIONS(2802), - [anon_sym_string] = ACTIONS(2802), - [anon_sym_symbol] = ACTIONS(2802), - }, - [490] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4652), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5491), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2828), - [anon_sym_export] = ACTIONS(2401), - [anon_sym_type] = ACTIONS(2401), - [anon_sym_namespace] = ACTIONS(2403), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2405), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2401), - [anon_sym_readonly] = ACTIONS(2401), - [anon_sym_get] = ACTIONS(2401), - [anon_sym_set] = ACTIONS(2401), - [anon_sym_declare] = ACTIONS(2401), - [anon_sym_public] = ACTIONS(2401), - [anon_sym_private] = ACTIONS(2401), - [anon_sym_protected] = ACTIONS(2401), - [anon_sym_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), - }, - [491] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3554), - [sym_primary_expression] = STATE(2139), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2770), - [anon_sym_export] = ACTIONS(2425), - [anon_sym_type] = ACTIONS(2425), - [anon_sym_namespace] = ACTIONS(2427), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_DOT] = ACTIONS(2730), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2429), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2425), - [anon_sym_readonly] = ACTIONS(2425), - [anon_sym_get] = ACTIONS(2425), - [anon_sym_set] = ACTIONS(2425), - [anon_sym_declare] = ACTIONS(2425), - [anon_sym_public] = ACTIONS(2425), - [anon_sym_private] = ACTIONS(2425), - [anon_sym_protected] = ACTIONS(2425), - [anon_sym_module] = ACTIONS(2425), - [anon_sym_any] = ACTIONS(2425), - [anon_sym_number] = ACTIONS(2425), - [anon_sym_boolean] = ACTIONS(2425), - [anon_sym_string] = ACTIONS(2425), - [anon_sym_symbol] = ACTIONS(2425), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, - [492] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3146), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_sequence_expression] = STATE(5946), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [486] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3074), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5991), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -66531,7 +65976,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -66539,72 +65984,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [493] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2563), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2638), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [487] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2531), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2721), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(2758), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2728), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -66612,9 +66057,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -66635,72 +66080,456 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [494] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2562), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2640), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [488] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2810), + [anon_sym_export] = ACTIONS(2389), + [anon_sym_type] = ACTIONS(2389), + [anon_sym_namespace] = ACTIONS(2391), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2393), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2389), + [anon_sym_readonly] = 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), + }, + [489] = { + [sym_import] = STATE(2172), + [sym_statement_block] = STATE(2345), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3231), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(2774), + [anon_sym_typeof] = ACTIONS(1168), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1160), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), + }, + [490] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1440), + [sym_expression] = STATE(3585), + [sym_primary_expression] = STATE(2193), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1440), + [sym_subscript_expression] = STATE(1440), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1440), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2820), + [anon_sym_export] = ACTIONS(2822), + [anon_sym_type] = ACTIONS(2822), + [anon_sym_namespace] = ACTIONS(2824), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2788), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2826), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2395), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [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(2397), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2822), + [anon_sym_readonly] = ACTIONS(2822), + [anon_sym_get] = ACTIONS(2822), + [anon_sym_set] = ACTIONS(2822), + [anon_sym_declare] = ACTIONS(2822), + [anon_sym_public] = ACTIONS(2822), + [anon_sym_private] = ACTIONS(2822), + [anon_sym_protected] = ACTIONS(2822), + [anon_sym_module] = ACTIONS(2822), + [anon_sym_any] = ACTIONS(2822), + [anon_sym_number] = ACTIONS(2822), + [anon_sym_boolean] = ACTIONS(2822), + [anon_sym_string] = ACTIONS(2822), + [anon_sym_symbol] = ACTIONS(2822), + }, + [491] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4813), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5471), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2742), + [anon_sym_export] = ACTIONS(2744), + [anon_sym_type] = ACTIONS(2744), + [anon_sym_namespace] = ACTIONS(2746), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(2750), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2744), + [anon_sym_readonly] = ACTIONS(2744), + [anon_sym_get] = ACTIONS(2744), + [anon_sym_set] = ACTIONS(2744), + [anon_sym_declare] = ACTIONS(2744), + [anon_sym_public] = ACTIONS(2744), + [anon_sym_private] = ACTIONS(2744), + [anon_sym_protected] = ACTIONS(2744), + [anon_sym_module] = ACTIONS(2744), + [anon_sym_any] = ACTIONS(2744), + [anon_sym_number] = ACTIONS(2744), + [anon_sym_boolean] = ACTIONS(2744), + [anon_sym_string] = ACTIONS(2744), + [anon_sym_symbol] = ACTIONS(2744), + }, + [492] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2539), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(2758), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2728), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -66708,9 +66537,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -66731,72 +66560,168 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [495] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2560), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [493] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3589), + [sym_primary_expression] = STATE(2142), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(2758), + [sym_formal_parameters] = STATE(4844), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5541), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2760), + [anon_sym_export] = ACTIONS(2604), + [anon_sym_type] = ACTIONS(2604), + [anon_sym_namespace] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_DOT] = ACTIONS(2748), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(2608), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2604), + [anon_sym_readonly] = ACTIONS(2604), + [anon_sym_get] = ACTIONS(2604), + [anon_sym_set] = ACTIONS(2604), + [anon_sym_declare] = ACTIONS(2604), + [anon_sym_public] = ACTIONS(2604), + [anon_sym_private] = ACTIONS(2604), + [anon_sym_protected] = ACTIONS(2604), + [anon_sym_module] = ACTIONS(2604), + [anon_sym_any] = ACTIONS(2604), + [anon_sym_number] = ACTIONS(2604), + [anon_sym_boolean] = ACTIONS(2604), + [anon_sym_string] = ACTIONS(2604), + [anon_sym_symbol] = ACTIONS(2604), + }, + [494] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2534), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2720), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(2728), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -66804,9 +66729,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -66827,90 +66752,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [496] = { - [sym_import] = STATE(2475), - [sym_statement_block] = STATE(2461), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3108), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [495] = { + [sym_import] = STATE(2413), + [sym_statement_block] = STATE(2534), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3197), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(2758), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(2728), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -66921,4647 +66846,5029 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, - [497] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3542), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [496] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_sequence_expression] = STATE(5731), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_mapped_type_clause] = STATE(5982), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_namespace] = ACTIONS(2834), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(2836), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2832), - [anon_sym_set] = ACTIONS(2832), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [498] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2982), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [497] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3498), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_mapped_type_clause] = STATE(5820), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_namespace] = ACTIONS(2832), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(2834), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2830), + [anon_sym_set] = ACTIONS(2830), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), }, - [499] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [498] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2893), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_sequence_expression] = STATE(5499), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [500] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3530), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [499] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3508), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), + }, + [500] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2387), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, [501] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3199), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2640), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [502] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3367), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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), - }, - [502] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [503] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2546), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [504] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2503), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2623), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [505] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2505), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3287), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [506] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2507), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2691), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [507] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2517), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3268), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [508] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2518), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3266), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [509] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2519), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3263), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [510] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2520), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [511] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2531), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [512] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2521), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [513] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2524), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [514] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2277), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2903), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [515] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2338), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [511] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2722), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [512] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2536), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [516] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2234), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [513] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3309), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), + }, + [514] = { + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2443), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2836), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [515] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [516] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3266), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(2840), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1030), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [517] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [518] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3310), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [518] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2277), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [519] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2369), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [520] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2724), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [521] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2476), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [519] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2628), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [522] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3186), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), - }, - [520] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(2840), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [521] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2629), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [523] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3466), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [522] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2577), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [524] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2222), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [523] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2224), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), - }, - [524] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3068), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, [525] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2632), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2575), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, [526] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2633), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3205), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, [527] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2635), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2795), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, [528] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3231), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3234), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, [529] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3217), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2902), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, [530] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3169), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [531] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3216), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [532] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3214), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2723), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [533] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3457), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3525), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [534] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3203), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, [535] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3198), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, [536] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3100), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2725), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [537] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3069), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3503), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [538] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3102), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3265), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + }, + [539] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2235), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [540] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2844), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [539] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3167), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [541] = { + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [542] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3496), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [540] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2636), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [543] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3076), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [541] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [544] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [545] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3452), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), - }, - [542] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2468), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [543] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [546] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2769), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [544] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2639), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [547] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3364), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [545] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [548] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2512), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -71571,7 +71878,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -71579,179 +71886,179 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [546] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [549] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3318), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [547] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2416), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [550] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2501), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -71761,7 +72068,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -71769,89 +72076,184 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [548] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [551] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3343), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), + }, + [552] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2237), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -71862,91 +72264,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [549] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2546), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [553] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -71957,73 +72359,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [550] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2856), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [554] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2713), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -72031,9 +72433,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -72054,274 +72456,749 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [551] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2218), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [555] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [556] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2243), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [557] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3494), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [552] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3498), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [558] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), + }, + [559] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), + }, + [560] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2674), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), + }, + [561] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3321), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [553] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(4920), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(4920), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(4920), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [562] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2548), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2842), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1806), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -72331,7 +73208,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -72339,659 +73216,754 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [554] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [563] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2376), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [564] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3327), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [555] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [565] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2669), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [556] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [566] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2960), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [557] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [567] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2224), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [558] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2217), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [568] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [559] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [569] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [560] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [570] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2246), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -73002,1516 +73974,566 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [561] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2540), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [571] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3353), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [562] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [563] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [564] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [565] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2940), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [566] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [567] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [568] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [569] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [570] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2525), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [571] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [572] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2216), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [573] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2651), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [572] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [574] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [573] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2852), + [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(1478), + [sym_undefined] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [574] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2663), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, [575] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2215), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, [576] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2502), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2671), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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), @@ -74522,756 +74544,851 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [577] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, [578] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3073), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2659), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, [579] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3085), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3329), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [580] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2616), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, [581] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2209), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, [582] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3330), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2854), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [583] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2867), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2654), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(2856), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, [584] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2719), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2653), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), + }, + [585] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2248), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -75282,371 +75399,371 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [585] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2196), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [586] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2651), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(916), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(918), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [586] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2374), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [587] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2650), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [587] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2832), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [588] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), }, - [588] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [589] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2705), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -75656,7 +75773,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -75664,1116 +75781,1116 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - }, - [589] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2867), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [590] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2869), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, [591] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3335), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [592] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2783), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3336), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [593] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3544), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [594] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2195), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2881), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [595] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2193), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [596] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3468), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [597] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2900), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [598] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3339), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2511), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [599] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2817), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3340), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [600] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2619), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2249), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [601] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2713), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -76781,9 +76898,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -76796,7 +76913,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(2852), + [sym_number] = ACTIONS(2840), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), @@ -76804,926 +76921,451 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - }, - [601] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2818), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [602] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2827), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2251), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, [603] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2828), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2888), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [604] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2829), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3342), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [605] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2834), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2252), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [606] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2849), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [607] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [608] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2864), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [609] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2192), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), - [anon_sym_export] = ACTIONS(838), - [anon_sym_type] = ACTIONS(838), - [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(838), - [anon_sym_readonly] = ACTIONS(838), - [anon_sym_get] = ACTIONS(838), - [anon_sym_set] = ACTIONS(838), - [anon_sym_declare] = ACTIONS(838), - [anon_sym_public] = ACTIONS(838), - [anon_sym_private] = ACTIONS(838), - [anon_sym_protected] = ACTIONS(838), - [anon_sym_module] = ACTIONS(838), - [anon_sym_any] = ACTIONS(838), - [anon_sym_number] = ACTIONS(838), - [anon_sym_boolean] = ACTIONS(838), - [anon_sym_string] = ACTIONS(838), - [anon_sym_symbol] = ACTIONS(838), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [610] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2720), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [606] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2757), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -77731,9 +77373,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -77754,290 +77396,290 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [611] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2888), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), + [607] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3214), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [612] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3355), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [613] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2190), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [608] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2255), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [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(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [609] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2819), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), [anon_sym_export] = ACTIONS(838), [anon_sym_type] = ACTIONS(838), [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(838), [anon_sym_readonly] = ACTIONS(838), @@ -78054,1969 +77696,2444 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(838), [anon_sym_symbol] = ACTIONS(838), }, - [614] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(2914), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [615] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2074), - [sym_expression] = STATE(3004), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5963), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5963), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(6000), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2074), - [sym_subscript_expression] = STATE(2074), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3881), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5963), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2074), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1830), - [anon_sym_export] = ACTIONS(1086), - [anon_sym_type] = ACTIONS(1086), - [anon_sym_namespace] = ACTIONS(1088), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1096), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1100), - [anon_sym_yield] = ACTIONS(1102), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1108), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1112), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1836), - [anon_sym_PLUS] = ACTIONS(1834), - [anon_sym_DASH] = ACTIONS(1834), - [anon_sym_TILDE] = ACTIONS(1096), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1140), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1086), - [anon_sym_readonly] = 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), - }, - [616] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2627), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [610] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2852), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, - [617] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), + [611] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3498), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2862), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [618] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3220), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [612] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(3009), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [619] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3066), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [613] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2487), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [614] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(3010), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1844), [anon_sym_PLUS] = ACTIONS(1842), [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [620] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3068), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [615] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [616] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1326), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), + }, + [617] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3147), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + }, + [618] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(2840), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [619] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [620] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3142), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [621] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2082), - [sym_expression] = STATE(3300), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5854), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5854), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5857), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2082), - [sym_subscript_expression] = STATE(2082), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3876), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5854), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2848), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2082), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1838), - [anon_sym_export] = ACTIONS(1148), - [anon_sym_type] = ACTIONS(1148), - [anon_sym_namespace] = ACTIONS(1150), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1172), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1156), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1158), - [anon_sym_yield] = ACTIONS(1160), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1164), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1844), - [anon_sym_PLUS] = ACTIONS(1842), - [anon_sym_DASH] = ACTIONS(1842), - [anon_sym_TILDE] = ACTIONS(1156), - [anon_sym_void] = ACTIONS(1172), - [anon_sym_delete] = ACTIONS(1172), - [anon_sym_PLUS_PLUS] = ACTIONS(1174), - [anon_sym_DASH_DASH] = ACTIONS(1174), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1182), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1148), - [anon_sym_readonly] = 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_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [622] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3141), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + }, + [623] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(3046), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, - [623] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [624] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2817), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, - [624] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2746), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [625] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(3045), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, - [625] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [626] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(3044), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, - [626] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2737), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [627] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), - }, - [627] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [628] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2736), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(3038), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [629] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2619), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(91), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [630] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2733), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(3035), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [631] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2727), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, [632] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(3010), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2844), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [633] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3544), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2842), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1314), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [634] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2838), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1326), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), + }, + [635] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -80026,7 +80143,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2864), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -80034,480 +80151,100 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - }, - [635] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2548), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [636] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - }, - [637] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2547), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [638] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1486), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5778), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5778), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5756), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1486), - [sym_subscript_expression] = STATE(1486), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3879), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5778), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1486), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1680), - [anon_sym_export] = ACTIONS(1350), - [anon_sym_type] = ACTIONS(1350), - [anon_sym_namespace] = ACTIONS(1352), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1374), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1358), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1360), - [anon_sym_yield] = ACTIONS(1362), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1366), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1686), - [anon_sym_PLUS] = ACTIONS(1684), - [anon_sym_DASH] = ACTIONS(1684), - [anon_sym_TILDE] = ACTIONS(1358), - [anon_sym_void] = ACTIONS(1374), - [anon_sym_delete] = ACTIONS(1374), - [anon_sym_PLUS_PLUS] = ACTIONS(1376), - [anon_sym_DASH_DASH] = ACTIONS(1376), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1384), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1350), - [anon_sym_readonly] = ACTIONS(1350), - [anon_sym_get] = ACTIONS(1350), - [anon_sym_set] = ACTIONS(1350), - [anon_sym_declare] = ACTIONS(1350), - [anon_sym_public] = ACTIONS(1350), - [anon_sym_private] = ACTIONS(1350), - [anon_sym_protected] = ACTIONS(1350), - [anon_sym_module] = ACTIONS(1350), - [anon_sym_any] = ACTIONS(1350), - [anon_sym_number] = ACTIONS(1350), - [anon_sym_boolean] = ACTIONS(1350), - [anon_sym_string] = ACTIONS(1350), - [anon_sym_symbol] = ACTIONS(1350), - }, - [639] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1439), - [sym_expression] = STATE(2288), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5812), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5812), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5758), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1439), - [sym_subscript_expression] = STATE(1439), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3887), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5812), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2837), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1439), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1484), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), [anon_sym_export] = ACTIONS(838), [anon_sym_type] = ACTIONS(838), [anon_sym_namespace] = ACTIONS(840), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(864), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(846), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(848), - [anon_sym_yield] = ACTIONS(850), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(856), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1498), - [anon_sym_PLUS] = ACTIONS(1490), - [anon_sym_DASH] = ACTIONS(1490), - [anon_sym_TILDE] = ACTIONS(846), - [anon_sym_void] = ACTIONS(864), - [anon_sym_delete] = ACTIONS(864), - [anon_sym_PLUS_PLUS] = ACTIONS(866), - [anon_sym_DASH_DASH] = ACTIONS(866), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(874), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(838), [anon_sym_readonly] = ACTIONS(838), @@ -80524,354 +80261,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(838), [anon_sym_symbol] = ACTIONS(838), }, - [640] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2732), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), - }, - [641] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2731), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), - }, - [642] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2729), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), - }, - [643] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2605), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [637] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -80881,7 +80333,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -80889,564 +80341,279 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [644] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [638] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2823), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [639] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3324), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), - }, - [645] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2964), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), - }, - [646] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2963), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), - }, - [647] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2961), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), - }, - [648] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [649] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2966), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [640] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3140), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -81457,73 +80624,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(926), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, - [650] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2727), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [641] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2866), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(2854), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -81531,9 +80698,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -81554,944 +80721,1134 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [651] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [642] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(3011), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2868), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [652] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), + [643] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3441), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), + [sym_array] = STATE(2172), [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(2842), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [653] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2665), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [644] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(2856), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, - [654] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [645] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3139), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, - [655] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2728), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [646] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2747), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [656] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [647] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2726), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [657] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3224), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [648] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2771), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [658] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2696), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [649] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2506), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [650] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3361), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [659] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2963), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [651] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3507), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2852), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(926), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [660] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [652] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [653] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3138), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -82502,471 +81859,851 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, - [661] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2626), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [654] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2532), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [655] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3297), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [662] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5238), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5238), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5238), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [656] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2706), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2870), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [663] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [657] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2484), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, - [664] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2691), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [658] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2614), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [659] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2726), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [665] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2318), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [660] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3500), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1572), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), + }, + [661] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(3005), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), + }, + [662] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2757), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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), @@ -82977,91 +82714,281 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [666] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2319), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), + [663] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2412), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [664] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3477), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1202), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1220), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), + }, + [665] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3134), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -83072,1416 +82999,1606 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, - [667] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(3000), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [666] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [668] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2994), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [667] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2957), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [669] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2791), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [668] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2959), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [670] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2990), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [669] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2223), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), + [sym_number] = ACTIONS(2840), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(926), + [sym_undefined] = ACTIONS(1070), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), + }, + [670] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2508), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, [671] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2510), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [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(968), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, [672] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2993), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2634), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(926), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [673] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2625), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2730), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [674] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2626), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2966), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, [675] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2833), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, [676] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2103), - [sym_expression] = STATE(2618), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5873), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5873), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5916), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2103), - [sym_subscript_expression] = STATE(2103), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3892), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5873), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2635), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2103), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1688), - [anon_sym_export] = ACTIONS(1008), - [anon_sym_type] = ACTIONS(1008), - [anon_sym_namespace] = ACTIONS(1010), - [anon_sym_LBRACE] = ACTIONS(1692), - [anon_sym_typeof] = ACTIONS(1032), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1016), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1018), - [anon_sym_yield] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1696), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1024), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1698), - [anon_sym_PLUS] = ACTIONS(1694), - [anon_sym_DASH] = ACTIONS(1694), - [anon_sym_TILDE] = ACTIONS(1016), - [anon_sym_void] = ACTIONS(1032), - [anon_sym_delete] = ACTIONS(1032), - [anon_sym_PLUS_PLUS] = ACTIONS(1034), - [anon_sym_DASH_DASH] = ACTIONS(1034), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1036), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1008), - [anon_sym_readonly] = ACTIONS(1008), - [anon_sym_get] = ACTIONS(1008), - [anon_sym_set] = ACTIONS(1008), - [anon_sym_declare] = ACTIONS(1008), - [anon_sym_public] = ACTIONS(1008), - [anon_sym_private] = ACTIONS(1008), - [anon_sym_protected] = ACTIONS(1008), - [anon_sym_module] = ACTIONS(1008), - [anon_sym_any] = ACTIONS(1008), - [anon_sym_number] = ACTIONS(1008), - [anon_sym_boolean] = ACTIONS(1008), - [anon_sym_string] = ACTIONS(1008), - [anon_sym_symbol] = ACTIONS(1008), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [677] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2999), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(926), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [678] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2575), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2638), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [679] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3268), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [680] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3398), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [681] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3106), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1472), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), + }, + [682] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3271), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -84491,7 +84608,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -84499,84 +84616,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [682] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3105), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [683] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3270), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -84586,7 +84703,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -84594,564 +84711,469 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - }, - [683] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [684] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3007), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2963), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(926), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, [685] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2734), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2676), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(91), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [686] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(2780), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2694), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1460), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(926), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [687] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3316), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, [688] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3008), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2494), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -85162,661 +85184,661 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(926), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, [689] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2744), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2612), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [690] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2496), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2872), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2550), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [691] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2739), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2031), + [sym_expression] = STATE(2892), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5901), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5901), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5994), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2031), + [sym_subscript_expression] = STATE(2031), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3875), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5901), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2031), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1790), + [anon_sym_export] = ACTIONS(1300), + [anon_sym_type] = ACTIONS(1300), + [anon_sym_namespace] = ACTIONS(1302), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1322), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1308), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1310), + [anon_sym_yield] = ACTIONS(1312), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1314), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1796), + [anon_sym_PLUS] = ACTIONS(1794), + [anon_sym_DASH] = ACTIONS(1794), + [anon_sym_TILDE] = ACTIONS(1308), + [anon_sym_void] = ACTIONS(1322), + [anon_sym_delete] = ACTIONS(1322), + [anon_sym_PLUS_PLUS] = ACTIONS(1324), + [anon_sym_DASH_DASH] = ACTIONS(1324), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(91), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1326), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1300), + [anon_sym_readonly] = 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), }, [692] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2803), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1124), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(91), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, [693] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2770), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1084), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(91), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [694] = { - [sym_export_clause] = STATE(4998), - [sym_declaration] = STATE(1209), - [sym_namespace_import] = STATE(5489), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [anon_sym_STAR] = ACTIONS(2509), - [anon_sym_default] = ACTIONS(2876), - [anon_sym_type] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(2858), - [anon_sym_as] = ACTIONS(2517), - [anon_sym_namespace] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2521), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [695] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3123), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -85827,1326 +85849,1326 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1478), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [696] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [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(1478), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), - }, - [697] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3492), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2968), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), + [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [698] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [697] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2735), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(91), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [699] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2073), - [sym_expression] = STATE(2410), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6107), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6107), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6106), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2073), - [sym_subscript_expression] = STATE(2073), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3875), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6107), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [698] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2746), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2073), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1642), - [anon_sym_export] = ACTIONS(1450), - [anon_sym_type] = ACTIONS(1450), - [anon_sym_namespace] = ACTIONS(1452), - [anon_sym_LBRACE] = ACTIONS(1646), - [anon_sym_typeof] = ACTIONS(1474), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1458), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1460), - [anon_sym_yield] = ACTIONS(1462), - [anon_sym_LBRACK] = ACTIONS(1650), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1466), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1652), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_TILDE] = ACTIONS(1458), - [anon_sym_void] = ACTIONS(1474), - [anon_sym_delete] = ACTIONS(1474), - [anon_sym_PLUS_PLUS] = ACTIONS(1476), - [anon_sym_DASH_DASH] = ACTIONS(1476), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1478), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1450), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [700] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2801), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [699] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2743), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), + }, + [700] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2609), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [701] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3017), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2481), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, [702] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2742), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [703] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3022), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(926), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [704] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3028), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2693), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [705] = { - [sym_import] = STATE(2339), + [sym_import] = STATE(2413), [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2919), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), + [sym_expression] = STATE(2853), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), [sym_member_expression] = STATE(2038), [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), + [sym_formal_parameters] = STATE(4737), [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(596), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(1820), [anon_sym_PLUS] = ACTIONS(1818), [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, [706] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3014), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3489), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, [707] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2746), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [708] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3016), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2969), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, [709] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2743), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2854), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -87157,376 +87179,281 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, [710] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2309), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), - [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(968), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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), - }, - [711] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2921), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2970), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [712] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3327), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [711] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2971), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [713] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3092), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [712] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -87537,1511 +87464,1606 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, - [714] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2922), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), + [713] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2683), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1400), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), + }, + [714] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2972), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1604), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1606), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, [715] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3080), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2687), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1442), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [716] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3107), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2741), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1442), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [717] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3113), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2657), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [718] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2689), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1388), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1442), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [719] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2745), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - }, - [720] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - }, - [721] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2452), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2737), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [722] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3508), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [720] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2690), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [723] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [721] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2607), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [724] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [722] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2696), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [725] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [723] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2697), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [726] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [724] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2973), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1618), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), + }, + [725] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2615), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [726] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2630), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [727] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2700), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [728] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2444), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2701), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [729] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2439), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -89051,7 +89073,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2858), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -89059,374 +89081,374 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [730] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2618), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [731] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3132), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2619), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [732] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2709), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3890), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, [733] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3133), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3114), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -89437,91 +89459,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [734] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3134), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3090), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(1852), [anon_sym_PLUS] = ACTIONS(1850), [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -89532,281 +89554,186 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1030), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), }, [735] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3030), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2622), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [736] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), - }, - [737] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3135), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2278), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -89817,91 +89744,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [738] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3136), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [737] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2855), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -89912,181 +89839,276 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), + }, + [738] = { + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, [739] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3141), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, [740] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2422), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2705), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5019), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5019), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5019), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2860), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1782), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -90096,7 +90118,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -90104,654 +90126,179 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [741] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3542), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2480), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [742] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2934), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - }, - [743] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2935), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - }, - [744] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2942), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - }, - [745] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2944), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - }, - [746] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3038), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), - }, - [747] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2412), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2982), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1420), [anon_sym_await] = ACTIONS(580), [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -90761,7 +90308,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -90769,71 +90316,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [748] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2750), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [743] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2708), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -90841,9 +90388,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -90864,1781 +90411,2256 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [749] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2945), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), + [744] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1988), + [sym_expression] = STATE(2754), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5863), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5863), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5810), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1988), + [sym_subscript_expression] = STATE(1988), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5863), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1988), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(1376), + [anon_sym_type] = ACTIONS(1376), + [anon_sym_namespace] = ACTIONS(1378), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1396), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1382), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1384), + [anon_sym_yield] = ACTIONS(1386), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1388), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1788), + [anon_sym_PLUS] = ACTIONS(1784), + [anon_sym_DASH] = ACTIONS(1784), + [anon_sym_TILDE] = ACTIONS(1382), + [anon_sym_void] = ACTIONS(1396), + [anon_sym_delete] = ACTIONS(1396), + [anon_sym_PLUS_PLUS] = ACTIONS(1398), + [anon_sym_DASH_DASH] = ACTIONS(1398), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1400), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1376), + [anon_sym_readonly] = ACTIONS(1376), + [anon_sym_get] = ACTIONS(1376), + [anon_sym_set] = ACTIONS(1376), + [anon_sym_declare] = ACTIONS(1376), + [anon_sym_public] = ACTIONS(1376), + [anon_sym_private] = ACTIONS(1376), + [anon_sym_protected] = ACTIONS(1376), + [anon_sym_module] = ACTIONS(1376), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), }, - [750] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), + [745] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3155), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1654), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), - [anon_sym_TILDE] = ACTIONS(576), - [anon_sym_void] = ACTIONS(612), - [anon_sym_delete] = ACTIONS(612), - [anon_sym_PLUS_PLUS] = ACTIONS(614), - [anon_sym_DASH_DASH] = ACTIONS(614), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(630), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [751] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3399), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [746] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3443), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), - }, - [752] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3071), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2852), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1442), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), - }, - [753] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3260), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1408), - [anon_sym_readonly] = ACTIONS(1408), - [anon_sym_get] = ACTIONS(1408), - [anon_sym_set] = ACTIONS(1408), - [anon_sym_declare] = ACTIONS(1408), - [anon_sym_public] = ACTIONS(1408), - [anon_sym_private] = ACTIONS(1408), - [anon_sym_protected] = ACTIONS(1408), - [anon_sym_module] = ACTIONS(1408), - [anon_sym_any] = ACTIONS(1408), - [anon_sym_number] = ACTIONS(1408), - [anon_sym_boolean] = ACTIONS(1408), - [anon_sym_string] = ACTIONS(1408), - [anon_sym_symbol] = ACTIONS(1408), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [754] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3368), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [747] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3441), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [755] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3311), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [748] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3535), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - }, - [756] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2946), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [757] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3314), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [749] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3438), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [758] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3322), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [750] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2058), + [sym_expression] = STATE(3068), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6109), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6109), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6113), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2058), + [sym_subscript_expression] = STATE(2058), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3895), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6109), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2058), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1846), + [anon_sym_export] = ACTIONS(988), + [anon_sym_type] = ACTIONS(988), + [anon_sym_namespace] = ACTIONS(990), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1002), + [anon_sym_yield] = ACTIONS(1004), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1852), + [anon_sym_PLUS] = ACTIONS(1850), + [anon_sym_DASH] = ACTIONS(1850), + [anon_sym_TILDE] = ACTIONS(998), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [anon_sym_PLUS_PLUS] = ACTIONS(1022), + [anon_sym_DASH_DASH] = ACTIONS(1022), + [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(1030), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(988), + [anon_sym_readonly] = ACTIONS(988), + [anon_sym_get] = ACTIONS(988), + [anon_sym_set] = ACTIONS(988), + [anon_sym_declare] = ACTIONS(988), + [anon_sym_public] = ACTIONS(988), + [anon_sym_private] = ACTIONS(988), + [anon_sym_protected] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_any] = ACTIONS(988), + [anon_sym_number] = ACTIONS(988), + [anon_sym_boolean] = ACTIONS(988), + [anon_sym_string] = ACTIONS(988), + [anon_sym_symbol] = ACTIONS(988), + }, + [751] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [759] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3324), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [752] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3161), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [760] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3325), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [753] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3164), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [761] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3330), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [754] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3166), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [762] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [755] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3168), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [763] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3332), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [756] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3145), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [764] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3333), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [757] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3169), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [765] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3334), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [758] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2759), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(2862), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [759] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3171), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [766] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3335), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [760] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2520), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [761] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2606), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [762] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3172), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), + }, + [763] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2521), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [764] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2681), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [765] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2759), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), + }, + [766] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2046), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(6119), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(6119), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(6122), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2046), + [sym_subscript_expression] = STATE(2046), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3876), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(6119), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2046), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1760), + [anon_sym_export] = ACTIONS(944), + [anon_sym_type] = ACTIONS(944), + [anon_sym_namespace] = ACTIONS(946), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(970), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(954), + [anon_sym_yield] = ACTIONS(956), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(960), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(962), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_TILDE] = ACTIONS(952), + [anon_sym_void] = ACTIONS(970), + [anon_sym_delete] = ACTIONS(970), + [anon_sym_PLUS_PLUS] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(980), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(944), + [anon_sym_readonly] = ACTIONS(944), + [anon_sym_get] = ACTIONS(944), + [anon_sym_set] = ACTIONS(944), + [anon_sym_declare] = ACTIONS(944), + [anon_sym_public] = ACTIONS(944), + [anon_sym_private] = ACTIONS(944), + [anon_sym_protected] = ACTIONS(944), + [anon_sym_module] = ACTIONS(944), + [anon_sym_any] = ACTIONS(944), + [anon_sym_number] = ACTIONS(944), + [anon_sym_boolean] = ACTIONS(944), + [anon_sym_string] = ACTIONS(944), + [anon_sym_symbol] = ACTIONS(944), }, [767] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2753), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), + [anon_sym_import] = ACTIONS(996), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -92646,9 +92668,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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -92669,3805 +92691,2855 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, [768] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3337), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2522), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [769] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [770] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3173), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [769] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3523), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), + [771] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2523), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), + }, + [772] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2731), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [773] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3182), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [770] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3356), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [774] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3189), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [771] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2662), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [775] = { + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, - [772] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2685), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [776] = { + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, - [773] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2846), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [777] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3192), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [774] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2947), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [778] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3151), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - }, - [775] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2683), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [776] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2682), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [777] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2680), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [778] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, [779] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2678), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2377), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, [780] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2677), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(3018), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, [781] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2928), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2411), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, [782] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2676), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [783] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [784] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2758), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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), - }, - [785] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2674), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [786] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [787] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2671), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [788] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2665), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3385), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), + [sym_array] = STATE(2172), [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(2856), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [789] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2072), - [sym_expression] = STATE(3044), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5824), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5824), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5822), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2072), - [sym_subscript_expression] = STATE(2072), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3891), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5824), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2072), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(882), - [anon_sym_type] = ACTIONS(882), - [anon_sym_namespace] = ACTIONS(884), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(916), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(892), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(896), - [anon_sym_yield] = ACTIONS(898), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(906), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(892), - [anon_sym_void] = ACTIONS(916), - [anon_sym_delete] = ACTIONS(916), - [anon_sym_PLUS_PLUS] = ACTIONS(918), - [anon_sym_DASH_DASH] = ACTIONS(918), - [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(926), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(882), - [anon_sym_readonly] = ACTIONS(882), - [anon_sym_get] = ACTIONS(882), - [anon_sym_set] = ACTIONS(882), - [anon_sym_declare] = ACTIONS(882), - [anon_sym_public] = ACTIONS(882), - [anon_sym_private] = ACTIONS(882), - [anon_sym_protected] = ACTIONS(882), - [anon_sym_module] = ACTIONS(882), - [anon_sym_any] = ACTIONS(882), - [anon_sym_number] = ACTIONS(882), - [anon_sym_boolean] = ACTIONS(882), - [anon_sym_string] = ACTIONS(882), - [anon_sym_symbol] = ACTIONS(882), - }, - [790] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2830), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), - }, - [791] = { - [sym_import] = STATE(3394), - [sym_parenthesized_expression] = STATE(2067), - [sym_expression] = STATE(2667), - [sym_primary_expression] = STATE(3392), - [sym_yield_expression] = STATE(3361), - [sym_object] = STATE(3394), - [sym_object_pattern] = STATE(5992), - [sym_array] = STATE(3394), - [sym_array_pattern] = STATE(5992), - [sym_jsx_element] = STATE(3361), - [sym_jsx_fragment] = STATE(3361), - [sym_jsx_opening_element] = STATE(4066), - [sym_jsx_self_closing_element] = STATE(3361), - [sym_class] = STATE(3394), - [sym_function] = STATE(3394), - [sym_generator_function] = STATE(3394), - [sym_arrow_function] = STATE(3394), - [sym__call_signature] = STATE(5994), - [sym_call_expression] = STATE(3394), - [sym_new_expression] = STATE(3361), - [sym_await_expression] = STATE(3361), - [sym_member_expression] = STATE(2067), - [sym_subscript_expression] = STATE(2067), - [sym_assignment_expression] = STATE(3361), - [sym__augmented_assignment_lhs] = STATE(3886), - [sym_augmented_assignment_expression] = STATE(3361), - [sym__destructuring_pattern] = STATE(5992), - [sym_ternary_expression] = STATE(3361), - [sym_binary_expression] = STATE(3361), - [sym_unary_expression] = STATE(3361), - [sym_update_expression] = STATE(3361), - [sym_string] = STATE(3394), - [sym_template_string] = STATE(3394), - [sym_regex] = STATE(3394), - [sym_meta_property] = STATE(3394), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2067), - [sym_as_expression] = STATE(3361), - [sym_internal_module] = STATE(3361), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5044), - [sym_identifier] = ACTIONS(1776), - [anon_sym_export] = ACTIONS(1538), - [anon_sym_type] = ACTIONS(1538), - [anon_sym_namespace] = ACTIONS(1540), - [anon_sym_LBRACE] = ACTIONS(2371), - [anon_sym_typeof] = ACTIONS(1564), - [anon_sym_import] = ACTIONS(1094), - [anon_sym_BANG] = ACTIONS(1546), - [anon_sym_LPAREN] = ACTIONS(1784), - [anon_sym_await] = ACTIONS(1548), - [anon_sym_yield] = ACTIONS(1550), - [anon_sym_LBRACK] = ACTIONS(1786), - [anon_sym_LT] = ACTIONS(1106), - [anon_sym_SLASH] = ACTIONS(1554), - [anon_sym_class] = ACTIONS(1110), - [anon_sym_async] = ACTIONS(1556), - [anon_sym_function] = ACTIONS(1114), - [anon_sym_new] = ACTIONS(1790), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(1546), - [anon_sym_void] = ACTIONS(1564), - [anon_sym_delete] = ACTIONS(1564), - [anon_sym_PLUS_PLUS] = ACTIONS(1566), - [anon_sym_DASH_DASH] = ACTIONS(1566), - [anon_sym_DQUOTE] = ACTIONS(1126), - [anon_sym_SQUOTE] = ACTIONS(1128), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1130), - [sym_number] = ACTIONS(1792), - [sym_this] = ACTIONS(1136), - [sym_super] = ACTIONS(1136), - [sym_true] = ACTIONS(1136), - [sym_false] = ACTIONS(1136), - [sym_null] = ACTIONS(1136), - [sym_undefined] = ACTIONS(1574), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1538), - [anon_sym_readonly] = 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), - }, - [792] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2398), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [793] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2365), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [794] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(3018), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [783] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(3271), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2864), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [795] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(3020), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [784] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3208), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [796] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2992), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [785] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3175), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [797] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2988), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [786] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2801), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [798] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2985), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [787] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2799), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [799] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [788] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2837), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), - [anon_sym_function] = ACTIONS(596), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), [anon_sym_new] = ACTIONS(1828), [anon_sym_PLUS] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(2862), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [789] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1446), + [sym_expression] = STATE(2227), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5777), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5777), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5775), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1446), + [sym_subscript_expression] = STATE(1446), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3894), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5777), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1446), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1036), + [anon_sym_export] = ACTIONS(1038), + [anon_sym_type] = ACTIONS(1038), + [anon_sym_namespace] = ACTIONS(1044), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1050), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1066), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1054), + [anon_sym_yield] = ACTIONS(1056), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1062), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1064), + [anon_sym_PLUS] = ACTIONS(1052), + [anon_sym_DASH] = ACTIONS(1052), + [anon_sym_TILDE] = ACTIONS(1066), + [anon_sym_void] = ACTIONS(1050), + [anon_sym_delete] = ACTIONS(1050), + [anon_sym_PLUS_PLUS] = ACTIONS(1068), + [anon_sym_DASH_DASH] = ACTIONS(1068), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [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(1070), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1038), + [anon_sym_readonly] = ACTIONS(1038), + [anon_sym_get] = ACTIONS(1038), + [anon_sym_set] = ACTIONS(1038), + [anon_sym_declare] = ACTIONS(1038), + [anon_sym_public] = ACTIONS(1038), + [anon_sym_private] = ACTIONS(1038), + [anon_sym_protected] = ACTIONS(1038), + [anon_sym_module] = ACTIONS(1038), + [anon_sym_any] = ACTIONS(1038), + [anon_sym_number] = ACTIONS(1038), + [anon_sym_boolean] = ACTIONS(1038), + [anon_sym_string] = ACTIONS(1038), + [anon_sym_symbol] = ACTIONS(1038), }, - [800] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [790] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2266), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [801] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2976), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [791] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3281), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [802] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2975), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [792] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2264), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [803] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [793] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2263), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [804] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2911), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [794] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2262), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [805] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2811), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [795] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2797), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [806] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2808), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [796] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2866), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [807] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2807), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [797] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), [anon_sym_export] = ACTIONS(768), [anon_sym_type] = ACTIONS(768), [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(768), [anon_sym_readonly] = ACTIONS(768), @@ -96484,275 +95556,370 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(768), [anon_sym_symbol] = ACTIONS(768), }, - [808] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2806), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [798] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2931), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), - [anon_sym_function] = ACTIONS(596), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), [anon_sym_new] = ACTIONS(1828), [anon_sym_PLUS] = ACTIONS(1826), [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [809] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2805), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [799] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2796), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [810] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2802), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [800] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3201), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), + }, + [801] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2527), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(768), [anon_sym_readonly] = ACTIONS(768), @@ -96769,829 +95936,1114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(768), [anon_sym_symbol] = ACTIONS(768), }, - [811] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2800), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [802] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2794), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [812] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), + [803] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2756), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [804] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), [sym_expression] = STATE(2793), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [813] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2787), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [805] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2792), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [814] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2785), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [806] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2791), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [815] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2796), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [807] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2859), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [816] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2971), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [808] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2790), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [817] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(2813), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [809] = { + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2868), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2836), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2482), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [810] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3092), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [818] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2968), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [811] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2312), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), - }, - [819] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1539), - [sym_expression] = STATE(3106), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6030), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6030), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6006), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1539), - [sym_subscript_expression] = STATE(1539), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3878), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6030), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1539), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(2886), - [anon_sym_export] = ACTIONS(820), - [anon_sym_type] = ACTIONS(820), - [anon_sym_namespace] = ACTIONS(822), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(612), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(576), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(580), - [anon_sym_yield] = ACTIONS(582), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), + }, + [812] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2394), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [813] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2705), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5201), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5201), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5201), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(2872), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1786), + [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(826), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1660), - [anon_sym_PLUS] = ACTIONS(1658), - [anon_sym_DASH] = ACTIONS(1658), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), [anon_sym_TILDE] = ACTIONS(576), [anon_sym_void] = ACTIONS(612), [anon_sym_delete] = ACTIONS(612), @@ -97601,7 +97053,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), @@ -97609,1894 +97061,944 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(626), [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(820), - [anon_sym_readonly] = ACTIONS(820), - [anon_sym_get] = ACTIONS(820), - [anon_sym_set] = ACTIONS(820), - [anon_sym_declare] = ACTIONS(820), - [anon_sym_public] = ACTIONS(820), - [anon_sym_private] = ACTIONS(820), - [anon_sym_protected] = ACTIONS(820), - [anon_sym_module] = ACTIONS(820), - [anon_sym_any] = ACTIONS(820), - [anon_sym_number] = ACTIONS(820), - [anon_sym_boolean] = ACTIONS(820), - [anon_sym_string] = ACTIONS(820), - [anon_sym_symbol] = ACTIONS(820), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [820] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(2957), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [814] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2263), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), - }, - [821] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1700), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [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(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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(91), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [822] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2994), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [815] = { + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, - [823] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(2857), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [816] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2990), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [824] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3009), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5754), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5754), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5782), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3888), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5754), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [817] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2975), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2037), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1822), - [anon_sym_export] = ACTIONS(768), - [anon_sym_type] = ACTIONS(768), - [anon_sym_namespace] = ACTIONS(770), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(800), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(776), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(778), - [anon_sym_yield] = ACTIONS(780), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(786), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1828), - [anon_sym_PLUS] = ACTIONS(1826), - [anon_sym_DASH] = ACTIONS(1826), - [anon_sym_TILDE] = ACTIONS(776), - [anon_sym_void] = ACTIONS(800), - [anon_sym_delete] = ACTIONS(800), - [anon_sym_PLUS_PLUS] = ACTIONS(802), - [anon_sym_DASH_DASH] = ACTIONS(802), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(810), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(768), - [anon_sym_readonly] = 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), - }, - [825] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2380), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [826] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [827] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2368), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [828] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [829] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [830] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [831] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2396), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [832] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2388), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [833] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [834] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2361), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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), - }, - [835] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [818] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(2840), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(2856), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, - [836] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [819] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2858), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [837] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3227), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [820] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2787), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [838] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3229), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [821] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2936), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [822] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3152), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1860), [anon_sym_PLUS] = ACTIONS(1858), [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [839] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2019), - [sym_expression] = STATE(2758), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5922), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5922), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5915), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2019), - [sym_subscript_expression] = STATE(2019), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3883), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5922), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [823] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2499), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2019), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(2866), - [anon_sym_export] = ACTIONS(1190), - [anon_sym_type] = ACTIONS(1190), - [anon_sym_namespace] = ACTIONS(1192), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1200), - [anon_sym_function] = ACTIONS(908), - [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_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -99507,767 +98009,767 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1190), - [anon_sym_readonly] = 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_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [840] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(3019), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [824] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2308), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [841] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(3018), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [825] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2502), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [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(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [842] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2038), - [sym_expression] = STATE(3043), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5891), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5891), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6020), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2038), - [sym_subscript_expression] = STATE(2038), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3890), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5891), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [826] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2305), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2038), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1814), - [anon_sym_export] = ACTIONS(1220), - [anon_sym_type] = ACTIONS(1220), - [anon_sym_namespace] = ACTIONS(1222), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1242), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1228), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1230), - [anon_sym_yield] = ACTIONS(1232), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1234), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1820), - [anon_sym_PLUS] = ACTIONS(1818), - [anon_sym_DASH] = ACTIONS(1818), - [anon_sym_TILDE] = ACTIONS(1228), - [anon_sym_void] = ACTIONS(1242), - [anon_sym_delete] = ACTIONS(1242), - [anon_sym_PLUS_PLUS] = ACTIONS(1244), - [anon_sym_DASH_DASH] = ACTIONS(1244), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1246), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1220), - [anon_sym_readonly] = ACTIONS(1220), - [anon_sym_get] = ACTIONS(1220), - [anon_sym_set] = ACTIONS(1220), - [anon_sym_declare] = ACTIONS(1220), - [anon_sym_public] = ACTIONS(1220), - [anon_sym_private] = ACTIONS(1220), - [anon_sym_protected] = ACTIONS(1220), - [anon_sym_module] = ACTIONS(1220), - [anon_sym_any] = ACTIONS(1220), - [anon_sym_number] = ACTIONS(1220), - [anon_sym_boolean] = ACTIONS(1220), - [anon_sym_string] = ACTIONS(1220), - [anon_sym_symbol] = ACTIONS(1220), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [843] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3441), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [827] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2304), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [844] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3420), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [828] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2302), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [845] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3230), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [829] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2300), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [846] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2697), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [830] = { + [sym_export_clause] = STATE(5107), + [sym_declaration] = STATE(1200), + [sym_namespace_import] = STATE(5495), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [anon_sym_STAR] = ACTIONS(2441), + [anon_sym_default] = ACTIONS(2874), + [anon_sym_type] = ACTIONS(2445), + [anon_sym_EQ] = ACTIONS(2836), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_LBRACE] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [831] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2299), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), - }, - [847] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3151), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1408), [anon_sym_readonly] = ACTIONS(1408), @@ -100284,85 +98786,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1408), [anon_sym_symbol] = ACTIONS(1408), }, - [848] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3088), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [832] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2294), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), [anon_sym_export] = ACTIONS(1408), [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1442), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1408), [anon_sym_readonly] = ACTIONS(1408), @@ -100379,180 +98881,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1408), [anon_sym_symbol] = ACTIONS(1408), }, - [849] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3543), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [833] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2293), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - }, - [850] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3071), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), - [anon_sym_export] = ACTIONS(1408), - [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [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(1442), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1408), [anon_sym_readonly] = ACTIONS(1408), @@ -100569,85 +98976,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1408), [anon_sym_symbol] = ACTIONS(1408), }, - [851] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(2069), - [sym_expression] = STATE(3075), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(6112), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(6112), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(6114), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(2069), - [sym_subscript_expression] = STATE(2069), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3889), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(6112), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [834] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2291), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2069), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1846), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), [anon_sym_export] = ACTIONS(1408), [anon_sym_type] = ACTIONS(1408), - [anon_sym_namespace] = ACTIONS(1410), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(1432), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(1416), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1418), - [anon_sym_yield] = ACTIONS(1420), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(1424), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1852), - [anon_sym_PLUS] = ACTIONS(1850), - [anon_sym_DASH] = ACTIONS(1850), - [anon_sym_TILDE] = ACTIONS(1416), - [anon_sym_void] = ACTIONS(1432), - [anon_sym_delete] = ACTIONS(1432), - [anon_sym_PLUS_PLUS] = ACTIONS(1434), - [anon_sym_DASH_DASH] = ACTIONS(1434), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(1122), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(1430), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), [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(1442), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1408), [anon_sym_readonly] = ACTIONS(1408), @@ -100664,1309 +99071,1214 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1408), [anon_sym_symbol] = ACTIONS(1408), }, - [852] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3523), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [835] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2937), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [853] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3378), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [836] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2287), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [854] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2699), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [837] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2284), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [855] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [838] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3162), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [856] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2098), - [sym_expression] = STATE(3036), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5978), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5978), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5980), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2098), - [sym_subscript_expression] = STATE(2098), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3882), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5978), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [839] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1476), + [sym_expression] = STATE(2524), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(5971), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(5971), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(5976), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1476), + [sym_subscript_expression] = STATE(1476), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3899), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(5971), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2098), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1704), - [anon_sym_export] = ACTIONS(976), - [anon_sym_type] = ACTIONS(976), - [anon_sym_namespace] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(984), - [anon_sym_yield] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(988), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1710), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(982), - [anon_sym_void] = ACTIONS(996), - [anon_sym_delete] = ACTIONS(996), - [anon_sym_PLUS_PLUS] = ACTIONS(998), - [anon_sym_DASH_DASH] = ACTIONS(998), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1000), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1476), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1696), + [anon_sym_export] = ACTIONS(768), + [anon_sym_type] = ACTIONS(768), + [anon_sym_namespace] = ACTIONS(770), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(810), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(778), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(782), + [anon_sym_yield] = ACTIONS(784), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(794), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1702), + [anon_sym_PLUS] = ACTIONS(1700), + [anon_sym_DASH] = ACTIONS(1700), + [anon_sym_TILDE] = ACTIONS(778), + [anon_sym_void] = ACTIONS(810), + [anon_sym_delete] = ACTIONS(810), + [anon_sym_PLUS_PLUS] = ACTIONS(812), + [anon_sym_DASH_DASH] = ACTIONS(812), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(828), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(976), - [anon_sym_readonly] = ACTIONS(976), - [anon_sym_get] = ACTIONS(976), - [anon_sym_set] = ACTIONS(976), - [anon_sym_declare] = ACTIONS(976), - [anon_sym_public] = ACTIONS(976), - [anon_sym_private] = ACTIONS(976), - [anon_sym_protected] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_any] = ACTIONS(976), - [anon_sym_number] = ACTIONS(976), - [anon_sym_boolean] = ACTIONS(976), - [anon_sym_string] = ACTIONS(976), - [anon_sym_symbol] = ACTIONS(976), + [anon_sym_static] = ACTIONS(768), + [anon_sym_readonly] = 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), }, - [857] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [840] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [858] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2703), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [841] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1434), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5822), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5822), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1434), + [sym_subscript_expression] = STATE(1434), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3887), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5822), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1434), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1406), + [anon_sym_export] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1408), + [anon_sym_namespace] = ACTIONS(1412), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1416), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1434), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1422), + [anon_sym_yield] = ACTIONS(1424), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1430), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1432), + [anon_sym_PLUS] = ACTIONS(1418), + [anon_sym_DASH] = ACTIONS(1418), + [anon_sym_TILDE] = ACTIONS(1434), + [anon_sym_void] = ACTIONS(1416), + [anon_sym_delete] = ACTIONS(1416), + [anon_sym_PLUS_PLUS] = ACTIONS(1436), + [anon_sym_DASH_DASH] = ACTIONS(1436), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1440), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1408), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1408), + [anon_sym_set] = ACTIONS(1408), + [anon_sym_declare] = ACTIONS(1408), + [anon_sym_public] = ACTIONS(1408), + [anon_sym_private] = ACTIONS(1408), + [anon_sym_protected] = ACTIONS(1408), + [anon_sym_module] = ACTIONS(1408), + [anon_sym_any] = ACTIONS(1408), + [anon_sym_number] = ACTIONS(1408), + [anon_sym_boolean] = ACTIONS(1408), + [anon_sym_string] = ACTIONS(1408), + [anon_sym_symbol] = ACTIONS(1408), }, - [859] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2704), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [842] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3160), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [860] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2705), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [843] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5883), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5883), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5906), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3897), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5883), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2076), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1684), + [anon_sym_export] = ACTIONS(1444), + [anon_sym_type] = ACTIONS(1444), + [anon_sym_namespace] = ACTIONS(1446), + [anon_sym_LBRACE] = ACTIONS(1688), + [anon_sym_typeof] = ACTIONS(1468), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1452), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1454), + [anon_sym_yield] = ACTIONS(1456), + [anon_sym_LBRACK] = ACTIONS(1692), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1460), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1694), + [anon_sym_PLUS] = ACTIONS(1690), + [anon_sym_DASH] = ACTIONS(1690), + [anon_sym_TILDE] = ACTIONS(1452), + [anon_sym_void] = ACTIONS(1468), + [anon_sym_delete] = ACTIONS(1468), + [anon_sym_PLUS_PLUS] = ACTIONS(1470), + [anon_sym_DASH_DASH] = ACTIONS(1470), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), - }, - [861] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2405), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_undefined] = ACTIONS(1472), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(1444), + [anon_sym_readonly] = 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), }, - [862] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2404), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), + [844] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2949), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [863] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2706), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [845] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3153), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [864] = { - [sym_import] = STATE(2967), - [sym_parenthesized_expression] = STATE(1485), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(2959), - [sym_yield_expression] = STATE(2958), - [sym_object] = STATE(2967), - [sym_object_pattern] = STATE(5939), - [sym_array] = STATE(2967), - [sym_array_pattern] = STATE(5939), - [sym_jsx_element] = STATE(2958), - [sym_jsx_fragment] = STATE(2958), - [sym_jsx_opening_element] = STATE(4060), - [sym_jsx_self_closing_element] = STATE(2958), - [sym_class] = STATE(2967), - [sym_function] = STATE(2967), - [sym_generator_function] = STATE(2967), - [sym_arrow_function] = STATE(2967), - [sym__call_signature] = STATE(5940), - [sym_call_expression] = STATE(2967), - [sym_new_expression] = STATE(2958), - [sym_await_expression] = STATE(2958), - [sym_member_expression] = STATE(1485), - [sym_subscript_expression] = STATE(1485), - [sym_assignment_expression] = STATE(2958), - [sym__augmented_assignment_lhs] = STATE(3874), - [sym_augmented_assignment_expression] = STATE(2958), - [sym__destructuring_pattern] = STATE(5939), - [sym_ternary_expression] = STATE(2958), - [sym_binary_expression] = STATE(2958), - [sym_unary_expression] = STATE(2958), - [sym_update_expression] = STATE(2958), - [sym_string] = STATE(2967), - [sym_template_string] = STATE(2967), - [sym_regex] = STATE(2967), - [sym_meta_property] = STATE(2967), + [846] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2390), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1485), - [sym_as_expression] = STATE(2958), - [sym_internal_module] = STATE(2958), - [sym_type_parameters] = STATE(5504), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), [aux_sym_export_statement_repeat1] = STATE(4944), - [sym_identifier] = ACTIONS(1662), - [anon_sym_export] = ACTIONS(1254), - [anon_sym_type] = ACTIONS(1254), - [anon_sym_namespace] = ACTIONS(1256), - [anon_sym_LBRACE] = ACTIONS(1666), - [anon_sym_typeof] = ACTIONS(1290), - [anon_sym_import] = ACTIONS(1262), - [anon_sym_BANG] = ACTIONS(1264), - [anon_sym_LPAREN] = ACTIONS(1670), - [anon_sym_await] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1672), - [anon_sym_LT] = ACTIONS(1274), - [anon_sym_SLASH] = ACTIONS(1276), - [anon_sym_class] = ACTIONS(1278), - [anon_sym_async] = ACTIONS(1280), - [anon_sym_function] = ACTIONS(1282), - [anon_sym_new] = ACTIONS(1676), - [anon_sym_PLUS] = ACTIONS(1668), - [anon_sym_DASH] = ACTIONS(1668), - [anon_sym_TILDE] = ACTIONS(1264), - [anon_sym_void] = ACTIONS(1290), - [anon_sym_delete] = ACTIONS(1290), - [anon_sym_PLUS_PLUS] = ACTIONS(1292), - [anon_sym_DASH_DASH] = ACTIONS(1292), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1298), - [sym_number] = ACTIONS(1678), - [sym_this] = ACTIONS(1304), - [sym_super] = ACTIONS(1304), - [sym_true] = ACTIONS(1304), - [sym_false] = ACTIONS(1304), - [sym_null] = ACTIONS(1304), - [sym_undefined] = ACTIONS(1308), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1254), - [anon_sym_readonly] = ACTIONS(1254), - [anon_sym_get] = ACTIONS(1254), - [anon_sym_set] = ACTIONS(1254), - [anon_sym_declare] = ACTIONS(1254), - [anon_sym_public] = ACTIONS(1254), - [anon_sym_private] = ACTIONS(1254), - [anon_sym_protected] = ACTIONS(1254), - [anon_sym_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_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, - [865] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2235), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [847] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2886), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -101977,376 +100289,946 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [866] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), + [848] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2686), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [849] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3383), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1862), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1868), + [anon_sym_PLUS] = ACTIONS(1866), + [anon_sym_DASH] = ACTIONS(1866), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [867] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2711), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [850] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2865), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [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(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), + }, + [851] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2854), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(2840), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1368), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), + }, + [852] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2946), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [853] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(3010), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [868] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3270), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [854] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2944), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [855] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2048), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5908), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5908), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6044), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2048), + [sym_subscript_expression] = STATE(2048), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3886), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5908), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2048), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1798), + [anon_sym_export] = ACTIONS(900), + [anon_sym_type] = ACTIONS(900), + [anon_sym_namespace] = ACTIONS(902), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(926), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(908), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(910), + [anon_sym_yield] = ACTIONS(912), + [anon_sym_LBRACK] = ACTIONS(1426), + [anon_sym_LT] = ACTIONS(588), + [anon_sym_SLASH] = ACTIONS(916), + [anon_sym_class] = ACTIONS(592), + [anon_sym_async] = ACTIONS(918), + [anon_sym_function] = ACTIONS(596), + [anon_sym_new] = ACTIONS(1804), + [anon_sym_PLUS] = ACTIONS(1802), + [anon_sym_DASH] = ACTIONS(1802), + [anon_sym_TILDE] = ACTIONS(908), + [anon_sym_void] = ACTIONS(926), + [anon_sym_delete] = ACTIONS(926), + [anon_sym_PLUS_PLUS] = ACTIONS(928), + [anon_sym_DASH_DASH] = ACTIONS(928), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(620), + [sym_number] = ACTIONS(1438), + [sym_this] = ACTIONS(626), + [sym_super] = ACTIONS(626), + [sym_true] = ACTIONS(626), + [sym_false] = ACTIONS(626), + [sym_null] = ACTIONS(626), + [sym_undefined] = ACTIONS(936), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(900), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(900), + [anon_sym_set] = ACTIONS(900), + [anon_sym_declare] = ACTIONS(900), + [anon_sym_public] = ACTIONS(900), + [anon_sym_private] = ACTIONS(900), + [anon_sym_protected] = ACTIONS(900), + [anon_sym_module] = ACTIONS(900), + [anon_sym_any] = ACTIONS(900), + [anon_sym_number] = ACTIONS(900), + [anon_sym_boolean] = ACTIONS(900), + [anon_sym_string] = ACTIONS(900), + [anon_sym_symbol] = ACTIONS(900), + }, + [856] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), + [anon_sym_import] = ACTIONS(574), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [869] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2340), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [857] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2742), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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), @@ -102357,186 +101239,471 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [870] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3229), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [858] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [859] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2477), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [860] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3157), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1860), [anon_sym_PLUS] = ACTIONS(1858), [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1178), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), + }, + [861] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, - [871] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2344), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [862] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(1681), + [sym_expression] = STATE(2733), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(6056), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(6056), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(6060), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(1681), + [sym_subscript_expression] = STATE(1681), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3877), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(6056), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1681), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1680), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_type] = ACTIONS(1270), + [anon_sym_namespace] = ACTIONS(1272), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1280), + [anon_sym_function] = ACTIONS(1012), + [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), @@ -102547,91 +101714,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1270), + [anon_sym_readonly] = 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), }, - [872] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2330), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [863] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -102642,91 +101809,186 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [873] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), + [864] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2459), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [865] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2908), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -102737,281 +101999,281 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [874] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [866] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2909), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [875] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2723), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [867] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2910), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(2838), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [876] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2315), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [868] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2911), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -103022,471 +102284,376 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [877] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2718), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [869] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2912), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [878] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3453), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [870] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2430), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [879] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3339), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [871] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1335), + [sym_expression] = STATE(3394), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5992), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5992), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6148), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1335), + [sym_subscript_expression] = STATE(1335), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3885), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5992), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1335), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [anon_sym_export] = ACTIONS(1186), + [anon_sym_type] = ACTIONS(1186), + [anon_sym_namespace] = ACTIONS(1188), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1210), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1194), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1196), + [anon_sym_yield] = ACTIONS(1198), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1202), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1868), [anon_sym_PLUS] = ACTIONS(1866), [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), - }, - [880] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2722), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), - [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), + [anon_sym_TILDE] = ACTIONS(1194), + [anon_sym_void] = ACTIONS(1210), + [anon_sym_delete] = ACTIONS(1210), + [anon_sym_PLUS_PLUS] = ACTIONS(1212), + [anon_sym_DASH_DASH] = ACTIONS(1212), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_undefined] = ACTIONS(1220), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1186), + [anon_sym_readonly] = 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), }, - [881] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2238), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [872] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2913), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -103497,91 +102664,91 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [882] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2297), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), + [873] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -103592,186 +102759,281 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [883] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3410), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [874] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2045), + [sym_expression] = STATE(2979), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5749), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5749), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5809), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2045), + [sym_subscript_expression] = STATE(2045), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3898), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5749), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2045), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1838), + [anon_sym_export] = ACTIONS(1592), + [anon_sym_type] = ACTIONS(1592), + [anon_sym_namespace] = ACTIONS(1594), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1614), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1598), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1600), + [anon_sym_yield] = ACTIONS(1602), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1604), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1606), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1844), + [anon_sym_PLUS] = ACTIONS(1842), + [anon_sym_DASH] = ACTIONS(1842), + [anon_sym_TILDE] = ACTIONS(1598), + [anon_sym_void] = ACTIONS(1614), + [anon_sym_delete] = ACTIONS(1614), + [anon_sym_PLUS_PLUS] = ACTIONS(1616), + [anon_sym_DASH_DASH] = ACTIONS(1616), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1618), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1592), + [anon_sym_readonly] = ACTIONS(1592), + [anon_sym_get] = ACTIONS(1592), + [anon_sym_set] = ACTIONS(1592), + [anon_sym_declare] = ACTIONS(1592), + [anon_sym_public] = ACTIONS(1592), + [anon_sym_private] = ACTIONS(1592), + [anon_sym_protected] = ACTIONS(1592), + [anon_sym_module] = ACTIONS(1592), + [anon_sym_any] = ACTIONS(1592), + [anon_sym_number] = ACTIONS(1592), + [anon_sym_boolean] = ACTIONS(1592), + [anon_sym_string] = ACTIONS(1592), + [anon_sym_symbol] = ACTIONS(1592), }, - [884] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2292), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [875] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2385), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [876] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2914), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -103782,186 +103044,281 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [885] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2723), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [877] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2917), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [886] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2290), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), + [878] = { + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [879] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -103972,186 +103329,186 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [887] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3408), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [880] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [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(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [888] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2175), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [881] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2923), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -104162,186 +103519,186 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [889] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2724), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5898), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5898), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6083), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3885), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5898), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [882] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2384), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2049), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1712), - [anon_sym_export] = ACTIONS(1504), - [anon_sym_type] = ACTIONS(1504), - [anon_sym_namespace] = ACTIONS(1506), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1526), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(1516), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1518), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1718), - [anon_sym_PLUS] = ACTIONS(1716), - [anon_sym_DASH] = ACTIONS(1716), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1526), - [anon_sym_PLUS_PLUS] = ACTIONS(1528), - [anon_sym_DASH_DASH] = ACTIONS(1528), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1530), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1504), - [anon_sym_readonly] = ACTIONS(1504), - [anon_sym_get] = ACTIONS(1504), - [anon_sym_set] = ACTIONS(1504), - [anon_sym_declare] = ACTIONS(1504), - [anon_sym_public] = ACTIONS(1504), - [anon_sym_private] = ACTIONS(1504), - [anon_sym_protected] = ACTIONS(1504), - [anon_sym_module] = ACTIONS(1504), - [anon_sym_any] = ACTIONS(1504), - [anon_sym_number] = ACTIONS(1504), - [anon_sym_boolean] = ACTIONS(1504), - [anon_sym_string] = ACTIONS(1504), - [anon_sym_symbol] = ACTIONS(1504), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, - [890] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2178), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), + [883] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2446), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -104352,471 +103709,566 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [891] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3486), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [884] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2445), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [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(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [892] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3525), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [885] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2942), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, - [893] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2319), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), - [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [886] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2038), + [sym_expression] = STATE(2925), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5834), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5834), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5832), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2038), + [sym_subscript_expression] = STATE(2038), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3882), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5834), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2038), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1814), + [anon_sym_export] = ACTIONS(1334), + [anon_sym_type] = ACTIONS(1334), + [anon_sym_namespace] = ACTIONS(1336), + [anon_sym_LBRACE] = ACTIONS(1046), + [anon_sym_typeof] = ACTIONS(1358), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1342), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), + [anon_sym_await] = ACTIONS(1344), + [anon_sym_yield] = ACTIONS(1346), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1350), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1820), + [anon_sym_PLUS] = ACTIONS(1818), + [anon_sym_DASH] = ACTIONS(1818), + [anon_sym_TILDE] = ACTIONS(1342), + [anon_sym_void] = ACTIONS(1358), + [anon_sym_delete] = ACTIONS(1358), + [anon_sym_PLUS_PLUS] = ACTIONS(1360), + [anon_sym_DASH_DASH] = ACTIONS(1360), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2852), + [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(968), + [sym_undefined] = ACTIONS(1368), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1334), + [anon_sym_readonly] = ACTIONS(1334), + [anon_sym_get] = ACTIONS(1334), + [anon_sym_set] = ACTIONS(1334), + [anon_sym_declare] = ACTIONS(1334), + [anon_sym_public] = ACTIONS(1334), + [anon_sym_private] = ACTIONS(1334), + [anon_sym_protected] = ACTIONS(1334), + [anon_sym_module] = ACTIONS(1334), + [anon_sym_any] = ACTIONS(1334), + [anon_sym_number] = ACTIONS(1334), + [anon_sym_boolean] = ACTIONS(1334), + [anon_sym_string] = ACTIONS(1334), + [anon_sym_symbol] = ACTIONS(1334), }, - [894] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3275), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [887] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [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(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [895] = { - [sym_import] = STATE(2475), - [sym_parenthesized_expression] = STATE(1456), - [sym_expression] = STATE(2188), - [sym_primary_expression] = STATE(2482), - [sym_yield_expression] = STATE(2484), - [sym_object] = STATE(2475), - [sym_object_pattern] = STATE(5767), - [sym_array] = STATE(2475), - [sym_array_pattern] = STATE(5767), - [sym_jsx_element] = STATE(2484), - [sym_jsx_fragment] = STATE(2484), - [sym_jsx_opening_element] = STATE(4047), - [sym_jsx_self_closing_element] = STATE(2484), - [sym_class] = STATE(2475), - [sym_function] = STATE(2475), - [sym_generator_function] = STATE(2475), - [sym_arrow_function] = STATE(2475), - [sym__call_signature] = STATE(5765), - [sym_call_expression] = STATE(2475), - [sym_new_expression] = STATE(2484), - [sym_await_expression] = STATE(2484), - [sym_member_expression] = STATE(1456), - [sym_subscript_expression] = STATE(1456), - [sym_assignment_expression] = STATE(2484), + [888] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2941), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), + }, + [889] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2441), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), [sym__augmented_assignment_lhs] = STATE(3880), - [sym_augmented_assignment_expression] = STATE(2484), - [sym__destructuring_pattern] = STATE(5767), - [sym_ternary_expression] = STATE(2484), - [sym_binary_expression] = STATE(2484), - [sym_unary_expression] = STATE(2484), - [sym_update_expression] = STATE(2484), - [sym_string] = STATE(2475), - [sym_template_string] = STATE(2475), - [sym_regex] = STATE(2475), - [sym_meta_property] = STATE(2475), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1456), - [sym_as_expression] = STATE(2484), - [sym_internal_module] = STATE(2484), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(5016), - [sym_identifier] = ACTIONS(1390), - [anon_sym_export] = ACTIONS(934), - [anon_sym_type] = ACTIONS(934), - [anon_sym_namespace] = ACTIONS(936), - [anon_sym_LBRACE] = ACTIONS(1396), - [anon_sym_typeof] = ACTIONS(958), - [anon_sym_import] = ACTIONS(890), - [anon_sym_BANG] = ACTIONS(942), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(944), - [anon_sym_yield] = ACTIONS(946), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(902), - [anon_sym_class] = ACTIONS(904), - [anon_sym_async] = ACTIONS(950), - [anon_sym_function] = ACTIONS(908), - [anon_sym_new] = ACTIONS(1404), - [anon_sym_PLUS] = ACTIONS(1400), - [anon_sym_DASH] = ACTIONS(1400), - [anon_sym_TILDE] = ACTIONS(942), - [anon_sym_void] = ACTIONS(958), - [anon_sym_delete] = ACTIONS(958), - [anon_sym_PLUS_PLUS] = ACTIONS(960), - [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -104827,2791 +104279,3277 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(968), + [sym_undefined] = ACTIONS(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(934), - [anon_sym_readonly] = 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_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, - [896] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1850), - [sym_expression] = STATE(2621), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5853), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5853), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5881), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1850), - [sym_subscript_expression] = STATE(1850), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3894), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5853), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [890] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2383), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [891] = { + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [892] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(1540), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6147), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6147), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5993), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(1540), + [sym_subscript_expression] = STATE(1540), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3881), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6147), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1850), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(1582), - [anon_sym_type] = ACTIONS(1582), - [anon_sym_namespace] = ACTIONS(1584), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1602), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1540), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1672), + [anon_sym_export] = ACTIONS(1074), + [anon_sym_type] = ACTIONS(1074), + [anon_sym_namespace] = ACTIONS(1076), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(612), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1588), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1590), - [anon_sym_yield] = ACTIONS(1592), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(576), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(580), + [anon_sym_yield] = ACTIONS(582), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1594), + [anon_sym_async] = ACTIONS(1084), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1812), - [anon_sym_PLUS] = ACTIONS(1808), - [anon_sym_DASH] = ACTIONS(1808), - [anon_sym_TILDE] = ACTIONS(1588), - [anon_sym_void] = ACTIONS(1602), - [anon_sym_delete] = ACTIONS(1602), - [anon_sym_PLUS_PLUS] = ACTIONS(1604), - [anon_sym_DASH_DASH] = ACTIONS(1604), + [anon_sym_new] = ACTIONS(1678), + [anon_sym_PLUS] = ACTIONS(1676), + [anon_sym_DASH] = ACTIONS(1676), + [anon_sym_TILDE] = ACTIONS(576), + [anon_sym_void] = ACTIONS(612), + [anon_sym_delete] = ACTIONS(612), + [anon_sym_PLUS_PLUS] = ACTIONS(614), + [anon_sym_DASH_DASH] = ACTIONS(614), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2884), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1606), + [sym_undefined] = ACTIONS(630), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1582), - [anon_sym_readonly] = ACTIONS(1582), - [anon_sym_get] = ACTIONS(1582), - [anon_sym_set] = ACTIONS(1582), - [anon_sym_declare] = ACTIONS(1582), - [anon_sym_public] = ACTIONS(1582), - [anon_sym_private] = ACTIONS(1582), - [anon_sym_protected] = ACTIONS(1582), - [anon_sym_module] = ACTIONS(1582), - [anon_sym_any] = ACTIONS(1582), - [anon_sym_number] = ACTIONS(1582), - [anon_sym_boolean] = ACTIONS(1582), - [anon_sym_string] = ACTIONS(1582), - [anon_sym_symbol] = ACTIONS(1582), + [anon_sym_static] = ACTIONS(1074), + [anon_sym_readonly] = ACTIONS(1074), + [anon_sym_get] = ACTIONS(1074), + [anon_sym_set] = ACTIONS(1074), + [anon_sym_declare] = ACTIONS(1074), + [anon_sym_public] = ACTIONS(1074), + [anon_sym_private] = ACTIONS(1074), + [anon_sym_protected] = ACTIONS(1074), + [anon_sym_module] = ACTIONS(1074), + [anon_sym_any] = ACTIONS(1074), + [anon_sym_number] = ACTIONS(1074), + [anon_sym_boolean] = ACTIONS(1074), + [anon_sym_string] = ACTIONS(1074), + [anon_sym_symbol] = ACTIONS(1074), }, - [897] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3538), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [893] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3158), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1854), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), + [anon_sym_new] = ACTIONS(1860), + [anon_sym_PLUS] = ACTIONS(1858), + [anon_sym_DASH] = ACTIONS(1858), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [898] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3293), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [894] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3206), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1860), [anon_sym_PLUS] = ACTIONS(1858), [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [899] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3277), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [895] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3279), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, - [900] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3278), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [896] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3205), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1860), [anon_sym_PLUS] = ACTIONS(1858), [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), }, - [901] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3291), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [897] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2100), + [sym_expression] = STATE(3304), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6107), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6107), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6102), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2100), + [sym_subscript_expression] = STATE(2100), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3892), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6107), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2100), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [anon_sym_export] = ACTIONS(1144), + [anon_sym_type] = ACTIONS(1144), + [anon_sym_namespace] = ACTIONS(1146), + [anon_sym_LBRACE] = ACTIONS(1782), + [anon_sym_typeof] = ACTIONS(1168), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1152), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1154), + [anon_sym_yield] = ACTIONS(1156), + [anon_sym_LBRACK] = ACTIONS(1786), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1160), [anon_sym_function] = ACTIONS(596), [anon_sym_new] = ACTIONS(1860), [anon_sym_PLUS] = ACTIONS(1858), [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_TILDE] = ACTIONS(1152), + [anon_sym_void] = ACTIONS(1168), + [anon_sym_delete] = ACTIONS(1168), + [anon_sym_PLUS_PLUS] = ACTIONS(1170), + [anon_sym_DASH_DASH] = ACTIONS(1170), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1178), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), - }, - [902] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3290), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [anon_sym_static] = ACTIONS(1144), + [anon_sym_readonly] = ACTIONS(1144), + [anon_sym_get] = ACTIONS(1144), + [anon_sym_set] = ACTIONS(1144), + [anon_sym_declare] = ACTIONS(1144), + [anon_sym_public] = ACTIONS(1144), + [anon_sym_private] = ACTIONS(1144), + [anon_sym_protected] = ACTIONS(1144), + [anon_sym_module] = ACTIONS(1144), + [anon_sym_any] = ACTIONS(1144), + [anon_sym_number] = ACTIONS(1144), + [anon_sym_boolean] = ACTIONS(1144), + [anon_sym_string] = ACTIONS(1144), + [anon_sym_symbol] = ACTIONS(1144), + }, + [898] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2902), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(2842), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, - [903] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3287), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [899] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [900] = { + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3281), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1584), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), + }, + [901] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2437), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [902] = { + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [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(1514), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), + }, + [903] = { + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2939), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), + [sym_decorator] = STATE(3864), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, [904] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3286), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2088), + [sym_expression] = STATE(2781), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(6106), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(6106), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(6110), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2088), + [sym_subscript_expression] = STATE(2088), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3883), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(6106), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2088), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1806), + [anon_sym_export] = ACTIONS(1110), + [anon_sym_type] = ACTIONS(1110), + [anon_sym_namespace] = ACTIONS(1112), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1132), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1116), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1118), + [anon_sym_yield] = ACTIONS(1120), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), + [anon_sym_SLASH] = ACTIONS(1122), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1124), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1812), + [anon_sym_PLUS] = ACTIONS(1810), + [anon_sym_DASH] = ACTIONS(1810), + [anon_sym_TILDE] = ACTIONS(1116), + [anon_sym_void] = ACTIONS(1132), + [anon_sym_delete] = ACTIONS(1132), + [anon_sym_PLUS_PLUS] = ACTIONS(1134), + [anon_sym_DASH_DASH] = ACTIONS(1134), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1136), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1110), + [anon_sym_readonly] = ACTIONS(1110), + [anon_sym_get] = ACTIONS(1110), + [anon_sym_set] = ACTIONS(1110), + [anon_sym_declare] = ACTIONS(1110), + [anon_sym_public] = ACTIONS(1110), + [anon_sym_private] = ACTIONS(1110), + [anon_sym_protected] = ACTIONS(1110), + [anon_sym_module] = ACTIONS(1110), + [anon_sym_any] = ACTIONS(1110), + [anon_sym_number] = ACTIONS(1110), + [anon_sym_boolean] = ACTIONS(1110), + [anon_sym_string] = ACTIONS(1110), + [anon_sym_symbol] = ACTIONS(1110), }, [905] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3285), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2172), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(3289), + [sym_primary_expression] = STATE(2295), + [sym_yield_expression] = STATE(2298), + [sym_object] = STATE(2172), + [sym_object_pattern] = STATE(5807), + [sym_array] = STATE(2172), + [sym_array_pattern] = STATE(5807), + [sym_jsx_element] = STATE(2298), + [sym_jsx_fragment] = STATE(2298), + [sym_jsx_opening_element] = STATE(4064), + [sym_jsx_self_closing_element] = STATE(2298), + [sym_class] = STATE(2172), + [sym_function] = STATE(2172), + [sym_generator_function] = STATE(2172), + [sym_arrow_function] = STATE(2172), + [sym__call_signature] = STATE(5936), + [sym_call_expression] = STATE(2172), + [sym_new_expression] = STATE(2298), + [sym_await_expression] = STATE(2298), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2298), + [sym__augmented_assignment_lhs] = STATE(3878), + [sym_augmented_assignment_expression] = STATE(2298), + [sym__destructuring_pattern] = STATE(5807), + [sym_ternary_expression] = STATE(2298), + [sym_binary_expression] = STATE(2298), + [sym_unary_expression] = STATE(2298), + [sym_update_expression] = STATE(2298), + [sym_string] = STATE(2172), + [sym_template_string] = STATE(2172), + [sym_regex] = STATE(2172), + [sym_meta_property] = STATE(2172), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2040), + [sym_as_expression] = STATE(2298), + [sym_internal_module] = STATE(2298), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1830), + [anon_sym_export] = ACTIONS(1558), + [anon_sym_type] = ACTIONS(1558), + [anon_sym_namespace] = ACTIONS(1560), + [anon_sym_LBRACE] = ACTIONS(1414), + [anon_sym_typeof] = ACTIONS(1580), [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), + [anon_sym_BANG] = ACTIONS(1566), + [anon_sym_LPAREN] = ACTIONS(1420), + [anon_sym_await] = ACTIONS(1568), + [anon_sym_yield] = ACTIONS(1570), + [anon_sym_LBRACK] = ACTIONS(1426), [anon_sym_LT] = ACTIONS(588), [anon_sym_SLASH] = ACTIONS(590), [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), + [anon_sym_async] = ACTIONS(1572), [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), + [anon_sym_new] = ACTIONS(1836), + [anon_sym_PLUS] = ACTIONS(1834), + [anon_sym_DASH] = ACTIONS(1834), + [anon_sym_TILDE] = ACTIONS(1566), + [anon_sym_void] = ACTIONS(1580), + [anon_sym_delete] = ACTIONS(1580), + [anon_sym_PLUS_PLUS] = ACTIONS(1582), + [anon_sym_DASH_DASH] = ACTIONS(1582), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), + [sym_number] = ACTIONS(1438), [sym_this] = ACTIONS(626), [sym_super] = ACTIONS(626), [sym_true] = ACTIONS(626), [sym_false] = ACTIONS(626), [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_undefined] = ACTIONS(1584), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1558), + [anon_sym_readonly] = ACTIONS(1558), + [anon_sym_get] = ACTIONS(1558), + [anon_sym_set] = ACTIONS(1558), + [anon_sym_declare] = ACTIONS(1558), + [anon_sym_public] = ACTIONS(1558), + [anon_sym_private] = ACTIONS(1558), + [anon_sym_protected] = ACTIONS(1558), + [anon_sym_module] = ACTIONS(1558), + [anon_sym_any] = ACTIONS(1558), + [anon_sym_number] = ACTIONS(1558), + [anon_sym_boolean] = ACTIONS(1558), + [anon_sym_string] = ACTIONS(1558), + [anon_sym_symbol] = ACTIONS(1558), }, [906] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3282), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2413), + [sym_parenthesized_expression] = STATE(2035), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(2434), + [sym_yield_expression] = STATE(2453), + [sym_object] = STATE(2413), + [sym_object_pattern] = STATE(5926), + [sym_array] = STATE(2413), + [sym_array_pattern] = STATE(5926), + [sym_jsx_element] = STATE(2453), + [sym_jsx_fragment] = STATE(2453), + [sym_jsx_opening_element] = STATE(4052), + [sym_jsx_self_closing_element] = STATE(2453), + [sym_class] = STATE(2413), + [sym_function] = STATE(2413), + [sym_generator_function] = STATE(2413), + [sym_arrow_function] = STATE(2413), + [sym__call_signature] = STATE(5924), + [sym_call_expression] = STATE(2413), + [sym_new_expression] = STATE(2453), + [sym_await_expression] = STATE(2453), + [sym_member_expression] = STATE(2035), + [sym_subscript_expression] = STATE(2035), + [sym_assignment_expression] = STATE(2453), + [sym__augmented_assignment_lhs] = STATE(3880), + [sym_augmented_assignment_expression] = STATE(2453), + [sym__destructuring_pattern] = STATE(5926), + [sym_ternary_expression] = STATE(2453), + [sym_binary_expression] = STATE(2453), + [sym_unary_expression] = STATE(2453), + [sym_update_expression] = STATE(2453), + [sym_string] = STATE(2413), + [sym_template_string] = STATE(2413), + [sym_regex] = STATE(2413), + [sym_meta_property] = STATE(2413), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2035), + [sym_as_expression] = STATE(2453), + [sym_internal_module] = STATE(2453), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5071), + [sym_identifier] = ACTIONS(1660), + [anon_sym_export] = ACTIONS(1480), + [anon_sym_type] = ACTIONS(1480), + [anon_sym_namespace] = ACTIONS(1482), + [anon_sym_LBRACE] = ACTIONS(1664), + [anon_sym_typeof] = ACTIONS(1504), + [anon_sym_import] = ACTIONS(996), + [anon_sym_BANG] = ACTIONS(1488), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1490), + [anon_sym_yield] = ACTIONS(1492), + [anon_sym_LBRACK] = ACTIONS(1668), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1060), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1496), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1670), + [anon_sym_PLUS] = ACTIONS(1666), + [anon_sym_DASH] = ACTIONS(1666), + [anon_sym_TILDE] = ACTIONS(1488), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1504), + [anon_sym_PLUS_PLUS] = ACTIONS(1506), + [anon_sym_DASH_DASH] = ACTIONS(1506), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [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(1514), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(1480), + [anon_sym_readonly] = ACTIONS(1480), + [anon_sym_get] = ACTIONS(1480), + [anon_sym_set] = ACTIONS(1480), + [anon_sym_declare] = ACTIONS(1480), + [anon_sym_public] = ACTIONS(1480), + [anon_sym_private] = ACTIONS(1480), + [anon_sym_protected] = ACTIONS(1480), + [anon_sym_module] = ACTIONS(1480), + [anon_sym_any] = ACTIONS(1480), + [anon_sym_number] = ACTIONS(1480), + [anon_sym_boolean] = ACTIONS(1480), + [anon_sym_string] = ACTIONS(1480), + [anon_sym_symbol] = ACTIONS(1480), }, [907] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3281), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2805), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, [908] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(1347), - [sym_expression] = STATE(3521), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(6005), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(6005), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(6031), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(1347), - [sym_subscript_expression] = STATE(1347), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3877), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(6005), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2379), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(1347), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1862), - [anon_sym_export] = ACTIONS(1044), - [anon_sym_type] = ACTIONS(1044), - [anon_sym_namespace] = ACTIONS(1046), - [anon_sym_LBRACE] = ACTIONS(1806), - [anon_sym_typeof] = ACTIONS(1068), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1052), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1054), - [anon_sym_yield] = ACTIONS(1056), - [anon_sym_LBRACK] = ACTIONS(1810), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1060), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1868), - [anon_sym_PLUS] = ACTIONS(1866), - [anon_sym_DASH] = ACTIONS(1866), - [anon_sym_TILDE] = ACTIONS(1052), - [anon_sym_void] = ACTIONS(1068), - [anon_sym_delete] = ACTIONS(1068), - [anon_sym_PLUS_PLUS] = ACTIONS(1070), - [anon_sym_DASH_DASH] = ACTIONS(1070), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1078), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1044), - [anon_sym_readonly] = ACTIONS(1044), - [anon_sym_get] = ACTIONS(1044), - [anon_sym_set] = ACTIONS(1044), - [anon_sym_declare] = ACTIONS(1044), - [anon_sym_public] = ACTIONS(1044), - [anon_sym_private] = ACTIONS(1044), - [anon_sym_protected] = ACTIONS(1044), - [anon_sym_module] = ACTIONS(1044), - [anon_sym_any] = ACTIONS(1044), - [anon_sym_number] = ACTIONS(1044), - [anon_sym_boolean] = ACTIONS(1044), - [anon_sym_string] = ACTIONS(1044), - [anon_sym_symbol] = ACTIONS(1044), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), }, [909] = { - [sym_import] = STATE(2339), - [sym_parenthesized_expression] = STATE(2055), - [sym_expression] = STATE(3279), - [sym_primary_expression] = STATE(2186), - [sym_yield_expression] = STATE(2187), - [sym_object] = STATE(2339), - [sym_object_pattern] = STATE(5781), - [sym_array] = STATE(2339), - [sym_array_pattern] = STATE(5781), - [sym_jsx_element] = STATE(2187), - [sym_jsx_fragment] = STATE(2187), - [sym_jsx_opening_element] = STATE(4053), - [sym_jsx_self_closing_element] = STATE(2187), - [sym_class] = STATE(2339), - [sym_function] = STATE(2339), - [sym_generator_function] = STATE(2339), - [sym_arrow_function] = STATE(2339), - [sym__call_signature] = STATE(5801), - [sym_call_expression] = STATE(2339), - [sym_new_expression] = STATE(2187), - [sym_await_expression] = STATE(2187), - [sym_member_expression] = STATE(2055), - [sym_subscript_expression] = STATE(2055), - [sym_assignment_expression] = STATE(2187), - [sym__augmented_assignment_lhs] = STATE(3893), - [sym_augmented_assignment_expression] = STATE(2187), - [sym__destructuring_pattern] = STATE(5781), - [sym_ternary_expression] = STATE(2187), - [sym_binary_expression] = STATE(2187), - [sym_unary_expression] = STATE(2187), - [sym_update_expression] = STATE(2187), - [sym_string] = STATE(2339), - [sym_template_string] = STATE(2339), - [sym_regex] = STATE(2339), - [sym_meta_property] = STATE(2339), + [sym_import] = STATE(3478), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2938), + [sym_primary_expression] = STATE(3472), + [sym_yield_expression] = STATE(3470), + [sym_object] = STATE(3478), + [sym_object_pattern] = STATE(5865), + [sym_array] = STATE(3478), + [sym_array_pattern] = STATE(5865), + [sym_jsx_element] = STATE(3470), + [sym_jsx_fragment] = STATE(3470), + [sym_jsx_opening_element] = STATE(4040), + [sym_jsx_self_closing_element] = STATE(3470), + [sym_class] = STATE(3478), + [sym_function] = STATE(3478), + [sym_generator_function] = STATE(3478), + [sym_arrow_function] = STATE(3478), + [sym__call_signature] = STATE(5860), + [sym_call_expression] = STATE(3478), + [sym_new_expression] = STATE(3470), + [sym_await_expression] = STATE(3470), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(3470), + [sym__augmented_assignment_lhs] = STATE(3874), + [sym_augmented_assignment_expression] = STATE(3470), + [sym__destructuring_pattern] = STATE(5865), + [sym_ternary_expression] = STATE(3470), + [sym_binary_expression] = STATE(3470), + [sym_unary_expression] = STATE(3470), + [sym_update_expression] = STATE(3470), + [sym_string] = STATE(3478), + [sym_template_string] = STATE(3478), + [sym_regex] = STATE(3478), + [sym_meta_property] = STATE(3478), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(4661), - [sym_non_null_expression] = STATE(2055), - [sym_as_expression] = STATE(2187), - [sym_internal_module] = STATE(2187), - [sym_type_parameters] = STATE(5504), - [aux_sym_export_statement_repeat1] = STATE(4924), - [sym_identifier] = ACTIONS(1854), - [anon_sym_export] = ACTIONS(1316), - [anon_sym_type] = ACTIONS(1316), - [anon_sym_namespace] = ACTIONS(1318), - [anon_sym_LBRACE] = ACTIONS(1488), - [anon_sym_typeof] = ACTIONS(1338), - [anon_sym_import] = ACTIONS(574), - [anon_sym_BANG] = ACTIONS(1324), - [anon_sym_LPAREN] = ACTIONS(1492), - [anon_sym_await] = ACTIONS(1326), - [anon_sym_yield] = ACTIONS(1328), - [anon_sym_LBRACK] = ACTIONS(1494), - [anon_sym_LT] = ACTIONS(588), - [anon_sym_SLASH] = ACTIONS(590), - [anon_sym_class] = ACTIONS(592), - [anon_sym_async] = ACTIONS(1330), - [anon_sym_function] = ACTIONS(596), - [anon_sym_new] = ACTIONS(1860), - [anon_sym_PLUS] = ACTIONS(1858), - [anon_sym_DASH] = ACTIONS(1858), - [anon_sym_TILDE] = ACTIONS(1324), - [anon_sym_void] = ACTIONS(1338), - [anon_sym_delete] = ACTIONS(1338), - [anon_sym_PLUS_PLUS] = ACTIONS(1340), - [anon_sym_DASH_DASH] = ACTIONS(1340), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(620), - [sym_number] = ACTIONS(1500), - [sym_this] = ACTIONS(626), - [sym_super] = ACTIONS(626), - [sym_true] = ACTIONS(626), - [sym_false] = ACTIONS(626), - [sym_null] = ACTIONS(626), - [sym_undefined] = ACTIONS(1342), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(2050), + [sym_as_expression] = STATE(3470), + [sym_internal_module] = STATE(3470), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(5075), + [sym_identifier] = ACTIONS(1822), + [anon_sym_export] = ACTIONS(838), + [anon_sym_type] = ACTIONS(838), + [anon_sym_namespace] = ACTIONS(840), + [anon_sym_LBRACE] = ACTIONS(2369), + [anon_sym_typeof] = ACTIONS(874), + [anon_sym_import] = ACTIONS(846), + [anon_sym_BANG] = ACTIONS(848), + [anon_sym_LPAREN] = ACTIONS(1768), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1770), + [anon_sym_LT] = ACTIONS(858), + [anon_sym_SLASH] = ACTIONS(860), + [anon_sym_class] = ACTIONS(862), + [anon_sym_async] = ACTIONS(864), + [anon_sym_function] = ACTIONS(866), + [anon_sym_new] = ACTIONS(1828), + [anon_sym_PLUS] = ACTIONS(1826), + [anon_sym_DASH] = ACTIONS(1826), + [anon_sym_TILDE] = ACTIONS(848), + [anon_sym_void] = ACTIONS(874), + [anon_sym_delete] = ACTIONS(874), + [anon_sym_PLUS_PLUS] = ACTIONS(876), + [anon_sym_DASH_DASH] = ACTIONS(876), + [anon_sym_DQUOTE] = ACTIONS(878), + [anon_sym_SQUOTE] = ACTIONS(880), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(882), + [sym_number] = ACTIONS(1776), + [sym_this] = ACTIONS(888), + [sym_super] = ACTIONS(888), + [sym_true] = ACTIONS(888), + [sym_false] = ACTIONS(888), + [sym_null] = ACTIONS(888), + [sym_undefined] = ACTIONS(892), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1316), - [anon_sym_readonly] = ACTIONS(1316), - [anon_sym_get] = ACTIONS(1316), - [anon_sym_set] = ACTIONS(1316), - [anon_sym_declare] = ACTIONS(1316), - [anon_sym_public] = ACTIONS(1316), - [anon_sym_private] = ACTIONS(1316), - [anon_sym_protected] = ACTIONS(1316), - [anon_sym_module] = ACTIONS(1316), - [anon_sym_any] = ACTIONS(1316), - [anon_sym_number] = ACTIONS(1316), - [anon_sym_boolean] = ACTIONS(1316), - [anon_sym_string] = ACTIONS(1316), - [anon_sym_symbol] = ACTIONS(1316), + [anon_sym_static] = ACTIONS(838), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(838), + [anon_sym_set] = ACTIONS(838), + [anon_sym_declare] = ACTIONS(838), + [anon_sym_public] = ACTIONS(838), + [anon_sym_private] = ACTIONS(838), + [anon_sym_protected] = ACTIONS(838), + [anon_sym_module] = ACTIONS(838), + [anon_sym_any] = ACTIONS(838), + [anon_sym_number] = ACTIONS(838), + [anon_sym_boolean] = ACTIONS(838), + [anon_sym_string] = ACTIONS(838), + [anon_sym_symbol] = ACTIONS(838), }, [910] = { - [sym__call_signature] = STATE(6093), - [sym_string] = STATE(4467), - [sym_formal_parameters] = STATE(4661), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [sym_type_parameters] = STATE(5504), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [911] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [sym_import] = STATE(2779), + [sym_parenthesized_expression] = STATE(1516), + [sym_expression] = STATE(2380), + [sym_primary_expression] = STATE(2843), + [sym_yield_expression] = STATE(2875), + [sym_object] = STATE(2779), + [sym_object_pattern] = STATE(6079), + [sym_array] = STATE(2779), + [sym_array_pattern] = STATE(6079), + [sym_jsx_element] = STATE(2875), + [sym_jsx_fragment] = STATE(2875), + [sym_jsx_opening_element] = STATE(4073), + [sym_jsx_self_closing_element] = STATE(2875), + [sym_class] = STATE(2779), + [sym_function] = STATE(2779), + [sym_generator_function] = STATE(2779), + [sym_arrow_function] = STATE(2779), + [sym__call_signature] = STATE(6081), + [sym_call_expression] = STATE(2779), + [sym_new_expression] = STATE(2875), + [sym_await_expression] = STATE(2875), + [sym_member_expression] = STATE(1516), + [sym_subscript_expression] = STATE(1516), + [sym_assignment_expression] = STATE(2875), + [sym__augmented_assignment_lhs] = STATE(3891), + [sym_augmented_assignment_expression] = STATE(2875), + [sym__destructuring_pattern] = STATE(6079), + [sym_ternary_expression] = STATE(2875), + [sym_binary_expression] = STATE(2875), + [sym_unary_expression] = STATE(2875), + [sym_update_expression] = STATE(2875), + [sym_string] = STATE(2779), + [sym_template_string] = STATE(2779), + [sym_regex] = STATE(2779), + [sym_meta_property] = STATE(2779), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_formal_parameters] = STATE(4737), + [sym_non_null_expression] = STATE(1516), + [sym_as_expression] = STATE(2875), + [sym_internal_module] = STATE(2875), + [sym_type_parameters] = STATE(5461), + [aux_sym_export_statement_repeat1] = STATE(4944), + [sym_identifier] = ACTIONS(1642), + [anon_sym_export] = ACTIONS(1228), + [anon_sym_type] = ACTIONS(1228), + [anon_sym_namespace] = ACTIONS(1230), + [anon_sym_LBRACE] = ACTIONS(1646), + [anon_sym_typeof] = ACTIONS(1252), + [anon_sym_import] = ACTIONS(776), + [anon_sym_BANG] = ACTIONS(1236), + [anon_sym_LPAREN] = ACTIONS(1650), + [anon_sym_await] = ACTIONS(1238), + [anon_sym_yield] = ACTIONS(1240), + [anon_sym_LBRACK] = ACTIONS(1652), + [anon_sym_LT] = ACTIONS(788), + [anon_sym_SLASH] = ACTIONS(790), + [anon_sym_class] = ACTIONS(792), + [anon_sym_async] = ACTIONS(1244), + [anon_sym_function] = ACTIONS(796), + [anon_sym_new] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1648), + [anon_sym_DASH] = ACTIONS(1648), + [anon_sym_TILDE] = ACTIONS(1236), + [anon_sym_void] = ACTIONS(1252), + [anon_sym_delete] = ACTIONS(1252), + [anon_sym_PLUS_PLUS] = ACTIONS(1254), + [anon_sym_DASH_DASH] = ACTIONS(1254), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(818), + [sym_number] = ACTIONS(1658), + [sym_this] = ACTIONS(824), + [sym_super] = ACTIONS(824), + [sym_true] = ACTIONS(824), + [sym_false] = ACTIONS(824), + [sym_null] = ACTIONS(824), + [sym_undefined] = ACTIONS(1262), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_static] = ACTIONS(1228), + [anon_sym_readonly] = 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), + }, + [911] = { + [sym__call_signature] = STATE(5826), + [sym_string] = STATE(4504), + [sym_formal_parameters] = STATE(4737), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [sym_type_parameters] = STATE(5461), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [sym__automatic_semicolon] = ACTIONS(1730), }, [912] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__call_signature] = STATE(5826), + [sym_string] = STATE(4504), + [sym_formal_parameters] = STATE(4737), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [sym_type_parameters] = STATE(5461), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [sym__automatic_semicolon] = ACTIONS(1730), }, [913] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), - [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2878), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__call_signature] = STATE(5826), + [sym_string] = STATE(4504), + [sym_formal_parameters] = STATE(4737), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [sym_type_parameters] = STATE(5461), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [sym__automatic_semicolon] = ACTIONS(1730), }, [914] = { - [sym__call_signature] = STATE(6093), - [sym_string] = STATE(4467), - [sym_formal_parameters] = STATE(4661), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [sym_type_parameters] = STATE(5504), - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__call_signature] = STATE(5826), + [sym_string] = STATE(4504), + [sym_formal_parameters] = STATE(4737), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [sym_type_parameters] = STATE(5461), + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [sym__automatic_semicolon] = ACTIONS(1730), }, [915] = { - [sym__call_signature] = STATE(6093), - [sym_string] = STATE(4467), - [sym_formal_parameters] = STATE(4661), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [sym_type_parameters] = STATE(5504), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__call_signature] = STATE(5826), + [sym_string] = STATE(4504), + [sym_formal_parameters] = STATE(4737), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [sym_type_parameters] = STATE(5461), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [sym__automatic_semicolon] = ACTIONS(1730), }, [916] = { - [sym__call_signature] = STATE(6093), - [sym_string] = STATE(4467), - [sym_formal_parameters] = STATE(4661), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [sym_type_parameters] = STATE(5504), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2910), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, [917] = { - [sym__call_signature] = STATE(6093), - [sym_string] = STATE(4467), - [sym_formal_parameters] = STATE(4661), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [sym_type_parameters] = STATE(5504), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, [918] = { - [sym__call_signature] = STATE(6093), - [sym_string] = STATE(4467), - [sym_formal_parameters] = STATE(4661), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [sym_type_parameters] = STATE(5504), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__call_signature] = STATE(5826), + [sym_string] = STATE(4504), + [sym_formal_parameters] = STATE(4737), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [sym_type_parameters] = STATE(5461), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [sym__automatic_semicolon] = ACTIONS(1730), }, [919] = { - [sym__call_signature] = STATE(6093), - [sym_string] = STATE(4467), - [sym_formal_parameters] = STATE(4661), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [sym_type_parameters] = STATE(5504), - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2888), - [anon_sym_export] = ACTIONS(2890), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2890), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2890), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2895), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2902), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2890), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2890), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2890), - [anon_sym_public] = ACTIONS(2890), - [anon_sym_private] = ACTIONS(2890), - [anon_sym_protected] = ACTIONS(2890), - [anon_sym_module] = ACTIONS(2890), - [anon_sym_any] = ACTIONS(2890), - [anon_sym_number] = ACTIONS(2890), - [anon_sym_boolean] = ACTIONS(2890), - [anon_sym_string] = ACTIONS(2890), - [anon_sym_symbol] = ACTIONS(2890), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [920] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2519), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2548), - [anon_sym_module] = ACTIONS(2848), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [920] = { + [sym__call_signature] = STATE(5826), + [sym_string] = STATE(4504), + [sym_formal_parameters] = STATE(4737), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [sym_type_parameters] = STATE(5461), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2888), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2888), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2893), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2900), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2888), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2888), + [anon_sym_readonly] = ACTIONS(2888), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2888), + [anon_sym_public] = ACTIONS(2888), + [anon_sym_private] = ACTIONS(2888), + [anon_sym_protected] = ACTIONS(2888), + [anon_sym_module] = ACTIONS(2888), + [anon_sym_any] = ACTIONS(2888), + [anon_sym_number] = ACTIONS(2888), + [anon_sym_boolean] = ACTIONS(2888), + [anon_sym_string] = ACTIONS(2888), + [anon_sym_symbol] = ACTIONS(2888), + [sym__automatic_semicolon] = ACTIONS(1730), }, [921] = { - [sym_declaration] = STATE(1102), - [sym_variable_declaration] = STATE(1086), - [sym_lexical_declaration] = STATE(1086), - [sym_class_declaration] = STATE(1086), - [sym_function_declaration] = STATE(1086), - [sym_generator_function_declaration] = STATE(1086), + [sym_declaration] = STATE(4647), + [sym_variable_declaration] = STATE(4698), + [sym_lexical_declaration] = STATE(4698), + [sym_class_declaration] = STATE(4698), + [sym_function_declaration] = STATE(4698), + [sym_generator_function_declaration] = STATE(4698), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(1086), - [sym_ambient_declaration] = STATE(1086), - [sym_abstract_class_declaration] = STATE(1086), - [sym_module] = STATE(1086), - [sym_internal_module] = STATE(1176), - [sym_import_alias] = STATE(1086), - [sym_interface_declaration] = STATE(1086), - [sym_enum_declaration] = STATE(1086), - [sym_type_alias_declaration] = STATE(1086), - [aux_sym_export_statement_repeat1] = STATE(4650), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2844), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2878), - [anon_sym_import] = ACTIONS(2525), - [anon_sym_var] = ACTIONS(2527), - [anon_sym_let] = ACTIONS(2529), - [anon_sym_const] = ACTIONS(2531), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2542), - [anon_sym_async] = ACTIONS(2544), - [anon_sym_function] = ACTIONS(2546), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_function_signature] = STATE(4698), + [sym_ambient_declaration] = STATE(4698), + [sym_abstract_class_declaration] = STATE(4698), + [sym_module] = STATE(4698), + [sym_internal_module] = STATE(4696), + [sym_import_alias] = STATE(4698), + [sym_interface_declaration] = STATE(4698), + [sym_enum_declaration] = STATE(4698), + [sym_type_alias_declaration] = STATE(4698), + [aux_sym_export_statement_repeat1] = STATE(4598), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2912), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2914), + [anon_sym_import] = ACTIONS(2916), + [anon_sym_var] = ACTIONS(2918), + [anon_sym_let] = ACTIONS(2920), + [anon_sym_const] = ACTIONS(2922), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2924), + [anon_sym_async] = ACTIONS(2926), + [anon_sym_function] = ACTIONS(2928), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2882), - [anon_sym_module] = ACTIONS(2912), - [anon_sym_abstract] = ACTIONS(2552), - [anon_sym_global] = ACTIONS(2850), - [anon_sym_interface] = ACTIONS(2554), - [anon_sym_enum] = ACTIONS(2556), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_declare] = ACTIONS(2930), + [anon_sym_module] = ACTIONS(2932), + [anon_sym_abstract] = ACTIONS(2934), + [anon_sym_global] = ACTIONS(2936), + [anon_sym_interface] = ACTIONS(2938), + [anon_sym_enum] = ACTIONS(2940), + [sym__automatic_semicolon] = ACTIONS(1730), }, [922] = { - [sym_declaration] = STATE(4611), - [sym_variable_declaration] = STATE(4656), - [sym_lexical_declaration] = STATE(4656), - [sym_class_declaration] = STATE(4656), - [sym_function_declaration] = STATE(4656), - [sym_generator_function_declaration] = STATE(4656), + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), [sym_decorator] = STATE(3864), - [sym_function_signature] = STATE(4656), - [sym_ambient_declaration] = STATE(4656), - [sym_abstract_class_declaration] = STATE(4656), - [sym_module] = STATE(4656), - [sym_internal_module] = STATE(4634), - [sym_import_alias] = STATE(4656), - [sym_interface_declaration] = STATE(4656), - [sym_enum_declaration] = STATE(4656), - [sym_type_alias_declaration] = STATE(4656), - [aux_sym_export_statement_repeat1] = STATE(4600), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2914), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2916), - [anon_sym_import] = ACTIONS(2918), - [anon_sym_var] = ACTIONS(2920), - [anon_sym_let] = ACTIONS(2922), - [anon_sym_const] = ACTIONS(2924), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_class] = ACTIONS(2926), - [anon_sym_async] = ACTIONS(2928), - [anon_sym_function] = ACTIONS(2930), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1746), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2451), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2932), - [anon_sym_module] = ACTIONS(2934), - [anon_sym_abstract] = ACTIONS(2936), - [anon_sym_global] = ACTIONS(2938), - [anon_sym_interface] = ACTIONS(2940), - [anon_sym_enum] = ACTIONS(2942), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_declare] = ACTIONS(2480), + [anon_sym_module] = ACTIONS(2850), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, [923] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2944), - [anon_sym_set] = ACTIONS(2944), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_declaration] = STATE(1072), + [sym_variable_declaration] = STATE(1149), + [sym_lexical_declaration] = STATE(1149), + [sym_class_declaration] = STATE(1149), + [sym_function_declaration] = STATE(1149), + [sym_generator_function_declaration] = STATE(1149), + [sym_decorator] = STATE(3864), + [sym_function_signature] = STATE(1149), + [sym_ambient_declaration] = STATE(1149), + [sym_abstract_class_declaration] = STATE(1149), + [sym_module] = STATE(1149), + [sym_internal_module] = STATE(1210), + [sym_import_alias] = STATE(1149), + [sym_interface_declaration] = STATE(1149), + [sym_enum_declaration] = STATE(1149), + [sym_type_alias_declaration] = STATE(1149), + [aux_sym_export_statement_repeat1] = STATE(4788), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2846), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2876), + [anon_sym_import] = ACTIONS(2457), + [anon_sym_var] = ACTIONS(2459), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2463), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_class] = ACTIONS(2474), + [anon_sym_async] = ACTIONS(2476), + [anon_sym_function] = ACTIONS(2478), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1730), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2880), + [anon_sym_module] = ACTIONS(2910), + [anon_sym_abstract] = ACTIONS(2484), + [anon_sym_global] = ACTIONS(2852), + [anon_sym_interface] = ACTIONS(2486), + [anon_sym_enum] = ACTIONS(2488), + [sym__automatic_semicolon] = ACTIONS(1730), }, [924] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [925] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), + [ts_builtin_sym_end] = ACTIONS(2942), [sym_identifier] = ACTIONS(2944), [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_default] = ACTIONS(2944), [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(2944), [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(2942), + [anon_sym_COMMA] = ACTIONS(2942), + [anon_sym_RBRACE] = ACTIONS(2942), + [anon_sym_typeof] = ACTIONS(2944), + [anon_sym_import] = ACTIONS(2944), + [anon_sym_var] = ACTIONS(2944), + [anon_sym_let] = ACTIONS(2944), + [anon_sym_const] = ACTIONS(2944), + [anon_sym_BANG] = ACTIONS(2942), + [anon_sym_else] = ACTIONS(2944), + [anon_sym_if] = ACTIONS(2944), + [anon_sym_switch] = ACTIONS(2944), + [anon_sym_for] = ACTIONS(2944), + [anon_sym_LPAREN] = ACTIONS(2942), + [anon_sym_RPAREN] = ACTIONS(2942), + [anon_sym_await] = ACTIONS(2944), + [anon_sym_while] = ACTIONS(2944), + [anon_sym_do] = ACTIONS(2944), + [anon_sym_try] = ACTIONS(2944), + [anon_sym_with] = ACTIONS(2944), + [anon_sym_break] = ACTIONS(2944), + [anon_sym_continue] = ACTIONS(2944), + [anon_sym_debugger] = ACTIONS(2944), + [anon_sym_return] = ACTIONS(2944), + [anon_sym_throw] = ACTIONS(2944), + [anon_sym_SEMI] = ACTIONS(2942), + [anon_sym_COLON] = ACTIONS(2942), + [anon_sym_case] = ACTIONS(2944), + [anon_sym_yield] = ACTIONS(2944), + [anon_sym_LBRACK] = ACTIONS(2942), + [anon_sym_RBRACK] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2942), + [anon_sym_GT] = ACTIONS(2942), + [anon_sym_SLASH] = ACTIONS(2944), + [anon_sym_class] = ACTIONS(2944), [anon_sym_async] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2944), + [anon_sym_EQ_GT] = ACTIONS(2942), + [anon_sym_new] = ACTIONS(2944), + [anon_sym_QMARK] = ACTIONS(2942), + [anon_sym_AMP] = ACTIONS(2942), + [anon_sym_PIPE] = ACTIONS(2942), + [anon_sym_PLUS] = ACTIONS(2944), + [anon_sym_DASH] = ACTIONS(2944), + [anon_sym_TILDE] = ACTIONS(2942), + [anon_sym_void] = ACTIONS(2944), + [anon_sym_delete] = ACTIONS(2944), + [anon_sym_PLUS_PLUS] = ACTIONS(2942), + [anon_sym_DASH_DASH] = ACTIONS(2942), + [anon_sym_DQUOTE] = ACTIONS(2942), + [anon_sym_SQUOTE] = ACTIONS(2942), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2942), + [sym_number] = ACTIONS(2942), + [sym_this] = ACTIONS(2944), + [sym_super] = ACTIONS(2944), + [sym_true] = ACTIONS(2944), + [sym_false] = ACTIONS(2944), + [sym_null] = ACTIONS(2944), + [sym_undefined] = ACTIONS(2944), + [anon_sym_AT] = ACTIONS(2942), [anon_sym_static] = ACTIONS(2944), [anon_sym_readonly] = ACTIONS(2944), [anon_sym_get] = ACTIONS(2944), @@ -107626,3308 +107564,3402 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(2944), [anon_sym_string] = ACTIONS(2944), [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_abstract] = ACTIONS(2944), + [anon_sym_interface] = ACTIONS(2944), + [anon_sym_extends] = ACTIONS(2944), + [anon_sym_enum] = ACTIONS(2944), + }, + [925] = { + [ts_builtin_sym_end] = ACTIONS(2105), + [sym_identifier] = ACTIONS(2107), + [anon_sym_export] = ACTIONS(2107), + [anon_sym_default] = ACTIONS(2107), + [anon_sym_type] = ACTIONS(2107), + [anon_sym_EQ] = ACTIONS(2107), + [anon_sym_namespace] = ACTIONS(2107), + [anon_sym_LBRACE] = ACTIONS(2105), + [anon_sym_COMMA] = ACTIONS(2105), + [anon_sym_RBRACE] = ACTIONS(2105), + [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_RPAREN] = 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_COLON] = ACTIONS(2105), + [anon_sym_case] = ACTIONS(2107), + [anon_sym_yield] = ACTIONS(2107), + [anon_sym_LBRACK] = ACTIONS(2105), + [anon_sym_RBRACK] = ACTIONS(2105), + [anon_sym_LT] = ACTIONS(2105), + [anon_sym_GT] = ACTIONS(2105), + [anon_sym_SLASH] = ACTIONS(2107), + [anon_sym_class] = ACTIONS(2107), + [anon_sym_async] = ACTIONS(2107), + [anon_sym_function] = ACTIONS(2107), + [anon_sym_EQ_GT] = ACTIONS(2105), + [anon_sym_new] = ACTIONS(2107), + [anon_sym_QMARK] = ACTIONS(2105), + [anon_sym_AMP] = ACTIONS(2105), + [anon_sym_PIPE] = ACTIONS(2105), + [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_readonly] = 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_abstract] = ACTIONS(2107), + [anon_sym_interface] = ACTIONS(2107), + [anon_sym_extends] = ACTIONS(2107), + [anon_sym_enum] = ACTIONS(2107), }, [926] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2944), - [anon_sym_set] = ACTIONS(2944), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [927] = { - [ts_builtin_sym_end] = ACTIONS(2160), - [sym_identifier] = ACTIONS(2162), - [anon_sym_export] = ACTIONS(2162), - [anon_sym_default] = ACTIONS(2162), - [anon_sym_type] = ACTIONS(2162), - [anon_sym_EQ] = ACTIONS(2162), - [anon_sym_namespace] = ACTIONS(2162), - [anon_sym_LBRACE] = ACTIONS(2160), - [anon_sym_COMMA] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_typeof] = ACTIONS(2162), - [anon_sym_import] = ACTIONS(2162), - [anon_sym_var] = ACTIONS(2162), - [anon_sym_let] = ACTIONS(2162), - [anon_sym_const] = ACTIONS(2162), - [anon_sym_BANG] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2162), - [anon_sym_if] = ACTIONS(2162), - [anon_sym_switch] = ACTIONS(2162), - [anon_sym_for] = ACTIONS(2162), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_RPAREN] = ACTIONS(2160), - [anon_sym_await] = ACTIONS(2162), - [anon_sym_while] = ACTIONS(2162), - [anon_sym_do] = ACTIONS(2162), - [anon_sym_try] = ACTIONS(2162), - [anon_sym_with] = ACTIONS(2162), - [anon_sym_break] = ACTIONS(2162), - [anon_sym_continue] = ACTIONS(2162), - [anon_sym_debugger] = ACTIONS(2162), - [anon_sym_return] = ACTIONS(2162), - [anon_sym_throw] = ACTIONS(2162), - [anon_sym_SEMI] = ACTIONS(2160), - [anon_sym_COLON] = ACTIONS(2160), - [anon_sym_case] = ACTIONS(2162), - [anon_sym_yield] = ACTIONS(2162), - [anon_sym_LBRACK] = ACTIONS(2160), - [anon_sym_RBRACK] = ACTIONS(2160), - [anon_sym_LT] = ACTIONS(2160), - [anon_sym_GT] = ACTIONS(2160), - [anon_sym_SLASH] = ACTIONS(2162), - [anon_sym_class] = ACTIONS(2162), - [anon_sym_async] = ACTIONS(2162), - [anon_sym_function] = ACTIONS(2162), - [anon_sym_EQ_GT] = ACTIONS(2160), - [anon_sym_new] = ACTIONS(2162), - [anon_sym_QMARK] = ACTIONS(2160), - [anon_sym_AMP] = ACTIONS(2160), - [anon_sym_PIPE] = ACTIONS(2160), - [anon_sym_PLUS] = ACTIONS(2162), - [anon_sym_DASH] = ACTIONS(2162), - [anon_sym_TILDE] = ACTIONS(2160), - [anon_sym_void] = ACTIONS(2162), - [anon_sym_delete] = ACTIONS(2162), - [anon_sym_PLUS_PLUS] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [anon_sym_SQUOTE] = ACTIONS(2160), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2160), - [sym_number] = ACTIONS(2160), - [sym_this] = ACTIONS(2162), - [sym_super] = ACTIONS(2162), - [sym_true] = ACTIONS(2162), - [sym_false] = ACTIONS(2162), - [sym_null] = ACTIONS(2162), - [sym_undefined] = ACTIONS(2162), - [anon_sym_AT] = ACTIONS(2160), - [anon_sym_static] = ACTIONS(2162), - [anon_sym_readonly] = ACTIONS(2162), - [anon_sym_get] = ACTIONS(2162), - [anon_sym_set] = ACTIONS(2162), - [anon_sym_declare] = ACTIONS(2162), - [anon_sym_public] = ACTIONS(2162), - [anon_sym_private] = ACTIONS(2162), - [anon_sym_protected] = ACTIONS(2162), - [anon_sym_module] = ACTIONS(2162), - [anon_sym_any] = ACTIONS(2162), - [anon_sym_number] = ACTIONS(2162), - [anon_sym_boolean] = ACTIONS(2162), - [anon_sym_string] = ACTIONS(2162), - [anon_sym_symbol] = ACTIONS(2162), - [anon_sym_abstract] = ACTIONS(2162), - [anon_sym_interface] = ACTIONS(2162), - [anon_sym_extends] = ACTIONS(2162), - [anon_sym_enum] = ACTIONS(2162), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [928] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2946), + [anon_sym_set] = ACTIONS(2946), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [929] = { - [ts_builtin_sym_end] = ACTIONS(2950), - [sym_identifier] = ACTIONS(2952), - [anon_sym_export] = ACTIONS(2952), - [anon_sym_default] = ACTIONS(2952), - [anon_sym_type] = ACTIONS(2952), - [anon_sym_EQ] = ACTIONS(2952), - [anon_sym_namespace] = ACTIONS(2952), - [anon_sym_LBRACE] = ACTIONS(2950), - [anon_sym_COMMA] = ACTIONS(2950), - [anon_sym_RBRACE] = ACTIONS(2950), - [anon_sym_typeof] = ACTIONS(2952), - [anon_sym_import] = ACTIONS(2952), - [anon_sym_var] = ACTIONS(2952), - [anon_sym_let] = ACTIONS(2952), - [anon_sym_const] = ACTIONS(2952), - [anon_sym_BANG] = ACTIONS(2950), - [anon_sym_else] = ACTIONS(2952), - [anon_sym_if] = ACTIONS(2952), - [anon_sym_switch] = ACTIONS(2952), - [anon_sym_for] = ACTIONS(2952), - [anon_sym_LPAREN] = ACTIONS(2950), - [anon_sym_RPAREN] = ACTIONS(2950), - [anon_sym_await] = ACTIONS(2952), - [anon_sym_while] = ACTIONS(2952), - [anon_sym_do] = ACTIONS(2952), - [anon_sym_try] = ACTIONS(2952), - [anon_sym_with] = ACTIONS(2952), - [anon_sym_break] = ACTIONS(2952), - [anon_sym_continue] = ACTIONS(2952), - [anon_sym_debugger] = ACTIONS(2952), - [anon_sym_return] = ACTIONS(2952), - [anon_sym_throw] = ACTIONS(2952), - [anon_sym_SEMI] = ACTIONS(2950), - [anon_sym_COLON] = ACTIONS(2950), - [anon_sym_case] = ACTIONS(2952), - [anon_sym_yield] = ACTIONS(2952), - [anon_sym_LBRACK] = ACTIONS(2950), - [anon_sym_RBRACK] = ACTIONS(2950), - [anon_sym_LT] = ACTIONS(2950), - [anon_sym_GT] = ACTIONS(2950), - [anon_sym_SLASH] = ACTIONS(2952), - [anon_sym_class] = ACTIONS(2952), - [anon_sym_async] = ACTIONS(2952), - [anon_sym_function] = ACTIONS(2952), - [anon_sym_EQ_GT] = ACTIONS(2950), - [anon_sym_new] = ACTIONS(2952), - [anon_sym_QMARK] = ACTIONS(2950), - [anon_sym_AMP] = ACTIONS(2950), - [anon_sym_PIPE] = ACTIONS(2950), - [anon_sym_PLUS] = ACTIONS(2952), - [anon_sym_DASH] = ACTIONS(2952), - [anon_sym_TILDE] = ACTIONS(2950), - [anon_sym_void] = ACTIONS(2952), - [anon_sym_delete] = ACTIONS(2952), - [anon_sym_PLUS_PLUS] = ACTIONS(2950), - [anon_sym_DASH_DASH] = ACTIONS(2950), - [anon_sym_DQUOTE] = ACTIONS(2950), - [anon_sym_SQUOTE] = ACTIONS(2950), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2950), - [sym_number] = ACTIONS(2950), - [sym_this] = ACTIONS(2952), - [sym_super] = ACTIONS(2952), - [sym_true] = ACTIONS(2952), - [sym_false] = ACTIONS(2952), - [sym_null] = ACTIONS(2952), - [sym_undefined] = ACTIONS(2952), - [anon_sym_AT] = ACTIONS(2950), - [anon_sym_static] = ACTIONS(2952), - [anon_sym_readonly] = ACTIONS(2952), - [anon_sym_get] = ACTIONS(2952), - [anon_sym_set] = ACTIONS(2952), - [anon_sym_declare] = ACTIONS(2952), - [anon_sym_public] = ACTIONS(2952), - [anon_sym_private] = ACTIONS(2952), - [anon_sym_protected] = ACTIONS(2952), - [anon_sym_module] = ACTIONS(2952), - [anon_sym_any] = ACTIONS(2952), - [anon_sym_number] = ACTIONS(2952), - [anon_sym_boolean] = ACTIONS(2952), - [anon_sym_string] = ACTIONS(2952), - [anon_sym_symbol] = ACTIONS(2952), - [anon_sym_abstract] = ACTIONS(2952), - [anon_sym_interface] = ACTIONS(2952), - [anon_sym_extends] = ACTIONS(2952), - [anon_sym_enum] = ACTIONS(2952), + [ts_builtin_sym_end] = ACTIONS(2954), + [sym_identifier] = ACTIONS(2956), + [anon_sym_export] = ACTIONS(2956), + [anon_sym_default] = ACTIONS(2956), + [anon_sym_type] = ACTIONS(2956), + [anon_sym_EQ] = ACTIONS(2956), + [anon_sym_namespace] = ACTIONS(2956), + [anon_sym_LBRACE] = ACTIONS(2954), + [anon_sym_COMMA] = ACTIONS(2954), + [anon_sym_RBRACE] = ACTIONS(2954), + [anon_sym_typeof] = ACTIONS(2956), + [anon_sym_import] = ACTIONS(2956), + [anon_sym_var] = ACTIONS(2956), + [anon_sym_let] = ACTIONS(2956), + [anon_sym_const] = ACTIONS(2956), + [anon_sym_BANG] = ACTIONS(2954), + [anon_sym_else] = ACTIONS(2956), + [anon_sym_if] = ACTIONS(2956), + [anon_sym_switch] = ACTIONS(2956), + [anon_sym_for] = ACTIONS(2956), + [anon_sym_LPAREN] = ACTIONS(2954), + [anon_sym_RPAREN] = ACTIONS(2954), + [anon_sym_await] = ACTIONS(2956), + [anon_sym_while] = ACTIONS(2956), + [anon_sym_do] = ACTIONS(2956), + [anon_sym_try] = ACTIONS(2956), + [anon_sym_with] = ACTIONS(2956), + [anon_sym_break] = ACTIONS(2956), + [anon_sym_continue] = ACTIONS(2956), + [anon_sym_debugger] = ACTIONS(2956), + [anon_sym_return] = ACTIONS(2956), + [anon_sym_throw] = ACTIONS(2956), + [anon_sym_SEMI] = ACTIONS(2954), + [anon_sym_COLON] = ACTIONS(2954), + [anon_sym_case] = ACTIONS(2956), + [anon_sym_yield] = ACTIONS(2956), + [anon_sym_LBRACK] = ACTIONS(2954), + [anon_sym_RBRACK] = ACTIONS(2954), + [anon_sym_LT] = ACTIONS(2954), + [anon_sym_GT] = ACTIONS(2954), + [anon_sym_SLASH] = ACTIONS(2956), + [anon_sym_class] = ACTIONS(2956), + [anon_sym_async] = ACTIONS(2956), + [anon_sym_function] = ACTIONS(2956), + [anon_sym_EQ_GT] = ACTIONS(2954), + [anon_sym_new] = ACTIONS(2956), + [anon_sym_QMARK] = ACTIONS(2954), + [anon_sym_AMP] = ACTIONS(2954), + [anon_sym_PIPE] = ACTIONS(2954), + [anon_sym_PLUS] = ACTIONS(2956), + [anon_sym_DASH] = ACTIONS(2956), + [anon_sym_TILDE] = ACTIONS(2954), + [anon_sym_void] = ACTIONS(2956), + [anon_sym_delete] = ACTIONS(2956), + [anon_sym_PLUS_PLUS] = ACTIONS(2954), + [anon_sym_DASH_DASH] = ACTIONS(2954), + [anon_sym_DQUOTE] = ACTIONS(2954), + [anon_sym_SQUOTE] = ACTIONS(2954), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2954), + [sym_number] = ACTIONS(2954), + [sym_this] = ACTIONS(2956), + [sym_super] = ACTIONS(2956), + [sym_true] = ACTIONS(2956), + [sym_false] = ACTIONS(2956), + [sym_null] = ACTIONS(2956), + [sym_undefined] = ACTIONS(2956), + [anon_sym_AT] = ACTIONS(2954), + [anon_sym_static] = ACTIONS(2956), + [anon_sym_readonly] = ACTIONS(2956), + [anon_sym_get] = ACTIONS(2956), + [anon_sym_set] = ACTIONS(2956), + [anon_sym_declare] = ACTIONS(2956), + [anon_sym_public] = ACTIONS(2956), + [anon_sym_private] = ACTIONS(2956), + [anon_sym_protected] = ACTIONS(2956), + [anon_sym_module] = ACTIONS(2956), + [anon_sym_any] = ACTIONS(2956), + [anon_sym_number] = ACTIONS(2956), + [anon_sym_boolean] = ACTIONS(2956), + [anon_sym_string] = ACTIONS(2956), + [anon_sym_symbol] = ACTIONS(2956), + [anon_sym_abstract] = ACTIONS(2956), + [anon_sym_interface] = ACTIONS(2956), + [anon_sym_extends] = ACTIONS(2956), + [anon_sym_enum] = ACTIONS(2956), }, [930] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_EQ] = ACTIONS(2026), + [anon_sym_namespace] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_COMMA] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(2026), + [anon_sym_import] = ACTIONS(2026), + [anon_sym_var] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_switch] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_RPAREN] = ACTIONS(2024), + [anon_sym_await] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_with] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_debugger] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_throw] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_COLON] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_RBRACK] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_GT] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_class] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(2026), + [anon_sym_EQ_GT] = ACTIONS(2024), + [anon_sym_new] = ACTIONS(2026), + [anon_sym_QMARK] = ACTIONS(2024), + [anon_sym_AMP] = ACTIONS(2024), + [anon_sym_PIPE] = ACTIONS(2024), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2024), + [anon_sym_void] = ACTIONS(2026), + [anon_sym_delete] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2024), + [sym_number] = ACTIONS(2024), + [sym_this] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_true] = ACTIONS(2026), + [sym_false] = ACTIONS(2026), + [sym_null] = ACTIONS(2026), + [sym_undefined] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), + [anon_sym_abstract] = ACTIONS(2026), + [anon_sym_interface] = ACTIONS(2026), + [anon_sym_extends] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), }, [931] = { - [ts_builtin_sym_end] = ACTIONS(2249), - [sym_identifier] = ACTIONS(2251), - [anon_sym_export] = ACTIONS(2251), - [anon_sym_default] = ACTIONS(2251), - [anon_sym_type] = ACTIONS(2251), - [anon_sym_EQ] = ACTIONS(2251), - [anon_sym_namespace] = ACTIONS(2251), - [anon_sym_LBRACE] = ACTIONS(2249), - [anon_sym_COMMA] = ACTIONS(2249), - [anon_sym_RBRACE] = ACTIONS(2249), - [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_RPAREN] = 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_COLON] = ACTIONS(2249), - [anon_sym_case] = ACTIONS(2251), - [anon_sym_yield] = ACTIONS(2251), - [anon_sym_LBRACK] = ACTIONS(2249), - [anon_sym_RBRACK] = ACTIONS(2249), - [anon_sym_LT] = ACTIONS(2249), - [anon_sym_GT] = ACTIONS(2249), - [anon_sym_SLASH] = ACTIONS(2251), - [anon_sym_class] = ACTIONS(2251), - [anon_sym_async] = ACTIONS(2251), - [anon_sym_function] = ACTIONS(2251), - [anon_sym_EQ_GT] = ACTIONS(2249), - [anon_sym_new] = ACTIONS(2251), - [anon_sym_QMARK] = ACTIONS(2249), - [anon_sym_AMP] = ACTIONS(2249), - [anon_sym_PIPE] = ACTIONS(2249), - [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_readonly] = 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_abstract] = ACTIONS(2251), - [anon_sym_interface] = ACTIONS(2251), - [anon_sym_extends] = ACTIONS(2251), - [anon_sym_enum] = ACTIONS(2251), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [932] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2946), + [anon_sym_set] = ACTIONS(2946), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [933] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2946), + [anon_sym_set] = ACTIONS(2946), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [934] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2944), - [anon_sym_set] = ACTIONS(2944), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [935] = { - [ts_builtin_sym_end] = ACTIONS(2956), - [sym_identifier] = ACTIONS(2958), - [anon_sym_export] = ACTIONS(2958), - [anon_sym_default] = ACTIONS(2958), - [anon_sym_type] = ACTIONS(2958), - [anon_sym_EQ] = ACTIONS(2958), - [anon_sym_namespace] = ACTIONS(2958), - [anon_sym_LBRACE] = ACTIONS(2956), - [anon_sym_COMMA] = ACTIONS(2956), - [anon_sym_RBRACE] = ACTIONS(2956), - [anon_sym_typeof] = ACTIONS(2958), - [anon_sym_import] = ACTIONS(2958), - [anon_sym_var] = ACTIONS(2958), - [anon_sym_let] = ACTIONS(2958), - [anon_sym_const] = ACTIONS(2958), - [anon_sym_BANG] = ACTIONS(2956), - [anon_sym_else] = ACTIONS(2958), - [anon_sym_if] = ACTIONS(2958), - [anon_sym_switch] = ACTIONS(2958), - [anon_sym_for] = ACTIONS(2958), - [anon_sym_LPAREN] = ACTIONS(2956), - [anon_sym_RPAREN] = ACTIONS(2956), - [anon_sym_await] = ACTIONS(2958), - [anon_sym_while] = ACTIONS(2958), - [anon_sym_do] = ACTIONS(2958), - [anon_sym_try] = ACTIONS(2958), - [anon_sym_with] = ACTIONS(2958), - [anon_sym_break] = ACTIONS(2958), - [anon_sym_continue] = ACTIONS(2958), - [anon_sym_debugger] = ACTIONS(2958), - [anon_sym_return] = ACTIONS(2958), - [anon_sym_throw] = ACTIONS(2958), - [anon_sym_SEMI] = ACTIONS(2956), - [anon_sym_COLON] = ACTIONS(2956), - [anon_sym_case] = ACTIONS(2958), - [anon_sym_yield] = ACTIONS(2958), - [anon_sym_LBRACK] = ACTIONS(2956), - [anon_sym_RBRACK] = ACTIONS(2956), - [anon_sym_LT] = ACTIONS(2956), - [anon_sym_GT] = ACTIONS(2956), - [anon_sym_SLASH] = ACTIONS(2958), - [anon_sym_class] = ACTIONS(2958), - [anon_sym_async] = ACTIONS(2958), - [anon_sym_function] = ACTIONS(2958), - [anon_sym_EQ_GT] = ACTIONS(2956), - [anon_sym_new] = ACTIONS(2958), - [anon_sym_QMARK] = ACTIONS(2956), - [anon_sym_AMP] = ACTIONS(2956), - [anon_sym_PIPE] = ACTIONS(2956), - [anon_sym_PLUS] = ACTIONS(2958), - [anon_sym_DASH] = ACTIONS(2958), - [anon_sym_TILDE] = ACTIONS(2956), - [anon_sym_void] = ACTIONS(2958), - [anon_sym_delete] = ACTIONS(2958), - [anon_sym_PLUS_PLUS] = ACTIONS(2956), - [anon_sym_DASH_DASH] = ACTIONS(2956), - [anon_sym_DQUOTE] = ACTIONS(2956), - [anon_sym_SQUOTE] = ACTIONS(2956), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2956), - [sym_number] = ACTIONS(2956), - [sym_this] = ACTIONS(2958), - [sym_super] = ACTIONS(2958), - [sym_true] = ACTIONS(2958), - [sym_false] = ACTIONS(2958), - [sym_null] = ACTIONS(2958), - [sym_undefined] = ACTIONS(2958), - [anon_sym_AT] = ACTIONS(2956), - [anon_sym_static] = ACTIONS(2958), - [anon_sym_readonly] = ACTIONS(2958), - [anon_sym_get] = ACTIONS(2958), - [anon_sym_set] = ACTIONS(2958), - [anon_sym_declare] = ACTIONS(2958), - [anon_sym_public] = ACTIONS(2958), - [anon_sym_private] = ACTIONS(2958), - [anon_sym_protected] = ACTIONS(2958), - [anon_sym_module] = ACTIONS(2958), - [anon_sym_any] = ACTIONS(2958), - [anon_sym_number] = ACTIONS(2958), - [anon_sym_boolean] = ACTIONS(2958), - [anon_sym_string] = ACTIONS(2958), - [anon_sym_symbol] = ACTIONS(2958), - [anon_sym_abstract] = ACTIONS(2958), - [anon_sym_interface] = ACTIONS(2958), - [anon_sym_extends] = ACTIONS(2958), - [anon_sym_enum] = ACTIONS(2958), + [ts_builtin_sym_end] = ACTIONS(2958), + [sym_identifier] = ACTIONS(2960), + [anon_sym_export] = ACTIONS(2960), + [anon_sym_default] = ACTIONS(2960), + [anon_sym_type] = ACTIONS(2960), + [anon_sym_EQ] = ACTIONS(2960), + [anon_sym_namespace] = ACTIONS(2960), + [anon_sym_LBRACE] = ACTIONS(2958), + [anon_sym_COMMA] = ACTIONS(2958), + [anon_sym_RBRACE] = ACTIONS(2958), + [anon_sym_typeof] = ACTIONS(2960), + [anon_sym_import] = ACTIONS(2960), + [anon_sym_var] = ACTIONS(2960), + [anon_sym_let] = ACTIONS(2960), + [anon_sym_const] = ACTIONS(2960), + [anon_sym_BANG] = ACTIONS(2958), + [anon_sym_else] = ACTIONS(2960), + [anon_sym_if] = ACTIONS(2960), + [anon_sym_switch] = ACTIONS(2960), + [anon_sym_for] = ACTIONS(2960), + [anon_sym_LPAREN] = ACTIONS(2958), + [anon_sym_RPAREN] = ACTIONS(2958), + [anon_sym_await] = ACTIONS(2960), + [anon_sym_while] = ACTIONS(2960), + [anon_sym_do] = ACTIONS(2960), + [anon_sym_try] = ACTIONS(2960), + [anon_sym_with] = ACTIONS(2960), + [anon_sym_break] = ACTIONS(2960), + [anon_sym_continue] = ACTIONS(2960), + [anon_sym_debugger] = ACTIONS(2960), + [anon_sym_return] = ACTIONS(2960), + [anon_sym_throw] = ACTIONS(2960), + [anon_sym_SEMI] = ACTIONS(2958), + [anon_sym_COLON] = ACTIONS(2958), + [anon_sym_case] = ACTIONS(2960), + [anon_sym_yield] = ACTIONS(2960), + [anon_sym_LBRACK] = ACTIONS(2958), + [anon_sym_RBRACK] = ACTIONS(2958), + [anon_sym_LT] = ACTIONS(2958), + [anon_sym_GT] = ACTIONS(2958), + [anon_sym_SLASH] = ACTIONS(2960), + [anon_sym_class] = ACTIONS(2960), + [anon_sym_async] = ACTIONS(2960), + [anon_sym_function] = ACTIONS(2960), + [anon_sym_EQ_GT] = ACTIONS(2958), + [anon_sym_new] = ACTIONS(2960), + [anon_sym_QMARK] = ACTIONS(2958), + [anon_sym_AMP] = ACTIONS(2958), + [anon_sym_PIPE] = ACTIONS(2958), + [anon_sym_PLUS] = ACTIONS(2960), + [anon_sym_DASH] = ACTIONS(2960), + [anon_sym_TILDE] = ACTIONS(2958), + [anon_sym_void] = ACTIONS(2960), + [anon_sym_delete] = ACTIONS(2960), + [anon_sym_PLUS_PLUS] = ACTIONS(2958), + [anon_sym_DASH_DASH] = ACTIONS(2958), + [anon_sym_DQUOTE] = ACTIONS(2958), + [anon_sym_SQUOTE] = ACTIONS(2958), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2958), + [sym_number] = ACTIONS(2958), + [sym_this] = ACTIONS(2960), + [sym_super] = ACTIONS(2960), + [sym_true] = ACTIONS(2960), + [sym_false] = ACTIONS(2960), + [sym_null] = ACTIONS(2960), + [sym_undefined] = ACTIONS(2960), + [anon_sym_AT] = ACTIONS(2958), + [anon_sym_static] = ACTIONS(2960), + [anon_sym_readonly] = ACTIONS(2960), + [anon_sym_get] = ACTIONS(2960), + [anon_sym_set] = ACTIONS(2960), + [anon_sym_declare] = ACTIONS(2960), + [anon_sym_public] = ACTIONS(2960), + [anon_sym_private] = ACTIONS(2960), + [anon_sym_protected] = ACTIONS(2960), + [anon_sym_module] = ACTIONS(2960), + [anon_sym_any] = ACTIONS(2960), + [anon_sym_number] = ACTIONS(2960), + [anon_sym_boolean] = ACTIONS(2960), + [anon_sym_string] = ACTIONS(2960), + [anon_sym_symbol] = ACTIONS(2960), + [anon_sym_abstract] = ACTIONS(2960), + [anon_sym_interface] = ACTIONS(2960), + [anon_sym_extends] = ACTIONS(2960), + [anon_sym_enum] = ACTIONS(2960), }, [936] = { - [ts_builtin_sym_end] = ACTIONS(2960), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2962), - [anon_sym_default] = ACTIONS(2962), - [anon_sym_type] = ACTIONS(2962), - [anon_sym_EQ] = ACTIONS(2962), - [anon_sym_namespace] = ACTIONS(2962), - [anon_sym_LBRACE] = ACTIONS(2960), - [anon_sym_COMMA] = ACTIONS(2960), - [anon_sym_RBRACE] = ACTIONS(2960), - [anon_sym_typeof] = ACTIONS(2962), - [anon_sym_import] = ACTIONS(2962), - [anon_sym_var] = ACTIONS(2962), - [anon_sym_let] = ACTIONS(2962), - [anon_sym_const] = ACTIONS(2962), - [anon_sym_BANG] = ACTIONS(2960), - [anon_sym_else] = ACTIONS(2962), - [anon_sym_if] = ACTIONS(2962), - [anon_sym_switch] = ACTIONS(2962), - [anon_sym_for] = ACTIONS(2962), - [anon_sym_LPAREN] = ACTIONS(2960), - [anon_sym_RPAREN] = ACTIONS(2960), - [anon_sym_await] = ACTIONS(2962), - [anon_sym_while] = ACTIONS(2962), - [anon_sym_do] = ACTIONS(2962), - [anon_sym_try] = ACTIONS(2962), - [anon_sym_with] = ACTIONS(2962), - [anon_sym_break] = ACTIONS(2962), - [anon_sym_continue] = ACTIONS(2962), - [anon_sym_debugger] = ACTIONS(2962), - [anon_sym_return] = ACTIONS(2962), - [anon_sym_throw] = ACTIONS(2962), - [anon_sym_SEMI] = ACTIONS(2960), - [anon_sym_COLON] = ACTIONS(2960), - [anon_sym_case] = ACTIONS(2962), - [anon_sym_yield] = ACTIONS(2962), - [anon_sym_LBRACK] = ACTIONS(2960), - [anon_sym_RBRACK] = ACTIONS(2960), - [anon_sym_LT] = ACTIONS(2960), - [anon_sym_GT] = ACTIONS(2960), - [anon_sym_SLASH] = ACTIONS(2962), - [anon_sym_class] = ACTIONS(2962), - [anon_sym_async] = ACTIONS(2962), - [anon_sym_function] = ACTIONS(2962), - [anon_sym_EQ_GT] = ACTIONS(2960), - [anon_sym_new] = ACTIONS(2962), - [anon_sym_QMARK] = ACTIONS(2960), - [anon_sym_AMP] = ACTIONS(2960), - [anon_sym_PIPE] = ACTIONS(2960), - [anon_sym_PLUS] = ACTIONS(2962), - [anon_sym_DASH] = ACTIONS(2962), - [anon_sym_TILDE] = ACTIONS(2960), - [anon_sym_void] = ACTIONS(2962), - [anon_sym_delete] = ACTIONS(2962), - [anon_sym_PLUS_PLUS] = ACTIONS(2960), - [anon_sym_DASH_DASH] = ACTIONS(2960), - [anon_sym_DQUOTE] = ACTIONS(2960), - [anon_sym_SQUOTE] = ACTIONS(2960), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2960), - [sym_number] = ACTIONS(2960), - [sym_this] = ACTIONS(2962), - [sym_super] = ACTIONS(2962), - [sym_true] = ACTIONS(2962), - [sym_false] = ACTIONS(2962), - [sym_null] = ACTIONS(2962), - [sym_undefined] = ACTIONS(2962), - [anon_sym_AT] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(2962), - [anon_sym_readonly] = ACTIONS(2962), - [anon_sym_get] = ACTIONS(2962), - [anon_sym_set] = ACTIONS(2962), - [anon_sym_declare] = ACTIONS(2962), - [anon_sym_public] = ACTIONS(2962), - [anon_sym_private] = ACTIONS(2962), - [anon_sym_protected] = ACTIONS(2962), - [anon_sym_module] = ACTIONS(2962), - [anon_sym_any] = ACTIONS(2962), - [anon_sym_number] = ACTIONS(2962), - [anon_sym_boolean] = ACTIONS(2962), - [anon_sym_string] = ACTIONS(2962), - [anon_sym_symbol] = ACTIONS(2962), - [anon_sym_abstract] = ACTIONS(2962), - [anon_sym_interface] = ACTIONS(2962), - [anon_sym_extends] = ACTIONS(2962), - [anon_sym_enum] = ACTIONS(2962), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [937] = { - [ts_builtin_sym_end] = ACTIONS(2964), - [sym_identifier] = ACTIONS(2966), - [anon_sym_export] = ACTIONS(2966), - [anon_sym_default] = ACTIONS(2966), - [anon_sym_type] = ACTIONS(2966), - [anon_sym_EQ] = ACTIONS(2966), - [anon_sym_namespace] = ACTIONS(2966), - [anon_sym_LBRACE] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(2964), - [anon_sym_RBRACE] = ACTIONS(2964), - [anon_sym_typeof] = ACTIONS(2966), - [anon_sym_import] = ACTIONS(2966), - [anon_sym_var] = ACTIONS(2966), - [anon_sym_let] = ACTIONS(2966), - [anon_sym_const] = ACTIONS(2966), - [anon_sym_BANG] = ACTIONS(2964), - [anon_sym_else] = ACTIONS(2966), - [anon_sym_if] = ACTIONS(2966), - [anon_sym_switch] = ACTIONS(2966), - [anon_sym_for] = ACTIONS(2966), - [anon_sym_LPAREN] = ACTIONS(2964), - [anon_sym_RPAREN] = ACTIONS(2964), - [anon_sym_await] = ACTIONS(2966), - [anon_sym_while] = ACTIONS(2966), - [anon_sym_do] = ACTIONS(2966), - [anon_sym_try] = ACTIONS(2966), - [anon_sym_with] = ACTIONS(2966), - [anon_sym_break] = ACTIONS(2966), - [anon_sym_continue] = ACTIONS(2966), - [anon_sym_debugger] = ACTIONS(2966), - [anon_sym_return] = ACTIONS(2966), - [anon_sym_throw] = ACTIONS(2966), - [anon_sym_SEMI] = ACTIONS(2964), - [anon_sym_COLON] = ACTIONS(2964), - [anon_sym_case] = ACTIONS(2966), - [anon_sym_yield] = ACTIONS(2966), - [anon_sym_LBRACK] = ACTIONS(2964), - [anon_sym_RBRACK] = ACTIONS(2964), - [anon_sym_LT] = ACTIONS(2964), - [anon_sym_GT] = ACTIONS(2964), - [anon_sym_SLASH] = ACTIONS(2966), - [anon_sym_class] = ACTIONS(2966), - [anon_sym_async] = ACTIONS(2966), - [anon_sym_function] = ACTIONS(2966), - [anon_sym_EQ_GT] = ACTIONS(2964), - [anon_sym_new] = ACTIONS(2966), - [anon_sym_QMARK] = ACTIONS(2964), - [anon_sym_AMP] = ACTIONS(2964), - [anon_sym_PIPE] = ACTIONS(2964), - [anon_sym_PLUS] = ACTIONS(2966), - [anon_sym_DASH] = ACTIONS(2966), - [anon_sym_TILDE] = ACTIONS(2964), - [anon_sym_void] = ACTIONS(2966), - [anon_sym_delete] = ACTIONS(2966), - [anon_sym_PLUS_PLUS] = ACTIONS(2964), - [anon_sym_DASH_DASH] = ACTIONS(2964), - [anon_sym_DQUOTE] = ACTIONS(2964), - [anon_sym_SQUOTE] = ACTIONS(2964), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2964), - [sym_number] = ACTIONS(2964), - [sym_this] = ACTIONS(2966), - [sym_super] = ACTIONS(2966), - [sym_true] = ACTIONS(2966), - [sym_false] = ACTIONS(2966), - [sym_null] = ACTIONS(2966), - [sym_undefined] = ACTIONS(2966), - [anon_sym_AT] = ACTIONS(2964), - [anon_sym_static] = ACTIONS(2966), - [anon_sym_readonly] = ACTIONS(2966), - [anon_sym_get] = ACTIONS(2966), - [anon_sym_set] = ACTIONS(2966), - [anon_sym_declare] = ACTIONS(2966), - [anon_sym_public] = ACTIONS(2966), - [anon_sym_private] = ACTIONS(2966), - [anon_sym_protected] = ACTIONS(2966), - [anon_sym_module] = ACTIONS(2966), - [anon_sym_any] = ACTIONS(2966), - [anon_sym_number] = ACTIONS(2966), - [anon_sym_boolean] = ACTIONS(2966), - [anon_sym_string] = ACTIONS(2966), - [anon_sym_symbol] = ACTIONS(2966), - [anon_sym_abstract] = ACTIONS(2966), - [anon_sym_interface] = ACTIONS(2966), - [anon_sym_extends] = ACTIONS(2966), - [anon_sym_enum] = ACTIONS(2966), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [938] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2944), - [anon_sym_set] = ACTIONS(2944), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(2962), + [sym_identifier] = ACTIONS(2964), + [anon_sym_export] = ACTIONS(2964), + [anon_sym_default] = ACTIONS(2964), + [anon_sym_type] = ACTIONS(2964), + [anon_sym_EQ] = ACTIONS(2964), + [anon_sym_namespace] = ACTIONS(2964), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(2962), + [anon_sym_RBRACE] = ACTIONS(2962), + [anon_sym_typeof] = ACTIONS(2964), + [anon_sym_import] = ACTIONS(2964), + [anon_sym_var] = ACTIONS(2964), + [anon_sym_let] = ACTIONS(2964), + [anon_sym_const] = ACTIONS(2964), + [anon_sym_BANG] = ACTIONS(2962), + [anon_sym_else] = ACTIONS(2964), + [anon_sym_if] = ACTIONS(2964), + [anon_sym_switch] = ACTIONS(2964), + [anon_sym_for] = ACTIONS(2964), + [anon_sym_LPAREN] = ACTIONS(2962), + [anon_sym_RPAREN] = ACTIONS(2962), + [anon_sym_await] = ACTIONS(2964), + [anon_sym_while] = ACTIONS(2964), + [anon_sym_do] = ACTIONS(2964), + [anon_sym_try] = ACTIONS(2964), + [anon_sym_with] = ACTIONS(2964), + [anon_sym_break] = ACTIONS(2964), + [anon_sym_continue] = ACTIONS(2964), + [anon_sym_debugger] = ACTIONS(2964), + [anon_sym_return] = ACTIONS(2964), + [anon_sym_throw] = ACTIONS(2964), + [anon_sym_SEMI] = ACTIONS(2962), + [anon_sym_COLON] = ACTIONS(2962), + [anon_sym_case] = ACTIONS(2964), + [anon_sym_yield] = ACTIONS(2964), + [anon_sym_LBRACK] = ACTIONS(2962), + [anon_sym_RBRACK] = ACTIONS(2962), + [anon_sym_LT] = ACTIONS(2962), + [anon_sym_GT] = ACTIONS(2962), + [anon_sym_SLASH] = ACTIONS(2964), + [anon_sym_class] = ACTIONS(2964), + [anon_sym_async] = ACTIONS(2964), + [anon_sym_function] = ACTIONS(2964), + [anon_sym_EQ_GT] = ACTIONS(2962), + [anon_sym_new] = ACTIONS(2964), + [anon_sym_QMARK] = ACTIONS(2962), + [anon_sym_AMP] = ACTIONS(2962), + [anon_sym_PIPE] = ACTIONS(2962), + [anon_sym_PLUS] = ACTIONS(2964), + [anon_sym_DASH] = ACTIONS(2964), + [anon_sym_TILDE] = ACTIONS(2962), + [anon_sym_void] = ACTIONS(2964), + [anon_sym_delete] = ACTIONS(2964), + [anon_sym_PLUS_PLUS] = ACTIONS(2962), + [anon_sym_DASH_DASH] = ACTIONS(2962), + [anon_sym_DQUOTE] = ACTIONS(2962), + [anon_sym_SQUOTE] = ACTIONS(2962), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2962), + [sym_number] = ACTIONS(2962), + [sym_this] = ACTIONS(2964), + [sym_super] = ACTIONS(2964), + [sym_true] = ACTIONS(2964), + [sym_false] = ACTIONS(2964), + [sym_null] = ACTIONS(2964), + [sym_undefined] = ACTIONS(2964), + [anon_sym_AT] = ACTIONS(2962), + [anon_sym_static] = ACTIONS(2964), + [anon_sym_readonly] = ACTIONS(2964), + [anon_sym_get] = ACTIONS(2964), + [anon_sym_set] = ACTIONS(2964), + [anon_sym_declare] = ACTIONS(2964), + [anon_sym_public] = ACTIONS(2964), + [anon_sym_private] = ACTIONS(2964), + [anon_sym_protected] = ACTIONS(2964), + [anon_sym_module] = ACTIONS(2964), + [anon_sym_any] = ACTIONS(2964), + [anon_sym_number] = ACTIONS(2964), + [anon_sym_boolean] = ACTIONS(2964), + [anon_sym_string] = ACTIONS(2964), + [anon_sym_symbol] = ACTIONS(2964), + [anon_sym_abstract] = ACTIONS(2964), + [anon_sym_interface] = ACTIONS(2964), + [anon_sym_extends] = ACTIONS(2964), + [anon_sym_enum] = ACTIONS(2964), }, [939] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [940] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [ts_builtin_sym_end] = ACTIONS(2966), + [sym_identifier] = ACTIONS(2968), + [anon_sym_export] = ACTIONS(2968), + [anon_sym_default] = ACTIONS(2968), + [anon_sym_type] = ACTIONS(2968), + [anon_sym_EQ] = ACTIONS(2968), + [anon_sym_namespace] = ACTIONS(2968), + [anon_sym_LBRACE] = ACTIONS(2966), + [anon_sym_COMMA] = ACTIONS(2966), + [anon_sym_RBRACE] = ACTIONS(2966), + [anon_sym_typeof] = ACTIONS(2968), + [anon_sym_import] = ACTIONS(2968), + [anon_sym_var] = ACTIONS(2968), + [anon_sym_let] = ACTIONS(2968), + [anon_sym_const] = ACTIONS(2968), + [anon_sym_BANG] = ACTIONS(2966), + [anon_sym_else] = ACTIONS(2968), + [anon_sym_if] = ACTIONS(2968), + [anon_sym_switch] = ACTIONS(2968), + [anon_sym_for] = ACTIONS(2968), + [anon_sym_LPAREN] = ACTIONS(2966), + [anon_sym_RPAREN] = ACTIONS(2966), + [anon_sym_await] = ACTIONS(2968), + [anon_sym_while] = ACTIONS(2968), + [anon_sym_do] = ACTIONS(2968), + [anon_sym_try] = ACTIONS(2968), + [anon_sym_with] = ACTIONS(2968), + [anon_sym_break] = ACTIONS(2968), + [anon_sym_continue] = ACTIONS(2968), + [anon_sym_debugger] = ACTIONS(2968), + [anon_sym_return] = ACTIONS(2968), + [anon_sym_throw] = ACTIONS(2968), + [anon_sym_SEMI] = ACTIONS(2966), + [anon_sym_COLON] = ACTIONS(2966), + [anon_sym_case] = ACTIONS(2968), + [anon_sym_yield] = ACTIONS(2968), + [anon_sym_LBRACK] = ACTIONS(2966), + [anon_sym_RBRACK] = ACTIONS(2966), + [anon_sym_LT] = ACTIONS(2966), + [anon_sym_GT] = ACTIONS(2966), + [anon_sym_SLASH] = ACTIONS(2968), + [anon_sym_class] = ACTIONS(2968), + [anon_sym_async] = ACTIONS(2968), + [anon_sym_function] = ACTIONS(2968), + [anon_sym_EQ_GT] = ACTIONS(2966), + [anon_sym_new] = ACTIONS(2968), + [anon_sym_QMARK] = ACTIONS(2966), + [anon_sym_AMP] = ACTIONS(2966), + [anon_sym_PIPE] = ACTIONS(2966), + [anon_sym_PLUS] = ACTIONS(2968), + [anon_sym_DASH] = ACTIONS(2968), + [anon_sym_TILDE] = ACTIONS(2966), + [anon_sym_void] = ACTIONS(2968), + [anon_sym_delete] = ACTIONS(2968), + [anon_sym_PLUS_PLUS] = ACTIONS(2966), + [anon_sym_DASH_DASH] = ACTIONS(2966), + [anon_sym_DQUOTE] = ACTIONS(2966), + [anon_sym_SQUOTE] = ACTIONS(2966), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2966), + [sym_number] = ACTIONS(2966), + [sym_this] = ACTIONS(2968), + [sym_super] = ACTIONS(2968), + [sym_true] = ACTIONS(2968), + [sym_false] = ACTIONS(2968), + [sym_null] = ACTIONS(2968), + [sym_undefined] = ACTIONS(2968), + [anon_sym_AT] = ACTIONS(2966), + [anon_sym_static] = ACTIONS(2968), + [anon_sym_readonly] = ACTIONS(2968), + [anon_sym_get] = ACTIONS(2968), + [anon_sym_set] = ACTIONS(2968), + [anon_sym_declare] = ACTIONS(2968), + [anon_sym_public] = ACTIONS(2968), + [anon_sym_private] = ACTIONS(2968), + [anon_sym_protected] = ACTIONS(2968), + [anon_sym_module] = ACTIONS(2968), + [anon_sym_any] = ACTIONS(2968), + [anon_sym_number] = ACTIONS(2968), + [anon_sym_boolean] = ACTIONS(2968), + [anon_sym_string] = ACTIONS(2968), + [anon_sym_symbol] = ACTIONS(2968), + [anon_sym_abstract] = ACTIONS(2968), + [anon_sym_interface] = ACTIONS(2968), + [anon_sym_extends] = ACTIONS(2968), + [anon_sym_enum] = ACTIONS(2968), }, [941] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2946), + [anon_sym_set] = ACTIONS(2946), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [942] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2946), + [anon_sym_set] = ACTIONS(2946), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [943] = { - [ts_builtin_sym_end] = ACTIONS(2968), - [sym_identifier] = ACTIONS(2970), - [anon_sym_export] = ACTIONS(2970), - [anon_sym_default] = ACTIONS(2970), - [anon_sym_type] = ACTIONS(2970), - [anon_sym_EQ] = ACTIONS(2970), - [anon_sym_namespace] = ACTIONS(2970), - [anon_sym_LBRACE] = ACTIONS(2968), - [anon_sym_COMMA] = ACTIONS(2968), - [anon_sym_RBRACE] = ACTIONS(2968), - [anon_sym_typeof] = ACTIONS(2970), - [anon_sym_import] = ACTIONS(2970), - [anon_sym_var] = ACTIONS(2970), - [anon_sym_let] = ACTIONS(2970), - [anon_sym_const] = ACTIONS(2970), - [anon_sym_BANG] = ACTIONS(2968), - [anon_sym_else] = ACTIONS(2970), - [anon_sym_if] = ACTIONS(2970), - [anon_sym_switch] = ACTIONS(2970), - [anon_sym_for] = ACTIONS(2970), - [anon_sym_LPAREN] = ACTIONS(2968), - [anon_sym_RPAREN] = ACTIONS(2968), - [anon_sym_await] = ACTIONS(2970), - [anon_sym_while] = ACTIONS(2970), - [anon_sym_do] = ACTIONS(2970), - [anon_sym_try] = ACTIONS(2970), - [anon_sym_with] = ACTIONS(2970), - [anon_sym_break] = ACTIONS(2970), - [anon_sym_continue] = ACTIONS(2970), - [anon_sym_debugger] = ACTIONS(2970), - [anon_sym_return] = ACTIONS(2970), - [anon_sym_throw] = ACTIONS(2970), - [anon_sym_SEMI] = ACTIONS(2968), - [anon_sym_COLON] = ACTIONS(2968), - [anon_sym_case] = ACTIONS(2970), - [anon_sym_yield] = ACTIONS(2970), - [anon_sym_LBRACK] = ACTIONS(2968), - [anon_sym_RBRACK] = ACTIONS(2968), - [anon_sym_LT] = ACTIONS(2968), - [anon_sym_GT] = ACTIONS(2968), - [anon_sym_SLASH] = ACTIONS(2970), - [anon_sym_class] = ACTIONS(2970), - [anon_sym_async] = ACTIONS(2970), - [anon_sym_function] = ACTIONS(2970), - [anon_sym_EQ_GT] = ACTIONS(2968), - [anon_sym_new] = ACTIONS(2970), - [anon_sym_QMARK] = ACTIONS(2968), - [anon_sym_AMP] = ACTIONS(2968), - [anon_sym_PIPE] = ACTIONS(2968), - [anon_sym_PLUS] = ACTIONS(2970), - [anon_sym_DASH] = ACTIONS(2970), - [anon_sym_TILDE] = ACTIONS(2968), - [anon_sym_void] = ACTIONS(2970), - [anon_sym_delete] = ACTIONS(2970), - [anon_sym_PLUS_PLUS] = ACTIONS(2968), - [anon_sym_DASH_DASH] = ACTIONS(2968), - [anon_sym_DQUOTE] = ACTIONS(2968), - [anon_sym_SQUOTE] = ACTIONS(2968), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2968), - [sym_number] = ACTIONS(2968), - [sym_this] = ACTIONS(2970), - [sym_super] = ACTIONS(2970), - [sym_true] = ACTIONS(2970), - [sym_false] = ACTIONS(2970), - [sym_null] = ACTIONS(2970), - [sym_undefined] = ACTIONS(2970), - [anon_sym_AT] = ACTIONS(2968), - [anon_sym_static] = ACTIONS(2970), - [anon_sym_readonly] = ACTIONS(2970), - [anon_sym_get] = ACTIONS(2970), - [anon_sym_set] = ACTIONS(2970), - [anon_sym_declare] = ACTIONS(2970), - [anon_sym_public] = ACTIONS(2970), - [anon_sym_private] = ACTIONS(2970), - [anon_sym_protected] = ACTIONS(2970), - [anon_sym_module] = ACTIONS(2970), - [anon_sym_any] = ACTIONS(2970), - [anon_sym_number] = ACTIONS(2970), - [anon_sym_boolean] = ACTIONS(2970), - [anon_sym_string] = ACTIONS(2970), - [anon_sym_symbol] = ACTIONS(2970), - [anon_sym_abstract] = ACTIONS(2970), - [anon_sym_interface] = ACTIONS(2970), - [anon_sym_extends] = ACTIONS(2970), - [anon_sym_enum] = ACTIONS(2970), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [944] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2944), - [anon_sym_set] = ACTIONS(2944), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2946), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2946), + [anon_sym_set] = ACTIONS(2946), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [945] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [946] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [947] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [948] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [949] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(2892), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2954), - [anon_sym_get] = ACTIONS(2948), - [anon_sym_set] = ACTIONS(2948), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2946), + [anon_sym_set] = ACTIONS(2946), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [950] = { - [sym_string] = STATE(4467), - [sym__property_name] = STATE(4467), - [sym_computed_property_name] = STATE(4467), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(2944), - [anon_sym_export] = ACTIONS(2944), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(2944), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(2944), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(2899), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(2944), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(2908), - [sym_private_property_identifier] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2944), - [anon_sym_readonly] = ACTIONS(2944), - [anon_sym_get] = ACTIONS(2944), - [anon_sym_set] = ACTIONS(2944), - [anon_sym_declare] = ACTIONS(2944), - [anon_sym_public] = ACTIONS(2944), - [anon_sym_private] = ACTIONS(2944), - [anon_sym_protected] = ACTIONS(2944), - [anon_sym_module] = ACTIONS(2944), - [anon_sym_any] = ACTIONS(2944), - [anon_sym_number] = ACTIONS(2944), - [anon_sym_boolean] = ACTIONS(2944), - [anon_sym_string] = ACTIONS(2944), - [anon_sym_symbol] = ACTIONS(2944), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2946), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), }, [951] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__formal_parameter] = STATE(5176), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), + [sym_string] = STATE(4504), + [sym__property_name] = STATE(4504), + [sym_computed_property_name] = STATE(4504), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(2946), + [anon_sym_export] = ACTIONS(2946), + [anon_sym_STAR] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2946), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(2897), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(2948), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(2906), + [sym_private_property_identifier] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2946), + [anon_sym_readonly] = ACTIONS(2952), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2946), + [anon_sym_public] = ACTIONS(2946), + [anon_sym_private] = ACTIONS(2946), + [anon_sym_protected] = ACTIONS(2946), + [anon_sym_module] = ACTIONS(2946), + [anon_sym_any] = ACTIONS(2946), + [anon_sym_number] = ACTIONS(2946), + [anon_sym_boolean] = ACTIONS(2946), + [anon_sym_string] = ACTIONS(2946), + [anon_sym_symbol] = ACTIONS(2946), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [952] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__formal_parameter] = STATE(5208), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4994), - [sym_constructor_type] = STATE(4994), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4994), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4994), - [sym_union_type] = STATE(4994), - [sym_intersection_type] = STATE(4994), - [sym_function_type] = STATE(4994), - [aux_sym_export_statement_repeat1] = STATE(3763), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(5029), + [sym_constructor_type] = STATE(5029), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(5029), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(5029), + [sym_union_type] = STATE(5029), + [sym_intersection_type] = STATE(5029), + [sym_function_type] = STATE(5029), + [aux_sym_export_statement_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(1732), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(698), [anon_sym_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(2976), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(2974), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_declare] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_protected] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_any] = ACTIONS(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(718), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [952] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__formal_parameter] = STATE(5176), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), + [953] = { + [sym_object_pattern] = STATE(4402), + [sym_assignment_pattern] = STATE(5182), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5290), + [sym_optional_tuple_parameter] = STATE(5290), + [sym_optional_type] = STATE(5290), + [sym_rest_type] = STATE(5290), + [sym__tuple_type_member] = STATE(5290), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2980), + [anon_sym_export] = ACTIONS(1706), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2984), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_RBRACK] = ACTIONS(2988), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2990), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2992), + [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(2994), + [anon_sym_number] = ACTIONS(2994), + [anon_sym_boolean] = ACTIONS(2994), + [anon_sym_string] = ACTIONS(2994), + [anon_sym_symbol] = ACTIONS(2994), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(638), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [954] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__formal_parameter] = STATE(5208), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(5042), - [sym_constructor_type] = STATE(5042), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(5042), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(5042), - [sym_union_type] = STATE(5042), - [sym_intersection_type] = STATE(5042), - [sym_function_type] = STATE(5042), - [aux_sym_export_statement_repeat1] = STATE(3763), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(4950), + [sym_constructor_type] = STATE(4950), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4950), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4950), + [sym_union_type] = STATE(4950), + [sym_intersection_type] = STATE(4950), + [sym_function_type] = STATE(4950), + [aux_sym_export_statement_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(1732), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(698), [anon_sym_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(2976), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(2974), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_declare] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_protected] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_any] = ACTIONS(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(718), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [953] = { - [sym_object_pattern] = STATE(4319), - [sym_assignment_pattern] = STATE(5326), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(1722), + [955] = { + [sym_object_pattern] = STATE(4402), + [sym_assignment_pattern] = STATE(5182), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2980), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(2990), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2996), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_RBRACK] = ACTIONS(2998), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2990), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2994), - [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(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2992), + [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(2994), + [anon_sym_number] = ACTIONS(2994), + [anon_sym_boolean] = ACTIONS(2994), + [anon_sym_string] = ACTIONS(2994), + [anon_sym_symbol] = ACTIONS(2994), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [954] = { - [sym_object_pattern] = STATE(4319), - [sym_assignment_pattern] = STATE(5326), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5303), - [sym_optional_tuple_parameter] = STATE(5303), - [sym_optional_type] = STATE(5303), - [sym_rest_type] = STATE(5303), - [sym__tuple_type_member] = STATE(5303), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(1722), + [956] = { + [sym_object_pattern] = STATE(4402), + [sym_assignment_pattern] = STATE(5182), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2980), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2998), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(2988), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2996), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(2986), [anon_sym_RBRACK] = ACTIONS(3000), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2992), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2990), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2994), - [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(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2992), + [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(2994), + [anon_sym_number] = ACTIONS(2994), + [anon_sym_boolean] = ACTIONS(2994), + [anon_sym_string] = ACTIONS(2994), + [anon_sym_symbol] = ACTIONS(2994), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [955] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__formal_parameter] = STATE(5176), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), + [957] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__formal_parameter] = STATE(5208), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(5068), - [sym_constructor_type] = STATE(5068), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(5068), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(5068), - [sym_union_type] = STATE(5068), - [sym_intersection_type] = STATE(5068), - [sym_function_type] = STATE(5068), - [aux_sym_export_statement_repeat1] = STATE(3763), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(5100), + [sym_constructor_type] = STATE(5100), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(5100), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(5100), + [sym_union_type] = STATE(5100), + [sym_intersection_type] = STATE(5100), + [sym_function_type] = STATE(5100), + [aux_sym_export_statement_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(1732), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(698), [anon_sym_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(2976), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(2974), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_declare] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_protected] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_any] = ACTIONS(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(718), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [956] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__formal_parameter] = STATE(5176), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), + [958] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__formal_parameter] = STATE(5208), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4990), - [sym_constructor_type] = STATE(4990), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4990), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4990), - [sym_union_type] = STATE(4990), - [sym_intersection_type] = STATE(4990), - [sym_function_type] = STATE(4990), - [aux_sym_export_statement_repeat1] = STATE(3763), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(5065), + [sym_constructor_type] = STATE(5065), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(5065), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(5065), + [sym_union_type] = STATE(5065), + [sym_intersection_type] = STATE(5065), + [sym_function_type] = STATE(5065), + [aux_sym_export_statement_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(1732), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(698), [anon_sym_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(2976), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(2974), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_declare] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_protected] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_any] = ACTIONS(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(718), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [957] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__formal_parameter] = STATE(5176), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), + [959] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__formal_parameter] = STATE(5208), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4988), - [sym_constructor_type] = STATE(4988), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4988), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4988), - [sym_union_type] = STATE(4988), - [sym_intersection_type] = STATE(4988), - [sym_function_type] = STATE(4988), - [aux_sym_export_statement_repeat1] = STATE(3763), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(4957), + [sym_constructor_type] = STATE(4957), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4957), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4957), + [sym_union_type] = STATE(4957), + [sym_intersection_type] = STATE(4957), + [sym_function_type] = STATE(4957), + [aux_sym_export_statement_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(1732), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(698), [anon_sym_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(2976), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(2974), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_declare] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_protected] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_any] = ACTIONS(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(718), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [958] = { - [sym_object_pattern] = STATE(4319), - [sym_assignment_pattern] = STATE(5326), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(3002), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2992), - [anon_sym_QMARK] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2994), - [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(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), - [anon_sym_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(638), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), - }, - [959] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__formal_parameter] = STATE(5176), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), + [960] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__formal_parameter] = STATE(5208), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(5021), - [sym_constructor_type] = STATE(5021), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(5021), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(5021), - [sym_union_type] = STATE(5021), - [sym_intersection_type] = STATE(5021), - [sym_function_type] = STATE(5021), - [aux_sym_export_statement_repeat1] = STATE(3763), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(4996), + [sym_constructor_type] = STATE(4996), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4996), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4996), + [sym_union_type] = STATE(4996), + [sym_intersection_type] = STATE(4996), + [sym_function_type] = STATE(4996), + [aux_sym_export_statement_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(1732), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(698), [anon_sym_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(2976), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(2974), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_declare] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_protected] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_any] = ACTIONS(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(718), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [960] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__formal_parameter] = STATE(5176), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), + [961] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__formal_parameter] = STATE(5208), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), [sym_decorator] = STATE(3864), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4318), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym_accessibility_modifier] = STATE(3833), - [sym_required_parameter] = STATE(5176), - [sym_optional_parameter] = STATE(5176), - [sym__parameter_name] = STATE(4318), - [sym__type] = STATE(4914), - [sym_constructor_type] = STATE(4914), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4914), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4914), - [sym_union_type] = STATE(4914), - [sym_intersection_type] = STATE(4914), - [sym_function_type] = STATE(4914), - [aux_sym_export_statement_repeat1] = STATE(3763), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4371), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym_accessibility_modifier] = STATE(3829), + [sym_required_parameter] = STATE(5208), + [sym_optional_parameter] = STATE(5208), + [sym__parameter_name] = STATE(4371), + [sym__type] = STATE(5007), + [sym_constructor_type] = STATE(5007), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(5007), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(5007), + [sym_union_type] = STATE(5007), + [sym_intersection_type] = STATE(5007), + [sym_function_type] = STATE(5007), + [aux_sym_export_statement_repeat1] = STATE(3764), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_RPAREN] = ACTIONS(688), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(1732), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(698), [anon_sym_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(2976), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(2974), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2978), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(2980), - [anon_sym_private] = ACTIONS(2980), - [anon_sym_protected] = ACTIONS(2980), - [anon_sym_module] = ACTIONS(1722), - [anon_sym_any] = ACTIONS(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2976), + [anon_sym_get] = ACTIONS(1706), + [anon_sym_set] = ACTIONS(1706), + [anon_sym_declare] = ACTIONS(1706), + [anon_sym_public] = ACTIONS(2978), + [anon_sym_private] = ACTIONS(2978), + [anon_sym_protected] = ACTIONS(2978), + [anon_sym_module] = ACTIONS(1706), + [anon_sym_any] = ACTIONS(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(718), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [961] = { - [sym_object_pattern] = STATE(4319), - [sym_assignment_pattern] = STATE(5326), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_pattern] = STATE(4939), - [sym_rest_pattern] = STATE(4651), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [aux_sym_array_pattern_repeat1] = STATE(5234), - [sym_identifier] = ACTIONS(2982), - [anon_sym_export] = ACTIONS(1722), + [962] = { + [sym_object_pattern] = STATE(4402), + [sym_assignment_pattern] = STATE(5182), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_pattern] = STATE(4959), + [sym_rest_pattern] = STATE(4845), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [aux_sym_array_pattern_repeat1] = STATE(5333), + [sym_identifier] = ACTIONS(2980), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(2984), - [anon_sym_COMMA] = ACTIONS(2986), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(2988), - [anon_sym_RBRACK] = ACTIONS(3004), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2992), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(2982), + [anon_sym_COMMA] = ACTIONS(2996), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(2986), + [anon_sym_RBRACK] = ACTIONS(3002), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2990), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(2994), - [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(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(2992), + [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(2994), + [anon_sym_number] = ACTIONS(2994), + [anon_sym_boolean] = ACTIONS(2994), + [anon_sym_string] = ACTIONS(2994), + [anon_sym_symbol] = ACTIONS(2994), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [962] = { - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3006), - [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(3006), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - [sym__automatic_semicolon] = ACTIONS(1746), - }, [963] = { - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3006), + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3006), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1940), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3006), [anon_sym_readonly] = ACTIONS(3006), [anon_sym_get] = ACTIONS(3006), @@ -110942,332 +110974,927 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3006), [anon_sym_string] = ACTIONS(3006), [anon_sym_symbol] = ACTIONS(3006), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_extends] = ACTIONS(1713), }, [964] = { - [sym__call_signature] = STATE(5796), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3010), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_extends] = ACTIONS(1729), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(3018), + [sym_private_property_identifier] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [sym__automatic_semicolon] = ACTIONS(1730), }, [965] = { - [sym__call_signature] = STATE(5773), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3022), - [anon_sym_export] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3026), + [sym__call_signature] = STATE(5783), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3020), + [anon_sym_export] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_readonly] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3024), - [anon_sym_set] = ACTIONS(3024), - [anon_sym_declare] = ACTIONS(3024), - [anon_sym_public] = ACTIONS(3024), - [anon_sym_private] = ACTIONS(3024), - [anon_sym_protected] = ACTIONS(3024), - [anon_sym_module] = ACTIONS(3024), - [anon_sym_any] = ACTIONS(3024), - [anon_sym_number] = ACTIONS(3024), - [anon_sym_boolean] = ACTIONS(3024), - [anon_sym_string] = ACTIONS(3024), - [anon_sym_symbol] = ACTIONS(3024), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_PIPE_RBRACE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_readonly] = ACTIONS(3022), + [anon_sym_get] = ACTIONS(3022), + [anon_sym_set] = ACTIONS(3022), + [anon_sym_declare] = ACTIONS(3022), + [anon_sym_public] = ACTIONS(3022), + [anon_sym_private] = ACTIONS(3022), + [anon_sym_protected] = ACTIONS(3022), + [anon_sym_module] = ACTIONS(3022), + [anon_sym_any] = ACTIONS(3022), + [anon_sym_number] = ACTIONS(3022), + [anon_sym_boolean] = ACTIONS(3022), + [anon_sym_string] = ACTIONS(3022), + [anon_sym_symbol] = ACTIONS(3022), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_PIPE_RBRACE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), }, [966] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym__destructuring_pattern] = STATE(4319), - [sym_pattern] = STATE(4593), - [sym_rest_pattern] = STATE(4319), - [sym_identifier] = ACTIONS(3028), - [anon_sym_export] = ACTIONS(1722), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(3030), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(3032), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(696), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_this] = ACTIONS(3038), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1722), - [anon_sym_get] = ACTIONS(1722), - [anon_sym_set] = ACTIONS(1722), - [anon_sym_declare] = ACTIONS(1722), - [anon_sym_public] = ACTIONS(1722), - [anon_sym_private] = ACTIONS(1722), - [anon_sym_protected] = ACTIONS(1722), - [anon_sym_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__call_signature] = STATE(5783), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3020), + [anon_sym_export] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3022), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1924), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_readonly] = ACTIONS(3022), + [anon_sym_get] = ACTIONS(3022), + [anon_sym_set] = ACTIONS(3022), + [anon_sym_declare] = ACTIONS(3022), + [anon_sym_public] = ACTIONS(3022), + [anon_sym_private] = ACTIONS(3022), + [anon_sym_protected] = ACTIONS(3022), + [anon_sym_module] = ACTIONS(3022), + [anon_sym_any] = ACTIONS(3022), + [anon_sym_number] = ACTIONS(3022), + [anon_sym_boolean] = ACTIONS(3022), + [anon_sym_string] = ACTIONS(3022), + [anon_sym_symbol] = ACTIONS(3022), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_PIPE_RBRACE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), }, [967] = { - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3006), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(3018), + [sym_private_property_identifier] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [968] = { + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(3018), + [sym_private_property_identifier] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [969] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym__destructuring_pattern] = STATE(4402), + [sym_pattern] = STATE(4639), + [sym_rest_pattern] = STATE(4402), + [sym_identifier] = ACTIONS(3026), + [anon_sym_export] = ACTIONS(1706), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(3028), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(3030), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(696), + [anon_sym_QMARK] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_this] = ACTIONS(3036), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = 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), + }, + [970] = { + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(3018), + [sym_private_property_identifier] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [971] = { + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(3018), + [sym_private_property_identifier] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [972] = { + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(3018), + [sym_private_property_identifier] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [973] = { + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(3016), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3018), + [anon_sym_SQUOTE] = ACTIONS(3018), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_number] = ACTIONS(3018), + [sym_private_property_identifier] = ACTIONS(3018), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [974] = { + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3006), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1940), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3006), [anon_sym_readonly] = ACTIONS(3006), [anon_sym_get] = ACTIONS(3006), @@ -111282,77 +111909,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3006), [anon_sym_string] = ACTIONS(3006), [anon_sym_symbol] = ACTIONS(3006), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_extends] = ACTIONS(1713), }, - [968] = { - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3006), + [975] = { + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3006), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1940), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3006), [anon_sym_readonly] = ACTIONS(3006), [anon_sym_get] = ACTIONS(3006), @@ -111367,77 +111993,826 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3006), [anon_sym_string] = ACTIONS(3006), [anon_sym_symbol] = ACTIONS(3006), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_extends] = ACTIONS(1713), }, - [969] = { - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3006), + [976] = { + [sym__call_signature] = STATE(6072), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3038), + [anon_sym_export] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_EQ_GT] = ACTIONS(1944), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(3040), + [anon_sym_set] = ACTIONS(3040), + [anon_sym_declare] = ACTIONS(3040), + [anon_sym_public] = ACTIONS(3040), + [anon_sym_private] = ACTIONS(3040), + [anon_sym_protected] = ACTIONS(3040), + [anon_sym_module] = ACTIONS(3040), + [anon_sym_any] = ACTIONS(3040), + [anon_sym_number] = ACTIONS(3040), + [anon_sym_boolean] = ACTIONS(3040), + [anon_sym_string] = ACTIONS(3040), + [anon_sym_symbol] = ACTIONS(3040), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), + }, + [977] = { + [sym__call_signature] = STATE(6072), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3038), + [anon_sym_export] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(1948), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_EQ_GT] = ACTIONS(1944), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(3040), + [anon_sym_set] = ACTIONS(3040), + [anon_sym_declare] = ACTIONS(3040), + [anon_sym_public] = ACTIONS(3040), + [anon_sym_private] = ACTIONS(3040), + [anon_sym_protected] = ACTIONS(3040), + [anon_sym_module] = ACTIONS(3040), + [anon_sym_any] = ACTIONS(3040), + [anon_sym_number] = ACTIONS(3040), + [anon_sym_boolean] = ACTIONS(3040), + [anon_sym_string] = ACTIONS(3040), + [anon_sym_symbol] = ACTIONS(3040), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), + }, + [978] = { + [sym__call_signature] = STATE(5783), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3020), + [anon_sym_export] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1924), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_readonly] = ACTIONS(3022), + [anon_sym_get] = ACTIONS(3022), + [anon_sym_set] = ACTIONS(3022), + [anon_sym_declare] = ACTIONS(3022), + [anon_sym_public] = ACTIONS(3022), + [anon_sym_private] = ACTIONS(3022), + [anon_sym_protected] = ACTIONS(3022), + [anon_sym_module] = ACTIONS(3022), + [anon_sym_any] = ACTIONS(3022), + [anon_sym_number] = ACTIONS(3022), + [anon_sym_boolean] = ACTIONS(3022), + [anon_sym_string] = ACTIONS(3022), + [anon_sym_symbol] = ACTIONS(3022), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_PIPE_RBRACE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [979] = { + [sym__call_signature] = STATE(6072), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3038), + [anon_sym_export] = ACTIONS(3040), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3040), + [anon_sym_EQ] = ACTIONS(1942), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3040), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3040), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_EQ_GT] = ACTIONS(1944), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3040), + [anon_sym_readonly] = ACTIONS(3040), + [anon_sym_get] = ACTIONS(3040), + [anon_sym_set] = ACTIONS(3040), + [anon_sym_declare] = ACTIONS(3040), + [anon_sym_public] = ACTIONS(3040), + [anon_sym_private] = ACTIONS(3040), + [anon_sym_protected] = ACTIONS(3040), + [anon_sym_module] = ACTIONS(3040), + [anon_sym_any] = ACTIONS(3040), + [anon_sym_number] = ACTIONS(3040), + [anon_sym_boolean] = ACTIONS(3040), + [anon_sym_string] = ACTIONS(3040), + [anon_sym_symbol] = ACTIONS(3040), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), + }, + [980] = { + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3044), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + }, + [981] = { + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3044), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + }, + [982] = { + [sym__call_signature] = STATE(5951), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3048), + [anon_sym_export] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(1948), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_EQ_GT] = ACTIONS(1950), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3050), + [anon_sym_readonly] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_declare] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_module] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3050), + [anon_sym_number] = ACTIONS(3050), + [anon_sym_boolean] = ACTIONS(3050), + [anon_sym_string] = ACTIONS(3050), + [anon_sym_symbol] = ACTIONS(3050), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), + }, + [983] = { + [sym__call_signature] = STATE(5951), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3048), + [anon_sym_export] = ACTIONS(3050), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3050), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3050), + [anon_sym_function] = ACTIONS(3042), + [anon_sym_EQ_GT] = ACTIONS(1950), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3050), + [anon_sym_readonly] = ACTIONS(3050), + [anon_sym_get] = ACTIONS(3050), + [anon_sym_set] = ACTIONS(3050), + [anon_sym_declare] = ACTIONS(3050), + [anon_sym_public] = ACTIONS(3050), + [anon_sym_private] = ACTIONS(3050), + [anon_sym_protected] = ACTIONS(3050), + [anon_sym_module] = ACTIONS(3050), + [anon_sym_any] = ACTIONS(3050), + [anon_sym_number] = ACTIONS(3050), + [anon_sym_boolean] = ACTIONS(3050), + [anon_sym_string] = ACTIONS(3050), + [anon_sym_symbol] = ACTIONS(3050), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), + }, + [984] = { + [sym__call_signature] = STATE(5783), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3020), + [anon_sym_export] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1924), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_readonly] = ACTIONS(3022), + [anon_sym_get] = ACTIONS(3022), + [anon_sym_set] = ACTIONS(3022), + [anon_sym_declare] = ACTIONS(3022), + [anon_sym_public] = ACTIONS(3022), + [anon_sym_private] = ACTIONS(3022), + [anon_sym_protected] = ACTIONS(3022), + [anon_sym_module] = ACTIONS(3022), + [anon_sym_any] = ACTIONS(3022), + [anon_sym_number] = ACTIONS(3022), + [anon_sym_boolean] = ACTIONS(3022), + [anon_sym_string] = ACTIONS(3022), + [anon_sym_symbol] = ACTIONS(3022), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [985] = { + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3006), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1940), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3006), [anon_sym_readonly] = ACTIONS(3006), [anon_sym_get] = ACTIONS(3006), @@ -111452,77 +112827,730 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3006), [anon_sym_string] = ACTIONS(3006), [anon_sym_symbol] = ACTIONS(3006), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_extends] = ACTIONS(1713), }, - [970] = { - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3006), + [986] = { + [sym__call_signature] = STATE(5826), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_readonly] = ACTIONS(3054), + [anon_sym_get] = ACTIONS(3054), + [anon_sym_set] = ACTIONS(3054), + [anon_sym_declare] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_module] = ACTIONS(3054), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [987] = { + [sym__call_signature] = STATE(5826), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2878), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3056), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_readonly] = ACTIONS(3054), + [anon_sym_get] = ACTIONS(3054), + [anon_sym_set] = ACTIONS(3054), + [anon_sym_declare] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_module] = ACTIONS(3054), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [988] = { + [sym__call_signature] = STATE(5819), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_extends] = ACTIONS(1713), + }, + [989] = { + [sym__call_signature] = STATE(5826), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2838), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_readonly] = ACTIONS(3054), + [anon_sym_get] = ACTIONS(3054), + [anon_sym_set] = ACTIONS(3054), + [anon_sym_declare] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_module] = ACTIONS(3054), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [990] = { + [sym__call_signature] = STATE(6052), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(1994), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1996), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_implements] = ACTIONS(1713), + [anon_sym_extends] = ACTIONS(1713), + }, + [991] = { + [sym__call_signature] = STATE(5826), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_readonly] = ACTIONS(3054), + [anon_sym_get] = ACTIONS(3054), + [anon_sym_set] = ACTIONS(3054), + [anon_sym_declare] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_module] = ACTIONS(3054), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [992] = { + [sym__call_signature] = STATE(5783), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3020), + [anon_sym_export] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1924), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_readonly] = ACTIONS(3022), + [anon_sym_get] = ACTIONS(3022), + [anon_sym_set] = ACTIONS(3022), + [anon_sym_declare] = ACTIONS(3022), + [anon_sym_public] = ACTIONS(3022), + [anon_sym_private] = ACTIONS(3022), + [anon_sym_protected] = ACTIONS(3022), + [anon_sym_module] = ACTIONS(3022), + [anon_sym_any] = ACTIONS(3022), + [anon_sym_number] = ACTIONS(3022), + [anon_sym_boolean] = ACTIONS(3022), + [anon_sym_string] = ACTIONS(3022), + [anon_sym_symbol] = ACTIONS(3022), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [993] = { + [sym__call_signature] = STATE(6116), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3068), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_EQ_GT] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3068), + [anon_sym_readonly] = ACTIONS(3068), + [anon_sym_get] = ACTIONS(3068), + [anon_sym_set] = ACTIONS(3068), + [anon_sym_declare] = ACTIONS(3068), + [anon_sym_public] = ACTIONS(3068), + [anon_sym_private] = ACTIONS(3068), + [anon_sym_protected] = ACTIONS(3068), + [anon_sym_module] = ACTIONS(3068), + [anon_sym_any] = ACTIONS(3068), + [anon_sym_number] = ACTIONS(3068), + [anon_sym_boolean] = ACTIONS(3068), + [anon_sym_string] = ACTIONS(3068), + [anon_sym_symbol] = ACTIONS(3068), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_LBRACE_PIPE] = ACTIONS(1730), + }, + [994] = { + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3006), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1940), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3006), [anon_sym_readonly] = ACTIONS(3006), [anon_sym_get] = ACTIONS(3006), @@ -111537,162 +113565,74 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3006), [anon_sym_string] = ACTIONS(3006), [anon_sym_symbol] = ACTIONS(3006), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [971] = { - [sym__call_signature] = STATE(5773), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3022), - [anon_sym_export] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3024), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_readonly] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3024), - [anon_sym_set] = ACTIONS(3024), - [anon_sym_declare] = ACTIONS(3024), - [anon_sym_public] = ACTIONS(3024), - [anon_sym_private] = ACTIONS(3024), - [anon_sym_protected] = ACTIONS(3024), - [anon_sym_module] = ACTIONS(3024), - [anon_sym_any] = ACTIONS(3024), - [anon_sym_number] = ACTIONS(3024), - [anon_sym_boolean] = ACTIONS(3024), - [anon_sym_string] = ACTIONS(3024), - [anon_sym_symbol] = ACTIONS(3024), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_PIPE_RBRACE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_extends] = ACTIONS(1713), }, - [972] = { - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3006), + [995] = { + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3004), [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3006), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3008), - [anon_sym_SQUOTE] = ACTIONS(3008), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_number] = ACTIONS(3008), - [sym_private_property_identifier] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1940), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3006), [anon_sym_readonly] = ACTIONS(3006), [anon_sym_get] = ACTIONS(3006), @@ -111707,2716 +113647,974 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3006), [anon_sym_string] = ACTIONS(3006), [anon_sym_symbol] = ACTIONS(3006), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [973] = { - [sym__call_signature] = STATE(5796), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3010), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_extends] = ACTIONS(1729), - }, - [974] = { - [sym__call_signature] = STATE(5928), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3040), - [anon_sym_export] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_EQ_GT] = ACTIONS(1944), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_readonly] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(3042), - [anon_sym_set] = ACTIONS(3042), - [anon_sym_declare] = ACTIONS(3042), - [anon_sym_public] = ACTIONS(3042), - [anon_sym_private] = ACTIONS(3042), - [anon_sym_protected] = ACTIONS(3042), - [anon_sym_module] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3042), - [anon_sym_number] = ACTIONS(3042), - [anon_sym_boolean] = ACTIONS(3042), - [anon_sym_string] = ACTIONS(3042), - [anon_sym_symbol] = ACTIONS(3042), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), - }, - [975] = { - [sym__call_signature] = STATE(5928), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3040), - [anon_sym_export] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(1942), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_EQ_GT] = ACTIONS(1944), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_readonly] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(3042), - [anon_sym_set] = ACTIONS(3042), - [anon_sym_declare] = ACTIONS(3042), - [anon_sym_public] = ACTIONS(3042), - [anon_sym_private] = ACTIONS(3042), - [anon_sym_protected] = ACTIONS(3042), - [anon_sym_module] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3042), - [anon_sym_number] = ACTIONS(3042), - [anon_sym_boolean] = ACTIONS(3042), - [anon_sym_string] = ACTIONS(3042), - [anon_sym_symbol] = ACTIONS(3042), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), - }, - [976] = { - [sym__call_signature] = STATE(5928), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3040), - [anon_sym_export] = ACTIONS(3042), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3042), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3042), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_EQ_GT] = ACTIONS(1944), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3042), - [anon_sym_readonly] = ACTIONS(3042), - [anon_sym_get] = ACTIONS(3042), - [anon_sym_set] = ACTIONS(3042), - [anon_sym_declare] = ACTIONS(3042), - [anon_sym_public] = ACTIONS(3042), - [anon_sym_private] = ACTIONS(3042), - [anon_sym_protected] = ACTIONS(3042), - [anon_sym_module] = ACTIONS(3042), - [anon_sym_any] = ACTIONS(3042), - [anon_sym_number] = ACTIONS(3042), - [anon_sym_boolean] = ACTIONS(3042), - [anon_sym_string] = ACTIONS(3042), - [anon_sym_symbol] = ACTIONS(3042), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), - }, - [977] = { - [sym__call_signature] = STATE(5773), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3022), - [anon_sym_export] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3024), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_readonly] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3024), - [anon_sym_set] = ACTIONS(3024), - [anon_sym_declare] = ACTIONS(3024), - [anon_sym_public] = ACTIONS(3024), - [anon_sym_private] = ACTIONS(3024), - [anon_sym_protected] = ACTIONS(3024), - [anon_sym_module] = ACTIONS(3024), - [anon_sym_any] = ACTIONS(3024), - [anon_sym_number] = ACTIONS(3024), - [anon_sym_boolean] = ACTIONS(3024), - [anon_sym_string] = ACTIONS(3024), - [anon_sym_symbol] = ACTIONS(3024), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_PIPE_RBRACE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [978] = { - [sym__call_signature] = STATE(5796), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3010), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_extends] = ACTIONS(1729), - }, - [979] = { - [sym__call_signature] = STATE(5950), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3048), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3048), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_get] = ACTIONS(3048), - [anon_sym_set] = ACTIONS(3048), - [anon_sym_declare] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - }, - [980] = { - [sym__call_signature] = STATE(5950), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3048), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3048), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_get] = ACTIONS(3048), - [anon_sym_set] = ACTIONS(3048), - [anon_sym_declare] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - }, - [981] = { - [sym__call_signature] = STATE(5796), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3010), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(1978), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_extends] = ACTIONS(1729), - }, - [982] = { - [sym__call_signature] = STATE(5773), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3022), - [anon_sym_export] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3024), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_readonly] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3024), - [anon_sym_set] = ACTIONS(3024), - [anon_sym_declare] = ACTIONS(3024), - [anon_sym_public] = ACTIONS(3024), - [anon_sym_private] = ACTIONS(3024), - [anon_sym_protected] = ACTIONS(3024), - [anon_sym_module] = ACTIONS(3024), - [anon_sym_any] = ACTIONS(3024), - [anon_sym_number] = ACTIONS(3024), - [anon_sym_boolean] = ACTIONS(3024), - [anon_sym_string] = ACTIONS(3024), - [anon_sym_symbol] = ACTIONS(3024), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [983] = { - [sym__call_signature] = STATE(5805), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3050), - [anon_sym_export] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_readonly] = ACTIONS(3052), - [anon_sym_get] = ACTIONS(3052), - [anon_sym_set] = ACTIONS(3052), - [anon_sym_declare] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_module] = ACTIONS(3052), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), - }, - [984] = { - [sym__call_signature] = STATE(5805), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3050), - [anon_sym_export] = ACTIONS(3052), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3052), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3052), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3052), - [anon_sym_function] = ACTIONS(3044), - [anon_sym_EQ_GT] = ACTIONS(1950), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3052), - [anon_sym_readonly] = ACTIONS(3052), - [anon_sym_get] = ACTIONS(3052), - [anon_sym_set] = ACTIONS(3052), - [anon_sym_declare] = ACTIONS(3052), - [anon_sym_public] = ACTIONS(3052), - [anon_sym_private] = ACTIONS(3052), - [anon_sym_protected] = ACTIONS(3052), - [anon_sym_module] = ACTIONS(3052), - [anon_sym_any] = ACTIONS(3052), - [anon_sym_number] = ACTIONS(3052), - [anon_sym_boolean] = ACTIONS(3052), - [anon_sym_string] = ACTIONS(3052), - [anon_sym_symbol] = ACTIONS(3052), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), - }, - [985] = { - [sym__call_signature] = STATE(5773), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3022), - [anon_sym_export] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3024), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_readonly] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3024), - [anon_sym_set] = ACTIONS(3024), - [anon_sym_declare] = ACTIONS(3024), - [anon_sym_public] = ACTIONS(3024), - [anon_sym_private] = ACTIONS(3024), - [anon_sym_protected] = ACTIONS(3024), - [anon_sym_module] = ACTIONS(3024), - [anon_sym_any] = ACTIONS(3024), - [anon_sym_number] = ACTIONS(3024), - [anon_sym_boolean] = ACTIONS(3024), - [anon_sym_string] = ACTIONS(3024), - [anon_sym_symbol] = ACTIONS(3024), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [986] = { - [sym__call_signature] = STATE(5988), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3054), - [anon_sym_export] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_EQ_GT] = ACTIONS(2277), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3056), - [anon_sym_get] = ACTIONS(3056), - [anon_sym_set] = ACTIONS(3056), - [anon_sym_declare] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_protected] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_any] = ACTIONS(3056), - [anon_sym_number] = ACTIONS(3056), - [anon_sym_boolean] = ACTIONS(3056), - [anon_sym_string] = ACTIONS(3056), - [anon_sym_symbol] = ACTIONS(3056), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_LBRACE_PIPE] = ACTIONS(1746), - }, - [987] = { - [sym__call_signature] = STATE(6093), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2880), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_declare] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_protected] = ACTIONS(3062), - [anon_sym_module] = ACTIONS(3062), - [anon_sym_any] = ACTIONS(3062), - [anon_sym_number] = ACTIONS(3062), - [anon_sym_boolean] = ACTIONS(3062), - [anon_sym_string] = ACTIONS(3062), - [anon_sym_symbol] = ACTIONS(3062), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [988] = { - [sym__call_signature] = STATE(6093), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_of] = ACTIONS(3069), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_declare] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_protected] = ACTIONS(3062), - [anon_sym_module] = ACTIONS(3062), - [anon_sym_any] = ACTIONS(3062), - [anon_sym_number] = ACTIONS(3062), - [anon_sym_boolean] = ACTIONS(3062), - [anon_sym_string] = ACTIONS(3062), - [anon_sym_symbol] = ACTIONS(3062), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [989] = { - [sym__call_signature] = STATE(6093), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_declare] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_protected] = ACTIONS(3062), - [anon_sym_module] = ACTIONS(3062), - [anon_sym_any] = ACTIONS(3062), - [anon_sym_number] = ACTIONS(3062), - [anon_sym_boolean] = ACTIONS(3062), - [anon_sym_string] = ACTIONS(3062), - [anon_sym_symbol] = ACTIONS(3062), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [990] = { - [sym__call_signature] = STATE(6093), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_declare] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_protected] = ACTIONS(3062), - [anon_sym_module] = ACTIONS(3062), - [anon_sym_any] = ACTIONS(3062), - [anon_sym_number] = ACTIONS(3062), - [anon_sym_boolean] = ACTIONS(3062), - [anon_sym_string] = ACTIONS(3062), - [anon_sym_symbol] = ACTIONS(3062), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [991] = { - [sym__call_signature] = STATE(6093), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3062), - [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_declare] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_protected] = ACTIONS(3062), - [anon_sym_module] = ACTIONS(3062), - [anon_sym_any] = ACTIONS(3062), - [anon_sym_number] = ACTIONS(3062), - [anon_sym_boolean] = ACTIONS(3062), - [anon_sym_string] = ACTIONS(3062), - [anon_sym_symbol] = ACTIONS(3062), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [992] = { - [sym__call_signature] = STATE(5773), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3022), - [anon_sym_export] = ACTIONS(3024), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3024), - [anon_sym_EQ] = ACTIONS(1974), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3024), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3024), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3024), - [anon_sym_readonly] = ACTIONS(3024), - [anon_sym_get] = ACTIONS(3024), - [anon_sym_set] = ACTIONS(3024), - [anon_sym_declare] = ACTIONS(3024), - [anon_sym_public] = ACTIONS(3024), - [anon_sym_private] = ACTIONS(3024), - [anon_sym_protected] = ACTIONS(3024), - [anon_sym_module] = ACTIONS(3024), - [anon_sym_any] = ACTIONS(3024), - [anon_sym_number] = ACTIONS(3024), - [anon_sym_boolean] = ACTIONS(3024), - [anon_sym_string] = ACTIONS(3024), - [anon_sym_symbol] = ACTIONS(3024), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [993] = { - [sym__call_signature] = STATE(5988), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3054), - [anon_sym_export] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(2275), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_EQ_GT] = ACTIONS(2277), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3056), - [anon_sym_get] = ACTIONS(3056), - [anon_sym_set] = ACTIONS(3056), - [anon_sym_declare] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_protected] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_any] = ACTIONS(3056), - [anon_sym_number] = ACTIONS(3056), - [anon_sym_boolean] = ACTIONS(3056), - [anon_sym_string] = ACTIONS(3056), - [anon_sym_symbol] = ACTIONS(3056), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_LBRACE_PIPE] = ACTIONS(1746), - }, - [994] = { - [sym__call_signature] = STATE(6088), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1972), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_implements] = ACTIONS(1729), - [anon_sym_extends] = ACTIONS(1729), - }, - [995] = { - [sym__call_signature] = STATE(5796), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3010), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_extends] = ACTIONS(1729), + [anon_sym_extends] = ACTIONS(1713), }, [996] = { - [sym__call_signature] = STATE(5893), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3075), - [anon_sym_export] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3077), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1980), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3077), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3077), - [anon_sym_set] = ACTIONS(3077), - [anon_sym_declare] = ACTIONS(3077), - [anon_sym_public] = ACTIONS(3077), - [anon_sym_private] = ACTIONS(3077), - [anon_sym_protected] = ACTIONS(3077), - [anon_sym_module] = ACTIONS(3077), - [anon_sym_any] = ACTIONS(3077), - [anon_sym_number] = ACTIONS(3077), - [anon_sym_boolean] = ACTIONS(3077), - [anon_sym_string] = ACTIONS(3077), - [anon_sym_symbol] = ACTIONS(3077), - [anon_sym_extends] = ACTIONS(1729), + [sym__call_signature] = STATE(5972), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3072), + [anon_sym_export] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3074), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3074), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1958), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_declare] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_module] = ACTIONS(3074), + [anon_sym_any] = ACTIONS(3074), + [anon_sym_number] = ACTIONS(3074), + [anon_sym_boolean] = ACTIONS(3074), + [anon_sym_string] = ACTIONS(3074), + [anon_sym_symbol] = ACTIONS(3074), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), }, [997] = { - [sym__call_signature] = STATE(5796), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3010), - [anon_sym_export] = ACTIONS(3012), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3012), - [anon_sym_EQ] = ACTIONS(2006), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3012), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3012), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3012), - [anon_sym_readonly] = ACTIONS(3012), - [anon_sym_get] = ACTIONS(3012), - [anon_sym_set] = ACTIONS(3012), - [anon_sym_declare] = ACTIONS(3012), - [anon_sym_public] = ACTIONS(3012), - [anon_sym_private] = ACTIONS(3012), - [anon_sym_protected] = ACTIONS(3012), - [anon_sym_module] = ACTIONS(3012), - [anon_sym_any] = ACTIONS(3012), - [anon_sym_number] = ACTIONS(3012), - [anon_sym_boolean] = ACTIONS(3012), - [anon_sym_string] = ACTIONS(3012), - [anon_sym_symbol] = ACTIONS(3012), - [anon_sym_extends] = ACTIONS(1729), + [sym__call_signature] = STATE(5826), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2870), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3056), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_readonly] = ACTIONS(3054), + [anon_sym_get] = ACTIONS(3054), + [anon_sym_set] = ACTIONS(3054), + [anon_sym_declare] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_module] = ACTIONS(3054), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [sym__automatic_semicolon] = ACTIONS(1730), }, [998] = { - [sym__call_signature] = STATE(6093), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3060), - [anon_sym_export] = ACTIONS(3062), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3062), + [sym__call_signature] = STATE(5972), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3072), + [anon_sym_export] = ACTIONS(3074), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3074), [anon_sym_EQ] = ACTIONS(1956), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3062), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3062), - [anon_sym_function] = ACTIONS(3026), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3074), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3074), + [anon_sym_function] = ACTIONS(3024), [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3062), - [anon_sym_readonly] = ACTIONS(3062), - [anon_sym_get] = ACTIONS(3062), - [anon_sym_set] = ACTIONS(3062), - [anon_sym_declare] = ACTIONS(3062), - [anon_sym_public] = ACTIONS(3062), - [anon_sym_private] = ACTIONS(3062), - [anon_sym_protected] = ACTIONS(3062), - [anon_sym_module] = ACTIONS(3062), - [anon_sym_any] = ACTIONS(3062), - [anon_sym_number] = ACTIONS(3062), - [anon_sym_boolean] = ACTIONS(3062), - [anon_sym_string] = ACTIONS(3062), - [anon_sym_symbol] = ACTIONS(3062), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3074), + [anon_sym_readonly] = ACTIONS(3074), + [anon_sym_get] = ACTIONS(3074), + [anon_sym_set] = ACTIONS(3074), + [anon_sym_declare] = ACTIONS(3074), + [anon_sym_public] = ACTIONS(3074), + [anon_sym_private] = ACTIONS(3074), + [anon_sym_protected] = ACTIONS(3074), + [anon_sym_module] = ACTIONS(3074), + [anon_sym_any] = ACTIONS(3074), + [anon_sym_number] = ACTIONS(3074), + [anon_sym_boolean] = ACTIONS(3074), + [anon_sym_string] = ACTIONS(3074), + [anon_sym_symbol] = ACTIONS(3074), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), }, [999] = { - [sym__call_signature] = STATE(5893), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3075), - [anon_sym_export] = ACTIONS(3077), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3077), - [anon_sym_EQ] = ACTIONS(1978), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3077), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3077), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1980), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3077), - [anon_sym_readonly] = ACTIONS(3077), - [anon_sym_get] = ACTIONS(3077), - [anon_sym_set] = ACTIONS(3077), - [anon_sym_declare] = ACTIONS(3077), - [anon_sym_public] = ACTIONS(3077), - [anon_sym_private] = ACTIONS(3077), - [anon_sym_protected] = ACTIONS(3077), - [anon_sym_module] = ACTIONS(3077), - [anon_sym_any] = ACTIONS(3077), - [anon_sym_number] = ACTIONS(3077), - [anon_sym_boolean] = ACTIONS(3077), - [anon_sym_string] = ACTIONS(3077), - [anon_sym_symbol] = ACTIONS(3077), - [anon_sym_extends] = ACTIONS(1729), + [sym__call_signature] = STATE(6116), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3068), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_EQ_GT] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3068), + [anon_sym_readonly] = ACTIONS(3068), + [anon_sym_get] = ACTIONS(3068), + [anon_sym_set] = ACTIONS(3068), + [anon_sym_declare] = ACTIONS(3068), + [anon_sym_public] = ACTIONS(3068), + [anon_sym_private] = ACTIONS(3068), + [anon_sym_protected] = ACTIONS(3068), + [anon_sym_module] = ACTIONS(3068), + [anon_sym_any] = ACTIONS(3068), + [anon_sym_number] = ACTIONS(3068), + [anon_sym_boolean] = ACTIONS(3068), + [anon_sym_string] = ACTIONS(3068), + [anon_sym_symbol] = ACTIONS(3068), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_LBRACE_PIPE] = ACTIONS(1730), }, [1000] = { - [sym__call_signature] = STATE(6133), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3079), - [anon_sym_export] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_get] = ACTIONS(3081), - [anon_sym_set] = ACTIONS(3081), - [anon_sym_declare] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_module] = ACTIONS(3081), - [anon_sym_any] = ACTIONS(3081), - [anon_sym_number] = ACTIONS(3081), - [anon_sym_boolean] = ACTIONS(3081), - [anon_sym_string] = ACTIONS(3081), - [anon_sym_symbol] = ACTIONS(3081), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__call_signature] = STATE(6052), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1996), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_implements] = ACTIONS(1713), + [anon_sym_extends] = ACTIONS(1713), }, [1001] = { - [sym__call_signature] = STATE(6088), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(1970), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1972), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_implements] = ACTIONS(1729), - [anon_sym_extends] = ACTIONS(1729), + [sym__call_signature] = STATE(5783), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3020), + [anon_sym_export] = ACTIONS(3022), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3022), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3022), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3022), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1924), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3022), + [anon_sym_readonly] = ACTIONS(3022), + [anon_sym_get] = ACTIONS(3022), + [anon_sym_set] = ACTIONS(3022), + [anon_sym_declare] = ACTIONS(3022), + [anon_sym_public] = ACTIONS(3022), + [anon_sym_private] = ACTIONS(3022), + [anon_sym_protected] = ACTIONS(3022), + [anon_sym_module] = ACTIONS(3022), + [anon_sym_any] = ACTIONS(3022), + [anon_sym_number] = ACTIONS(3022), + [anon_sym_boolean] = ACTIONS(3022), + [anon_sym_string] = ACTIONS(3022), + [anon_sym_symbol] = ACTIONS(3022), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), }, [1002] = { - [sym__call_signature] = STATE(6133), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3079), - [anon_sym_export] = ACTIONS(3081), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3081), - [anon_sym_EQ] = ACTIONS(1952), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3081), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3081), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3081), - [anon_sym_readonly] = ACTIONS(3081), - [anon_sym_get] = ACTIONS(3081), - [anon_sym_set] = ACTIONS(3081), - [anon_sym_declare] = ACTIONS(3081), - [anon_sym_public] = ACTIONS(3081), - [anon_sym_private] = ACTIONS(3081), - [anon_sym_protected] = ACTIONS(3081), - [anon_sym_module] = ACTIONS(3081), - [anon_sym_any] = ACTIONS(3081), - [anon_sym_number] = ACTIONS(3081), - [anon_sym_boolean] = ACTIONS(3081), - [anon_sym_string] = ACTIONS(3081), - [anon_sym_symbol] = ACTIONS(3081), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym__call_signature] = STATE(5819), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_extends] = ACTIONS(1713), }, [1003] = { - [sym__call_signature] = STATE(6088), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3071), - [anon_sym_export] = ACTIONS(3073), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3073), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3073), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3073), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1972), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3073), - [anon_sym_readonly] = ACTIONS(3073), - [anon_sym_get] = ACTIONS(3073), - [anon_sym_set] = ACTIONS(3073), - [anon_sym_declare] = ACTIONS(3073), - [anon_sym_public] = ACTIONS(3073), - [anon_sym_private] = ACTIONS(3073), - [anon_sym_protected] = ACTIONS(3073), - [anon_sym_module] = ACTIONS(3073), - [anon_sym_any] = ACTIONS(3073), - [anon_sym_number] = ACTIONS(3073), - [anon_sym_boolean] = ACTIONS(3073), - [anon_sym_string] = ACTIONS(3073), - [anon_sym_symbol] = ACTIONS(3073), - [anon_sym_implements] = ACTIONS(1729), - [anon_sym_extends] = ACTIONS(1729), + [sym__call_signature] = STATE(6052), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3062), + [anon_sym_export] = ACTIONS(3064), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3064), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3064), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3064), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1996), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3064), + [anon_sym_readonly] = ACTIONS(3064), + [anon_sym_get] = ACTIONS(3064), + [anon_sym_set] = ACTIONS(3064), + [anon_sym_declare] = ACTIONS(3064), + [anon_sym_public] = ACTIONS(3064), + [anon_sym_private] = ACTIONS(3064), + [anon_sym_protected] = ACTIONS(3064), + [anon_sym_module] = ACTIONS(3064), + [anon_sym_any] = ACTIONS(3064), + [anon_sym_number] = ACTIONS(3064), + [anon_sym_boolean] = ACTIONS(3064), + [anon_sym_string] = ACTIONS(3064), + [anon_sym_symbol] = ACTIONS(3064), + [anon_sym_implements] = ACTIONS(1713), + [anon_sym_extends] = ACTIONS(1713), }, [1004] = { - [sym__call_signature] = STATE(5988), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3054), - [anon_sym_export] = ACTIONS(3056), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3056), - [anon_sym_EQ] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3056), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3056), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_EQ_GT] = ACTIONS(2277), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3056), - [anon_sym_readonly] = ACTIONS(3056), - [anon_sym_get] = ACTIONS(3056), - [anon_sym_set] = ACTIONS(3056), - [anon_sym_declare] = ACTIONS(3056), - [anon_sym_public] = ACTIONS(3056), - [anon_sym_private] = ACTIONS(3056), - [anon_sym_protected] = ACTIONS(3056), - [anon_sym_module] = ACTIONS(3056), - [anon_sym_any] = ACTIONS(3056), - [anon_sym_number] = ACTIONS(3056), - [anon_sym_boolean] = ACTIONS(3056), - [anon_sym_string] = ACTIONS(3056), - [anon_sym_symbol] = ACTIONS(3056), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_LBRACE_PIPE] = ACTIONS(1746), + [sym__call_signature] = STATE(5826), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3052), + [anon_sym_export] = ACTIONS(3054), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3054), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3054), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_of] = ACTIONS(3079), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3054), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3054), + [anon_sym_readonly] = ACTIONS(3054), + [anon_sym_get] = ACTIONS(3054), + [anon_sym_set] = ACTIONS(3054), + [anon_sym_declare] = ACTIONS(3054), + [anon_sym_public] = ACTIONS(3054), + [anon_sym_private] = ACTIONS(3054), + [anon_sym_protected] = ACTIONS(3054), + [anon_sym_module] = ACTIONS(3054), + [anon_sym_any] = ACTIONS(3054), + [anon_sym_number] = ACTIONS(3054), + [anon_sym_boolean] = ACTIONS(3054), + [anon_sym_string] = ACTIONS(3054), + [anon_sym_symbol] = ACTIONS(3054), + [sym__automatic_semicolon] = ACTIONS(1730), }, [1005] = { - [sym__call_signature] = STATE(6025), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), + [sym__call_signature] = STATE(6116), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3066), + [anon_sym_export] = ACTIONS(3068), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3068), + [anon_sym_EQ] = ACTIONS(2109), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3068), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3068), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_EQ_GT] = ACTIONS(2111), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3068), + [anon_sym_readonly] = ACTIONS(3068), + [anon_sym_get] = ACTIONS(3068), + [anon_sym_set] = ACTIONS(3068), + [anon_sym_declare] = ACTIONS(3068), + [anon_sym_public] = ACTIONS(3068), + [anon_sym_private] = ACTIONS(3068), + [anon_sym_protected] = ACTIONS(3068), + [anon_sym_module] = ACTIONS(3068), + [anon_sym_any] = ACTIONS(3068), + [anon_sym_number] = ACTIONS(3068), + [anon_sym_boolean] = ACTIONS(3068), + [anon_sym_string] = ACTIONS(3068), + [anon_sym_symbol] = ACTIONS(3068), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_LBRACE_PIPE] = ACTIONS(1730), + }, + [1006] = { + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_with] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_debugger] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_finally] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_void] = ACTIONS(2022), + [anon_sym_delete] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2020), + [sym_number] = ACTIONS(2020), + [sym_this] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_true] = ACTIONS(2022), + [sym_false] = ACTIONS(2022), + [sym_null] = ACTIONS(2022), + [sym_undefined] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [sym__automatic_semicolon] = ACTIONS(3081), + }, + [1007] = { + [sym__call_signature] = STATE(5896), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), [sym_identifier] = ACTIONS(3083), [anon_sym_export] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(2006), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(2305), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_EQ_GT] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3085), [anon_sym_readonly] = ACTIONS(3085), [anon_sym_get] = ACTIONS(3085), @@ -114431,154 +114629,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3085), [anon_sym_string] = ACTIONS(3085), [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_extends] = ACTIONS(1729), - }, - [1006] = { - [sym__call_signature] = STATE(5950), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3048), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3048), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_get] = ACTIONS(3048), - [anon_sym_set] = ACTIONS(3048), - [anon_sym_declare] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), + [anon_sym_LBRACE_PIPE] = ACTIONS(1730), }, - [1007] = { - [sym__call_signature] = STATE(5925), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), + [1008] = { + [sym__call_signature] = STATE(6003), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), [sym_identifier] = ACTIONS(3087), [anon_sym_export] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(1994), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1996), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1984), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3089), [anon_sym_readonly] = ACTIONS(3089), [anon_sym_get] = ACTIONS(3089), @@ -114593,74 +114710,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3089), [anon_sym_string] = ACTIONS(3089), [anon_sym_symbol] = ACTIONS(3089), - [anon_sym_extends] = ACTIONS(1729), + [anon_sym_extends] = ACTIONS(1713), }, - [1008] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), + [1009] = { + [sym__call_signature] = STATE(5839), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), [sym_identifier] = ACTIONS(3091), [anon_sym_export] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1962), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3093), [anon_sym_readonly] = ACTIONS(3093), [anon_sym_get] = ACTIONS(3093), @@ -114675,720 +114790,398 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3093), [anon_sym_string] = ACTIONS(3093), [anon_sym_symbol] = ACTIONS(3093), - }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [anon_sym_export] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_namespace] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [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_catch] = ACTIONS(2062), - [anon_sym_finally] = ACTIONS(2062), - [anon_sym_yield] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_class] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2062), - [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_readonly] = 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_abstract] = ACTIONS(2062), - [anon_sym_interface] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [sym__automatic_semicolon] = ACTIONS(3102), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), }, [1010] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(6070), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(6052), - [sym_pattern] = STATE(4593), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4300), - [sym_constructor_type] = STATE(4300), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4300), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5520), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4300), - [sym_union_type] = STATE(4300), - [sym_intersection_type] = STATE(4300), - [sym_function_type] = STATE(4300), - [sym_identifier] = ACTIONS(1720), - [anon_sym_export] = ACTIONS(1722), + [sym__call_signature] = STATE(5795), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3095), + [anon_sym_export] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3097), + [anon_sym_EQ] = ACTIONS(2281), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2283), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_readonly] = ACTIONS(3097), + [anon_sym_get] = ACTIONS(3097), + [anon_sym_set] = ACTIONS(3097), + [anon_sym_declare] = ACTIONS(3097), + [anon_sym_public] = ACTIONS(3097), + [anon_sym_private] = ACTIONS(3097), + [anon_sym_protected] = ACTIONS(3097), + [anon_sym_module] = ACTIONS(3097), + [anon_sym_any] = ACTIONS(3097), + [anon_sym_number] = ACTIONS(3097), + [anon_sym_boolean] = ACTIONS(3097), + [anon_sym_string] = ACTIONS(3097), + [anon_sym_symbol] = ACTIONS(3097), + [anon_sym_implements] = ACTIONS(1713), + }, + [1011] = { + [sym__call_signature] = STATE(5914), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3099), + [anon_sym_export] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3101), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_get] = ACTIONS(3101), + [anon_sym_set] = ACTIONS(3101), + [anon_sym_declare] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_any] = ACTIONS(3101), + [anon_sym_number] = ACTIONS(3101), + [anon_sym_boolean] = ACTIONS(3101), + [anon_sym_string] = ACTIONS(3101), + [anon_sym_symbol] = ACTIONS(3101), + [anon_sym_extends] = ACTIONS(1713), + }, + [1012] = { + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3044), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + }, + [1013] = { + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(6142), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(6051), + [sym_pattern] = STATE(4639), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4343), + [sym_constructor_type] = STATE(4343), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4343), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5569), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4343), + [sym_union_type] = STATE(4343), + [sym_intersection_type] = STATE(4343), + [sym_function_type] = STATE(4343), + [sym_identifier] = ACTIONS(1704), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(564), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_EQ] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(1731), - [anon_sym_COMMA] = ACTIONS(3098), - [anon_sym_typeof] = ACTIONS(1736), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_RPAREN] = ACTIONS(3098), - [anon_sym_COLON] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(1740), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(1748), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_EQ] = ACTIONS(3103), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(1715), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_typeof] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_RPAREN] = ACTIONS(3103), + [anon_sym_COLON] = ACTIONS(3103), + [anon_sym_LBRACK] = ACTIONS(1724), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(1732), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(698), [anon_sym_AMP] = ACTIONS(700), [anon_sym_PIPE] = ACTIONS(702), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1768), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(1772), - [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(1774), - [anon_sym_number] = ACTIONS(1774), - [anon_sym_boolean] = ACTIONS(1774), - [anon_sym_string] = ACTIONS(1774), - [anon_sym_symbol] = ACTIONS(1774), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1752), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(1756), + [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(1758), + [anon_sym_number] = ACTIONS(1758), + [anon_sym_boolean] = ACTIONS(1758), + [anon_sym_string] = ACTIONS(1758), + [anon_sym_symbol] = ACTIONS(1758), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(718), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1011] = { - [sym__call_signature] = STATE(5763), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3104), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_EQ] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2154), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_implements] = ACTIONS(1729), - }, - [1012] = { - [sym__call_signature] = STATE(5925), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3087), - [anon_sym_export] = ACTIONS(3089), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3089), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3089), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3089), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1996), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3089), - [anon_sym_readonly] = ACTIONS(3089), - [anon_sym_get] = ACTIONS(3089), - [anon_sym_set] = ACTIONS(3089), - [anon_sym_declare] = ACTIONS(3089), - [anon_sym_public] = ACTIONS(3089), - [anon_sym_private] = ACTIONS(3089), - [anon_sym_protected] = ACTIONS(3089), - [anon_sym_module] = ACTIONS(3089), - [anon_sym_any] = ACTIONS(3089), - [anon_sym_number] = ACTIONS(3089), - [anon_sym_boolean] = ACTIONS(3089), - [anon_sym_string] = ACTIONS(3089), - [anon_sym_symbol] = ACTIONS(3089), - [anon_sym_extends] = ACTIONS(1729), - }, - [1013] = { - [sym__call_signature] = STATE(6043), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3108), - [anon_sym_export] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3110), - [anon_sym_EQ] = ACTIONS(2309), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_EQ_GT] = ACTIONS(2311), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3110), - [anon_sym_readonly] = ACTIONS(3110), - [anon_sym_get] = ACTIONS(3110), - [anon_sym_set] = ACTIONS(3110), - [anon_sym_declare] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_module] = ACTIONS(3110), - [anon_sym_any] = ACTIONS(3110), - [anon_sym_number] = ACTIONS(3110), - [anon_sym_boolean] = ACTIONS(3110), - [anon_sym_string] = ACTIONS(3110), - [anon_sym_symbol] = ACTIONS(3110), - [anon_sym_LBRACE_PIPE] = ACTIONS(1746), - }, [1014] = { - [sym_catch_clause] = STATE(1049), - [sym_finally_clause] = STATE(1132), - [ts_builtin_sym_end] = ACTIONS(3112), - [sym_identifier] = ACTIONS(3114), - [anon_sym_export] = ACTIONS(3114), - [anon_sym_default] = ACTIONS(3114), - [anon_sym_type] = ACTIONS(3114), - [anon_sym_namespace] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(3114), - [anon_sym_var] = ACTIONS(3114), - [anon_sym_let] = ACTIONS(3114), - [anon_sym_const] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3114), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_switch] = ACTIONS(3114), - [anon_sym_for] = ACTIONS(3114), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_await] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_do] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_with] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_debugger] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3114), - [anon_sym_catch] = ACTIONS(3116), - [anon_sym_finally] = ACTIONS(3118), - [anon_sym_yield] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_class] = ACTIONS(3114), - [anon_sym_async] = ACTIONS(3114), - [anon_sym_function] = ACTIONS(3114), - [anon_sym_new] = ACTIONS(3114), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_void] = ACTIONS(3114), - [anon_sym_delete] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_number] = ACTIONS(3112), - [sym_this] = ACTIONS(3114), - [sym_super] = ACTIONS(3114), - [sym_true] = ACTIONS(3114), - [sym_false] = ACTIONS(3114), - [sym_null] = ACTIONS(3114), - [sym_undefined] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3114), - [anon_sym_readonly] = ACTIONS(3114), - [anon_sym_get] = ACTIONS(3114), - [anon_sym_set] = ACTIONS(3114), - [anon_sym_declare] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_module] = ACTIONS(3114), - [anon_sym_any] = ACTIONS(3114), - [anon_sym_number] = ACTIONS(3114), - [anon_sym_boolean] = ACTIONS(3114), - [anon_sym_string] = ACTIONS(3114), - [anon_sym_symbol] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_interface] = ACTIONS(3114), - [anon_sym_enum] = ACTIONS(3114), - }, - [1015] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_COMMA] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_var] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_else] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_switch] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_do] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_with] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_debugger] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_throw] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1984), - [anon_sym_catch] = ACTIONS(1984), - [anon_sym_finally] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_number] = ACTIONS(1982), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_abstract] = ACTIONS(1984), - [anon_sym_interface] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [sym__automatic_semicolon] = ACTIONS(1992), - }, - [1016] = { - [sym__call_signature] = STATE(5829), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3120), - [anon_sym_export] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3122), - [anon_sym_EQ] = ACTIONS(1974), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3122), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3122), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1976), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3122), - [anon_sym_readonly] = ACTIONS(3122), - [anon_sym_get] = ACTIONS(3122), - [anon_sym_set] = ACTIONS(3122), - [anon_sym_declare] = ACTIONS(3122), - [anon_sym_public] = ACTIONS(3122), - [anon_sym_private] = ACTIONS(3122), - [anon_sym_protected] = ACTIONS(3122), - [anon_sym_module] = ACTIONS(3122), - [anon_sym_any] = ACTIONS(3122), - [anon_sym_number] = ACTIONS(3122), - [anon_sym_boolean] = ACTIONS(3122), - [anon_sym_string] = ACTIONS(3122), - [anon_sym_symbol] = ACTIONS(3122), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1017] = { - [sym__call_signature] = STATE(6025), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), + [sym__call_signature] = STATE(5896), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), [sym_identifier] = ACTIONS(3083), [anon_sym_export] = ACTIONS(3085), - [anon_sym_STAR] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1713), [anon_sym_type] = ACTIONS(3085), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), [anon_sym_namespace] = ACTIONS(3085), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), + [anon_sym_LBRACE] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_async] = ACTIONS(3085), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2008), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), + [anon_sym_function] = ACTIONS(3070), + [anon_sym_EQ_GT] = ACTIONS(2307), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), [anon_sym_static] = ACTIONS(3085), [anon_sym_readonly] = ACTIONS(3085), [anon_sym_get] = ACTIONS(3085), @@ -115403,2575 +115196,17 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3085), [anon_sym_string] = ACTIONS(3085), [anon_sym_symbol] = ACTIONS(3085), - [anon_sym_extends] = ACTIONS(1729), - }, - [1018] = { - [sym__call_signature] = STATE(5829), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3120), - [anon_sym_export] = ACTIONS(3122), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3122), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3122), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3122), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(1976), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3122), - [anon_sym_readonly] = ACTIONS(3122), - [anon_sym_get] = ACTIONS(3122), - [anon_sym_set] = ACTIONS(3122), - [anon_sym_declare] = ACTIONS(3122), - [anon_sym_public] = ACTIONS(3122), - [anon_sym_private] = ACTIONS(3122), - [anon_sym_protected] = ACTIONS(3122), - [anon_sym_module] = ACTIONS(3122), - [anon_sym_any] = ACTIONS(3122), - [anon_sym_number] = ACTIONS(3122), - [anon_sym_boolean] = ACTIONS(3122), - [anon_sym_string] = ACTIONS(3122), - [anon_sym_symbol] = ACTIONS(3122), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1019] = { - [sym__call_signature] = STATE(5763), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3104), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2154), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_implements] = ACTIONS(1729), - }, - [1020] = { - [sym__call_signature] = STATE(6043), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3108), - [anon_sym_export] = ACTIONS(3110), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3110), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3058), - [anon_sym_EQ_GT] = ACTIONS(2311), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3110), - [anon_sym_readonly] = ACTIONS(3110), - [anon_sym_get] = ACTIONS(3110), - [anon_sym_set] = ACTIONS(3110), - [anon_sym_declare] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_module] = ACTIONS(3110), - [anon_sym_any] = ACTIONS(3110), - [anon_sym_number] = ACTIONS(3110), - [anon_sym_boolean] = ACTIONS(3110), - [anon_sym_string] = ACTIONS(3110), - [anon_sym_symbol] = ACTIONS(3110), - [anon_sym_LBRACE_PIPE] = ACTIONS(1746), - }, - [1021] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [anon_sym_export] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_namespace] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [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_catch] = ACTIONS(2062), - [anon_sym_finally] = ACTIONS(2062), - [anon_sym_yield] = ACTIONS(2062), - [anon_sym_LBRACK] = ACTIONS(2060), - [anon_sym_LT] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2062), - [anon_sym_class] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2062), - [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_readonly] = 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_abstract] = ACTIONS(2062), - [anon_sym_interface] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - }, - [1022] = { - [sym__call_signature] = STATE(5975), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3126), - [anon_sym_EQ] = ACTIONS(2198), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2200), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_get] = ACTIONS(3126), - [anon_sym_set] = ACTIONS(3126), - [anon_sym_declare] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_module] = ACTIONS(3126), - [anon_sym_any] = ACTIONS(3126), - [anon_sym_number] = ACTIONS(3126), - [anon_sym_boolean] = ACTIONS(3126), - [anon_sym_string] = ACTIONS(3126), - [anon_sym_symbol] = ACTIONS(3126), - [anon_sym_extends] = ACTIONS(1729), - }, - [1023] = { - [sym__call_signature] = STATE(6096), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1024] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3091), - [anon_sym_export] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_get] = ACTIONS(3093), - [anon_sym_set] = ACTIONS(3093), - [anon_sym_declare] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_any] = ACTIONS(3093), - [anon_sym_number] = ACTIONS(3093), - [anon_sym_boolean] = ACTIONS(3093), - [anon_sym_string] = ACTIONS(3093), - [anon_sym_symbol] = ACTIONS(3093), - }, - [1025] = { - [sym__call_signature] = STATE(6096), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1026] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3091), - [anon_sym_export] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(3134), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_get] = ACTIONS(3093), - [anon_sym_set] = ACTIONS(3093), - [anon_sym_declare] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_any] = ACTIONS(3093), - [anon_sym_number] = ACTIONS(3093), - [anon_sym_boolean] = ACTIONS(3093), - [anon_sym_string] = ACTIONS(3093), - [anon_sym_symbol] = ACTIONS(3093), - }, - [1027] = { - [sym__call_signature] = STATE(5950), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3048), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3048), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_get] = ACTIONS(3048), - [anon_sym_set] = ACTIONS(3048), - [anon_sym_declare] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - }, - [1028] = { - [sym__call_signature] = STATE(5975), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3126), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2200), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_get] = ACTIONS(3126), - [anon_sym_set] = ACTIONS(3126), - [anon_sym_declare] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_module] = ACTIONS(3126), - [anon_sym_any] = ACTIONS(3126), - [anon_sym_number] = ACTIONS(3126), - [anon_sym_boolean] = ACTIONS(3126), - [anon_sym_string] = ACTIONS(3126), - [anon_sym_symbol] = ACTIONS(3126), - [anon_sym_extends] = ACTIONS(1729), - }, - [1029] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3091), - [anon_sym_export] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(3095), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1733), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_get] = ACTIONS(3093), - [anon_sym_set] = ACTIONS(3093), - [anon_sym_declare] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_any] = ACTIONS(3093), - [anon_sym_number] = ACTIONS(3093), - [anon_sym_boolean] = ACTIONS(3093), - [anon_sym_string] = ACTIONS(3093), - [anon_sym_symbol] = ACTIONS(3093), - }, - [1030] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [anon_sym_export] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_namespace] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [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_class] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2062), - [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_readonly] = 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_abstract] = ACTIONS(2062), - [anon_sym_interface] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_PIPE_RBRACE] = ACTIONS(2060), - [sym__automatic_semicolon] = ACTIONS(2060), - }, - [1031] = { - [sym__call_signature] = STATE(5975), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3126), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3126), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3126), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3126), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2200), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3126), - [anon_sym_readonly] = ACTIONS(3126), - [anon_sym_get] = ACTIONS(3126), - [anon_sym_set] = ACTIONS(3126), - [anon_sym_declare] = ACTIONS(3126), - [anon_sym_public] = ACTIONS(3126), - [anon_sym_private] = ACTIONS(3126), - [anon_sym_protected] = ACTIONS(3126), - [anon_sym_module] = ACTIONS(3126), - [anon_sym_any] = ACTIONS(3126), - [anon_sym_number] = ACTIONS(3126), - [anon_sym_boolean] = ACTIONS(3126), - [anon_sym_string] = ACTIONS(3126), - [anon_sym_symbol] = ACTIONS(3126), - [anon_sym_extends] = ACTIONS(1729), - }, - [1032] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_COMMA] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_var] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_else] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_switch] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_do] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_with] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_debugger] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_throw] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_number] = ACTIONS(1982), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_abstract] = ACTIONS(1984), - [anon_sym_interface] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [anon_sym_PIPE_RBRACE] = ACTIONS(1982), - [sym__automatic_semicolon] = ACTIONS(3136), - }, - [1033] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [anon_sym_export] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_namespace] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_COMMA] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [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_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_readonly] = 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_abstract] = ACTIONS(2078), - [anon_sym_interface] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), - [anon_sym_PIPE_RBRACE] = ACTIONS(2076), - [sym__automatic_semicolon] = ACTIONS(2076), - }, - [1034] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3091), - [anon_sym_export] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_get] = ACTIONS(3093), - [anon_sym_set] = ACTIONS(3093), - [anon_sym_declare] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_any] = ACTIONS(3093), - [anon_sym_number] = ACTIONS(3093), - [anon_sym_boolean] = ACTIONS(3093), - [anon_sym_string] = ACTIONS(3093), - [anon_sym_symbol] = ACTIONS(3093), + [anon_sym_LBRACE_PIPE] = ACTIONS(1730), }, - [1035] = { - [sym__call_signature] = STATE(6096), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3064), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1036] = { - [sym__call_signature] = STATE(6096), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1037] = { - [ts_builtin_sym_end] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_COMMA] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [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_readonly] = 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_abstract] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), - [anon_sym_PIPE_RBRACE] = ACTIONS(2194), - [sym__automatic_semicolon] = ACTIONS(2194), - }, - [1038] = { - [sym__call_signature] = STATE(6096), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3130), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3130), - [anon_sym_EQ] = ACTIONS(2148), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3130), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3130), - [anon_sym_function] = ACTIONS(3026), - [anon_sym_EQ_GT] = ACTIONS(2150), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3130), - [anon_sym_readonly] = ACTIONS(3130), - [anon_sym_get] = ACTIONS(3130), - [anon_sym_set] = ACTIONS(3130), - [anon_sym_declare] = ACTIONS(3130), - [anon_sym_public] = ACTIONS(3130), - [anon_sym_private] = ACTIONS(3130), - [anon_sym_protected] = ACTIONS(3130), - [anon_sym_module] = ACTIONS(3130), - [anon_sym_any] = ACTIONS(3130), - [anon_sym_number] = ACTIONS(3130), - [anon_sym_boolean] = ACTIONS(3130), - [anon_sym_string] = ACTIONS(3130), - [anon_sym_symbol] = ACTIONS(3130), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1039] = { - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [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_catch] = ACTIONS(2166), - [anon_sym_finally] = ACTIONS(2166), - [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_readonly] = 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_abstract] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - }, - [1040] = { - [sym_identifier] = ACTIONS(3006), - [anon_sym_export] = ACTIONS(3006), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3006), - [anon_sym_EQ] = ACTIONS(1726), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3006), - [anon_sym_LBRACE] = ACTIONS(3008), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1733), - [anon_sym_LBRACK] = ACTIONS(3008), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_async] = ACTIONS(3006), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3008), - [anon_sym_QMARK] = ACTIONS(3035), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym_this] = ACTIONS(3006), - [anon_sym_static] = ACTIONS(3006), - [anon_sym_readonly] = ACTIONS(3006), - [anon_sym_get] = ACTIONS(3006), - [anon_sym_set] = ACTIONS(3006), - [anon_sym_declare] = ACTIONS(3006), - [anon_sym_public] = ACTIONS(3006), - [anon_sym_private] = ACTIONS(3006), - [anon_sym_protected] = ACTIONS(3006), - [anon_sym_module] = ACTIONS(3006), - [anon_sym_any] = ACTIONS(3006), - [anon_sym_number] = ACTIONS(3006), - [anon_sym_boolean] = ACTIONS(3006), - [anon_sym_string] = ACTIONS(3006), - [anon_sym_symbol] = ACTIONS(3006), - }, - [1041] = { - [sym__call_signature] = STATE(5791), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3091), - [anon_sym_export] = ACTIONS(3093), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3093), - [anon_sym_EQ] = ACTIONS(2028), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3093), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(3100), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3093), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2030), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3093), - [anon_sym_readonly] = ACTIONS(3093), - [anon_sym_get] = ACTIONS(3093), - [anon_sym_set] = ACTIONS(3093), - [anon_sym_declare] = ACTIONS(3093), - [anon_sym_public] = ACTIONS(3093), - [anon_sym_private] = ACTIONS(3093), - [anon_sym_protected] = ACTIONS(3093), - [anon_sym_module] = ACTIONS(3093), - [anon_sym_any] = ACTIONS(3093), - [anon_sym_number] = ACTIONS(3093), - [anon_sym_boolean] = ACTIONS(3093), - [anon_sym_string] = ACTIONS(3093), - [anon_sym_symbol] = ACTIONS(3093), - }, - [1042] = { - [ts_builtin_sym_end] = ACTIONS(2060), - [sym_identifier] = ACTIONS(2062), - [anon_sym_export] = ACTIONS(2062), - [anon_sym_default] = ACTIONS(2062), - [anon_sym_type] = ACTIONS(2062), - [anon_sym_namespace] = ACTIONS(2062), - [anon_sym_LBRACE] = ACTIONS(2060), - [anon_sym_COMMA] = ACTIONS(2060), - [anon_sym_RBRACE] = ACTIONS(2060), - [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_class] = ACTIONS(2062), - [anon_sym_async] = ACTIONS(2062), - [anon_sym_function] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2062), - [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_readonly] = 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_abstract] = ACTIONS(2062), - [anon_sym_interface] = ACTIONS(2062), - [anon_sym_enum] = ACTIONS(2062), - [anon_sym_PIPE_RBRACE] = ACTIONS(2060), - [sym__automatic_semicolon] = ACTIONS(3138), - }, - [1043] = { - [sym__call_signature] = STATE(5950), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3046), - [anon_sym_export] = ACTIONS(3048), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3048), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3048), - [anon_sym_COMMA] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3048), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(1744), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3048), - [anon_sym_readonly] = ACTIONS(3048), - [anon_sym_get] = ACTIONS(3048), - [anon_sym_set] = ACTIONS(3048), - [anon_sym_declare] = ACTIONS(3048), - [anon_sym_public] = ACTIONS(3048), - [anon_sym_private] = ACTIONS(3048), - [anon_sym_protected] = ACTIONS(3048), - [anon_sym_module] = ACTIONS(3048), - [anon_sym_any] = ACTIONS(3048), - [anon_sym_number] = ACTIONS(3048), - [anon_sym_boolean] = ACTIONS(3048), - [anon_sym_string] = ACTIONS(3048), - [anon_sym_symbol] = ACTIONS(3048), - }, - [1044] = { - [ts_builtin_sym_end] = ACTIONS(2164), - [sym_identifier] = ACTIONS(2166), - [anon_sym_export] = ACTIONS(2166), - [anon_sym_default] = ACTIONS(2166), - [anon_sym_type] = ACTIONS(2166), - [anon_sym_namespace] = ACTIONS(2166), - [anon_sym_LBRACE] = ACTIONS(2164), - [anon_sym_COMMA] = ACTIONS(2164), - [anon_sym_RBRACE] = ACTIONS(2164), - [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_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_readonly] = 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_abstract] = ACTIONS(2166), - [anon_sym_interface] = ACTIONS(2166), - [anon_sym_enum] = ACTIONS(2166), - [anon_sym_PIPE_RBRACE] = ACTIONS(2164), - [sym__automatic_semicolon] = ACTIONS(2164), - }, - [1045] = { - [sym__call_signature] = STATE(6027), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3142), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(3066), - [anon_sym_of] = ACTIONS(3069), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3142), - [anon_sym_get] = ACTIONS(3142), - [anon_sym_set] = ACTIONS(3142), - [anon_sym_declare] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_protected] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3142), - [anon_sym_number] = ACTIONS(3142), - [anon_sym_boolean] = ACTIONS(3142), - [anon_sym_string] = ACTIONS(3142), - [anon_sym_symbol] = ACTIONS(3142), - }, - [1046] = { - [sym__call_signature] = STATE(5731), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(2333), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2335), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_extends] = ACTIONS(1729), - }, - [1047] = { - [sym__call_signature] = STATE(6027), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3142), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3142), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3142), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3142), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2315), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3142), - [anon_sym_readonly] = ACTIONS(3142), - [anon_sym_get] = ACTIONS(3142), - [anon_sym_set] = ACTIONS(3142), - [anon_sym_declare] = ACTIONS(3142), - [anon_sym_public] = ACTIONS(3142), - [anon_sym_private] = ACTIONS(3142), - [anon_sym_protected] = ACTIONS(3142), - [anon_sym_module] = ACTIONS(3142), - [anon_sym_any] = ACTIONS(3142), - [anon_sym_number] = ACTIONS(3142), - [anon_sym_boolean] = ACTIONS(3142), - [anon_sym_string] = ACTIONS(3142), - [anon_sym_symbol] = ACTIONS(3142), - }, - [1048] = { - [sym__call_signature] = STATE(5731), - [sym_formal_parameters] = STATE(4661), - [sym_type_parameters] = STATE(5504), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3146), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_type] = ACTIONS(3146), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_namespace] = ACTIONS(3146), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(3014), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(3017), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_async] = ACTIONS(3146), - [anon_sym_function] = ACTIONS(3020), - [anon_sym_EQ_GT] = ACTIONS(2335), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_static] = ACTIONS(3146), - [anon_sym_readonly] = ACTIONS(3146), - [anon_sym_get] = ACTIONS(3146), - [anon_sym_set] = ACTIONS(3146), - [anon_sym_declare] = ACTIONS(3146), - [anon_sym_public] = ACTIONS(3146), - [anon_sym_private] = ACTIONS(3146), - [anon_sym_protected] = ACTIONS(3146), - [anon_sym_module] = ACTIONS(3146), - [anon_sym_any] = ACTIONS(3146), - [anon_sym_number] = ACTIONS(3146), - [anon_sym_boolean] = ACTIONS(3146), - [anon_sym_string] = ACTIONS(3146), - [anon_sym_symbol] = ACTIONS(3146), - [anon_sym_extends] = ACTIONS(1729), - }, - [1049] = { - [sym_finally_clause] = STATE(1074), - [ts_builtin_sym_end] = ACTIONS(3148), - [sym_identifier] = ACTIONS(3150), - [anon_sym_export] = ACTIONS(3150), - [anon_sym_default] = ACTIONS(3150), - [anon_sym_type] = ACTIONS(3150), - [anon_sym_namespace] = ACTIONS(3150), - [anon_sym_LBRACE] = ACTIONS(3148), - [anon_sym_RBRACE] = ACTIONS(3148), - [anon_sym_typeof] = ACTIONS(3150), - [anon_sym_import] = ACTIONS(3150), - [anon_sym_var] = ACTIONS(3150), - [anon_sym_let] = ACTIONS(3150), - [anon_sym_const] = ACTIONS(3150), - [anon_sym_BANG] = ACTIONS(3148), - [anon_sym_else] = ACTIONS(3150), - [anon_sym_if] = ACTIONS(3150), - [anon_sym_switch] = ACTIONS(3150), - [anon_sym_for] = ACTIONS(3150), - [anon_sym_LPAREN] = ACTIONS(3148), - [anon_sym_await] = ACTIONS(3150), - [anon_sym_while] = ACTIONS(3150), - [anon_sym_do] = ACTIONS(3150), - [anon_sym_try] = ACTIONS(3150), - [anon_sym_with] = ACTIONS(3150), - [anon_sym_break] = ACTIONS(3150), - [anon_sym_continue] = ACTIONS(3150), - [anon_sym_debugger] = ACTIONS(3150), - [anon_sym_return] = ACTIONS(3150), - [anon_sym_throw] = ACTIONS(3150), - [anon_sym_SEMI] = ACTIONS(3148), - [anon_sym_case] = ACTIONS(3150), - [anon_sym_finally] = ACTIONS(3118), - [anon_sym_yield] = ACTIONS(3150), - [anon_sym_LBRACK] = ACTIONS(3148), - [anon_sym_LT] = ACTIONS(3148), - [anon_sym_SLASH] = ACTIONS(3150), - [anon_sym_class] = ACTIONS(3150), - [anon_sym_async] = ACTIONS(3150), - [anon_sym_function] = ACTIONS(3150), - [anon_sym_new] = ACTIONS(3150), - [anon_sym_PLUS] = ACTIONS(3150), - [anon_sym_DASH] = ACTIONS(3150), - [anon_sym_TILDE] = ACTIONS(3148), - [anon_sym_void] = ACTIONS(3150), - [anon_sym_delete] = ACTIONS(3150), - [anon_sym_PLUS_PLUS] = ACTIONS(3148), - [anon_sym_DASH_DASH] = ACTIONS(3148), - [anon_sym_DQUOTE] = ACTIONS(3148), - [anon_sym_SQUOTE] = ACTIONS(3148), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3148), - [sym_number] = ACTIONS(3148), - [sym_this] = ACTIONS(3150), - [sym_super] = ACTIONS(3150), - [sym_true] = ACTIONS(3150), - [sym_false] = ACTIONS(3150), - [sym_null] = ACTIONS(3150), - [sym_undefined] = ACTIONS(3150), - [anon_sym_AT] = ACTIONS(3148), - [anon_sym_static] = ACTIONS(3150), - [anon_sym_readonly] = ACTIONS(3150), - [anon_sym_get] = ACTIONS(3150), - [anon_sym_set] = ACTIONS(3150), - [anon_sym_declare] = ACTIONS(3150), - [anon_sym_public] = ACTIONS(3150), - [anon_sym_private] = ACTIONS(3150), - [anon_sym_protected] = ACTIONS(3150), - [anon_sym_module] = ACTIONS(3150), - [anon_sym_any] = ACTIONS(3150), - [anon_sym_number] = ACTIONS(3150), - [anon_sym_boolean] = ACTIONS(3150), - [anon_sym_string] = ACTIONS(3150), - [anon_sym_symbol] = ACTIONS(3150), - [anon_sym_abstract] = ACTIONS(3150), - [anon_sym_interface] = ACTIONS(3150), - [anon_sym_enum] = ACTIONS(3150), - }, - [1050] = { - [sym_statement_block] = STATE(1121), + [1015] = { [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_export] = ACTIONS(2000), [anon_sym_default] = ACTIONS(2000), [anon_sym_type] = ACTIONS(2000), [anon_sym_namespace] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_COMMA] = ACTIONS(1998), [anon_sym_RBRACE] = ACTIONS(1998), [anon_sym_typeof] = ACTIONS(2000), [anon_sym_import] = ACTIONS(2000), @@ -117996,11 +115231,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(2000), [anon_sym_SEMI] = ACTIONS(1998), [anon_sym_case] = ACTIONS(2000), + [anon_sym_catch] = ACTIONS(2000), + [anon_sym_finally] = ACTIONS(2000), [anon_sym_yield] = ACTIONS(2000), [anon_sym_LBRACK] = ACTIONS(1998), [anon_sym_LT] = ACTIONS(1998), [anon_sym_SLASH] = ACTIONS(2000), - [anon_sym_DOT] = ACTIONS(3154), [anon_sym_class] = ACTIONS(2000), [anon_sym_async] = ACTIONS(2000), [anon_sym_function] = ACTIONS(2000), @@ -118041,406 +115277,1623 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2000), [anon_sym_interface] = ACTIONS(2000), [anon_sym_enum] = ACTIONS(2000), + [sym__automatic_semicolon] = ACTIONS(2008), }, - [1051] = { - [ts_builtin_sym_end] = ACTIONS(2225), - [sym_identifier] = ACTIONS(2227), - [anon_sym_export] = ACTIONS(2227), - [anon_sym_default] = ACTIONS(2227), - [anon_sym_type] = ACTIONS(2227), - [anon_sym_namespace] = ACTIONS(2227), - [anon_sym_LBRACE] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [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_readonly] = ACTIONS(2227), - [anon_sym_get] = ACTIONS(2227), - [anon_sym_set] = ACTIONS(2227), - [anon_sym_declare] = ACTIONS(2227), - [anon_sym_public] = ACTIONS(2227), - [anon_sym_private] = ACTIONS(2227), - [anon_sym_protected] = ACTIONS(2227), - [anon_sym_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_abstract] = ACTIONS(2227), - [anon_sym_interface] = ACTIONS(2227), - [anon_sym_enum] = ACTIONS(2227), - [sym__automatic_semicolon] = ACTIONS(2233), + [1016] = { + [sym__call_signature] = STATE(5927), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(3109), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2030), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), }, - [1052] = { - [ts_builtin_sym_end] = ACTIONS(2279), - [sym_identifier] = ACTIONS(2281), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_default] = ACTIONS(2281), - [anon_sym_type] = ACTIONS(2281), - [anon_sym_namespace] = ACTIONS(2281), - [anon_sym_LBRACE] = ACTIONS(2279), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_typeof] = ACTIONS(2281), - [anon_sym_import] = ACTIONS(2281), - [anon_sym_var] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [anon_sym_BANG] = ACTIONS(2279), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_switch] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2279), - [anon_sym_await] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_with] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_debugger] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_throw] = ACTIONS(2281), - [anon_sym_SEMI] = ACTIONS(2279), - [anon_sym_case] = ACTIONS(2281), - [anon_sym_yield] = ACTIONS(2281), - [anon_sym_LBRACK] = ACTIONS(2279), - [anon_sym_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_readonly] = ACTIONS(2281), - [anon_sym_get] = ACTIONS(2281), - [anon_sym_set] = ACTIONS(2281), - [anon_sym_declare] = ACTIONS(2281), - [anon_sym_public] = ACTIONS(2281), - [anon_sym_private] = ACTIONS(2281), - [anon_sym_protected] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_any] = ACTIONS(2281), - [anon_sym_number] = ACTIONS(2281), - [anon_sym_boolean] = ACTIONS(2281), - [anon_sym_string] = ACTIONS(2281), - [anon_sym_symbol] = ACTIONS(2281), - [anon_sym_abstract] = ACTIONS(2281), - [anon_sym_interface] = ACTIONS(2281), - [anon_sym_enum] = ACTIONS(2281), - [sym__automatic_semicolon] = ACTIONS(2287), + [1017] = { + [sym__call_signature] = STATE(5839), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3091), + [anon_sym_export] = ACTIONS(3093), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3093), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3093), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3093), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(1962), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3093), + [anon_sym_readonly] = ACTIONS(3093), + [anon_sym_get] = ACTIONS(3093), + [anon_sym_set] = ACTIONS(3093), + [anon_sym_declare] = ACTIONS(3093), + [anon_sym_public] = ACTIONS(3093), + [anon_sym_private] = ACTIONS(3093), + [anon_sym_protected] = ACTIONS(3093), + [anon_sym_module] = ACTIONS(3093), + [anon_sym_any] = ACTIONS(3093), + [anon_sym_number] = ACTIONS(3093), + [anon_sym_boolean] = ACTIONS(3093), + [anon_sym_string] = ACTIONS(3093), + [anon_sym_symbol] = ACTIONS(3093), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), }, - [1053] = { - [ts_builtin_sym_end] = ACTIONS(3156), - [sym_identifier] = ACTIONS(3158), - [anon_sym_export] = ACTIONS(3158), - [anon_sym_default] = ACTIONS(3158), - [anon_sym_type] = ACTIONS(3158), - [anon_sym_namespace] = ACTIONS(3158), - [anon_sym_LBRACE] = ACTIONS(3156), - [anon_sym_RBRACE] = ACTIONS(3156), - [anon_sym_typeof] = ACTIONS(3158), - [anon_sym_import] = ACTIONS(3158), - [anon_sym_var] = ACTIONS(3158), - [anon_sym_let] = ACTIONS(3158), - [anon_sym_const] = ACTIONS(3158), - [anon_sym_BANG] = ACTIONS(3156), - [anon_sym_else] = ACTIONS(3158), - [anon_sym_if] = ACTIONS(3158), - [anon_sym_switch] = ACTIONS(3158), - [anon_sym_for] = ACTIONS(3158), - [anon_sym_LPAREN] = ACTIONS(3156), - [anon_sym_RPAREN] = ACTIONS(3156), - [anon_sym_await] = ACTIONS(3158), - [anon_sym_while] = ACTIONS(3158), - [anon_sym_do] = ACTIONS(3158), - [anon_sym_try] = ACTIONS(3158), - [anon_sym_with] = ACTIONS(3158), - [anon_sym_break] = ACTIONS(3158), - [anon_sym_continue] = ACTIONS(3158), - [anon_sym_debugger] = ACTIONS(3158), - [anon_sym_return] = ACTIONS(3158), - [anon_sym_throw] = ACTIONS(3158), - [anon_sym_SEMI] = ACTIONS(3156), - [anon_sym_case] = ACTIONS(3158), - [anon_sym_yield] = ACTIONS(3158), - [anon_sym_LBRACK] = ACTIONS(3156), - [anon_sym_LT] = ACTIONS(3156), - [anon_sym_SLASH] = ACTIONS(3158), - [anon_sym_class] = ACTIONS(3158), - [anon_sym_async] = ACTIONS(3158), - [anon_sym_function] = ACTIONS(3158), - [anon_sym_new] = ACTIONS(3158), - [anon_sym_PLUS] = ACTIONS(3158), - [anon_sym_DASH] = ACTIONS(3158), - [anon_sym_TILDE] = ACTIONS(3156), - [anon_sym_void] = ACTIONS(3158), - [anon_sym_delete] = ACTIONS(3158), - [anon_sym_PLUS_PLUS] = ACTIONS(3156), - [anon_sym_DASH_DASH] = ACTIONS(3156), - [anon_sym_DQUOTE] = ACTIONS(3156), - [anon_sym_SQUOTE] = ACTIONS(3156), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3156), - [sym_number] = ACTIONS(3156), - [sym_this] = ACTIONS(3158), - [sym_super] = ACTIONS(3158), - [sym_true] = ACTIONS(3158), - [sym_false] = ACTIONS(3158), - [sym_null] = ACTIONS(3158), - [sym_undefined] = ACTIONS(3158), - [anon_sym_AT] = ACTIONS(3156), - [anon_sym_static] = ACTIONS(3158), - [anon_sym_readonly] = ACTIONS(3158), - [anon_sym_get] = ACTIONS(3158), - [anon_sym_set] = ACTIONS(3158), - [anon_sym_declare] = ACTIONS(3158), - [anon_sym_public] = ACTIONS(3158), - [anon_sym_private] = ACTIONS(3158), - [anon_sym_protected] = ACTIONS(3158), - [anon_sym_module] = ACTIONS(3158), - [anon_sym_any] = ACTIONS(3158), - [anon_sym_number] = ACTIONS(3158), - [anon_sym_boolean] = ACTIONS(3158), - [anon_sym_string] = ACTIONS(3158), - [anon_sym_symbol] = ACTIONS(3158), - [anon_sym_abstract] = ACTIONS(3158), - [anon_sym_interface] = ACTIONS(3158), - [anon_sym_enum] = ACTIONS(3158), + [1018] = { + [sym__call_signature] = STATE(6003), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3087), + [anon_sym_export] = ACTIONS(3089), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3089), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3089), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3089), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1984), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3089), + [anon_sym_readonly] = ACTIONS(3089), + [anon_sym_get] = ACTIONS(3089), + [anon_sym_set] = ACTIONS(3089), + [anon_sym_declare] = ACTIONS(3089), + [anon_sym_public] = ACTIONS(3089), + [anon_sym_private] = ACTIONS(3089), + [anon_sym_protected] = ACTIONS(3089), + [anon_sym_module] = ACTIONS(3089), + [anon_sym_any] = ACTIONS(3089), + [anon_sym_number] = ACTIONS(3089), + [anon_sym_boolean] = ACTIONS(3089), + [anon_sym_string] = ACTIONS(3089), + [anon_sym_symbol] = ACTIONS(3089), + [anon_sym_extends] = ACTIONS(1713), }, - [1054] = { - [ts_builtin_sym_end] = ACTIONS(2010), - [sym_identifier] = ACTIONS(2012), - [anon_sym_export] = ACTIONS(2012), - [anon_sym_default] = ACTIONS(2012), - [anon_sym_type] = ACTIONS(2012), - [anon_sym_namespace] = ACTIONS(2012), - [anon_sym_LBRACE] = ACTIONS(2010), - [anon_sym_RBRACE] = ACTIONS(2010), - [anon_sym_typeof] = ACTIONS(2012), - [anon_sym_import] = ACTIONS(2012), - [anon_sym_var] = ACTIONS(2012), - [anon_sym_let] = ACTIONS(2012), - [anon_sym_const] = ACTIONS(2012), - [anon_sym_BANG] = ACTIONS(2010), - [anon_sym_else] = ACTIONS(2012), - [anon_sym_if] = ACTIONS(2012), - [anon_sym_switch] = ACTIONS(2012), - [anon_sym_for] = ACTIONS(2012), - [anon_sym_LPAREN] = ACTIONS(2010), - [anon_sym_await] = ACTIONS(2012), - [anon_sym_while] = ACTIONS(2012), - [anon_sym_do] = ACTIONS(2012), - [anon_sym_try] = ACTIONS(2012), - [anon_sym_with] = ACTIONS(2012), - [anon_sym_break] = ACTIONS(2012), - [anon_sym_continue] = ACTIONS(2012), - [anon_sym_debugger] = ACTIONS(2012), - [anon_sym_return] = ACTIONS(2012), - [anon_sym_throw] = ACTIONS(2012), - [anon_sym_SEMI] = ACTIONS(2010), - [anon_sym_case] = ACTIONS(2012), - [anon_sym_yield] = ACTIONS(2012), - [anon_sym_LBRACK] = ACTIONS(2010), - [anon_sym_LT] = ACTIONS(2010), - [anon_sym_SLASH] = ACTIONS(2012), - [anon_sym_class] = ACTIONS(2012), - [anon_sym_async] = ACTIONS(2012), - [anon_sym_function] = ACTIONS(2012), - [anon_sym_new] = ACTIONS(2012), - [anon_sym_PLUS] = ACTIONS(2012), - [anon_sym_DASH] = ACTIONS(2012), - [anon_sym_TILDE] = ACTIONS(2010), - [anon_sym_void] = ACTIONS(2012), - [anon_sym_delete] = ACTIONS(2012), - [anon_sym_PLUS_PLUS] = ACTIONS(2010), - [anon_sym_DASH_DASH] = ACTIONS(2010), - [anon_sym_DQUOTE] = ACTIONS(2010), - [anon_sym_SQUOTE] = ACTIONS(2010), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2010), - [sym_number] = ACTIONS(2010), - [sym_this] = ACTIONS(2012), - [sym_super] = ACTIONS(2012), - [sym_true] = ACTIONS(2012), - [sym_false] = ACTIONS(2012), - [sym_null] = ACTIONS(2012), - [sym_undefined] = ACTIONS(2012), - [anon_sym_AT] = ACTIONS(2010), - [anon_sym_static] = ACTIONS(2012), - [anon_sym_readonly] = ACTIONS(2012), - [anon_sym_get] = ACTIONS(2012), - [anon_sym_set] = ACTIONS(2012), - [anon_sym_declare] = ACTIONS(2012), - [anon_sym_public] = ACTIONS(2012), - [anon_sym_private] = ACTIONS(2012), - [anon_sym_protected] = ACTIONS(2012), - [anon_sym_module] = ACTIONS(2012), - [anon_sym_any] = ACTIONS(2012), - [anon_sym_number] = ACTIONS(2012), - [anon_sym_boolean] = ACTIONS(2012), - [anon_sym_string] = ACTIONS(2012), - [anon_sym_symbol] = ACTIONS(2012), - [anon_sym_abstract] = ACTIONS(2012), - [anon_sym_interface] = ACTIONS(2012), - [anon_sym_enum] = ACTIONS(2012), - [sym__automatic_semicolon] = ACTIONS(2018), + [1019] = { + [sym_catch_clause] = STATE(1048), + [sym_finally_clause] = STATE(1130), + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3116), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_RBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(3116), + [anon_sym_var] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3116), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_await] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_with] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_debugger] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym_case] = ACTIONS(3116), + [anon_sym_catch] = ACTIONS(3118), + [anon_sym_finally] = ACTIONS(3120), + [anon_sym_yield] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_SLASH] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_void] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3114), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3114), + [sym_number] = ACTIONS(3114), + [sym_this] = ACTIONS(3116), + [sym_super] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_null] = ACTIONS(3116), + [sym_undefined] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), }, - [1055] = { - [ts_builtin_sym_end] = ACTIONS(3160), - [sym_identifier] = ACTIONS(3162), - [anon_sym_export] = ACTIONS(3162), - [anon_sym_default] = ACTIONS(3162), - [anon_sym_type] = ACTIONS(3162), - [anon_sym_namespace] = ACTIONS(3162), - [anon_sym_LBRACE] = ACTIONS(3160), - [anon_sym_RBRACE] = ACTIONS(3160), - [anon_sym_typeof] = ACTIONS(3162), - [anon_sym_import] = ACTIONS(3162), - [anon_sym_var] = ACTIONS(3162), - [anon_sym_let] = ACTIONS(3162), - [anon_sym_const] = ACTIONS(3162), - [anon_sym_BANG] = ACTIONS(3160), - [anon_sym_else] = ACTIONS(3162), - [anon_sym_if] = ACTIONS(3162), - [anon_sym_switch] = ACTIONS(3162), - [anon_sym_for] = ACTIONS(3162), - [anon_sym_LPAREN] = ACTIONS(3160), - [anon_sym_await] = ACTIONS(3162), - [anon_sym_while] = ACTIONS(3162), - [anon_sym_do] = ACTIONS(3162), - [anon_sym_try] = ACTIONS(3162), - [anon_sym_with] = ACTIONS(3162), - [anon_sym_break] = ACTIONS(3162), - [anon_sym_continue] = ACTIONS(3162), - [anon_sym_debugger] = ACTIONS(3162), - [anon_sym_return] = ACTIONS(3162), - [anon_sym_throw] = ACTIONS(3162), - [anon_sym_SEMI] = ACTIONS(3160), - [anon_sym_case] = ACTIONS(3162), - [anon_sym_finally] = ACTIONS(3162), - [anon_sym_yield] = ACTIONS(3162), - [anon_sym_LBRACK] = ACTIONS(3160), - [anon_sym_LT] = ACTIONS(3160), - [anon_sym_SLASH] = ACTIONS(3162), - [anon_sym_class] = ACTIONS(3162), - [anon_sym_async] = ACTIONS(3162), - [anon_sym_function] = ACTIONS(3162), - [anon_sym_new] = ACTIONS(3162), - [anon_sym_PLUS] = ACTIONS(3162), - [anon_sym_DASH] = ACTIONS(3162), - [anon_sym_TILDE] = ACTIONS(3160), - [anon_sym_void] = ACTIONS(3162), - [anon_sym_delete] = ACTIONS(3162), - [anon_sym_PLUS_PLUS] = ACTIONS(3160), - [anon_sym_DASH_DASH] = ACTIONS(3160), - [anon_sym_DQUOTE] = ACTIONS(3160), - [anon_sym_SQUOTE] = ACTIONS(3160), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3160), - [sym_number] = ACTIONS(3160), - [sym_this] = ACTIONS(3162), - [sym_super] = ACTIONS(3162), - [sym_true] = ACTIONS(3162), - [sym_false] = ACTIONS(3162), - [sym_null] = ACTIONS(3162), - [sym_undefined] = ACTIONS(3162), - [anon_sym_AT] = ACTIONS(3160), - [anon_sym_static] = ACTIONS(3162), - [anon_sym_readonly] = ACTIONS(3162), - [anon_sym_get] = ACTIONS(3162), - [anon_sym_set] = ACTIONS(3162), - [anon_sym_declare] = ACTIONS(3162), - [anon_sym_public] = ACTIONS(3162), - [anon_sym_private] = ACTIONS(3162), - [anon_sym_protected] = ACTIONS(3162), - [anon_sym_module] = ACTIONS(3162), - [anon_sym_any] = ACTIONS(3162), - [anon_sym_number] = ACTIONS(3162), - [anon_sym_boolean] = ACTIONS(3162), - [anon_sym_string] = ACTIONS(3162), - [anon_sym_symbol] = ACTIONS(3162), - [anon_sym_abstract] = ACTIONS(3162), - [anon_sym_interface] = ACTIONS(3162), - [anon_sym_enum] = ACTIONS(3162), + [1020] = { + [sym__call_signature] = STATE(5795), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3095), + [anon_sym_export] = ACTIONS(3097), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3097), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3097), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3097), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2283), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3097), + [anon_sym_readonly] = ACTIONS(3097), + [anon_sym_get] = ACTIONS(3097), + [anon_sym_set] = ACTIONS(3097), + [anon_sym_declare] = ACTIONS(3097), + [anon_sym_public] = ACTIONS(3097), + [anon_sym_private] = ACTIONS(3097), + [anon_sym_protected] = ACTIONS(3097), + [anon_sym_module] = ACTIONS(3097), + [anon_sym_any] = ACTIONS(3097), + [anon_sym_number] = ACTIONS(3097), + [anon_sym_boolean] = ACTIONS(3097), + [anon_sym_string] = ACTIONS(3097), + [anon_sym_symbol] = ACTIONS(3097), + [anon_sym_implements] = ACTIONS(1713), }, - [1056] = { - [sym_statement_block] = STATE(1121), + [1021] = { + [sym__call_signature] = STATE(5914), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3099), + [anon_sym_export] = ACTIONS(3101), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3101), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3101), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3101), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3101), + [anon_sym_readonly] = ACTIONS(3101), + [anon_sym_get] = ACTIONS(3101), + [anon_sym_set] = ACTIONS(3101), + [anon_sym_declare] = ACTIONS(3101), + [anon_sym_public] = ACTIONS(3101), + [anon_sym_private] = ACTIONS(3101), + [anon_sym_protected] = ACTIONS(3101), + [anon_sym_module] = ACTIONS(3101), + [anon_sym_any] = ACTIONS(3101), + [anon_sym_number] = ACTIONS(3101), + [anon_sym_boolean] = ACTIONS(3101), + [anon_sym_string] = ACTIONS(3101), + [anon_sym_symbol] = ACTIONS(3101), + [anon_sym_extends] = ACTIONS(1713), + }, + [1022] = { + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_with] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_debugger] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_catch] = ACTIONS(2022), + [anon_sym_finally] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_void] = ACTIONS(2022), + [anon_sym_delete] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2020), + [sym_number] = ACTIONS(2020), + [sym_this] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_true] = ACTIONS(2022), + [sym_false] = ACTIONS(2022), + [sym_null] = ACTIONS(2022), + [sym_undefined] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + }, + [1023] = { + [sym__call_signature] = STATE(6093), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1024] = { + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3044), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + }, + [1025] = { + [sym__call_signature] = STATE(5927), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2030), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + }, + [1026] = { + [sym__call_signature] = STATE(6103), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(2046), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2048), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_extends] = ACTIONS(1713), + }, + [1027] = { + [sym__call_signature] = STATE(6093), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(3130), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1028] = { + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_COMMA] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [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_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_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_abstract] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), + [anon_sym_PIPE_RBRACE] = ACTIONS(2217), + [sym__automatic_semicolon] = ACTIONS(2217), + }, + [1029] = { + [sym__call_signature] = STATE(5927), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(3132), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2030), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + }, + [1030] = { + [sym__call_signature] = STATE(6103), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2048), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_extends] = ACTIONS(1713), + }, + [1031] = { + [sym__call_signature] = STATE(6093), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1032] = { + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_export] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(2061), + [anon_sym_import] = ACTIONS(2061), + [anon_sym_var] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_with] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_debugger] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_throw] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_case] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_void] = ACTIONS(2061), + [anon_sym_delete] = ACTIONS(2061), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2059), + [sym_number] = ACTIONS(2059), + [sym_this] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_null] = ACTIONS(2061), + [sym_undefined] = ACTIONS(2061), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), + [anon_sym_abstract] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + [anon_sym_PIPE_RBRACE] = ACTIONS(2059), + [sym__automatic_semicolon] = ACTIONS(2059), + }, + [1033] = { + [sym__call_signature] = STATE(6093), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_EQ] = ACTIONS(2085), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(3056), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1034] = { + [sym__call_signature] = STATE(5925), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3044), + [anon_sym_export] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3046), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3046), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_RBRACE] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3046), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3046), + [anon_sym_readonly] = ACTIONS(3046), + [anon_sym_get] = ACTIONS(3046), + [anon_sym_set] = ACTIONS(3046), + [anon_sym_declare] = ACTIONS(3046), + [anon_sym_public] = ACTIONS(3046), + [anon_sym_private] = ACTIONS(3046), + [anon_sym_protected] = ACTIONS(3046), + [anon_sym_module] = ACTIONS(3046), + [anon_sym_any] = ACTIONS(3046), + [anon_sym_number] = ACTIONS(3046), + [anon_sym_boolean] = ACTIONS(3046), + [anon_sym_string] = ACTIONS(3046), + [anon_sym_symbol] = ACTIONS(3046), + }, + [1035] = { + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_with] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_debugger] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_void] = ACTIONS(2022), + [anon_sym_delete] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2020), + [sym_number] = ACTIONS(2020), + [sym_this] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_true] = ACTIONS(2022), + [sym_false] = ACTIONS(2022), + [sym_null] = ACTIONS(2022), + [sym_undefined] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_PIPE_RBRACE] = ACTIONS(2020), + [sym__automatic_semicolon] = ACTIONS(3134), + }, + [1036] = { [ts_builtin_sym_end] = ACTIONS(1998), [sym_identifier] = ACTIONS(2000), [anon_sym_export] = ACTIONS(2000), [anon_sym_default] = ACTIONS(2000), [anon_sym_type] = ACTIONS(2000), [anon_sym_namespace] = ACTIONS(2000), - [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_LBRACE] = ACTIONS(1998), + [anon_sym_COMMA] = ACTIONS(1998), [anon_sym_RBRACE] = ACTIONS(1998), [anon_sym_typeof] = ACTIONS(2000), [anon_sym_import] = ACTIONS(2000), @@ -118509,8 +116962,1750 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2000), [anon_sym_interface] = ACTIONS(2000), [anon_sym_enum] = ACTIONS(2000), + [anon_sym_PIPE_RBRACE] = ACTIONS(1998), + [sym__automatic_semicolon] = ACTIONS(3136), + }, + [1037] = { + [sym__call_signature] = STATE(6093), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3124), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3124), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3124), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3124), + [anon_sym_function] = ACTIONS(3024), + [anon_sym_EQ_GT] = ACTIONS(2087), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3124), + [anon_sym_readonly] = ACTIONS(3124), + [anon_sym_get] = ACTIONS(3124), + [anon_sym_set] = ACTIONS(3124), + [anon_sym_declare] = ACTIONS(3124), + [anon_sym_public] = ACTIONS(3124), + [anon_sym_private] = ACTIONS(3124), + [anon_sym_protected] = ACTIONS(3124), + [anon_sym_module] = ACTIONS(3124), + [anon_sym_any] = ACTIONS(3124), + [anon_sym_number] = ACTIONS(3124), + [anon_sym_boolean] = ACTIONS(3124), + [anon_sym_string] = ACTIONS(3124), + [anon_sym_symbol] = ACTIONS(3124), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1038] = { + [sym__call_signature] = STATE(5927), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2030), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + }, + [1039] = { + [sym_identifier] = ACTIONS(3016), + [anon_sym_export] = ACTIONS(3016), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3016), + [anon_sym_EQ] = ACTIONS(1710), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3016), + [anon_sym_LBRACE] = ACTIONS(3018), + [anon_sym_COMMA] = ACTIONS(1717), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1717), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1717), + [anon_sym_LBRACK] = ACTIONS(3018), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1713), + [anon_sym_async] = ACTIONS(3016), + [anon_sym_EQ_GT] = ACTIONS(1728), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3018), + [anon_sym_QMARK] = ACTIONS(3033), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym_this] = ACTIONS(3016), + [anon_sym_static] = ACTIONS(3016), + [anon_sym_readonly] = ACTIONS(3016), + [anon_sym_get] = ACTIONS(3016), + [anon_sym_set] = ACTIONS(3016), + [anon_sym_declare] = ACTIONS(3016), + [anon_sym_public] = ACTIONS(3016), + [anon_sym_private] = ACTIONS(3016), + [anon_sym_protected] = ACTIONS(3016), + [anon_sym_module] = ACTIONS(3016), + [anon_sym_any] = ACTIONS(3016), + [anon_sym_number] = ACTIONS(3016), + [anon_sym_boolean] = ACTIONS(3016), + [anon_sym_string] = ACTIONS(3016), + [anon_sym_symbol] = ACTIONS(3016), + }, + [1040] = { + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_with] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_debugger] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_void] = ACTIONS(2022), + [anon_sym_delete] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2020), + [sym_number] = ACTIONS(2020), + [sym_this] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_true] = ACTIONS(2022), + [sym_false] = ACTIONS(2022), + [sym_null] = ACTIONS(2022), + [sym_undefined] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [anon_sym_PIPE_RBRACE] = ACTIONS(2020), + [sym__automatic_semicolon] = ACTIONS(2020), + }, + [1041] = { + [ts_builtin_sym_end] = ACTIONS(2059), + [sym_identifier] = ACTIONS(2061), + [anon_sym_export] = ACTIONS(2061), + [anon_sym_default] = ACTIONS(2061), + [anon_sym_type] = ACTIONS(2061), + [anon_sym_namespace] = ACTIONS(2061), + [anon_sym_LBRACE] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_typeof] = ACTIONS(2061), + [anon_sym_import] = ACTIONS(2061), + [anon_sym_var] = ACTIONS(2061), + [anon_sym_let] = ACTIONS(2061), + [anon_sym_const] = ACTIONS(2061), + [anon_sym_BANG] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2061), + [anon_sym_if] = ACTIONS(2061), + [anon_sym_switch] = ACTIONS(2061), + [anon_sym_for] = ACTIONS(2061), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_await] = ACTIONS(2061), + [anon_sym_while] = ACTIONS(2061), + [anon_sym_do] = ACTIONS(2061), + [anon_sym_try] = ACTIONS(2061), + [anon_sym_with] = ACTIONS(2061), + [anon_sym_break] = ACTIONS(2061), + [anon_sym_continue] = ACTIONS(2061), + [anon_sym_debugger] = ACTIONS(2061), + [anon_sym_return] = ACTIONS(2061), + [anon_sym_throw] = ACTIONS(2061), + [anon_sym_SEMI] = ACTIONS(2059), + [anon_sym_case] = ACTIONS(2061), + [anon_sym_catch] = ACTIONS(2061), + [anon_sym_finally] = ACTIONS(2061), + [anon_sym_yield] = ACTIONS(2061), + [anon_sym_LBRACK] = ACTIONS(2059), + [anon_sym_LT] = ACTIONS(2059), + [anon_sym_SLASH] = ACTIONS(2061), + [anon_sym_class] = ACTIONS(2061), + [anon_sym_async] = ACTIONS(2061), + [anon_sym_function] = ACTIONS(2061), + [anon_sym_new] = ACTIONS(2061), + [anon_sym_PLUS] = ACTIONS(2061), + [anon_sym_DASH] = ACTIONS(2061), + [anon_sym_TILDE] = ACTIONS(2059), + [anon_sym_void] = ACTIONS(2061), + [anon_sym_delete] = ACTIONS(2061), + [anon_sym_PLUS_PLUS] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [anon_sym_SQUOTE] = ACTIONS(2059), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2059), + [sym_number] = ACTIONS(2059), + [sym_this] = ACTIONS(2061), + [sym_super] = ACTIONS(2061), + [sym_true] = ACTIONS(2061), + [sym_false] = ACTIONS(2061), + [sym_null] = ACTIONS(2061), + [sym_undefined] = ACTIONS(2061), + [anon_sym_AT] = ACTIONS(2059), + [anon_sym_static] = ACTIONS(2061), + [anon_sym_readonly] = ACTIONS(2061), + [anon_sym_get] = ACTIONS(2061), + [anon_sym_set] = ACTIONS(2061), + [anon_sym_declare] = ACTIONS(2061), + [anon_sym_public] = ACTIONS(2061), + [anon_sym_private] = ACTIONS(2061), + [anon_sym_protected] = ACTIONS(2061), + [anon_sym_module] = ACTIONS(2061), + [anon_sym_any] = ACTIONS(2061), + [anon_sym_number] = ACTIONS(2061), + [anon_sym_boolean] = ACTIONS(2061), + [anon_sym_string] = ACTIONS(2061), + [anon_sym_symbol] = ACTIONS(2061), + [anon_sym_abstract] = ACTIONS(2061), + [anon_sym_interface] = ACTIONS(2061), + [anon_sym_enum] = ACTIONS(2061), + }, + [1042] = { + [sym__call_signature] = STATE(5927), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2030), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + }, + [1043] = { + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_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_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), + [anon_sym_PIPE_RBRACE] = ACTIONS(2065), + [sym__automatic_semicolon] = ACTIONS(2065), + }, + [1044] = { + [sym__call_signature] = STATE(5927), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3105), + [anon_sym_export] = ACTIONS(3107), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3107), + [anon_sym_EQ] = ACTIONS(3109), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3107), + [anon_sym_COMMA] = ACTIONS(3103), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1717), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3107), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2030), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3107), + [anon_sym_readonly] = ACTIONS(3107), + [anon_sym_get] = ACTIONS(3107), + [anon_sym_set] = ACTIONS(3107), + [anon_sym_declare] = ACTIONS(3107), + [anon_sym_public] = ACTIONS(3107), + [anon_sym_private] = ACTIONS(3107), + [anon_sym_protected] = ACTIONS(3107), + [anon_sym_module] = ACTIONS(3107), + [anon_sym_any] = ACTIONS(3107), + [anon_sym_number] = ACTIONS(3107), + [anon_sym_boolean] = ACTIONS(3107), + [anon_sym_string] = ACTIONS(3107), + [anon_sym_symbol] = ACTIONS(3107), + }, + [1045] = { + [sym__call_signature] = STATE(6103), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3128), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3128), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3128), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3128), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2048), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3128), + [anon_sym_readonly] = ACTIONS(3128), + [anon_sym_get] = ACTIONS(3128), + [anon_sym_set] = ACTIONS(3128), + [anon_sym_declare] = ACTIONS(3128), + [anon_sym_public] = ACTIONS(3128), + [anon_sym_private] = ACTIONS(3128), + [anon_sym_protected] = ACTIONS(3128), + [anon_sym_module] = ACTIONS(3128), + [anon_sym_any] = ACTIONS(3128), + [anon_sym_number] = ACTIONS(3128), + [anon_sym_boolean] = ACTIONS(3128), + [anon_sym_string] = ACTIONS(3128), + [anon_sym_symbol] = ACTIONS(3128), + [anon_sym_extends] = ACTIONS(1713), + }, + [1046] = { + [sym__call_signature] = STATE(6130), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(2313), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3140), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2315), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_declare] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_module] = ACTIONS(3140), + [anon_sym_any] = ACTIONS(3140), + [anon_sym_number] = ACTIONS(3140), + [anon_sym_boolean] = ACTIONS(3140), + [anon_sym_string] = ACTIONS(3140), + [anon_sym_symbol] = ACTIONS(3140), + [anon_sym_extends] = ACTIONS(1713), + }, + [1047] = { + [sym_statement_block] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_export] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_namespace] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym_import] = ACTIONS(1976), + [anon_sym_var] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_await] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_with] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_debugger] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_throw] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_DOT] = ACTIONS(3144), + [anon_sym_class] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_void] = ACTIONS(1976), + [anon_sym_delete] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1974), + [sym_number] = ACTIONS(1974), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_undefined] = ACTIONS(1976), + [anon_sym_AT] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_readonly] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1976), + [anon_sym_declare] = ACTIONS(1976), + [anon_sym_public] = ACTIONS(1976), + [anon_sym_private] = ACTIONS(1976), + [anon_sym_protected] = ACTIONS(1976), + [anon_sym_module] = ACTIONS(1976), + [anon_sym_any] = ACTIONS(1976), + [anon_sym_number] = ACTIONS(1976), + [anon_sym_boolean] = ACTIONS(1976), + [anon_sym_string] = ACTIONS(1976), + [anon_sym_symbol] = ACTIONS(1976), + [anon_sym_abstract] = ACTIONS(1976), + [anon_sym_interface] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + }, + [1048] = { + [sym_finally_clause] = STATE(1176), + [ts_builtin_sym_end] = ACTIONS(3146), + [sym_identifier] = ACTIONS(3148), + [anon_sym_export] = ACTIONS(3148), + [anon_sym_default] = ACTIONS(3148), + [anon_sym_type] = ACTIONS(3148), + [anon_sym_namespace] = ACTIONS(3148), + [anon_sym_LBRACE] = ACTIONS(3146), + [anon_sym_RBRACE] = ACTIONS(3146), + [anon_sym_typeof] = ACTIONS(3148), + [anon_sym_import] = ACTIONS(3148), + [anon_sym_var] = ACTIONS(3148), + [anon_sym_let] = ACTIONS(3148), + [anon_sym_const] = ACTIONS(3148), + [anon_sym_BANG] = ACTIONS(3146), + [anon_sym_else] = ACTIONS(3148), + [anon_sym_if] = ACTIONS(3148), + [anon_sym_switch] = ACTIONS(3148), + [anon_sym_for] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3146), + [anon_sym_await] = ACTIONS(3148), + [anon_sym_while] = ACTIONS(3148), + [anon_sym_do] = ACTIONS(3148), + [anon_sym_try] = ACTIONS(3148), + [anon_sym_with] = ACTIONS(3148), + [anon_sym_break] = ACTIONS(3148), + [anon_sym_continue] = ACTIONS(3148), + [anon_sym_debugger] = ACTIONS(3148), + [anon_sym_return] = ACTIONS(3148), + [anon_sym_throw] = ACTIONS(3148), + [anon_sym_SEMI] = ACTIONS(3146), + [anon_sym_case] = ACTIONS(3148), + [anon_sym_finally] = ACTIONS(3120), + [anon_sym_yield] = ACTIONS(3148), + [anon_sym_LBRACK] = ACTIONS(3146), + [anon_sym_LT] = ACTIONS(3146), + [anon_sym_SLASH] = ACTIONS(3148), + [anon_sym_class] = ACTIONS(3148), + [anon_sym_async] = ACTIONS(3148), + [anon_sym_function] = ACTIONS(3148), + [anon_sym_new] = ACTIONS(3148), + [anon_sym_PLUS] = ACTIONS(3148), + [anon_sym_DASH] = ACTIONS(3148), + [anon_sym_TILDE] = ACTIONS(3146), + [anon_sym_void] = ACTIONS(3148), + [anon_sym_delete] = ACTIONS(3148), + [anon_sym_PLUS_PLUS] = ACTIONS(3146), + [anon_sym_DASH_DASH] = ACTIONS(3146), + [anon_sym_DQUOTE] = ACTIONS(3146), + [anon_sym_SQUOTE] = ACTIONS(3146), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3146), + [sym_number] = ACTIONS(3146), + [sym_this] = ACTIONS(3148), + [sym_super] = ACTIONS(3148), + [sym_true] = ACTIONS(3148), + [sym_false] = ACTIONS(3148), + [sym_null] = ACTIONS(3148), + [sym_undefined] = ACTIONS(3148), + [anon_sym_AT] = ACTIONS(3146), + [anon_sym_static] = ACTIONS(3148), + [anon_sym_readonly] = ACTIONS(3148), + [anon_sym_get] = ACTIONS(3148), + [anon_sym_set] = ACTIONS(3148), + [anon_sym_declare] = ACTIONS(3148), + [anon_sym_public] = ACTIONS(3148), + [anon_sym_private] = ACTIONS(3148), + [anon_sym_protected] = ACTIONS(3148), + [anon_sym_module] = ACTIONS(3148), + [anon_sym_any] = ACTIONS(3148), + [anon_sym_number] = ACTIONS(3148), + [anon_sym_boolean] = ACTIONS(3148), + [anon_sym_string] = ACTIONS(3148), + [anon_sym_symbol] = ACTIONS(3148), + [anon_sym_abstract] = ACTIONS(3148), + [anon_sym_interface] = ACTIONS(3148), + [anon_sym_enum] = ACTIONS(3148), + }, + [1049] = { + [sym__call_signature] = STATE(6130), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3140), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3140), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3140), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3140), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2315), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3140), + [anon_sym_readonly] = ACTIONS(3140), + [anon_sym_get] = ACTIONS(3140), + [anon_sym_set] = ACTIONS(3140), + [anon_sym_declare] = ACTIONS(3140), + [anon_sym_public] = ACTIONS(3140), + [anon_sym_private] = ACTIONS(3140), + [anon_sym_protected] = ACTIONS(3140), + [anon_sym_module] = ACTIONS(3140), + [anon_sym_any] = ACTIONS(3140), + [anon_sym_number] = ACTIONS(3140), + [anon_sym_boolean] = ACTIONS(3140), + [anon_sym_string] = ACTIONS(3140), + [anon_sym_symbol] = ACTIONS(3140), + [anon_sym_extends] = ACTIONS(1713), + }, + [1050] = { + [sym__call_signature] = STATE(6144), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(3076), + [anon_sym_of] = ACTIONS(3079), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2336), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_readonly] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_declare] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_module] = ACTIONS(3152), + [anon_sym_any] = ACTIONS(3152), + [anon_sym_number] = ACTIONS(3152), + [anon_sym_boolean] = ACTIONS(3152), + [anon_sym_string] = ACTIONS(3152), + [anon_sym_symbol] = ACTIONS(3152), + }, + [1051] = { + [sym__call_signature] = STATE(6144), + [sym_formal_parameters] = STATE(4737), + [sym_type_parameters] = STATE(5461), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3152), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_type] = ACTIONS(3152), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_namespace] = ACTIONS(3152), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(3008), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(3011), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_async] = ACTIONS(3152), + [anon_sym_function] = ACTIONS(3014), + [anon_sym_EQ_GT] = ACTIONS(2336), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_static] = ACTIONS(3152), + [anon_sym_readonly] = ACTIONS(3152), + [anon_sym_get] = ACTIONS(3152), + [anon_sym_set] = ACTIONS(3152), + [anon_sym_declare] = ACTIONS(3152), + [anon_sym_public] = ACTIONS(3152), + [anon_sym_private] = ACTIONS(3152), + [anon_sym_protected] = ACTIONS(3152), + [anon_sym_module] = ACTIONS(3152), + [anon_sym_any] = ACTIONS(3152), + [anon_sym_number] = ACTIONS(3152), + [anon_sym_boolean] = ACTIONS(3152), + [anon_sym_string] = ACTIONS(3152), + [anon_sym_symbol] = ACTIONS(3152), + }, + [1052] = { + [ts_builtin_sym_end] = ACTIONS(3154), + [sym_identifier] = ACTIONS(3156), + [anon_sym_export] = ACTIONS(3156), + [anon_sym_default] = ACTIONS(3156), + [anon_sym_type] = ACTIONS(3156), + [anon_sym_namespace] = ACTIONS(3156), + [anon_sym_LBRACE] = ACTIONS(3154), + [anon_sym_RBRACE] = ACTIONS(3154), + [anon_sym_typeof] = ACTIONS(3156), + [anon_sym_import] = ACTIONS(3156), + [anon_sym_var] = ACTIONS(3156), + [anon_sym_let] = ACTIONS(3156), + [anon_sym_const] = ACTIONS(3156), + [anon_sym_BANG] = ACTIONS(3154), + [anon_sym_else] = ACTIONS(3156), + [anon_sym_if] = ACTIONS(3156), + [anon_sym_switch] = ACTIONS(3156), + [anon_sym_for] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3154), + [anon_sym_await] = ACTIONS(3156), + [anon_sym_while] = ACTIONS(3156), + [anon_sym_do] = ACTIONS(3156), + [anon_sym_try] = ACTIONS(3156), + [anon_sym_with] = ACTIONS(3156), + [anon_sym_break] = ACTIONS(3156), + [anon_sym_continue] = ACTIONS(3156), + [anon_sym_debugger] = ACTIONS(3156), + [anon_sym_return] = ACTIONS(3156), + [anon_sym_throw] = ACTIONS(3156), + [anon_sym_SEMI] = ACTIONS(3154), + [anon_sym_case] = ACTIONS(3156), + [anon_sym_finally] = ACTIONS(3156), + [anon_sym_yield] = ACTIONS(3156), + [anon_sym_LBRACK] = ACTIONS(3154), + [anon_sym_LT] = ACTIONS(3154), + [anon_sym_SLASH] = ACTIONS(3156), + [anon_sym_class] = ACTIONS(3156), + [anon_sym_async] = ACTIONS(3156), + [anon_sym_function] = ACTIONS(3156), + [anon_sym_new] = ACTIONS(3156), + [anon_sym_PLUS] = ACTIONS(3156), + [anon_sym_DASH] = ACTIONS(3156), + [anon_sym_TILDE] = ACTIONS(3154), + [anon_sym_void] = ACTIONS(3156), + [anon_sym_delete] = ACTIONS(3156), + [anon_sym_PLUS_PLUS] = ACTIONS(3154), + [anon_sym_DASH_DASH] = ACTIONS(3154), + [anon_sym_DQUOTE] = ACTIONS(3154), + [anon_sym_SQUOTE] = ACTIONS(3154), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3154), + [sym_number] = ACTIONS(3154), + [sym_this] = ACTIONS(3156), + [sym_super] = ACTIONS(3156), + [sym_true] = ACTIONS(3156), + [sym_false] = ACTIONS(3156), + [sym_null] = ACTIONS(3156), + [sym_undefined] = ACTIONS(3156), + [anon_sym_AT] = ACTIONS(3154), + [anon_sym_static] = ACTIONS(3156), + [anon_sym_readonly] = ACTIONS(3156), + [anon_sym_get] = ACTIONS(3156), + [anon_sym_set] = ACTIONS(3156), + [anon_sym_declare] = ACTIONS(3156), + [anon_sym_public] = ACTIONS(3156), + [anon_sym_private] = ACTIONS(3156), + [anon_sym_protected] = ACTIONS(3156), + [anon_sym_module] = ACTIONS(3156), + [anon_sym_any] = ACTIONS(3156), + [anon_sym_number] = ACTIONS(3156), + [anon_sym_boolean] = ACTIONS(3156), + [anon_sym_string] = ACTIONS(3156), + [anon_sym_symbol] = ACTIONS(3156), + [anon_sym_abstract] = ACTIONS(3156), + [anon_sym_interface] = ACTIONS(3156), + [anon_sym_enum] = ACTIONS(3156), + }, + [1053] = { + [sym_else_clause] = STATE(1177), + [ts_builtin_sym_end] = ACTIONS(3158), + [sym_identifier] = ACTIONS(3160), + [anon_sym_export] = ACTIONS(3160), + [anon_sym_default] = ACTIONS(3160), + [anon_sym_type] = ACTIONS(3160), + [anon_sym_namespace] = ACTIONS(3160), + [anon_sym_LBRACE] = ACTIONS(3158), + [anon_sym_RBRACE] = ACTIONS(3158), + [anon_sym_typeof] = ACTIONS(3160), + [anon_sym_import] = ACTIONS(3160), + [anon_sym_var] = ACTIONS(3160), + [anon_sym_let] = ACTIONS(3160), + [anon_sym_const] = ACTIONS(3160), + [anon_sym_BANG] = ACTIONS(3158), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3160), + [anon_sym_switch] = ACTIONS(3160), + [anon_sym_for] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3158), + [anon_sym_await] = ACTIONS(3160), + [anon_sym_while] = ACTIONS(3160), + [anon_sym_do] = ACTIONS(3160), + [anon_sym_try] = ACTIONS(3160), + [anon_sym_with] = ACTIONS(3160), + [anon_sym_break] = ACTIONS(3160), + [anon_sym_continue] = ACTIONS(3160), + [anon_sym_debugger] = ACTIONS(3160), + [anon_sym_return] = ACTIONS(3160), + [anon_sym_throw] = ACTIONS(3160), + [anon_sym_SEMI] = ACTIONS(3158), + [anon_sym_case] = ACTIONS(3160), + [anon_sym_yield] = ACTIONS(3160), + [anon_sym_LBRACK] = ACTIONS(3158), + [anon_sym_LT] = ACTIONS(3158), + [anon_sym_SLASH] = ACTIONS(3160), + [anon_sym_class] = ACTIONS(3160), + [anon_sym_async] = ACTIONS(3160), + [anon_sym_function] = ACTIONS(3160), + [anon_sym_new] = ACTIONS(3160), + [anon_sym_PLUS] = ACTIONS(3160), + [anon_sym_DASH] = ACTIONS(3160), + [anon_sym_TILDE] = ACTIONS(3158), + [anon_sym_void] = ACTIONS(3160), + [anon_sym_delete] = ACTIONS(3160), + [anon_sym_PLUS_PLUS] = ACTIONS(3158), + [anon_sym_DASH_DASH] = ACTIONS(3158), + [anon_sym_DQUOTE] = ACTIONS(3158), + [anon_sym_SQUOTE] = ACTIONS(3158), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3158), + [sym_number] = ACTIONS(3158), + [sym_this] = ACTIONS(3160), + [sym_super] = ACTIONS(3160), + [sym_true] = ACTIONS(3160), + [sym_false] = ACTIONS(3160), + [sym_null] = ACTIONS(3160), + [sym_undefined] = ACTIONS(3160), + [anon_sym_AT] = ACTIONS(3158), + [anon_sym_static] = ACTIONS(3160), + [anon_sym_readonly] = ACTIONS(3160), + [anon_sym_get] = ACTIONS(3160), + [anon_sym_set] = ACTIONS(3160), + [anon_sym_declare] = ACTIONS(3160), + [anon_sym_public] = ACTIONS(3160), + [anon_sym_private] = ACTIONS(3160), + [anon_sym_protected] = ACTIONS(3160), + [anon_sym_module] = ACTIONS(3160), + [anon_sym_any] = ACTIONS(3160), + [anon_sym_number] = ACTIONS(3160), + [anon_sym_boolean] = ACTIONS(3160), + [anon_sym_string] = ACTIONS(3160), + [anon_sym_symbol] = ACTIONS(3160), + [anon_sym_abstract] = ACTIONS(3160), + [anon_sym_interface] = ACTIONS(3160), + [anon_sym_enum] = ACTIONS(3160), + }, + [1054] = { + [ts_builtin_sym_end] = ACTIONS(2233), + [sym_identifier] = ACTIONS(2235), + [anon_sym_export] = ACTIONS(2235), + [anon_sym_default] = ACTIONS(2235), + [anon_sym_type] = ACTIONS(2235), + [anon_sym_namespace] = ACTIONS(2235), + [anon_sym_LBRACE] = ACTIONS(2233), + [anon_sym_RBRACE] = ACTIONS(2233), + [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_readonly] = ACTIONS(2235), + [anon_sym_get] = ACTIONS(2235), + [anon_sym_set] = ACTIONS(2235), + [anon_sym_declare] = ACTIONS(2235), + [anon_sym_public] = ACTIONS(2235), + [anon_sym_private] = ACTIONS(2235), + [anon_sym_protected] = ACTIONS(2235), + [anon_sym_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_abstract] = ACTIONS(2235), + [anon_sym_interface] = ACTIONS(2235), + [anon_sym_enum] = ACTIONS(2235), + [sym__automatic_semicolon] = ACTIONS(2241), + }, + [1055] = { + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [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_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_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_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2181), + }, + [1056] = { + [ts_builtin_sym_end] = ACTIONS(2073), + [sym_identifier] = ACTIONS(2075), + [anon_sym_export] = ACTIONS(2075), + [anon_sym_default] = ACTIONS(2075), + [anon_sym_type] = ACTIONS(2075), + [anon_sym_namespace] = ACTIONS(2075), + [anon_sym_LBRACE] = ACTIONS(2073), + [anon_sym_RBRACE] = ACTIONS(2073), + [anon_sym_typeof] = ACTIONS(2075), + [anon_sym_import] = ACTIONS(2075), + [anon_sym_var] = ACTIONS(2075), + [anon_sym_let] = ACTIONS(2075), + [anon_sym_const] = ACTIONS(2075), + [anon_sym_BANG] = ACTIONS(2073), + [anon_sym_else] = ACTIONS(2075), + [anon_sym_if] = ACTIONS(2075), + [anon_sym_switch] = ACTIONS(2075), + [anon_sym_for] = ACTIONS(2075), + [anon_sym_LPAREN] = ACTIONS(2073), + [anon_sym_await] = ACTIONS(2075), + [anon_sym_while] = ACTIONS(2075), + [anon_sym_do] = ACTIONS(2075), + [anon_sym_try] = ACTIONS(2075), + [anon_sym_with] = ACTIONS(2075), + [anon_sym_break] = ACTIONS(2075), + [anon_sym_continue] = ACTIONS(2075), + [anon_sym_debugger] = ACTIONS(2075), + [anon_sym_return] = ACTIONS(2075), + [anon_sym_throw] = ACTIONS(2075), + [anon_sym_SEMI] = ACTIONS(2073), + [anon_sym_case] = ACTIONS(2075), + [anon_sym_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_readonly] = ACTIONS(2075), + [anon_sym_get] = ACTIONS(2075), + [anon_sym_set] = ACTIONS(2075), + [anon_sym_declare] = ACTIONS(2075), + [anon_sym_public] = ACTIONS(2075), + [anon_sym_private] = ACTIONS(2075), + [anon_sym_protected] = ACTIONS(2075), + [anon_sym_module] = ACTIONS(2075), + [anon_sym_any] = ACTIONS(2075), + [anon_sym_number] = ACTIONS(2075), + [anon_sym_boolean] = ACTIONS(2075), + [anon_sym_string] = ACTIONS(2075), + [anon_sym_symbol] = ACTIONS(2075), + [anon_sym_abstract] = ACTIONS(2075), + [anon_sym_interface] = ACTIONS(2075), + [anon_sym_enum] = ACTIONS(2075), + [sym__automatic_semicolon] = ACTIONS(2081), }, [1057] = { + [ts_builtin_sym_end] = ACTIONS(2163), + [sym_identifier] = ACTIONS(2165), + [anon_sym_export] = ACTIONS(2165), + [anon_sym_default] = ACTIONS(2165), + [anon_sym_type] = ACTIONS(2165), + [anon_sym_namespace] = ACTIONS(2165), + [anon_sym_LBRACE] = ACTIONS(2163), + [anon_sym_RBRACE] = ACTIONS(2163), + [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_readonly] = ACTIONS(2165), + [anon_sym_get] = ACTIONS(2165), + [anon_sym_set] = ACTIONS(2165), + [anon_sym_declare] = ACTIONS(2165), + [anon_sym_public] = ACTIONS(2165), + [anon_sym_private] = ACTIONS(2165), + [anon_sym_protected] = ACTIONS(2165), + [anon_sym_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_abstract] = ACTIONS(2165), + [anon_sym_interface] = ACTIONS(2165), + [anon_sym_enum] = ACTIONS(2165), + [sym__automatic_semicolon] = ACTIONS(2171), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(2193), + [sym_identifier] = ACTIONS(2195), + [anon_sym_export] = ACTIONS(2195), + [anon_sym_default] = ACTIONS(2195), + [anon_sym_type] = ACTIONS(2195), + [anon_sym_namespace] = ACTIONS(2195), + [anon_sym_LBRACE] = ACTIONS(2193), + [anon_sym_RBRACE] = ACTIONS(2193), + [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_readonly] = 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_abstract] = ACTIONS(2195), + [anon_sym_interface] = ACTIONS(2195), + [anon_sym_enum] = ACTIONS(2195), + [sym__automatic_semicolon] = ACTIONS(2201), + }, + [1059] = { [ts_builtin_sym_end] = ACTIONS(3164), [sym_identifier] = ACTIONS(3166), [anon_sym_export] = ACTIONS(3166), @@ -118530,6 +118725,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_switch] = ACTIONS(3166), [anon_sym_for] = ACTIONS(3166), [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_RPAREN] = ACTIONS(3164), [anon_sym_await] = ACTIONS(3166), [anon_sym_while] = ACTIONS(3166), [anon_sym_do] = ACTIONS(3166), @@ -118542,7 +118738,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_throw] = ACTIONS(3166), [anon_sym_SEMI] = ACTIONS(3164), [anon_sym_case] = ACTIONS(3166), - [anon_sym_finally] = ACTIONS(3166), [anon_sym_yield] = ACTIONS(3166), [anon_sym_LBRACK] = ACTIONS(3164), [anon_sym_LT] = ACTIONS(3164), @@ -118588,8 +118783,631 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(3166), [anon_sym_enum] = ACTIONS(3166), }, - [1058] = { - [sym_else_clause] = STATE(1113), + [1060] = { + [ts_builtin_sym_end] = ACTIONS(2113), + [sym_identifier] = ACTIONS(2115), + [anon_sym_export] = ACTIONS(2115), + [anon_sym_default] = ACTIONS(2115), + [anon_sym_type] = ACTIONS(2115), + [anon_sym_namespace] = ACTIONS(2115), + [anon_sym_LBRACE] = ACTIONS(2113), + [anon_sym_RBRACE] = ACTIONS(2113), + [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_readonly] = ACTIONS(2115), + [anon_sym_get] = ACTIONS(2115), + [anon_sym_set] = ACTIONS(2115), + [anon_sym_declare] = ACTIONS(2115), + [anon_sym_public] = ACTIONS(2115), + [anon_sym_private] = ACTIONS(2115), + [anon_sym_protected] = ACTIONS(2115), + [anon_sym_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_abstract] = ACTIONS(2115), + [anon_sym_interface] = ACTIONS(2115), + [anon_sym_enum] = ACTIONS(2115), + [sym__automatic_semicolon] = ACTIONS(2121), + }, + [1061] = { + [ts_builtin_sym_end] = ACTIONS(2153), + [sym_identifier] = ACTIONS(2155), + [anon_sym_export] = ACTIONS(2155), + [anon_sym_default] = ACTIONS(2155), + [anon_sym_type] = ACTIONS(2155), + [anon_sym_namespace] = ACTIONS(2155), + [anon_sym_LBRACE] = ACTIONS(2153), + [anon_sym_RBRACE] = ACTIONS(2153), + [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_readonly] = 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_abstract] = ACTIONS(2155), + [anon_sym_interface] = ACTIONS(2155), + [anon_sym_enum] = ACTIONS(2155), + [sym__automatic_semicolon] = ACTIONS(2161), + }, + [1062] = { + [ts_builtin_sym_end] = ACTIONS(2183), + [sym_identifier] = ACTIONS(2185), + [anon_sym_export] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2185), + [anon_sym_type] = ACTIONS(2185), + [anon_sym_namespace] = ACTIONS(2185), + [anon_sym_LBRACE] = ACTIONS(2183), + [anon_sym_RBRACE] = ACTIONS(2183), + [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_readonly] = 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_abstract] = ACTIONS(2185), + [anon_sym_interface] = ACTIONS(2185), + [anon_sym_enum] = ACTIONS(2185), + [sym__automatic_semicolon] = ACTIONS(2191), + }, + [1063] = { + [ts_builtin_sym_end] = ACTIONS(2203), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(2205), + [anon_sym_default] = ACTIONS(2205), + [anon_sym_type] = ACTIONS(2205), + [anon_sym_namespace] = ACTIONS(2205), + [anon_sym_LBRACE] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2203), + [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_readonly] = ACTIONS(2205), + [anon_sym_get] = ACTIONS(2205), + [anon_sym_set] = ACTIONS(2205), + [anon_sym_declare] = ACTIONS(2205), + [anon_sym_public] = ACTIONS(2205), + [anon_sym_private] = ACTIONS(2205), + [anon_sym_protected] = ACTIONS(2205), + [anon_sym_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_abstract] = ACTIONS(2205), + [anon_sym_interface] = ACTIONS(2205), + [anon_sym_enum] = ACTIONS(2205), + [sym__automatic_semicolon] = ACTIONS(2211), + }, + [1064] = { + [ts_builtin_sym_end] = ACTIONS(2295), + [sym_identifier] = ACTIONS(2297), + [anon_sym_export] = ACTIONS(2297), + [anon_sym_default] = ACTIONS(2297), + [anon_sym_type] = ACTIONS(2297), + [anon_sym_namespace] = ACTIONS(2297), + [anon_sym_LBRACE] = ACTIONS(2295), + [anon_sym_RBRACE] = ACTIONS(2295), + [anon_sym_typeof] = ACTIONS(2297), + [anon_sym_import] = ACTIONS(2297), + [anon_sym_var] = ACTIONS(2297), + [anon_sym_let] = ACTIONS(2297), + [anon_sym_const] = ACTIONS(2297), + [anon_sym_BANG] = ACTIONS(2295), + [anon_sym_else] = ACTIONS(2297), + [anon_sym_if] = ACTIONS(2297), + [anon_sym_switch] = ACTIONS(2297), + [anon_sym_for] = ACTIONS(2297), + [anon_sym_LPAREN] = ACTIONS(2295), + [anon_sym_await] = ACTIONS(2297), + [anon_sym_while] = ACTIONS(2297), + [anon_sym_do] = ACTIONS(2297), + [anon_sym_try] = ACTIONS(2297), + [anon_sym_with] = ACTIONS(2297), + [anon_sym_break] = ACTIONS(2297), + [anon_sym_continue] = ACTIONS(2297), + [anon_sym_debugger] = ACTIONS(2297), + [anon_sym_return] = ACTIONS(2297), + [anon_sym_throw] = ACTIONS(2297), + [anon_sym_SEMI] = ACTIONS(2295), + [anon_sym_case] = ACTIONS(2297), + [anon_sym_yield] = ACTIONS(2297), + [anon_sym_LBRACK] = ACTIONS(2295), + [anon_sym_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_readonly] = ACTIONS(2297), + [anon_sym_get] = ACTIONS(2297), + [anon_sym_set] = ACTIONS(2297), + [anon_sym_declare] = ACTIONS(2297), + [anon_sym_public] = ACTIONS(2297), + [anon_sym_private] = ACTIONS(2297), + [anon_sym_protected] = ACTIONS(2297), + [anon_sym_module] = ACTIONS(2297), + [anon_sym_any] = ACTIONS(2297), + [anon_sym_number] = ACTIONS(2297), + [anon_sym_boolean] = ACTIONS(2297), + [anon_sym_string] = ACTIONS(2297), + [anon_sym_symbol] = ACTIONS(2297), + [anon_sym_abstract] = ACTIONS(2297), + [anon_sym_interface] = ACTIONS(2297), + [anon_sym_enum] = ACTIONS(2297), + [sym__automatic_semicolon] = ACTIONS(2303), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(2221), + [sym_identifier] = ACTIONS(2223), + [anon_sym_export] = ACTIONS(2223), + [anon_sym_default] = ACTIONS(2223), + [anon_sym_type] = ACTIONS(2223), + [anon_sym_namespace] = ACTIONS(2223), + [anon_sym_LBRACE] = ACTIONS(2221), + [anon_sym_RBRACE] = ACTIONS(2221), + [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_readonly] = ACTIONS(2223), + [anon_sym_get] = ACTIONS(2223), + [anon_sym_set] = ACTIONS(2223), + [anon_sym_declare] = ACTIONS(2223), + [anon_sym_public] = ACTIONS(2223), + [anon_sym_private] = ACTIONS(2223), + [anon_sym_protected] = ACTIONS(2223), + [anon_sym_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_abstract] = ACTIONS(2223), + [anon_sym_interface] = ACTIONS(2223), + [anon_sym_enum] = ACTIONS(2223), + [sym__automatic_semicolon] = ACTIONS(2229), + }, + [1066] = { + [sym_statement_block] = STATE(1091), + [ts_builtin_sym_end] = ACTIONS(1974), + [sym_identifier] = ACTIONS(1976), + [anon_sym_export] = ACTIONS(1976), + [anon_sym_default] = ACTIONS(1976), + [anon_sym_type] = ACTIONS(1976), + [anon_sym_namespace] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(3142), + [anon_sym_RBRACE] = ACTIONS(1974), + [anon_sym_typeof] = ACTIONS(1976), + [anon_sym_import] = ACTIONS(1976), + [anon_sym_var] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [anon_sym_BANG] = ACTIONS(1974), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_switch] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1974), + [anon_sym_await] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_with] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_debugger] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_throw] = ACTIONS(1976), + [anon_sym_SEMI] = ACTIONS(1974), + [anon_sym_case] = ACTIONS(1976), + [anon_sym_yield] = ACTIONS(1976), + [anon_sym_LBRACK] = ACTIONS(1974), + [anon_sym_LT] = ACTIONS(1974), + [anon_sym_SLASH] = ACTIONS(1976), + [anon_sym_class] = ACTIONS(1976), + [anon_sym_async] = ACTIONS(1976), + [anon_sym_function] = ACTIONS(1976), + [anon_sym_new] = ACTIONS(1976), + [anon_sym_PLUS] = ACTIONS(1976), + [anon_sym_DASH] = ACTIONS(1976), + [anon_sym_TILDE] = ACTIONS(1974), + [anon_sym_void] = ACTIONS(1976), + [anon_sym_delete] = ACTIONS(1976), + [anon_sym_PLUS_PLUS] = ACTIONS(1974), + [anon_sym_DASH_DASH] = ACTIONS(1974), + [anon_sym_DQUOTE] = ACTIONS(1974), + [anon_sym_SQUOTE] = ACTIONS(1974), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1974), + [sym_number] = ACTIONS(1974), + [sym_this] = ACTIONS(1976), + [sym_super] = ACTIONS(1976), + [sym_true] = ACTIONS(1976), + [sym_false] = ACTIONS(1976), + [sym_null] = ACTIONS(1976), + [sym_undefined] = ACTIONS(1976), + [anon_sym_AT] = ACTIONS(1974), + [anon_sym_static] = ACTIONS(1976), + [anon_sym_readonly] = ACTIONS(1976), + [anon_sym_get] = ACTIONS(1976), + [anon_sym_set] = ACTIONS(1976), + [anon_sym_declare] = ACTIONS(1976), + [anon_sym_public] = ACTIONS(1976), + [anon_sym_private] = ACTIONS(1976), + [anon_sym_protected] = ACTIONS(1976), + [anon_sym_module] = ACTIONS(1976), + [anon_sym_any] = ACTIONS(1976), + [anon_sym_number] = ACTIONS(1976), + [anon_sym_boolean] = ACTIONS(1976), + [anon_sym_string] = ACTIONS(1976), + [anon_sym_symbol] = ACTIONS(1976), + [anon_sym_abstract] = ACTIONS(1976), + [anon_sym_interface] = ACTIONS(1976), + [anon_sym_enum] = ACTIONS(1976), + }, + [1067] = { + [ts_builtin_sym_end] = ACTIONS(2036), + [sym_identifier] = ACTIONS(2038), + [anon_sym_export] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2038), + [anon_sym_type] = ACTIONS(2038), + [anon_sym_namespace] = ACTIONS(2038), + [anon_sym_LBRACE] = ACTIONS(2036), + [anon_sym_RBRACE] = ACTIONS(2036), + [anon_sym_typeof] = ACTIONS(2038), + [anon_sym_import] = ACTIONS(2038), + [anon_sym_var] = ACTIONS(2038), + [anon_sym_let] = ACTIONS(2038), + [anon_sym_const] = ACTIONS(2038), + [anon_sym_BANG] = ACTIONS(2036), + [anon_sym_else] = ACTIONS(2038), + [anon_sym_if] = ACTIONS(2038), + [anon_sym_switch] = ACTIONS(2038), + [anon_sym_for] = ACTIONS(2038), + [anon_sym_LPAREN] = ACTIONS(2036), + [anon_sym_await] = ACTIONS(2038), + [anon_sym_while] = ACTIONS(2038), + [anon_sym_do] = ACTIONS(2038), + [anon_sym_try] = ACTIONS(2038), + [anon_sym_with] = ACTIONS(2038), + [anon_sym_break] = ACTIONS(2038), + [anon_sym_continue] = ACTIONS(2038), + [anon_sym_debugger] = ACTIONS(2038), + [anon_sym_return] = ACTIONS(2038), + [anon_sym_throw] = ACTIONS(2038), + [anon_sym_SEMI] = ACTIONS(2036), + [anon_sym_case] = ACTIONS(2038), + [anon_sym_yield] = ACTIONS(2038), + [anon_sym_LBRACK] = ACTIONS(2036), + [anon_sym_LT] = ACTIONS(2036), + [anon_sym_SLASH] = ACTIONS(2038), + [anon_sym_class] = ACTIONS(2038), + [anon_sym_async] = ACTIONS(2038), + [anon_sym_function] = ACTIONS(2038), + [anon_sym_new] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(2038), + [anon_sym_DASH] = ACTIONS(2038), + [anon_sym_TILDE] = ACTIONS(2036), + [anon_sym_void] = ACTIONS(2038), + [anon_sym_delete] = ACTIONS(2038), + [anon_sym_PLUS_PLUS] = ACTIONS(2036), + [anon_sym_DASH_DASH] = ACTIONS(2036), + [anon_sym_DQUOTE] = ACTIONS(2036), + [anon_sym_SQUOTE] = ACTIONS(2036), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2036), + [sym_number] = ACTIONS(2036), + [sym_this] = ACTIONS(2038), + [sym_super] = ACTIONS(2038), + [sym_true] = ACTIONS(2038), + [sym_false] = ACTIONS(2038), + [sym_null] = ACTIONS(2038), + [sym_undefined] = ACTIONS(2038), + [anon_sym_AT] = ACTIONS(2036), + [anon_sym_static] = ACTIONS(2038), + [anon_sym_readonly] = ACTIONS(2038), + [anon_sym_get] = ACTIONS(2038), + [anon_sym_set] = ACTIONS(2038), + [anon_sym_declare] = ACTIONS(2038), + [anon_sym_public] = ACTIONS(2038), + [anon_sym_private] = ACTIONS(2038), + [anon_sym_protected] = ACTIONS(2038), + [anon_sym_module] = ACTIONS(2038), + [anon_sym_any] = ACTIONS(2038), + [anon_sym_number] = ACTIONS(2038), + [anon_sym_boolean] = ACTIONS(2038), + [anon_sym_string] = ACTIONS(2038), + [anon_sym_symbol] = ACTIONS(2038), + [anon_sym_abstract] = ACTIONS(2038), + [anon_sym_interface] = ACTIONS(2038), + [anon_sym_enum] = ACTIONS(2038), + [sym__automatic_semicolon] = ACTIONS(2044), + }, + [1068] = { [ts_builtin_sym_end] = ACTIONS(3168), [sym_identifier] = ACTIONS(3170), [anon_sym_export] = ACTIONS(3170), @@ -118604,11 +119422,12 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_let] = ACTIONS(3170), [anon_sym_const] = ACTIONS(3170), [anon_sym_BANG] = ACTIONS(3168), - [anon_sym_else] = ACTIONS(3172), + [anon_sym_else] = ACTIONS(3170), [anon_sym_if] = ACTIONS(3170), [anon_sym_switch] = ACTIONS(3170), [anon_sym_for] = ACTIONS(3170), [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_RPAREN] = ACTIONS(3168), [anon_sym_await] = ACTIONS(3170), [anon_sym_while] = ACTIONS(3170), [anon_sym_do] = ACTIONS(3170), @@ -118666,631 +119485,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(3170), [anon_sym_enum] = ACTIONS(3170), }, - [1059] = { - [ts_builtin_sym_end] = ACTIONS(3174), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_RPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), - }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(2253), - [sym_identifier] = ACTIONS(2255), - [anon_sym_export] = ACTIONS(2255), - [anon_sym_default] = ACTIONS(2255), - [anon_sym_type] = ACTIONS(2255), - [anon_sym_namespace] = ACTIONS(2255), - [anon_sym_LBRACE] = ACTIONS(2253), - [anon_sym_RBRACE] = ACTIONS(2253), - [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_readonly] = 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_abstract] = ACTIONS(2255), - [anon_sym_interface] = ACTIONS(2255), - [anon_sym_enum] = ACTIONS(2255), - [sym__automatic_semicolon] = ACTIONS(2261), - }, - [1061] = { - [ts_builtin_sym_end] = ACTIONS(2263), - [sym_identifier] = ACTIONS(2265), - [anon_sym_export] = ACTIONS(2265), - [anon_sym_default] = ACTIONS(2265), - [anon_sym_type] = ACTIONS(2265), - [anon_sym_namespace] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2263), - [anon_sym_RBRACE] = ACTIONS(2263), - [anon_sym_typeof] = ACTIONS(2265), - [anon_sym_import] = ACTIONS(2265), - [anon_sym_var] = ACTIONS(2265), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [anon_sym_BANG] = ACTIONS(2263), - [anon_sym_else] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_switch] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2263), - [anon_sym_await] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_with] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_debugger] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_throw] = ACTIONS(2265), - [anon_sym_SEMI] = ACTIONS(2263), - [anon_sym_case] = ACTIONS(2265), - [anon_sym_yield] = ACTIONS(2265), - [anon_sym_LBRACK] = ACTIONS(2263), - [anon_sym_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_readonly] = ACTIONS(2265), - [anon_sym_get] = ACTIONS(2265), - [anon_sym_set] = ACTIONS(2265), - [anon_sym_declare] = ACTIONS(2265), - [anon_sym_public] = ACTIONS(2265), - [anon_sym_private] = ACTIONS(2265), - [anon_sym_protected] = ACTIONS(2265), - [anon_sym_module] = ACTIONS(2265), - [anon_sym_any] = ACTIONS(2265), - [anon_sym_number] = ACTIONS(2265), - [anon_sym_boolean] = ACTIONS(2265), - [anon_sym_string] = ACTIONS(2265), - [anon_sym_symbol] = ACTIONS(2265), - [anon_sym_abstract] = ACTIONS(2265), - [anon_sym_interface] = ACTIONS(2265), - [anon_sym_enum] = ACTIONS(2265), - [sym__automatic_semicolon] = ACTIONS(2271), - }, - [1062] = { - [ts_builtin_sym_end] = ACTIONS(2190), - [sym_identifier] = ACTIONS(2192), - [anon_sym_export] = ACTIONS(2192), - [anon_sym_default] = ACTIONS(2192), - [anon_sym_type] = ACTIONS(2192), - [anon_sym_namespace] = ACTIONS(2192), - [anon_sym_LBRACE] = ACTIONS(2190), - [anon_sym_RBRACE] = ACTIONS(2190), - [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_DOT] = 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_readonly] = ACTIONS(2192), - [anon_sym_get] = ACTIONS(2192), - [anon_sym_set] = ACTIONS(2192), - [anon_sym_declare] = ACTIONS(2192), - [anon_sym_public] = ACTIONS(2192), - [anon_sym_private] = ACTIONS(2192), - [anon_sym_protected] = ACTIONS(2192), - [anon_sym_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_abstract] = ACTIONS(2192), - [anon_sym_interface] = ACTIONS(2192), - [anon_sym_enum] = ACTIONS(2192), - }, - [1063] = { - [ts_builtin_sym_end] = ACTIONS(2239), - [sym_identifier] = ACTIONS(2241), - [anon_sym_export] = ACTIONS(2241), - [anon_sym_default] = ACTIONS(2241), - [anon_sym_type] = ACTIONS(2241), - [anon_sym_namespace] = ACTIONS(2241), - [anon_sym_LBRACE] = ACTIONS(2239), - [anon_sym_RBRACE] = ACTIONS(2239), - [anon_sym_typeof] = ACTIONS(2241), - [anon_sym_import] = ACTIONS(2241), - [anon_sym_var] = ACTIONS(2241), - [anon_sym_let] = ACTIONS(2241), - [anon_sym_const] = ACTIONS(2241), - [anon_sym_BANG] = ACTIONS(2239), - [anon_sym_else] = ACTIONS(2241), - [anon_sym_if] = ACTIONS(2241), - [anon_sym_switch] = ACTIONS(2241), - [anon_sym_for] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2239), - [anon_sym_await] = ACTIONS(2241), - [anon_sym_while] = ACTIONS(2241), - [anon_sym_do] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2241), - [anon_sym_with] = ACTIONS(2241), - [anon_sym_break] = ACTIONS(2241), - [anon_sym_continue] = ACTIONS(2241), - [anon_sym_debugger] = ACTIONS(2241), - [anon_sym_return] = ACTIONS(2241), - [anon_sym_throw] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2239), - [anon_sym_case] = ACTIONS(2241), - [anon_sym_yield] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2239), - [anon_sym_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_readonly] = ACTIONS(2241), - [anon_sym_get] = ACTIONS(2241), - [anon_sym_set] = ACTIONS(2241), - [anon_sym_declare] = ACTIONS(2241), - [anon_sym_public] = ACTIONS(2241), - [anon_sym_private] = ACTIONS(2241), - [anon_sym_protected] = ACTIONS(2241), - [anon_sym_module] = ACTIONS(2241), - [anon_sym_any] = ACTIONS(2241), - [anon_sym_number] = ACTIONS(2241), - [anon_sym_boolean] = ACTIONS(2241), - [anon_sym_string] = ACTIONS(2241), - [anon_sym_symbol] = ACTIONS(2241), - [anon_sym_abstract] = ACTIONS(2241), - [anon_sym_interface] = ACTIONS(2241), - [anon_sym_enum] = ACTIONS(2241), - [sym__automatic_semicolon] = ACTIONS(2247), - }, - [1064] = { - [ts_builtin_sym_end] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_default] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3180), - [anon_sym_finally] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), - }, - [1065] = { - [ts_builtin_sym_end] = ACTIONS(2064), - [sym_identifier] = ACTIONS(2066), - [anon_sym_export] = ACTIONS(2066), - [anon_sym_default] = ACTIONS(2066), - [anon_sym_type] = ACTIONS(2066), - [anon_sym_namespace] = ACTIONS(2066), - [anon_sym_LBRACE] = ACTIONS(2064), - [anon_sym_RBRACE] = ACTIONS(2064), - [anon_sym_typeof] = ACTIONS(2066), - [anon_sym_import] = ACTIONS(2066), - [anon_sym_var] = ACTIONS(2066), - [anon_sym_let] = ACTIONS(2066), - [anon_sym_const] = ACTIONS(2066), - [anon_sym_BANG] = ACTIONS(2064), - [anon_sym_else] = ACTIONS(2066), - [anon_sym_if] = ACTIONS(2066), - [anon_sym_switch] = ACTIONS(2066), - [anon_sym_for] = ACTIONS(2066), - [anon_sym_LPAREN] = ACTIONS(2064), - [anon_sym_await] = ACTIONS(2066), - [anon_sym_while] = ACTIONS(2066), - [anon_sym_do] = ACTIONS(2066), - [anon_sym_try] = ACTIONS(2066), - [anon_sym_with] = ACTIONS(2066), - [anon_sym_break] = ACTIONS(2066), - [anon_sym_continue] = ACTIONS(2066), - [anon_sym_debugger] = ACTIONS(2066), - [anon_sym_return] = ACTIONS(2066), - [anon_sym_throw] = ACTIONS(2066), - [anon_sym_SEMI] = ACTIONS(2064), - [anon_sym_case] = ACTIONS(2066), - [anon_sym_yield] = ACTIONS(2066), - [anon_sym_LBRACK] = ACTIONS(2064), - [anon_sym_LT] = ACTIONS(2064), - [anon_sym_SLASH] = ACTIONS(2066), - [anon_sym_class] = ACTIONS(2066), - [anon_sym_async] = ACTIONS(2066), - [anon_sym_function] = ACTIONS(2066), - [anon_sym_new] = ACTIONS(2066), - [anon_sym_PLUS] = ACTIONS(2066), - [anon_sym_DASH] = ACTIONS(2066), - [anon_sym_TILDE] = ACTIONS(2064), - [anon_sym_void] = ACTIONS(2066), - [anon_sym_delete] = ACTIONS(2066), - [anon_sym_PLUS_PLUS] = ACTIONS(2064), - [anon_sym_DASH_DASH] = ACTIONS(2064), - [anon_sym_DQUOTE] = ACTIONS(2064), - [anon_sym_SQUOTE] = ACTIONS(2064), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2064), - [sym_number] = ACTIONS(2064), - [sym_this] = ACTIONS(2066), - [sym_super] = ACTIONS(2066), - [sym_true] = ACTIONS(2066), - [sym_false] = ACTIONS(2066), - [sym_null] = ACTIONS(2066), - [sym_undefined] = ACTIONS(2066), - [anon_sym_AT] = ACTIONS(2064), - [anon_sym_static] = ACTIONS(2066), - [anon_sym_readonly] = ACTIONS(2066), - [anon_sym_get] = ACTIONS(2066), - [anon_sym_set] = ACTIONS(2066), - [anon_sym_declare] = ACTIONS(2066), - [anon_sym_public] = ACTIONS(2066), - [anon_sym_private] = ACTIONS(2066), - [anon_sym_protected] = ACTIONS(2066), - [anon_sym_module] = ACTIONS(2066), - [anon_sym_any] = ACTIONS(2066), - [anon_sym_number] = ACTIONS(2066), - [anon_sym_boolean] = ACTIONS(2066), - [anon_sym_string] = ACTIONS(2066), - [anon_sym_symbol] = ACTIONS(2066), - [anon_sym_abstract] = ACTIONS(2066), - [anon_sym_interface] = ACTIONS(2066), - [anon_sym_enum] = ACTIONS(2066), - [sym__automatic_semicolon] = ACTIONS(2072), - }, - [1066] = { - [ts_builtin_sym_end] = ACTIONS(2116), - [sym_identifier] = ACTIONS(2118), - [anon_sym_export] = ACTIONS(2118), - [anon_sym_default] = ACTIONS(2118), - [anon_sym_type] = ACTIONS(2118), - [anon_sym_namespace] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [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_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_readonly] = ACTIONS(2118), - [anon_sym_get] = ACTIONS(2118), - [anon_sym_set] = ACTIONS(2118), - [anon_sym_declare] = ACTIONS(2118), - [anon_sym_public] = ACTIONS(2118), - [anon_sym_private] = ACTIONS(2118), - [anon_sym_protected] = ACTIONS(2118), - [anon_sym_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_abstract] = ACTIONS(2118), - [anon_sym_interface] = ACTIONS(2118), - [anon_sym_enum] = ACTIONS(2118), - [sym__automatic_semicolon] = ACTIONS(2124), + [1069] = { + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3174), + [anon_sym_export] = ACTIONS(3174), + [anon_sym_default] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_else] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_debugger] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3174), + [anon_sym_finally] = ACTIONS(3174), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_async] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3174), + [anon_sym_delete] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_this] = ACTIONS(3174), + [sym_super] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_null] = ACTIONS(3174), + [sym_undefined] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_readonly] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(3174), + [anon_sym_set] = ACTIONS(3174), + [anon_sym_declare] = ACTIONS(3174), + [anon_sym_public] = ACTIONS(3174), + [anon_sym_private] = ACTIONS(3174), + [anon_sym_protected] = ACTIONS(3174), + [anon_sym_module] = ACTIONS(3174), + [anon_sym_any] = ACTIONS(3174), + [anon_sym_number] = ACTIONS(3174), + [anon_sym_boolean] = ACTIONS(3174), + [anon_sym_string] = ACTIONS(3174), + [anon_sym_symbol] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), }, - [1067] = { + [1070] = { [ts_builtin_sym_end] = ACTIONS(2213), [sym_identifier] = ACTIONS(2215), [anon_sym_export] = ACTIONS(2215), @@ -119326,6 +119599,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(2213), [anon_sym_LT] = ACTIONS(2213), [anon_sym_SLASH] = ACTIONS(2215), + [anon_sym_DOT] = ACTIONS(2215), [anon_sym_class] = ACTIONS(2215), [anon_sym_async] = ACTIONS(2215), [anon_sym_function] = ACTIONS(2215), @@ -119366,11119 +119640,11189 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(2215), [anon_sym_interface] = ACTIONS(2215), [anon_sym_enum] = ACTIONS(2215), - [sym__automatic_semicolon] = ACTIONS(2221), - }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(2126), - [sym_identifier] = ACTIONS(2128), - [anon_sym_export] = ACTIONS(2128), - [anon_sym_default] = ACTIONS(2128), - [anon_sym_type] = ACTIONS(2128), - [anon_sym_namespace] = ACTIONS(2128), - [anon_sym_LBRACE] = ACTIONS(2126), - [anon_sym_RBRACE] = ACTIONS(2126), - [anon_sym_typeof] = ACTIONS(2128), - [anon_sym_import] = ACTIONS(2128), - [anon_sym_var] = ACTIONS(2128), - [anon_sym_let] = ACTIONS(2128), - [anon_sym_const] = ACTIONS(2128), - [anon_sym_BANG] = ACTIONS(2126), - [anon_sym_else] = ACTIONS(2128), - [anon_sym_if] = ACTIONS(2128), - [anon_sym_switch] = ACTIONS(2128), - [anon_sym_for] = ACTIONS(2128), - [anon_sym_LPAREN] = ACTIONS(2126), - [anon_sym_await] = ACTIONS(2128), - [anon_sym_while] = ACTIONS(2128), - [anon_sym_do] = ACTIONS(2128), - [anon_sym_try] = ACTIONS(2128), - [anon_sym_with] = ACTIONS(2128), - [anon_sym_break] = ACTIONS(2128), - [anon_sym_continue] = ACTIONS(2128), - [anon_sym_debugger] = ACTIONS(2128), - [anon_sym_return] = ACTIONS(2128), - [anon_sym_throw] = ACTIONS(2128), - [anon_sym_SEMI] = ACTIONS(2126), - [anon_sym_case] = ACTIONS(2128), - [anon_sym_yield] = ACTIONS(2128), - [anon_sym_LBRACK] = ACTIONS(2126), - [anon_sym_LT] = ACTIONS(2126), - [anon_sym_SLASH] = ACTIONS(2128), - [anon_sym_class] = ACTIONS(2128), - [anon_sym_async] = ACTIONS(2128), - [anon_sym_function] = ACTIONS(2128), - [anon_sym_new] = ACTIONS(2128), - [anon_sym_PLUS] = ACTIONS(2128), - [anon_sym_DASH] = ACTIONS(2128), - [anon_sym_TILDE] = ACTIONS(2126), - [anon_sym_void] = ACTIONS(2128), - [anon_sym_delete] = ACTIONS(2128), - [anon_sym_PLUS_PLUS] = ACTIONS(2126), - [anon_sym_DASH_DASH] = ACTIONS(2126), - [anon_sym_DQUOTE] = ACTIONS(2126), - [anon_sym_SQUOTE] = ACTIONS(2126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2126), - [sym_number] = ACTIONS(2126), - [sym_this] = ACTIONS(2128), - [sym_super] = ACTIONS(2128), - [sym_true] = ACTIONS(2128), - [sym_false] = ACTIONS(2128), - [sym_null] = ACTIONS(2128), - [sym_undefined] = ACTIONS(2128), - [anon_sym_AT] = ACTIONS(2126), - [anon_sym_static] = ACTIONS(2128), - [anon_sym_readonly] = ACTIONS(2128), - [anon_sym_get] = ACTIONS(2128), - [anon_sym_set] = ACTIONS(2128), - [anon_sym_declare] = ACTIONS(2128), - [anon_sym_public] = ACTIONS(2128), - [anon_sym_private] = ACTIONS(2128), - [anon_sym_protected] = ACTIONS(2128), - [anon_sym_module] = ACTIONS(2128), - [anon_sym_any] = ACTIONS(2128), - [anon_sym_number] = ACTIONS(2128), - [anon_sym_boolean] = ACTIONS(2128), - [anon_sym_string] = ACTIONS(2128), - [anon_sym_symbol] = ACTIONS(2128), - [anon_sym_abstract] = ACTIONS(2128), - [anon_sym_interface] = ACTIONS(2128), - [anon_sym_enum] = ACTIONS(2128), - [sym__automatic_semicolon] = ACTIONS(2134), - }, - [1069] = { - [ts_builtin_sym_end] = ACTIONS(2138), - [sym_identifier] = ACTIONS(2140), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2140), - [anon_sym_type] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2140), - [anon_sym_LBRACE] = ACTIONS(2138), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_typeof] = ACTIONS(2140), - [anon_sym_import] = ACTIONS(2140), - [anon_sym_var] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [anon_sym_BANG] = ACTIONS(2138), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_switch] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_await] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_with] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_debugger] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_throw] = ACTIONS(2140), - [anon_sym_SEMI] = ACTIONS(2138), - [anon_sym_case] = ACTIONS(2140), - [anon_sym_yield] = ACTIONS(2140), - [anon_sym_LBRACK] = ACTIONS(2138), - [anon_sym_LT] = ACTIONS(2138), - [anon_sym_SLASH] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2140), - [anon_sym_async] = ACTIONS(2140), - [anon_sym_function] = ACTIONS(2140), - [anon_sym_new] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2140), - [anon_sym_DASH] = ACTIONS(2140), - [anon_sym_TILDE] = ACTIONS(2138), - [anon_sym_void] = ACTIONS(2140), - [anon_sym_delete] = ACTIONS(2140), - [anon_sym_PLUS_PLUS] = ACTIONS(2138), - [anon_sym_DASH_DASH] = ACTIONS(2138), - [anon_sym_DQUOTE] = ACTIONS(2138), - [anon_sym_SQUOTE] = ACTIONS(2138), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2138), - [sym_number] = ACTIONS(2138), - [sym_this] = ACTIONS(2140), - [sym_super] = ACTIONS(2140), - [sym_true] = ACTIONS(2140), - [sym_false] = ACTIONS(2140), - [sym_null] = ACTIONS(2140), - [sym_undefined] = ACTIONS(2140), - [anon_sym_AT] = ACTIONS(2138), - [anon_sym_static] = ACTIONS(2140), - [anon_sym_readonly] = ACTIONS(2140), - [anon_sym_get] = ACTIONS(2140), - [anon_sym_set] = ACTIONS(2140), - [anon_sym_declare] = ACTIONS(2140), - [anon_sym_public] = ACTIONS(2140), - [anon_sym_private] = ACTIONS(2140), - [anon_sym_protected] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_any] = ACTIONS(2140), - [anon_sym_number] = ACTIONS(2140), - [anon_sym_boolean] = ACTIONS(2140), - [anon_sym_string] = ACTIONS(2140), - [anon_sym_symbol] = ACTIONS(2140), - [anon_sym_abstract] = ACTIONS(2140), - [anon_sym_interface] = ACTIONS(2140), - [anon_sym_enum] = ACTIONS(2140), - [sym__automatic_semicolon] = ACTIONS(2146), - }, - [1070] = { - [ts_builtin_sym_end] = ACTIONS(2180), - [sym_identifier] = ACTIONS(2182), - [anon_sym_export] = ACTIONS(2182), - [anon_sym_default] = ACTIONS(2182), - [anon_sym_type] = ACTIONS(2182), - [anon_sym_namespace] = ACTIONS(2182), - [anon_sym_LBRACE] = ACTIONS(2180), - [anon_sym_RBRACE] = ACTIONS(2180), - [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_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_readonly] = ACTIONS(2182), - [anon_sym_get] = ACTIONS(2182), - [anon_sym_set] = ACTIONS(2182), - [anon_sym_declare] = ACTIONS(2182), - [anon_sym_public] = ACTIONS(2182), - [anon_sym_private] = ACTIONS(2182), - [anon_sym_protected] = ACTIONS(2182), - [anon_sym_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_abstract] = ACTIONS(2182), - [anon_sym_interface] = ACTIONS(2182), - [anon_sym_enum] = ACTIONS(2182), - [sym__automatic_semicolon] = ACTIONS(2188), }, [1071] = { - [ts_builtin_sym_end] = ACTIONS(3182), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_debugger] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_finally] = ACTIONS(3178), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_async] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), + [sym_super] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_null] = ACTIONS(3178), + [sym_undefined] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_get] = ACTIONS(3178), + [anon_sym_set] = ACTIONS(3178), + [anon_sym_declare] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_protected] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_any] = ACTIONS(3178), + [anon_sym_number] = ACTIONS(3178), + [anon_sym_boolean] = ACTIONS(3178), + [anon_sym_string] = ACTIONS(3178), + [anon_sym_symbol] = ACTIONS(3178), + [anon_sym_abstract] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), }, [1072] = { - [ts_builtin_sym_end] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3180), + [sym_number] = ACTIONS(3180), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), }, [1073] = { - [ts_builtin_sym_end] = ACTIONS(3190), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3190), - [sym_number] = ACTIONS(3190), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1074] = { - [ts_builtin_sym_end] = ACTIONS(3194), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_default] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3190), + [anon_sym_export] = ACTIONS(3190), + [anon_sym_default] = ACTIONS(3190), + [anon_sym_type] = ACTIONS(3190), + [anon_sym_namespace] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3190), + [anon_sym_import] = ACTIONS(3190), + [anon_sym_var] = ACTIONS(3190), + [anon_sym_let] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_switch] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_with] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_debugger] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_class] = ACTIONS(3190), + [anon_sym_async] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3190), + [anon_sym_delete] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_this] = ACTIONS(3190), + [sym_super] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_null] = ACTIONS(3190), + [sym_undefined] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3190), + [anon_sym_readonly] = ACTIONS(3190), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_declare] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_module] = ACTIONS(3190), + [anon_sym_any] = ACTIONS(3190), + [anon_sym_number] = ACTIONS(3190), + [anon_sym_boolean] = ACTIONS(3190), + [anon_sym_string] = ACTIONS(3190), + [anon_sym_symbol] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), }, [1075] = { - [ts_builtin_sym_end] = ACTIONS(2076), - [sym_identifier] = ACTIONS(2078), - [anon_sym_export] = ACTIONS(2078), - [anon_sym_default] = ACTIONS(2078), - [anon_sym_type] = ACTIONS(2078), - [anon_sym_namespace] = ACTIONS(2078), - [anon_sym_LBRACE] = ACTIONS(2076), - [anon_sym_RBRACE] = ACTIONS(2076), - [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_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_readonly] = 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_abstract] = ACTIONS(2078), - [anon_sym_interface] = ACTIONS(2078), - [anon_sym_enum] = ACTIONS(2078), + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), }, [1076] = { - [ts_builtin_sym_end] = ACTIONS(3198), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_default] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3196), + [sym_number] = ACTIONS(3196), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), }, [1077] = { - [ts_builtin_sym_end] = ACTIONS(3202), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_default] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), }, [1078] = { - [ts_builtin_sym_end] = ACTIONS(3206), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_default] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_case] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3206), + [anon_sym_export] = ACTIONS(3206), + [anon_sym_default] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_namespace] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_typeof] = ACTIONS(3206), + [anon_sym_import] = ACTIONS(3206), + [anon_sym_var] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_switch] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_await] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_with] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_debugger] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_throw] = ACTIONS(3206), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_case] = ACTIONS(3206), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_async] = ACTIONS(3206), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_void] = ACTIONS(3206), + [anon_sym_delete] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3204), + [sym_number] = ACTIONS(3204), + [sym_this] = ACTIONS(3206), + [sym_super] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_null] = ACTIONS(3206), + [sym_undefined] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3206), + [anon_sym_readonly] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3206), + [anon_sym_set] = ACTIONS(3206), + [anon_sym_declare] = ACTIONS(3206), + [anon_sym_public] = ACTIONS(3206), + [anon_sym_private] = ACTIONS(3206), + [anon_sym_protected] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_any] = ACTIONS(3206), + [anon_sym_number] = ACTIONS(3206), + [anon_sym_boolean] = ACTIONS(3206), + [anon_sym_string] = ACTIONS(3206), + [anon_sym_symbol] = ACTIONS(3206), + [anon_sym_abstract] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), }, [1079] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(2217), + [sym_identifier] = ACTIONS(2219), + [anon_sym_export] = ACTIONS(2219), + [anon_sym_default] = ACTIONS(2219), + [anon_sym_type] = ACTIONS(2219), + [anon_sym_namespace] = ACTIONS(2219), + [anon_sym_LBRACE] = ACTIONS(2217), + [anon_sym_RBRACE] = ACTIONS(2217), + [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_readonly] = ACTIONS(2219), + [anon_sym_get] = ACTIONS(2219), + [anon_sym_set] = ACTIONS(2219), + [anon_sym_declare] = ACTIONS(2219), + [anon_sym_public] = ACTIONS(2219), + [anon_sym_private] = ACTIONS(2219), + [anon_sym_protected] = ACTIONS(2219), + [anon_sym_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_abstract] = ACTIONS(2219), + [anon_sym_interface] = ACTIONS(2219), + [anon_sym_enum] = ACTIONS(2219), }, [1080] = { - [ts_builtin_sym_end] = ACTIONS(3214), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [ts_builtin_sym_end] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3210), + [anon_sym_export] = ACTIONS(3210), + [anon_sym_default] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_namespace] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_typeof] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [anon_sym_let] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_await] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_with] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_debugger] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_async] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_void] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(3208), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3208), + [sym_number] = ACTIONS(3208), + [sym_this] = ACTIONS(3210), + [sym_super] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_null] = ACTIONS(3210), + [sym_undefined] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_readonly] = ACTIONS(3210), + [anon_sym_get] = ACTIONS(3210), + [anon_sym_set] = ACTIONS(3210), + [anon_sym_declare] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_protected] = ACTIONS(3210), + [anon_sym_module] = ACTIONS(3210), + [anon_sym_any] = ACTIONS(3210), + [anon_sym_number] = ACTIONS(3210), + [anon_sym_boolean] = ACTIONS(3210), + [anon_sym_string] = ACTIONS(3210), + [anon_sym_symbol] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), }, [1081] = { - [ts_builtin_sym_end] = ACTIONS(2194), - [sym_identifier] = ACTIONS(2196), - [anon_sym_export] = ACTIONS(2196), - [anon_sym_default] = ACTIONS(2196), - [anon_sym_type] = ACTIONS(2196), - [anon_sym_namespace] = ACTIONS(2196), - [anon_sym_LBRACE] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [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_readonly] = 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_abstract] = ACTIONS(2196), - [anon_sym_interface] = ACTIONS(2196), - [anon_sym_enum] = ACTIONS(2196), + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3214), + [anon_sym_export] = ACTIONS(3214), + [anon_sym_default] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_namespace] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_typeof] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [anon_sym_let] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_await] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_debugger] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_async] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_void] = ACTIONS(3214), + [anon_sym_delete] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_SQUOTE] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3212), + [sym_number] = ACTIONS(3212), + [sym_this] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_null] = ACTIONS(3214), + [sym_undefined] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_readonly] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_declare] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_protected] = ACTIONS(3214), + [anon_sym_module] = ACTIONS(3214), + [anon_sym_any] = ACTIONS(3214), + [anon_sym_number] = ACTIONS(3214), + [anon_sym_boolean] = ACTIONS(3214), + [anon_sym_string] = ACTIONS(3214), + [anon_sym_symbol] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), }, [1082] = { - [ts_builtin_sym_end] = ACTIONS(3218), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_else] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_case] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3218), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_default] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_namespace] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_typeof] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_await] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_with] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_debugger] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3218), + [anon_sym_yield] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_async] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_void] = ACTIONS(3218), + [anon_sym_delete] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(3216), + [anon_sym_SQUOTE] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3216), + [sym_number] = ACTIONS(3216), + [sym_this] = ACTIONS(3218), + [sym_super] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_null] = ACTIONS(3218), + [sym_undefined] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_readonly] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_declare] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_any] = ACTIONS(3218), + [anon_sym_number] = ACTIONS(3218), + [anon_sym_boolean] = ACTIONS(3218), + [anon_sym_string] = ACTIONS(3218), + [anon_sym_symbol] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), }, [1083] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3222), + [anon_sym_export] = ACTIONS(3222), + [anon_sym_default] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_namespace] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [anon_sym_let] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_else] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_with] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_debugger] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_case] = ACTIONS(3222), + [anon_sym_yield] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_async] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_this] = ACTIONS(3222), + [sym_super] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_null] = ACTIONS(3222), + [sym_undefined] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_readonly] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3222), + [anon_sym_set] = ACTIONS(3222), + [anon_sym_declare] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_protected] = ACTIONS(3222), + [anon_sym_module] = ACTIONS(3222), + [anon_sym_any] = ACTIONS(3222), + [anon_sym_number] = ACTIONS(3222), + [anon_sym_boolean] = ACTIONS(3222), + [anon_sym_string] = ACTIONS(3222), + [anon_sym_symbol] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), }, [1084] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), }, [1085] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), }, [1086] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), - [anon_sym_export] = ACTIONS(2054), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_namespace] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [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(2052), - [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_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_readonly] = 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_abstract] = ACTIONS(2054), - [anon_sym_interface] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), }, [1087] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3238), + [anon_sym_export] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [anon_sym_let] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_with] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_debugger] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_yield] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_async] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_this] = ACTIONS(3238), + [sym_super] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_null] = ACTIONS(3238), + [sym_undefined] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3238), + [anon_sym_readonly] = ACTIONS(3238), + [anon_sym_get] = ACTIONS(3238), + [anon_sym_set] = ACTIONS(3238), + [anon_sym_declare] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_protected] = ACTIONS(3238), + [anon_sym_module] = ACTIONS(3238), + [anon_sym_any] = ACTIONS(3238), + [anon_sym_number] = ACTIONS(3238), + [anon_sym_boolean] = ACTIONS(3238), + [anon_sym_string] = ACTIONS(3238), + [anon_sym_symbol] = ACTIONS(3238), + [anon_sym_abstract] = ACTIONS(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), }, [1088] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), }, [1089] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), }, [1090] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), }, [1091] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(2287), + [sym_identifier] = ACTIONS(2289), + [anon_sym_export] = ACTIONS(2289), + [anon_sym_default] = ACTIONS(2289), + [anon_sym_type] = ACTIONS(2289), + [anon_sym_namespace] = ACTIONS(2289), + [anon_sym_LBRACE] = ACTIONS(2287), + [anon_sym_RBRACE] = ACTIONS(2287), + [anon_sym_typeof] = ACTIONS(2289), + [anon_sym_import] = ACTIONS(2289), + [anon_sym_var] = ACTIONS(2289), + [anon_sym_let] = ACTIONS(2289), + [anon_sym_const] = ACTIONS(2289), + [anon_sym_BANG] = ACTIONS(2287), + [anon_sym_else] = ACTIONS(2289), + [anon_sym_if] = ACTIONS(2289), + [anon_sym_switch] = ACTIONS(2289), + [anon_sym_for] = ACTIONS(2289), + [anon_sym_LPAREN] = ACTIONS(2287), + [anon_sym_await] = ACTIONS(2289), + [anon_sym_while] = ACTIONS(2289), + [anon_sym_do] = ACTIONS(2289), + [anon_sym_try] = ACTIONS(2289), + [anon_sym_with] = ACTIONS(2289), + [anon_sym_break] = ACTIONS(2289), + [anon_sym_continue] = ACTIONS(2289), + [anon_sym_debugger] = ACTIONS(2289), + [anon_sym_return] = ACTIONS(2289), + [anon_sym_throw] = ACTIONS(2289), + [anon_sym_SEMI] = ACTIONS(2287), + [anon_sym_case] = ACTIONS(2289), + [anon_sym_yield] = ACTIONS(2289), + [anon_sym_LBRACK] = ACTIONS(2287), + [anon_sym_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_readonly] = ACTIONS(2289), + [anon_sym_get] = ACTIONS(2289), + [anon_sym_set] = ACTIONS(2289), + [anon_sym_declare] = ACTIONS(2289), + [anon_sym_public] = ACTIONS(2289), + [anon_sym_private] = ACTIONS(2289), + [anon_sym_protected] = ACTIONS(2289), + [anon_sym_module] = ACTIONS(2289), + [anon_sym_any] = ACTIONS(2289), + [anon_sym_number] = ACTIONS(2289), + [anon_sym_boolean] = ACTIONS(2289), + [anon_sym_string] = ACTIONS(2289), + [anon_sym_symbol] = ACTIONS(2289), + [anon_sym_abstract] = ACTIONS(2289), + [anon_sym_interface] = ACTIONS(2289), + [anon_sym_enum] = ACTIONS(2289), }, [1092] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3248), + [sym_identifier] = ACTIONS(3250), + [anon_sym_export] = ACTIONS(3250), + [anon_sym_default] = ACTIONS(3250), + [anon_sym_type] = ACTIONS(3250), + [anon_sym_namespace] = ACTIONS(3250), + [anon_sym_LBRACE] = ACTIONS(3248), + [anon_sym_RBRACE] = ACTIONS(3248), + [anon_sym_typeof] = ACTIONS(3250), + [anon_sym_import] = ACTIONS(3250), + [anon_sym_var] = ACTIONS(3250), + [anon_sym_let] = ACTIONS(3250), + [anon_sym_const] = ACTIONS(3250), + [anon_sym_BANG] = ACTIONS(3248), + [anon_sym_else] = ACTIONS(3250), + [anon_sym_if] = ACTIONS(3250), + [anon_sym_switch] = ACTIONS(3250), + [anon_sym_for] = ACTIONS(3250), + [anon_sym_LPAREN] = ACTIONS(3248), + [anon_sym_await] = ACTIONS(3250), + [anon_sym_while] = ACTIONS(3250), + [anon_sym_do] = ACTIONS(3250), + [anon_sym_try] = ACTIONS(3250), + [anon_sym_with] = ACTIONS(3250), + [anon_sym_break] = ACTIONS(3250), + [anon_sym_continue] = ACTIONS(3250), + [anon_sym_debugger] = ACTIONS(3250), + [anon_sym_return] = ACTIONS(3250), + [anon_sym_throw] = ACTIONS(3250), + [anon_sym_SEMI] = ACTIONS(3248), + [anon_sym_case] = ACTIONS(3250), + [anon_sym_yield] = ACTIONS(3250), + [anon_sym_LBRACK] = ACTIONS(3248), + [anon_sym_LT] = ACTIONS(3248), + [anon_sym_SLASH] = ACTIONS(3250), + [anon_sym_class] = ACTIONS(3250), + [anon_sym_async] = ACTIONS(3250), + [anon_sym_function] = ACTIONS(3250), + [anon_sym_new] = ACTIONS(3250), + [anon_sym_PLUS] = ACTIONS(3250), + [anon_sym_DASH] = ACTIONS(3250), + [anon_sym_TILDE] = ACTIONS(3248), + [anon_sym_void] = ACTIONS(3250), + [anon_sym_delete] = ACTIONS(3250), + [anon_sym_PLUS_PLUS] = ACTIONS(3248), + [anon_sym_DASH_DASH] = ACTIONS(3248), + [anon_sym_DQUOTE] = ACTIONS(3248), + [anon_sym_SQUOTE] = ACTIONS(3248), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3248), + [sym_number] = ACTIONS(3248), + [sym_this] = ACTIONS(3250), + [sym_super] = ACTIONS(3250), + [sym_true] = ACTIONS(3250), + [sym_false] = ACTIONS(3250), + [sym_null] = ACTIONS(3250), + [sym_undefined] = ACTIONS(3250), + [anon_sym_AT] = ACTIONS(3248), + [anon_sym_static] = ACTIONS(3250), + [anon_sym_readonly] = ACTIONS(3250), + [anon_sym_get] = ACTIONS(3250), + [anon_sym_set] = ACTIONS(3250), + [anon_sym_declare] = ACTIONS(3250), + [anon_sym_public] = ACTIONS(3250), + [anon_sym_private] = ACTIONS(3250), + [anon_sym_protected] = ACTIONS(3250), + [anon_sym_module] = ACTIONS(3250), + [anon_sym_any] = ACTIONS(3250), + [anon_sym_number] = ACTIONS(3250), + [anon_sym_boolean] = ACTIONS(3250), + [anon_sym_string] = ACTIONS(3250), + [anon_sym_symbol] = ACTIONS(3250), + [anon_sym_abstract] = ACTIONS(3250), + [anon_sym_interface] = ACTIONS(3250), + [anon_sym_enum] = ACTIONS(3250), }, [1093] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3252), + [sym_identifier] = ACTIONS(3254), + [anon_sym_export] = ACTIONS(3254), + [anon_sym_default] = ACTIONS(3254), + [anon_sym_type] = ACTIONS(3254), + [anon_sym_namespace] = ACTIONS(3254), + [anon_sym_LBRACE] = ACTIONS(3252), + [anon_sym_RBRACE] = ACTIONS(3252), + [anon_sym_typeof] = ACTIONS(3254), + [anon_sym_import] = ACTIONS(3254), + [anon_sym_var] = ACTIONS(3254), + [anon_sym_let] = ACTIONS(3254), + [anon_sym_const] = ACTIONS(3254), + [anon_sym_BANG] = ACTIONS(3252), + [anon_sym_else] = ACTIONS(3254), + [anon_sym_if] = ACTIONS(3254), + [anon_sym_switch] = ACTIONS(3254), + [anon_sym_for] = ACTIONS(3254), + [anon_sym_LPAREN] = ACTIONS(3252), + [anon_sym_await] = ACTIONS(3254), + [anon_sym_while] = ACTIONS(3254), + [anon_sym_do] = ACTIONS(3254), + [anon_sym_try] = ACTIONS(3254), + [anon_sym_with] = ACTIONS(3254), + [anon_sym_break] = ACTIONS(3254), + [anon_sym_continue] = ACTIONS(3254), + [anon_sym_debugger] = ACTIONS(3254), + [anon_sym_return] = ACTIONS(3254), + [anon_sym_throw] = ACTIONS(3254), + [anon_sym_SEMI] = ACTIONS(3252), + [anon_sym_case] = ACTIONS(3254), + [anon_sym_yield] = ACTIONS(3254), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(3252), + [anon_sym_SLASH] = ACTIONS(3254), + [anon_sym_class] = ACTIONS(3254), + [anon_sym_async] = ACTIONS(3254), + [anon_sym_function] = ACTIONS(3254), + [anon_sym_new] = ACTIONS(3254), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_TILDE] = ACTIONS(3252), + [anon_sym_void] = ACTIONS(3254), + [anon_sym_delete] = ACTIONS(3254), + [anon_sym_PLUS_PLUS] = ACTIONS(3252), + [anon_sym_DASH_DASH] = ACTIONS(3252), + [anon_sym_DQUOTE] = ACTIONS(3252), + [anon_sym_SQUOTE] = ACTIONS(3252), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3252), + [sym_number] = ACTIONS(3252), + [sym_this] = ACTIONS(3254), + [sym_super] = ACTIONS(3254), + [sym_true] = ACTIONS(3254), + [sym_false] = ACTIONS(3254), + [sym_null] = ACTIONS(3254), + [sym_undefined] = ACTIONS(3254), + [anon_sym_AT] = ACTIONS(3252), + [anon_sym_static] = ACTIONS(3254), + [anon_sym_readonly] = ACTIONS(3254), + [anon_sym_get] = ACTIONS(3254), + [anon_sym_set] = ACTIONS(3254), + [anon_sym_declare] = ACTIONS(3254), + [anon_sym_public] = ACTIONS(3254), + [anon_sym_private] = ACTIONS(3254), + [anon_sym_protected] = ACTIONS(3254), + [anon_sym_module] = ACTIONS(3254), + [anon_sym_any] = ACTIONS(3254), + [anon_sym_number] = ACTIONS(3254), + [anon_sym_boolean] = ACTIONS(3254), + [anon_sym_string] = ACTIONS(3254), + [anon_sym_symbol] = ACTIONS(3254), + [anon_sym_abstract] = ACTIONS(3254), + [anon_sym_interface] = ACTIONS(3254), + [anon_sym_enum] = ACTIONS(3254), }, [1094] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(2065), + [sym_identifier] = ACTIONS(2067), + [anon_sym_export] = ACTIONS(2067), + [anon_sym_default] = ACTIONS(2067), + [anon_sym_type] = ACTIONS(2067), + [anon_sym_namespace] = ACTIONS(2067), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_typeof] = ACTIONS(2067), + [anon_sym_import] = ACTIONS(2067), + [anon_sym_var] = ACTIONS(2067), + [anon_sym_let] = ACTIONS(2067), + [anon_sym_const] = ACTIONS(2067), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2067), + [anon_sym_if] = ACTIONS(2067), + [anon_sym_switch] = ACTIONS(2067), + [anon_sym_for] = ACTIONS(2067), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_await] = ACTIONS(2067), + [anon_sym_while] = ACTIONS(2067), + [anon_sym_do] = ACTIONS(2067), + [anon_sym_try] = ACTIONS(2067), + [anon_sym_with] = ACTIONS(2067), + [anon_sym_break] = ACTIONS(2067), + [anon_sym_continue] = ACTIONS(2067), + [anon_sym_debugger] = ACTIONS(2067), + [anon_sym_return] = ACTIONS(2067), + [anon_sym_throw] = ACTIONS(2067), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_case] = ACTIONS(2067), + [anon_sym_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_readonly] = ACTIONS(2067), + [anon_sym_get] = ACTIONS(2067), + [anon_sym_set] = ACTIONS(2067), + [anon_sym_declare] = ACTIONS(2067), + [anon_sym_public] = ACTIONS(2067), + [anon_sym_private] = ACTIONS(2067), + [anon_sym_protected] = ACTIONS(2067), + [anon_sym_module] = ACTIONS(2067), + [anon_sym_any] = ACTIONS(2067), + [anon_sym_number] = ACTIONS(2067), + [anon_sym_boolean] = ACTIONS(2067), + [anon_sym_string] = ACTIONS(2067), + [anon_sym_symbol] = ACTIONS(2067), + [anon_sym_abstract] = ACTIONS(2067), + [anon_sym_interface] = ACTIONS(2067), + [anon_sym_enum] = ACTIONS(2067), }, [1095] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3256), + [sym_identifier] = ACTIONS(3258), + [anon_sym_export] = ACTIONS(3258), + [anon_sym_default] = ACTIONS(3258), + [anon_sym_type] = ACTIONS(3258), + [anon_sym_namespace] = ACTIONS(3258), + [anon_sym_LBRACE] = ACTIONS(3256), + [anon_sym_RBRACE] = ACTIONS(3256), + [anon_sym_typeof] = ACTIONS(3258), + [anon_sym_import] = ACTIONS(3258), + [anon_sym_var] = ACTIONS(3258), + [anon_sym_let] = ACTIONS(3258), + [anon_sym_const] = ACTIONS(3258), + [anon_sym_BANG] = ACTIONS(3256), + [anon_sym_else] = ACTIONS(3258), + [anon_sym_if] = ACTIONS(3258), + [anon_sym_switch] = ACTIONS(3258), + [anon_sym_for] = ACTIONS(3258), + [anon_sym_LPAREN] = ACTIONS(3256), + [anon_sym_await] = ACTIONS(3258), + [anon_sym_while] = ACTIONS(3258), + [anon_sym_do] = ACTIONS(3258), + [anon_sym_try] = ACTIONS(3258), + [anon_sym_with] = ACTIONS(3258), + [anon_sym_break] = ACTIONS(3258), + [anon_sym_continue] = ACTIONS(3258), + [anon_sym_debugger] = ACTIONS(3258), + [anon_sym_return] = ACTIONS(3258), + [anon_sym_throw] = ACTIONS(3258), + [anon_sym_SEMI] = ACTIONS(3256), + [anon_sym_case] = ACTIONS(3258), + [anon_sym_yield] = ACTIONS(3258), + [anon_sym_LBRACK] = ACTIONS(3256), + [anon_sym_LT] = ACTIONS(3256), + [anon_sym_SLASH] = ACTIONS(3258), + [anon_sym_class] = ACTIONS(3258), + [anon_sym_async] = ACTIONS(3258), + [anon_sym_function] = ACTIONS(3258), + [anon_sym_new] = ACTIONS(3258), + [anon_sym_PLUS] = ACTIONS(3258), + [anon_sym_DASH] = ACTIONS(3258), + [anon_sym_TILDE] = ACTIONS(3256), + [anon_sym_void] = ACTIONS(3258), + [anon_sym_delete] = ACTIONS(3258), + [anon_sym_PLUS_PLUS] = ACTIONS(3256), + [anon_sym_DASH_DASH] = ACTIONS(3256), + [anon_sym_DQUOTE] = ACTIONS(3256), + [anon_sym_SQUOTE] = ACTIONS(3256), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3256), + [sym_number] = ACTIONS(3256), + [sym_this] = ACTIONS(3258), + [sym_super] = ACTIONS(3258), + [sym_true] = ACTIONS(3258), + [sym_false] = ACTIONS(3258), + [sym_null] = ACTIONS(3258), + [sym_undefined] = ACTIONS(3258), + [anon_sym_AT] = ACTIONS(3256), + [anon_sym_static] = ACTIONS(3258), + [anon_sym_readonly] = ACTIONS(3258), + [anon_sym_get] = ACTIONS(3258), + [anon_sym_set] = ACTIONS(3258), + [anon_sym_declare] = ACTIONS(3258), + [anon_sym_public] = ACTIONS(3258), + [anon_sym_private] = ACTIONS(3258), + [anon_sym_protected] = ACTIONS(3258), + [anon_sym_module] = ACTIONS(3258), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_abstract] = ACTIONS(3258), + [anon_sym_interface] = ACTIONS(3258), + [anon_sym_enum] = ACTIONS(3258), }, [1096] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_else] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), }, [1097] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3264), + [sym_number] = ACTIONS(3264), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), }, [1098] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1099] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1100] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1101] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1102] = { - [ts_builtin_sym_end] = ACTIONS(3226), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1103] = { - [ts_builtin_sym_end] = ACTIONS(3230), - [sym_identifier] = ACTIONS(3232), - [anon_sym_export] = ACTIONS(3232), - [anon_sym_default] = ACTIONS(3232), - [anon_sym_type] = ACTIONS(3232), - [anon_sym_namespace] = ACTIONS(3232), - [anon_sym_LBRACE] = ACTIONS(3230), - [anon_sym_RBRACE] = ACTIONS(3230), - [anon_sym_typeof] = ACTIONS(3232), - [anon_sym_import] = ACTIONS(3232), - [anon_sym_var] = ACTIONS(3232), - [anon_sym_let] = ACTIONS(3232), - [anon_sym_const] = ACTIONS(3232), - [anon_sym_BANG] = ACTIONS(3230), - [anon_sym_else] = ACTIONS(3232), - [anon_sym_if] = ACTIONS(3232), - [anon_sym_switch] = ACTIONS(3232), - [anon_sym_for] = ACTIONS(3232), - [anon_sym_LPAREN] = ACTIONS(3230), - [anon_sym_await] = ACTIONS(3232), - [anon_sym_while] = ACTIONS(3232), - [anon_sym_do] = ACTIONS(3232), - [anon_sym_try] = ACTIONS(3232), - [anon_sym_with] = ACTIONS(3232), - [anon_sym_break] = ACTIONS(3232), - [anon_sym_continue] = ACTIONS(3232), - [anon_sym_debugger] = ACTIONS(3232), - [anon_sym_return] = ACTIONS(3232), - [anon_sym_throw] = ACTIONS(3232), - [anon_sym_SEMI] = ACTIONS(3230), - [anon_sym_case] = ACTIONS(3232), - [anon_sym_yield] = ACTIONS(3232), - [anon_sym_LBRACK] = ACTIONS(3230), - [anon_sym_LT] = ACTIONS(3230), - [anon_sym_SLASH] = ACTIONS(3232), - [anon_sym_class] = ACTIONS(3232), - [anon_sym_async] = ACTIONS(3232), - [anon_sym_function] = ACTIONS(3232), - [anon_sym_new] = ACTIONS(3232), - [anon_sym_PLUS] = ACTIONS(3232), - [anon_sym_DASH] = ACTIONS(3232), - [anon_sym_TILDE] = ACTIONS(3230), - [anon_sym_void] = ACTIONS(3232), - [anon_sym_delete] = ACTIONS(3232), - [anon_sym_PLUS_PLUS] = ACTIONS(3230), - [anon_sym_DASH_DASH] = ACTIONS(3230), - [anon_sym_DQUOTE] = ACTIONS(3230), - [anon_sym_SQUOTE] = ACTIONS(3230), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3230), - [sym_number] = ACTIONS(3230), - [sym_this] = ACTIONS(3232), - [sym_super] = ACTIONS(3232), - [sym_true] = ACTIONS(3232), - [sym_false] = ACTIONS(3232), - [sym_null] = ACTIONS(3232), - [sym_undefined] = ACTIONS(3232), - [anon_sym_AT] = ACTIONS(3230), - [anon_sym_static] = ACTIONS(3232), - [anon_sym_readonly] = ACTIONS(3232), - [anon_sym_get] = ACTIONS(3232), - [anon_sym_set] = ACTIONS(3232), - [anon_sym_declare] = ACTIONS(3232), - [anon_sym_public] = ACTIONS(3232), - [anon_sym_private] = ACTIONS(3232), - [anon_sym_protected] = ACTIONS(3232), - [anon_sym_module] = ACTIONS(3232), - [anon_sym_any] = ACTIONS(3232), - [anon_sym_number] = ACTIONS(3232), - [anon_sym_boolean] = ACTIONS(3232), - [anon_sym_string] = ACTIONS(3232), - [anon_sym_symbol] = ACTIONS(3232), - [anon_sym_abstract] = ACTIONS(3232), - [anon_sym_interface] = ACTIONS(3232), - [anon_sym_enum] = ACTIONS(3232), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1104] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), }, [1105] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1106] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1107] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), }, [1108] = { - [ts_builtin_sym_end] = ACTIONS(3234), - [sym_identifier] = ACTIONS(3236), - [anon_sym_export] = ACTIONS(3236), - [anon_sym_default] = ACTIONS(3236), - [anon_sym_type] = ACTIONS(3236), - [anon_sym_namespace] = ACTIONS(3236), - [anon_sym_LBRACE] = ACTIONS(3234), - [anon_sym_RBRACE] = ACTIONS(3234), - [anon_sym_typeof] = ACTIONS(3236), - [anon_sym_import] = ACTIONS(3236), - [anon_sym_var] = ACTIONS(3236), - [anon_sym_let] = ACTIONS(3236), - [anon_sym_const] = ACTIONS(3236), - [anon_sym_BANG] = ACTIONS(3234), - [anon_sym_else] = ACTIONS(3236), - [anon_sym_if] = ACTIONS(3236), - [anon_sym_switch] = ACTIONS(3236), - [anon_sym_for] = ACTIONS(3236), - [anon_sym_LPAREN] = ACTIONS(3234), - [anon_sym_await] = ACTIONS(3236), - [anon_sym_while] = ACTIONS(3236), - [anon_sym_do] = ACTIONS(3236), - [anon_sym_try] = ACTIONS(3236), - [anon_sym_with] = ACTIONS(3236), - [anon_sym_break] = ACTIONS(3236), - [anon_sym_continue] = ACTIONS(3236), - [anon_sym_debugger] = ACTIONS(3236), - [anon_sym_return] = ACTIONS(3236), - [anon_sym_throw] = ACTIONS(3236), - [anon_sym_SEMI] = ACTIONS(3234), - [anon_sym_case] = ACTIONS(3236), - [anon_sym_yield] = ACTIONS(3236), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(3234), - [anon_sym_SLASH] = ACTIONS(3236), - [anon_sym_class] = ACTIONS(3236), - [anon_sym_async] = ACTIONS(3236), - [anon_sym_function] = ACTIONS(3236), - [anon_sym_new] = ACTIONS(3236), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_TILDE] = ACTIONS(3234), - [anon_sym_void] = ACTIONS(3236), - [anon_sym_delete] = ACTIONS(3236), - [anon_sym_PLUS_PLUS] = ACTIONS(3234), - [anon_sym_DASH_DASH] = ACTIONS(3234), - [anon_sym_DQUOTE] = ACTIONS(3234), - [anon_sym_SQUOTE] = ACTIONS(3234), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3234), - [sym_number] = ACTIONS(3234), - [sym_this] = ACTIONS(3236), - [sym_super] = ACTIONS(3236), - [sym_true] = ACTIONS(3236), - [sym_false] = ACTIONS(3236), - [sym_null] = ACTIONS(3236), - [sym_undefined] = ACTIONS(3236), - [anon_sym_AT] = ACTIONS(3234), - [anon_sym_static] = ACTIONS(3236), - [anon_sym_readonly] = ACTIONS(3236), - [anon_sym_get] = ACTIONS(3236), - [anon_sym_set] = ACTIONS(3236), - [anon_sym_declare] = ACTIONS(3236), - [anon_sym_public] = ACTIONS(3236), - [anon_sym_private] = ACTIONS(3236), - [anon_sym_protected] = ACTIONS(3236), - [anon_sym_module] = ACTIONS(3236), - [anon_sym_any] = ACTIONS(3236), - [anon_sym_number] = ACTIONS(3236), - [anon_sym_boolean] = ACTIONS(3236), - [anon_sym_string] = ACTIONS(3236), - [anon_sym_symbol] = ACTIONS(3236), - [anon_sym_abstract] = ACTIONS(3236), - [anon_sym_interface] = ACTIONS(3236), - [anon_sym_enum] = ACTIONS(3236), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1109] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1110] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1111] = { - [ts_builtin_sym_end] = ACTIONS(2156), - [sym_identifier] = ACTIONS(2158), - [anon_sym_export] = ACTIONS(2158), - [anon_sym_default] = ACTIONS(2158), - [anon_sym_type] = ACTIONS(2158), - [anon_sym_namespace] = ACTIONS(2158), - [anon_sym_LBRACE] = ACTIONS(2156), - [anon_sym_RBRACE] = ACTIONS(2156), - [anon_sym_typeof] = ACTIONS(2158), - [anon_sym_import] = ACTIONS(2158), - [anon_sym_var] = ACTIONS(2158), - [anon_sym_let] = ACTIONS(2158), - [anon_sym_const] = ACTIONS(2158), - [anon_sym_BANG] = ACTIONS(2156), - [anon_sym_else] = ACTIONS(2158), - [anon_sym_if] = ACTIONS(2158), - [anon_sym_switch] = ACTIONS(2158), - [anon_sym_for] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2156), - [anon_sym_await] = ACTIONS(2158), - [anon_sym_while] = ACTIONS(2158), - [anon_sym_do] = ACTIONS(2158), - [anon_sym_try] = ACTIONS(2158), - [anon_sym_with] = ACTIONS(2158), - [anon_sym_break] = ACTIONS(2158), - [anon_sym_continue] = ACTIONS(2158), - [anon_sym_debugger] = ACTIONS(2158), - [anon_sym_return] = ACTIONS(2158), - [anon_sym_throw] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2156), - [anon_sym_case] = ACTIONS(2158), - [anon_sym_yield] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2156), - [anon_sym_LT] = ACTIONS(2156), - [anon_sym_SLASH] = ACTIONS(2158), - [anon_sym_class] = ACTIONS(2158), - [anon_sym_async] = ACTIONS(2158), - [anon_sym_function] = ACTIONS(2158), - [anon_sym_new] = ACTIONS(2158), - [anon_sym_PLUS] = ACTIONS(2158), - [anon_sym_DASH] = ACTIONS(2158), - [anon_sym_TILDE] = ACTIONS(2156), - [anon_sym_void] = ACTIONS(2158), - [anon_sym_delete] = ACTIONS(2158), - [anon_sym_PLUS_PLUS] = ACTIONS(2156), - [anon_sym_DASH_DASH] = ACTIONS(2156), - [anon_sym_DQUOTE] = ACTIONS(2156), - [anon_sym_SQUOTE] = ACTIONS(2156), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2156), - [sym_number] = ACTIONS(2156), - [sym_this] = ACTIONS(2158), - [sym_super] = ACTIONS(2158), - [sym_true] = ACTIONS(2158), - [sym_false] = ACTIONS(2158), - [sym_null] = ACTIONS(2158), - [sym_undefined] = ACTIONS(2158), - [anon_sym_AT] = ACTIONS(2156), - [anon_sym_static] = ACTIONS(2158), - [anon_sym_readonly] = ACTIONS(2158), - [anon_sym_get] = ACTIONS(2158), - [anon_sym_set] = ACTIONS(2158), - [anon_sym_declare] = ACTIONS(2158), - [anon_sym_public] = ACTIONS(2158), - [anon_sym_private] = ACTIONS(2158), - [anon_sym_protected] = ACTIONS(2158), - [anon_sym_module] = ACTIONS(2158), - [anon_sym_any] = ACTIONS(2158), - [anon_sym_number] = ACTIONS(2158), - [anon_sym_boolean] = ACTIONS(2158), - [anon_sym_string] = ACTIONS(2158), - [anon_sym_symbol] = ACTIONS(2158), - [anon_sym_abstract] = ACTIONS(2158), - [anon_sym_interface] = ACTIONS(2158), - [anon_sym_enum] = ACTIONS(2158), + [ts_builtin_sym_end] = ACTIONS(3280), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_else] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_abstract] = ACTIONS(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), }, [1112] = { - [ts_builtin_sym_end] = ACTIONS(3238), - [sym_identifier] = ACTIONS(3240), - [anon_sym_export] = ACTIONS(3240), - [anon_sym_default] = ACTIONS(3240), - [anon_sym_type] = ACTIONS(3240), - [anon_sym_namespace] = ACTIONS(3240), - [anon_sym_LBRACE] = ACTIONS(3238), - [anon_sym_RBRACE] = ACTIONS(3238), - [anon_sym_typeof] = ACTIONS(3240), - [anon_sym_import] = ACTIONS(3240), - [anon_sym_var] = ACTIONS(3240), - [anon_sym_let] = ACTIONS(3240), - [anon_sym_const] = ACTIONS(3240), - [anon_sym_BANG] = ACTIONS(3238), - [anon_sym_else] = ACTIONS(3240), - [anon_sym_if] = ACTIONS(3240), - [anon_sym_switch] = ACTIONS(3240), - [anon_sym_for] = ACTIONS(3240), - [anon_sym_LPAREN] = ACTIONS(3238), - [anon_sym_await] = ACTIONS(3240), - [anon_sym_while] = ACTIONS(3240), - [anon_sym_do] = ACTIONS(3240), - [anon_sym_try] = ACTIONS(3240), - [anon_sym_with] = ACTIONS(3240), - [anon_sym_break] = ACTIONS(3240), - [anon_sym_continue] = ACTIONS(3240), - [anon_sym_debugger] = ACTIONS(3240), - [anon_sym_return] = ACTIONS(3240), - [anon_sym_throw] = ACTIONS(3240), - [anon_sym_SEMI] = ACTIONS(3238), - [anon_sym_case] = ACTIONS(3240), - [anon_sym_yield] = ACTIONS(3240), - [anon_sym_LBRACK] = ACTIONS(3238), - [anon_sym_LT] = ACTIONS(3238), - [anon_sym_SLASH] = ACTIONS(3240), - [anon_sym_class] = ACTIONS(3240), - [anon_sym_async] = ACTIONS(3240), - [anon_sym_function] = ACTIONS(3240), - [anon_sym_new] = ACTIONS(3240), - [anon_sym_PLUS] = ACTIONS(3240), - [anon_sym_DASH] = ACTIONS(3240), - [anon_sym_TILDE] = ACTIONS(3238), - [anon_sym_void] = ACTIONS(3240), - [anon_sym_delete] = ACTIONS(3240), - [anon_sym_PLUS_PLUS] = ACTIONS(3238), - [anon_sym_DASH_DASH] = ACTIONS(3238), - [anon_sym_DQUOTE] = ACTIONS(3238), - [anon_sym_SQUOTE] = ACTIONS(3238), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3238), - [sym_number] = ACTIONS(3238), - [sym_this] = ACTIONS(3240), - [sym_super] = ACTIONS(3240), - [sym_true] = ACTIONS(3240), - [sym_false] = ACTIONS(3240), - [sym_null] = ACTIONS(3240), - [sym_undefined] = ACTIONS(3240), - [anon_sym_AT] = ACTIONS(3238), - [anon_sym_static] = ACTIONS(3240), - [anon_sym_readonly] = ACTIONS(3240), - [anon_sym_get] = ACTIONS(3240), - [anon_sym_set] = ACTIONS(3240), - [anon_sym_declare] = ACTIONS(3240), - [anon_sym_public] = ACTIONS(3240), - [anon_sym_private] = ACTIONS(3240), - [anon_sym_protected] = ACTIONS(3240), - [anon_sym_module] = ACTIONS(3240), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_abstract] = ACTIONS(3240), - [anon_sym_interface] = ACTIONS(3240), - [anon_sym_enum] = ACTIONS(3240), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1113] = { - [ts_builtin_sym_end] = ACTIONS(3242), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_default] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1114] = { - [ts_builtin_sym_end] = ACTIONS(3246), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1115] = { - [ts_builtin_sym_end] = ACTIONS(3250), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1116] = { - [ts_builtin_sym_end] = ACTIONS(3254), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_default] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1117] = { - [ts_builtin_sym_end] = ACTIONS(3258), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [ts_builtin_sym_end] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_type] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_var] = ACTIONS(3286), + [anon_sym_let] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_with] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_debugger] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_yield] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3286), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_this] = ACTIONS(3286), + [sym_super] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_null] = ACTIONS(3286), + [sym_undefined] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_readonly] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_any] = ACTIONS(3286), + [anon_sym_number] = ACTIONS(3286), + [anon_sym_boolean] = ACTIONS(3286), + [anon_sym_string] = ACTIONS(3286), + [anon_sym_symbol] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_interface] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), }, [1118] = { - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_default] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1119] = { - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_default] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [ts_builtin_sym_end] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3290), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_this] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [sym_null] = ACTIONS(3290), + [sym_undefined] = ACTIONS(3290), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_readonly] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3290), + [anon_sym_set] = ACTIONS(3290), + [anon_sym_declare] = ACTIONS(3290), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3290), + [anon_sym_any] = ACTIONS(3290), + [anon_sym_number] = ACTIONS(3290), + [anon_sym_boolean] = ACTIONS(3290), + [anon_sym_string] = ACTIONS(3290), + [anon_sym_symbol] = ACTIONS(3290), + [anon_sym_abstract] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), }, [1120] = { - [ts_builtin_sym_end] = ACTIONS(3266), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_default] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), + [ts_builtin_sym_end] = ACTIONS(3292), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3294), + [anon_sym_import] = ACTIONS(3294), + [anon_sym_var] = ACTIONS(3294), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_else] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_debugger] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_this] = ACTIONS(3294), + [sym_super] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_null] = ACTIONS(3294), + [sym_undefined] = ACTIONS(3294), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3294), + [anon_sym_set] = ACTIONS(3294), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3294), + [anon_sym_interface] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), }, [1121] = { - [ts_builtin_sym_end] = ACTIONS(2207), - [sym_identifier] = ACTIONS(2209), - [anon_sym_export] = ACTIONS(2209), - [anon_sym_default] = ACTIONS(2209), - [anon_sym_type] = ACTIONS(2209), - [anon_sym_namespace] = ACTIONS(2209), - [anon_sym_LBRACE] = ACTIONS(2207), - [anon_sym_RBRACE] = ACTIONS(2207), - [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_readonly] = ACTIONS(2209), - [anon_sym_get] = ACTIONS(2209), - [anon_sym_set] = ACTIONS(2209), - [anon_sym_declare] = ACTIONS(2209), - [anon_sym_public] = ACTIONS(2209), - [anon_sym_private] = ACTIONS(2209), - [anon_sym_protected] = ACTIONS(2209), - [anon_sym_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_abstract] = ACTIONS(2209), - [anon_sym_interface] = ACTIONS(2209), - [anon_sym_enum] = ACTIONS(2209), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1122] = { - [ts_builtin_sym_end] = ACTIONS(3270), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), }, [1123] = { - [ts_builtin_sym_end] = ACTIONS(3274), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), + [ts_builtin_sym_end] = ACTIONS(3300), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), }, [1124] = { - [ts_builtin_sym_end] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3280), - [anon_sym_export] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3280), - [anon_sym_import] = ACTIONS(3280), - [anon_sym_var] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_debugger] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_async] = ACTIONS(3280), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_this] = ACTIONS(3280), - [sym_super] = ACTIONS(3280), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [sym_null] = ACTIONS(3280), - [sym_undefined] = ACTIONS(3280), - [anon_sym_AT] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_readonly] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3280), - [anon_sym_set] = ACTIONS(3280), - [anon_sym_declare] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_any] = ACTIONS(3280), - [anon_sym_number] = ACTIONS(3280), - [anon_sym_boolean] = ACTIONS(3280), - [anon_sym_string] = ACTIONS(3280), - [anon_sym_symbol] = ACTIONS(3280), - [anon_sym_abstract] = ACTIONS(3280), - [anon_sym_interface] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1125] = { - [ts_builtin_sym_end] = ACTIONS(3282), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [ts_builtin_sym_end] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), }, [1126] = { - [ts_builtin_sym_end] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1127] = { - [ts_builtin_sym_end] = ACTIONS(3290), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), + [ts_builtin_sym_end] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), }, [1128] = { - [ts_builtin_sym_end] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), }, [1129] = { - [ts_builtin_sym_end] = ACTIONS(3298), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), }, [1130] = { - [ts_builtin_sym_end] = ACTIONS(3298), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), }, [1131] = { - [ts_builtin_sym_end] = ACTIONS(3302), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), }, [1132] = { - [ts_builtin_sym_end] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3308), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(3308), - [anon_sym_var] = ACTIONS(3308), - [anon_sym_let] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_else] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_with] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_yield] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_function] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_this] = ACTIONS(3308), - [sym_super] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_null] = ACTIONS(3308), - [sym_undefined] = ACTIONS(3308), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_readonly] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_declare] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_module] = ACTIONS(3308), - [anon_sym_any] = ACTIONS(3308), - [anon_sym_number] = ACTIONS(3308), - [anon_sym_boolean] = ACTIONS(3308), - [anon_sym_string] = ACTIONS(3308), - [anon_sym_symbol] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), + [ts_builtin_sym_end] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_default] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), }, [1133] = { - [ts_builtin_sym_end] = ACTIONS(3310), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym_case] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3310), - [sym_number] = ACTIONS(3310), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), + [ts_builtin_sym_end] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), }, [1134] = { - [ts_builtin_sym_end] = ACTIONS(3314), - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_var] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_else] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_debugger] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_throw] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3316), - [anon_sym_interface] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), + [ts_builtin_sym_end] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), }, [1135] = { - [ts_builtin_sym_end] = ACTIONS(3318), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_default] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [ts_builtin_sym_end] = ACTIONS(3340), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), }, [1136] = { - [ts_builtin_sym_end] = ACTIONS(3322), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_default] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_case] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), }, [1137] = { - [ts_builtin_sym_end] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_default] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_case] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), }, [1138] = { - [ts_builtin_sym_end] = ACTIONS(3330), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_SQUOTE] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3352), + [sym_number] = ACTIONS(3352), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), }, [1139] = { - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3358), + [anon_sym_export] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3358), + [anon_sym_import] = ACTIONS(3358), + [anon_sym_var] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_debugger] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3358), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_this] = ACTIONS(3358), + [sym_super] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_null] = ACTIONS(3358), + [sym_undefined] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3358), + [anon_sym_set] = ACTIONS(3358), + [anon_sym_declare] = ACTIONS(3358), + [anon_sym_public] = ACTIONS(3358), + [anon_sym_private] = ACTIONS(3358), + [anon_sym_protected] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3358), + [anon_sym_any] = ACTIONS(3358), + [anon_sym_number] = ACTIONS(3358), + [anon_sym_boolean] = ACTIONS(3358), + [anon_sym_string] = ACTIONS(3358), + [anon_sym_symbol] = ACTIONS(3358), + [anon_sym_abstract] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), }, [1140] = { - [ts_builtin_sym_end] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_async] = ACTIONS(3362), + [anon_sym_function] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_this] = ACTIONS(3362), + [sym_super] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_undefined] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_declare] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_any] = ACTIONS(3362), + [anon_sym_number] = ACTIONS(3362), + [anon_sym_boolean] = ACTIONS(3362), + [anon_sym_string] = ACTIONS(3362), + [anon_sym_symbol] = ACTIONS(3362), + [anon_sym_abstract] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), }, [1141] = { - [ts_builtin_sym_end] = ACTIONS(3342), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_default] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), }, [1142] = { - [ts_builtin_sym_end] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), - }, - [1143] = { - [ts_builtin_sym_end] = ACTIONS(3350), - [sym_identifier] = ACTIONS(3352), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_type] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym_import] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_this] = ACTIONS(3352), - [sym_super] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_null] = ACTIONS(3352), - [sym_undefined] = ACTIONS(3352), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), - [anon_sym_declare] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_module] = ACTIONS(3352), - [anon_sym_any] = ACTIONS(3352), - [anon_sym_number] = ACTIONS(3352), - [anon_sym_boolean] = ACTIONS(3352), - [anon_sym_string] = ACTIONS(3352), - [anon_sym_symbol] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), - }, - [1144] = { - [ts_builtin_sym_end] = ACTIONS(3354), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), - }, - [1145] = { - [ts_builtin_sym_end] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3360), - [anon_sym_export] = ACTIONS(3360), - [anon_sym_default] = ACTIONS(3360), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_namespace] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_debugger] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3360), - [anon_sym_delete] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_this] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_true] = ACTIONS(3360), - [sym_false] = ACTIONS(3360), - [sym_null] = ACTIONS(3360), - [sym_undefined] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3360), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_protected] = ACTIONS(3360), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_any] = ACTIONS(3360), - [anon_sym_number] = ACTIONS(3360), - [anon_sym_boolean] = ACTIONS(3360), - [anon_sym_string] = ACTIONS(3360), - [anon_sym_symbol] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), - }, - [1146] = { - [sym_object_pattern] = STATE(4319), - [sym_array_pattern] = STATE(4319), - [sym_nested_identifier] = STATE(5905), - [sym__destructuring_pattern] = STATE(4319), - [sym_string] = STATE(4023), - [sym_formal_parameters] = STATE(6009), - [sym_pattern] = STATE(5651), - [sym_rest_pattern] = STATE(4319), - [sym_nested_type_identifier] = STATE(3914), - [sym__type] = STATE(4193), - [sym_constructor_type] = STATE(4193), - [sym__primary_type] = STATE(4015), - [sym_infer_type] = STATE(4193), - [sym_conditional_type] = STATE(4019), - [sym_generic_type] = STATE(4019), - [sym_type_query] = STATE(4019), - [sym_index_type_query] = STATE(4019), - [sym_lookup_type] = STATE(4019), - [sym_literal_type] = STATE(4019), - [sym__number] = STATE(4014), - [sym_existential_type] = STATE(4019), - [sym_flow_maybe_type] = STATE(4019), - [sym_parenthesized_type] = STATE(4019), - [sym_predefined_type] = STATE(4019), - [sym_object_type] = STATE(4019), - [sym_type_parameters] = STATE(5481), - [sym_array_type] = STATE(4019), - [sym_tuple_type] = STATE(4019), - [sym_readonly_type] = STATE(4193), - [sym_union_type] = STATE(4193), - [sym_intersection_type] = STATE(4193), - [sym_function_type] = STATE(4193), - [sym_identifier] = ACTIONS(3362), - [anon_sym_export] = ACTIONS(1722), + [sym_object_pattern] = STATE(4402), + [sym_array_pattern] = STATE(4402), + [sym_nested_identifier] = STATE(5974), + [sym__destructuring_pattern] = STATE(4402), + [sym_string] = STATE(4002), + [sym_formal_parameters] = STATE(6019), + [sym_pattern] = STATE(5645), + [sym_rest_pattern] = STATE(4402), + [sym_nested_type_identifier] = STATE(3916), + [sym__type] = STATE(4184), + [sym_constructor_type] = STATE(4184), + [sym__primary_type] = STATE(3990), + [sym_infer_type] = STATE(4184), + [sym_conditional_type] = STATE(3992), + [sym_generic_type] = STATE(3992), + [sym_type_query] = STATE(3992), + [sym_index_type_query] = STATE(3992), + [sym_lookup_type] = STATE(3992), + [sym_literal_type] = STATE(3992), + [sym__number] = STATE(3987), + [sym_existential_type] = STATE(3992), + [sym_flow_maybe_type] = STATE(3992), + [sym_parenthesized_type] = STATE(3992), + [sym_predefined_type] = STATE(3992), + [sym_object_type] = STATE(3992), + [sym_type_parameters] = STATE(5483), + [sym_array_type] = STATE(3992), + [sym_tuple_type] = STATE(3992), + [sym_readonly_type] = STATE(4184), + [sym_union_type] = STATE(4184), + [sym_intersection_type] = STATE(4184), + [sym_function_type] = STATE(4184), + [sym_identifier] = ACTIONS(3368), + [anon_sym_export] = ACTIONS(1706), [anon_sym_STAR] = ACTIONS(724), - [anon_sym_type] = ACTIONS(1722), - [anon_sym_namespace] = ACTIONS(1722), - [anon_sym_LBRACE] = ACTIONS(3364), - [anon_sym_typeof] = ACTIONS(2086), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_async] = ACTIONS(1722), - [anon_sym_new] = ACTIONS(2092), + [anon_sym_type] = ACTIONS(1706), + [anon_sym_namespace] = ACTIONS(1706), + [anon_sym_LBRACE] = ACTIONS(3370), + [anon_sym_typeof] = ACTIONS(2249), + [anon_sym_LPAREN] = ACTIONS(2251), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_async] = ACTIONS(1706), + [anon_sym_new] = ACTIONS(2255), [anon_sym_DOT_DOT_DOT] = ACTIONS(696), [anon_sym_QMARK] = ACTIONS(740), [anon_sym_AMP] = ACTIONS(742), [anon_sym_PIPE] = ACTIONS(744), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_void] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(2106), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2108), - [sym_this] = ACTIONS(2110), - [sym_true] = ACTIONS(2112), - [sym_false] = ACTIONS(2112), - [anon_sym_static] = ACTIONS(1722), - [anon_sym_readonly] = ACTIONS(3370), - [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(3372), - [anon_sym_number] = ACTIONS(3372), - [anon_sym_boolean] = ACTIONS(3372), - [anon_sym_string] = ACTIONS(3372), - [anon_sym_symbol] = ACTIONS(3372), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_void] = ACTIONS(2265), + [anon_sym_DQUOTE] = ACTIONS(2267), + [anon_sym_SQUOTE] = ACTIONS(2269), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2271), + [sym_this] = ACTIONS(2273), + [sym_true] = ACTIONS(2275), + [sym_false] = ACTIONS(2275), + [anon_sym_static] = ACTIONS(1706), + [anon_sym_readonly] = ACTIONS(3376), + [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(3378), + [anon_sym_number] = ACTIONS(3378), + [anon_sym_boolean] = ACTIONS(3378), + [anon_sym_string] = ACTIONS(3378), + [anon_sym_symbol] = ACTIONS(3378), [anon_sym_infer] = ACTIONS(760), [anon_sym_keyof] = ACTIONS(762), [anon_sym_LBRACE_PIPE] = ACTIONS(764), }, + [1143] = { + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3382), + [anon_sym_export] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_type] = ACTIONS(3382), + [anon_sym_namespace] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_typeof] = ACTIONS(3382), + [anon_sym_import] = ACTIONS(3382), + [anon_sym_var] = ACTIONS(3382), + [anon_sym_let] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_await] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_try] = ACTIONS(3382), + [anon_sym_with] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_debugger] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_throw] = ACTIONS(3382), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3382), + [anon_sym_yield] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_class] = ACTIONS(3382), + [anon_sym_async] = ACTIONS(3382), + [anon_sym_function] = ACTIONS(3382), + [anon_sym_new] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_void] = ACTIONS(3382), + [anon_sym_delete] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3380), + [sym_number] = ACTIONS(3380), + [sym_this] = ACTIONS(3382), + [sym_super] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_null] = ACTIONS(3382), + [sym_undefined] = ACTIONS(3382), + [anon_sym_AT] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_readonly] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3382), + [anon_sym_set] = ACTIONS(3382), + [anon_sym_declare] = ACTIONS(3382), + [anon_sym_public] = ACTIONS(3382), + [anon_sym_private] = ACTIONS(3382), + [anon_sym_protected] = ACTIONS(3382), + [anon_sym_module] = ACTIONS(3382), + [anon_sym_any] = ACTIONS(3382), + [anon_sym_number] = ACTIONS(3382), + [anon_sym_boolean] = ACTIONS(3382), + [anon_sym_string] = ACTIONS(3382), + [anon_sym_symbol] = ACTIONS(3382), + [anon_sym_abstract] = ACTIONS(3382), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), + }, + [1144] = { + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_default] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_with] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_debugger] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_void] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3384), + [sym_number] = ACTIONS(3384), + [sym_this] = ACTIONS(3386), + [sym_super] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [sym_undefined] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_module] = ACTIONS(3386), + [anon_sym_any] = ACTIONS(3386), + [anon_sym_number] = ACTIONS(3386), + [anon_sym_boolean] = ACTIONS(3386), + [anon_sym_string] = ACTIONS(3386), + [anon_sym_symbol] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + }, + [1145] = { + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_default] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_with] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_debugger] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_void] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3384), + [sym_number] = ACTIONS(3384), + [sym_this] = ACTIONS(3386), + [sym_super] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [sym_undefined] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_module] = ACTIONS(3386), + [anon_sym_any] = ACTIONS(3386), + [anon_sym_number] = ACTIONS(3386), + [anon_sym_boolean] = ACTIONS(3386), + [anon_sym_string] = ACTIONS(3386), + [anon_sym_symbol] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + }, + [1146] = { + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_default] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_with] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_debugger] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_void] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3384), + [sym_number] = ACTIONS(3384), + [sym_this] = ACTIONS(3386), + [sym_super] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [sym_undefined] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_module] = ACTIONS(3386), + [anon_sym_any] = ACTIONS(3386), + [anon_sym_number] = ACTIONS(3386), + [anon_sym_boolean] = ACTIONS(3386), + [anon_sym_string] = ACTIONS(3386), + [anon_sym_symbol] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), + }, [1147] = { - [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3376), - [anon_sym_export] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_type] = ACTIONS(3376), - [anon_sym_namespace] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_RBRACE] = ACTIONS(3374), - [anon_sym_typeof] = ACTIONS(3376), - [anon_sym_import] = ACTIONS(3376), - [anon_sym_var] = ACTIONS(3376), - [anon_sym_let] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_else] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_switch] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(3374), - [anon_sym_await] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_do] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [anon_sym_with] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_debugger] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_throw] = ACTIONS(3376), - [anon_sym_SEMI] = ACTIONS(3374), - [anon_sym_case] = ACTIONS(3376), - [anon_sym_yield] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_LT] = ACTIONS(3374), - [anon_sym_SLASH] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_async] = ACTIONS(3376), - [anon_sym_function] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3376), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_void] = ACTIONS(3376), - [anon_sym_delete] = ACTIONS(3376), - [anon_sym_PLUS_PLUS] = ACTIONS(3374), - [anon_sym_DASH_DASH] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [anon_sym_SQUOTE] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3374), - [sym_number] = ACTIONS(3374), - [sym_this] = ACTIONS(3376), - [sym_super] = ACTIONS(3376), - [sym_true] = ACTIONS(3376), - [sym_false] = ACTIONS(3376), - [sym_null] = ACTIONS(3376), - [sym_undefined] = ACTIONS(3376), - [anon_sym_AT] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_readonly] = ACTIONS(3376), - [anon_sym_get] = ACTIONS(3376), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_declare] = ACTIONS(3376), - [anon_sym_public] = ACTIONS(3376), - [anon_sym_private] = ACTIONS(3376), - [anon_sym_protected] = ACTIONS(3376), - [anon_sym_module] = ACTIONS(3376), - [anon_sym_any] = ACTIONS(3376), - [anon_sym_number] = ACTIONS(3376), - [anon_sym_boolean] = ACTIONS(3376), - [anon_sym_string] = ACTIONS(3376), - [anon_sym_symbol] = ACTIONS(3376), - [anon_sym_abstract] = ACTIONS(3376), - [anon_sym_interface] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3390), + [anon_sym_export] = ACTIONS(3390), + [anon_sym_default] = ACTIONS(3390), + [anon_sym_type] = ACTIONS(3390), + [anon_sym_namespace] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3390), + [anon_sym_import] = ACTIONS(3390), + [anon_sym_var] = ACTIONS(3390), + [anon_sym_let] = ACTIONS(3390), + [anon_sym_const] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_else] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_switch] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3390), + [anon_sym_while] = ACTIONS(3390), + [anon_sym_do] = ACTIONS(3390), + [anon_sym_try] = ACTIONS(3390), + [anon_sym_with] = ACTIONS(3390), + [anon_sym_break] = ACTIONS(3390), + [anon_sym_continue] = ACTIONS(3390), + [anon_sym_debugger] = ACTIONS(3390), + [anon_sym_return] = ACTIONS(3390), + [anon_sym_throw] = ACTIONS(3390), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_case] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_class] = ACTIONS(3390), + [anon_sym_async] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3390), + [anon_sym_delete] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_this] = ACTIONS(3390), + [sym_super] = ACTIONS(3390), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_null] = ACTIONS(3390), + [sym_undefined] = ACTIONS(3390), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3390), + [anon_sym_readonly] = ACTIONS(3390), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3390), + [anon_sym_declare] = ACTIONS(3390), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_module] = ACTIONS(3390), + [anon_sym_any] = ACTIONS(3390), + [anon_sym_number] = ACTIONS(3390), + [anon_sym_boolean] = ACTIONS(3390), + [anon_sym_string] = ACTIONS(3390), + [anon_sym_symbol] = ACTIONS(3390), + [anon_sym_abstract] = ACTIONS(3390), + [anon_sym_interface] = ACTIONS(3390), + [anon_sym_enum] = ACTIONS(3390), }, [1148] = { - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3380), - [anon_sym_export] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_type] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_typeof] = ACTIONS(3380), - [anon_sym_import] = ACTIONS(3380), - [anon_sym_var] = ACTIONS(3380), - [anon_sym_let] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_await] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_with] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_debugger] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_yield] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_SLASH] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_async] = ACTIONS(3380), - [anon_sym_function] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_void] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3378), - [sym_number] = ACTIONS(3378), - [sym_this] = ACTIONS(3380), - [sym_super] = ACTIONS(3380), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [sym_undefined] = ACTIONS(3380), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3380), - [anon_sym_get] = ACTIONS(3380), - [anon_sym_set] = ACTIONS(3380), - [anon_sym_declare] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_module] = ACTIONS(3380), - [anon_sym_any] = ACTIONS(3380), - [anon_sym_number] = ACTIONS(3380), - [anon_sym_boolean] = ACTIONS(3380), - [anon_sym_string] = ACTIONS(3380), - [anon_sym_symbol] = ACTIONS(3380), - [anon_sym_abstract] = ACTIONS(3380), - [anon_sym_interface] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3390), + [anon_sym_export] = ACTIONS(3390), + [anon_sym_default] = ACTIONS(3390), + [anon_sym_type] = ACTIONS(3390), + [anon_sym_namespace] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3390), + [anon_sym_import] = ACTIONS(3390), + [anon_sym_var] = ACTIONS(3390), + [anon_sym_let] = ACTIONS(3390), + [anon_sym_const] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_else] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_switch] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3390), + [anon_sym_while] = ACTIONS(3390), + [anon_sym_do] = ACTIONS(3390), + [anon_sym_try] = ACTIONS(3390), + [anon_sym_with] = ACTIONS(3390), + [anon_sym_break] = ACTIONS(3390), + [anon_sym_continue] = ACTIONS(3390), + [anon_sym_debugger] = ACTIONS(3390), + [anon_sym_return] = ACTIONS(3390), + [anon_sym_throw] = ACTIONS(3390), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_case] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_class] = ACTIONS(3390), + [anon_sym_async] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3390), + [anon_sym_delete] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_this] = ACTIONS(3390), + [sym_super] = ACTIONS(3390), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_null] = ACTIONS(3390), + [sym_undefined] = ACTIONS(3390), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3390), + [anon_sym_readonly] = ACTIONS(3390), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3390), + [anon_sym_declare] = ACTIONS(3390), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_module] = ACTIONS(3390), + [anon_sym_any] = ACTIONS(3390), + [anon_sym_number] = ACTIONS(3390), + [anon_sym_boolean] = ACTIONS(3390), + [anon_sym_string] = ACTIONS(3390), + [anon_sym_symbol] = ACTIONS(3390), + [anon_sym_abstract] = ACTIONS(3390), + [anon_sym_interface] = ACTIONS(3390), + [anon_sym_enum] = ACTIONS(3390), }, [1149] = { - [ts_builtin_sym_end] = ACTIONS(3382), - [sym_identifier] = ACTIONS(3384), - [anon_sym_export] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_type] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_RBRACE] = ACTIONS(3382), - [anon_sym_typeof] = ACTIONS(3384), - [anon_sym_import] = ACTIONS(3384), - [anon_sym_var] = ACTIONS(3384), - [anon_sym_let] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_else] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_await] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_with] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_debugger] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_yield] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3382), - [anon_sym_LT] = ACTIONS(3382), - [anon_sym_SLASH] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_async] = ACTIONS(3384), - [anon_sym_function] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_void] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3382), - [sym_number] = ACTIONS(3382), - [sym_this] = ACTIONS(3384), - [sym_super] = ACTIONS(3384), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [sym_null] = ACTIONS(3384), - [sym_undefined] = ACTIONS(3384), - [anon_sym_AT] = ACTIONS(3382), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_readonly] = ACTIONS(3384), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3384), - [anon_sym_declare] = ACTIONS(3384), - [anon_sym_public] = ACTIONS(3384), - [anon_sym_private] = ACTIONS(3384), - [anon_sym_protected] = ACTIONS(3384), - [anon_sym_module] = ACTIONS(3384), - [anon_sym_any] = ACTIONS(3384), - [anon_sym_number] = ACTIONS(3384), - [anon_sym_boolean] = ACTIONS(3384), - [anon_sym_string] = ACTIONS(3384), - [anon_sym_symbol] = ACTIONS(3384), - [anon_sym_abstract] = ACTIONS(3384), - [anon_sym_interface] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_export] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [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(2053), + [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_readonly] = ACTIONS(2053), + [anon_sym_get] = ACTIONS(2053), + [anon_sym_set] = ACTIONS(2053), + [anon_sym_declare] = ACTIONS(2053), + [anon_sym_public] = ACTIONS(2053), + [anon_sym_private] = ACTIONS(2053), + [anon_sym_protected] = ACTIONS(2053), + [anon_sym_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_abstract] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), }, [1150] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3394), + [anon_sym_export] = ACTIONS(3394), + [anon_sym_default] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_namespace] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_with] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_debugger] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_void] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_SQUOTE] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3392), + [sym_number] = ACTIONS(3392), + [sym_this] = ACTIONS(3394), + [sym_super] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [sym_undefined] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3394), + [anon_sym_declare] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_module] = ACTIONS(3394), + [anon_sym_any] = ACTIONS(3394), + [anon_sym_number] = ACTIONS(3394), + [anon_sym_boolean] = ACTIONS(3394), + [anon_sym_string] = ACTIONS(3394), + [anon_sym_symbol] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), }, [1151] = { - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3388), - [anon_sym_export] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_type] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_RBRACE] = ACTIONS(3386), - [anon_sym_typeof] = ACTIONS(3388), - [anon_sym_import] = ACTIONS(3388), - [anon_sym_var] = ACTIONS(3388), - [anon_sym_let] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_LPAREN] = ACTIONS(3386), - [anon_sym_await] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_with] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_debugger] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_yield] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3386), - [anon_sym_LT] = ACTIONS(3386), - [anon_sym_SLASH] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_async] = ACTIONS(3388), - [anon_sym_function] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_void] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3386), - [sym_number] = ACTIONS(3386), - [sym_this] = ACTIONS(3388), - [sym_super] = ACTIONS(3388), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [sym_null] = ACTIONS(3388), - [sym_undefined] = ACTIONS(3388), - [anon_sym_AT] = ACTIONS(3386), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_readonly] = ACTIONS(3388), - [anon_sym_get] = ACTIONS(3388), - [anon_sym_set] = ACTIONS(3388), - [anon_sym_declare] = ACTIONS(3388), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_module] = ACTIONS(3388), - [anon_sym_any] = ACTIONS(3388), - [anon_sym_number] = ACTIONS(3388), - [anon_sym_boolean] = ACTIONS(3388), - [anon_sym_string] = ACTIONS(3388), - [anon_sym_symbol] = ACTIONS(3388), - [anon_sym_abstract] = ACTIONS(3388), - [anon_sym_interface] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3398), + [anon_sym_export] = ACTIONS(3398), + [anon_sym_default] = ACTIONS(3398), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_RBRACE] = ACTIONS(3396), + [anon_sym_typeof] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_else] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_await] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_with] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_debugger] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3396), + [anon_sym_case] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_LT] = ACTIONS(3396), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_function] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_void] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_DQUOTE] = ACTIONS(3396), + [anon_sym_SQUOTE] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3396), + [sym_number] = ACTIONS(3396), + [sym_this] = ACTIONS(3398), + [sym_super] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_null] = ACTIONS(3398), + [sym_undefined] = ACTIONS(3398), + [anon_sym_AT] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_readonly] = ACTIONS(3398), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3398), + [anon_sym_declare] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_protected] = ACTIONS(3398), + [anon_sym_module] = ACTIONS(3398), + [anon_sym_any] = ACTIONS(3398), + [anon_sym_number] = ACTIONS(3398), + [anon_sym_boolean] = ACTIONS(3398), + [anon_sym_string] = ACTIONS(3398), + [anon_sym_symbol] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), }, [1152] = { - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3392), - [anon_sym_export] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_type] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_typeof] = ACTIONS(3392), - [anon_sym_import] = ACTIONS(3392), - [anon_sym_var] = ACTIONS(3392), - [anon_sym_let] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_else] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_LPAREN] = ACTIONS(3390), - [anon_sym_await] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_with] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_debugger] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_yield] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_LT] = ACTIONS(3390), - [anon_sym_SLASH] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_async] = ACTIONS(3392), - [anon_sym_function] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_void] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3390), - [sym_number] = ACTIONS(3390), - [sym_this] = ACTIONS(3392), - [sym_super] = ACTIONS(3392), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_null] = ACTIONS(3392), - [sym_undefined] = ACTIONS(3392), - [anon_sym_AT] = ACTIONS(3390), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_readonly] = ACTIONS(3392), - [anon_sym_get] = ACTIONS(3392), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_declare] = ACTIONS(3392), - [anon_sym_public] = ACTIONS(3392), - [anon_sym_private] = ACTIONS(3392), - [anon_sym_protected] = ACTIONS(3392), - [anon_sym_module] = ACTIONS(3392), - [anon_sym_any] = ACTIONS(3392), - [anon_sym_number] = ACTIONS(3392), - [anon_sym_boolean] = ACTIONS(3392), - [anon_sym_string] = ACTIONS(3392), - [anon_sym_symbol] = ACTIONS(3392), - [anon_sym_abstract] = ACTIONS(3392), - [anon_sym_interface] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3402), + [anon_sym_export] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_type] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_typeof] = ACTIONS(3402), + [anon_sym_import] = ACTIONS(3402), + [anon_sym_var] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_await] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_with] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_debugger] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_yield] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_async] = ACTIONS(3402), + [anon_sym_function] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_void] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(3400), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3400), + [sym_number] = ACTIONS(3400), + [sym_this] = ACTIONS(3402), + [sym_super] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_null] = ACTIONS(3402), + [sym_undefined] = ACTIONS(3402), + [anon_sym_AT] = ACTIONS(3400), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_readonly] = ACTIONS(3402), + [anon_sym_get] = ACTIONS(3402), + [anon_sym_set] = ACTIONS(3402), + [anon_sym_declare] = ACTIONS(3402), + [anon_sym_public] = ACTIONS(3402), + [anon_sym_private] = ACTIONS(3402), + [anon_sym_protected] = ACTIONS(3402), + [anon_sym_module] = ACTIONS(3402), + [anon_sym_any] = ACTIONS(3402), + [anon_sym_number] = ACTIONS(3402), + [anon_sym_boolean] = ACTIONS(3402), + [anon_sym_string] = ACTIONS(3402), + [anon_sym_symbol] = ACTIONS(3402), + [anon_sym_abstract] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), }, [1153] = { - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3396), - [anon_sym_export] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_type] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_typeof] = ACTIONS(3396), - [anon_sym_import] = ACTIONS(3396), - [anon_sym_var] = ACTIONS(3396), - [anon_sym_let] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_else] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_await] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_with] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_debugger] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_yield] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_SLASH] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_async] = ACTIONS(3396), - [anon_sym_function] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_void] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3394), - [sym_number] = ACTIONS(3394), - [sym_this] = ACTIONS(3396), - [sym_super] = ACTIONS(3396), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [sym_null] = ACTIONS(3396), - [sym_undefined] = ACTIONS(3396), - [anon_sym_AT] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_readonly] = ACTIONS(3396), - [anon_sym_get] = ACTIONS(3396), - [anon_sym_set] = ACTIONS(3396), - [anon_sym_declare] = ACTIONS(3396), - [anon_sym_public] = ACTIONS(3396), - [anon_sym_private] = ACTIONS(3396), - [anon_sym_protected] = ACTIONS(3396), - [anon_sym_module] = ACTIONS(3396), - [anon_sym_any] = ACTIONS(3396), - [anon_sym_number] = ACTIONS(3396), - [anon_sym_boolean] = ACTIONS(3396), - [anon_sym_string] = ACTIONS(3396), - [anon_sym_symbol] = ACTIONS(3396), - [anon_sym_abstract] = ACTIONS(3396), - [anon_sym_interface] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_identifier] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_var] = ACTIONS(3406), + [anon_sym_let] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_else] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_debugger] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_async] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_void] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3404), + [sym_number] = ACTIONS(3404), + [sym_this] = ACTIONS(3406), + [sym_super] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_null] = ACTIONS(3406), + [sym_undefined] = ACTIONS(3406), + [anon_sym_AT] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_readonly] = ACTIONS(3406), + [anon_sym_get] = ACTIONS(3406), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_declare] = ACTIONS(3406), + [anon_sym_public] = ACTIONS(3406), + [anon_sym_private] = ACTIONS(3406), + [anon_sym_protected] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_any] = ACTIONS(3406), + [anon_sym_number] = ACTIONS(3406), + [anon_sym_boolean] = ACTIONS(3406), + [anon_sym_string] = ACTIONS(3406), + [anon_sym_symbol] = ACTIONS(3406), + [anon_sym_abstract] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), }, [1154] = { - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3400), - [anon_sym_export] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_type] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_typeof] = ACTIONS(3400), - [anon_sym_import] = ACTIONS(3400), - [anon_sym_var] = ACTIONS(3400), - [anon_sym_let] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3398), - [anon_sym_await] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_with] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_debugger] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_yield] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3398), - [anon_sym_LT] = ACTIONS(3398), - [anon_sym_SLASH] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_async] = ACTIONS(3400), - [anon_sym_function] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_void] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3398), - [sym_number] = ACTIONS(3398), - [sym_this] = ACTIONS(3400), - [sym_super] = ACTIONS(3400), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [sym_null] = ACTIONS(3400), - [sym_undefined] = ACTIONS(3400), - [anon_sym_AT] = ACTIONS(3398), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_readonly] = ACTIONS(3400), - [anon_sym_get] = ACTIONS(3400), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_declare] = ACTIONS(3400), - [anon_sym_public] = ACTIONS(3400), - [anon_sym_private] = ACTIONS(3400), - [anon_sym_protected] = ACTIONS(3400), - [anon_sym_module] = ACTIONS(3400), - [anon_sym_any] = ACTIONS(3400), - [anon_sym_number] = ACTIONS(3400), - [anon_sym_boolean] = ACTIONS(3400), - [anon_sym_string] = ACTIONS(3400), - [anon_sym_symbol] = ACTIONS(3400), - [anon_sym_abstract] = ACTIONS(3400), - [anon_sym_interface] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3410), + [anon_sym_export] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3410), + [anon_sym_var] = ACTIONS(3410), + [anon_sym_let] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_with] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_debugger] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_yield] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_async] = ACTIONS(3410), + [anon_sym_function] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_void] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3408), + [sym_number] = ACTIONS(3408), + [sym_this] = ACTIONS(3410), + [sym_super] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_null] = ACTIONS(3410), + [sym_undefined] = ACTIONS(3410), + [anon_sym_AT] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_readonly] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3410), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_declare] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_module] = ACTIONS(3410), + [anon_sym_any] = ACTIONS(3410), + [anon_sym_number] = ACTIONS(3410), + [anon_sym_boolean] = ACTIONS(3410), + [anon_sym_string] = ACTIONS(3410), + [anon_sym_symbol] = ACTIONS(3410), + [anon_sym_abstract] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), }, [1155] = { - [ts_builtin_sym_end] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), }, [1156] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), }, [1157] = { - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3404), - [anon_sym_export] = ACTIONS(3404), - [anon_sym_default] = ACTIONS(3404), - [anon_sym_type] = ACTIONS(3404), - [anon_sym_namespace] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_typeof] = ACTIONS(3404), - [anon_sym_import] = ACTIONS(3404), - [anon_sym_var] = ACTIONS(3404), - [anon_sym_let] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_else] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3402), - [anon_sym_await] = ACTIONS(3404), - [anon_sym_while] = ACTIONS(3404), - [anon_sym_do] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3404), - [anon_sym_with] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_debugger] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_throw] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_case] = ACTIONS(3404), - [anon_sym_yield] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_SLASH] = ACTIONS(3404), - [anon_sym_class] = ACTIONS(3404), - [anon_sym_async] = ACTIONS(3404), - [anon_sym_function] = ACTIONS(3404), - [anon_sym_new] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_void] = ACTIONS(3404), - [anon_sym_delete] = ACTIONS(3404), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3402), - [sym_number] = ACTIONS(3402), - [sym_this] = ACTIONS(3404), - [sym_super] = ACTIONS(3404), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [sym_null] = ACTIONS(3404), - [sym_undefined] = ACTIONS(3404), - [anon_sym_AT] = ACTIONS(3402), - [anon_sym_static] = ACTIONS(3404), - [anon_sym_readonly] = ACTIONS(3404), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_declare] = ACTIONS(3404), - [anon_sym_public] = ACTIONS(3404), - [anon_sym_private] = ACTIONS(3404), - [anon_sym_protected] = ACTIONS(3404), - [anon_sym_module] = ACTIONS(3404), - [anon_sym_any] = ACTIONS(3404), - [anon_sym_number] = ACTIONS(3404), - [anon_sym_boolean] = ACTIONS(3404), - [anon_sym_string] = ACTIONS(3404), - [anon_sym_symbol] = ACTIONS(3404), - [anon_sym_abstract] = ACTIONS(3404), - [anon_sym_interface] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3418), + [anon_sym_export] = ACTIONS(3418), + [anon_sym_default] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_namespace] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_typeof] = ACTIONS(3418), + [anon_sym_import] = ACTIONS(3418), + [anon_sym_var] = ACTIONS(3418), + [anon_sym_let] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_else] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_switch] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_await] = ACTIONS(3418), + [anon_sym_while] = ACTIONS(3418), + [anon_sym_do] = ACTIONS(3418), + [anon_sym_try] = ACTIONS(3418), + [anon_sym_with] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_debugger] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_throw] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_case] = ACTIONS(3418), + [anon_sym_yield] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_class] = ACTIONS(3418), + [anon_sym_async] = ACTIONS(3418), + [anon_sym_function] = ACTIONS(3418), + [anon_sym_new] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_void] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [anon_sym_DQUOTE] = ACTIONS(3416), + [anon_sym_SQUOTE] = ACTIONS(3416), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3416), + [sym_number] = ACTIONS(3416), + [sym_this] = ACTIONS(3418), + [sym_super] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_null] = ACTIONS(3418), + [sym_undefined] = ACTIONS(3418), + [anon_sym_AT] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3418), + [anon_sym_readonly] = ACTIONS(3418), + [anon_sym_get] = ACTIONS(3418), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_declare] = ACTIONS(3418), + [anon_sym_public] = ACTIONS(3418), + [anon_sym_private] = ACTIONS(3418), + [anon_sym_protected] = ACTIONS(3418), + [anon_sym_module] = ACTIONS(3418), + [anon_sym_any] = ACTIONS(3418), + [anon_sym_number] = ACTIONS(3418), + [anon_sym_boolean] = ACTIONS(3418), + [anon_sym_string] = ACTIONS(3418), + [anon_sym_symbol] = ACTIONS(3418), + [anon_sym_abstract] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), }, [1158] = { - [ts_builtin_sym_end] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3422), + [anon_sym_export] = ACTIONS(3422), + [anon_sym_default] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_namespace] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3422), + [anon_sym_import] = ACTIONS(3422), + [anon_sym_var] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_switch] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_with] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_debugger] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_case] = ACTIONS(3422), + [anon_sym_yield] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_class] = ACTIONS(3422), + [anon_sym_async] = ACTIONS(3422), + [anon_sym_function] = ACTIONS(3422), + [anon_sym_new] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_void] = ACTIONS(3422), + [anon_sym_delete] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_DQUOTE] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3420), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3420), + [sym_number] = ACTIONS(3420), + [sym_this] = ACTIONS(3422), + [sym_super] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_null] = ACTIONS(3422), + [sym_undefined] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3422), + [anon_sym_readonly] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_declare] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_module] = ACTIONS(3422), + [anon_sym_any] = ACTIONS(3422), + [anon_sym_number] = ACTIONS(3422), + [anon_sym_boolean] = ACTIONS(3422), + [anon_sym_string] = ACTIONS(3422), + [anon_sym_symbol] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), }, [1159] = { - [ts_builtin_sym_end] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3426), + [anon_sym_export] = ACTIONS(3426), + [anon_sym_default] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_namespace] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_typeof] = ACTIONS(3426), + [anon_sym_import] = ACTIONS(3426), + [anon_sym_var] = ACTIONS(3426), + [anon_sym_let] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_switch] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_await] = ACTIONS(3426), + [anon_sym_while] = ACTIONS(3426), + [anon_sym_do] = ACTIONS(3426), + [anon_sym_try] = ACTIONS(3426), + [anon_sym_with] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_debugger] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_throw] = ACTIONS(3426), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_case] = ACTIONS(3426), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_class] = ACTIONS(3426), + [anon_sym_async] = ACTIONS(3426), + [anon_sym_function] = ACTIONS(3426), + [anon_sym_new] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_void] = ACTIONS(3426), + [anon_sym_delete] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3424), + [sym_number] = ACTIONS(3424), + [sym_this] = ACTIONS(3426), + [sym_super] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_null] = ACTIONS(3426), + [sym_undefined] = ACTIONS(3426), + [anon_sym_AT] = ACTIONS(3424), + [anon_sym_static] = ACTIONS(3426), + [anon_sym_readonly] = ACTIONS(3426), + [anon_sym_get] = ACTIONS(3426), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_declare] = ACTIONS(3426), + [anon_sym_public] = ACTIONS(3426), + [anon_sym_private] = ACTIONS(3426), + [anon_sym_protected] = ACTIONS(3426), + [anon_sym_module] = ACTIONS(3426), + [anon_sym_any] = ACTIONS(3426), + [anon_sym_number] = ACTIONS(3426), + [anon_sym_boolean] = ACTIONS(3426), + [anon_sym_string] = ACTIONS(3426), + [anon_sym_symbol] = ACTIONS(3426), + [anon_sym_abstract] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), }, [1160] = { - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3408), - [anon_sym_export] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_type] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_typeof] = ACTIONS(3408), - [anon_sym_import] = ACTIONS(3408), - [anon_sym_var] = ACTIONS(3408), - [anon_sym_let] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_LPAREN] = ACTIONS(3406), - [anon_sym_await] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_with] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_debugger] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_yield] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_LT] = ACTIONS(3406), - [anon_sym_SLASH] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_async] = ACTIONS(3408), - [anon_sym_function] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3406), - [anon_sym_void] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3406), - [anon_sym_DASH_DASH] = ACTIONS(3406), - [anon_sym_DQUOTE] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3406), - [sym_number] = ACTIONS(3406), - [sym_this] = ACTIONS(3408), - [sym_super] = ACTIONS(3408), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [sym_null] = ACTIONS(3408), - [sym_undefined] = ACTIONS(3408), - [anon_sym_AT] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_readonly] = ACTIONS(3408), - [anon_sym_get] = ACTIONS(3408), - [anon_sym_set] = ACTIONS(3408), - [anon_sym_declare] = ACTIONS(3408), - [anon_sym_public] = ACTIONS(3408), - [anon_sym_private] = ACTIONS(3408), - [anon_sym_protected] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3408), - [anon_sym_any] = ACTIONS(3408), - [anon_sym_number] = ACTIONS(3408), - [anon_sym_boolean] = ACTIONS(3408), - [anon_sym_string] = ACTIONS(3408), - [anon_sym_symbol] = ACTIONS(3408), - [anon_sym_abstract] = ACTIONS(3408), - [anon_sym_interface] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), }, [1161] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3412), - [anon_sym_export] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_type] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_typeof] = ACTIONS(3412), - [anon_sym_import] = ACTIONS(3412), - [anon_sym_var] = ACTIONS(3412), - [anon_sym_let] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_else] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3410), - [anon_sym_await] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_with] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_debugger] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym_case] = ACTIONS(3412), - [anon_sym_yield] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(3410), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_async] = ACTIONS(3412), - [anon_sym_function] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_void] = ACTIONS(3412), - [anon_sym_delete] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3410), - [sym_number] = ACTIONS(3410), - [sym_this] = ACTIONS(3412), - [sym_super] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_null] = ACTIONS(3412), - [sym_undefined] = ACTIONS(3412), - [anon_sym_AT] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_readonly] = ACTIONS(3412), - [anon_sym_get] = ACTIONS(3412), - [anon_sym_set] = ACTIONS(3412), - [anon_sym_declare] = ACTIONS(3412), - [anon_sym_public] = ACTIONS(3412), - [anon_sym_private] = ACTIONS(3412), - [anon_sym_protected] = ACTIONS(3412), - [anon_sym_module] = ACTIONS(3412), - [anon_sym_any] = ACTIONS(3412), - [anon_sym_number] = ACTIONS(3412), - [anon_sym_boolean] = ACTIONS(3412), - [anon_sym_string] = ACTIONS(3412), - [anon_sym_symbol] = ACTIONS(3412), - [anon_sym_abstract] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), }, [1162] = { - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3416), - [anon_sym_export] = ACTIONS(3416), - [anon_sym_default] = ACTIONS(3416), - [anon_sym_type] = ACTIONS(3416), - [anon_sym_namespace] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_RBRACE] = ACTIONS(3414), - [anon_sym_typeof] = ACTIONS(3416), - [anon_sym_import] = ACTIONS(3416), - [anon_sym_var] = ACTIONS(3416), - [anon_sym_let] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_else] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_switch] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_await] = ACTIONS(3416), - [anon_sym_while] = ACTIONS(3416), - [anon_sym_do] = ACTIONS(3416), - [anon_sym_try] = ACTIONS(3416), - [anon_sym_with] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_debugger] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_throw] = ACTIONS(3416), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_case] = ACTIONS(3416), - [anon_sym_yield] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_class] = ACTIONS(3416), - [anon_sym_async] = ACTIONS(3416), - [anon_sym_function] = ACTIONS(3416), - [anon_sym_new] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_void] = ACTIONS(3416), - [anon_sym_delete] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3414), - [sym_number] = ACTIONS(3414), - [sym_this] = ACTIONS(3416), - [sym_super] = ACTIONS(3416), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [sym_null] = ACTIONS(3416), - [sym_undefined] = ACTIONS(3416), - [anon_sym_AT] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_readonly] = ACTIONS(3416), - [anon_sym_get] = ACTIONS(3416), - [anon_sym_set] = ACTIONS(3416), - [anon_sym_declare] = ACTIONS(3416), - [anon_sym_public] = ACTIONS(3416), - [anon_sym_private] = ACTIONS(3416), - [anon_sym_protected] = ACTIONS(3416), - [anon_sym_module] = ACTIONS(3416), - [anon_sym_any] = ACTIONS(3416), - [anon_sym_number] = ACTIONS(3416), - [anon_sym_boolean] = ACTIONS(3416), - [anon_sym_string] = ACTIONS(3416), - [anon_sym_symbol] = ACTIONS(3416), - [anon_sym_abstract] = ACTIONS(3416), - [anon_sym_interface] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3430), + [anon_sym_export] = ACTIONS(3430), + [anon_sym_default] = ACTIONS(3430), + [anon_sym_type] = ACTIONS(3430), + [anon_sym_namespace] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_typeof] = ACTIONS(3430), + [anon_sym_import] = ACTIONS(3430), + [anon_sym_var] = ACTIONS(3430), + [anon_sym_let] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_else] = ACTIONS(3430), + [anon_sym_if] = ACTIONS(3430), + [anon_sym_switch] = ACTIONS(3430), + [anon_sym_for] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_await] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3430), + [anon_sym_do] = ACTIONS(3430), + [anon_sym_try] = ACTIONS(3430), + [anon_sym_with] = ACTIONS(3430), + [anon_sym_break] = ACTIONS(3430), + [anon_sym_continue] = ACTIONS(3430), + [anon_sym_debugger] = ACTIONS(3430), + [anon_sym_return] = ACTIONS(3430), + [anon_sym_throw] = ACTIONS(3430), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3430), + [anon_sym_yield] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_class] = ACTIONS(3430), + [anon_sym_async] = ACTIONS(3430), + [anon_sym_function] = ACTIONS(3430), + [anon_sym_new] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_void] = ACTIONS(3430), + [anon_sym_delete] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3428), + [sym_number] = ACTIONS(3428), + [sym_this] = ACTIONS(3430), + [sym_super] = ACTIONS(3430), + [sym_true] = ACTIONS(3430), + [sym_false] = ACTIONS(3430), + [sym_null] = ACTIONS(3430), + [sym_undefined] = ACTIONS(3430), + [anon_sym_AT] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3430), + [anon_sym_readonly] = ACTIONS(3430), + [anon_sym_get] = ACTIONS(3430), + [anon_sym_set] = ACTIONS(3430), + [anon_sym_declare] = ACTIONS(3430), + [anon_sym_public] = ACTIONS(3430), + [anon_sym_private] = ACTIONS(3430), + [anon_sym_protected] = ACTIONS(3430), + [anon_sym_module] = ACTIONS(3430), + [anon_sym_any] = ACTIONS(3430), + [anon_sym_number] = ACTIONS(3430), + [anon_sym_boolean] = ACTIONS(3430), + [anon_sym_string] = ACTIONS(3430), + [anon_sym_symbol] = ACTIONS(3430), + [anon_sym_abstract] = ACTIONS(3430), + [anon_sym_interface] = ACTIONS(3430), + [anon_sym_enum] = ACTIONS(3430), }, [1163] = { - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3420), - [anon_sym_export] = ACTIONS(3420), - [anon_sym_default] = ACTIONS(3420), - [anon_sym_type] = ACTIONS(3420), - [anon_sym_namespace] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(3418), - [anon_sym_typeof] = ACTIONS(3420), - [anon_sym_import] = ACTIONS(3420), - [anon_sym_var] = ACTIONS(3420), - [anon_sym_let] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_switch] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_LPAREN] = ACTIONS(3418), - [anon_sym_await] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_do] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_with] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_debugger] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym_case] = ACTIONS(3420), - [anon_sym_yield] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3418), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_class] = ACTIONS(3420), - [anon_sym_async] = ACTIONS(3420), - [anon_sym_function] = ACTIONS(3420), - [anon_sym_new] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_void] = ACTIONS(3420), - [anon_sym_delete] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3418), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3418), - [sym_number] = ACTIONS(3418), - [sym_this] = ACTIONS(3420), - [sym_super] = ACTIONS(3420), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [sym_null] = ACTIONS(3420), - [sym_undefined] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_readonly] = ACTIONS(3420), - [anon_sym_get] = ACTIONS(3420), - [anon_sym_set] = ACTIONS(3420), - [anon_sym_declare] = ACTIONS(3420), - [anon_sym_public] = ACTIONS(3420), - [anon_sym_private] = ACTIONS(3420), - [anon_sym_protected] = ACTIONS(3420), - [anon_sym_module] = ACTIONS(3420), - [anon_sym_any] = ACTIONS(3420), - [anon_sym_number] = ACTIONS(3420), - [anon_sym_boolean] = ACTIONS(3420), - [anon_sym_string] = ACTIONS(3420), - [anon_sym_symbol] = ACTIONS(3420), - [anon_sym_abstract] = ACTIONS(3420), - [anon_sym_interface] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), + [ts_builtin_sym_end] = ACTIONS(2291), + [sym_identifier] = ACTIONS(2293), + [anon_sym_export] = ACTIONS(2293), + [anon_sym_default] = ACTIONS(2293), + [anon_sym_type] = ACTIONS(2293), + [anon_sym_namespace] = ACTIONS(2293), + [anon_sym_LBRACE] = ACTIONS(2291), + [anon_sym_RBRACE] = ACTIONS(2291), + [anon_sym_typeof] = ACTIONS(2293), + [anon_sym_import] = ACTIONS(2293), + [anon_sym_var] = ACTIONS(2293), + [anon_sym_let] = ACTIONS(2293), + [anon_sym_const] = ACTIONS(2293), + [anon_sym_BANG] = ACTIONS(2291), + [anon_sym_else] = ACTIONS(2293), + [anon_sym_if] = ACTIONS(2293), + [anon_sym_switch] = ACTIONS(2293), + [anon_sym_for] = ACTIONS(2293), + [anon_sym_LPAREN] = ACTIONS(2291), + [anon_sym_await] = ACTIONS(2293), + [anon_sym_while] = ACTIONS(2293), + [anon_sym_do] = ACTIONS(2293), + [anon_sym_try] = ACTIONS(2293), + [anon_sym_with] = ACTIONS(2293), + [anon_sym_break] = ACTIONS(2293), + [anon_sym_continue] = ACTIONS(2293), + [anon_sym_debugger] = ACTIONS(2293), + [anon_sym_return] = ACTIONS(2293), + [anon_sym_throw] = ACTIONS(2293), + [anon_sym_SEMI] = ACTIONS(2291), + [anon_sym_case] = ACTIONS(2293), + [anon_sym_yield] = ACTIONS(2293), + [anon_sym_LBRACK] = ACTIONS(2291), + [anon_sym_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_readonly] = ACTIONS(2293), + [anon_sym_get] = ACTIONS(2293), + [anon_sym_set] = ACTIONS(2293), + [anon_sym_declare] = ACTIONS(2293), + [anon_sym_public] = ACTIONS(2293), + [anon_sym_private] = ACTIONS(2293), + [anon_sym_protected] = ACTIONS(2293), + [anon_sym_module] = ACTIONS(2293), + [anon_sym_any] = ACTIONS(2293), + [anon_sym_number] = ACTIONS(2293), + [anon_sym_boolean] = ACTIONS(2293), + [anon_sym_string] = ACTIONS(2293), + [anon_sym_symbol] = ACTIONS(2293), + [anon_sym_abstract] = ACTIONS(2293), + [anon_sym_interface] = ACTIONS(2293), + [anon_sym_enum] = ACTIONS(2293), }, [1164] = { - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3424), - [anon_sym_export] = ACTIONS(3424), - [anon_sym_default] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_namespace] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_typeof] = ACTIONS(3424), - [anon_sym_import] = ACTIONS(3424), - [anon_sym_var] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_switch] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_await] = ACTIONS(3424), - [anon_sym_while] = ACTIONS(3424), - [anon_sym_do] = ACTIONS(3424), - [anon_sym_try] = ACTIONS(3424), - [anon_sym_with] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_debugger] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_throw] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3424), - [anon_sym_yield] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_class] = ACTIONS(3424), - [anon_sym_async] = ACTIONS(3424), - [anon_sym_function] = ACTIONS(3424), - [anon_sym_new] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3422), - [anon_sym_void] = ACTIONS(3424), - [anon_sym_delete] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3422), - [sym_number] = ACTIONS(3422), - [sym_this] = ACTIONS(3424), - [sym_super] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_null] = ACTIONS(3424), - [sym_undefined] = ACTIONS(3424), - [anon_sym_AT] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3424), - [anon_sym_readonly] = ACTIONS(3424), - [anon_sym_get] = ACTIONS(3424), - [anon_sym_set] = ACTIONS(3424), - [anon_sym_declare] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3424), - [anon_sym_private] = ACTIONS(3424), - [anon_sym_protected] = ACTIONS(3424), - [anon_sym_module] = ACTIONS(3424), - [anon_sym_any] = ACTIONS(3424), - [anon_sym_number] = ACTIONS(3424), - [anon_sym_boolean] = ACTIONS(3424), - [anon_sym_string] = ACTIONS(3424), - [anon_sym_symbol] = ACTIONS(3424), - [anon_sym_abstract] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), }, [1165] = { - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3428), - [anon_sym_export] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_RBRACE] = ACTIONS(3426), - [anon_sym_typeof] = ACTIONS(3428), - [anon_sym_import] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3426), - [anon_sym_else] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3426), - [anon_sym_await] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_debugger] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3426), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3426), - [anon_sym_LT] = ACTIONS(3426), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3426), - [anon_sym_void] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_DQUOTE] = ACTIONS(3426), - [anon_sym_SQUOTE] = ACTIONS(3426), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3426), - [sym_number] = ACTIONS(3426), - [sym_this] = ACTIONS(3428), - [sym_super] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_null] = ACTIONS(3428), - [sym_undefined] = ACTIONS(3428), - [anon_sym_AT] = ACTIONS(3426), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3428), - [anon_sym_set] = ACTIONS(3428), - [anon_sym_declare] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_module] = ACTIONS(3428), - [anon_sym_any] = ACTIONS(3428), - [anon_sym_number] = ACTIONS(3428), - [anon_sym_boolean] = ACTIONS(3428), - [anon_sym_string] = ACTIONS(3428), - [anon_sym_symbol] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), }, [1166] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [anon_sym_export] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_typeof] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_var] = ACTIONS(3434), + [anon_sym_let] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3432), + [anon_sym_else] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_await] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_with] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_debugger] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_LT] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_function] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3432), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3432), + [anon_sym_DASH_DASH] = ACTIONS(3432), + [anon_sym_DQUOTE] = ACTIONS(3432), + [anon_sym_SQUOTE] = ACTIONS(3432), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3432), + [sym_number] = ACTIONS(3432), + [sym_this] = ACTIONS(3434), + [sym_super] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_null] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [anon_sym_AT] = ACTIONS(3432), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_readonly] = ACTIONS(3434), + [anon_sym_get] = ACTIONS(3434), + [anon_sym_set] = ACTIONS(3434), + [anon_sym_declare] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_module] = ACTIONS(3434), + [anon_sym_any] = ACTIONS(3434), + [anon_sym_number] = ACTIONS(3434), + [anon_sym_boolean] = ACTIONS(3434), + [anon_sym_string] = ACTIONS(3434), + [anon_sym_symbol] = ACTIONS(3434), + [anon_sym_abstract] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), }, [1167] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3438), + [anon_sym_export] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_typeof] = ACTIONS(3438), + [anon_sym_import] = ACTIONS(3438), + [anon_sym_var] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_await] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_debugger] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(3438), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_void] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3436), + [sym_number] = ACTIONS(3436), + [sym_this] = ACTIONS(3438), + [sym_super] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_null] = ACTIONS(3438), + [sym_undefined] = ACTIONS(3438), + [anon_sym_AT] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_readonly] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(3438), + [anon_sym_set] = ACTIONS(3438), + [anon_sym_declare] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_any] = ACTIONS(3438), + [anon_sym_number] = ACTIONS(3438), + [anon_sym_boolean] = ACTIONS(3438), + [anon_sym_string] = ACTIONS(3438), + [anon_sym_symbol] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), }, [1168] = { - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3432), - [anon_sym_export] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_type] = ACTIONS(3432), - [anon_sym_namespace] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_RBRACE] = ACTIONS(3430), - [anon_sym_typeof] = ACTIONS(3432), - [anon_sym_import] = ACTIONS(3432), - [anon_sym_var] = ACTIONS(3432), - [anon_sym_let] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_else] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_await] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_with] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_debugger] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym_case] = ACTIONS(3432), - [anon_sym_yield] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3430), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_class] = ACTIONS(3432), - [anon_sym_async] = ACTIONS(3432), - [anon_sym_function] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_void] = ACTIONS(3432), - [anon_sym_delete] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3430), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3430), - [sym_number] = ACTIONS(3430), - [sym_this] = ACTIONS(3432), - [sym_super] = ACTIONS(3432), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [sym_null] = ACTIONS(3432), - [sym_undefined] = ACTIONS(3432), - [anon_sym_AT] = ACTIONS(3430), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_readonly] = ACTIONS(3432), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3432), - [anon_sym_declare] = ACTIONS(3432), - [anon_sym_public] = ACTIONS(3432), - [anon_sym_private] = ACTIONS(3432), - [anon_sym_protected] = ACTIONS(3432), - [anon_sym_module] = ACTIONS(3432), - [anon_sym_any] = ACTIONS(3432), - [anon_sym_number] = ACTIONS(3432), - [anon_sym_boolean] = ACTIONS(3432), - [anon_sym_string] = ACTIONS(3432), - [anon_sym_symbol] = ACTIONS(3432), - [anon_sym_abstract] = ACTIONS(3432), - [anon_sym_interface] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3442), + [anon_sym_export] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_typeof] = ACTIONS(3442), + [anon_sym_import] = ACTIONS(3442), + [anon_sym_var] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_else] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_await] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_debugger] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_async] = ACTIONS(3442), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_void] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3440), + [sym_number] = ACTIONS(3440), + [sym_this] = ACTIONS(3442), + [sym_super] = ACTIONS(3442), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [sym_null] = ACTIONS(3442), + [sym_undefined] = ACTIONS(3442), + [anon_sym_AT] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_readonly] = ACTIONS(3442), + [anon_sym_get] = ACTIONS(3442), + [anon_sym_set] = ACTIONS(3442), + [anon_sym_declare] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_any] = ACTIONS(3442), + [anon_sym_number] = ACTIONS(3442), + [anon_sym_boolean] = ACTIONS(3442), + [anon_sym_string] = ACTIONS(3442), + [anon_sym_symbol] = ACTIONS(3442), + [anon_sym_abstract] = ACTIONS(3442), + [anon_sym_interface] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), }, [1169] = { - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3436), - [anon_sym_export] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_type] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_typeof] = ACTIONS(3436), - [anon_sym_import] = ACTIONS(3436), - [anon_sym_var] = ACTIONS(3436), - [anon_sym_let] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3434), - [anon_sym_await] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_with] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_debugger] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_yield] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_async] = ACTIONS(3436), - [anon_sym_function] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_void] = ACTIONS(3436), - [anon_sym_delete] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3434), - [sym_number] = ACTIONS(3434), - [sym_this] = ACTIONS(3436), - [sym_super] = ACTIONS(3436), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [sym_null] = ACTIONS(3436), - [sym_undefined] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3434), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_readonly] = ACTIONS(3436), - [anon_sym_get] = ACTIONS(3436), - [anon_sym_set] = ACTIONS(3436), - [anon_sym_declare] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_module] = ACTIONS(3436), - [anon_sym_any] = ACTIONS(3436), - [anon_sym_number] = ACTIONS(3436), - [anon_sym_boolean] = ACTIONS(3436), - [anon_sym_string] = ACTIONS(3436), - [anon_sym_symbol] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), + [ts_builtin_sym_end] = ACTIONS(3444), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_default] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_case] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3444), + [sym_number] = ACTIONS(3444), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), }, [1170] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3450), + [anon_sym_export] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_with] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_debugger] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_function] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3448), + [sym_number] = ACTIONS(3448), + [sym_this] = ACTIONS(3450), + [sym_super] = ACTIONS(3450), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3450), + [anon_sym_declare] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_module] = ACTIONS(3450), + [anon_sym_any] = ACTIONS(3450), + [anon_sym_number] = ACTIONS(3450), + [anon_sym_boolean] = ACTIONS(3450), + [anon_sym_string] = ACTIONS(3450), + [anon_sym_symbol] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), }, [1171] = { - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3440), - [anon_sym_export] = ACTIONS(3440), - [anon_sym_default] = ACTIONS(3440), - [anon_sym_type] = ACTIONS(3440), - [anon_sym_namespace] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_typeof] = ACTIONS(3440), - [anon_sym_import] = ACTIONS(3440), - [anon_sym_var] = ACTIONS(3440), - [anon_sym_let] = ACTIONS(3440), - [anon_sym_const] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3440), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_switch] = ACTIONS(3440), - [anon_sym_for] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_await] = ACTIONS(3440), - [anon_sym_while] = ACTIONS(3440), - [anon_sym_do] = ACTIONS(3440), - [anon_sym_try] = ACTIONS(3440), - [anon_sym_with] = ACTIONS(3440), - [anon_sym_break] = ACTIONS(3440), - [anon_sym_continue] = ACTIONS(3440), - [anon_sym_debugger] = ACTIONS(3440), - [anon_sym_return] = ACTIONS(3440), - [anon_sym_throw] = ACTIONS(3440), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_case] = ACTIONS(3440), - [anon_sym_yield] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3438), - [anon_sym_SLASH] = ACTIONS(3440), - [anon_sym_class] = ACTIONS(3440), - [anon_sym_async] = ACTIONS(3440), - [anon_sym_function] = ACTIONS(3440), - [anon_sym_new] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_void] = ACTIONS(3440), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3438), - [sym_number] = ACTIONS(3438), - [sym_this] = ACTIONS(3440), - [sym_super] = ACTIONS(3440), - [sym_true] = ACTIONS(3440), - [sym_false] = ACTIONS(3440), - [sym_null] = ACTIONS(3440), - [sym_undefined] = ACTIONS(3440), - [anon_sym_AT] = ACTIONS(3438), - [anon_sym_static] = ACTIONS(3440), - [anon_sym_readonly] = ACTIONS(3440), - [anon_sym_get] = ACTIONS(3440), - [anon_sym_set] = ACTIONS(3440), - [anon_sym_declare] = ACTIONS(3440), - [anon_sym_public] = ACTIONS(3440), - [anon_sym_private] = ACTIONS(3440), - [anon_sym_protected] = ACTIONS(3440), - [anon_sym_module] = ACTIONS(3440), - [anon_sym_any] = ACTIONS(3440), - [anon_sym_number] = ACTIONS(3440), - [anon_sym_boolean] = ACTIONS(3440), - [anon_sym_string] = ACTIONS(3440), - [anon_sym_symbol] = ACTIONS(3440), - [anon_sym_abstract] = ACTIONS(3440), - [anon_sym_interface] = ACTIONS(3440), - [anon_sym_enum] = ACTIONS(3440), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3450), + [anon_sym_export] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_with] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_debugger] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_function] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3448), + [sym_number] = ACTIONS(3448), + [sym_this] = ACTIONS(3450), + [sym_super] = ACTIONS(3450), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3450), + [anon_sym_declare] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_module] = ACTIONS(3450), + [anon_sym_any] = ACTIONS(3450), + [anon_sym_number] = ACTIONS(3450), + [anon_sym_boolean] = ACTIONS(3450), + [anon_sym_string] = ACTIONS(3450), + [anon_sym_symbol] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), }, [1172] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_default] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3452), + [sym_number] = ACTIONS(3452), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), }, [1173] = { - [ts_builtin_sym_end] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_default] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3456), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3456), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3456), + [anon_sym_SQUOTE] = ACTIONS(3456), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3456), + [sym_number] = ACTIONS(3456), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), }, [1174] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3460), + [anon_sym_RBRACE] = ACTIONS(3460), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3460), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3460), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LT] = ACTIONS(3460), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3460), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3460), + [anon_sym_DASH_DASH] = ACTIONS(3460), + [anon_sym_DQUOTE] = ACTIONS(3460), + [anon_sym_SQUOTE] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3460), + [sym_number] = ACTIONS(3460), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), }, [1175] = { - [ts_builtin_sym_end] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3464), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_default] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), }, [1176] = { - [ts_builtin_sym_end] = ACTIONS(2052), - [sym_identifier] = ACTIONS(2054), - [anon_sym_export] = ACTIONS(2054), - [anon_sym_default] = ACTIONS(2054), - [anon_sym_type] = ACTIONS(2054), - [anon_sym_namespace] = ACTIONS(2054), - [anon_sym_LBRACE] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2052), - [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(2052), - [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_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_readonly] = 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_abstract] = ACTIONS(2054), - [anon_sym_interface] = ACTIONS(2054), - [anon_sym_enum] = ACTIONS(2054), + [ts_builtin_sym_end] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_default] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), }, [1177] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_type] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3472), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_typeof] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_var] = ACTIONS(3474), + [anon_sym_let] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_await] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_with] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_debugger] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_yield] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_SLASH] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_async] = ACTIONS(3474), + [anon_sym_function] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(3472), + [anon_sym_void] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3472), + [anon_sym_DASH_DASH] = ACTIONS(3472), + [anon_sym_DQUOTE] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(3472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3472), + [sym_number] = ACTIONS(3472), + [sym_this] = ACTIONS(3474), + [sym_super] = ACTIONS(3474), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [sym_null] = ACTIONS(3474), + [sym_undefined] = ACTIONS(3474), + [anon_sym_AT] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_readonly] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_declare] = ACTIONS(3474), + [anon_sym_public] = ACTIONS(3474), + [anon_sym_private] = ACTIONS(3474), + [anon_sym_protected] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_any] = ACTIONS(3474), + [anon_sym_number] = ACTIONS(3474), + [anon_sym_boolean] = ACTIONS(3474), + [anon_sym_string] = ACTIONS(3474), + [anon_sym_symbol] = ACTIONS(3474), + [anon_sym_abstract] = ACTIONS(3474), + [anon_sym_interface] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), }, [1178] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3476), + [sym_identifier] = ACTIONS(3478), + [anon_sym_export] = ACTIONS(3478), + [anon_sym_default] = ACTIONS(3478), + [anon_sym_type] = ACTIONS(3478), + [anon_sym_namespace] = ACTIONS(3478), + [anon_sym_LBRACE] = ACTIONS(3476), + [anon_sym_RBRACE] = ACTIONS(3476), + [anon_sym_typeof] = ACTIONS(3478), + [anon_sym_import] = ACTIONS(3478), + [anon_sym_var] = ACTIONS(3478), + [anon_sym_let] = ACTIONS(3478), + [anon_sym_const] = ACTIONS(3478), + [anon_sym_BANG] = ACTIONS(3476), + [anon_sym_else] = ACTIONS(3478), + [anon_sym_if] = ACTIONS(3478), + [anon_sym_switch] = ACTIONS(3478), + [anon_sym_for] = ACTIONS(3478), + [anon_sym_LPAREN] = ACTIONS(3476), + [anon_sym_await] = ACTIONS(3478), + [anon_sym_while] = ACTIONS(3478), + [anon_sym_do] = ACTIONS(3478), + [anon_sym_try] = ACTIONS(3478), + [anon_sym_with] = ACTIONS(3478), + [anon_sym_break] = ACTIONS(3478), + [anon_sym_continue] = ACTIONS(3478), + [anon_sym_debugger] = ACTIONS(3478), + [anon_sym_return] = ACTIONS(3478), + [anon_sym_throw] = ACTIONS(3478), + [anon_sym_SEMI] = ACTIONS(3476), + [anon_sym_case] = ACTIONS(3478), + [anon_sym_yield] = ACTIONS(3478), + [anon_sym_LBRACK] = ACTIONS(3476), + [anon_sym_LT] = ACTIONS(3476), + [anon_sym_SLASH] = ACTIONS(3478), + [anon_sym_class] = ACTIONS(3478), + [anon_sym_async] = ACTIONS(3478), + [anon_sym_function] = ACTIONS(3478), + [anon_sym_new] = ACTIONS(3478), + [anon_sym_PLUS] = ACTIONS(3478), + [anon_sym_DASH] = ACTIONS(3478), + [anon_sym_TILDE] = ACTIONS(3476), + [anon_sym_void] = ACTIONS(3478), + [anon_sym_delete] = ACTIONS(3478), + [anon_sym_PLUS_PLUS] = ACTIONS(3476), + [anon_sym_DASH_DASH] = ACTIONS(3476), + [anon_sym_DQUOTE] = ACTIONS(3476), + [anon_sym_SQUOTE] = ACTIONS(3476), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3476), + [sym_number] = ACTIONS(3476), + [sym_this] = ACTIONS(3478), + [sym_super] = ACTIONS(3478), + [sym_true] = ACTIONS(3478), + [sym_false] = ACTIONS(3478), + [sym_null] = ACTIONS(3478), + [sym_undefined] = ACTIONS(3478), + [anon_sym_AT] = ACTIONS(3476), + [anon_sym_static] = ACTIONS(3478), + [anon_sym_readonly] = ACTIONS(3478), + [anon_sym_get] = ACTIONS(3478), + [anon_sym_set] = ACTIONS(3478), + [anon_sym_declare] = ACTIONS(3478), + [anon_sym_public] = ACTIONS(3478), + [anon_sym_private] = ACTIONS(3478), + [anon_sym_protected] = ACTIONS(3478), + [anon_sym_module] = ACTIONS(3478), + [anon_sym_any] = ACTIONS(3478), + [anon_sym_number] = ACTIONS(3478), + [anon_sym_boolean] = ACTIONS(3478), + [anon_sym_string] = ACTIONS(3478), + [anon_sym_symbol] = ACTIONS(3478), + [anon_sym_abstract] = ACTIONS(3478), + [anon_sym_interface] = ACTIONS(3478), + [anon_sym_enum] = ACTIONS(3478), }, [1179] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1180] = { - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3444), - [anon_sym_export] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3442), - [anon_sym_RBRACE] = ACTIONS(3442), - [anon_sym_typeof] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3442), - [anon_sym_else] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3442), - [anon_sym_await] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_with] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_debugger] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3442), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_yield] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_LT] = ACTIONS(3442), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_void] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_DQUOTE] = ACTIONS(3442), - [anon_sym_SQUOTE] = ACTIONS(3442), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3442), - [sym_number] = ACTIONS(3442), - [sym_this] = ACTIONS(3444), - [sym_super] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_null] = ACTIONS(3444), - [sym_undefined] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3442), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_readonly] = ACTIONS(3444), - [anon_sym_get] = ACTIONS(3444), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_declare] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_module] = ACTIONS(3444), - [anon_sym_any] = ACTIONS(3444), - [anon_sym_number] = ACTIONS(3444), - [anon_sym_boolean] = ACTIONS(3444), - [anon_sym_string] = ACTIONS(3444), - [anon_sym_symbol] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), + [ts_builtin_sym_end] = ACTIONS(3480), + [sym_identifier] = ACTIONS(3482), + [anon_sym_export] = ACTIONS(3482), + [anon_sym_default] = ACTIONS(3482), + [anon_sym_type] = ACTIONS(3482), + [anon_sym_namespace] = ACTIONS(3482), + [anon_sym_LBRACE] = ACTIONS(3480), + [anon_sym_RBRACE] = ACTIONS(3480), + [anon_sym_typeof] = ACTIONS(3482), + [anon_sym_import] = ACTIONS(3482), + [anon_sym_var] = ACTIONS(3482), + [anon_sym_let] = ACTIONS(3482), + [anon_sym_const] = ACTIONS(3482), + [anon_sym_BANG] = ACTIONS(3480), + [anon_sym_else] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3482), + [anon_sym_switch] = ACTIONS(3482), + [anon_sym_for] = ACTIONS(3482), + [anon_sym_LPAREN] = ACTIONS(3480), + [anon_sym_await] = ACTIONS(3482), + [anon_sym_while] = ACTIONS(3482), + [anon_sym_do] = ACTIONS(3482), + [anon_sym_try] = ACTIONS(3482), + [anon_sym_with] = ACTIONS(3482), + [anon_sym_break] = ACTIONS(3482), + [anon_sym_continue] = ACTIONS(3482), + [anon_sym_debugger] = ACTIONS(3482), + [anon_sym_return] = ACTIONS(3482), + [anon_sym_throw] = ACTIONS(3482), + [anon_sym_SEMI] = ACTIONS(3480), + [anon_sym_case] = ACTIONS(3482), + [anon_sym_yield] = ACTIONS(3482), + [anon_sym_LBRACK] = ACTIONS(3480), + [anon_sym_LT] = ACTIONS(3480), + [anon_sym_SLASH] = ACTIONS(3482), + [anon_sym_class] = ACTIONS(3482), + [anon_sym_async] = ACTIONS(3482), + [anon_sym_function] = ACTIONS(3482), + [anon_sym_new] = ACTIONS(3482), + [anon_sym_PLUS] = ACTIONS(3482), + [anon_sym_DASH] = ACTIONS(3482), + [anon_sym_TILDE] = ACTIONS(3480), + [anon_sym_void] = ACTIONS(3482), + [anon_sym_delete] = ACTIONS(3482), + [anon_sym_PLUS_PLUS] = ACTIONS(3480), + [anon_sym_DASH_DASH] = ACTIONS(3480), + [anon_sym_DQUOTE] = ACTIONS(3480), + [anon_sym_SQUOTE] = ACTIONS(3480), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3480), + [sym_number] = ACTIONS(3480), + [sym_this] = ACTIONS(3482), + [sym_super] = ACTIONS(3482), + [sym_true] = ACTIONS(3482), + [sym_false] = ACTIONS(3482), + [sym_null] = ACTIONS(3482), + [sym_undefined] = ACTIONS(3482), + [anon_sym_AT] = ACTIONS(3480), + [anon_sym_static] = ACTIONS(3482), + [anon_sym_readonly] = ACTIONS(3482), + [anon_sym_get] = ACTIONS(3482), + [anon_sym_set] = ACTIONS(3482), + [anon_sym_declare] = ACTIONS(3482), + [anon_sym_public] = ACTIONS(3482), + [anon_sym_private] = ACTIONS(3482), + [anon_sym_protected] = ACTIONS(3482), + [anon_sym_module] = ACTIONS(3482), + [anon_sym_any] = ACTIONS(3482), + [anon_sym_number] = ACTIONS(3482), + [anon_sym_boolean] = ACTIONS(3482), + [anon_sym_string] = ACTIONS(3482), + [anon_sym_symbol] = ACTIONS(3482), + [anon_sym_abstract] = ACTIONS(3482), + [anon_sym_interface] = ACTIONS(3482), + [anon_sym_enum] = ACTIONS(3482), }, [1181] = { - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3444), - [anon_sym_export] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3442), - [anon_sym_RBRACE] = ACTIONS(3442), - [anon_sym_typeof] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3442), - [anon_sym_else] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3442), - [anon_sym_await] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_with] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_debugger] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3442), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_yield] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_LT] = ACTIONS(3442), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_void] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_DQUOTE] = ACTIONS(3442), - [anon_sym_SQUOTE] = ACTIONS(3442), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3442), - [sym_number] = ACTIONS(3442), - [sym_this] = ACTIONS(3444), - [sym_super] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_null] = ACTIONS(3444), - [sym_undefined] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3442), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_readonly] = ACTIONS(3444), - [anon_sym_get] = ACTIONS(3444), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_declare] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_module] = ACTIONS(3444), - [anon_sym_any] = ACTIONS(3444), - [anon_sym_number] = ACTIONS(3444), - [anon_sym_boolean] = ACTIONS(3444), - [anon_sym_string] = ACTIONS(3444), - [anon_sym_symbol] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1182] = { - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3448), - [anon_sym_export] = ACTIONS(3448), - [anon_sym_default] = ACTIONS(3448), - [anon_sym_type] = ACTIONS(3448), - [anon_sym_namespace] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_RBRACE] = ACTIONS(3446), - [anon_sym_typeof] = ACTIONS(3448), - [anon_sym_import] = ACTIONS(3448), - [anon_sym_var] = ACTIONS(3448), - [anon_sym_let] = ACTIONS(3448), - [anon_sym_const] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_else] = ACTIONS(3448), - [anon_sym_if] = ACTIONS(3448), - [anon_sym_switch] = ACTIONS(3448), - [anon_sym_for] = ACTIONS(3448), - [anon_sym_LPAREN] = ACTIONS(3446), - [anon_sym_await] = ACTIONS(3448), - [anon_sym_while] = ACTIONS(3448), - [anon_sym_do] = ACTIONS(3448), - [anon_sym_try] = ACTIONS(3448), - [anon_sym_with] = ACTIONS(3448), - [anon_sym_break] = ACTIONS(3448), - [anon_sym_continue] = ACTIONS(3448), - [anon_sym_debugger] = ACTIONS(3448), - [anon_sym_return] = ACTIONS(3448), - [anon_sym_throw] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym_case] = ACTIONS(3448), - [anon_sym_yield] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_LT] = ACTIONS(3446), - [anon_sym_SLASH] = ACTIONS(3448), - [anon_sym_class] = ACTIONS(3448), - [anon_sym_async] = ACTIONS(3448), - [anon_sym_function] = ACTIONS(3448), - [anon_sym_new] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_void] = ACTIONS(3448), - [anon_sym_delete] = ACTIONS(3448), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3446), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3446), - [sym_number] = ACTIONS(3446), - [sym_this] = ACTIONS(3448), - [sym_super] = ACTIONS(3448), - [sym_true] = ACTIONS(3448), - [sym_false] = ACTIONS(3448), - [sym_null] = ACTIONS(3448), - [sym_undefined] = ACTIONS(3448), - [anon_sym_AT] = ACTIONS(3446), - [anon_sym_static] = ACTIONS(3448), - [anon_sym_readonly] = ACTIONS(3448), - [anon_sym_get] = ACTIONS(3448), - [anon_sym_set] = ACTIONS(3448), - [anon_sym_declare] = ACTIONS(3448), - [anon_sym_public] = ACTIONS(3448), - [anon_sym_private] = ACTIONS(3448), - [anon_sym_protected] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3448), - [anon_sym_any] = ACTIONS(3448), - [anon_sym_number] = ACTIONS(3448), - [anon_sym_boolean] = ACTIONS(3448), - [anon_sym_string] = ACTIONS(3448), - [anon_sym_symbol] = ACTIONS(3448), - [anon_sym_abstract] = ACTIONS(3448), - [anon_sym_interface] = ACTIONS(3448), - [anon_sym_enum] = ACTIONS(3448), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1183] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1184] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1185] = { - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3452), - [anon_sym_export] = ACTIONS(3452), - [anon_sym_default] = ACTIONS(3452), - [anon_sym_type] = ACTIONS(3452), - [anon_sym_namespace] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_RBRACE] = ACTIONS(3450), - [anon_sym_typeof] = ACTIONS(3452), - [anon_sym_import] = ACTIONS(3452), - [anon_sym_var] = ACTIONS(3452), - [anon_sym_let] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3450), - [anon_sym_else] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_switch] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_await] = ACTIONS(3452), - [anon_sym_while] = ACTIONS(3452), - [anon_sym_do] = ACTIONS(3452), - [anon_sym_try] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(3452), - [anon_sym_break] = ACTIONS(3452), - [anon_sym_continue] = ACTIONS(3452), - [anon_sym_debugger] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_LT] = ACTIONS(3450), - [anon_sym_SLASH] = ACTIONS(3452), - [anon_sym_class] = ACTIONS(3452), - [anon_sym_async] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3450), - [anon_sym_void] = ACTIONS(3452), - [anon_sym_delete] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3450), - [anon_sym_DQUOTE] = ACTIONS(3450), - [anon_sym_SQUOTE] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3450), - [sym_number] = ACTIONS(3450), - [sym_this] = ACTIONS(3452), - [sym_super] = ACTIONS(3452), - [sym_true] = ACTIONS(3452), - [sym_false] = ACTIONS(3452), - [sym_null] = ACTIONS(3452), - [sym_undefined] = ACTIONS(3452), - [anon_sym_AT] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_readonly] = ACTIONS(3452), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3452), - [anon_sym_declare] = ACTIONS(3452), - [anon_sym_public] = ACTIONS(3452), - [anon_sym_private] = ACTIONS(3452), - [anon_sym_protected] = ACTIONS(3452), - [anon_sym_module] = ACTIONS(3452), - [anon_sym_any] = ACTIONS(3452), - [anon_sym_number] = ACTIONS(3452), - [anon_sym_boolean] = ACTIONS(3452), - [anon_sym_string] = ACTIONS(3452), - [anon_sym_symbol] = ACTIONS(3452), - [anon_sym_abstract] = ACTIONS(3452), - [anon_sym_interface] = ACTIONS(3452), - [anon_sym_enum] = ACTIONS(3452), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1186] = { - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3452), - [anon_sym_export] = ACTIONS(3452), - [anon_sym_default] = ACTIONS(3452), - [anon_sym_type] = ACTIONS(3452), - [anon_sym_namespace] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_RBRACE] = ACTIONS(3450), - [anon_sym_typeof] = ACTIONS(3452), - [anon_sym_import] = ACTIONS(3452), - [anon_sym_var] = ACTIONS(3452), - [anon_sym_let] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3450), - [anon_sym_else] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_switch] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_await] = ACTIONS(3452), - [anon_sym_while] = ACTIONS(3452), - [anon_sym_do] = ACTIONS(3452), - [anon_sym_try] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(3452), - [anon_sym_break] = ACTIONS(3452), - [anon_sym_continue] = ACTIONS(3452), - [anon_sym_debugger] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_LT] = ACTIONS(3450), - [anon_sym_SLASH] = ACTIONS(3452), - [anon_sym_class] = ACTIONS(3452), - [anon_sym_async] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3450), - [anon_sym_void] = ACTIONS(3452), - [anon_sym_delete] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3450), - [anon_sym_DQUOTE] = ACTIONS(3450), - [anon_sym_SQUOTE] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3450), - [sym_number] = ACTIONS(3450), - [sym_this] = ACTIONS(3452), - [sym_super] = ACTIONS(3452), - [sym_true] = ACTIONS(3452), - [sym_false] = ACTIONS(3452), - [sym_null] = ACTIONS(3452), - [sym_undefined] = ACTIONS(3452), - [anon_sym_AT] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_readonly] = ACTIONS(3452), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3452), - [anon_sym_declare] = ACTIONS(3452), - [anon_sym_public] = ACTIONS(3452), - [anon_sym_private] = ACTIONS(3452), - [anon_sym_protected] = ACTIONS(3452), - [anon_sym_module] = ACTIONS(3452), - [anon_sym_any] = ACTIONS(3452), - [anon_sym_number] = ACTIONS(3452), - [anon_sym_boolean] = ACTIONS(3452), - [anon_sym_string] = ACTIONS(3452), - [anon_sym_symbol] = ACTIONS(3452), - [anon_sym_abstract] = ACTIONS(3452), - [anon_sym_interface] = ACTIONS(3452), - [anon_sym_enum] = ACTIONS(3452), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3484), + [sym_number] = ACTIONS(3484), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), }, [1187] = { - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3452), - [anon_sym_export] = ACTIONS(3452), - [anon_sym_default] = ACTIONS(3452), - [anon_sym_type] = ACTIONS(3452), - [anon_sym_namespace] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_RBRACE] = ACTIONS(3450), - [anon_sym_typeof] = ACTIONS(3452), - [anon_sym_import] = ACTIONS(3452), - [anon_sym_var] = ACTIONS(3452), - [anon_sym_let] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3450), - [anon_sym_else] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_switch] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_await] = ACTIONS(3452), - [anon_sym_while] = ACTIONS(3452), - [anon_sym_do] = ACTIONS(3452), - [anon_sym_try] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(3452), - [anon_sym_break] = ACTIONS(3452), - [anon_sym_continue] = ACTIONS(3452), - [anon_sym_debugger] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_LT] = ACTIONS(3450), - [anon_sym_SLASH] = ACTIONS(3452), - [anon_sym_class] = ACTIONS(3452), - [anon_sym_async] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3450), - [anon_sym_void] = ACTIONS(3452), - [anon_sym_delete] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3450), - [anon_sym_DQUOTE] = ACTIONS(3450), - [anon_sym_SQUOTE] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3450), - [sym_number] = ACTIONS(3450), - [sym_this] = ACTIONS(3452), - [sym_super] = ACTIONS(3452), - [sym_true] = ACTIONS(3452), - [sym_false] = ACTIONS(3452), - [sym_null] = ACTIONS(3452), - [sym_undefined] = ACTIONS(3452), - [anon_sym_AT] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_readonly] = ACTIONS(3452), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3452), - [anon_sym_declare] = ACTIONS(3452), - [anon_sym_public] = ACTIONS(3452), - [anon_sym_private] = ACTIONS(3452), - [anon_sym_protected] = ACTIONS(3452), - [anon_sym_module] = ACTIONS(3452), - [anon_sym_any] = ACTIONS(3452), - [anon_sym_number] = ACTIONS(3452), - [anon_sym_boolean] = ACTIONS(3452), - [anon_sym_string] = ACTIONS(3452), - [anon_sym_symbol] = ACTIONS(3452), - [anon_sym_abstract] = ACTIONS(3452), - [anon_sym_interface] = ACTIONS(3452), - [anon_sym_enum] = ACTIONS(3452), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3484), + [sym_number] = ACTIONS(3484), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), }, [1188] = { - [ts_builtin_sym_end] = ACTIONS(3454), - [sym_identifier] = ACTIONS(3456), - [anon_sym_export] = ACTIONS(3456), - [anon_sym_default] = ACTIONS(3456), - [anon_sym_type] = ACTIONS(3456), - [anon_sym_namespace] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_RBRACE] = ACTIONS(3454), - [anon_sym_typeof] = ACTIONS(3456), - [anon_sym_import] = ACTIONS(3456), - [anon_sym_var] = ACTIONS(3456), - [anon_sym_let] = ACTIONS(3456), - [anon_sym_const] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3454), - [anon_sym_else] = ACTIONS(3456), - [anon_sym_if] = ACTIONS(3456), - [anon_sym_switch] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_await] = ACTIONS(3456), - [anon_sym_while] = ACTIONS(3456), - [anon_sym_do] = ACTIONS(3456), - [anon_sym_try] = ACTIONS(3456), - [anon_sym_with] = ACTIONS(3456), - [anon_sym_break] = ACTIONS(3456), - [anon_sym_continue] = ACTIONS(3456), - [anon_sym_debugger] = ACTIONS(3456), - [anon_sym_return] = ACTIONS(3456), - [anon_sym_throw] = ACTIONS(3456), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_case] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LT] = ACTIONS(3454), - [anon_sym_SLASH] = ACTIONS(3456), - [anon_sym_class] = ACTIONS(3456), - [anon_sym_async] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3456), - [anon_sym_PLUS] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_void] = ACTIONS(3456), - [anon_sym_delete] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_SQUOTE] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3454), - [sym_number] = ACTIONS(3454), - [sym_this] = ACTIONS(3456), - [sym_super] = ACTIONS(3456), - [sym_true] = ACTIONS(3456), - [sym_false] = ACTIONS(3456), - [sym_null] = ACTIONS(3456), - [sym_undefined] = ACTIONS(3456), - [anon_sym_AT] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3456), - [anon_sym_readonly] = ACTIONS(3456), - [anon_sym_get] = ACTIONS(3456), - [anon_sym_set] = ACTIONS(3456), - [anon_sym_declare] = ACTIONS(3456), - [anon_sym_public] = ACTIONS(3456), - [anon_sym_private] = ACTIONS(3456), - [anon_sym_protected] = ACTIONS(3456), - [anon_sym_module] = ACTIONS(3456), - [anon_sym_any] = ACTIONS(3456), - [anon_sym_number] = ACTIONS(3456), - [anon_sym_boolean] = ACTIONS(3456), - [anon_sym_string] = ACTIONS(3456), - [anon_sym_symbol] = ACTIONS(3456), - [anon_sym_abstract] = ACTIONS(3456), - [anon_sym_interface] = ACTIONS(3456), - [anon_sym_enum] = ACTIONS(3456), + [ts_builtin_sym_end] = ACTIONS(3484), + [sym_identifier] = ACTIONS(3486), + [anon_sym_export] = ACTIONS(3486), + [anon_sym_default] = ACTIONS(3486), + [anon_sym_type] = ACTIONS(3486), + [anon_sym_namespace] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3484), + [anon_sym_RBRACE] = ACTIONS(3484), + [anon_sym_typeof] = ACTIONS(3486), + [anon_sym_import] = ACTIONS(3486), + [anon_sym_var] = ACTIONS(3486), + [anon_sym_let] = ACTIONS(3486), + [anon_sym_const] = ACTIONS(3486), + [anon_sym_BANG] = ACTIONS(3484), + [anon_sym_else] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3486), + [anon_sym_switch] = ACTIONS(3486), + [anon_sym_for] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3484), + [anon_sym_await] = ACTIONS(3486), + [anon_sym_while] = ACTIONS(3486), + [anon_sym_do] = ACTIONS(3486), + [anon_sym_try] = ACTIONS(3486), + [anon_sym_with] = ACTIONS(3486), + [anon_sym_break] = ACTIONS(3486), + [anon_sym_continue] = ACTIONS(3486), + [anon_sym_debugger] = ACTIONS(3486), + [anon_sym_return] = ACTIONS(3486), + [anon_sym_throw] = ACTIONS(3486), + [anon_sym_SEMI] = ACTIONS(3484), + [anon_sym_case] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3486), + [anon_sym_LBRACK] = ACTIONS(3484), + [anon_sym_LT] = ACTIONS(3484), + [anon_sym_SLASH] = ACTIONS(3486), + [anon_sym_class] = ACTIONS(3486), + [anon_sym_async] = ACTIONS(3486), + [anon_sym_function] = ACTIONS(3486), + [anon_sym_new] = ACTIONS(3486), + [anon_sym_PLUS] = ACTIONS(3486), + [anon_sym_DASH] = ACTIONS(3486), + [anon_sym_TILDE] = ACTIONS(3484), + [anon_sym_void] = ACTIONS(3486), + [anon_sym_delete] = ACTIONS(3486), + [anon_sym_PLUS_PLUS] = ACTIONS(3484), + [anon_sym_DASH_DASH] = ACTIONS(3484), + [anon_sym_DQUOTE] = ACTIONS(3484), + [anon_sym_SQUOTE] = ACTIONS(3484), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3484), + [sym_number] = ACTIONS(3484), + [sym_this] = ACTIONS(3486), + [sym_super] = ACTIONS(3486), + [sym_true] = ACTIONS(3486), + [sym_false] = ACTIONS(3486), + [sym_null] = ACTIONS(3486), + [sym_undefined] = ACTIONS(3486), + [anon_sym_AT] = ACTIONS(3484), + [anon_sym_static] = ACTIONS(3486), + [anon_sym_readonly] = ACTIONS(3486), + [anon_sym_get] = ACTIONS(3486), + [anon_sym_set] = ACTIONS(3486), + [anon_sym_declare] = ACTIONS(3486), + [anon_sym_public] = ACTIONS(3486), + [anon_sym_private] = ACTIONS(3486), + [anon_sym_protected] = ACTIONS(3486), + [anon_sym_module] = ACTIONS(3486), + [anon_sym_any] = ACTIONS(3486), + [anon_sym_number] = ACTIONS(3486), + [anon_sym_boolean] = ACTIONS(3486), + [anon_sym_string] = ACTIONS(3486), + [anon_sym_symbol] = ACTIONS(3486), + [anon_sym_abstract] = ACTIONS(3486), + [anon_sym_interface] = ACTIONS(3486), + [anon_sym_enum] = ACTIONS(3486), }, [1189] = { - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3460), - [anon_sym_export] = ACTIONS(3460), - [anon_sym_default] = ACTIONS(3460), - [anon_sym_type] = ACTIONS(3460), - [anon_sym_namespace] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_RBRACE] = ACTIONS(3458), - [anon_sym_typeof] = ACTIONS(3460), - [anon_sym_import] = ACTIONS(3460), - [anon_sym_var] = ACTIONS(3460), - [anon_sym_let] = ACTIONS(3460), - [anon_sym_const] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_else] = ACTIONS(3460), - [anon_sym_if] = ACTIONS(3460), - [anon_sym_switch] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_await] = ACTIONS(3460), - [anon_sym_while] = ACTIONS(3460), - [anon_sym_do] = ACTIONS(3460), - [anon_sym_try] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3460), - [anon_sym_break] = ACTIONS(3460), - [anon_sym_continue] = ACTIONS(3460), - [anon_sym_debugger] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3460), - [anon_sym_throw] = ACTIONS(3460), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_case] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LT] = ACTIONS(3458), - [anon_sym_SLASH] = ACTIONS(3460), - [anon_sym_class] = ACTIONS(3460), - [anon_sym_async] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3458), - [anon_sym_void] = ACTIONS(3460), - [anon_sym_delete] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_SQUOTE] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3458), - [sym_number] = ACTIONS(3458), - [sym_this] = ACTIONS(3460), - [sym_super] = ACTIONS(3460), - [sym_true] = ACTIONS(3460), - [sym_false] = ACTIONS(3460), - [sym_null] = ACTIONS(3460), - [sym_undefined] = ACTIONS(3460), - [anon_sym_AT] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3460), - [anon_sym_readonly] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(3460), - [anon_sym_set] = ACTIONS(3460), - [anon_sym_declare] = ACTIONS(3460), - [anon_sym_public] = ACTIONS(3460), - [anon_sym_private] = ACTIONS(3460), - [anon_sym_protected] = ACTIONS(3460), - [anon_sym_module] = ACTIONS(3460), - [anon_sym_any] = ACTIONS(3460), - [anon_sym_number] = ACTIONS(3460), - [anon_sym_boolean] = ACTIONS(3460), - [anon_sym_string] = ACTIONS(3460), - [anon_sym_symbol] = ACTIONS(3460), - [anon_sym_abstract] = ACTIONS(3460), - [anon_sym_interface] = ACTIONS(3460), - [anon_sym_enum] = ACTIONS(3460), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1190] = { - [ts_builtin_sym_end] = ACTIONS(3462), - [sym_identifier] = ACTIONS(3464), - [anon_sym_export] = ACTIONS(3464), - [anon_sym_default] = ACTIONS(3464), - [anon_sym_type] = ACTIONS(3464), - [anon_sym_namespace] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym_import] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3462), - [anon_sym_else] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_with] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_debugger] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3462), - [anon_sym_case] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LT] = ACTIONS(3462), - [anon_sym_SLASH] = ACTIONS(3464), - [anon_sym_class] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3464), - [anon_sym_function] = ACTIONS(3464), - [anon_sym_new] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_void] = ACTIONS(3464), - [anon_sym_delete] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3462), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3462), - [sym_number] = ACTIONS(3462), - [sym_this] = ACTIONS(3464), - [sym_super] = ACTIONS(3464), - [sym_true] = ACTIONS(3464), - [sym_false] = ACTIONS(3464), - [sym_null] = ACTIONS(3464), - [sym_undefined] = ACTIONS(3464), - [anon_sym_AT] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3464), - [anon_sym_readonly] = ACTIONS(3464), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3464), - [anon_sym_declare] = ACTIONS(3464), - [anon_sym_public] = ACTIONS(3464), - [anon_sym_private] = ACTIONS(3464), - [anon_sym_protected] = ACTIONS(3464), - [anon_sym_module] = ACTIONS(3464), - [anon_sym_any] = ACTIONS(3464), - [anon_sym_number] = ACTIONS(3464), - [anon_sym_boolean] = ACTIONS(3464), - [anon_sym_string] = ACTIONS(3464), - [anon_sym_symbol] = ACTIONS(3464), - [anon_sym_abstract] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3464), - [anon_sym_enum] = ACTIONS(3464), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1191] = { - [ts_builtin_sym_end] = ACTIONS(3466), - [sym_identifier] = ACTIONS(3468), - [anon_sym_export] = ACTIONS(3468), - [anon_sym_default] = ACTIONS(3468), - [anon_sym_type] = ACTIONS(3468), - [anon_sym_namespace] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_RBRACE] = ACTIONS(3466), - [anon_sym_typeof] = ACTIONS(3468), - [anon_sym_import] = ACTIONS(3468), - [anon_sym_var] = ACTIONS(3468), - [anon_sym_let] = ACTIONS(3468), - [anon_sym_const] = ACTIONS(3468), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_else] = ACTIONS(3468), - [anon_sym_if] = ACTIONS(3468), - [anon_sym_switch] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3466), - [anon_sym_await] = ACTIONS(3468), - [anon_sym_while] = ACTIONS(3468), - [anon_sym_do] = ACTIONS(3468), - [anon_sym_try] = ACTIONS(3468), - [anon_sym_with] = ACTIONS(3468), - [anon_sym_break] = ACTIONS(3468), - [anon_sym_continue] = ACTIONS(3468), - [anon_sym_debugger] = ACTIONS(3468), - [anon_sym_return] = ACTIONS(3468), - [anon_sym_throw] = ACTIONS(3468), - [anon_sym_SEMI] = ACTIONS(3466), - [anon_sym_case] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_SLASH] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3468), - [anon_sym_async] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3468), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(3466), - [anon_sym_void] = ACTIONS(3468), - [anon_sym_delete] = ACTIONS(3468), - [anon_sym_PLUS_PLUS] = ACTIONS(3466), - [anon_sym_DASH_DASH] = ACTIONS(3466), - [anon_sym_DQUOTE] = ACTIONS(3466), - [anon_sym_SQUOTE] = ACTIONS(3466), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3466), - [sym_number] = ACTIONS(3466), - [sym_this] = ACTIONS(3468), - [sym_super] = ACTIONS(3468), - [sym_true] = ACTIONS(3468), - [sym_false] = ACTIONS(3468), - [sym_null] = ACTIONS(3468), - [sym_undefined] = ACTIONS(3468), - [anon_sym_AT] = ACTIONS(3466), - [anon_sym_static] = ACTIONS(3468), - [anon_sym_readonly] = ACTIONS(3468), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3468), - [anon_sym_declare] = ACTIONS(3468), - [anon_sym_public] = ACTIONS(3468), - [anon_sym_private] = ACTIONS(3468), - [anon_sym_protected] = ACTIONS(3468), - [anon_sym_module] = ACTIONS(3468), - [anon_sym_any] = ACTIONS(3468), - [anon_sym_number] = ACTIONS(3468), - [anon_sym_boolean] = ACTIONS(3468), - [anon_sym_string] = ACTIONS(3468), - [anon_sym_symbol] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(3468), - [anon_sym_interface] = ACTIONS(3468), - [anon_sym_enum] = ACTIONS(3468), + [ts_builtin_sym_end] = ACTIONS(3488), + [sym_identifier] = ACTIONS(3490), + [anon_sym_export] = ACTIONS(3490), + [anon_sym_default] = ACTIONS(3490), + [anon_sym_type] = ACTIONS(3490), + [anon_sym_namespace] = ACTIONS(3490), + [anon_sym_LBRACE] = ACTIONS(3488), + [anon_sym_RBRACE] = ACTIONS(3488), + [anon_sym_typeof] = ACTIONS(3490), + [anon_sym_import] = ACTIONS(3490), + [anon_sym_var] = ACTIONS(3490), + [anon_sym_let] = ACTIONS(3490), + [anon_sym_const] = ACTIONS(3490), + [anon_sym_BANG] = ACTIONS(3488), + [anon_sym_else] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3490), + [anon_sym_switch] = ACTIONS(3490), + [anon_sym_for] = ACTIONS(3490), + [anon_sym_LPAREN] = ACTIONS(3488), + [anon_sym_await] = ACTIONS(3490), + [anon_sym_while] = ACTIONS(3490), + [anon_sym_do] = ACTIONS(3490), + [anon_sym_try] = ACTIONS(3490), + [anon_sym_with] = ACTIONS(3490), + [anon_sym_break] = ACTIONS(3490), + [anon_sym_continue] = ACTIONS(3490), + [anon_sym_debugger] = ACTIONS(3490), + [anon_sym_return] = ACTIONS(3490), + [anon_sym_throw] = ACTIONS(3490), + [anon_sym_SEMI] = ACTIONS(3488), + [anon_sym_case] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3490), + [anon_sym_LBRACK] = ACTIONS(3488), + [anon_sym_LT] = ACTIONS(3488), + [anon_sym_SLASH] = ACTIONS(3490), + [anon_sym_class] = ACTIONS(3490), + [anon_sym_async] = ACTIONS(3490), + [anon_sym_function] = ACTIONS(3490), + [anon_sym_new] = ACTIONS(3490), + [anon_sym_PLUS] = ACTIONS(3490), + [anon_sym_DASH] = ACTIONS(3490), + [anon_sym_TILDE] = ACTIONS(3488), + [anon_sym_void] = ACTIONS(3490), + [anon_sym_delete] = ACTIONS(3490), + [anon_sym_PLUS_PLUS] = ACTIONS(3488), + [anon_sym_DASH_DASH] = ACTIONS(3488), + [anon_sym_DQUOTE] = ACTIONS(3488), + [anon_sym_SQUOTE] = ACTIONS(3488), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3488), + [sym_number] = ACTIONS(3488), + [sym_this] = ACTIONS(3490), + [sym_super] = ACTIONS(3490), + [sym_true] = ACTIONS(3490), + [sym_false] = ACTIONS(3490), + [sym_null] = ACTIONS(3490), + [sym_undefined] = ACTIONS(3490), + [anon_sym_AT] = ACTIONS(3488), + [anon_sym_static] = ACTIONS(3490), + [anon_sym_readonly] = ACTIONS(3490), + [anon_sym_get] = ACTIONS(3490), + [anon_sym_set] = ACTIONS(3490), + [anon_sym_declare] = ACTIONS(3490), + [anon_sym_public] = ACTIONS(3490), + [anon_sym_private] = ACTIONS(3490), + [anon_sym_protected] = ACTIONS(3490), + [anon_sym_module] = ACTIONS(3490), + [anon_sym_any] = ACTIONS(3490), + [anon_sym_number] = ACTIONS(3490), + [anon_sym_boolean] = ACTIONS(3490), + [anon_sym_string] = ACTIONS(3490), + [anon_sym_symbol] = ACTIONS(3490), + [anon_sym_abstract] = ACTIONS(3490), + [anon_sym_interface] = ACTIONS(3490), + [anon_sym_enum] = ACTIONS(3490), }, [1192] = { - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3472), - [anon_sym_export] = ACTIONS(3472), - [anon_sym_default] = ACTIONS(3472), - [anon_sym_type] = ACTIONS(3472), - [anon_sym_namespace] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_RBRACE] = ACTIONS(3470), - [anon_sym_typeof] = ACTIONS(3472), - [anon_sym_import] = ACTIONS(3472), - [anon_sym_var] = ACTIONS(3472), - [anon_sym_let] = ACTIONS(3472), - [anon_sym_const] = ACTIONS(3472), - [anon_sym_BANG] = ACTIONS(3470), - [anon_sym_else] = ACTIONS(3472), - [anon_sym_if] = ACTIONS(3472), - [anon_sym_switch] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_await] = ACTIONS(3472), - [anon_sym_while] = ACTIONS(3472), - [anon_sym_do] = ACTIONS(3472), - [anon_sym_try] = ACTIONS(3472), - [anon_sym_with] = ACTIONS(3472), - [anon_sym_break] = ACTIONS(3472), - [anon_sym_continue] = ACTIONS(3472), - [anon_sym_debugger] = ACTIONS(3472), - [anon_sym_return] = ACTIONS(3472), - [anon_sym_throw] = ACTIONS(3472), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_case] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LT] = ACTIONS(3470), - [anon_sym_SLASH] = ACTIONS(3472), - [anon_sym_class] = ACTIONS(3472), - [anon_sym_async] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3472), - [anon_sym_PLUS] = ACTIONS(3472), - [anon_sym_DASH] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3470), - [anon_sym_void] = ACTIONS(3472), - [anon_sym_delete] = ACTIONS(3472), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_SQUOTE] = ACTIONS(3470), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3470), - [sym_number] = ACTIONS(3470), - [sym_this] = ACTIONS(3472), - [sym_super] = ACTIONS(3472), - [sym_true] = ACTIONS(3472), - [sym_false] = ACTIONS(3472), - [sym_null] = ACTIONS(3472), - [sym_undefined] = ACTIONS(3472), - [anon_sym_AT] = ACTIONS(3470), - [anon_sym_static] = ACTIONS(3472), - [anon_sym_readonly] = ACTIONS(3472), - [anon_sym_get] = ACTIONS(3472), - [anon_sym_set] = ACTIONS(3472), - [anon_sym_declare] = ACTIONS(3472), - [anon_sym_public] = ACTIONS(3472), - [anon_sym_private] = ACTIONS(3472), - [anon_sym_protected] = ACTIONS(3472), - [anon_sym_module] = ACTIONS(3472), - [anon_sym_any] = ACTIONS(3472), - [anon_sym_number] = ACTIONS(3472), - [anon_sym_boolean] = ACTIONS(3472), - [anon_sym_string] = ACTIONS(3472), - [anon_sym_symbol] = ACTIONS(3472), - [anon_sym_abstract] = ACTIONS(3472), - [anon_sym_interface] = ACTIONS(3472), - [anon_sym_enum] = ACTIONS(3472), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1193] = { - [ts_builtin_sym_end] = ACTIONS(3474), - [sym_identifier] = ACTIONS(3476), - [anon_sym_export] = ACTIONS(3476), - [anon_sym_default] = ACTIONS(3476), - [anon_sym_type] = ACTIONS(3476), - [anon_sym_namespace] = ACTIONS(3476), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_RBRACE] = ACTIONS(3474), - [anon_sym_typeof] = ACTIONS(3476), - [anon_sym_import] = ACTIONS(3476), - [anon_sym_var] = ACTIONS(3476), - [anon_sym_let] = ACTIONS(3476), - [anon_sym_const] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_else] = ACTIONS(3476), - [anon_sym_if] = ACTIONS(3476), - [anon_sym_switch] = ACTIONS(3476), - [anon_sym_for] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3474), - [anon_sym_await] = ACTIONS(3476), - [anon_sym_while] = ACTIONS(3476), - [anon_sym_do] = ACTIONS(3476), - [anon_sym_try] = ACTIONS(3476), - [anon_sym_with] = ACTIONS(3476), - [anon_sym_break] = ACTIONS(3476), - [anon_sym_continue] = ACTIONS(3476), - [anon_sym_debugger] = ACTIONS(3476), - [anon_sym_return] = ACTIONS(3476), - [anon_sym_throw] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_case] = ACTIONS(3476), - [anon_sym_yield] = ACTIONS(3476), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LT] = ACTIONS(3474), - [anon_sym_SLASH] = ACTIONS(3476), - [anon_sym_class] = ACTIONS(3476), - [anon_sym_async] = ACTIONS(3476), - [anon_sym_function] = ACTIONS(3476), - [anon_sym_new] = ACTIONS(3476), - [anon_sym_PLUS] = ACTIONS(3476), - [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3474), - [anon_sym_void] = ACTIONS(3476), - [anon_sym_delete] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3474), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3474), - [sym_number] = ACTIONS(3474), - [sym_this] = ACTIONS(3476), - [sym_super] = ACTIONS(3476), - [sym_true] = ACTIONS(3476), - [sym_false] = ACTIONS(3476), - [sym_null] = ACTIONS(3476), - [sym_undefined] = ACTIONS(3476), - [anon_sym_AT] = ACTIONS(3474), - [anon_sym_static] = ACTIONS(3476), - [anon_sym_readonly] = ACTIONS(3476), - [anon_sym_get] = ACTIONS(3476), - [anon_sym_set] = ACTIONS(3476), - [anon_sym_declare] = ACTIONS(3476), - [anon_sym_public] = ACTIONS(3476), - [anon_sym_private] = ACTIONS(3476), - [anon_sym_protected] = ACTIONS(3476), - [anon_sym_module] = ACTIONS(3476), - [anon_sym_any] = ACTIONS(3476), - [anon_sym_number] = ACTIONS(3476), - [anon_sym_boolean] = ACTIONS(3476), - [anon_sym_string] = ACTIONS(3476), - [anon_sym_symbol] = ACTIONS(3476), - [anon_sym_abstract] = ACTIONS(3476), - [anon_sym_interface] = ACTIONS(3476), - [anon_sym_enum] = ACTIONS(3476), + [ts_builtin_sym_end] = ACTIONS(3492), + [sym_identifier] = ACTIONS(3494), + [anon_sym_export] = ACTIONS(3494), + [anon_sym_default] = ACTIONS(3494), + [anon_sym_type] = ACTIONS(3494), + [anon_sym_namespace] = ACTIONS(3494), + [anon_sym_LBRACE] = ACTIONS(3492), + [anon_sym_RBRACE] = ACTIONS(3492), + [anon_sym_typeof] = ACTIONS(3494), + [anon_sym_import] = ACTIONS(3494), + [anon_sym_var] = ACTIONS(3494), + [anon_sym_let] = ACTIONS(3494), + [anon_sym_const] = ACTIONS(3494), + [anon_sym_BANG] = ACTIONS(3492), + [anon_sym_else] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3494), + [anon_sym_switch] = ACTIONS(3494), + [anon_sym_for] = ACTIONS(3494), + [anon_sym_LPAREN] = ACTIONS(3492), + [anon_sym_await] = ACTIONS(3494), + [anon_sym_while] = ACTIONS(3494), + [anon_sym_do] = ACTIONS(3494), + [anon_sym_try] = ACTIONS(3494), + [anon_sym_with] = ACTIONS(3494), + [anon_sym_break] = ACTIONS(3494), + [anon_sym_continue] = ACTIONS(3494), + [anon_sym_debugger] = ACTIONS(3494), + [anon_sym_return] = ACTIONS(3494), + [anon_sym_throw] = ACTIONS(3494), + [anon_sym_SEMI] = ACTIONS(3492), + [anon_sym_case] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3494), + [anon_sym_LBRACK] = ACTIONS(3492), + [anon_sym_LT] = ACTIONS(3492), + [anon_sym_SLASH] = ACTIONS(3494), + [anon_sym_class] = ACTIONS(3494), + [anon_sym_async] = ACTIONS(3494), + [anon_sym_function] = ACTIONS(3494), + [anon_sym_new] = ACTIONS(3494), + [anon_sym_PLUS] = ACTIONS(3494), + [anon_sym_DASH] = ACTIONS(3494), + [anon_sym_TILDE] = ACTIONS(3492), + [anon_sym_void] = ACTIONS(3494), + [anon_sym_delete] = ACTIONS(3494), + [anon_sym_PLUS_PLUS] = ACTIONS(3492), + [anon_sym_DASH_DASH] = ACTIONS(3492), + [anon_sym_DQUOTE] = ACTIONS(3492), + [anon_sym_SQUOTE] = ACTIONS(3492), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3492), + [sym_number] = ACTIONS(3492), + [sym_this] = ACTIONS(3494), + [sym_super] = ACTIONS(3494), + [sym_true] = ACTIONS(3494), + [sym_false] = ACTIONS(3494), + [sym_null] = ACTIONS(3494), + [sym_undefined] = ACTIONS(3494), + [anon_sym_AT] = ACTIONS(3492), + [anon_sym_static] = ACTIONS(3494), + [anon_sym_readonly] = ACTIONS(3494), + [anon_sym_get] = ACTIONS(3494), + [anon_sym_set] = ACTIONS(3494), + [anon_sym_declare] = ACTIONS(3494), + [anon_sym_public] = ACTIONS(3494), + [anon_sym_private] = ACTIONS(3494), + [anon_sym_protected] = ACTIONS(3494), + [anon_sym_module] = ACTIONS(3494), + [anon_sym_any] = ACTIONS(3494), + [anon_sym_number] = ACTIONS(3494), + [anon_sym_boolean] = ACTIONS(3494), + [anon_sym_string] = ACTIONS(3494), + [anon_sym_symbol] = ACTIONS(3494), + [anon_sym_abstract] = ACTIONS(3494), + [anon_sym_interface] = ACTIONS(3494), + [anon_sym_enum] = ACTIONS(3494), }, [1194] = { - [ts_builtin_sym_end] = ACTIONS(3478), - [sym_identifier] = ACTIONS(3480), - [anon_sym_export] = ACTIONS(3480), - [anon_sym_default] = ACTIONS(3480), - [anon_sym_type] = ACTIONS(3480), - [anon_sym_namespace] = ACTIONS(3480), - [anon_sym_LBRACE] = ACTIONS(3478), - [anon_sym_RBRACE] = ACTIONS(3478), - [anon_sym_typeof] = ACTIONS(3480), - [anon_sym_import] = ACTIONS(3480), - [anon_sym_var] = ACTIONS(3480), - [anon_sym_let] = ACTIONS(3480), - [anon_sym_const] = ACTIONS(3480), - [anon_sym_BANG] = ACTIONS(3478), - [anon_sym_else] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3480), - [anon_sym_switch] = ACTIONS(3480), - [anon_sym_for] = ACTIONS(3480), - [anon_sym_LPAREN] = ACTIONS(3478), - [anon_sym_await] = ACTIONS(3480), - [anon_sym_while] = ACTIONS(3480), - [anon_sym_do] = ACTIONS(3480), - [anon_sym_try] = ACTIONS(3480), - [anon_sym_with] = ACTIONS(3480), - [anon_sym_break] = ACTIONS(3480), - [anon_sym_continue] = ACTIONS(3480), - [anon_sym_debugger] = ACTIONS(3480), - [anon_sym_return] = ACTIONS(3480), - [anon_sym_throw] = ACTIONS(3480), - [anon_sym_SEMI] = ACTIONS(3478), - [anon_sym_case] = ACTIONS(3480), - [anon_sym_yield] = ACTIONS(3480), - [anon_sym_LBRACK] = ACTIONS(3478), - [anon_sym_LT] = ACTIONS(3478), - [anon_sym_SLASH] = ACTIONS(3480), - [anon_sym_class] = ACTIONS(3480), - [anon_sym_async] = ACTIONS(3480), - [anon_sym_function] = ACTIONS(3480), - [anon_sym_new] = ACTIONS(3480), - [anon_sym_PLUS] = ACTIONS(3480), - [anon_sym_DASH] = ACTIONS(3480), - [anon_sym_TILDE] = ACTIONS(3478), - [anon_sym_void] = ACTIONS(3480), - [anon_sym_delete] = ACTIONS(3480), - [anon_sym_PLUS_PLUS] = ACTIONS(3478), - [anon_sym_DASH_DASH] = ACTIONS(3478), - [anon_sym_DQUOTE] = ACTIONS(3478), - [anon_sym_SQUOTE] = ACTIONS(3478), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3478), - [sym_number] = ACTIONS(3478), - [sym_this] = ACTIONS(3480), - [sym_super] = ACTIONS(3480), - [sym_true] = ACTIONS(3480), - [sym_false] = ACTIONS(3480), - [sym_null] = ACTIONS(3480), - [sym_undefined] = ACTIONS(3480), - [anon_sym_AT] = ACTIONS(3478), - [anon_sym_static] = ACTIONS(3480), - [anon_sym_readonly] = ACTIONS(3480), - [anon_sym_get] = ACTIONS(3480), - [anon_sym_set] = ACTIONS(3480), - [anon_sym_declare] = ACTIONS(3480), - [anon_sym_public] = ACTIONS(3480), - [anon_sym_private] = ACTIONS(3480), - [anon_sym_protected] = ACTIONS(3480), - [anon_sym_module] = ACTIONS(3480), - [anon_sym_any] = ACTIONS(3480), - [anon_sym_number] = ACTIONS(3480), - [anon_sym_boolean] = ACTIONS(3480), - [anon_sym_string] = ACTIONS(3480), - [anon_sym_symbol] = ACTIONS(3480), - [anon_sym_abstract] = ACTIONS(3480), - [anon_sym_interface] = ACTIONS(3480), - [anon_sym_enum] = ACTIONS(3480), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1195] = { - [ts_builtin_sym_end] = ACTIONS(3482), - [sym_identifier] = ACTIONS(3484), - [anon_sym_export] = ACTIONS(3484), - [anon_sym_default] = ACTIONS(3484), - [anon_sym_type] = ACTIONS(3484), - [anon_sym_namespace] = ACTIONS(3484), - [anon_sym_LBRACE] = ACTIONS(3482), - [anon_sym_RBRACE] = ACTIONS(3482), - [anon_sym_typeof] = ACTIONS(3484), - [anon_sym_import] = ACTIONS(3484), - [anon_sym_var] = ACTIONS(3484), - [anon_sym_let] = ACTIONS(3484), - [anon_sym_const] = ACTIONS(3484), - [anon_sym_BANG] = ACTIONS(3482), - [anon_sym_else] = ACTIONS(3484), - [anon_sym_if] = ACTIONS(3484), - [anon_sym_switch] = ACTIONS(3484), - [anon_sym_for] = ACTIONS(3484), - [anon_sym_LPAREN] = ACTIONS(3482), - [anon_sym_await] = ACTIONS(3484), - [anon_sym_while] = ACTIONS(3484), - [anon_sym_do] = ACTIONS(3484), - [anon_sym_try] = ACTIONS(3484), - [anon_sym_with] = ACTIONS(3484), - [anon_sym_break] = ACTIONS(3484), - [anon_sym_continue] = ACTIONS(3484), - [anon_sym_debugger] = ACTIONS(3484), - [anon_sym_return] = ACTIONS(3484), - [anon_sym_throw] = ACTIONS(3484), - [anon_sym_SEMI] = ACTIONS(3482), - [anon_sym_case] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3484), - [anon_sym_LBRACK] = ACTIONS(3482), - [anon_sym_LT] = ACTIONS(3482), - [anon_sym_SLASH] = ACTIONS(3484), - [anon_sym_class] = ACTIONS(3484), - [anon_sym_async] = ACTIONS(3484), - [anon_sym_function] = ACTIONS(3484), - [anon_sym_new] = ACTIONS(3484), - [anon_sym_PLUS] = ACTIONS(3484), - [anon_sym_DASH] = ACTIONS(3484), - [anon_sym_TILDE] = ACTIONS(3482), - [anon_sym_void] = ACTIONS(3484), - [anon_sym_delete] = ACTIONS(3484), - [anon_sym_PLUS_PLUS] = ACTIONS(3482), - [anon_sym_DASH_DASH] = ACTIONS(3482), - [anon_sym_DQUOTE] = ACTIONS(3482), - [anon_sym_SQUOTE] = ACTIONS(3482), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3482), - [sym_number] = ACTIONS(3482), - [sym_this] = ACTIONS(3484), - [sym_super] = ACTIONS(3484), - [sym_true] = ACTIONS(3484), - [sym_false] = ACTIONS(3484), - [sym_null] = ACTIONS(3484), - [sym_undefined] = ACTIONS(3484), - [anon_sym_AT] = ACTIONS(3482), - [anon_sym_static] = ACTIONS(3484), - [anon_sym_readonly] = ACTIONS(3484), - [anon_sym_get] = ACTIONS(3484), - [anon_sym_set] = ACTIONS(3484), - [anon_sym_declare] = ACTIONS(3484), - [anon_sym_public] = ACTIONS(3484), - [anon_sym_private] = ACTIONS(3484), - [anon_sym_protected] = ACTIONS(3484), - [anon_sym_module] = ACTIONS(3484), - [anon_sym_any] = ACTIONS(3484), - [anon_sym_number] = ACTIONS(3484), - [anon_sym_boolean] = ACTIONS(3484), - [anon_sym_string] = ACTIONS(3484), - [anon_sym_symbol] = ACTIONS(3484), - [anon_sym_abstract] = ACTIONS(3484), - [anon_sym_interface] = ACTIONS(3484), - [anon_sym_enum] = ACTIONS(3484), + [ts_builtin_sym_end] = ACTIONS(3496), + [sym_identifier] = ACTIONS(3498), + [anon_sym_export] = ACTIONS(3498), + [anon_sym_default] = ACTIONS(3498), + [anon_sym_type] = ACTIONS(3498), + [anon_sym_namespace] = ACTIONS(3498), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_RBRACE] = ACTIONS(3496), + [anon_sym_typeof] = ACTIONS(3498), + [anon_sym_import] = ACTIONS(3498), + [anon_sym_var] = ACTIONS(3498), + [anon_sym_let] = ACTIONS(3498), + [anon_sym_const] = ACTIONS(3498), + [anon_sym_BANG] = ACTIONS(3496), + [anon_sym_else] = ACTIONS(3498), + [anon_sym_if] = ACTIONS(3498), + [anon_sym_switch] = ACTIONS(3498), + [anon_sym_for] = ACTIONS(3498), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_await] = ACTIONS(3498), + [anon_sym_while] = ACTIONS(3498), + [anon_sym_do] = ACTIONS(3498), + [anon_sym_try] = ACTIONS(3498), + [anon_sym_with] = ACTIONS(3498), + [anon_sym_break] = ACTIONS(3498), + [anon_sym_continue] = ACTIONS(3498), + [anon_sym_debugger] = ACTIONS(3498), + [anon_sym_return] = ACTIONS(3498), + [anon_sym_throw] = ACTIONS(3498), + [anon_sym_SEMI] = ACTIONS(3496), + [anon_sym_case] = ACTIONS(3498), + [anon_sym_yield] = ACTIONS(3498), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LT] = ACTIONS(3496), + [anon_sym_SLASH] = ACTIONS(3498), + [anon_sym_class] = ACTIONS(3498), + [anon_sym_async] = ACTIONS(3498), + [anon_sym_function] = ACTIONS(3498), + [anon_sym_new] = ACTIONS(3498), + [anon_sym_PLUS] = ACTIONS(3498), + [anon_sym_DASH] = ACTIONS(3498), + [anon_sym_TILDE] = ACTIONS(3496), + [anon_sym_void] = ACTIONS(3498), + [anon_sym_delete] = ACTIONS(3498), + [anon_sym_PLUS_PLUS] = ACTIONS(3496), + [anon_sym_DASH_DASH] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [anon_sym_SQUOTE] = ACTIONS(3496), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3496), + [sym_number] = ACTIONS(3496), + [sym_this] = ACTIONS(3498), + [sym_super] = ACTIONS(3498), + [sym_true] = ACTIONS(3498), + [sym_false] = ACTIONS(3498), + [sym_null] = ACTIONS(3498), + [sym_undefined] = ACTIONS(3498), + [anon_sym_AT] = ACTIONS(3496), + [anon_sym_static] = ACTIONS(3498), + [anon_sym_readonly] = ACTIONS(3498), + [anon_sym_get] = ACTIONS(3498), + [anon_sym_set] = ACTIONS(3498), + [anon_sym_declare] = ACTIONS(3498), + [anon_sym_public] = ACTIONS(3498), + [anon_sym_private] = ACTIONS(3498), + [anon_sym_protected] = ACTIONS(3498), + [anon_sym_module] = ACTIONS(3498), + [anon_sym_any] = ACTIONS(3498), + [anon_sym_number] = ACTIONS(3498), + [anon_sym_boolean] = ACTIONS(3498), + [anon_sym_string] = ACTIONS(3498), + [anon_sym_symbol] = ACTIONS(3498), + [anon_sym_abstract] = ACTIONS(3498), + [anon_sym_interface] = ACTIONS(3498), + [anon_sym_enum] = ACTIONS(3498), }, [1196] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3500), + [sym_identifier] = ACTIONS(3502), + [anon_sym_export] = ACTIONS(3502), + [anon_sym_default] = ACTIONS(3502), + [anon_sym_type] = ACTIONS(3502), + [anon_sym_namespace] = ACTIONS(3502), + [anon_sym_LBRACE] = ACTIONS(3500), + [anon_sym_RBRACE] = ACTIONS(3500), + [anon_sym_typeof] = ACTIONS(3502), + [anon_sym_import] = ACTIONS(3502), + [anon_sym_var] = ACTIONS(3502), + [anon_sym_let] = ACTIONS(3502), + [anon_sym_const] = ACTIONS(3502), + [anon_sym_BANG] = ACTIONS(3500), + [anon_sym_else] = ACTIONS(3502), + [anon_sym_if] = ACTIONS(3502), + [anon_sym_switch] = ACTIONS(3502), + [anon_sym_for] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3500), + [anon_sym_await] = ACTIONS(3502), + [anon_sym_while] = ACTIONS(3502), + [anon_sym_do] = ACTIONS(3502), + [anon_sym_try] = ACTIONS(3502), + [anon_sym_with] = ACTIONS(3502), + [anon_sym_break] = ACTIONS(3502), + [anon_sym_continue] = ACTIONS(3502), + [anon_sym_debugger] = ACTIONS(3502), + [anon_sym_return] = ACTIONS(3502), + [anon_sym_throw] = ACTIONS(3502), + [anon_sym_SEMI] = ACTIONS(3500), + [anon_sym_case] = ACTIONS(3502), + [anon_sym_yield] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(3500), + [anon_sym_SLASH] = ACTIONS(3502), + [anon_sym_class] = ACTIONS(3502), + [anon_sym_async] = ACTIONS(3502), + [anon_sym_function] = ACTIONS(3502), + [anon_sym_new] = ACTIONS(3502), + [anon_sym_PLUS] = ACTIONS(3502), + [anon_sym_DASH] = ACTIONS(3502), + [anon_sym_TILDE] = ACTIONS(3500), + [anon_sym_void] = ACTIONS(3502), + [anon_sym_delete] = ACTIONS(3502), + [anon_sym_PLUS_PLUS] = ACTIONS(3500), + [anon_sym_DASH_DASH] = ACTIONS(3500), + [anon_sym_DQUOTE] = ACTIONS(3500), + [anon_sym_SQUOTE] = ACTIONS(3500), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3500), + [sym_number] = ACTIONS(3500), + [sym_this] = ACTIONS(3502), + [sym_super] = ACTIONS(3502), + [sym_true] = ACTIONS(3502), + [sym_false] = ACTIONS(3502), + [sym_null] = ACTIONS(3502), + [sym_undefined] = ACTIONS(3502), + [anon_sym_AT] = ACTIONS(3500), + [anon_sym_static] = ACTIONS(3502), + [anon_sym_readonly] = ACTIONS(3502), + [anon_sym_get] = ACTIONS(3502), + [anon_sym_set] = ACTIONS(3502), + [anon_sym_declare] = ACTIONS(3502), + [anon_sym_public] = ACTIONS(3502), + [anon_sym_private] = ACTIONS(3502), + [anon_sym_protected] = ACTIONS(3502), + [anon_sym_module] = ACTIONS(3502), + [anon_sym_any] = ACTIONS(3502), + [anon_sym_number] = ACTIONS(3502), + [anon_sym_boolean] = ACTIONS(3502), + [anon_sym_string] = ACTIONS(3502), + [anon_sym_symbol] = ACTIONS(3502), + [anon_sym_abstract] = ACTIONS(3502), + [anon_sym_interface] = ACTIONS(3502), + [anon_sym_enum] = ACTIONS(3502), }, [1197] = { - [ts_builtin_sym_end] = ACTIONS(3486), - [sym_identifier] = ACTIONS(3488), - [anon_sym_export] = ACTIONS(3488), - [anon_sym_default] = ACTIONS(3488), - [anon_sym_type] = ACTIONS(3488), - [anon_sym_namespace] = ACTIONS(3488), - [anon_sym_LBRACE] = ACTIONS(3486), - [anon_sym_RBRACE] = ACTIONS(3486), - [anon_sym_typeof] = ACTIONS(3488), - [anon_sym_import] = ACTIONS(3488), - [anon_sym_var] = ACTIONS(3488), - [anon_sym_let] = ACTIONS(3488), - [anon_sym_const] = ACTIONS(3488), - [anon_sym_BANG] = ACTIONS(3486), - [anon_sym_else] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3488), - [anon_sym_switch] = ACTIONS(3488), - [anon_sym_for] = ACTIONS(3488), - [anon_sym_LPAREN] = ACTIONS(3486), - [anon_sym_await] = ACTIONS(3488), - [anon_sym_while] = ACTIONS(3488), - [anon_sym_do] = ACTIONS(3488), - [anon_sym_try] = ACTIONS(3488), - [anon_sym_with] = ACTIONS(3488), - [anon_sym_break] = ACTIONS(3488), - [anon_sym_continue] = ACTIONS(3488), - [anon_sym_debugger] = ACTIONS(3488), - [anon_sym_return] = ACTIONS(3488), - [anon_sym_throw] = ACTIONS(3488), - [anon_sym_SEMI] = ACTIONS(3486), - [anon_sym_case] = ACTIONS(3488), - [anon_sym_yield] = ACTIONS(3488), - [anon_sym_LBRACK] = ACTIONS(3486), - [anon_sym_LT] = ACTIONS(3486), - [anon_sym_SLASH] = ACTIONS(3488), - [anon_sym_class] = ACTIONS(3488), - [anon_sym_async] = ACTIONS(3488), - [anon_sym_function] = ACTIONS(3488), - [anon_sym_new] = ACTIONS(3488), - [anon_sym_PLUS] = ACTIONS(3488), - [anon_sym_DASH] = ACTIONS(3488), - [anon_sym_TILDE] = ACTIONS(3486), - [anon_sym_void] = ACTIONS(3488), - [anon_sym_delete] = ACTIONS(3488), - [anon_sym_PLUS_PLUS] = ACTIONS(3486), - [anon_sym_DASH_DASH] = ACTIONS(3486), - [anon_sym_DQUOTE] = ACTIONS(3486), - [anon_sym_SQUOTE] = ACTIONS(3486), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3486), - [sym_number] = ACTIONS(3486), - [sym_this] = ACTIONS(3488), - [sym_super] = ACTIONS(3488), - [sym_true] = ACTIONS(3488), - [sym_false] = ACTIONS(3488), - [sym_null] = ACTIONS(3488), - [sym_undefined] = ACTIONS(3488), - [anon_sym_AT] = ACTIONS(3486), - [anon_sym_static] = ACTIONS(3488), - [anon_sym_readonly] = ACTIONS(3488), - [anon_sym_get] = ACTIONS(3488), - [anon_sym_set] = ACTIONS(3488), - [anon_sym_declare] = ACTIONS(3488), - [anon_sym_public] = ACTIONS(3488), - [anon_sym_private] = ACTIONS(3488), - [anon_sym_protected] = ACTIONS(3488), - [anon_sym_module] = ACTIONS(3488), - [anon_sym_any] = ACTIONS(3488), - [anon_sym_number] = ACTIONS(3488), - [anon_sym_boolean] = ACTIONS(3488), - [anon_sym_string] = ACTIONS(3488), - [anon_sym_symbol] = ACTIONS(3488), - [anon_sym_abstract] = ACTIONS(3488), - [anon_sym_interface] = ACTIONS(3488), - [anon_sym_enum] = ACTIONS(3488), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1198] = { - [ts_builtin_sym_end] = ACTIONS(3490), - [sym_identifier] = ACTIONS(3492), - [anon_sym_export] = ACTIONS(3492), - [anon_sym_default] = ACTIONS(3492), - [anon_sym_type] = ACTIONS(3492), - [anon_sym_namespace] = ACTIONS(3492), - [anon_sym_LBRACE] = ACTIONS(3490), - [anon_sym_RBRACE] = ACTIONS(3490), - [anon_sym_typeof] = ACTIONS(3492), - [anon_sym_import] = ACTIONS(3492), - [anon_sym_var] = ACTIONS(3492), - [anon_sym_let] = ACTIONS(3492), - [anon_sym_const] = ACTIONS(3492), - [anon_sym_BANG] = ACTIONS(3490), - [anon_sym_else] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3492), - [anon_sym_switch] = ACTIONS(3492), - [anon_sym_for] = ACTIONS(3492), - [anon_sym_LPAREN] = ACTIONS(3490), - [anon_sym_await] = ACTIONS(3492), - [anon_sym_while] = ACTIONS(3492), - [anon_sym_do] = ACTIONS(3492), - [anon_sym_try] = ACTIONS(3492), - [anon_sym_with] = ACTIONS(3492), - [anon_sym_break] = ACTIONS(3492), - [anon_sym_continue] = ACTIONS(3492), - [anon_sym_debugger] = ACTIONS(3492), - [anon_sym_return] = ACTIONS(3492), - [anon_sym_throw] = ACTIONS(3492), - [anon_sym_SEMI] = ACTIONS(3490), - [anon_sym_case] = ACTIONS(3492), - [anon_sym_yield] = ACTIONS(3492), - [anon_sym_LBRACK] = ACTIONS(3490), - [anon_sym_LT] = ACTIONS(3490), - [anon_sym_SLASH] = ACTIONS(3492), - [anon_sym_class] = ACTIONS(3492), - [anon_sym_async] = ACTIONS(3492), - [anon_sym_function] = ACTIONS(3492), - [anon_sym_new] = ACTIONS(3492), - [anon_sym_PLUS] = ACTIONS(3492), - [anon_sym_DASH] = ACTIONS(3492), - [anon_sym_TILDE] = ACTIONS(3490), - [anon_sym_void] = ACTIONS(3492), - [anon_sym_delete] = ACTIONS(3492), - [anon_sym_PLUS_PLUS] = ACTIONS(3490), - [anon_sym_DASH_DASH] = ACTIONS(3490), - [anon_sym_DQUOTE] = ACTIONS(3490), - [anon_sym_SQUOTE] = ACTIONS(3490), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3490), - [sym_number] = ACTIONS(3490), - [sym_this] = ACTIONS(3492), - [sym_super] = ACTIONS(3492), - [sym_true] = ACTIONS(3492), - [sym_false] = ACTIONS(3492), - [sym_null] = ACTIONS(3492), - [sym_undefined] = ACTIONS(3492), - [anon_sym_AT] = ACTIONS(3490), - [anon_sym_static] = ACTIONS(3492), - [anon_sym_readonly] = ACTIONS(3492), - [anon_sym_get] = ACTIONS(3492), - [anon_sym_set] = ACTIONS(3492), - [anon_sym_declare] = ACTIONS(3492), - [anon_sym_public] = ACTIONS(3492), - [anon_sym_private] = ACTIONS(3492), - [anon_sym_protected] = ACTIONS(3492), - [anon_sym_module] = ACTIONS(3492), - [anon_sym_any] = ACTIONS(3492), - [anon_sym_number] = ACTIONS(3492), - [anon_sym_boolean] = ACTIONS(3492), - [anon_sym_string] = ACTIONS(3492), - [anon_sym_symbol] = ACTIONS(3492), - [anon_sym_abstract] = ACTIONS(3492), - [anon_sym_interface] = ACTIONS(3492), - [anon_sym_enum] = ACTIONS(3492), + [ts_builtin_sym_end] = ACTIONS(3504), + [sym_identifier] = ACTIONS(3506), + [anon_sym_export] = ACTIONS(3506), + [anon_sym_default] = ACTIONS(3506), + [anon_sym_type] = ACTIONS(3506), + [anon_sym_namespace] = ACTIONS(3506), + [anon_sym_LBRACE] = ACTIONS(3504), + [anon_sym_RBRACE] = ACTIONS(3504), + [anon_sym_typeof] = ACTIONS(3506), + [anon_sym_import] = ACTIONS(3506), + [anon_sym_var] = ACTIONS(3506), + [anon_sym_let] = ACTIONS(3506), + [anon_sym_const] = ACTIONS(3506), + [anon_sym_BANG] = ACTIONS(3504), + [anon_sym_else] = ACTIONS(3506), + [anon_sym_if] = ACTIONS(3506), + [anon_sym_switch] = ACTIONS(3506), + [anon_sym_for] = ACTIONS(3506), + [anon_sym_LPAREN] = ACTIONS(3504), + [anon_sym_await] = ACTIONS(3506), + [anon_sym_while] = ACTIONS(3506), + [anon_sym_do] = ACTIONS(3506), + [anon_sym_try] = ACTIONS(3506), + [anon_sym_with] = ACTIONS(3506), + [anon_sym_break] = ACTIONS(3506), + [anon_sym_continue] = ACTIONS(3506), + [anon_sym_debugger] = ACTIONS(3506), + [anon_sym_return] = ACTIONS(3506), + [anon_sym_throw] = ACTIONS(3506), + [anon_sym_SEMI] = ACTIONS(3504), + [anon_sym_case] = ACTIONS(3506), + [anon_sym_yield] = ACTIONS(3506), + [anon_sym_LBRACK] = ACTIONS(3504), + [anon_sym_LT] = ACTIONS(3504), + [anon_sym_SLASH] = ACTIONS(3506), + [anon_sym_class] = ACTIONS(3506), + [anon_sym_async] = ACTIONS(3506), + [anon_sym_function] = ACTIONS(3506), + [anon_sym_new] = ACTIONS(3506), + [anon_sym_PLUS] = ACTIONS(3506), + [anon_sym_DASH] = ACTIONS(3506), + [anon_sym_TILDE] = ACTIONS(3504), + [anon_sym_void] = ACTIONS(3506), + [anon_sym_delete] = ACTIONS(3506), + [anon_sym_PLUS_PLUS] = ACTIONS(3504), + [anon_sym_DASH_DASH] = ACTIONS(3504), + [anon_sym_DQUOTE] = ACTIONS(3504), + [anon_sym_SQUOTE] = ACTIONS(3504), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3504), + [sym_number] = ACTIONS(3504), + [sym_this] = ACTIONS(3506), + [sym_super] = ACTIONS(3506), + [sym_true] = ACTIONS(3506), + [sym_false] = ACTIONS(3506), + [sym_null] = ACTIONS(3506), + [sym_undefined] = ACTIONS(3506), + [anon_sym_AT] = ACTIONS(3504), + [anon_sym_static] = ACTIONS(3506), + [anon_sym_readonly] = ACTIONS(3506), + [anon_sym_get] = ACTIONS(3506), + [anon_sym_set] = ACTIONS(3506), + [anon_sym_declare] = ACTIONS(3506), + [anon_sym_public] = ACTIONS(3506), + [anon_sym_private] = ACTIONS(3506), + [anon_sym_protected] = ACTIONS(3506), + [anon_sym_module] = ACTIONS(3506), + [anon_sym_any] = ACTIONS(3506), + [anon_sym_number] = ACTIONS(3506), + [anon_sym_boolean] = ACTIONS(3506), + [anon_sym_string] = ACTIONS(3506), + [anon_sym_symbol] = ACTIONS(3506), + [anon_sym_abstract] = ACTIONS(3506), + [anon_sym_interface] = ACTIONS(3506), + [anon_sym_enum] = ACTIONS(3506), }, [1199] = { - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3496), - [anon_sym_export] = ACTIONS(3496), - [anon_sym_default] = ACTIONS(3496), - [anon_sym_type] = ACTIONS(3496), - [anon_sym_namespace] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3494), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3496), - [anon_sym_import] = ACTIONS(3496), - [anon_sym_var] = ACTIONS(3496), - [anon_sym_let] = ACTIONS(3496), - [anon_sym_const] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_else] = ACTIONS(3496), - [anon_sym_if] = ACTIONS(3496), - [anon_sym_switch] = ACTIONS(3496), - [anon_sym_for] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3496), - [anon_sym_while] = ACTIONS(3496), - [anon_sym_do] = ACTIONS(3496), - [anon_sym_try] = ACTIONS(3496), - [anon_sym_with] = ACTIONS(3496), - [anon_sym_break] = ACTIONS(3496), - [anon_sym_continue] = ACTIONS(3496), - [anon_sym_debugger] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3496), - [anon_sym_throw] = ACTIONS(3496), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_case] = ACTIONS(3496), - [anon_sym_yield] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_class] = ACTIONS(3496), - [anon_sym_async] = ACTIONS(3496), - [anon_sym_function] = ACTIONS(3496), - [anon_sym_new] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_void] = ACTIONS(3496), - [anon_sym_delete] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3494), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3494), - [sym_number] = ACTIONS(3494), - [sym_this] = ACTIONS(3496), - [sym_super] = ACTIONS(3496), - [sym_true] = ACTIONS(3496), - [sym_false] = ACTIONS(3496), - [sym_null] = ACTIONS(3496), - [sym_undefined] = ACTIONS(3496), - [anon_sym_AT] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3496), - [anon_sym_readonly] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(3496), - [anon_sym_set] = ACTIONS(3496), - [anon_sym_declare] = ACTIONS(3496), - [anon_sym_public] = ACTIONS(3496), - [anon_sym_private] = ACTIONS(3496), - [anon_sym_protected] = ACTIONS(3496), - [anon_sym_module] = ACTIONS(3496), - [anon_sym_any] = ACTIONS(3496), - [anon_sym_number] = ACTIONS(3496), - [anon_sym_boolean] = ACTIONS(3496), - [anon_sym_string] = ACTIONS(3496), - [anon_sym_symbol] = ACTIONS(3496), - [anon_sym_abstract] = ACTIONS(3496), - [anon_sym_interface] = ACTIONS(3496), - [anon_sym_enum] = ACTIONS(3496), + [ts_builtin_sym_end] = ACTIONS(3508), + [sym_identifier] = ACTIONS(3510), + [anon_sym_export] = ACTIONS(3510), + [anon_sym_default] = ACTIONS(3510), + [anon_sym_type] = ACTIONS(3510), + [anon_sym_namespace] = ACTIONS(3510), + [anon_sym_LBRACE] = ACTIONS(3508), + [anon_sym_RBRACE] = ACTIONS(3508), + [anon_sym_typeof] = ACTIONS(3510), + [anon_sym_import] = ACTIONS(3510), + [anon_sym_var] = ACTIONS(3510), + [anon_sym_let] = ACTIONS(3510), + [anon_sym_const] = ACTIONS(3510), + [anon_sym_BANG] = ACTIONS(3508), + [anon_sym_else] = ACTIONS(3510), + [anon_sym_if] = ACTIONS(3510), + [anon_sym_switch] = ACTIONS(3510), + [anon_sym_for] = ACTIONS(3510), + [anon_sym_LPAREN] = ACTIONS(3508), + [anon_sym_await] = ACTIONS(3510), + [anon_sym_while] = ACTIONS(3510), + [anon_sym_do] = ACTIONS(3510), + [anon_sym_try] = ACTIONS(3510), + [anon_sym_with] = ACTIONS(3510), + [anon_sym_break] = ACTIONS(3510), + [anon_sym_continue] = ACTIONS(3510), + [anon_sym_debugger] = ACTIONS(3510), + [anon_sym_return] = ACTIONS(3510), + [anon_sym_throw] = ACTIONS(3510), + [anon_sym_SEMI] = ACTIONS(3508), + [anon_sym_case] = ACTIONS(3510), + [anon_sym_yield] = ACTIONS(3510), + [anon_sym_LBRACK] = ACTIONS(3508), + [anon_sym_LT] = ACTIONS(3508), + [anon_sym_SLASH] = ACTIONS(3510), + [anon_sym_class] = ACTIONS(3510), + [anon_sym_async] = ACTIONS(3510), + [anon_sym_function] = ACTIONS(3510), + [anon_sym_new] = ACTIONS(3510), + [anon_sym_PLUS] = ACTIONS(3510), + [anon_sym_DASH] = ACTIONS(3510), + [anon_sym_TILDE] = ACTIONS(3508), + [anon_sym_void] = ACTIONS(3510), + [anon_sym_delete] = ACTIONS(3510), + [anon_sym_PLUS_PLUS] = ACTIONS(3508), + [anon_sym_DASH_DASH] = ACTIONS(3508), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3508), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3508), + [sym_number] = ACTIONS(3508), + [sym_this] = ACTIONS(3510), + [sym_super] = ACTIONS(3510), + [sym_true] = ACTIONS(3510), + [sym_false] = ACTIONS(3510), + [sym_null] = ACTIONS(3510), + [sym_undefined] = ACTIONS(3510), + [anon_sym_AT] = ACTIONS(3508), + [anon_sym_static] = ACTIONS(3510), + [anon_sym_readonly] = ACTIONS(3510), + [anon_sym_get] = ACTIONS(3510), + [anon_sym_set] = ACTIONS(3510), + [anon_sym_declare] = ACTIONS(3510), + [anon_sym_public] = ACTIONS(3510), + [anon_sym_private] = ACTIONS(3510), + [anon_sym_protected] = ACTIONS(3510), + [anon_sym_module] = ACTIONS(3510), + [anon_sym_any] = ACTIONS(3510), + [anon_sym_number] = ACTIONS(3510), + [anon_sym_boolean] = ACTIONS(3510), + [anon_sym_string] = ACTIONS(3510), + [anon_sym_symbol] = ACTIONS(3510), + [anon_sym_abstract] = ACTIONS(3510), + [anon_sym_interface] = ACTIONS(3510), + [anon_sym_enum] = ACTIONS(3510), }, [1200] = { - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3496), - [anon_sym_export] = ACTIONS(3496), - [anon_sym_default] = ACTIONS(3496), - [anon_sym_type] = ACTIONS(3496), - [anon_sym_namespace] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3494), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3496), - [anon_sym_import] = ACTIONS(3496), - [anon_sym_var] = ACTIONS(3496), - [anon_sym_let] = ACTIONS(3496), - [anon_sym_const] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_else] = ACTIONS(3496), - [anon_sym_if] = ACTIONS(3496), - [anon_sym_switch] = ACTIONS(3496), - [anon_sym_for] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3496), - [anon_sym_while] = ACTIONS(3496), - [anon_sym_do] = ACTIONS(3496), - [anon_sym_try] = ACTIONS(3496), - [anon_sym_with] = ACTIONS(3496), - [anon_sym_break] = ACTIONS(3496), - [anon_sym_continue] = ACTIONS(3496), - [anon_sym_debugger] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3496), - [anon_sym_throw] = ACTIONS(3496), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_case] = ACTIONS(3496), - [anon_sym_yield] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_class] = ACTIONS(3496), - [anon_sym_async] = ACTIONS(3496), - [anon_sym_function] = ACTIONS(3496), - [anon_sym_new] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_void] = ACTIONS(3496), - [anon_sym_delete] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3494), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3494), - [sym_number] = ACTIONS(3494), - [sym_this] = ACTIONS(3496), - [sym_super] = ACTIONS(3496), - [sym_true] = ACTIONS(3496), - [sym_false] = ACTIONS(3496), - [sym_null] = ACTIONS(3496), - [sym_undefined] = ACTIONS(3496), - [anon_sym_AT] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3496), - [anon_sym_readonly] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(3496), - [anon_sym_set] = ACTIONS(3496), - [anon_sym_declare] = ACTIONS(3496), - [anon_sym_public] = ACTIONS(3496), - [anon_sym_private] = ACTIONS(3496), - [anon_sym_protected] = ACTIONS(3496), - [anon_sym_module] = ACTIONS(3496), - [anon_sym_any] = ACTIONS(3496), - [anon_sym_number] = ACTIONS(3496), - [anon_sym_boolean] = ACTIONS(3496), - [anon_sym_string] = ACTIONS(3496), - [anon_sym_symbol] = ACTIONS(3496), - [anon_sym_abstract] = ACTIONS(3496), - [anon_sym_interface] = ACTIONS(3496), - [anon_sym_enum] = ACTIONS(3496), + [ts_builtin_sym_end] = ACTIONS(3512), + [sym_identifier] = ACTIONS(3514), + [anon_sym_export] = ACTIONS(3514), + [anon_sym_default] = ACTIONS(3514), + [anon_sym_type] = ACTIONS(3514), + [anon_sym_namespace] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3512), + [anon_sym_RBRACE] = ACTIONS(3512), + [anon_sym_typeof] = ACTIONS(3514), + [anon_sym_import] = ACTIONS(3514), + [anon_sym_var] = ACTIONS(3514), + [anon_sym_let] = ACTIONS(3514), + [anon_sym_const] = ACTIONS(3514), + [anon_sym_BANG] = ACTIONS(3512), + [anon_sym_else] = ACTIONS(3514), + [anon_sym_if] = ACTIONS(3514), + [anon_sym_switch] = ACTIONS(3514), + [anon_sym_for] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3512), + [anon_sym_await] = ACTIONS(3514), + [anon_sym_while] = ACTIONS(3514), + [anon_sym_do] = ACTIONS(3514), + [anon_sym_try] = ACTIONS(3514), + [anon_sym_with] = ACTIONS(3514), + [anon_sym_break] = ACTIONS(3514), + [anon_sym_continue] = ACTIONS(3514), + [anon_sym_debugger] = ACTIONS(3514), + [anon_sym_return] = ACTIONS(3514), + [anon_sym_throw] = ACTIONS(3514), + [anon_sym_SEMI] = ACTIONS(3512), + [anon_sym_case] = ACTIONS(3514), + [anon_sym_yield] = ACTIONS(3514), + [anon_sym_LBRACK] = ACTIONS(3512), + [anon_sym_LT] = ACTIONS(3512), + [anon_sym_SLASH] = ACTIONS(3514), + [anon_sym_class] = ACTIONS(3514), + [anon_sym_async] = ACTIONS(3514), + [anon_sym_function] = ACTIONS(3514), + [anon_sym_new] = ACTIONS(3514), + [anon_sym_PLUS] = ACTIONS(3514), + [anon_sym_DASH] = ACTIONS(3514), + [anon_sym_TILDE] = ACTIONS(3512), + [anon_sym_void] = ACTIONS(3514), + [anon_sym_delete] = ACTIONS(3514), + [anon_sym_PLUS_PLUS] = ACTIONS(3512), + [anon_sym_DASH_DASH] = ACTIONS(3512), + [anon_sym_DQUOTE] = ACTIONS(3512), + [anon_sym_SQUOTE] = ACTIONS(3512), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3512), + [sym_number] = ACTIONS(3512), + [sym_this] = ACTIONS(3514), + [sym_super] = ACTIONS(3514), + [sym_true] = ACTIONS(3514), + [sym_false] = ACTIONS(3514), + [sym_null] = ACTIONS(3514), + [sym_undefined] = ACTIONS(3514), + [anon_sym_AT] = ACTIONS(3512), + [anon_sym_static] = ACTIONS(3514), + [anon_sym_readonly] = ACTIONS(3514), + [anon_sym_get] = ACTIONS(3514), + [anon_sym_set] = ACTIONS(3514), + [anon_sym_declare] = ACTIONS(3514), + [anon_sym_public] = ACTIONS(3514), + [anon_sym_private] = ACTIONS(3514), + [anon_sym_protected] = ACTIONS(3514), + [anon_sym_module] = ACTIONS(3514), + [anon_sym_any] = ACTIONS(3514), + [anon_sym_number] = ACTIONS(3514), + [anon_sym_boolean] = ACTIONS(3514), + [anon_sym_string] = ACTIONS(3514), + [anon_sym_symbol] = ACTIONS(3514), + [anon_sym_abstract] = ACTIONS(3514), + [anon_sym_interface] = ACTIONS(3514), + [anon_sym_enum] = ACTIONS(3514), }, [1201] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3516), + [sym_identifier] = ACTIONS(3518), + [anon_sym_export] = ACTIONS(3518), + [anon_sym_default] = ACTIONS(3518), + [anon_sym_type] = ACTIONS(3518), + [anon_sym_namespace] = ACTIONS(3518), + [anon_sym_LBRACE] = ACTIONS(3516), + [anon_sym_RBRACE] = ACTIONS(3516), + [anon_sym_typeof] = ACTIONS(3518), + [anon_sym_import] = ACTIONS(3518), + [anon_sym_var] = ACTIONS(3518), + [anon_sym_let] = ACTIONS(3518), + [anon_sym_const] = ACTIONS(3518), + [anon_sym_BANG] = ACTIONS(3516), + [anon_sym_else] = ACTIONS(3518), + [anon_sym_if] = ACTIONS(3518), + [anon_sym_switch] = ACTIONS(3518), + [anon_sym_for] = ACTIONS(3518), + [anon_sym_LPAREN] = ACTIONS(3516), + [anon_sym_await] = ACTIONS(3518), + [anon_sym_while] = ACTIONS(3518), + [anon_sym_do] = ACTIONS(3518), + [anon_sym_try] = ACTIONS(3518), + [anon_sym_with] = ACTIONS(3518), + [anon_sym_break] = ACTIONS(3518), + [anon_sym_continue] = ACTIONS(3518), + [anon_sym_debugger] = ACTIONS(3518), + [anon_sym_return] = ACTIONS(3518), + [anon_sym_throw] = ACTIONS(3518), + [anon_sym_SEMI] = ACTIONS(3516), + [anon_sym_case] = ACTIONS(3518), + [anon_sym_yield] = ACTIONS(3518), + [anon_sym_LBRACK] = ACTIONS(3516), + [anon_sym_LT] = ACTIONS(3516), + [anon_sym_SLASH] = ACTIONS(3518), + [anon_sym_class] = ACTIONS(3518), + [anon_sym_async] = ACTIONS(3518), + [anon_sym_function] = ACTIONS(3518), + [anon_sym_new] = ACTIONS(3518), + [anon_sym_PLUS] = ACTIONS(3518), + [anon_sym_DASH] = ACTIONS(3518), + [anon_sym_TILDE] = ACTIONS(3516), + [anon_sym_void] = ACTIONS(3518), + [anon_sym_delete] = ACTIONS(3518), + [anon_sym_PLUS_PLUS] = ACTIONS(3516), + [anon_sym_DASH_DASH] = ACTIONS(3516), + [anon_sym_DQUOTE] = ACTIONS(3516), + [anon_sym_SQUOTE] = ACTIONS(3516), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3516), + [sym_number] = ACTIONS(3516), + [sym_this] = ACTIONS(3518), + [sym_super] = ACTIONS(3518), + [sym_true] = ACTIONS(3518), + [sym_false] = ACTIONS(3518), + [sym_null] = ACTIONS(3518), + [sym_undefined] = ACTIONS(3518), + [anon_sym_AT] = ACTIONS(3516), + [anon_sym_static] = ACTIONS(3518), + [anon_sym_readonly] = ACTIONS(3518), + [anon_sym_get] = ACTIONS(3518), + [anon_sym_set] = ACTIONS(3518), + [anon_sym_declare] = ACTIONS(3518), + [anon_sym_public] = ACTIONS(3518), + [anon_sym_private] = ACTIONS(3518), + [anon_sym_protected] = ACTIONS(3518), + [anon_sym_module] = ACTIONS(3518), + [anon_sym_any] = ACTIONS(3518), + [anon_sym_number] = ACTIONS(3518), + [anon_sym_boolean] = ACTIONS(3518), + [anon_sym_string] = ACTIONS(3518), + [anon_sym_symbol] = ACTIONS(3518), + [anon_sym_abstract] = ACTIONS(3518), + [anon_sym_interface] = ACTIONS(3518), + [anon_sym_enum] = ACTIONS(3518), }, [1202] = { - [ts_builtin_sym_end] = ACTIONS(3494), - [sym_identifier] = ACTIONS(3496), - [anon_sym_export] = ACTIONS(3496), - [anon_sym_default] = ACTIONS(3496), - [anon_sym_type] = ACTIONS(3496), - [anon_sym_namespace] = ACTIONS(3496), - [anon_sym_LBRACE] = ACTIONS(3494), - [anon_sym_RBRACE] = ACTIONS(3494), - [anon_sym_typeof] = ACTIONS(3496), - [anon_sym_import] = ACTIONS(3496), - [anon_sym_var] = ACTIONS(3496), - [anon_sym_let] = ACTIONS(3496), - [anon_sym_const] = ACTIONS(3496), - [anon_sym_BANG] = ACTIONS(3494), - [anon_sym_else] = ACTIONS(3496), - [anon_sym_if] = ACTIONS(3496), - [anon_sym_switch] = ACTIONS(3496), - [anon_sym_for] = ACTIONS(3496), - [anon_sym_LPAREN] = ACTIONS(3494), - [anon_sym_await] = ACTIONS(3496), - [anon_sym_while] = ACTIONS(3496), - [anon_sym_do] = ACTIONS(3496), - [anon_sym_try] = ACTIONS(3496), - [anon_sym_with] = ACTIONS(3496), - [anon_sym_break] = ACTIONS(3496), - [anon_sym_continue] = ACTIONS(3496), - [anon_sym_debugger] = ACTIONS(3496), - [anon_sym_return] = ACTIONS(3496), - [anon_sym_throw] = ACTIONS(3496), - [anon_sym_SEMI] = ACTIONS(3494), - [anon_sym_case] = ACTIONS(3496), - [anon_sym_yield] = ACTIONS(3496), - [anon_sym_LBRACK] = ACTIONS(3494), - [anon_sym_LT] = ACTIONS(3494), - [anon_sym_SLASH] = ACTIONS(3496), - [anon_sym_class] = ACTIONS(3496), - [anon_sym_async] = ACTIONS(3496), - [anon_sym_function] = ACTIONS(3496), - [anon_sym_new] = ACTIONS(3496), - [anon_sym_PLUS] = ACTIONS(3496), - [anon_sym_DASH] = ACTIONS(3496), - [anon_sym_TILDE] = ACTIONS(3494), - [anon_sym_void] = ACTIONS(3496), - [anon_sym_delete] = ACTIONS(3496), - [anon_sym_PLUS_PLUS] = ACTIONS(3494), - [anon_sym_DASH_DASH] = ACTIONS(3494), - [anon_sym_DQUOTE] = ACTIONS(3494), - [anon_sym_SQUOTE] = ACTIONS(3494), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3494), - [sym_number] = ACTIONS(3494), - [sym_this] = ACTIONS(3496), - [sym_super] = ACTIONS(3496), - [sym_true] = ACTIONS(3496), - [sym_false] = ACTIONS(3496), - [sym_null] = ACTIONS(3496), - [sym_undefined] = ACTIONS(3496), - [anon_sym_AT] = ACTIONS(3494), - [anon_sym_static] = ACTIONS(3496), - [anon_sym_readonly] = ACTIONS(3496), - [anon_sym_get] = ACTIONS(3496), - [anon_sym_set] = ACTIONS(3496), - [anon_sym_declare] = ACTIONS(3496), - [anon_sym_public] = ACTIONS(3496), - [anon_sym_private] = ACTIONS(3496), - [anon_sym_protected] = ACTIONS(3496), - [anon_sym_module] = ACTIONS(3496), - [anon_sym_any] = ACTIONS(3496), - [anon_sym_number] = ACTIONS(3496), - [anon_sym_boolean] = ACTIONS(3496), - [anon_sym_string] = ACTIONS(3496), - [anon_sym_symbol] = ACTIONS(3496), - [anon_sym_abstract] = ACTIONS(3496), - [anon_sym_interface] = ACTIONS(3496), - [anon_sym_enum] = ACTIONS(3496), + [ts_builtin_sym_end] = ACTIONS(3520), + [sym_identifier] = ACTIONS(3522), + [anon_sym_export] = ACTIONS(3522), + [anon_sym_default] = ACTIONS(3522), + [anon_sym_type] = ACTIONS(3522), + [anon_sym_namespace] = ACTIONS(3522), + [anon_sym_LBRACE] = ACTIONS(3520), + [anon_sym_RBRACE] = ACTIONS(3520), + [anon_sym_typeof] = ACTIONS(3522), + [anon_sym_import] = ACTIONS(3522), + [anon_sym_var] = ACTIONS(3522), + [anon_sym_let] = ACTIONS(3522), + [anon_sym_const] = ACTIONS(3522), + [anon_sym_BANG] = ACTIONS(3520), + [anon_sym_else] = ACTIONS(3522), + [anon_sym_if] = ACTIONS(3522), + [anon_sym_switch] = ACTIONS(3522), + [anon_sym_for] = ACTIONS(3522), + [anon_sym_LPAREN] = ACTIONS(3520), + [anon_sym_await] = ACTIONS(3522), + [anon_sym_while] = ACTIONS(3522), + [anon_sym_do] = ACTIONS(3522), + [anon_sym_try] = ACTIONS(3522), + [anon_sym_with] = ACTIONS(3522), + [anon_sym_break] = ACTIONS(3522), + [anon_sym_continue] = ACTIONS(3522), + [anon_sym_debugger] = ACTIONS(3522), + [anon_sym_return] = ACTIONS(3522), + [anon_sym_throw] = ACTIONS(3522), + [anon_sym_SEMI] = ACTIONS(3520), + [anon_sym_case] = ACTIONS(3522), + [anon_sym_yield] = ACTIONS(3522), + [anon_sym_LBRACK] = ACTIONS(3520), + [anon_sym_LT] = ACTIONS(3520), + [anon_sym_SLASH] = ACTIONS(3522), + [anon_sym_class] = ACTIONS(3522), + [anon_sym_async] = ACTIONS(3522), + [anon_sym_function] = ACTIONS(3522), + [anon_sym_new] = ACTIONS(3522), + [anon_sym_PLUS] = ACTIONS(3522), + [anon_sym_DASH] = ACTIONS(3522), + [anon_sym_TILDE] = ACTIONS(3520), + [anon_sym_void] = ACTIONS(3522), + [anon_sym_delete] = ACTIONS(3522), + [anon_sym_PLUS_PLUS] = ACTIONS(3520), + [anon_sym_DASH_DASH] = ACTIONS(3520), + [anon_sym_DQUOTE] = ACTIONS(3520), + [anon_sym_SQUOTE] = ACTIONS(3520), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3520), + [sym_number] = ACTIONS(3520), + [sym_this] = ACTIONS(3522), + [sym_super] = ACTIONS(3522), + [sym_true] = ACTIONS(3522), + [sym_false] = ACTIONS(3522), + [sym_null] = ACTIONS(3522), + [sym_undefined] = ACTIONS(3522), + [anon_sym_AT] = ACTIONS(3520), + [anon_sym_static] = ACTIONS(3522), + [anon_sym_readonly] = ACTIONS(3522), + [anon_sym_get] = ACTIONS(3522), + [anon_sym_set] = ACTIONS(3522), + [anon_sym_declare] = ACTIONS(3522), + [anon_sym_public] = ACTIONS(3522), + [anon_sym_private] = ACTIONS(3522), + [anon_sym_protected] = ACTIONS(3522), + [anon_sym_module] = ACTIONS(3522), + [anon_sym_any] = ACTIONS(3522), + [anon_sym_number] = ACTIONS(3522), + [anon_sym_boolean] = ACTIONS(3522), + [anon_sym_string] = ACTIONS(3522), + [anon_sym_symbol] = ACTIONS(3522), + [anon_sym_abstract] = ACTIONS(3522), + [anon_sym_interface] = ACTIONS(3522), + [anon_sym_enum] = ACTIONS(3522), }, [1203] = { - [ts_builtin_sym_end] = ACTIONS(3498), - [sym_identifier] = ACTIONS(3500), - [anon_sym_export] = ACTIONS(3500), - [anon_sym_default] = ACTIONS(3500), - [anon_sym_type] = ACTIONS(3500), - [anon_sym_namespace] = ACTIONS(3500), - [anon_sym_LBRACE] = ACTIONS(3498), - [anon_sym_RBRACE] = ACTIONS(3498), - [anon_sym_typeof] = ACTIONS(3500), - [anon_sym_import] = ACTIONS(3500), - [anon_sym_var] = ACTIONS(3500), - [anon_sym_let] = ACTIONS(3500), - [anon_sym_const] = ACTIONS(3500), - [anon_sym_BANG] = ACTIONS(3498), - [anon_sym_else] = ACTIONS(3500), - [anon_sym_if] = ACTIONS(3500), - [anon_sym_switch] = ACTIONS(3500), - [anon_sym_for] = ACTIONS(3500), - [anon_sym_LPAREN] = ACTIONS(3498), - [anon_sym_await] = ACTIONS(3500), - [anon_sym_while] = ACTIONS(3500), - [anon_sym_do] = ACTIONS(3500), - [anon_sym_try] = ACTIONS(3500), - [anon_sym_with] = ACTIONS(3500), - [anon_sym_break] = ACTIONS(3500), - [anon_sym_continue] = ACTIONS(3500), - [anon_sym_debugger] = ACTIONS(3500), - [anon_sym_return] = ACTIONS(3500), - [anon_sym_throw] = ACTIONS(3500), - [anon_sym_SEMI] = ACTIONS(3498), - [anon_sym_case] = ACTIONS(3500), - [anon_sym_yield] = ACTIONS(3500), - [anon_sym_LBRACK] = ACTIONS(3498), - [anon_sym_LT] = ACTIONS(3498), - [anon_sym_SLASH] = ACTIONS(3500), - [anon_sym_class] = ACTIONS(3500), - [anon_sym_async] = ACTIONS(3500), - [anon_sym_function] = ACTIONS(3500), - [anon_sym_new] = ACTIONS(3500), - [anon_sym_PLUS] = ACTIONS(3500), - [anon_sym_DASH] = ACTIONS(3500), - [anon_sym_TILDE] = ACTIONS(3498), - [anon_sym_void] = ACTIONS(3500), - [anon_sym_delete] = ACTIONS(3500), - [anon_sym_PLUS_PLUS] = ACTIONS(3498), - [anon_sym_DASH_DASH] = ACTIONS(3498), - [anon_sym_DQUOTE] = ACTIONS(3498), - [anon_sym_SQUOTE] = ACTIONS(3498), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3498), - [sym_number] = ACTIONS(3498), - [sym_this] = ACTIONS(3500), - [sym_super] = ACTIONS(3500), - [sym_true] = ACTIONS(3500), - [sym_false] = ACTIONS(3500), - [sym_null] = ACTIONS(3500), - [sym_undefined] = ACTIONS(3500), - [anon_sym_AT] = ACTIONS(3498), - [anon_sym_static] = ACTIONS(3500), - [anon_sym_readonly] = ACTIONS(3500), - [anon_sym_get] = ACTIONS(3500), - [anon_sym_set] = ACTIONS(3500), - [anon_sym_declare] = ACTIONS(3500), - [anon_sym_public] = ACTIONS(3500), - [anon_sym_private] = ACTIONS(3500), - [anon_sym_protected] = ACTIONS(3500), - [anon_sym_module] = ACTIONS(3500), - [anon_sym_any] = ACTIONS(3500), - [anon_sym_number] = ACTIONS(3500), - [anon_sym_boolean] = ACTIONS(3500), - [anon_sym_string] = ACTIONS(3500), - [anon_sym_symbol] = ACTIONS(3500), - [anon_sym_abstract] = ACTIONS(3500), - [anon_sym_interface] = ACTIONS(3500), - [anon_sym_enum] = ACTIONS(3500), + [ts_builtin_sym_end] = ACTIONS(3524), + [sym_identifier] = ACTIONS(3526), + [anon_sym_export] = ACTIONS(3526), + [anon_sym_default] = ACTIONS(3526), + [anon_sym_type] = ACTIONS(3526), + [anon_sym_namespace] = ACTIONS(3526), + [anon_sym_LBRACE] = ACTIONS(3524), + [anon_sym_RBRACE] = ACTIONS(3524), + [anon_sym_typeof] = ACTIONS(3526), + [anon_sym_import] = ACTIONS(3526), + [anon_sym_var] = ACTIONS(3526), + [anon_sym_let] = ACTIONS(3526), + [anon_sym_const] = ACTIONS(3526), + [anon_sym_BANG] = ACTIONS(3524), + [anon_sym_else] = ACTIONS(3526), + [anon_sym_if] = ACTIONS(3526), + [anon_sym_switch] = ACTIONS(3526), + [anon_sym_for] = ACTIONS(3526), + [anon_sym_LPAREN] = ACTIONS(3524), + [anon_sym_await] = ACTIONS(3526), + [anon_sym_while] = ACTIONS(3526), + [anon_sym_do] = ACTIONS(3526), + [anon_sym_try] = ACTIONS(3526), + [anon_sym_with] = ACTIONS(3526), + [anon_sym_break] = ACTIONS(3526), + [anon_sym_continue] = ACTIONS(3526), + [anon_sym_debugger] = ACTIONS(3526), + [anon_sym_return] = ACTIONS(3526), + [anon_sym_throw] = ACTIONS(3526), + [anon_sym_SEMI] = ACTIONS(3524), + [anon_sym_case] = ACTIONS(3526), + [anon_sym_yield] = ACTIONS(3526), + [anon_sym_LBRACK] = ACTIONS(3524), + [anon_sym_LT] = ACTIONS(3524), + [anon_sym_SLASH] = ACTIONS(3526), + [anon_sym_class] = ACTIONS(3526), + [anon_sym_async] = ACTIONS(3526), + [anon_sym_function] = ACTIONS(3526), + [anon_sym_new] = ACTIONS(3526), + [anon_sym_PLUS] = ACTIONS(3526), + [anon_sym_DASH] = ACTIONS(3526), + [anon_sym_TILDE] = ACTIONS(3524), + [anon_sym_void] = ACTIONS(3526), + [anon_sym_delete] = ACTIONS(3526), + [anon_sym_PLUS_PLUS] = ACTIONS(3524), + [anon_sym_DASH_DASH] = ACTIONS(3524), + [anon_sym_DQUOTE] = ACTIONS(3524), + [anon_sym_SQUOTE] = ACTIONS(3524), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3524), + [sym_number] = ACTIONS(3524), + [sym_this] = ACTIONS(3526), + [sym_super] = ACTIONS(3526), + [sym_true] = ACTIONS(3526), + [sym_false] = ACTIONS(3526), + [sym_null] = ACTIONS(3526), + [sym_undefined] = ACTIONS(3526), + [anon_sym_AT] = ACTIONS(3524), + [anon_sym_static] = ACTIONS(3526), + [anon_sym_readonly] = ACTIONS(3526), + [anon_sym_get] = ACTIONS(3526), + [anon_sym_set] = ACTIONS(3526), + [anon_sym_declare] = ACTIONS(3526), + [anon_sym_public] = ACTIONS(3526), + [anon_sym_private] = ACTIONS(3526), + [anon_sym_protected] = ACTIONS(3526), + [anon_sym_module] = ACTIONS(3526), + [anon_sym_any] = ACTIONS(3526), + [anon_sym_number] = ACTIONS(3526), + [anon_sym_boolean] = ACTIONS(3526), + [anon_sym_string] = ACTIONS(3526), + [anon_sym_symbol] = ACTIONS(3526), + [anon_sym_abstract] = ACTIONS(3526), + [anon_sym_interface] = ACTIONS(3526), + [anon_sym_enum] = ACTIONS(3526), }, [1204] = { - [ts_builtin_sym_end] = ACTIONS(3502), - [sym_identifier] = ACTIONS(3504), - [anon_sym_export] = ACTIONS(3504), - [anon_sym_default] = ACTIONS(3504), - [anon_sym_type] = ACTIONS(3504), - [anon_sym_namespace] = ACTIONS(3504), - [anon_sym_LBRACE] = ACTIONS(3502), - [anon_sym_RBRACE] = ACTIONS(3502), - [anon_sym_typeof] = ACTIONS(3504), - [anon_sym_import] = ACTIONS(3504), - [anon_sym_var] = ACTIONS(3504), - [anon_sym_let] = ACTIONS(3504), - [anon_sym_const] = ACTIONS(3504), - [anon_sym_BANG] = ACTIONS(3502), - [anon_sym_else] = ACTIONS(3504), - [anon_sym_if] = ACTIONS(3504), - [anon_sym_switch] = ACTIONS(3504), - [anon_sym_for] = ACTIONS(3504), - [anon_sym_LPAREN] = ACTIONS(3502), - [anon_sym_await] = ACTIONS(3504), - [anon_sym_while] = ACTIONS(3504), - [anon_sym_do] = ACTIONS(3504), - [anon_sym_try] = ACTIONS(3504), - [anon_sym_with] = ACTIONS(3504), - [anon_sym_break] = ACTIONS(3504), - [anon_sym_continue] = ACTIONS(3504), - [anon_sym_debugger] = ACTIONS(3504), - [anon_sym_return] = ACTIONS(3504), - [anon_sym_throw] = ACTIONS(3504), - [anon_sym_SEMI] = ACTIONS(3502), - [anon_sym_case] = ACTIONS(3504), - [anon_sym_yield] = ACTIONS(3504), - [anon_sym_LBRACK] = ACTIONS(3502), - [anon_sym_LT] = ACTIONS(3502), - [anon_sym_SLASH] = ACTIONS(3504), - [anon_sym_class] = ACTIONS(3504), - [anon_sym_async] = ACTIONS(3504), - [anon_sym_function] = ACTIONS(3504), - [anon_sym_new] = ACTIONS(3504), - [anon_sym_PLUS] = ACTIONS(3504), - [anon_sym_DASH] = ACTIONS(3504), - [anon_sym_TILDE] = ACTIONS(3502), - [anon_sym_void] = ACTIONS(3504), - [anon_sym_delete] = ACTIONS(3504), - [anon_sym_PLUS_PLUS] = ACTIONS(3502), - [anon_sym_DASH_DASH] = ACTIONS(3502), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3502), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3502), - [sym_number] = ACTIONS(3502), - [sym_this] = ACTIONS(3504), - [sym_super] = ACTIONS(3504), - [sym_true] = ACTIONS(3504), - [sym_false] = ACTIONS(3504), - [sym_null] = ACTIONS(3504), - [sym_undefined] = ACTIONS(3504), - [anon_sym_AT] = ACTIONS(3502), - [anon_sym_static] = ACTIONS(3504), - [anon_sym_readonly] = ACTIONS(3504), - [anon_sym_get] = ACTIONS(3504), - [anon_sym_set] = ACTIONS(3504), - [anon_sym_declare] = ACTIONS(3504), - [anon_sym_public] = ACTIONS(3504), - [anon_sym_private] = ACTIONS(3504), - [anon_sym_protected] = ACTIONS(3504), - [anon_sym_module] = ACTIONS(3504), - [anon_sym_any] = ACTIONS(3504), - [anon_sym_number] = ACTIONS(3504), - [anon_sym_boolean] = ACTIONS(3504), - [anon_sym_string] = ACTIONS(3504), - [anon_sym_symbol] = ACTIONS(3504), - [anon_sym_abstract] = ACTIONS(3504), - [anon_sym_interface] = ACTIONS(3504), - [anon_sym_enum] = ACTIONS(3504), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1205] = { - [ts_builtin_sym_end] = ACTIONS(3506), - [sym_identifier] = ACTIONS(3508), - [anon_sym_export] = ACTIONS(3508), - [anon_sym_default] = ACTIONS(3508), - [anon_sym_type] = ACTIONS(3508), - [anon_sym_namespace] = ACTIONS(3508), - [anon_sym_LBRACE] = ACTIONS(3506), - [anon_sym_RBRACE] = ACTIONS(3506), - [anon_sym_typeof] = ACTIONS(3508), - [anon_sym_import] = ACTIONS(3508), - [anon_sym_var] = ACTIONS(3508), - [anon_sym_let] = ACTIONS(3508), - [anon_sym_const] = ACTIONS(3508), - [anon_sym_BANG] = ACTIONS(3506), - [anon_sym_else] = ACTIONS(3508), - [anon_sym_if] = ACTIONS(3508), - [anon_sym_switch] = ACTIONS(3508), - [anon_sym_for] = ACTIONS(3508), - [anon_sym_LPAREN] = ACTIONS(3506), - [anon_sym_await] = ACTIONS(3508), - [anon_sym_while] = ACTIONS(3508), - [anon_sym_do] = ACTIONS(3508), - [anon_sym_try] = ACTIONS(3508), - [anon_sym_with] = ACTIONS(3508), - [anon_sym_break] = ACTIONS(3508), - [anon_sym_continue] = ACTIONS(3508), - [anon_sym_debugger] = ACTIONS(3508), - [anon_sym_return] = ACTIONS(3508), - [anon_sym_throw] = ACTIONS(3508), - [anon_sym_SEMI] = ACTIONS(3506), - [anon_sym_case] = ACTIONS(3508), - [anon_sym_yield] = ACTIONS(3508), - [anon_sym_LBRACK] = ACTIONS(3506), - [anon_sym_LT] = ACTIONS(3506), - [anon_sym_SLASH] = ACTIONS(3508), - [anon_sym_class] = ACTIONS(3508), - [anon_sym_async] = ACTIONS(3508), - [anon_sym_function] = ACTIONS(3508), - [anon_sym_new] = ACTIONS(3508), - [anon_sym_PLUS] = ACTIONS(3508), - [anon_sym_DASH] = ACTIONS(3508), - [anon_sym_TILDE] = ACTIONS(3506), - [anon_sym_void] = ACTIONS(3508), - [anon_sym_delete] = ACTIONS(3508), - [anon_sym_PLUS_PLUS] = ACTIONS(3506), - [anon_sym_DASH_DASH] = ACTIONS(3506), - [anon_sym_DQUOTE] = ACTIONS(3506), - [anon_sym_SQUOTE] = ACTIONS(3506), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3506), - [sym_number] = ACTIONS(3506), - [sym_this] = ACTIONS(3508), - [sym_super] = ACTIONS(3508), - [sym_true] = ACTIONS(3508), - [sym_false] = ACTIONS(3508), - [sym_null] = ACTIONS(3508), - [sym_undefined] = ACTIONS(3508), - [anon_sym_AT] = ACTIONS(3506), - [anon_sym_static] = ACTIONS(3508), - [anon_sym_readonly] = ACTIONS(3508), - [anon_sym_get] = ACTIONS(3508), - [anon_sym_set] = ACTIONS(3508), - [anon_sym_declare] = ACTIONS(3508), - [anon_sym_public] = ACTIONS(3508), - [anon_sym_private] = ACTIONS(3508), - [anon_sym_protected] = ACTIONS(3508), - [anon_sym_module] = ACTIONS(3508), - [anon_sym_any] = ACTIONS(3508), - [anon_sym_number] = ACTIONS(3508), - [anon_sym_boolean] = ACTIONS(3508), - [anon_sym_string] = ACTIONS(3508), - [anon_sym_symbol] = ACTIONS(3508), - [anon_sym_abstract] = ACTIONS(3508), - [anon_sym_interface] = ACTIONS(3508), - [anon_sym_enum] = ACTIONS(3508), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1206] = { - [ts_builtin_sym_end] = ACTIONS(3510), - [sym_identifier] = ACTIONS(3512), - [anon_sym_export] = ACTIONS(3512), - [anon_sym_default] = ACTIONS(3512), - [anon_sym_type] = ACTIONS(3512), - [anon_sym_namespace] = ACTIONS(3512), - [anon_sym_LBRACE] = ACTIONS(3510), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_typeof] = ACTIONS(3512), - [anon_sym_import] = ACTIONS(3512), - [anon_sym_var] = ACTIONS(3512), - [anon_sym_let] = ACTIONS(3512), - [anon_sym_const] = ACTIONS(3512), - [anon_sym_BANG] = ACTIONS(3510), - [anon_sym_else] = ACTIONS(3512), - [anon_sym_if] = ACTIONS(3512), - [anon_sym_switch] = ACTIONS(3512), - [anon_sym_for] = ACTIONS(3512), - [anon_sym_LPAREN] = ACTIONS(3510), - [anon_sym_await] = ACTIONS(3512), - [anon_sym_while] = ACTIONS(3512), - [anon_sym_do] = ACTIONS(3512), - [anon_sym_try] = ACTIONS(3512), - [anon_sym_with] = ACTIONS(3512), - [anon_sym_break] = ACTIONS(3512), - [anon_sym_continue] = ACTIONS(3512), - [anon_sym_debugger] = ACTIONS(3512), - [anon_sym_return] = ACTIONS(3512), - [anon_sym_throw] = ACTIONS(3512), - [anon_sym_SEMI] = ACTIONS(3510), - [anon_sym_case] = ACTIONS(3512), - [anon_sym_yield] = ACTIONS(3512), - [anon_sym_LBRACK] = ACTIONS(3510), - [anon_sym_LT] = ACTIONS(3510), - [anon_sym_SLASH] = ACTIONS(3512), - [anon_sym_class] = ACTIONS(3512), - [anon_sym_async] = ACTIONS(3512), - [anon_sym_function] = ACTIONS(3512), - [anon_sym_new] = ACTIONS(3512), - [anon_sym_PLUS] = ACTIONS(3512), - [anon_sym_DASH] = ACTIONS(3512), - [anon_sym_TILDE] = ACTIONS(3510), - [anon_sym_void] = ACTIONS(3512), - [anon_sym_delete] = ACTIONS(3512), - [anon_sym_PLUS_PLUS] = ACTIONS(3510), - [anon_sym_DASH_DASH] = ACTIONS(3510), - [anon_sym_DQUOTE] = ACTIONS(3510), - [anon_sym_SQUOTE] = ACTIONS(3510), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3510), - [sym_number] = ACTIONS(3510), - [sym_this] = ACTIONS(3512), - [sym_super] = ACTIONS(3512), - [sym_true] = ACTIONS(3512), - [sym_false] = ACTIONS(3512), - [sym_null] = ACTIONS(3512), - [sym_undefined] = ACTIONS(3512), - [anon_sym_AT] = ACTIONS(3510), - [anon_sym_static] = ACTIONS(3512), - [anon_sym_readonly] = ACTIONS(3512), - [anon_sym_get] = ACTIONS(3512), - [anon_sym_set] = ACTIONS(3512), - [anon_sym_declare] = ACTIONS(3512), - [anon_sym_public] = ACTIONS(3512), - [anon_sym_private] = ACTIONS(3512), - [anon_sym_protected] = ACTIONS(3512), - [anon_sym_module] = ACTIONS(3512), - [anon_sym_any] = ACTIONS(3512), - [anon_sym_number] = ACTIONS(3512), - [anon_sym_boolean] = ACTIONS(3512), - [anon_sym_string] = ACTIONS(3512), - [anon_sym_symbol] = ACTIONS(3512), - [anon_sym_abstract] = ACTIONS(3512), - [anon_sym_interface] = ACTIONS(3512), - [anon_sym_enum] = ACTIONS(3512), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1207] = { - [ts_builtin_sym_end] = ACTIONS(3514), - [sym_identifier] = ACTIONS(3516), - [anon_sym_export] = ACTIONS(3516), - [anon_sym_default] = ACTIONS(3516), - [anon_sym_type] = ACTIONS(3516), - [anon_sym_namespace] = ACTIONS(3516), - [anon_sym_LBRACE] = ACTIONS(3514), - [anon_sym_RBRACE] = ACTIONS(3514), - [anon_sym_typeof] = ACTIONS(3516), - [anon_sym_import] = ACTIONS(3516), - [anon_sym_var] = ACTIONS(3516), - [anon_sym_let] = ACTIONS(3516), - [anon_sym_const] = ACTIONS(3516), - [anon_sym_BANG] = ACTIONS(3514), - [anon_sym_else] = ACTIONS(3516), - [anon_sym_if] = ACTIONS(3516), - [anon_sym_switch] = ACTIONS(3516), - [anon_sym_for] = ACTIONS(3516), - [anon_sym_LPAREN] = ACTIONS(3514), - [anon_sym_await] = ACTIONS(3516), - [anon_sym_while] = ACTIONS(3516), - [anon_sym_do] = ACTIONS(3516), - [anon_sym_try] = ACTIONS(3516), - [anon_sym_with] = ACTIONS(3516), - [anon_sym_break] = ACTIONS(3516), - [anon_sym_continue] = ACTIONS(3516), - [anon_sym_debugger] = ACTIONS(3516), - [anon_sym_return] = ACTIONS(3516), - [anon_sym_throw] = ACTIONS(3516), - [anon_sym_SEMI] = ACTIONS(3514), - [anon_sym_case] = ACTIONS(3516), - [anon_sym_yield] = ACTIONS(3516), - [anon_sym_LBRACK] = ACTIONS(3514), - [anon_sym_LT] = ACTIONS(3514), - [anon_sym_SLASH] = ACTIONS(3516), - [anon_sym_class] = ACTIONS(3516), - [anon_sym_async] = ACTIONS(3516), - [anon_sym_function] = ACTIONS(3516), - [anon_sym_new] = ACTIONS(3516), - [anon_sym_PLUS] = ACTIONS(3516), - [anon_sym_DASH] = ACTIONS(3516), - [anon_sym_TILDE] = ACTIONS(3514), - [anon_sym_void] = ACTIONS(3516), - [anon_sym_delete] = ACTIONS(3516), - [anon_sym_PLUS_PLUS] = ACTIONS(3514), - [anon_sym_DASH_DASH] = ACTIONS(3514), - [anon_sym_DQUOTE] = ACTIONS(3514), - [anon_sym_SQUOTE] = ACTIONS(3514), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3514), - [sym_number] = ACTIONS(3514), - [sym_this] = ACTIONS(3516), - [sym_super] = ACTIONS(3516), - [sym_true] = ACTIONS(3516), - [sym_false] = ACTIONS(3516), - [sym_null] = ACTIONS(3516), - [sym_undefined] = ACTIONS(3516), - [anon_sym_AT] = ACTIONS(3514), - [anon_sym_static] = ACTIONS(3516), - [anon_sym_readonly] = ACTIONS(3516), - [anon_sym_get] = ACTIONS(3516), - [anon_sym_set] = ACTIONS(3516), - [anon_sym_declare] = ACTIONS(3516), - [anon_sym_public] = ACTIONS(3516), - [anon_sym_private] = ACTIONS(3516), - [anon_sym_protected] = ACTIONS(3516), - [anon_sym_module] = ACTIONS(3516), - [anon_sym_any] = ACTIONS(3516), - [anon_sym_number] = ACTIONS(3516), - [anon_sym_boolean] = ACTIONS(3516), - [anon_sym_string] = ACTIONS(3516), - [anon_sym_symbol] = ACTIONS(3516), - [anon_sym_abstract] = ACTIONS(3516), - [anon_sym_interface] = ACTIONS(3516), - [anon_sym_enum] = ACTIONS(3516), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1208] = { - [ts_builtin_sym_end] = ACTIONS(3518), - [sym_identifier] = ACTIONS(3520), - [anon_sym_export] = ACTIONS(3520), - [anon_sym_default] = ACTIONS(3520), - [anon_sym_type] = ACTIONS(3520), - [anon_sym_namespace] = ACTIONS(3520), - [anon_sym_LBRACE] = ACTIONS(3518), - [anon_sym_RBRACE] = ACTIONS(3518), - [anon_sym_typeof] = ACTIONS(3520), - [anon_sym_import] = ACTIONS(3520), - [anon_sym_var] = ACTIONS(3520), - [anon_sym_let] = ACTIONS(3520), - [anon_sym_const] = ACTIONS(3520), - [anon_sym_BANG] = ACTIONS(3518), - [anon_sym_else] = ACTIONS(3520), - [anon_sym_if] = ACTIONS(3520), - [anon_sym_switch] = ACTIONS(3520), - [anon_sym_for] = ACTIONS(3520), - [anon_sym_LPAREN] = ACTIONS(3518), - [anon_sym_await] = ACTIONS(3520), - [anon_sym_while] = ACTIONS(3520), - [anon_sym_do] = ACTIONS(3520), - [anon_sym_try] = ACTIONS(3520), - [anon_sym_with] = ACTIONS(3520), - [anon_sym_break] = ACTIONS(3520), - [anon_sym_continue] = ACTIONS(3520), - [anon_sym_debugger] = ACTIONS(3520), - [anon_sym_return] = ACTIONS(3520), - [anon_sym_throw] = ACTIONS(3520), - [anon_sym_SEMI] = ACTIONS(3518), - [anon_sym_case] = ACTIONS(3520), - [anon_sym_yield] = ACTIONS(3520), - [anon_sym_LBRACK] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(3518), - [anon_sym_SLASH] = ACTIONS(3520), - [anon_sym_class] = ACTIONS(3520), - [anon_sym_async] = ACTIONS(3520), - [anon_sym_function] = ACTIONS(3520), - [anon_sym_new] = ACTIONS(3520), - [anon_sym_PLUS] = ACTIONS(3520), - [anon_sym_DASH] = ACTIONS(3520), - [anon_sym_TILDE] = ACTIONS(3518), - [anon_sym_void] = ACTIONS(3520), - [anon_sym_delete] = ACTIONS(3520), - [anon_sym_PLUS_PLUS] = ACTIONS(3518), - [anon_sym_DASH_DASH] = ACTIONS(3518), - [anon_sym_DQUOTE] = ACTIONS(3518), - [anon_sym_SQUOTE] = ACTIONS(3518), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3518), - [sym_number] = ACTIONS(3518), - [sym_this] = ACTIONS(3520), - [sym_super] = ACTIONS(3520), - [sym_true] = ACTIONS(3520), - [sym_false] = ACTIONS(3520), - [sym_null] = ACTIONS(3520), - [sym_undefined] = ACTIONS(3520), - [anon_sym_AT] = ACTIONS(3518), - [anon_sym_static] = ACTIONS(3520), - [anon_sym_readonly] = ACTIONS(3520), - [anon_sym_get] = ACTIONS(3520), - [anon_sym_set] = ACTIONS(3520), - [anon_sym_declare] = ACTIONS(3520), - [anon_sym_public] = ACTIONS(3520), - [anon_sym_private] = ACTIONS(3520), - [anon_sym_protected] = ACTIONS(3520), - [anon_sym_module] = ACTIONS(3520), - [anon_sym_any] = ACTIONS(3520), - [anon_sym_number] = ACTIONS(3520), - [anon_sym_boolean] = ACTIONS(3520), - [anon_sym_string] = ACTIONS(3520), - [anon_sym_symbol] = ACTIONS(3520), - [anon_sym_abstract] = ACTIONS(3520), - [anon_sym_interface] = ACTIONS(3520), - [anon_sym_enum] = ACTIONS(3520), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1209] = { - [ts_builtin_sym_end] = ACTIONS(3522), - [sym_identifier] = ACTIONS(3524), - [anon_sym_export] = ACTIONS(3524), - [anon_sym_default] = ACTIONS(3524), - [anon_sym_type] = ACTIONS(3524), - [anon_sym_namespace] = ACTIONS(3524), - [anon_sym_LBRACE] = ACTIONS(3522), - [anon_sym_RBRACE] = ACTIONS(3522), - [anon_sym_typeof] = ACTIONS(3524), - [anon_sym_import] = ACTIONS(3524), - [anon_sym_var] = ACTIONS(3524), - [anon_sym_let] = ACTIONS(3524), - [anon_sym_const] = ACTIONS(3524), - [anon_sym_BANG] = ACTIONS(3522), - [anon_sym_else] = ACTIONS(3524), - [anon_sym_if] = ACTIONS(3524), - [anon_sym_switch] = ACTIONS(3524), - [anon_sym_for] = ACTIONS(3524), - [anon_sym_LPAREN] = ACTIONS(3522), - [anon_sym_await] = ACTIONS(3524), - [anon_sym_while] = ACTIONS(3524), - [anon_sym_do] = ACTIONS(3524), - [anon_sym_try] = ACTIONS(3524), - [anon_sym_with] = ACTIONS(3524), - [anon_sym_break] = ACTIONS(3524), - [anon_sym_continue] = ACTIONS(3524), - [anon_sym_debugger] = ACTIONS(3524), - [anon_sym_return] = ACTIONS(3524), - [anon_sym_throw] = ACTIONS(3524), - [anon_sym_SEMI] = ACTIONS(3522), - [anon_sym_case] = ACTIONS(3524), - [anon_sym_yield] = ACTIONS(3524), - [anon_sym_LBRACK] = ACTIONS(3522), - [anon_sym_LT] = ACTIONS(3522), - [anon_sym_SLASH] = ACTIONS(3524), - [anon_sym_class] = ACTIONS(3524), - [anon_sym_async] = ACTIONS(3524), - [anon_sym_function] = ACTIONS(3524), - [anon_sym_new] = ACTIONS(3524), - [anon_sym_PLUS] = ACTIONS(3524), - [anon_sym_DASH] = ACTIONS(3524), - [anon_sym_TILDE] = ACTIONS(3522), - [anon_sym_void] = ACTIONS(3524), - [anon_sym_delete] = ACTIONS(3524), - [anon_sym_PLUS_PLUS] = ACTIONS(3522), - [anon_sym_DASH_DASH] = ACTIONS(3522), - [anon_sym_DQUOTE] = ACTIONS(3522), - [anon_sym_SQUOTE] = ACTIONS(3522), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3522), - [sym_number] = ACTIONS(3522), - [sym_this] = ACTIONS(3524), - [sym_super] = ACTIONS(3524), - [sym_true] = ACTIONS(3524), - [sym_false] = ACTIONS(3524), - [sym_null] = ACTIONS(3524), - [sym_undefined] = ACTIONS(3524), - [anon_sym_AT] = ACTIONS(3522), - [anon_sym_static] = ACTIONS(3524), - [anon_sym_readonly] = ACTIONS(3524), - [anon_sym_get] = ACTIONS(3524), - [anon_sym_set] = ACTIONS(3524), - [anon_sym_declare] = ACTIONS(3524), - [anon_sym_public] = ACTIONS(3524), - [anon_sym_private] = ACTIONS(3524), - [anon_sym_protected] = ACTIONS(3524), - [anon_sym_module] = ACTIONS(3524), - [anon_sym_any] = ACTIONS(3524), - [anon_sym_number] = ACTIONS(3524), - [anon_sym_boolean] = ACTIONS(3524), - [anon_sym_string] = ACTIONS(3524), - [anon_sym_symbol] = ACTIONS(3524), - [anon_sym_abstract] = ACTIONS(3524), - [anon_sym_interface] = ACTIONS(3524), - [anon_sym_enum] = ACTIONS(3524), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1210] = { - [ts_builtin_sym_end] = ACTIONS(3526), - [sym_identifier] = ACTIONS(3528), - [anon_sym_export] = ACTIONS(3528), - [anon_sym_default] = ACTIONS(3528), - [anon_sym_type] = ACTIONS(3528), - [anon_sym_namespace] = ACTIONS(3528), - [anon_sym_LBRACE] = ACTIONS(3526), - [anon_sym_RBRACE] = ACTIONS(3526), - [anon_sym_typeof] = ACTIONS(3528), - [anon_sym_import] = ACTIONS(3528), - [anon_sym_var] = ACTIONS(3528), - [anon_sym_let] = ACTIONS(3528), - [anon_sym_const] = ACTIONS(3528), - [anon_sym_BANG] = ACTIONS(3526), - [anon_sym_else] = ACTIONS(3528), - [anon_sym_if] = ACTIONS(3528), - [anon_sym_switch] = ACTIONS(3528), - [anon_sym_for] = ACTIONS(3528), - [anon_sym_LPAREN] = ACTIONS(3526), - [anon_sym_await] = ACTIONS(3528), - [anon_sym_while] = ACTIONS(3528), - [anon_sym_do] = ACTIONS(3528), - [anon_sym_try] = ACTIONS(3528), - [anon_sym_with] = ACTIONS(3528), - [anon_sym_break] = ACTIONS(3528), - [anon_sym_continue] = ACTIONS(3528), - [anon_sym_debugger] = ACTIONS(3528), - [anon_sym_return] = ACTIONS(3528), - [anon_sym_throw] = ACTIONS(3528), - [anon_sym_SEMI] = ACTIONS(3526), - [anon_sym_case] = ACTIONS(3528), - [anon_sym_yield] = ACTIONS(3528), - [anon_sym_LBRACK] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(3526), - [anon_sym_SLASH] = ACTIONS(3528), - [anon_sym_class] = ACTIONS(3528), - [anon_sym_async] = ACTIONS(3528), - [anon_sym_function] = ACTIONS(3528), - [anon_sym_new] = ACTIONS(3528), - [anon_sym_PLUS] = ACTIONS(3528), - [anon_sym_DASH] = ACTIONS(3528), - [anon_sym_TILDE] = ACTIONS(3526), - [anon_sym_void] = ACTIONS(3528), - [anon_sym_delete] = ACTIONS(3528), - [anon_sym_PLUS_PLUS] = ACTIONS(3526), - [anon_sym_DASH_DASH] = ACTIONS(3526), - [anon_sym_DQUOTE] = ACTIONS(3526), - [anon_sym_SQUOTE] = ACTIONS(3526), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3526), - [sym_number] = ACTIONS(3526), - [sym_this] = ACTIONS(3528), - [sym_super] = ACTIONS(3528), - [sym_true] = ACTIONS(3528), - [sym_false] = ACTIONS(3528), - [sym_null] = ACTIONS(3528), - [sym_undefined] = ACTIONS(3528), - [anon_sym_AT] = ACTIONS(3526), - [anon_sym_static] = ACTIONS(3528), - [anon_sym_readonly] = ACTIONS(3528), - [anon_sym_get] = ACTIONS(3528), - [anon_sym_set] = ACTIONS(3528), - [anon_sym_declare] = ACTIONS(3528), - [anon_sym_public] = ACTIONS(3528), - [anon_sym_private] = ACTIONS(3528), - [anon_sym_protected] = ACTIONS(3528), - [anon_sym_module] = ACTIONS(3528), - [anon_sym_any] = ACTIONS(3528), - [anon_sym_number] = ACTIONS(3528), - [anon_sym_boolean] = ACTIONS(3528), - [anon_sym_string] = ACTIONS(3528), - [anon_sym_symbol] = ACTIONS(3528), - [anon_sym_abstract] = ACTIONS(3528), - [anon_sym_interface] = ACTIONS(3528), - [anon_sym_enum] = ACTIONS(3528), + [ts_builtin_sym_end] = ACTIONS(2051), + [sym_identifier] = ACTIONS(2053), + [anon_sym_export] = ACTIONS(2053), + [anon_sym_default] = ACTIONS(2053), + [anon_sym_type] = ACTIONS(2053), + [anon_sym_namespace] = ACTIONS(2053), + [anon_sym_LBRACE] = ACTIONS(2051), + [anon_sym_RBRACE] = ACTIONS(2051), + [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(2053), + [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_readonly] = ACTIONS(2053), + [anon_sym_get] = ACTIONS(2053), + [anon_sym_set] = ACTIONS(2053), + [anon_sym_declare] = ACTIONS(2053), + [anon_sym_public] = ACTIONS(2053), + [anon_sym_private] = ACTIONS(2053), + [anon_sym_protected] = ACTIONS(2053), + [anon_sym_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_abstract] = ACTIONS(2053), + [anon_sym_interface] = ACTIONS(2053), + [anon_sym_enum] = ACTIONS(2053), }, [1211] = { - [ts_builtin_sym_end] = ACTIONS(3530), - [sym_identifier] = ACTIONS(3532), - [anon_sym_export] = ACTIONS(3532), - [anon_sym_default] = ACTIONS(3532), - [anon_sym_type] = ACTIONS(3532), - [anon_sym_namespace] = ACTIONS(3532), - [anon_sym_LBRACE] = ACTIONS(3530), - [anon_sym_RBRACE] = ACTIONS(3530), - [anon_sym_typeof] = ACTIONS(3532), - [anon_sym_import] = ACTIONS(3532), - [anon_sym_var] = ACTIONS(3532), - [anon_sym_let] = ACTIONS(3532), - [anon_sym_const] = ACTIONS(3532), - [anon_sym_BANG] = ACTIONS(3530), - [anon_sym_else] = ACTIONS(3532), - [anon_sym_if] = ACTIONS(3532), - [anon_sym_switch] = ACTIONS(3532), - [anon_sym_for] = ACTIONS(3532), - [anon_sym_LPAREN] = ACTIONS(3530), - [anon_sym_await] = ACTIONS(3532), - [anon_sym_while] = ACTIONS(3532), - [anon_sym_do] = ACTIONS(3532), - [anon_sym_try] = ACTIONS(3532), - [anon_sym_with] = ACTIONS(3532), - [anon_sym_break] = ACTIONS(3532), - [anon_sym_continue] = ACTIONS(3532), - [anon_sym_debugger] = ACTIONS(3532), - [anon_sym_return] = ACTIONS(3532), - [anon_sym_throw] = ACTIONS(3532), - [anon_sym_SEMI] = ACTIONS(3530), - [anon_sym_case] = ACTIONS(3532), - [anon_sym_yield] = ACTIONS(3532), - [anon_sym_LBRACK] = ACTIONS(3530), - [anon_sym_LT] = ACTIONS(3530), - [anon_sym_SLASH] = ACTIONS(3532), - [anon_sym_class] = ACTIONS(3532), - [anon_sym_async] = ACTIONS(3532), - [anon_sym_function] = ACTIONS(3532), - [anon_sym_new] = ACTIONS(3532), - [anon_sym_PLUS] = ACTIONS(3532), - [anon_sym_DASH] = ACTIONS(3532), - [anon_sym_TILDE] = ACTIONS(3530), - [anon_sym_void] = ACTIONS(3532), - [anon_sym_delete] = ACTIONS(3532), - [anon_sym_PLUS_PLUS] = ACTIONS(3530), - [anon_sym_DASH_DASH] = ACTIONS(3530), - [anon_sym_DQUOTE] = ACTIONS(3530), - [anon_sym_SQUOTE] = ACTIONS(3530), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3530), - [sym_number] = ACTIONS(3530), - [sym_this] = ACTIONS(3532), - [sym_super] = ACTIONS(3532), - [sym_true] = ACTIONS(3532), - [sym_false] = ACTIONS(3532), - [sym_null] = ACTIONS(3532), - [sym_undefined] = ACTIONS(3532), - [anon_sym_AT] = ACTIONS(3530), - [anon_sym_static] = ACTIONS(3532), - [anon_sym_readonly] = ACTIONS(3532), - [anon_sym_get] = ACTIONS(3532), - [anon_sym_set] = ACTIONS(3532), - [anon_sym_declare] = ACTIONS(3532), - [anon_sym_public] = ACTIONS(3532), - [anon_sym_private] = ACTIONS(3532), - [anon_sym_protected] = ACTIONS(3532), - [anon_sym_module] = ACTIONS(3532), - [anon_sym_any] = ACTIONS(3532), - [anon_sym_number] = ACTIONS(3532), - [anon_sym_boolean] = ACTIONS(3532), - [anon_sym_string] = ACTIONS(3532), - [anon_sym_symbol] = ACTIONS(3532), - [anon_sym_abstract] = ACTIONS(3532), - [anon_sym_interface] = ACTIONS(3532), - [anon_sym_enum] = ACTIONS(3532), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1212] = { - [ts_builtin_sym_end] = ACTIONS(3534), + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_default] = ACTIONS(3530), + [anon_sym_type] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_var] = ACTIONS(3530), + [anon_sym_let] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_with] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_debugger] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3530), + [anon_sym_yield] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_async] = ACTIONS(3530), + [anon_sym_function] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_this] = ACTIONS(3530), + [sym_super] = ACTIONS(3530), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [sym_null] = ACTIONS(3530), + [sym_undefined] = ACTIONS(3530), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_readonly] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3530), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_declare] = ACTIONS(3530), + [anon_sym_public] = ACTIONS(3530), + [anon_sym_private] = ACTIONS(3530), + [anon_sym_protected] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_any] = ACTIONS(3530), + [anon_sym_number] = ACTIONS(3530), + [anon_sym_boolean] = ACTIONS(3530), + [anon_sym_string] = ACTIONS(3530), + [anon_sym_symbol] = ACTIONS(3530), + [anon_sym_abstract] = ACTIONS(3530), + [anon_sym_interface] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + }, + [1213] = { + [ts_builtin_sym_end] = ACTIONS(3528), + [sym_identifier] = ACTIONS(3530), + [anon_sym_export] = ACTIONS(3530), + [anon_sym_default] = ACTIONS(3530), + [anon_sym_type] = ACTIONS(3530), + [anon_sym_namespace] = ACTIONS(3530), + [anon_sym_LBRACE] = ACTIONS(3528), + [anon_sym_RBRACE] = ACTIONS(3528), + [anon_sym_typeof] = ACTIONS(3530), + [anon_sym_import] = ACTIONS(3530), + [anon_sym_var] = ACTIONS(3530), + [anon_sym_let] = ACTIONS(3530), + [anon_sym_const] = ACTIONS(3530), + [anon_sym_BANG] = ACTIONS(3528), + [anon_sym_else] = ACTIONS(3530), + [anon_sym_if] = ACTIONS(3530), + [anon_sym_switch] = ACTIONS(3530), + [anon_sym_for] = ACTIONS(3530), + [anon_sym_LPAREN] = ACTIONS(3528), + [anon_sym_await] = ACTIONS(3530), + [anon_sym_while] = ACTIONS(3530), + [anon_sym_do] = ACTIONS(3530), + [anon_sym_try] = ACTIONS(3530), + [anon_sym_with] = ACTIONS(3530), + [anon_sym_break] = ACTIONS(3530), + [anon_sym_continue] = ACTIONS(3530), + [anon_sym_debugger] = ACTIONS(3530), + [anon_sym_return] = ACTIONS(3530), + [anon_sym_throw] = ACTIONS(3530), + [anon_sym_SEMI] = ACTIONS(3528), + [anon_sym_case] = ACTIONS(3530), + [anon_sym_yield] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3528), + [anon_sym_LT] = ACTIONS(3528), + [anon_sym_SLASH] = ACTIONS(3530), + [anon_sym_class] = ACTIONS(3530), + [anon_sym_async] = ACTIONS(3530), + [anon_sym_function] = ACTIONS(3530), + [anon_sym_new] = ACTIONS(3530), + [anon_sym_PLUS] = ACTIONS(3530), + [anon_sym_DASH] = ACTIONS(3530), + [anon_sym_TILDE] = ACTIONS(3528), + [anon_sym_void] = ACTIONS(3530), + [anon_sym_delete] = ACTIONS(3530), + [anon_sym_PLUS_PLUS] = ACTIONS(3528), + [anon_sym_DASH_DASH] = ACTIONS(3528), + [anon_sym_DQUOTE] = ACTIONS(3528), + [anon_sym_SQUOTE] = ACTIONS(3528), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3528), + [sym_number] = ACTIONS(3528), + [sym_this] = ACTIONS(3530), + [sym_super] = ACTIONS(3530), + [sym_true] = ACTIONS(3530), + [sym_false] = ACTIONS(3530), + [sym_null] = ACTIONS(3530), + [sym_undefined] = ACTIONS(3530), + [anon_sym_AT] = ACTIONS(3528), + [anon_sym_static] = ACTIONS(3530), + [anon_sym_readonly] = ACTIONS(3530), + [anon_sym_get] = ACTIONS(3530), + [anon_sym_set] = ACTIONS(3530), + [anon_sym_declare] = ACTIONS(3530), + [anon_sym_public] = ACTIONS(3530), + [anon_sym_private] = ACTIONS(3530), + [anon_sym_protected] = ACTIONS(3530), + [anon_sym_module] = ACTIONS(3530), + [anon_sym_any] = ACTIONS(3530), + [anon_sym_number] = ACTIONS(3530), + [anon_sym_boolean] = ACTIONS(3530), + [anon_sym_string] = ACTIONS(3530), + [anon_sym_symbol] = ACTIONS(3530), + [anon_sym_abstract] = ACTIONS(3530), + [anon_sym_interface] = ACTIONS(3530), + [anon_sym_enum] = ACTIONS(3530), + }, + [1214] = { + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), + }, + [1215] = { + [ts_builtin_sym_end] = ACTIONS(3532), + [sym_identifier] = ACTIONS(3534), + [anon_sym_export] = ACTIONS(3534), + [anon_sym_default] = ACTIONS(3534), + [anon_sym_type] = ACTIONS(3534), + [anon_sym_namespace] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3532), + [anon_sym_RBRACE] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(3534), + [anon_sym_import] = ACTIONS(3534), + [anon_sym_var] = ACTIONS(3534), + [anon_sym_let] = ACTIONS(3534), + [anon_sym_const] = ACTIONS(3534), + [anon_sym_BANG] = ACTIONS(3532), + [anon_sym_else] = ACTIONS(3534), + [anon_sym_if] = ACTIONS(3534), + [anon_sym_switch] = ACTIONS(3534), + [anon_sym_for] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3532), + [anon_sym_await] = ACTIONS(3534), + [anon_sym_while] = ACTIONS(3534), + [anon_sym_do] = ACTIONS(3534), + [anon_sym_try] = ACTIONS(3534), + [anon_sym_with] = ACTIONS(3534), + [anon_sym_break] = ACTIONS(3534), + [anon_sym_continue] = ACTIONS(3534), + [anon_sym_debugger] = ACTIONS(3534), + [anon_sym_return] = ACTIONS(3534), + [anon_sym_throw] = ACTIONS(3534), + [anon_sym_SEMI] = ACTIONS(3532), + [anon_sym_case] = ACTIONS(3534), + [anon_sym_yield] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LT] = ACTIONS(3532), + [anon_sym_SLASH] = ACTIONS(3534), + [anon_sym_class] = ACTIONS(3534), + [anon_sym_async] = ACTIONS(3534), + [anon_sym_function] = ACTIONS(3534), + [anon_sym_new] = ACTIONS(3534), + [anon_sym_PLUS] = ACTIONS(3534), + [anon_sym_DASH] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3532), + [anon_sym_void] = ACTIONS(3534), + [anon_sym_delete] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3532), + [anon_sym_DASH_DASH] = ACTIONS(3532), + [anon_sym_DQUOTE] = ACTIONS(3532), + [anon_sym_SQUOTE] = ACTIONS(3532), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3532), + [sym_number] = ACTIONS(3532), + [sym_this] = ACTIONS(3534), + [sym_super] = ACTIONS(3534), + [sym_true] = ACTIONS(3534), + [sym_false] = ACTIONS(3534), + [sym_null] = ACTIONS(3534), + [sym_undefined] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3532), + [anon_sym_static] = ACTIONS(3534), + [anon_sym_readonly] = ACTIONS(3534), + [anon_sym_get] = ACTIONS(3534), + [anon_sym_set] = ACTIONS(3534), + [anon_sym_declare] = ACTIONS(3534), + [anon_sym_public] = ACTIONS(3534), + [anon_sym_private] = ACTIONS(3534), + [anon_sym_protected] = ACTIONS(3534), + [anon_sym_module] = ACTIONS(3534), + [anon_sym_any] = ACTIONS(3534), + [anon_sym_number] = ACTIONS(3534), + [anon_sym_boolean] = ACTIONS(3534), + [anon_sym_string] = ACTIONS(3534), + [anon_sym_symbol] = ACTIONS(3534), + [anon_sym_abstract] = ACTIONS(3534), + [anon_sym_interface] = ACTIONS(3534), + [anon_sym_enum] = ACTIONS(3534), + }, + [1216] = { [sym_identifier] = ACTIONS(3536), [anon_sym_export] = ACTIONS(3536), - [anon_sym_default] = ACTIONS(3536), [anon_sym_type] = ACTIONS(3536), [anon_sym_namespace] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3538), [anon_sym_typeof] = ACTIONS(3536), [anon_sym_import] = ACTIONS(3536), [anon_sym_var] = ACTIONS(3536), [anon_sym_let] = ACTIONS(3536), [anon_sym_const] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_else] = ACTIONS(3536), + [anon_sym_BANG] = ACTIONS(3538), [anon_sym_if] = ACTIONS(3536), [anon_sym_switch] = ACTIONS(3536), [anon_sym_for] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), + [anon_sym_LPAREN] = ACTIONS(3538), [anon_sym_await] = ACTIONS(3536), [anon_sym_while] = ACTIONS(3536), [anon_sym_do] = ACTIONS(3536), @@ -130489,11 +130833,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(3536), [anon_sym_return] = ACTIONS(3536), [anon_sym_throw] = ACTIONS(3536), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym_case] = ACTIONS(3536), + [anon_sym_SEMI] = ACTIONS(3538), [anon_sym_yield] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3534), + [anon_sym_LBRACK] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(3538), [anon_sym_SLASH] = ACTIONS(3536), [anon_sym_class] = ACTIONS(3536), [anon_sym_async] = ACTIONS(3536), @@ -130501,23 +130844,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(3536), [anon_sym_PLUS] = ACTIONS(3536), [anon_sym_DASH] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3534), + [anon_sym_TILDE] = ACTIONS(3538), [anon_sym_void] = ACTIONS(3536), [anon_sym_delete] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), + [anon_sym_PLUS_PLUS] = ACTIONS(3538), + [anon_sym_DASH_DASH] = ACTIONS(3538), + [anon_sym_DQUOTE] = ACTIONS(3538), + [anon_sym_SQUOTE] = ACTIONS(3538), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3534), - [sym_number] = ACTIONS(3534), + [anon_sym_BQUOTE] = ACTIONS(3538), + [sym_number] = ACTIONS(3538), [sym_this] = ACTIONS(3536), [sym_super] = ACTIONS(3536), [sym_true] = ACTIONS(3536), [sym_false] = ACTIONS(3536), [sym_null] = ACTIONS(3536), [sym_undefined] = ACTIONS(3536), - [anon_sym_AT] = ACTIONS(3534), + [anon_sym_AT] = ACTIONS(3538), [anon_sym_static] = ACTIONS(3536), [anon_sym_readonly] = ACTIONS(3536), [anon_sym_get] = ACTIONS(3536), @@ -130536,3489 +130879,3263 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(3536), [anon_sym_enum] = ACTIONS(3536), }, - [1213] = { - [ts_builtin_sym_end] = ACTIONS(3534), - [sym_identifier] = ACTIONS(3536), - [anon_sym_export] = ACTIONS(3536), - [anon_sym_default] = ACTIONS(3536), - [anon_sym_type] = ACTIONS(3536), - [anon_sym_namespace] = ACTIONS(3536), - [anon_sym_LBRACE] = ACTIONS(3534), - [anon_sym_RBRACE] = ACTIONS(3534), - [anon_sym_typeof] = ACTIONS(3536), - [anon_sym_import] = ACTIONS(3536), - [anon_sym_var] = ACTIONS(3536), - [anon_sym_let] = ACTIONS(3536), - [anon_sym_const] = ACTIONS(3536), - [anon_sym_BANG] = ACTIONS(3534), - [anon_sym_else] = ACTIONS(3536), - [anon_sym_if] = ACTIONS(3536), - [anon_sym_switch] = ACTIONS(3536), - [anon_sym_for] = ACTIONS(3536), - [anon_sym_LPAREN] = ACTIONS(3534), - [anon_sym_await] = ACTIONS(3536), - [anon_sym_while] = ACTIONS(3536), - [anon_sym_do] = ACTIONS(3536), - [anon_sym_try] = ACTIONS(3536), - [anon_sym_with] = ACTIONS(3536), - [anon_sym_break] = ACTIONS(3536), - [anon_sym_continue] = ACTIONS(3536), - [anon_sym_debugger] = ACTIONS(3536), - [anon_sym_return] = ACTIONS(3536), - [anon_sym_throw] = ACTIONS(3536), - [anon_sym_SEMI] = ACTIONS(3534), - [anon_sym_case] = ACTIONS(3536), - [anon_sym_yield] = ACTIONS(3536), - [anon_sym_LBRACK] = ACTIONS(3534), - [anon_sym_LT] = ACTIONS(3534), - [anon_sym_SLASH] = ACTIONS(3536), - [anon_sym_class] = ACTIONS(3536), - [anon_sym_async] = ACTIONS(3536), - [anon_sym_function] = ACTIONS(3536), - [anon_sym_new] = ACTIONS(3536), - [anon_sym_PLUS] = ACTIONS(3536), - [anon_sym_DASH] = ACTIONS(3536), - [anon_sym_TILDE] = ACTIONS(3534), - [anon_sym_void] = ACTIONS(3536), - [anon_sym_delete] = ACTIONS(3536), - [anon_sym_PLUS_PLUS] = ACTIONS(3534), - [anon_sym_DASH_DASH] = ACTIONS(3534), - [anon_sym_DQUOTE] = ACTIONS(3534), - [anon_sym_SQUOTE] = ACTIONS(3534), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3534), - [sym_number] = ACTIONS(3534), - [sym_this] = ACTIONS(3536), - [sym_super] = ACTIONS(3536), - [sym_true] = ACTIONS(3536), - [sym_false] = ACTIONS(3536), - [sym_null] = ACTIONS(3536), - [sym_undefined] = ACTIONS(3536), - [anon_sym_AT] = ACTIONS(3534), - [anon_sym_static] = ACTIONS(3536), - [anon_sym_readonly] = ACTIONS(3536), - [anon_sym_get] = ACTIONS(3536), - [anon_sym_set] = ACTIONS(3536), - [anon_sym_declare] = ACTIONS(3536), - [anon_sym_public] = ACTIONS(3536), - [anon_sym_private] = ACTIONS(3536), - [anon_sym_protected] = ACTIONS(3536), - [anon_sym_module] = ACTIONS(3536), - [anon_sym_any] = ACTIONS(3536), - [anon_sym_number] = ACTIONS(3536), - [anon_sym_boolean] = ACTIONS(3536), - [anon_sym_string] = ACTIONS(3536), - [anon_sym_symbol] = ACTIONS(3536), - [anon_sym_abstract] = ACTIONS(3536), - [anon_sym_interface] = ACTIONS(3536), - [anon_sym_enum] = ACTIONS(3536), - }, - [1214] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), - }, - [1215] = { - [sym_identifier] = ACTIONS(3538), - [anon_sym_export] = ACTIONS(3538), - [anon_sym_type] = ACTIONS(3538), - [anon_sym_namespace] = ACTIONS(3538), - [anon_sym_LBRACE] = ACTIONS(3540), - [anon_sym_typeof] = ACTIONS(3538), - [anon_sym_import] = ACTIONS(3538), - [anon_sym_var] = ACTIONS(3538), - [anon_sym_let] = ACTIONS(3538), - [anon_sym_const] = ACTIONS(3538), - [anon_sym_BANG] = ACTIONS(3540), - [anon_sym_if] = ACTIONS(3538), - [anon_sym_switch] = ACTIONS(3538), - [anon_sym_for] = ACTIONS(3538), - [anon_sym_LPAREN] = ACTIONS(3540), - [anon_sym_await] = ACTIONS(3538), - [anon_sym_while] = ACTIONS(3538), - [anon_sym_do] = ACTIONS(3538), - [anon_sym_try] = ACTIONS(3538), - [anon_sym_with] = ACTIONS(3538), - [anon_sym_break] = ACTIONS(3538), - [anon_sym_continue] = ACTIONS(3538), - [anon_sym_debugger] = ACTIONS(3538), - [anon_sym_return] = ACTIONS(3538), - [anon_sym_throw] = ACTIONS(3538), - [anon_sym_SEMI] = ACTIONS(3540), - [anon_sym_yield] = ACTIONS(3538), - [anon_sym_LBRACK] = ACTIONS(3540), - [anon_sym_LT] = ACTIONS(3540), - [anon_sym_SLASH] = ACTIONS(3538), - [anon_sym_class] = ACTIONS(3538), - [anon_sym_async] = ACTIONS(3538), - [anon_sym_function] = ACTIONS(3538), - [anon_sym_new] = ACTIONS(3538), - [anon_sym_PLUS] = ACTIONS(3538), - [anon_sym_DASH] = ACTIONS(3538), - [anon_sym_TILDE] = ACTIONS(3540), - [anon_sym_void] = ACTIONS(3538), - [anon_sym_delete] = ACTIONS(3538), - [anon_sym_PLUS_PLUS] = ACTIONS(3540), - [anon_sym_DASH_DASH] = ACTIONS(3540), - [anon_sym_DQUOTE] = ACTIONS(3540), - [anon_sym_SQUOTE] = ACTIONS(3540), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3540), - [sym_number] = ACTIONS(3540), - [sym_this] = ACTIONS(3538), - [sym_super] = ACTIONS(3538), - [sym_true] = ACTIONS(3538), - [sym_false] = ACTIONS(3538), - [sym_null] = ACTIONS(3538), - [sym_undefined] = ACTIONS(3538), - [anon_sym_AT] = ACTIONS(3540), - [anon_sym_static] = ACTIONS(3538), - [anon_sym_readonly] = ACTIONS(3538), - [anon_sym_get] = ACTIONS(3538), - [anon_sym_set] = ACTIONS(3538), - [anon_sym_declare] = ACTIONS(3538), - [anon_sym_public] = ACTIONS(3538), - [anon_sym_private] = ACTIONS(3538), - [anon_sym_protected] = ACTIONS(3538), - [anon_sym_module] = ACTIONS(3538), - [anon_sym_any] = ACTIONS(3538), - [anon_sym_number] = ACTIONS(3538), - [anon_sym_boolean] = ACTIONS(3538), - [anon_sym_string] = ACTIONS(3538), - [anon_sym_symbol] = ACTIONS(3538), - [anon_sym_abstract] = ACTIONS(3538), - [anon_sym_interface] = ACTIONS(3538), - [anon_sym_enum] = ACTIONS(3538), - }, - [1216] = { - [sym_identifier] = ACTIONS(3542), - [anon_sym_export] = ACTIONS(3542), - [anon_sym_type] = ACTIONS(3542), - [anon_sym_namespace] = ACTIONS(3542), - [anon_sym_LBRACE] = ACTIONS(3544), - [anon_sym_typeof] = ACTIONS(3542), - [anon_sym_import] = ACTIONS(3542), - [anon_sym_var] = ACTIONS(3542), - [anon_sym_let] = ACTIONS(3542), - [anon_sym_const] = ACTIONS(3542), - [anon_sym_BANG] = ACTIONS(3544), - [anon_sym_if] = ACTIONS(3542), - [anon_sym_switch] = ACTIONS(3542), - [anon_sym_for] = ACTIONS(3542), - [anon_sym_LPAREN] = ACTIONS(3544), - [anon_sym_await] = ACTIONS(3542), - [anon_sym_while] = ACTIONS(3542), - [anon_sym_do] = ACTIONS(3542), - [anon_sym_try] = ACTIONS(3542), - [anon_sym_with] = ACTIONS(3542), - [anon_sym_break] = ACTIONS(3542), - [anon_sym_continue] = ACTIONS(3542), - [anon_sym_debugger] = ACTIONS(3542), - [anon_sym_return] = ACTIONS(3542), - [anon_sym_throw] = ACTIONS(3542), - [anon_sym_SEMI] = ACTIONS(3544), - [anon_sym_yield] = ACTIONS(3542), - [anon_sym_LBRACK] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(3544), - [anon_sym_SLASH] = ACTIONS(3542), - [anon_sym_class] = ACTIONS(3542), - [anon_sym_async] = ACTIONS(3542), - [anon_sym_function] = ACTIONS(3542), - [anon_sym_new] = ACTIONS(3542), - [anon_sym_PLUS] = ACTIONS(3542), - [anon_sym_DASH] = ACTIONS(3542), - [anon_sym_TILDE] = ACTIONS(3544), - [anon_sym_void] = ACTIONS(3542), - [anon_sym_delete] = ACTIONS(3542), - [anon_sym_PLUS_PLUS] = ACTIONS(3544), - [anon_sym_DASH_DASH] = ACTIONS(3544), - [anon_sym_DQUOTE] = ACTIONS(3544), - [anon_sym_SQUOTE] = ACTIONS(3544), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3544), - [sym_number] = ACTIONS(3544), - [sym_this] = ACTIONS(3542), - [sym_super] = ACTIONS(3542), - [sym_true] = ACTIONS(3542), - [sym_false] = ACTIONS(3542), - [sym_null] = ACTIONS(3542), - [sym_undefined] = ACTIONS(3542), - [anon_sym_AT] = ACTIONS(3544), - [anon_sym_static] = ACTIONS(3542), - [anon_sym_readonly] = ACTIONS(3542), - [anon_sym_get] = ACTIONS(3542), - [anon_sym_set] = ACTIONS(3542), - [anon_sym_declare] = ACTIONS(3542), - [anon_sym_public] = ACTIONS(3542), - [anon_sym_private] = ACTIONS(3542), - [anon_sym_protected] = ACTIONS(3542), - [anon_sym_module] = ACTIONS(3542), - [anon_sym_any] = ACTIONS(3542), - [anon_sym_number] = ACTIONS(3542), - [anon_sym_boolean] = ACTIONS(3542), - [anon_sym_string] = ACTIONS(3542), - [anon_sym_symbol] = ACTIONS(3542), - [anon_sym_abstract] = ACTIONS(3542), - [anon_sym_interface] = ACTIONS(3542), - [anon_sym_enum] = ACTIONS(3542), - }, [1217] = { - [sym_identifier] = ACTIONS(3546), - [anon_sym_export] = ACTIONS(3546), - [anon_sym_type] = ACTIONS(3546), - [anon_sym_namespace] = ACTIONS(3546), - [anon_sym_LBRACE] = ACTIONS(3548), - [anon_sym_typeof] = ACTIONS(3546), - [anon_sym_import] = ACTIONS(3546), - [anon_sym_var] = ACTIONS(3546), - [anon_sym_let] = ACTIONS(3546), - [anon_sym_const] = ACTIONS(3546), - [anon_sym_BANG] = ACTIONS(3548), - [anon_sym_if] = ACTIONS(3546), - [anon_sym_switch] = ACTIONS(3546), - [anon_sym_for] = ACTIONS(3546), - [anon_sym_LPAREN] = ACTIONS(3548), - [anon_sym_await] = ACTIONS(3546), - [anon_sym_while] = ACTIONS(3546), - [anon_sym_do] = ACTIONS(3546), - [anon_sym_try] = ACTIONS(3546), - [anon_sym_with] = ACTIONS(3546), - [anon_sym_break] = ACTIONS(3546), - [anon_sym_continue] = ACTIONS(3546), - [anon_sym_debugger] = ACTIONS(3546), - [anon_sym_return] = ACTIONS(3546), - [anon_sym_throw] = ACTIONS(3546), - [anon_sym_SEMI] = ACTIONS(3548), - [anon_sym_yield] = ACTIONS(3546), - [anon_sym_LBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(3548), - [anon_sym_SLASH] = ACTIONS(3546), - [anon_sym_class] = ACTIONS(3546), - [anon_sym_async] = ACTIONS(3546), - [anon_sym_function] = ACTIONS(3546), - [anon_sym_new] = ACTIONS(3546), - [anon_sym_PLUS] = ACTIONS(3546), - [anon_sym_DASH] = ACTIONS(3546), - [anon_sym_TILDE] = ACTIONS(3548), - [anon_sym_void] = ACTIONS(3546), - [anon_sym_delete] = ACTIONS(3546), - [anon_sym_PLUS_PLUS] = ACTIONS(3548), - [anon_sym_DASH_DASH] = ACTIONS(3548), - [anon_sym_DQUOTE] = ACTIONS(3548), - [anon_sym_SQUOTE] = ACTIONS(3548), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3548), - [sym_number] = ACTIONS(3548), - [sym_this] = ACTIONS(3546), - [sym_super] = ACTIONS(3546), - [sym_true] = ACTIONS(3546), - [sym_false] = ACTIONS(3546), - [sym_null] = ACTIONS(3546), - [sym_undefined] = ACTIONS(3546), - [anon_sym_AT] = ACTIONS(3548), - [anon_sym_static] = ACTIONS(3546), - [anon_sym_readonly] = ACTIONS(3546), - [anon_sym_get] = ACTIONS(3546), - [anon_sym_set] = ACTIONS(3546), - [anon_sym_declare] = ACTIONS(3546), - [anon_sym_public] = ACTIONS(3546), - [anon_sym_private] = ACTIONS(3546), - [anon_sym_protected] = ACTIONS(3546), - [anon_sym_module] = ACTIONS(3546), - [anon_sym_any] = ACTIONS(3546), - [anon_sym_number] = ACTIONS(3546), - [anon_sym_boolean] = ACTIONS(3546), - [anon_sym_string] = ACTIONS(3546), - [anon_sym_symbol] = ACTIONS(3546), - [anon_sym_abstract] = ACTIONS(3546), - [anon_sym_interface] = ACTIONS(3546), - [anon_sym_enum] = ACTIONS(3546), + [sym_identifier] = ACTIONS(3540), + [anon_sym_export] = ACTIONS(3540), + [anon_sym_type] = ACTIONS(3540), + [anon_sym_namespace] = ACTIONS(3540), + [anon_sym_LBRACE] = ACTIONS(3542), + [anon_sym_typeof] = ACTIONS(3540), + [anon_sym_import] = ACTIONS(3540), + [anon_sym_var] = ACTIONS(3540), + [anon_sym_let] = ACTIONS(3540), + [anon_sym_const] = ACTIONS(3540), + [anon_sym_BANG] = ACTIONS(3542), + [anon_sym_if] = ACTIONS(3540), + [anon_sym_switch] = ACTIONS(3540), + [anon_sym_for] = ACTIONS(3540), + [anon_sym_LPAREN] = ACTIONS(3542), + [anon_sym_await] = ACTIONS(3540), + [anon_sym_while] = ACTIONS(3540), + [anon_sym_do] = ACTIONS(3540), + [anon_sym_try] = ACTIONS(3540), + [anon_sym_with] = ACTIONS(3540), + [anon_sym_break] = ACTIONS(3540), + [anon_sym_continue] = ACTIONS(3540), + [anon_sym_debugger] = ACTIONS(3540), + [anon_sym_return] = ACTIONS(3540), + [anon_sym_throw] = ACTIONS(3540), + [anon_sym_SEMI] = ACTIONS(3542), + [anon_sym_yield] = ACTIONS(3540), + [anon_sym_LBRACK] = ACTIONS(3542), + [anon_sym_LT] = ACTIONS(3542), + [anon_sym_SLASH] = ACTIONS(3540), + [anon_sym_class] = ACTIONS(3540), + [anon_sym_async] = ACTIONS(3540), + [anon_sym_function] = ACTIONS(3540), + [anon_sym_new] = ACTIONS(3540), + [anon_sym_PLUS] = ACTIONS(3540), + [anon_sym_DASH] = ACTIONS(3540), + [anon_sym_TILDE] = ACTIONS(3542), + [anon_sym_void] = ACTIONS(3540), + [anon_sym_delete] = ACTIONS(3540), + [anon_sym_PLUS_PLUS] = ACTIONS(3542), + [anon_sym_DASH_DASH] = ACTIONS(3542), + [anon_sym_DQUOTE] = ACTIONS(3542), + [anon_sym_SQUOTE] = ACTIONS(3542), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3542), + [sym_number] = ACTIONS(3542), + [sym_this] = ACTIONS(3540), + [sym_super] = ACTIONS(3540), + [sym_true] = ACTIONS(3540), + [sym_false] = ACTIONS(3540), + [sym_null] = ACTIONS(3540), + [sym_undefined] = ACTIONS(3540), + [anon_sym_AT] = ACTIONS(3542), + [anon_sym_static] = ACTIONS(3540), + [anon_sym_readonly] = ACTIONS(3540), + [anon_sym_get] = ACTIONS(3540), + [anon_sym_set] = ACTIONS(3540), + [anon_sym_declare] = ACTIONS(3540), + [anon_sym_public] = ACTIONS(3540), + [anon_sym_private] = ACTIONS(3540), + [anon_sym_protected] = ACTIONS(3540), + [anon_sym_module] = ACTIONS(3540), + [anon_sym_any] = ACTIONS(3540), + [anon_sym_number] = ACTIONS(3540), + [anon_sym_boolean] = ACTIONS(3540), + [anon_sym_string] = ACTIONS(3540), + [anon_sym_symbol] = ACTIONS(3540), + [anon_sym_abstract] = ACTIONS(3540), + [anon_sym_interface] = ACTIONS(3540), + [anon_sym_enum] = ACTIONS(3540), }, [1218] = { - [sym_identifier] = ACTIONS(3550), - [anon_sym_export] = ACTIONS(3550), - [anon_sym_type] = ACTIONS(3550), - [anon_sym_namespace] = ACTIONS(3550), - [anon_sym_LBRACE] = ACTIONS(3552), - [anon_sym_typeof] = ACTIONS(3550), - [anon_sym_import] = ACTIONS(3550), - [anon_sym_var] = ACTIONS(3550), - [anon_sym_let] = ACTIONS(3550), - [anon_sym_const] = ACTIONS(3550), - [anon_sym_BANG] = ACTIONS(3552), - [anon_sym_if] = ACTIONS(3550), - [anon_sym_switch] = ACTIONS(3550), - [anon_sym_for] = ACTIONS(3550), - [anon_sym_LPAREN] = ACTIONS(3552), - [anon_sym_await] = ACTIONS(3550), - [anon_sym_while] = ACTIONS(3550), - [anon_sym_do] = ACTIONS(3550), - [anon_sym_try] = ACTIONS(3550), - [anon_sym_with] = ACTIONS(3550), - [anon_sym_break] = ACTIONS(3550), - [anon_sym_continue] = ACTIONS(3550), - [anon_sym_debugger] = ACTIONS(3550), - [anon_sym_return] = ACTIONS(3550), - [anon_sym_throw] = ACTIONS(3550), - [anon_sym_SEMI] = ACTIONS(3552), - [anon_sym_yield] = ACTIONS(3550), - [anon_sym_LBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(3552), - [anon_sym_SLASH] = ACTIONS(3550), - [anon_sym_class] = ACTIONS(3550), - [anon_sym_async] = ACTIONS(3550), - [anon_sym_function] = ACTIONS(3550), - [anon_sym_new] = ACTIONS(3550), - [anon_sym_PLUS] = ACTIONS(3550), - [anon_sym_DASH] = ACTIONS(3550), - [anon_sym_TILDE] = ACTIONS(3552), - [anon_sym_void] = ACTIONS(3550), - [anon_sym_delete] = ACTIONS(3550), - [anon_sym_PLUS_PLUS] = ACTIONS(3552), - [anon_sym_DASH_DASH] = ACTIONS(3552), - [anon_sym_DQUOTE] = ACTIONS(3552), - [anon_sym_SQUOTE] = ACTIONS(3552), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3552), - [sym_number] = ACTIONS(3552), - [sym_this] = ACTIONS(3550), - [sym_super] = ACTIONS(3550), - [sym_true] = ACTIONS(3550), - [sym_false] = ACTIONS(3550), - [sym_null] = ACTIONS(3550), - [sym_undefined] = ACTIONS(3550), - [anon_sym_AT] = ACTIONS(3552), - [anon_sym_static] = ACTIONS(3550), - [anon_sym_readonly] = ACTIONS(3550), - [anon_sym_get] = ACTIONS(3550), - [anon_sym_set] = ACTIONS(3550), - [anon_sym_declare] = ACTIONS(3550), - [anon_sym_public] = ACTIONS(3550), - [anon_sym_private] = ACTIONS(3550), - [anon_sym_protected] = ACTIONS(3550), - [anon_sym_module] = ACTIONS(3550), - [anon_sym_any] = ACTIONS(3550), - [anon_sym_number] = ACTIONS(3550), - [anon_sym_boolean] = ACTIONS(3550), - [anon_sym_string] = ACTIONS(3550), - [anon_sym_symbol] = ACTIONS(3550), - [anon_sym_abstract] = ACTIONS(3550), - [anon_sym_interface] = ACTIONS(3550), - [anon_sym_enum] = ACTIONS(3550), + [sym_identifier] = ACTIONS(3544), + [anon_sym_export] = ACTIONS(3544), + [anon_sym_type] = ACTIONS(3544), + [anon_sym_namespace] = ACTIONS(3544), + [anon_sym_LBRACE] = ACTIONS(3546), + [anon_sym_typeof] = ACTIONS(3544), + [anon_sym_import] = ACTIONS(3544), + [anon_sym_var] = ACTIONS(3544), + [anon_sym_let] = ACTIONS(3544), + [anon_sym_const] = ACTIONS(3544), + [anon_sym_BANG] = ACTIONS(3546), + [anon_sym_if] = ACTIONS(3544), + [anon_sym_switch] = ACTIONS(3544), + [anon_sym_for] = ACTIONS(3544), + [anon_sym_LPAREN] = ACTIONS(3546), + [anon_sym_await] = ACTIONS(3544), + [anon_sym_while] = ACTIONS(3544), + [anon_sym_do] = ACTIONS(3544), + [anon_sym_try] = ACTIONS(3544), + [anon_sym_with] = ACTIONS(3544), + [anon_sym_break] = ACTIONS(3544), + [anon_sym_continue] = ACTIONS(3544), + [anon_sym_debugger] = ACTIONS(3544), + [anon_sym_return] = ACTIONS(3544), + [anon_sym_throw] = ACTIONS(3544), + [anon_sym_SEMI] = ACTIONS(3546), + [anon_sym_yield] = ACTIONS(3544), + [anon_sym_LBRACK] = ACTIONS(3546), + [anon_sym_LT] = ACTIONS(3546), + [anon_sym_SLASH] = ACTIONS(3544), + [anon_sym_class] = ACTIONS(3544), + [anon_sym_async] = ACTIONS(3544), + [anon_sym_function] = ACTIONS(3544), + [anon_sym_new] = ACTIONS(3544), + [anon_sym_PLUS] = ACTIONS(3544), + [anon_sym_DASH] = ACTIONS(3544), + [anon_sym_TILDE] = ACTIONS(3546), + [anon_sym_void] = ACTIONS(3544), + [anon_sym_delete] = ACTIONS(3544), + [anon_sym_PLUS_PLUS] = ACTIONS(3546), + [anon_sym_DASH_DASH] = ACTIONS(3546), + [anon_sym_DQUOTE] = ACTIONS(3546), + [anon_sym_SQUOTE] = ACTIONS(3546), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3546), + [sym_number] = ACTIONS(3546), + [sym_this] = ACTIONS(3544), + [sym_super] = ACTIONS(3544), + [sym_true] = ACTIONS(3544), + [sym_false] = ACTIONS(3544), + [sym_null] = ACTIONS(3544), + [sym_undefined] = ACTIONS(3544), + [anon_sym_AT] = ACTIONS(3546), + [anon_sym_static] = ACTIONS(3544), + [anon_sym_readonly] = ACTIONS(3544), + [anon_sym_get] = ACTIONS(3544), + [anon_sym_set] = ACTIONS(3544), + [anon_sym_declare] = ACTIONS(3544), + [anon_sym_public] = ACTIONS(3544), + [anon_sym_private] = ACTIONS(3544), + [anon_sym_protected] = ACTIONS(3544), + [anon_sym_module] = ACTIONS(3544), + [anon_sym_any] = ACTIONS(3544), + [anon_sym_number] = ACTIONS(3544), + [anon_sym_boolean] = ACTIONS(3544), + [anon_sym_string] = ACTIONS(3544), + [anon_sym_symbol] = ACTIONS(3544), + [anon_sym_abstract] = ACTIONS(3544), + [anon_sym_interface] = ACTIONS(3544), + [anon_sym_enum] = ACTIONS(3544), }, [1219] = { - [sym_identifier] = ACTIONS(3554), - [anon_sym_export] = ACTIONS(3554), - [anon_sym_type] = ACTIONS(3554), - [anon_sym_namespace] = ACTIONS(3554), - [anon_sym_LBRACE] = ACTIONS(3556), - [anon_sym_typeof] = ACTIONS(3554), - [anon_sym_import] = ACTIONS(3554), - [anon_sym_var] = ACTIONS(3554), - [anon_sym_let] = ACTIONS(3554), - [anon_sym_const] = ACTIONS(3554), - [anon_sym_BANG] = ACTIONS(3556), - [anon_sym_if] = ACTIONS(3554), - [anon_sym_switch] = ACTIONS(3554), - [anon_sym_for] = ACTIONS(3554), - [anon_sym_LPAREN] = ACTIONS(3556), - [anon_sym_await] = ACTIONS(3554), - [anon_sym_while] = ACTIONS(3554), - [anon_sym_do] = ACTIONS(3554), - [anon_sym_try] = ACTIONS(3554), - [anon_sym_with] = ACTIONS(3554), - [anon_sym_break] = ACTIONS(3554), - [anon_sym_continue] = ACTIONS(3554), - [anon_sym_debugger] = ACTIONS(3554), - [anon_sym_return] = ACTIONS(3554), - [anon_sym_throw] = ACTIONS(3554), - [anon_sym_SEMI] = ACTIONS(3556), - [anon_sym_yield] = ACTIONS(3554), - [anon_sym_LBRACK] = ACTIONS(3556), - [anon_sym_LT] = ACTIONS(3556), - [anon_sym_SLASH] = ACTIONS(3554), - [anon_sym_class] = ACTIONS(3554), - [anon_sym_async] = ACTIONS(3554), - [anon_sym_function] = ACTIONS(3554), - [anon_sym_new] = ACTIONS(3554), - [anon_sym_PLUS] = ACTIONS(3554), - [anon_sym_DASH] = ACTIONS(3554), - [anon_sym_TILDE] = ACTIONS(3556), - [anon_sym_void] = ACTIONS(3554), - [anon_sym_delete] = ACTIONS(3554), - [anon_sym_PLUS_PLUS] = ACTIONS(3556), - [anon_sym_DASH_DASH] = ACTIONS(3556), - [anon_sym_DQUOTE] = ACTIONS(3556), - [anon_sym_SQUOTE] = ACTIONS(3556), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3556), - [sym_number] = ACTIONS(3556), - [sym_this] = ACTIONS(3554), - [sym_super] = ACTIONS(3554), - [sym_true] = ACTIONS(3554), - [sym_false] = ACTIONS(3554), - [sym_null] = ACTIONS(3554), - [sym_undefined] = ACTIONS(3554), - [anon_sym_AT] = ACTIONS(3556), - [anon_sym_static] = ACTIONS(3554), - [anon_sym_readonly] = ACTIONS(3554), - [anon_sym_get] = ACTIONS(3554), - [anon_sym_set] = ACTIONS(3554), - [anon_sym_declare] = ACTIONS(3554), - [anon_sym_public] = ACTIONS(3554), - [anon_sym_private] = ACTIONS(3554), - [anon_sym_protected] = ACTIONS(3554), - [anon_sym_module] = ACTIONS(3554), - [anon_sym_any] = ACTIONS(3554), - [anon_sym_number] = ACTIONS(3554), - [anon_sym_boolean] = ACTIONS(3554), - [anon_sym_string] = ACTIONS(3554), - [anon_sym_symbol] = ACTIONS(3554), - [anon_sym_abstract] = ACTIONS(3554), - [anon_sym_interface] = ACTIONS(3554), - [anon_sym_enum] = ACTIONS(3554), + [sym_identifier] = ACTIONS(3548), + [anon_sym_export] = ACTIONS(3548), + [anon_sym_type] = ACTIONS(3548), + [anon_sym_namespace] = ACTIONS(3548), + [anon_sym_LBRACE] = ACTIONS(3550), + [anon_sym_typeof] = ACTIONS(3548), + [anon_sym_import] = ACTIONS(3548), + [anon_sym_var] = ACTIONS(3548), + [anon_sym_let] = ACTIONS(3548), + [anon_sym_const] = ACTIONS(3548), + [anon_sym_BANG] = ACTIONS(3550), + [anon_sym_if] = ACTIONS(3548), + [anon_sym_switch] = ACTIONS(3548), + [anon_sym_for] = ACTIONS(3548), + [anon_sym_LPAREN] = ACTIONS(3550), + [anon_sym_await] = ACTIONS(3548), + [anon_sym_while] = ACTIONS(3548), + [anon_sym_do] = ACTIONS(3548), + [anon_sym_try] = ACTIONS(3548), + [anon_sym_with] = ACTIONS(3548), + [anon_sym_break] = ACTIONS(3548), + [anon_sym_continue] = ACTIONS(3548), + [anon_sym_debugger] = ACTIONS(3548), + [anon_sym_return] = ACTIONS(3548), + [anon_sym_throw] = ACTIONS(3548), + [anon_sym_SEMI] = ACTIONS(3550), + [anon_sym_yield] = ACTIONS(3548), + [anon_sym_LBRACK] = ACTIONS(3550), + [anon_sym_LT] = ACTIONS(3550), + [anon_sym_SLASH] = ACTIONS(3548), + [anon_sym_class] = ACTIONS(3548), + [anon_sym_async] = ACTIONS(3548), + [anon_sym_function] = ACTIONS(3548), + [anon_sym_new] = ACTIONS(3548), + [anon_sym_PLUS] = ACTIONS(3548), + [anon_sym_DASH] = ACTIONS(3548), + [anon_sym_TILDE] = ACTIONS(3550), + [anon_sym_void] = ACTIONS(3548), + [anon_sym_delete] = ACTIONS(3548), + [anon_sym_PLUS_PLUS] = ACTIONS(3550), + [anon_sym_DASH_DASH] = ACTIONS(3550), + [anon_sym_DQUOTE] = ACTIONS(3550), + [anon_sym_SQUOTE] = ACTIONS(3550), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3550), + [sym_number] = ACTIONS(3550), + [sym_this] = ACTIONS(3548), + [sym_super] = ACTIONS(3548), + [sym_true] = ACTIONS(3548), + [sym_false] = ACTIONS(3548), + [sym_null] = ACTIONS(3548), + [sym_undefined] = ACTIONS(3548), + [anon_sym_AT] = ACTIONS(3550), + [anon_sym_static] = ACTIONS(3548), + [anon_sym_readonly] = ACTIONS(3548), + [anon_sym_get] = ACTIONS(3548), + [anon_sym_set] = ACTIONS(3548), + [anon_sym_declare] = ACTIONS(3548), + [anon_sym_public] = ACTIONS(3548), + [anon_sym_private] = ACTIONS(3548), + [anon_sym_protected] = ACTIONS(3548), + [anon_sym_module] = ACTIONS(3548), + [anon_sym_any] = ACTIONS(3548), + [anon_sym_number] = ACTIONS(3548), + [anon_sym_boolean] = ACTIONS(3548), + [anon_sym_string] = ACTIONS(3548), + [anon_sym_symbol] = ACTIONS(3548), + [anon_sym_abstract] = ACTIONS(3548), + [anon_sym_interface] = ACTIONS(3548), + [anon_sym_enum] = ACTIONS(3548), }, [1220] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5364), - [sym_optional_tuple_parameter] = STATE(5364), - [sym_optional_type] = STATE(5364), - [sym_rest_type] = STATE(5364), - [sym__tuple_type_member] = STATE(5364), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), + [sym_identifier] = ACTIONS(3552), + [anon_sym_export] = ACTIONS(3552), + [anon_sym_type] = ACTIONS(3552), + [anon_sym_namespace] = ACTIONS(3552), + [anon_sym_LBRACE] = ACTIONS(3554), + [anon_sym_typeof] = ACTIONS(3552), + [anon_sym_import] = ACTIONS(3552), + [anon_sym_var] = ACTIONS(3552), + [anon_sym_let] = ACTIONS(3552), + [anon_sym_const] = ACTIONS(3552), + [anon_sym_BANG] = ACTIONS(3554), + [anon_sym_if] = ACTIONS(3552), + [anon_sym_switch] = ACTIONS(3552), + [anon_sym_for] = ACTIONS(3552), + [anon_sym_LPAREN] = ACTIONS(3554), + [anon_sym_await] = ACTIONS(3552), + [anon_sym_while] = ACTIONS(3552), + [anon_sym_do] = ACTIONS(3552), + [anon_sym_try] = ACTIONS(3552), + [anon_sym_with] = ACTIONS(3552), + [anon_sym_break] = ACTIONS(3552), + [anon_sym_continue] = ACTIONS(3552), + [anon_sym_debugger] = ACTIONS(3552), + [anon_sym_return] = ACTIONS(3552), + [anon_sym_throw] = ACTIONS(3552), + [anon_sym_SEMI] = ACTIONS(3554), + [anon_sym_yield] = ACTIONS(3552), + [anon_sym_LBRACK] = ACTIONS(3554), + [anon_sym_LT] = ACTIONS(3554), + [anon_sym_SLASH] = ACTIONS(3552), + [anon_sym_class] = ACTIONS(3552), + [anon_sym_async] = ACTIONS(3552), + [anon_sym_function] = ACTIONS(3552), + [anon_sym_new] = ACTIONS(3552), + [anon_sym_PLUS] = ACTIONS(3552), + [anon_sym_DASH] = ACTIONS(3552), + [anon_sym_TILDE] = ACTIONS(3554), + [anon_sym_void] = ACTIONS(3552), + [anon_sym_delete] = ACTIONS(3552), + [anon_sym_PLUS_PLUS] = ACTIONS(3554), + [anon_sym_DASH_DASH] = ACTIONS(3554), + [anon_sym_DQUOTE] = ACTIONS(3554), + [anon_sym_SQUOTE] = ACTIONS(3554), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3554), + [sym_number] = ACTIONS(3554), + [sym_this] = ACTIONS(3552), + [sym_super] = ACTIONS(3552), + [sym_true] = ACTIONS(3552), + [sym_false] = ACTIONS(3552), + [sym_null] = ACTIONS(3552), + [sym_undefined] = ACTIONS(3552), + [anon_sym_AT] = ACTIONS(3554), + [anon_sym_static] = ACTIONS(3552), + [anon_sym_readonly] = ACTIONS(3552), + [anon_sym_get] = ACTIONS(3552), + [anon_sym_set] = ACTIONS(3552), + [anon_sym_declare] = ACTIONS(3552), + [anon_sym_public] = ACTIONS(3552), + [anon_sym_private] = ACTIONS(3552), + [anon_sym_protected] = ACTIONS(3552), + [anon_sym_module] = ACTIONS(3552), + [anon_sym_any] = ACTIONS(3552), + [anon_sym_number] = ACTIONS(3552), + [anon_sym_boolean] = ACTIONS(3552), + [anon_sym_string] = ACTIONS(3552), + [anon_sym_symbol] = ACTIONS(3552), + [anon_sym_abstract] = ACTIONS(3552), + [anon_sym_interface] = ACTIONS(3552), + [anon_sym_enum] = ACTIONS(3552), + }, + [1221] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1066), + [sym__module] = STATE(1153), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1222] = { + [sym_nested_identifier] = STATE(147), + [sym_string] = STATE(146), + [sym__module] = STATE(201), + [aux_sym_object_repeat1] = STATE(5384), + [aux_sym_object_pattern_repeat1] = STATE(5159), [sym_identifier] = ACTIONS(3558), - [anon_sym_STAR] = ACTIONS(564), - [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(3560), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), - [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), - [anon_sym_QMARK] = ACTIONS(602), - [anon_sym_AMP] = ACTIONS(604), - [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2692), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1223] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1066), + [sym__module] = STATE(1153), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1224] = { + [sym_nested_identifier] = STATE(147), + [sym_string] = STATE(146), + [sym__module] = STATE(201), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2626), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1225] = { + [sym_nested_identifier] = STATE(2163), + [sym_string] = STATE(2165), + [sym__module] = STATE(2180), + [sym_identifier] = ACTIONS(3564), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1924), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), - [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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_infer] = ACTIONS(636), - [anon_sym_keyof] = ACTIONS(638), - [anon_sym_LBRACE_PIPE] = ACTIONS(640), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_PIPE_RBRACE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), }, - [1221] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5372), - [sym_optional_tuple_parameter] = STATE(5372), - [sym_optional_type] = STATE(5372), - [sym_rest_type] = STATE(5372), - [sym__tuple_type_member] = STATE(5372), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), + [1226] = { + [sym_nested_identifier] = STATE(147), + [sym_string] = STATE(146), + [sym__module] = STATE(201), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), [sym_identifier] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1227] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1066), + [sym__module] = STATE(1153), + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1228] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5181), + [sym_optional_tuple_parameter] = STATE(5181), + [sym_optional_type] = STATE(5181), + [sym_rest_type] = STATE(5181), + [sym__tuple_type_member] = STATE(5181), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(3566), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3568), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3568), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3570), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1222] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5303), - [sym_optional_tuple_parameter] = STATE(5303), - [sym_optional_type] = STATE(5303), - [sym_rest_type] = STATE(5303), - [sym__tuple_type_member] = STATE(5303), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), + [1229] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1066), + [sym__module] = STATE(1153), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1230] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1066), + [sym__module] = STATE(1153), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1231] = { + [sym_nested_identifier] = STATE(147), + [sym_string] = STATE(146), + [sym__module] = STATE(201), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), [sym_identifier] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1232] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5359), + [sym_optional_tuple_parameter] = STATE(5359), + [sym_optional_type] = STATE(5359), + [sym_rest_type] = STATE(5359), + [sym__tuple_type_member] = STATE(5359), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(3570), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3574), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3572), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3576), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1223] = { - [sym_nested_identifier] = STATE(2166), - [sym_string] = STATE(2169), - [sym__module] = STATE(2228), - [sym_identifier] = ACTIONS(3574), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1938), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), + [1233] = { + [sym_nested_identifier] = STATE(2162), + [sym_string] = STATE(2161), + [sym__module] = STATE(2225), + [sym_identifier] = ACTIONS(3578), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), [anon_sym_DQUOTE] = ACTIONS(616), [anon_sym_SQUOTE] = ACTIONS(618), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), }, - [1224] = { - [sym_nested_identifier] = STATE(154), - [sym_string] = STATE(153), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), + [1234] = { + [sym_nested_identifier] = STATE(2162), + [sym_string] = STATE(2161), + [sym__module] = STATE(2225), + [sym_identifier] = ACTIONS(3578), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1924), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_PIPE_RBRACE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), }, - [1225] = { - [sym_nested_identifier] = STATE(154), - [sym_string] = STATE(153), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), + [1235] = { + [sym_nested_identifier] = STATE(147), + [sym_string] = STATE(146), + [sym__module] = STATE(201), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), }, - [1226] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5262), - [sym_optional_tuple_parameter] = STATE(5262), - [sym_optional_type] = STATE(5262), - [sym_rest_type] = STATE(5262), - [sym__tuple_type_member] = STATE(5262), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), + [1236] = { + [sym_nested_identifier] = STATE(147), + [sym_string] = STATE(146), + [sym__module] = STATE(201), + [aux_sym_object_repeat1] = STATE(5244), + [aux_sym_object_pattern_repeat1] = STATE(5159), [sym_identifier] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2592), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1237] = { + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1066), + [sym__module] = STATE(1153), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2646), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1238] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5290), + [sym_optional_tuple_parameter] = STATE(5290), + [sym_optional_type] = STATE(5290), + [sym_rest_type] = STATE(5290), + [sym__tuple_type_member] = STATE(5290), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(3582), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3580), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3584), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3582), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1227] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5160), - [sym_optional_tuple_parameter] = STATE(5160), - [sym_optional_type] = STATE(5160), - [sym_rest_type] = STATE(5160), - [sym__tuple_type_member] = STATE(5160), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1239] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5332), + [sym_optional_tuple_parameter] = STATE(5332), + [sym_optional_type] = STATE(5332), + [sym_rest_type] = STATE(5332), + [sym__tuple_type_member] = STATE(5332), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(3586), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3584), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3588), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3586), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1228] = { - [sym_nested_identifier] = STATE(2168), - [sym_string] = STATE(2172), - [sym__module] = STATE(2301), - [sym_identifier] = ACTIONS(3590), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_PIPE_RBRACE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1229] = { - [sym_nested_identifier] = STATE(1050), - [sym_string] = STATE(1056), - [sym__module] = STATE(1103), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2660), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1230] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5161), - [sym_optional_tuple_parameter] = STATE(5161), - [sym_optional_type] = STATE(5161), - [sym_rest_type] = STATE(5161), - [sym__tuple_type_member] = STATE(5161), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1240] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5215), + [sym_optional_tuple_parameter] = STATE(5215), + [sym_optional_type] = STATE(5215), + [sym_rest_type] = STATE(5215), + [sym__tuple_type_member] = STATE(5215), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(3594), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3588), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3596), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3590), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1231] = { - [sym_nested_identifier] = STATE(2166), - [sym_string] = STATE(2169), - [sym__module] = STATE(2228), - [sym_identifier] = ACTIONS(3574), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_PIPE_RBRACE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1232] = { - [sym_nested_identifier] = STATE(1050), - [sym_string] = STATE(1056), - [sym__module] = STATE(1103), - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1233] = { - [sym_nested_identifier] = STATE(1050), - [sym_string] = STATE(1056), - [sym__module] = STATE(1103), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1234] = { - [sym_nested_identifier] = STATE(2166), - [sym_string] = STATE(2169), - [sym__module] = STATE(2228), - [sym_identifier] = ACTIONS(3574), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), - }, - [1235] = { - [sym_nested_identifier] = STATE(154), - [sym_string] = STATE(153), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2704), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1236] = { - [sym_nested_identifier] = STATE(154), - [sym_string] = STATE(153), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(5340), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1237] = { - [sym_nested_identifier] = STATE(154), - [sym_string] = STATE(153), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1238] = { - [sym_nested_identifier] = STATE(1050), - [sym_string] = STATE(1056), - [sym__module] = STATE(1103), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1239] = { - [sym_nested_identifier] = STATE(154), - [sym_string] = STATE(153), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, - [1240] = { - [sym_nested_identifier] = STATE(1050), - [sym_string] = STATE(1056), - [sym__module] = STATE(1103), - [aux_sym_object_repeat1] = STATE(5366), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2523), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, [1241] = { - [sym_nested_identifier] = STATE(1050), - [sym_string] = STATE(1056), - [sym__module] = STATE(1103), - [aux_sym_object_repeat1] = STATE(5151), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2656), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_nested_identifier] = STATE(1047), + [sym_string] = STATE(1066), + [sym__module] = STATE(1153), + [aux_sym_object_repeat1] = STATE(5157), + [aux_sym_object_pattern_repeat1] = STATE(5159), + [sym_identifier] = ACTIONS(3556), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2624), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), }, [1242] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5309), - [sym_optional_tuple_parameter] = STATE(5309), - [sym_optional_type] = STATE(5309), - [sym_rest_type] = STATE(5309), - [sym__tuple_type_member] = STATE(5309), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), + [sym_nested_identifier] = STATE(147), + [sym_string] = STATE(146), + [sym__module] = STATE(201), + [aux_sym_object_repeat1] = STATE(5319), + [aux_sym_object_pattern_repeat1] = STATE(5159), [sym_identifier] = ACTIONS(3558), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2848), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(2716), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_COLON] = ACTIONS(2468), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(2471), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(2471), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(3560), + [anon_sym_SQUOTE] = ACTIONS(3562), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1243] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5253), + [sym_optional_tuple_parameter] = STATE(5253), + [sym_optional_type] = STATE(5253), + [sym_rest_type] = STATE(5253), + [sym__tuple_type_member] = STATE(5253), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_COMMA] = ACTIONS(3598), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3592), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3600), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3594), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1243] = { - [sym_nested_identifier] = STATE(1050), - [sym_string] = STATE(1056), - [sym__module] = STATE(1103), - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3592), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), - }, [1244] = { - [sym_nested_identifier] = STATE(154), - [sym_string] = STATE(153), - [sym__module] = STATE(174), - [aux_sym_object_repeat1] = STATE(5183), - [aux_sym_object_pattern_repeat1] = STATE(5365), - [sym_identifier] = ACTIONS(3576), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2846), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(2680), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(2533), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_COLON] = ACTIONS(2536), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(2539), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(2539), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(3578), - [anon_sym_SQUOTE] = ACTIONS(3580), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), + [sym_nested_identifier] = STATE(2162), + [sym_string] = STATE(2161), + [sym__module] = STATE(2225), + [sym_identifier] = ACTIONS(3578), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1938), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1940), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), }, [1245] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5273), + [sym_optional_tuple_parameter] = STATE(5273), + [sym_optional_type] = STATE(5273), + [sym_rest_type] = STATE(5273), + [sym__tuple_type_member] = STATE(5273), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(3596), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3602), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3598), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [1246] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3604), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3600), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [1247] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3606), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3602), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, [1248] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [sym_nested_identifier] = STATE(2715), + [sym_string] = STATE(2716), + [sym__module] = STATE(2995), + [sym_identifier] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1948), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1944), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), + }, + [1249] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), + [anon_sym_LBRACK] = ACTIONS(1922), + [anon_sym_RBRACK] = ACTIONS(3606), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), + [anon_sym_QMARK] = ACTIONS(602), + [anon_sym_AMP] = ACTIONS(604), + [anon_sym_PIPE] = ACTIONS(606), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1750), + [sym_this] = ACTIONS(1934), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), + [anon_sym_infer] = ACTIONS(636), + [anon_sym_keyof] = ACTIONS(638), + [anon_sym_LBRACE_PIPE] = ACTIONS(640), + }, + [1250] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), + [anon_sym_STAR] = ACTIONS(564), + [anon_sym_LBRACE] = ACTIONS(1918), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), [anon_sym_RBRACK] = ACTIONS(3608), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1249] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1251] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), [anon_sym_RBRACK] = ACTIONS(3610), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1250] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1252] = { + [sym_nested_identifier] = STATE(2162), + [sym_string] = STATE(2161), + [sym__module] = STATE(2225), + [sym_identifier] = ACTIONS(3578), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1944), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), + }, + [1253] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), [anon_sym_RBRACK] = ACTIONS(3612), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1251] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1254] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), [anon_sym_RBRACK] = ACTIONS(3614), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1252] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1255] = { + [sym_nested_identifier] = STATE(2162), + [sym_string] = STATE(2161), + [sym__module] = STATE(2225), + [sym_identifier] = ACTIONS(3578), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1924), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), + [anon_sym_PIPE_RBRACE] = ACTIONS(1730), + [sym__automatic_semicolon] = ACTIONS(1730), + }, + [1256] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), [anon_sym_RBRACK] = ACTIONS(3616), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1253] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1257] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), [anon_sym_RBRACK] = ACTIONS(3618), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1254] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1258] = { + [sym_nested_identifier] = STATE(2162), + [sym_string] = STATE(2161), + [sym__module] = STATE(2225), + [sym_identifier] = ACTIONS(3578), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1946), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_RPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_COLON] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_RBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), + [anon_sym_EQ_GT] = ACTIONS(1940), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(616), + [anon_sym_SQUOTE] = ACTIONS(618), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), + }, + [1259] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), [anon_sym_RBRACK] = ACTIONS(3620), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1255] = { - [sym_nested_identifier] = STATE(2166), - [sym_string] = STATE(2169), - [sym__module] = STATE(2228), - [sym_identifier] = ACTIONS(3574), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_RPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_COLON] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_RBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1940), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), - }, - [1256] = { - [sym_nested_identifier] = STATE(2709), - [sym_string] = STATE(2710), - [sym__module] = STATE(3057), - [sym_identifier] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1948), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), + [1260] = { + [sym_nested_identifier] = STATE(2715), + [sym_string] = STATE(2716), + [sym__module] = STATE(2995), + [sym_identifier] = ACTIONS(3604), + [anon_sym_STAR] = ACTIONS(1713), + [anon_sym_EQ] = ACTIONS(1942), + [anon_sym_as] = ACTIONS(1713), + [anon_sym_LBRACE] = ACTIONS(1730), + [anon_sym_COMMA] = ACTIONS(1730), + [anon_sym_BANG] = ACTIONS(1713), + [anon_sym_LPAREN] = ACTIONS(1730), + [anon_sym_in] = ACTIONS(1713), + [anon_sym_SEMI] = ACTIONS(1730), + [anon_sym_LBRACK] = ACTIONS(1730), + [anon_sym_LT] = ACTIONS(1713), + [anon_sym_GT] = ACTIONS(1713), + [anon_sym_SLASH] = ACTIONS(1713), + [anon_sym_DOT] = ACTIONS(1730), [anon_sym_EQ_GT] = ACTIONS(1944), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), - }, - [1257] = { - [sym_nested_identifier] = STATE(2166), - [sym_string] = STATE(2169), - [sym__module] = STATE(2228), - [sym_identifier] = ACTIONS(3574), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1946), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_RBRACE] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1924), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), - [anon_sym_PIPE_RBRACE] = ACTIONS(1746), - [sym__automatic_semicolon] = ACTIONS(1746), + [anon_sym_QMARK_DOT] = ACTIONS(1730), + [anon_sym_PLUS_EQ] = ACTIONS(1734), + [anon_sym_DASH_EQ] = ACTIONS(1734), + [anon_sym_STAR_EQ] = ACTIONS(1734), + [anon_sym_SLASH_EQ] = ACTIONS(1734), + [anon_sym_PERCENT_EQ] = ACTIONS(1734), + [anon_sym_CARET_EQ] = ACTIONS(1734), + [anon_sym_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1734), + [anon_sym_LT_LT_EQ] = ACTIONS(1734), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1734), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1734), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1734), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1734), + [anon_sym_QMARK] = ACTIONS(1713), + [anon_sym_AMP_AMP] = ACTIONS(1713), + [anon_sym_PIPE_PIPE] = ACTIONS(1713), + [anon_sym_GT_GT] = ACTIONS(1713), + [anon_sym_GT_GT_GT] = ACTIONS(1713), + [anon_sym_LT_LT] = ACTIONS(1713), + [anon_sym_AMP] = ACTIONS(1713), + [anon_sym_CARET] = ACTIONS(1713), + [anon_sym_PIPE] = ACTIONS(1713), + [anon_sym_PLUS] = ACTIONS(1713), + [anon_sym_DASH] = ACTIONS(1713), + [anon_sym_PERCENT] = ACTIONS(1713), + [anon_sym_STAR_STAR] = ACTIONS(1713), + [anon_sym_LT_EQ] = ACTIONS(1730), + [anon_sym_EQ_EQ] = ACTIONS(1713), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1730), + [anon_sym_BANG_EQ] = ACTIONS(1713), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1730), + [anon_sym_GT_EQ] = ACTIONS(1730), + [anon_sym_QMARK_QMARK] = ACTIONS(1713), + [anon_sym_instanceof] = ACTIONS(1713), + [anon_sym_PLUS_PLUS] = ACTIONS(1730), + [anon_sym_DASH_DASH] = ACTIONS(1730), + [anon_sym_DQUOTE] = ACTIONS(814), + [anon_sym_SQUOTE] = ACTIONS(816), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1730), + [anon_sym_extends] = ACTIONS(1713), + [sym__automatic_semicolon] = ACTIONS(1730), + [sym__function_signature_automatic_semicolon] = ACTIONS(1730), }, - [1258] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1261] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3624), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3622), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1259] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1262] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3626), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3624), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1260] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1263] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3628), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3626), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), }, - [1261] = { - [sym_nested_identifier] = STATE(2709), - [sym_string] = STATE(2710), - [sym__module] = STATE(3057), - [sym_identifier] = ACTIONS(3622), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(1942), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1944), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(1294), - [anon_sym_SQUOTE] = ACTIONS(1296), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), - }, - [1262] = { - [sym_nested_identifier] = STATE(2166), - [sym_string] = STATE(2169), - [sym__module] = STATE(2228), - [sym_identifier] = ACTIONS(3574), - [anon_sym_STAR] = ACTIONS(1729), - [anon_sym_EQ] = ACTIONS(2313), - [anon_sym_as] = ACTIONS(1729), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1746), - [anon_sym_BANG] = ACTIONS(1729), - [anon_sym_LPAREN] = ACTIONS(1746), - [anon_sym_in] = ACTIONS(1729), - [anon_sym_SEMI] = ACTIONS(1746), - [anon_sym_LBRACK] = ACTIONS(1746), - [anon_sym_LT] = ACTIONS(1729), - [anon_sym_GT] = ACTIONS(1729), - [anon_sym_SLASH] = ACTIONS(1729), - [anon_sym_DOT] = ACTIONS(1746), - [anon_sym_EQ_GT] = ACTIONS(1944), - [anon_sym_QMARK_DOT] = ACTIONS(1746), - [anon_sym_PLUS_EQ] = ACTIONS(1750), - [anon_sym_DASH_EQ] = ACTIONS(1750), - [anon_sym_STAR_EQ] = ACTIONS(1750), - [anon_sym_SLASH_EQ] = ACTIONS(1750), - [anon_sym_PERCENT_EQ] = ACTIONS(1750), - [anon_sym_CARET_EQ] = ACTIONS(1750), - [anon_sym_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1750), - [anon_sym_LT_LT_EQ] = ACTIONS(1750), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1750), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1750), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1750), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1750), - [anon_sym_QMARK] = ACTIONS(1729), - [anon_sym_AMP_AMP] = ACTIONS(1729), - [anon_sym_PIPE_PIPE] = ACTIONS(1729), - [anon_sym_GT_GT] = ACTIONS(1729), - [anon_sym_GT_GT_GT] = ACTIONS(1729), - [anon_sym_LT_LT] = ACTIONS(1729), - [anon_sym_AMP] = ACTIONS(1729), - [anon_sym_CARET] = ACTIONS(1729), - [anon_sym_PIPE] = ACTIONS(1729), - [anon_sym_PLUS] = ACTIONS(1729), - [anon_sym_DASH] = ACTIONS(1729), - [anon_sym_PERCENT] = ACTIONS(1729), - [anon_sym_STAR_STAR] = ACTIONS(1729), - [anon_sym_LT_EQ] = ACTIONS(1746), - [anon_sym_EQ_EQ] = ACTIONS(1729), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1746), - [anon_sym_BANG_EQ] = ACTIONS(1729), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1746), - [anon_sym_GT_EQ] = ACTIONS(1746), - [anon_sym_QMARK_QMARK] = ACTIONS(1729), - [anon_sym_instanceof] = ACTIONS(1729), - [anon_sym_PLUS_PLUS] = ACTIONS(1746), - [anon_sym_DASH_DASH] = ACTIONS(1746), - [anon_sym_DQUOTE] = ACTIONS(616), - [anon_sym_SQUOTE] = ACTIONS(618), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1746), - [anon_sym_extends] = ACTIONS(1729), - [sym__automatic_semicolon] = ACTIONS(1746), - [sym__function_signature_automatic_semicolon] = ACTIONS(1746), - }, - [1263] = { - [sym_nested_identifier] = STATE(6070), - [sym_string] = STATE(3912), - [sym_formal_parameters] = STATE(5841), - [sym_rest_pattern] = STATE(5390), - [sym_nested_type_identifier] = STATE(3884), - [sym__type] = STATE(4583), - [sym_tuple_parameter] = STATE(5483), - [sym_optional_tuple_parameter] = STATE(5483), - [sym_optional_type] = STATE(5483), - [sym_rest_type] = STATE(5483), - [sym__tuple_type_member] = STATE(5483), - [sym_constructor_type] = STATE(4583), - [sym__primary_type] = STATE(3937), - [sym_infer_type] = STATE(4583), - [sym_conditional_type] = STATE(3932), - [sym_generic_type] = STATE(3932), - [sym_type_query] = STATE(3932), - [sym_index_type_query] = STATE(3932), - [sym_lookup_type] = STATE(3932), - [sym_literal_type] = STATE(3932), - [sym__number] = STATE(3942), - [sym_existential_type] = STATE(3932), - [sym_flow_maybe_type] = STATE(3932), - [sym_parenthesized_type] = STATE(3932), - [sym_predefined_type] = STATE(3932), - [sym_object_type] = STATE(3932), - [sym_type_parameters] = STATE(5581), - [sym_array_type] = STATE(3932), - [sym_tuple_type] = STATE(3932), - [sym_readonly_type] = STATE(4583), - [sym_union_type] = STATE(4583), - [sym_intersection_type] = STATE(4583), - [sym_function_type] = STATE(4583), - [sym_identifier] = ACTIONS(3558), + [1264] = { + [sym_nested_identifier] = STATE(6142), + [sym_string] = STATE(3920), + [sym_formal_parameters] = STATE(5719), + [sym_rest_pattern] = STATE(5599), + [sym_nested_type_identifier] = STATE(3879), + [sym__type] = STATE(4576), + [sym_tuple_parameter] = STATE(5542), + [sym_optional_tuple_parameter] = STATE(5542), + [sym_optional_type] = STATE(5542), + [sym_rest_type] = STATE(5542), + [sym__tuple_type_member] = STATE(5542), + [sym_constructor_type] = STATE(4576), + [sym__primary_type] = STATE(3926), + [sym_infer_type] = STATE(4576), + [sym_conditional_type] = STATE(3921), + [sym_generic_type] = STATE(3921), + [sym_type_query] = STATE(3921), + [sym_index_type_query] = STATE(3921), + [sym_lookup_type] = STATE(3921), + [sym_literal_type] = STATE(3921), + [sym__number] = STATE(3927), + [sym_existential_type] = STATE(3921), + [sym_flow_maybe_type] = STATE(3921), + [sym_parenthesized_type] = STATE(3921), + [sym_predefined_type] = STATE(3921), + [sym_object_type] = STATE(3921), + [sym_type_parameters] = STATE(5615), + [sym_array_type] = STATE(3921), + [sym_tuple_type] = STATE(3921), + [sym_readonly_type] = STATE(4576), + [sym_union_type] = STATE(4576), + [sym_intersection_type] = STATE(4576), + [sym_function_type] = STATE(4576), + [sym_identifier] = ACTIONS(3566), [anon_sym_STAR] = ACTIONS(564), [anon_sym_LBRACE] = ACTIONS(1918), - [anon_sym_typeof] = ACTIONS(2289), - [anon_sym_LPAREN] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(2091), + [anon_sym_LPAREN] = ACTIONS(1722), [anon_sym_LBRACK] = ACTIONS(1922), - [anon_sym_RBRACK] = ACTIONS(3630), - [anon_sym_LT] = ACTIONS(2972), - [anon_sym_new] = ACTIONS(2291), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3564), + [anon_sym_RBRACK] = ACTIONS(3628), + [anon_sym_LT] = ACTIONS(2970), + [anon_sym_new] = ACTIONS(2093), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3572), [anon_sym_QMARK] = ACTIONS(602), [anon_sym_AMP] = ACTIONS(604), [anon_sym_PIPE] = ACTIONS(606), - [anon_sym_PLUS] = ACTIONS(2974), - [anon_sym_DASH] = ACTIONS(2974), - [anon_sym_void] = ACTIONS(1760), - [anon_sym_DQUOTE] = ACTIONS(1762), - [anon_sym_SQUOTE] = ACTIONS(1764), + [anon_sym_PLUS] = ACTIONS(2972), + [anon_sym_DASH] = ACTIONS(2972), + [anon_sym_void] = ACTIONS(1744), + [anon_sym_DQUOTE] = ACTIONS(1746), + [anon_sym_SQUOTE] = ACTIONS(1748), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1766), + [sym_number] = ACTIONS(1750), [sym_this] = ACTIONS(1934), - [sym_true] = ACTIONS(1770), - [sym_false] = ACTIONS(1770), - [anon_sym_readonly] = ACTIONS(2299), - [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), + [sym_true] = ACTIONS(1754), + [sym_false] = ACTIONS(1754), + [anon_sym_readonly] = ACTIONS(2101), + [anon_sym_any] = ACTIONS(1744), + [anon_sym_number] = ACTIONS(1744), + [anon_sym_boolean] = ACTIONS(1744), + [anon_sym_string] = ACTIONS(1744), + [anon_sym_symbol] = ACTIONS(1744), [anon_sym_infer] = ACTIONS(636), [anon_sym_keyof] = ACTIONS(638), [anon_sym_LBRACE_PIPE] = ACTIONS(640), @@ -134033,19 +134150,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1744), 1, + ACTIONS(1728), 1, anon_sym_EQ_GT, ACTIONS(1946), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134061,7 +134178,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(1730), 16, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -134078,7 +134195,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1729), 24, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134103,29 +134220,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [89] = 12, + [89] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, + anon_sym_AMP, + ACTIONS(606), 1, + anon_sym_PIPE, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1924), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2091), 1, + anon_sym_typeof, + ACTIONS(2093), 1, + anon_sym_new, + ACTIONS(2101), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3566), 1, + sym_identifier, + ACTIONS(3572), 1, + anon_sym_DOT_DOT_DOT, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5599), 1, + sym_rest_pattern, + STATE(5615), 1, + sym_type_parameters, + STATE(5719), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(5542), 5, + sym_tuple_parameter, + sym_optional_tuple_parameter, + sym_optional_type, + sym_rest_type, + sym__tuple_type_member, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4576), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [224] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(1950), 1, anon_sym_EQ_GT, - ACTIONS(1956), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3590), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2168), 1, - sym_nested_identifier, - STATE(2172), 1, + STATE(2161), 1, sym_string, - STATE(2301), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 15, + ACTIONS(1730), 15, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -134138,7 +134355,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134154,7 +134371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134180,26 +134397,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [178] = 12, + [313] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1744), 1, + ACTIONS(1924), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3564), 1, sym_identifier, - STATE(2166), 1, + STATE(2163), 1, sym_nested_identifier, - STATE(2169), 1, + STATE(2165), 1, sym_string, - STATE(2228), 1, + STATE(2180), 1, sym__module, - ACTIONS(1750), 15, + ACTIONS(1730), 15, + 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, + 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(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134215,24 +134448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134257,26 +134473,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [267] = 12, + anon_sym_extends, + [402] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, + ACTIONS(1948), 1, + anon_sym_EQ, ACTIONS(1950), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3604), 1, sym_identifier, - STATE(2166), 1, + STATE(2715), 1, sym_nested_identifier, - STATE(2169), 1, + STATE(2716), 1, sym_string, - STATE(2228), 1, + STATE(2995), 1, sym__module, - ACTIONS(1746), 15, + ACTIONS(1730), 15, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -134292,7 +134509,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134308,7 +134525,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134334,42 +134551,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [356] = 12, + [491] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1940), 1, + ACTIONS(1728), 1, anon_sym_EQ_GT, - ACTIONS(1978), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 15, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - 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(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134385,158 +134586,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [445] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2291), 1, - anon_sym_new, - ACTIONS(2299), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3558), 1, - sym_identifier, - ACTIONS(3564), 1, - anon_sym_DOT_DOT_DOT, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5390), 1, - sym_rest_pattern, - STATE(5581), 1, - sym_type_parameters, - STATE(5841), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(5483), 5, - sym_tuple_parameter, - sym_optional_tuple_parameter, - sym_optional_type, - sym_rest_type, - sym__tuple_type_member, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4583), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [580] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1948), 1, - anon_sym_EQ, - ACTIONS(1950), 1, - anon_sym_EQ_GT, - ACTIONS(3622), 1, - sym_identifier, - STATE(2709), 1, - sym_nested_identifier, - STATE(2710), 1, - sym_string, - STATE(3057), 1, - sym__module, - ACTIONS(1746), 15, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(1730), 16, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -134546,23 +134603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134587,132 +134628,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [669] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3634), 1, - anon_sym_export, - ACTIONS(3636), 1, - anon_sym_STAR, - ACTIONS(3638), 1, - anon_sym_COMMA, - ACTIONS(3640), 1, - anon_sym_RBRACE, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, - anon_sym_SEMI, - ACTIONS(3646), 1, - anon_sym_LBRACK, - ACTIONS(3648), 1, - anon_sym_async, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3656), 1, - anon_sym_static, - ACTIONS(3658), 1, - anon_sym_readonly, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - STATE(3831), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5285), 1, - aux_sym_object_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(3654), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3660), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3662), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3924), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5284), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4581), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3632), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [807] = 12, + [580] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1954), 1, + ACTIONS(1940), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 14, - sym__automatic_semicolon, + ACTIONS(1730), 15, + 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, @@ -134723,7 +134663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134739,7 +134679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134765,97 +134705,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [895] = 37, + [669] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3632), 1, + anon_sym_export, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3638), 1, + anon_sym_RBRACE, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3646), 1, + anon_sym_async, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3668), 1, - anon_sym_export, - ACTIONS(3670), 1, - anon_sym_RBRACE, - ACTIONS(3672), 1, - anon_sym_async, - ACTIONS(3674), 1, + ACTIONS(3654), 1, anon_sym_static, - ACTIONS(3676), 1, + ACTIONS(3656), 1, anon_sym_readonly, - STATE(3831), 1, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5243), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3678), 2, + ACTIONS(3658), 2, anon_sym_get, anon_sym_set, - ACTIONS(3680), 3, + ACTIONS(3660), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5108), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3666), 10, + ACTIONS(3630), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -134866,30 +134806,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1033] = 12, + [807] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1952), 1, - anon_sym_EQ, - ACTIONS(1954), 1, + ACTIONS(1996), 1, anon_sym_EQ_GT, - ACTIONS(3590), 1, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(2168), 1, - sym_nested_identifier, - STATE(2172), 1, + STATE(2161), 1, sym_string, - STATE(2301), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 14, - sym__automatic_semicolon, + ACTIONS(1730), 13, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -134900,7 +134839,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134916,7 +134855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 26, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134941,30 +134880,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_implements, anon_sym_extends, - [1121] = 12, + [895] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1970), 1, - anon_sym_EQ, - ACTIONS(1972), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, - anon_sym_LBRACE, + ACTIONS(1730), 15, + 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, @@ -134975,7 +134917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134991,7 +134933,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 26, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135016,32 +134958,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - anon_sym_extends, - [1209] = 14, + [983] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1956), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3066), 1, + ACTIONS(3076), 1, anon_sym_in, - ACTIONS(3069), 1, + ACTIONS(3079), 1, anon_sym_of, - ACTIONS(3590), 1, + ACTIONS(3564), 1, sym_identifier, - STATE(2168), 1, + STATE(2163), 1, sym_nested_identifier, - STATE(2172), 1, + STATE(2165), 1, sym_string, - STATE(2301), 1, + STATE(2180), 1, sym__module, - ACTIONS(1746), 14, + ACTIONS(1730), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -135056,7 +134996,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135072,7 +135012,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 23, + ACTIONS(1713), 23, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135096,97 +135036,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [1301] = 37, + [1075] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, ACTIONS(3634), 1, - anon_sym_export, - ACTIONS(3636), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, ACTIONS(3648), 1, - anon_sym_async, - ACTIONS(3650), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3656), 1, - anon_sym_static, - ACTIONS(3658), 1, - anon_sym_readonly, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3682), 1, + ACTIONS(3666), 1, + anon_sym_export, + ACTIONS(3668), 1, anon_sym_RBRACE, - STATE(3831), 1, + ACTIONS(3670), 1, + anon_sym_async, + ACTIONS(3672), 1, + anon_sym_static, + ACTIONS(3674), 1, + anon_sym_readonly, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5285), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3660), 2, + ACTIONS(3676), 2, anon_sym_get, anon_sym_set, - ACTIONS(3662), 3, + ACTIONS(3678), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5284), 3, + STATE(5167), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3632), 10, + ACTIONS(3664), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -135197,249 +135137,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1439] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(1940), 1, - anon_sym_EQ_GT, - ACTIONS(2006), 1, - anon_sym_EQ, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 14, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [1527] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2275), 1, - anon_sym_EQ, - ACTIONS(2277), 1, - anon_sym_EQ_GT, - ACTIONS(3684), 1, - sym_identifier, - STATE(3205), 1, - sym_nested_identifier, - STATE(3209), 1, - sym_string, - STATE(3321), 1, - sym__module, - ACTIONS(1746), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 26, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_extends, - [1615] = 37, + [1213] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3688), 1, + ACTIONS(3682), 1, anon_sym_export, - ACTIONS(3690), 1, + ACTIONS(3684), 1, anon_sym_RBRACE, - ACTIONS(3692), 1, + ACTIONS(3686), 1, anon_sym_async, - ACTIONS(3694), 1, + ACTIONS(3688), 1, anon_sym_static, - ACTIONS(3696), 1, + ACTIONS(3690), 1, anon_sym_readonly, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5272), 1, + STATE(5218), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3698), 2, + ACTIONS(3692), 2, anon_sym_get, anon_sym_set, - ACTIONS(3700), 3, + ACTIONS(3694), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5282), 3, + STATE(5213), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3686), 10, + ACTIONS(3680), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -135450,97 +135238,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1753] = 37, + [1351] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3704), 1, + ACTIONS(3698), 1, anon_sym_export, - ACTIONS(3706), 1, + ACTIONS(3700), 1, anon_sym_RBRACE, - ACTIONS(3708), 1, + ACTIONS(3702), 1, anon_sym_async, - ACTIONS(3710), 1, + ACTIONS(3704), 1, anon_sym_static, - ACTIONS(3712), 1, + ACTIONS(3706), 1, anon_sym_readonly, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5272), 1, + STATE(5372), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3714), 2, + ACTIONS(3708), 2, anon_sym_get, anon_sym_set, - ACTIONS(3716), 3, + ACTIONS(3710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5282), 3, + STATE(5369), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3702), 10, + ACTIONS(3696), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -135551,7 +135339,160 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1891] = 12, + [1489] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(1994), 1, + anon_sym_EQ, + ACTIONS(1996), 1, + anon_sym_EQ_GT, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 13, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 26, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_implements, + anon_sym_extends, + [1577] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2838), 1, + anon_sym_COLON, + ACTIONS(3558), 1, + sym_identifier, + ACTIONS(3560), 1, + anon_sym_DQUOTE, + ACTIONS(3562), 1, + anon_sym_SQUOTE, + STATE(146), 1, + sym_string, + STATE(147), 1, + sym_nested_identifier, + STATE(201), 1, + sym__module, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 24, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [1667] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -135560,17 +135501,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1924), 1, anon_sym_EQ_GT, - ACTIONS(2148), 1, + ACTIONS(1960), 1, anon_sym_EQ, - ACTIONS(3590), 1, + ACTIONS(3564), 1, sym_identifier, - STATE(2168), 1, + STATE(2163), 1, sym_nested_identifier, - STATE(2172), 1, + STATE(2165), 1, sym_string, - STATE(2301), 1, + STATE(2180), 1, sym__module, - ACTIONS(1746), 14, + ACTIONS(1730), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -135585,7 +135526,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135601,7 +135542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135627,97 +135568,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [1979] = 37, + [1755] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3632), 1, + anon_sym_export, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3646), 1, + anon_sym_async, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3668), 1, - anon_sym_export, - ACTIONS(3672), 1, - anon_sym_async, - ACTIONS(3674), 1, + ACTIONS(3654), 1, anon_sym_static, - ACTIONS(3676), 1, + ACTIONS(3656), 1, anon_sym_readonly, - ACTIONS(3718), 1, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3712), 1, anon_sym_RBRACE, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5243), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3678), 2, + ACTIONS(3658), 2, anon_sym_get, anon_sym_set, - ACTIONS(3680), 3, + ACTIONS(3660), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5108), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3666), 10, + ACTIONS(3630), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -135728,97 +135669,250 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2117] = 37, + [1893] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1924), 1, + anon_sym_EQ_GT, + ACTIONS(2085), 1, + anon_sym_EQ, + ACTIONS(3564), 1, + sym_identifier, + STATE(2163), 1, + sym_nested_identifier, + STATE(2165), 1, + sym_string, + STATE(2180), 1, + sym__module, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 25, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [1981] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 1, + anon_sym_COLON, + ACTIONS(3714), 1, + sym_identifier, + STATE(1066), 1, + sym_string, + STATE(1153), 1, + sym__module, + STATE(5074), 1, + sym_nested_identifier, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 24, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2071] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3722), 1, + ACTIONS(3718), 1, anon_sym_export, - ACTIONS(3724), 1, + ACTIONS(3720), 1, anon_sym_RBRACE, - ACTIONS(3726), 1, + ACTIONS(3722), 1, anon_sym_async, - ACTIONS(3728), 1, + ACTIONS(3724), 1, anon_sym_static, - ACTIONS(3730), 1, + ACTIONS(3726), 1, anon_sym_readonly, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5142), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3732), 2, + ACTIONS(3728), 2, anon_sym_get, anon_sym_set, - ACTIONS(3734), 3, + ACTIONS(3730), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5106), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3720), 10, + ACTIONS(3716), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -135829,97 +135923,375 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2255] = 37, + [2209] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3738), 1, + ACTIONS(3734), 1, anon_sym_export, - ACTIONS(3740), 1, + ACTIONS(3736), 1, anon_sym_RBRACE, + ACTIONS(3738), 1, + anon_sym_async, + ACTIONS(3740), 1, + anon_sym_static, ACTIONS(3742), 1, + anon_sym_readonly, + STATE(3828), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5152), 1, + aux_sym_object_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(3652), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3744), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3746), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5138), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4557), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3732), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [2347] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(1992), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 14, + anon_sym_LBRACE, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 25, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [2435] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3632), 1, + anon_sym_export, + ACTIONS(3634), 1, + anon_sym_STAR, + ACTIONS(3636), 1, + anon_sym_COMMA, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_SEMI, + ACTIONS(3644), 1, + anon_sym_LBRACK, + ACTIONS(3646), 1, anon_sym_async, - ACTIONS(3744), 1, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(3654), 1, anon_sym_static, - ACTIONS(3746), 1, + ACTIONS(3656), 1, anon_sym_readonly, - STATE(3831), 1, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3748), 1, + anon_sym_RBRACE, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5142), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3748), 2, + ACTIONS(3658), 2, anon_sym_get, anon_sym_set, - ACTIONS(3750), 3, + ACTIONS(3660), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5106), 3, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5167), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5148), 3, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4557), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3630), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [2573] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, + anon_sym_STAR, + ACTIONS(3636), 1, + anon_sym_COMMA, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_SEMI, + ACTIONS(3644), 1, + anon_sym_LBRACK, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3752), 1, + anon_sym_export, + ACTIONS(3754), 1, + anon_sym_RBRACE, + ACTIONS(3756), 1, + anon_sym_async, + ACTIONS(3758), 1, + anon_sym_static, + ACTIONS(3760), 1, + anon_sym_readonly, + STATE(3828), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5152), 1, + aux_sym_object_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(3652), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3762), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3764), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5138), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3736), 10, + ACTIONS(3750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -135930,28 +136302,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2393] = 13, + [2711] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1956), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(2874), 1, + ACTIONS(2870), 1, anon_sym_COLON, - ACTIONS(3592), 1, + ACTIONS(3556), 1, sym_identifier, - STATE(1050), 1, + STATE(1047), 1, sym_nested_identifier, - STATE(1056), 1, + STATE(1066), 1, sym_string, - STATE(1103), 1, + STATE(1153), 1, sym__module, - ACTIONS(1746), 14, + ACTIONS(1730), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -135966,7 +136338,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135982,7 +136354,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136007,97 +136379,174 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [2483] = 37, + [2801] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2878), 1, + anon_sym_COLON, + ACTIONS(3564), 1, + sym_identifier, + STATE(2163), 1, + sym_nested_identifier, + STATE(2165), 1, + sym_string, + STATE(2180), 1, + sym__module, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 24, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [2891] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3738), 1, + ACTIONS(3768), 1, anon_sym_export, - ACTIONS(3742), 1, + ACTIONS(3770), 1, + anon_sym_RBRACE, + ACTIONS(3772), 1, anon_sym_async, - ACTIONS(3744), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3746), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3752), 1, - anon_sym_RBRACE, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5142), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3748), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - ACTIONS(3750), 3, + ACTIONS(3780), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5106), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3736), 10, + ACTIONS(3766), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -136108,97 +136557,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2621] = 37, + [3029] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3756), 1, + ACTIONS(3752), 1, anon_sym_export, - ACTIONS(3758), 1, - anon_sym_RBRACE, - ACTIONS(3760), 1, + ACTIONS(3756), 1, anon_sym_async, - ACTIONS(3762), 1, + ACTIONS(3758), 1, anon_sym_static, - ACTIONS(3764), 1, + ACTIONS(3760), 1, anon_sym_readonly, - STATE(3831), 1, + ACTIONS(3782), 1, + anon_sym_RBRACE, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, + STATE(5152), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3766), 2, + ACTIONS(3762), 2, anon_sym_get, anon_sym_set, - ACTIONS(3768), 3, + ACTIONS(3764), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5282), 3, + STATE(5138), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3754), 10, + ACTIONS(3750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -136209,30 +136658,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2759] = 12, + [3167] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1980), 1, + ACTIONS(2111), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 14, - anon_sym_LBRACE, + ACTIONS(1730), 13, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136243,7 +136690,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136259,9 +136707,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 26, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -136285,97 +136734,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [2847] = 37, + [3255] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3772), 1, - anon_sym_export, - ACTIONS(3774), 1, + ACTIONS(3712), 1, anon_sym_RBRACE, - ACTIONS(3776), 1, + ACTIONS(3768), 1, + anon_sym_export, + ACTIONS(3772), 1, anon_sym_async, - ACTIONS(3778), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3780), 1, + ACTIONS(3776), 1, anon_sym_readonly, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5272), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3782), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - ACTIONS(3784), 3, + ACTIONS(3780), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5282), 3, + STATE(5167), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3770), 10, + ACTIONS(3766), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -136386,32 +136835,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2985] = 13, + [3393] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1956), 1, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(1992), 1, anon_sym_EQ_GT, - ACTIONS(2860), 1, - anon_sym_COLON, - ACTIONS(3592), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(1050), 1, - sym_nested_identifier, - STATE(1056), 1, + STATE(2161), 1, sym_string, - STATE(1103), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 14, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1730), 14, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136422,7 +136869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136438,7 +136885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136463,26 +136910,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3075] = 12, + anon_sym_extends, + [3481] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2277), 1, + ACTIONS(2111), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2305), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3784), 1, sym_identifier, - STATE(2166), 1, + STATE(3065), 1, sym_nested_identifier, - STATE(2169), 1, + STATE(3097), 1, sym_string, - STATE(2228), 1, + STATE(3363), 1, sym__module, - ACTIONS(1746), 13, + ACTIONS(1730), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -136496,7 +136944,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136512,7 +136960,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 26, + ACTIONS(1713), 26, anon_sym_STAR, anon_sym_as, anon_sym_LBRACE, @@ -136539,97 +136987,174 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [3163] = 37, + [3569] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2870), 1, + anon_sym_COLON, + ACTIONS(3564), 1, + sym_identifier, + STATE(2163), 1, + sym_nested_identifier, + STATE(2165), 1, + sym_string, + STATE(2180), 1, + sym__module, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 24, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [3659] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3788), 1, + ACTIONS(3752), 1, anon_sym_export, - ACTIONS(3790), 1, - anon_sym_RBRACE, - ACTIONS(3792), 1, + ACTIONS(3756), 1, anon_sym_async, - ACTIONS(3794), 1, + ACTIONS(3758), 1, anon_sym_static, - ACTIONS(3796), 1, + ACTIONS(3760), 1, anon_sym_readonly, - STATE(3831), 1, + ACTIONS(3786), 1, + anon_sym_RBRACE, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, + STATE(5152), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3798), 2, + ACTIONS(3762), 2, anon_sym_get, anon_sym_set, - ACTIONS(3800), 3, + ACTIONS(3764), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5282), 3, + STATE(5138), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3786), 10, + ACTIONS(3750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -136640,97 +137165,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [3301] = 37, + [3797] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3632), 1, + anon_sym_export, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3646), 1, + anon_sym_async, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3690), 1, - anon_sym_RBRACE, - ACTIONS(3756), 1, - anon_sym_export, - ACTIONS(3760), 1, - anon_sym_async, - ACTIONS(3762), 1, + ACTIONS(3654), 1, anon_sym_static, - ACTIONS(3764), 1, + ACTIONS(3656), 1, anon_sym_readonly, - STATE(3831), 1, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3788), 1, + anon_sym_RBRACE, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5272), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3766), 2, + ACTIONS(3658), 2, anon_sym_get, anon_sym_set, - ACTIONS(3768), 3, + ACTIONS(3660), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5282), 3, + STATE(5167), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3754), 10, + ACTIONS(3630), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -136741,97 +137266,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [3439] = 37, + [3935] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3688), 1, + ACTIONS(3792), 1, anon_sym_export, - ACTIONS(3692), 1, + ACTIONS(3794), 1, + anon_sym_RBRACE, + ACTIONS(3796), 1, anon_sym_async, - ACTIONS(3694), 1, + ACTIONS(3798), 1, anon_sym_static, - ACTIONS(3696), 1, + ACTIONS(3800), 1, anon_sym_readonly, - ACTIONS(3802), 1, - anon_sym_RBRACE, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5272), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3698), 2, + ACTIONS(3802), 2, anon_sym_get, anon_sym_set, - ACTIONS(3700), 3, + ACTIONS(3804), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5282), 3, + STATE(5167), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3686), 10, + ACTIONS(3790), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -136842,235 +137367,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [3577] = 37, + [4073] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3636), 1, - anon_sym_STAR, - ACTIONS(3638), 1, - anon_sym_COMMA, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, - anon_sym_SEMI, - ACTIONS(3646), 1, - anon_sym_LBRACK, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3738), 1, - anon_sym_export, - ACTIONS(3742), 1, - anon_sym_async, - ACTIONS(3744), 1, - anon_sym_static, - ACTIONS(3746), 1, - anon_sym_readonly, - ACTIONS(3804), 1, - anon_sym_RBRACE, - STATE(3831), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5142), 1, - aux_sym_object_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(3654), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3748), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3750), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3924), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5106), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4581), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3736), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [3715] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3636), 1, - anon_sym_STAR, - ACTIONS(3638), 1, - anon_sym_COMMA, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, - anon_sym_SEMI, - ACTIONS(3646), 1, - anon_sym_LBRACK, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3756), 1, - anon_sym_export, - ACTIONS(3760), 1, - anon_sym_async, - ACTIONS(3762), 1, - anon_sym_static, - ACTIONS(3764), 1, - anon_sym_readonly, - ACTIONS(3806), 1, - anon_sym_RBRACE, - STATE(3831), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(3654), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3766), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3768), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3924), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4581), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3754), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [3853] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(1940), 1, anon_sym_EQ_GT, - ACTIONS(2880), 1, - anon_sym_COLON, - ACTIONS(3808), 1, + ACTIONS(2028), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(1056), 1, + STATE(2161), 1, sym_string, - STATE(1103), 1, - sym__module, - STATE(5102), 1, + STATE(2162), 1, sym_nested_identifier, - ACTIONS(1746), 14, - sym__automatic_semicolon, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 14, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137080,7 +137401,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137096,7 +137417,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137121,234 +137442,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3943] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3636), 1, - anon_sym_STAR, - ACTIONS(3638), 1, - anon_sym_COMMA, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, - anon_sym_SEMI, - ACTIONS(3646), 1, - anon_sym_LBRACK, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3688), 1, - anon_sym_export, - ACTIONS(3692), 1, - anon_sym_async, - ACTIONS(3694), 1, - anon_sym_static, - ACTIONS(3696), 1, - anon_sym_readonly, - ACTIONS(3810), 1, - anon_sym_RBRACE, - STATE(3831), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(3654), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3698), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3700), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3924), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4581), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3686), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [4081] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3636), 1, - anon_sym_STAR, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3646), 1, - anon_sym_LBRACK, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3756), 1, - anon_sym_export, - ACTIONS(3760), 1, - anon_sym_async, - ACTIONS(3762), 1, - anon_sym_static, - ACTIONS(3764), 1, - anon_sym_readonly, - ACTIONS(3812), 1, - anon_sym_COMMA, - ACTIONS(3814), 1, - anon_sym_RBRACE, - ACTIONS(3816), 1, - anon_sym_SEMI, - ACTIONS(3818), 1, - anon_sym_PIPE_RBRACE, - STATE(3831), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(3654), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3766), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3768), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3924), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4571), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3754), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [4219] = 12, + anon_sym_extends, + [4161] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(1940), 1, anon_sym_EQ_GT, - ACTIONS(3590), 1, + ACTIONS(1982), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(2168), 1, - sym_nested_identifier, - STATE(2172), 1, + STATE(2161), 1, sym_string, - STATE(2301), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 15, - sym__automatic_semicolon, + ACTIONS(1730), 14, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137358,7 +137477,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137374,7 +137493,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137399,28 +137518,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4307] = 13, + anon_sym_extends, + [4249] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1956), 1, - anon_sym_EQ, ACTIONS(1958), 1, anon_sym_EQ_GT, - ACTIONS(2880), 1, - anon_sym_COLON, - ACTIONS(3590), 1, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(2168), 1, - sym_nested_identifier, - STATE(2172), 1, + STATE(2161), 1, sym_string, - STATE(2301), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 14, + ACTIONS(1730), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -137435,7 +137553,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137451,7 +137569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137476,29 +137594,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4397] = 12, + anon_sym_extends, + [4337] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1972), 1, - anon_sym_EQ_GT, - ACTIONS(2152), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2838), 1, + anon_sym_COLON, + ACTIONS(3556), 1, sym_identifier, - STATE(2166), 1, + STATE(1047), 1, sym_nested_identifier, - STATE(2169), 1, + STATE(1066), 1, sym_string, - STATE(2228), 1, + STATE(1153), 1, sym__module, - ACTIONS(1746), 13, - anon_sym_LBRACE, + ACTIONS(1730), 14, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137509,7 +137631,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137525,7 +137647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 26, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137550,31 +137672,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - anon_sym_extends, - [4485] = 12, + [4427] = 37, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1972), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, + anon_sym_STAR, + ACTIONS(3636), 1, + anon_sym_COMMA, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_SEMI, + ACTIONS(3644), 1, + anon_sym_LBRACK, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3682), 1, + anon_sym_export, + ACTIONS(3686), 1, + anon_sym_async, + ACTIONS(3688), 1, + anon_sym_static, + ACTIONS(3690), 1, + anon_sym_readonly, + ACTIONS(3806), 1, + anon_sym_RBRACE, + STATE(3828), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5218), 1, + aux_sym_object_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(3652), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3692), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3694), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5213), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4557), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3680), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [4565] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(3564), 1, sym_identifier, - STATE(2166), 1, + STATE(2163), 1, sym_nested_identifier, - STATE(2169), 1, + STATE(2165), 1, sym_string, - STATE(2228), 1, + STATE(2180), 1, sym__module, - ACTIONS(1746), 13, - anon_sym_LBRACE, + ACTIONS(1730), 15, + 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, @@ -137585,7 +137808,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137601,7 +137824,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 26, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137626,34 +137849,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - anon_sym_extends, - [4573] = 13, + [4653] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(1996), 1, anon_sym_EQ_GT, - ACTIONS(2874), 1, - anon_sym_COLON, - ACTIONS(3590), 1, + ACTIONS(2281), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(2168), 1, - sym_nested_identifier, - STATE(2172), 1, + STATE(2161), 1, sym_string, - STATE(2301), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 14, - sym__automatic_semicolon, + ACTIONS(1730), 13, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137664,7 +137882,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137680,7 +137898,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 26, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137705,97 +137923,200 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4663] = 37, + anon_sym_implements, + anon_sym_extends, + [4741] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, + ACTIONS(3636), 1, anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3738), 1, + ACTIONS(3698), 1, anon_sym_export, - ACTIONS(3742), 1, + ACTIONS(3702), 1, anon_sym_async, - ACTIONS(3744), 1, + ACTIONS(3704), 1, anon_sym_static, - ACTIONS(3746), 1, + ACTIONS(3706), 1, anon_sym_readonly, - ACTIONS(3820), 1, + ACTIONS(3808), 1, anon_sym_RBRACE, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5142), 1, + STATE(5372), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3748), 2, + ACTIONS(3708), 2, anon_sym_get, anon_sym_set, - ACTIONS(3750), 3, + ACTIONS(3710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5106), 3, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5369), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5148), 3, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4557), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3696), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [4879] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, + anon_sym_STAR, + ACTIONS(3636), 1, + anon_sym_COMMA, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_SEMI, + ACTIONS(3644), 1, + anon_sym_LBRACK, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3752), 1, + anon_sym_export, + ACTIONS(3756), 1, + anon_sym_async, + ACTIONS(3758), 1, + anon_sym_static, + ACTIONS(3760), 1, + anon_sym_readonly, + ACTIONS(3810), 1, + anon_sym_RBRACE, + STATE(3828), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5152), 1, + aux_sym_object_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(3652), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3762), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3764), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5138), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3736), 10, + ACTIONS(3750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -137806,97 +138127,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [4801] = 37, + [5017] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3638), 1, - anon_sym_COMMA, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, ACTIONS(3644), 1, - anon_sym_SEMI, - ACTIONS(3646), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3688), 1, + ACTIONS(3768), 1, anon_sym_export, - ACTIONS(3692), 1, + ACTIONS(3772), 1, anon_sym_async, - ACTIONS(3694), 1, + ACTIONS(3774), 1, anon_sym_static, - ACTIONS(3696), 1, + ACTIONS(3776), 1, anon_sym_readonly, - ACTIONS(3806), 1, + ACTIONS(3812), 1, + anon_sym_COMMA, + ACTIONS(3814), 1, anon_sym_RBRACE, - STATE(3831), 1, + ACTIONS(3816), 1, + anon_sym_SEMI, + ACTIONS(3818), 1, + anon_sym_PIPE_RBRACE, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5272), 1, + STATE(5170), 1, aux_sym_object_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(3698), 2, + ACTIONS(3778), 2, anon_sym_get, anon_sym_set, - ACTIONS(3700), 3, + ACTIONS(3780), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5282), 3, + STATE(5167), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4452), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3686), 10, + ACTIONS(3766), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -137907,29 +138228,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [4939] = 12, + [5155] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, + ACTIONS(1956), 1, + anon_sym_EQ, ACTIONS(1958), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3564), 1, sym_identifier, - STATE(2166), 1, + STATE(2163), 1, sym_nested_identifier, - STATE(2169), 1, + STATE(2165), 1, sym_string, - STATE(2228), 1, + STATE(2180), 1, sym__module, - ACTIONS(1746), 15, + ACTIONS(1730), 14, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -137942,7 +138262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137958,7 +138278,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137983,31 +138303,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [5027] = 12, + anon_sym_extends, + [5243] = 37, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1940), 1, - anon_sym_EQ_GT, - ACTIONS(2028), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, + anon_sym_STAR, + ACTIONS(3636), 1, + anon_sym_COMMA, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_SEMI, + ACTIONS(3644), 1, + anon_sym_LBRACK, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3768), 1, + anon_sym_export, + ACTIONS(3772), 1, + anon_sym_async, + ACTIONS(3774), 1, + anon_sym_static, + ACTIONS(3776), 1, + anon_sym_readonly, + ACTIONS(3788), 1, + anon_sym_RBRACE, + STATE(3828), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5170), 1, + aux_sym_object_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(3652), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3778), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3780), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4557), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3766), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [5381] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2109), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(2111), 1, + anon_sym_EQ_GT, + ACTIONS(3784), 1, sym_identifier, - STATE(2166), 1, + STATE(3065), 1, sym_nested_identifier, - STATE(2169), 1, + STATE(3097), 1, sym_string, - STATE(2228), 1, + STATE(3363), 1, sym__module, - ACTIONS(1746), 14, + ACTIONS(1730), 13, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138017,7 +138437,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138033,9 +138454,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 26, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138059,31 +138481,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [5115] = 12, + [5469] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1924), 1, + ACTIONS(1984), 1, anon_sym_EQ_GT, - ACTIONS(1974), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3590), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2168), 1, - sym_nested_identifier, - STATE(2172), 1, + STATE(2161), 1, sym_string, - STATE(2301), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 14, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(1730), 13, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138093,7 +138514,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138109,7 +138530,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138135,32 +138556,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [5203] = 13, + [5556] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2860), 1, - anon_sym_COLON, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3578), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(3580), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - STATE(153), 1, + ACTIONS(2283), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, sym_string, - STATE(154), 1, + STATE(2162), 1, sym_nested_identifier, - STATE(174), 1, + STATE(2225), 1, sym__module, - ACTIONS(1746), 14, - sym__automatic_semicolon, + ACTIONS(1730), 13, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138171,7 +138589,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138187,7 +138605,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138212,59 +138630,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [5293] = 12, + anon_sym_implements, + [5643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2277), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_EQ, - ACTIONS(3684), 1, - sym_identifier, - STATE(3205), 1, - sym_nested_identifier, - STATE(3209), 1, - sym_string, - STATE(3321), 1, - sym__module, - ACTIONS(1746), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 26, + ACTIONS(3820), 23, anon_sym_STAR, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138286,43 +138658,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [5381] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(1978), 1, - anon_sym_EQ, - ACTIONS(1980), 1, - anon_sym_EQ_GT, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 14, + ACTIONS(3822), 38, + anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_of, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138338,9 +138687,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [5712] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3824), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138362,46 +138724,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [5469] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(1744), 1, - anon_sym_EQ_GT, - ACTIONS(3035), 1, - anon_sym_QMARK, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1733), 3, + ACTIONS(3826), 38, + 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(1746), 11, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138417,34 +138753,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 23, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [5560] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [5781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 23, + ACTIONS(3548), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138468,7 +138790,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3824), 38, + ACTIONS(3550), 38, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -138507,10 +138829,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [5629] = 3, + [5850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 23, + ACTIONS(3828), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138534,7 +138856,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3552), 38, + ACTIONS(3830), 38, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -138573,29 +138895,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [5698] = 12, + [5919] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2154), 1, + ACTIONS(1988), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, - anon_sym_LBRACE, + ACTIONS(1730), 13, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138606,7 +138928,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138622,7 +138944,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138647,13 +138969,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [5785] = 3, + anon_sym_extends, + [6006] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 23, - anon_sym_STAR, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2305), 1, anon_sym_EQ, + ACTIONS(2307), 1, + anon_sym_EQ_GT, + ACTIONS(3784), 1, + sym_identifier, + STATE(3065), 1, + sym_nested_identifier, + STATE(3097), 1, + sym_string, + STATE(3363), 1, + sym__module, + ACTIONS(1730), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 25, + anon_sym_STAR, + anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138675,20 +139044,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3540), 38, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_instanceof, + [6093] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2307), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 13, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138704,22 +139094,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, - anon_sym_extends, - [5854] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 23, + ACTIONS(1713), 25, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -138741,20 +139119,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3828), 38, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_instanceof, + [6180] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2281), 1, + anon_sym_EQ, + ACTIONS(2283), 1, + anon_sym_EQ_GT, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 13, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138770,20 +139169,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 25, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_implements, + [6267] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(1986), 1, + anon_sym_EQ, + ACTIONS(1988), 1, + anon_sym_EQ_GT, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 25, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_extends, - [5923] = 3, + [6354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 23, + ACTIONS(3832), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138807,7 +139297,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3832), 38, + ACTIONS(3834), 38, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -138846,10 +139336,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [5992] = 3, + [6423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 23, + ACTIONS(3836), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -138873,7 +139363,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3836), 38, + ACTIONS(3838), 38, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -138912,33 +139402,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [6061] = 15, + [6492] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1733), 1, - anon_sym_RBRACK, - ACTIONS(2030), 1, + ACTIONS(1962), 1, anon_sym_EQ_GT, - ACTIONS(3095), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3098), 1, - anon_sym_COMMA, - ACTIONS(3100), 1, - anon_sym_COLON, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 11, + ACTIONS(1730), 13, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138949,7 +139435,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138965,7 +139451,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138990,27 +139476,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6154] = 12, + anon_sym_extends, + [6579] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2311), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(1710), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(1728), 1, + anon_sym_EQ_GT, + ACTIONS(3033), 1, + anon_sym_QMARK, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, + ACTIONS(1717), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1730), 11, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -139022,8 +139514,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139039,16 +139530,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -139065,30 +139554,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6241] = 12, + [6670] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1994), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1996), 1, + ACTIONS(1984), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, - anon_sym_COMMA, + ACTIONS(1730), 13, + 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, @@ -139098,7 +139587,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139114,7 +139603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139140,58 +139629,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [6328] = 12, + [6757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2008), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 13, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(3540), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -139213,42 +139656,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [6415] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(1976), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 13, - sym__automatic_semicolon, + ACTIONS(3542), 38, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139264,55 +139685,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [6502] = 12, + [6826] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1996), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(1960), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(1962), 1, + anon_sym_EQ_GT, + ACTIONS(3564), 1, sym_identifier, - STATE(2166), 1, + STATE(2163), 1, sym_nested_identifier, - STATE(2169), 1, + STATE(2165), 1, sym_string, - STATE(2228), 1, + STATE(2180), 1, sym__module, - ACTIONS(1746), 13, - anon_sym_COMMA, + ACTIONS(1730), 13, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139323,7 +139728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139339,7 +139744,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139365,12 +139770,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [6589] = 3, + [6913] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 23, - anon_sym_STAR, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(1717), 1, + anon_sym_RBRACK, + ACTIONS(2030), 1, + anon_sym_EQ_GT, + ACTIONS(3103), 1, + anon_sym_COMMA, + ACTIONS(3109), 1, anon_sym_EQ, + ACTIONS(3112), 1, + anon_sym_COLON, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 24, + anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -139392,20 +139847,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3840), 38, - anon_sym_as, + anon_sym_instanceof, + [7006] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5569), 1, + sym_type_parameters, + STATE(6051), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3103), 4, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_of, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4343), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [7134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139421,6 +139964,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + ACTIONS(3846), 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -139431,29 +140010,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [6658] = 12, + [7206] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2152), 1, - anon_sym_EQ, - ACTIONS(2154), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2626), 1, + anon_sym_RBRACE, + ACTIONS(2848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 13, - anon_sym_LBRACE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1730), 13, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139464,7 +140046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139480,15 +140062,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 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, @@ -139505,41 +140085,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [6745] = 12, + [7294] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2006), 1, + ACTIONS(3852), 1, anon_sym_EQ, - ACTIONS(2008), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3866), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 13, - anon_sym_RBRACE, - anon_sym_LPAREN, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 3, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139555,13 +140122,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, - anon_sym_STAR, + ACTIONS(3846), 16, 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_LT_EQ, + anon_sym_EQ_EQ_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(3842), 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, @@ -139569,9 +140150,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, @@ -139579,30 +140158,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [6832] = 12, + [7378] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2309), 1, - anon_sym_EQ, - ACTIONS(2311), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3684), 1, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2692), 1, + anon_sym_RBRACE, + ACTIONS(2848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, sym_identifier, - STATE(3205), 1, - sym_nested_identifier, - STATE(3209), 1, - sym_string, - STATE(3321), 1, - sym__module, - ACTIONS(1746), 13, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1730), 13, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139613,8 +140194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139630,16 +140210,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -139656,28 +140233,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6919] = 12, + [7466] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1974), 1, - anon_sym_EQ, - ACTIONS(1976), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3590), 1, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2624), 1, + anon_sym_RBRACE, + ACTIONS(2848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, sym_identifier, - STATE(2168), 1, - sym_nested_identifier, - STATE(2172), 1, - sym_string, - STATE(2301), 1, - sym__module, - ACTIONS(1746), 13, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2471), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1730), 13, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139689,7 +140269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139705,15 +140285,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 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, @@ -139730,40 +140308,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [7006] = 12, + [7554] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(2333), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 12, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, + ACTIONS(3863), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3868), 1, + anon_sym_LT, + ACTIONS(3871), 1, + anon_sym_EQ_GT, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139779,12 +140337,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, - anon_sym_STAR, + ACTIONS(3846), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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_PIPE_RBRACE, + ACTIONS(3842), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -139803,33 +140379,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [7092] = 13, + [7634] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2704), 1, - anon_sym_RBRACE, - ACTIONS(2846), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2085), 1, anon_sym_EQ, - ACTIONS(3842), 1, + ACTIONS(2087), 1, + anon_sym_EQ_GT, + ACTIONS(3714), 1, sym_identifier, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1746), 13, + STATE(1066), 1, + sym_string, + STATE(1153), 1, + sym__module, + STATE(5074), 1, + sym_nested_identifier, + ACTIONS(1730), 13, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139841,7 +140412,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139857,13 +140428,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 24, 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, @@ -139880,29 +140453,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7180] = 12, + [7720] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2150), 1, - anon_sym_EQ_GT, - ACTIONS(3576), 1, - sym_identifier, - ACTIONS(3578), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(3580), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - STATE(153), 1, + ACTIONS(2048), 1, + anon_sym_EQ_GT, + ACTIONS(2313), 1, + anon_sym_EQ, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, sym_string, - STATE(154), 1, + STATE(2162), 1, sym_nested_identifier, - STATE(174), 1, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, - sym__automatic_semicolon, + ACTIONS(1730), 12, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -139913,7 +140485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139929,7 +140501,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139954,28 +140526,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7266] = 11, + anon_sym_extends, + [7806] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, + ACTIONS(2085), 1, anon_sym_EQ, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(2087), 1, anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 3, - anon_sym_COMMA, + ACTIONS(3558), 1, + sym_identifier, + ACTIONS(3560), 1, + anon_sym_DQUOTE, + ACTIONS(3562), 1, + anon_sym_SQUOTE, + STATE(146), 1, + sym_string, + STATE(147), 1, + sym_nested_identifier, + STATE(201), 1, + sym__module, + ACTIONS(1730), 13, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3864), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139991,27 +140576,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - 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_LT_EQ, - anon_sym_EQ_EQ_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(3844), 18, + ACTIONS(1713), 24, 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, @@ -140019,7 +140590,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, @@ -140027,31 +140600,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7350] = 14, + anon_sym_instanceof, + [7892] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(1733), 1, - anon_sym_RBRACK, - ACTIONS(2030), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3095), 1, + ACTIONS(2455), 1, + anon_sym_RBRACE, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2848), 1, anon_sym_EQ, - ACTIONS(3098), 1, - anon_sym_COMMA, - ACTIONS(3574), 1, + ACTIONS(3850), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 11, - anon_sym_LPAREN, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2471), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1730), 13, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140062,7 +140637,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140078,15 +140653,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 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, @@ -140103,28 +140676,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7440] = 11, + [7980] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3866), 1, - anon_sym_EQ, - ACTIONS(3868), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 3, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2646), 1, + anon_sym_RBRACE, + ACTIONS(2848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, + sym_identifier, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1730), 13, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3864), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140140,35 +140728,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - ACTIONS(3844), 18, + ACTIONS(1713), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_AMP, anon_sym_CARET, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_PERCENT, @@ -140176,29 +140750,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7524] = 13, + anon_sym_instanceof, + [8068] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1744), 1, + ACTIONS(1728), 1, anon_sym_EQ_GT, ACTIONS(1946), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1733), 2, + ACTIONS(1717), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(1746), 11, + ACTIONS(1730), 11, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -140210,7 +140785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140226,7 +140801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140251,115 +140826,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7612] = 33, + [8156] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5520), 1, - sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3098), 4, + ACTIONS(3844), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4300), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [7740] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3846), 1, - anon_sym_EQ, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3866), 1, anon_sym_EQ_GT, - STATE(3896), 1, + ACTIONS(3873), 1, + anon_sym_LT, + STATE(2354), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140375,7 +140855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, + ACTIONS(3846), 19, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -140395,7 +140875,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140417,31 +140897,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7820] = 13, + [8236] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2028), 1, - anon_sym_EQ, + ACTIONS(1717), 1, + anon_sym_RBRACK, ACTIONS(2030), 1, anon_sym_EQ_GT, - ACTIONS(3134), 1, - anon_sym_COLON, - ACTIONS(3574), 1, + ACTIONS(3103), 1, + anon_sym_COMMA, + ACTIONS(3109), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 12, + ACTIONS(1730), 11, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140451,7 +140932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140467,7 +140948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140492,29 +140973,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7908] = 12, + [8326] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2150), 1, + ACTIONS(2048), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, - sym__automatic_semicolon, + ACTIONS(1730), 12, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -140525,7 +141005,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140541,7 +141021,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140566,33 +141046,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7994] = 13, + anon_sym_extends, + [8412] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(2846), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2028), 1, anon_sym_EQ, - ACTIONS(3842), 1, + ACTIONS(2030), 1, + anon_sym_EQ_GT, + ACTIONS(3578), 1, sym_identifier, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1746), 13, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 13, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140602,7 +141080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140618,13 +141096,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 24, 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, @@ -140641,33 +141121,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8082] = 13, + [8498] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2028), 1, + anon_sym_EQ, + ACTIONS(2030), 1, anon_sym_EQ_GT, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, + ACTIONS(3112), 1, anon_sym_COLON, - ACTIONS(2680), 1, - anon_sym_RBRACE, - ACTIONS(2846), 1, - anon_sym_EQ, - ACTIONS(3842), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1746), 13, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 12, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140677,7 +141155,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140693,13 +141171,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 24, 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, @@ -140716,41 +141196,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8170] = 13, + [8586] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2028), 1, - anon_sym_EQ, - ACTIONS(2030), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3871), 1, anon_sym_EQ_GT, - ACTIONS(3100), 1, - anon_sym_COLON, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 12, - anon_sym_LPAREN, + ACTIONS(3876), 1, + anon_sym_EQ, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 3, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140766,13 +141233,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, - anon_sym_STAR, + ACTIONS(3846), 16, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + ACTIONS(3842), 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, @@ -140780,9 +141261,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, @@ -140790,13 +141269,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [8258] = 5, + [8670] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(2085), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(2087), 1, + anon_sym_EQ_GT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3878), 1, + sym_identifier, + STATE(4241), 1, + sym_nested_identifier, + STATE(4323), 1, + sym_string, + STATE(4644), 1, + sym__module, + ACTIONS(1730), 13, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140812,8 +141318,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -140835,52 +141342,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3848), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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, - [8330] = 13, + [8756] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(2533), 1, + ACTIONS(2465), 1, anon_sym_LPAREN, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(2656), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - ACTIONS(2846), 1, + ACTIONS(2848), 1, anon_sym_EQ, - ACTIONS(3842), 1, + ACTIONS(3850), 1, sym_identifier, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1746), 13, + ACTIONS(1730), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -140894,7 +141379,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140910,7 +141395,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140933,30 +141418,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8418] = 12, + [8844] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2028), 1, + ACTIONS(2046), 1, anon_sym_EQ, - ACTIONS(2030), 1, + ACTIONS(2048), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, - anon_sym_RBRACE, + ACTIONS(1730), 12, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -140966,7 +141450,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140982,7 +141466,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141007,30 +141491,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8504] = 13, + anon_sym_extends, + [8930] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(1744), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2592), 1, + anon_sym_RBRACE, + ACTIONS(2848), 1, + anon_sym_EQ, + ACTIONS(3850), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1733), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1730), 13, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1746), 11, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141041,7 +141528,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141057,15 +141544,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 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, @@ -141082,7 +141567,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8592] = 12, + [9018] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -141091,17 +141576,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2030), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, + ACTIONS(1730), 13, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, @@ -141115,7 +141600,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141131,7 +141616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141156,29 +141641,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8678] = 12, + [9104] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2148), 1, + ACTIONS(1710), 1, anon_sym_EQ, - ACTIONS(2150), 1, + ACTIONS(1728), 1, anon_sym_EQ_GT, - ACTIONS(3592), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(1050), 1, - sym_nested_identifier, - STATE(1056), 1, + STATE(2161), 1, sym_string, - STATE(1103), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, - sym__automatic_semicolon, + ACTIONS(1717), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1730), 11, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -141189,7 +141675,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141205,7 +141691,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141230,20 +141716,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8764] = 9, + [9192] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3852), 1, + anon_sym_EQ, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, ACTIONS(3866), 1, - anon_sym_EQ, - ACTIONS(3868), 1, anon_sym_EQ_GT, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141259,15 +141745,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, - sym__automatic_semicolon, + ACTIONS(3846), 19, 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_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141278,8 +141765,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141301,29 +141787,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8844] = 12, + [9272] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2028), 1, anon_sym_EQ, - ACTIONS(3574), 1, + ACTIONS(2030), 1, + anon_sym_EQ_GT, + ACTIONS(3132), 1, + anon_sym_COLON, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 12, - anon_sym_COMMA, + ACTIONS(1730), 12, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -141333,7 +141821,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141349,7 +141837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141374,41 +141862,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [8930] = 12, + [9360] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2148), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(2150), 1, - anon_sym_EQ_GT, - ACTIONS(3590), 1, - sym_identifier, - STATE(2168), 1, - sym_nested_identifier, - STATE(2172), 1, - sym_string, - STATE(2301), 1, - sym__module, - ACTIONS(1746), 13, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3863), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3871), 1, + anon_sym_EQ_GT, + ACTIONS(3880), 1, + anon_sym_LT, + STATE(2602), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141424,12 +141891,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, - anon_sym_STAR, + ACTIONS(3846), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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_PIPE_RBRACE, + ACTIONS(3842), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -141448,32 +141933,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [9016] = 13, + [9440] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2523), 1, - anon_sym_RBRACE, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2846), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2085), 1, anon_sym_EQ, - ACTIONS(3842), 1, + ACTIONS(2087), 1, + anon_sym_EQ_GT, + ACTIONS(3556), 1, sym_identifier, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2539), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1746), 13, + STATE(1047), 1, + sym_nested_identifier, + STATE(1066), 1, + sym_string, + STATE(1153), 1, + sym__module, + ACTIONS(1730), 13, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -141485,7 +141966,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141501,13 +141982,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 24, 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, @@ -141524,26 +142007,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9104] = 12, + [9526] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2150), 1, + ACTIONS(2087), 1, anon_sym_EQ_GT, - ACTIONS(3874), 1, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(4205), 1, - sym_nested_identifier, - STATE(4379), 1, + STATE(2161), 1, sym_string, - STATE(4608), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 13, + ACTIONS(1730), 13, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -141557,7 +142040,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141573,7 +142056,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -141598,20 +142081,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9190] = 9, + [9612] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3868), 1, + ACTIONS(3871), 1, anon_sym_EQ_GT, - ACTIONS(3872), 1, - anon_sym_EQ, ACTIONS(3876), 1, - anon_sym_LT, - STATE(2493), 1, + anon_sym_EQ, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141627,7 +142110,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, + ACTIONS(3846), 19, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -141647,7 +142130,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141669,30 +142152,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9270] = 13, + [9692] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2085), 1, + anon_sym_EQ, + ACTIONS(2087), 1, anon_sym_EQ_GT, - ACTIONS(2533), 1, + ACTIONS(3564), 1, + sym_identifier, + STATE(2163), 1, + sym_nested_identifier, + STATE(2165), 1, + sym_string, + STATE(2180), 1, + sym__module, + ACTIONS(1730), 13, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(2536), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 24, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [9778] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(2660), 1, + ACTIONS(2626), 1, anon_sym_RBRACE, - ACTIONS(2846), 1, + ACTIONS(2848), 1, anon_sym_EQ, - ACTIONS(3842), 1, - sym_identifier, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - ACTIONS(2539), 2, + ACTIONS(2471), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1746), 13, + ACTIONS(1730), 15, sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, @@ -141702,10 +142258,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141721,9 +142278,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -141743,21 +142299,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [9358] = 9, + [9863] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3866), 1, anon_sym_EQ_GT, - ACTIONS(3872), 1, + ACTIONS(3883), 1, anon_sym_EQ, - ACTIONS(3879), 1, - anon_sym_LT, - STATE(2359), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141773,9 +142328,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, + ACTIONS(3846), 18, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -141793,7 +142347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141815,40 +142369,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9438] = 12, + [9942] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2148), 1, + ACTIONS(3836), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2150), 1, - anon_sym_EQ_GT, - ACTIONS(3808), 1, - sym_identifier, - STATE(1056), 1, - sym_string, - STATE(1103), 1, - sym__module, - STATE(5102), 1, - sym_nested_identifier, - ACTIONS(1746), 13, + 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(3838), 36, 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141864,9 +142423,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [10009] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3828), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141888,44 +142460,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [9524] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2714), 1, - anon_sym_RBRACE, - ACTIONS(2846), 1, - anon_sym_EQ, - ACTIONS(3842), 1, - sym_identifier, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1746), 13, + ACTIONS(3830), 36, 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141941,43 +142487,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, - [9612] = 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [10076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3868), 1, - anon_sym_EQ_GT, - ACTIONS(3872), 1, + ACTIONS(1916), 1, anon_sym_EQ, - ACTIONS(3882), 1, - anon_sym_LT, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(1924), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141993,7 +142520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, + ACTIONS(1730), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -142002,6 +142529,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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142013,10 +142541,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3844), 21, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -142035,28 +142564,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9692] = 12, + [10149] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2198), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(2200), 1, + ACTIONS(2336), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 12, - anon_sym_COMMA, + ACTIONS(1730), 12, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -142067,7 +142596,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142083,7 +142612,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -142108,35 +142637,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [9778] = 11, + [10234] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3885), 1, - anon_sym_EQ, - ACTIONS(3887), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 15, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2716), 1, + anon_sym_RBRACE, + ACTIONS(2848), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1730), 15, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142146,7 +142673,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142162,18 +142689,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(1713), 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, @@ -142181,27 +142710,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9861] = 12, + [10319] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2704), 1, + ACTIONS(2455), 1, anon_sym_RBRACE, - ACTIONS(2846), 1, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(3885), 1, anon_sym_EQ, - STATE(5151), 1, + ACTIONS(3887), 1, + anon_sym_LPAREN, + ACTIONS(3893), 1, + anon_sym_EQ_GT, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, + ACTIONS(3890), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1746), 15, + ACTIONS(3846), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -142217,7 +142746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142233,7 +142762,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 20, + ACTIONS(3842), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142254,20 +142783,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9946] = 9, + [10404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(3540), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3887), 1, - anon_sym_EQ_GT, - ACTIONS(3889), 1, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - STATE(2927), 1, - sym_type_arguments, - ACTIONS(3864), 15, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_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(3542), 36, + 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_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142283,15 +142837,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [10471] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2624), 1, + anon_sym_RBRACE, + ACTIONS(2848), 1, + anon_sym_EQ, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2471), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1730), 15, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142301,14 +142883,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 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, @@ -142324,10 +142920,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10025] = 3, + [10556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 23, + ACTIONS(3548), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -142351,7 +142947,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3836), 36, + ACTIONS(3550), 36, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -142388,81 +142984,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [10092] = 6, + [10623] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(1924), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 20, - 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(3863), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1729), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3895), 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, - [10165] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3866), 1, - anon_sym_EQ, - ACTIONS(3868), 1, + ACTIONS(3898), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + STATE(2861), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142478,16 +143013,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 20, + ACTIONS(3846), 18, 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, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142498,12 +143032,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3844), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -142522,20 +143054,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10238] = 9, + [10702] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_EQ_GT, - ACTIONS(3892), 1, + ACTIONS(3844), 1, anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3866), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142551,8 +143077,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, + ACTIONS(3846), 20, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -142560,6 +143087,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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142570,10 +143098,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -142592,27 +143121,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10317] = 12, + [10775] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(2704), 1, + ACTIONS(2692), 1, anon_sym_RBRACE, - ACTIONS(3894), 1, + ACTIONS(3885), 1, anon_sym_EQ, - ACTIONS(3896), 1, + ACTIONS(3887), 1, anon_sym_LPAREN, - ACTIONS(3902), 1, + ACTIONS(3893), 1, anon_sym_EQ_GT, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3899), 2, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(3890), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3848), 15, + ACTIONS(3846), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -142628,7 +143157,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142644,7 +143173,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 20, + ACTIONS(3842), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142665,43 +143194,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10402] = 12, + [10860] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2660), 1, - anon_sym_RBRACE, - ACTIONS(2846), 1, - anon_sym_EQ, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2539), 2, + ACTIONS(3857), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1746), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3863), 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(1750), 15, + ACTIONS(3898), 1, + anon_sym_EQ_GT, + ACTIONS(3900), 1, + anon_sym_EQ, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142717,81 +143223,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 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, - [10487] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3538), 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(3540), 36, + ACTIONS(3846), 18, 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_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, @@ -142801,62 +143242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [10554] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3882), 1, - anon_sym_LT, - ACTIONS(3892), 1, - anon_sym_EQ, - ACTIONS(3910), 1, - anon_sym_DOT, - ACTIONS(3913), 1, - anon_sym_EQ_GT, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3856), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3904), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3908), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3848), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 19, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142868,7 +143254,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, @@ -142876,7 +143264,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10641] = 12, + [10939] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -142885,17 +143273,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(2313), 1, anon_sym_EQ, - ACTIONS(2335), 1, + ACTIONS(2315), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 11, + ACTIONS(1730), 11, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -142907,7 +143295,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142923,7 +143311,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -142949,12 +143337,146 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [10726] = 3, + [11024] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 23, + ACTIONS(564), 1, anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1090), 1, + anon_sym_AMP, + ACTIONS(1092), 1, + anon_sym_PIPE, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2125), 1, + anon_sym_new, + ACTIONS(2133), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(2982), 1, + anon_sym_LBRACE, + ACTIONS(2986), 1, + anon_sym_LBRACK, + ACTIONS(3902), 1, + sym_identifier, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5417), 1, + sym_type_parameters, + STATE(5960), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(4305), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4616), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [11151] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, anon_sym_EQ, + ACTIONS(3871), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 20, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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_PIPE_RBRACE, + ACTIONS(3842), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -142976,18 +143498,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3832), 36, - 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_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [11224] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3871), 1, + anon_sym_EQ_GT, + ACTIONS(3876), 1, + anon_sym_EQ, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143003,6 +143521,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 20, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -143013,27 +143542,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [10793] = 12, + ACTIONS(3842), 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, + [11297] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(2533), 1, + ACTIONS(2465), 1, anon_sym_LPAREN, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(2680), 1, + ACTIONS(2692), 1, anon_sym_RBRACE, - ACTIONS(2846), 1, + ACTIONS(2848), 1, anon_sym_EQ, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1746), 15, + ACTIONS(1730), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143049,7 +143601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143065,7 +143617,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 20, + ACTIONS(1713), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143086,22 +143638,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10878] = 8, + [11382] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2626), 1, + anon_sym_RBRACE, + ACTIONS(3885), 1, anon_sym_EQ, - ACTIONS(1940), 1, + ACTIONS(3887), 1, + anon_sym_LPAREN, + ACTIONS(3893), 1, anon_sym_EQ_GT, - ACTIONS(3915), 3, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(3890), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3846), 15, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1750), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143117,37 +143690,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, - 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_LT_EQ, - anon_sym_EQ_EQ_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(1729), 19, + ACTIONS(3842), 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, @@ -143155,27 +143711,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10955] = 12, + [11467] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(2660), 1, + ACTIONS(2646), 1, anon_sym_RBRACE, - ACTIONS(3894), 1, + ACTIONS(3885), 1, anon_sym_EQ, - ACTIONS(3896), 1, + ACTIONS(3887), 1, anon_sym_LPAREN, - ACTIONS(3902), 1, + ACTIONS(3893), 1, anon_sym_EQ_GT, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - ACTIONS(3899), 2, + ACTIONS(3890), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3848), 15, + ACTIONS(3846), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143191,7 +143747,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143207,7 +143763,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 20, + ACTIONS(3842), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143228,20 +143784,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11040] = 9, + [11552] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3868), 1, - anon_sym_EQ_GT, - ACTIONS(3882), 1, - anon_sym_LT, - ACTIONS(3892), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2334), 1, anon_sym_EQ, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(2336), 1, + anon_sym_EQ_GT, + ACTIONS(3076), 1, + anon_sym_in, + ACTIONS(3079), 1, + anon_sym_of, + ACTIONS(3578), 1, + sym_identifier, + STATE(2161), 1, + sym_string, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, + sym__module, + ACTIONS(1730), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143257,29 +143835,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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_PIPE_RBRACE, - ACTIONS(3844), 21, + ACTIONS(1713), 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, @@ -143298,14 +143858,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11119] = 6, + anon_sym_instanceof, + [11641] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(1940), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143321,15 +143882,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 20, - sym__automatic_semicolon, + ACTIONS(1730), 20, 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_LT_EQ, @@ -143341,8 +143903,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143365,10 +143926,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11192] = 3, + [11714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 23, + ACTIONS(3824), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -143392,7 +143953,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3828), 36, + ACTIONS(3826), 36, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -143429,20 +143990,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [11259] = 9, + [11781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3820), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3859), 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(3822), 36, + 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_LBRACK, anon_sym_DOT, - ACTIONS(3885), 1, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [11848] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1916), 1, anon_sym_EQ, - ACTIONS(3887), 1, + ACTIONS(1924), 1, + anon_sym_EQ_GT, + ACTIONS(3904), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + ACTIONS(1713), 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, + [11925] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3898), 1, anon_sym_EQ_GT, - STATE(3896), 1, + ACTIONS(3910), 1, + anon_sym_EQ, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143458,7 +144152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, + ACTIONS(3846), 18, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -143477,7 +144171,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143499,26 +144193,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11338] = 12, + [12004] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2333), 1, - anon_sym_EQ, - ACTIONS(2335), 1, + ACTIONS(2315), 1, anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(3578), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, + STATE(2161), 1, sym_string, - STATE(2228), 1, + STATE(2162), 1, + sym_nested_identifier, + STATE(2225), 1, sym__module, - ACTIONS(1746), 11, + ACTIONS(1730), 11, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -143530,7 +144224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143546,7 +144240,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 25, + ACTIONS(1713), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -143572,22 +144266,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [11423] = 8, + [12089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, - anon_sym_EQ, ACTIONS(1924), 1, anon_sym_EQ_GT, - ACTIONS(3915), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1750), 15, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143603,13 +144289,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, + ACTIONS(1730), 20, 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_LT_EQ, @@ -143620,12 +144308,14 @@ 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, - ACTIONS(1729), 19, + ACTIONS(1713), 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, @@ -143633,7 +144323,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, @@ -143641,27 +144333,121 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11500] = 12, + [12162] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, + anon_sym_AMP, + ACTIONS(606), 1, + anon_sym_PIPE, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2091), 1, + anon_sym_typeof, + ACTIONS(2093), 1, + anon_sym_new, + ACTIONS(2101), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5615), 1, + sym_type_parameters, + STATE(5719), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3103), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4405), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [12289] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2465), 1, + anon_sym_LPAREN, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(2714), 1, + ACTIONS(2646), 1, anon_sym_RBRACE, - ACTIONS(3894), 1, + ACTIONS(2848), 1, anon_sym_EQ, - ACTIONS(3896), 1, - anon_sym_LPAREN, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3899), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3848), 15, + ACTIONS(1730), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143677,7 +144463,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143693,7 +144479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 20, + ACTIONS(1713), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143714,27 +144500,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11585] = 12, + [12374] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2656), 1, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2455), 1, anon_sym_RBRACE, - ACTIONS(3894), 1, - anon_sym_EQ, - ACTIONS(3896), 1, + ACTIONS(2465), 1, anon_sym_LPAREN, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - STATE(5151), 1, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2848), 1, + anon_sym_EQ, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3899), 2, + ACTIONS(2471), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3848), 15, + ACTIONS(1730), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143750,7 +144536,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143766,7 +144552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 20, + ACTIONS(1713), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143787,31 +144573,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11670] = 14, + [12459] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2313), 1, + ACTIONS(2468), 1, + anon_sym_COLON, + ACTIONS(2592), 1, + anon_sym_RBRACE, + ACTIONS(3885), 1, anon_sym_EQ, - ACTIONS(2315), 1, - anon_sym_EQ_GT, - ACTIONS(3066), 1, - anon_sym_in, - ACTIONS(3069), 1, - anon_sym_of, - ACTIONS(3574), 1, - sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 11, + ACTIONS(3887), 1, anon_sym_LPAREN, + ACTIONS(3893), 1, + anon_sym_EQ_GT, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(3890), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3846), 15, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -143819,10 +144605,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143838,14 +144625,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 23, + ACTIONS(3842), 20, 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, @@ -143861,28 +144646,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [11759] = 12, + [12544] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2523), 1, - anon_sym_RBRACE, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(3894), 1, + ACTIONS(2624), 1, + anon_sym_RBRACE, + ACTIONS(3885), 1, anon_sym_EQ, - ACTIONS(3896), 1, + ACTIONS(3887), 1, anon_sym_LPAREN, - ACTIONS(3902), 1, + ACTIONS(3893), 1, anon_sym_EQ_GT, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5157), 1, aux_sym_object_repeat1, - ACTIONS(3899), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3890), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3848), 15, + ACTIONS(3846), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -143898,7 +144682,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143914,7 +144698,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 20, + ACTIONS(3842), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143935,33 +144719,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11844] = 12, + [12629] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3868), 1, + anon_sym_LT, + ACTIONS(3883), 1, + anon_sym_EQ, + ACTIONS(3918), 1, + anon_sym_DOT, + ACTIONS(3921), 1, anon_sym_EQ_GT, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2656), 1, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3860), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3912), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2846), 1, - anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1746), 15, + ACTIONS(3916), 4, sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3846), 11, + anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -143971,7 +144757,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143987,20 +144773,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 20, + ACTIONS(3842), 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, @@ -144008,14 +144793,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11929] = 6, + [12716] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_EQ, - ACTIONS(1940), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3898), 1, anon_sym_EQ_GT, - ACTIONS(1750), 15, + ACTIONS(3910), 1, + anon_sym_EQ, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 15, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144031,33 +144846,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 20, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 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, @@ -144065,9 +144857,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, @@ -144075,43 +144865,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12002] = 12, + [12799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2523), 1, - anon_sym_RBRACE, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2846), 1, + ACTIONS(3832), 23, + anon_sym_STAR, anon_sym_EQ, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2539), 2, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1746), 15, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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(3834), 36, 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1750), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144127,135 +144919,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 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, - [12087] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, - anon_sym_AMP, - ACTIONS(1626), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2170), 1, - anon_sym_new, - ACTIONS(2178), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(2984), 1, - anon_sym_LBRACE, - ACTIONS(2988), 1, - anon_sym_LBRACK, - ACTIONS(3921), 1, - sym_identifier, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5451), 1, - sym_type_parameters, - STATE(6068), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4302), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4886), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [12214] = 9, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [12866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3887), 1, - anon_sym_EQ_GT, - ACTIONS(3923), 1, + ACTIONS(1938), 1, anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(1940), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144271,15 +144952,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1730), 20, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144290,10 +144973,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -144312,29 +144996,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12293] = 12, + [12939] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3908), 1, + ACTIONS(3900), 1, + anon_sym_EQ, + ACTIONS(3916), 1, anon_sym_COMMA, ACTIONS(3923), 1, - anon_sym_EQ, - ACTIONS(3925), 1, anon_sym_EQ_GT, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3850), 2, + ACTIONS(3854), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3856), 3, + ACTIONS(3860), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3848), 15, + ACTIONS(3846), 15, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -144350,7 +145034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144366,7 +145050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3842), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144385,194 +145069,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12378] = 12, + [13024] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(2680), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - ACTIONS(3894), 1, + ACTIONS(3885), 1, anon_sym_EQ, - ACTIONS(3896), 1, + ACTIONS(3887), 1, anon_sym_LPAREN, - ACTIONS(3902), 1, + ACTIONS(3893), 1, anon_sym_EQ_GT, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3899), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3848), 15, - 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, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [12463] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2291), 1, - anon_sym_new, - ACTIONS(2299), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5581), 1, - sym_type_parameters, - STATE(5841), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3098), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4370), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [12590] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(3894), 1, - anon_sym_EQ, - ACTIONS(3896), 1, - anon_sym_LPAREN, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - STATE(5340), 1, + STATE(5319), 1, aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3899), 2, + ACTIONS(3890), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3848), 15, + ACTIONS(3846), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -144588,7 +145105,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144604,7 +145121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 20, + ACTIONS(3842), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144625,29 +145142,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12675] = 12, + [13109] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3892), 1, + ACTIONS(3883), 1, anon_sym_EQ, - ACTIONS(3908), 1, + ACTIONS(3916), 1, anon_sym_extends, - ACTIONS(3913), 1, + ACTIONS(3921), 1, anon_sym_EQ_GT, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3850), 2, + ACTIONS(3854), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3856), 3, + ACTIONS(3860), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3848), 15, + ACTIONS(3846), 15, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, @@ -144663,7 +145180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144679,7 +145196,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3842), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144698,14 +145215,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12760] = 6, + [13194] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(3852), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(3866), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144721,7 +145238,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 20, + ACTIONS(3846), 20, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -144742,7 +145259,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -144765,78 +145282,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12833] = 3, + [13267] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 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(3840), 36, - 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_LBRACK, + ACTIONS(3863), 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [12900] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3862), 1, + ACTIONS(3868), 1, + anon_sym_LT, + ACTIONS(3871), 1, anon_sym_EQ_GT, - ACTIONS(3872), 1, + ACTIONS(3883), 1, anon_sym_EQ, - ACTIONS(3864), 15, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144852,17 +145311,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 20, + ACTIONS(3846), 18, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144873,38 +145329,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 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, - [12973] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 23, + anon_sym_PIPE_RBRACE, + ACTIONS(3842), 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, @@ -144923,64 +145352,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3552), 36, - 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_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_extends, - anon_sym_PIPE_RBRACE, - [13040] = 12, + [13346] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(2533), 1, + ACTIONS(2465), 1, anon_sym_LPAREN, - ACTIONS(2536), 1, + ACTIONS(2468), 1, anon_sym_COLON, - ACTIONS(2710), 1, + ACTIONS(2592), 1, anon_sym_RBRACE, - ACTIONS(2846), 1, + ACTIONS(2848), 1, anon_sym_EQ, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(2471), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1746), 15, + ACTIONS(1730), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -144996,7 +145388,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145012,39 +145404,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 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, - [13125] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3822), 23, + ACTIONS(1713), 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, @@ -145060,44 +145425,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3824), 36, - 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_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_extends, - anon_sym_PIPE_RBRACE, - [13192] = 33, + [13431] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -145106,70 +145434,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(1624), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(1626), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(1640), 1, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(2170), 1, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3927), 1, + ACTIONS(3925), 1, sym_identifier, - ACTIONS(3929), 1, + ACTIONS(3927), 1, anon_sym_LBRACE, - ACTIONS(3931), 1, + ACTIONS(3929), 1, anon_sym_LBRACK, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5417), 1, sym_type_parameters, - STATE(6068), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(4302), 3, + STATE(4305), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4886), 7, + STATE(4616), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -145177,7 +145505,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -145191,14 +145519,22 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13319] = 6, + [13558] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, + ACTIONS(1938), 1, anon_sym_EQ, - ACTIONS(3862), 1, + ACTIONS(1940), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3904), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145214,15 +145550,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 20, + ACTIONS(1730), 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, @@ -145234,13 +145568,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 19, 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, @@ -145248,9 +145580,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, @@ -145258,43 +145588,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13392] = 12, + [13635] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2533), 1, - anon_sym_LPAREN, - ACTIONS(2536), 1, - anon_sym_COLON, - ACTIONS(2714), 1, - anon_sym_RBRACE, - ACTIONS(2846), 1, + ACTIONS(3844), 1, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2539), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1746), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(3863), 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(1750), 15, + ACTIONS(3923), 1, + anon_sym_EQ_GT, + ACTIONS(3931), 1, + anon_sym_LT, + STATE(4202), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145310,12 +145617,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 20, + ACTIONS(3846), 17, + 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_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3842), 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, @@ -145331,39 +145657,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13477] = 12, + [13713] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(2315), 1, - anon_sym_EQ_GT, - ACTIONS(3574), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - STATE(2166), 1, - sym_nested_identifier, - STATE(2169), 1, - sym_string, - STATE(2228), 1, - sym__module, - ACTIONS(1746), 12, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, + anon_sym_LBRACE, + ACTIONS(3940), 1, + anon_sym_typeof, + ACTIONS(3942), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3946), 1, + anon_sym_new, + ACTIONS(3948), 1, + anon_sym_QMARK, + ACTIONS(3950), 1, + anon_sym_AMP, + ACTIONS(3952), 1, + anon_sym_PIPE, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, + anon_sym_readonly, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, + anon_sym_keyof, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, + sym_nested_type_identifier, + STATE(2410), 1, + sym_template_string, + STATE(2454), 1, + sym__primary_type, + STATE(2455), 1, + sym__number, + STATE(2593), 1, + sym_string, + STATE(5523), 1, + sym_type_parameters, + STATE(5836), 1, + sym_formal_parameters, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2685), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2452), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [13841] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, + anon_sym_EQ_GT, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(3904), 1, anon_sym_LBRACK, + ACTIONS(3907), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3972), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2309), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1730), 12, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145379,9 +145800,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(1713), 20, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -145393,9 +145813,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, @@ -145403,15 +145821,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [13562] = 6, + [13921] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3868), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3866), 1, anon_sym_EQ_GT, - ACTIONS(3872), 1, + ACTIONS(3976), 1, anon_sym_EQ, - ACTIONS(3864), 15, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145427,16 +145850,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 20, - sym__automatic_semicolon, + ACTIONS(3846), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145447,12 +145868,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3844), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -145471,14 +145890,117 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13635] = 6, + [13999] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3978), 1, + sym_identifier, + ACTIONS(3980), 1, + anon_sym_typeof, + ACTIONS(3982), 1, + anon_sym_new, + ACTIONS(3984), 1, + anon_sym_QMARK, + ACTIONS(3986), 1, + anon_sym_AMP, + ACTIONS(3988), 1, + anon_sym_PIPE, + ACTIONS(3990), 1, + sym_this, + ACTIONS(3992), 1, + anon_sym_readonly, + ACTIONS(3994), 1, + anon_sym_asserts, + ACTIONS(3996), 1, + anon_sym_keyof, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5463), 1, + sym_type_parameters, + STATE(5575), 1, + sym_type_predicate, + STATE(5995), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5014), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14127] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1944), 1, - anon_sym_EQ_GT, ACTIONS(1948), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(1950), 1, + anon_sym_EQ_GT, + ACTIONS(2309), 1, + anon_sym_COMMA, + ACTIONS(3904), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145494,15 +146016,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 19, + ACTIONS(1730), 16, 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_LT_EQ, @@ -145513,13 +146033,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(1713), 19, 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, @@ -145527,9 +146045,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, @@ -145537,79 +146053,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13707] = 34, + [14205] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(3941), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(3947), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(3949), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4028), 1, sym_this, - ACTIONS(3963), 1, + ACTIONS(4032), 1, anon_sym_readonly, - ACTIONS(3965), 1, + ACTIONS(4034), 1, + anon_sym_asserts, + ACTIONS(4036), 1, anon_sym_infer, - ACTIONS(3967), 1, + ACTIONS(4038), 1, anon_sym_keyof, - ACTIONS(3969), 1, + ACTIONS(4040), 1, anon_sym_LBRACE_PIPE, - STATE(2163), 1, + STATE(4036), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(4219), 1, sym__number, - STATE(2348), 1, - sym_template_string, - STATE(5477), 1, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, + STATE(5005), 1, + sym_type_predicate, + STATE(5570), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5833), 1, sym_nested_identifier, - STATE(6014), 1, + STATE(5923), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4030), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3534), 7, + STATE(4272), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -145617,7 +146133,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -145631,185 +146147,186 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [13835] = 34, + [14333] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3971), 1, - sym_identifier, - ACTIONS(3973), 1, - anon_sym_typeof, - ACTIONS(3975), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3977), 1, - anon_sym_QMARK, - ACTIONS(3979), 1, - anon_sym_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE, - ACTIONS(3983), 1, - sym_this, - ACTIONS(3985), 1, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(3816), 1, + anon_sym_SEMI, + ACTIONS(3818), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(4044), 1, + anon_sym_export, + ACTIONS(4046), 1, + anon_sym_STAR, + ACTIONS(4048), 1, + anon_sym_COMMA, + ACTIONS(4050), 1, + anon_sym_RBRACE, + ACTIONS(4052), 1, + anon_sym_async, + ACTIONS(4056), 1, + anon_sym_static, + ACTIONS(4058), 1, anon_sym_readonly, - ACTIONS(3987), 1, - anon_sym_asserts, - ACTIONS(3989), 1, - anon_sym_keyof, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5453), 1, - sym_type_parameters, - STATE(5594), 1, - sym_type_predicate, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(3833), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, sym_formal_parameters, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(4054), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4060), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4062), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3913), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4452), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4042), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5048), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [13963] = 35, + [14463] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3993), 1, + ACTIONS(4044), 1, anon_sym_export, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(3997), 1, - anon_sym_COMMA, - ACTIONS(3999), 1, - anon_sym_RBRACE, - ACTIONS(4001), 1, + ACTIONS(4052), 1, anon_sym_async, - ACTIONS(4005), 1, + ACTIONS(4056), 1, anon_sym_static, - ACTIONS(4007), 1, + ACTIONS(4058), 1, anon_sym_readonly, - STATE(3826), 1, + ACTIONS(4064), 1, + anon_sym_COMMA, + ACTIONS(4066), 1, + anon_sym_RBRACE, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4003), 2, + ACTIONS(4054), 2, sym_number, sym_private_property_identifier, - ACTIONS(4009), 2, + ACTIONS(4060), 2, anon_sym_get, anon_sym_set, - ACTIONS(4011), 3, + ACTIONS(4062), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3933), 3, + STATE(3913), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3991), 10, + ACTIONS(4042), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -145820,14 +146337,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14093] = 6, + [14593] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, - anon_sym_EQ_GT, - ACTIONS(1946), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3866), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145843,15 +146366,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 19, - sym__automatic_semicolon, + ACTIONS(3846), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145862,12 +146384,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1729), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -145886,14 +146406,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14165] = 6, + [14671] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, - anon_sym_EQ, - ACTIONS(3887), 1, + ACTIONS(1924), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145909,12 +146429,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, + ACTIONS(1730), 19, 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, @@ -145929,7 +146448,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + anon_sym_PIPE_RBRACE, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145952,79 +146472,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14237] = 34, + [14743] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, + anon_sym_new, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4098), 1, + anon_sym_readonly, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4013), 1, - sym_identifier, - ACTIONS(4015), 1, - sym_this, - ACTIONS(4017), 1, - anon_sym_asserts, - STATE(3884), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2286), 1, + sym_template_string, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(5706), 1, sym_type_parameters, - STATE(5594), 1, - sym_type_predicate, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6138), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4672), 7, + STATE(2734), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146032,7 +146552,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146046,7 +146566,76 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14365] = 34, + [14871] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3871), 1, + anon_sym_EQ_GT, + ACTIONS(4106), 1, + anon_sym_EQ, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 17, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3842), 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, + [14949] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -146055,70 +146644,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, + ACTIONS(4108), 1, anon_sym_typeof, - ACTIONS(4021), 1, + ACTIONS(4110), 1, anon_sym_new, - ACTIONS(4023), 1, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(4025), 1, + ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(4027), 1, + ACTIONS(4116), 1, anon_sym_PIPE, - ACTIONS(4029), 1, + ACTIONS(4118), 1, anon_sym_readonly, - ACTIONS(4031), 1, + ACTIONS(4120), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2286), 1, + sym_template_string, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(2348), 1, - sym_template_string, - STATE(5426), 1, + STATE(5630), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5777), 1, + STATE(6101), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3602), 7, + STATE(3541), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146126,7 +146715,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146140,79 +146729,79 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14493] = 34, + [15077] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, + ACTIONS(4128), 1, anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4057), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(4063), 1, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(4065), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(4156), 1, anon_sym_keyof, - ACTIONS(4069), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2956), 1, + sym_template_string, + STATE(3002), 1, sym_string, - STATE(2427), 1, + STATE(3012), 1, sym__primary_type, - STATE(2428), 1, + STATE(3051), 1, sym__number, - STATE(2462), 1, - sym_template_string, - STATE(5393), 1, + STATE(5389), 1, sym_type_parameters, - STATE(5831), 1, + STATE(5882), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2747), 7, + STATE(3133), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146220,7 +146809,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146234,7 +146823,76 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14621] = 34, + [15205] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, + anon_sym_EQ_GT, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2309), 1, + anon_sym_extends, + ACTIONS(3904), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 16, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1713), 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, + [15283] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -146243,70 +146901,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(4065), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(4069), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(4160), 1, anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(4162), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(4166), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(4170), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(4172), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2427), 1, + STATE(2410), 1, + sym_template_string, + STATE(2454), 1, sym__primary_type, - STATE(2428), 1, + STATE(2455), 1, sym__number, - STATE(2462), 1, - sym_template_string, - STATE(5418), 1, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5778), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3147), 7, + STATE(3549), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146314,7 +146972,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146328,91 +146986,157 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [14749] = 35, + [15411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3898), 1, + anon_sym_EQ_GT, + ACTIONS(3910), 1, + anon_sym_EQ, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3842), 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, + [15483] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3644), 1, + ACTIONS(3642), 1, anon_sym_SEMI, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3664), 1, + ACTIONS(3662), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3993), 1, + ACTIONS(4044), 1, anon_sym_export, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(3997), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, + ACTIONS(4052), 1, anon_sym_async, - ACTIONS(4005), 1, + ACTIONS(4056), 1, anon_sym_static, - ACTIONS(4007), 1, + ACTIONS(4058), 1, anon_sym_readonly, - ACTIONS(4085), 1, + ACTIONS(4064), 1, + anon_sym_COMMA, + ACTIONS(4174), 1, anon_sym_RBRACE, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4003), 2, + ACTIONS(4054), 2, sym_number, sym_private_property_identifier, - ACTIONS(4009), 2, + ACTIONS(4060), 2, anon_sym_get, anon_sym_set, - ACTIONS(4011), 3, + ACTIONS(4062), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3933), 3, + STATE(3913), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4581), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3991), 10, + ACTIONS(4042), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -146423,44 +147147,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [14879] = 12, + [15613] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2277), 1, + anon_sym_readonly, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - ACTIONS(3908), 1, - anon_sym_extends, - ACTIONS(4087), 1, + STATE(3916), 1, + sym_nested_type_identifier, + STATE(3987), 1, + sym__number, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5483), 1, + sym_type_parameters, + STATE(5974), 1, + sym_nested_identifier, + STATE(6019), 1, + sym_formal_parameters, + ACTIONS(2275), 2, + sym_true, + sym_false, + ACTIONS(3103), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4056), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3992), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15739] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1942), 1, anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 2, + ACTIONS(1944), 1, + anon_sym_EQ_GT, + ACTIONS(3904), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3856), 3, + anon_sym_extends, + ACTIONS(3907), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3848), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146476,10 +147271,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(1730), 16, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1713), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -146495,12 +147308,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14963] = 5, + [15815] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3852), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146516,15 +147329,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 20, - sym__automatic_semicolon, + ACTIONS(3846), 20, 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_LT_EQ, @@ -146536,8 +147350,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146560,79 +147373,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15033] = 34, + [15885] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(740), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(742), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(744), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2086), 1, + ACTIONS(1720), 1, anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2092), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2114), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4176), 1, sym_identifier, - ACTIONS(4091), 1, + ACTIONS(4178), 1, sym_this, - ACTIONS(4093), 1, + ACTIONS(4180), 1, anon_sym_asserts, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(4522), 1, - sym_type_predicate, - STATE(5481), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5569), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5575), 1, + sym_type_predicate, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4193), 7, + STATE(4785), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146640,7 +147453,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146654,79 +147467,173 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15161] = 34, + [16013] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1298), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4125), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4127), 1, + ACTIONS(4194), 1, + anon_sym_keyof, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2286), 1, + sym_template_string, + STATE(2290), 1, + sym_string, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5444), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(6067), 1, + sym_formal_parameters, + ACTIONS(4088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3575), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [16141] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(762), 1, anon_sym_keyof, - ACTIONS(4131), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - STATE(2634), 1, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2277), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4196), 1, + sym_identifier, + ACTIONS(4198), 1, + sym_this, + ACTIONS(4200), 1, + anon_sym_asserts, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2842), 1, - sym_template_string, - STATE(3012), 1, + STATE(3987), 1, sym__number, - STATE(3023), 1, + STATE(3990), 1, sym__primary_type, - STATE(3034), 1, + STATE(4002), 1, sym_string, - STATE(5404), 1, + STATE(4546), 1, + sym_type_predicate, + STATE(5483), 1, sym_type_parameters, - STATE(6035), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6065), 1, + STATE(6019), 1, sym_formal_parameters, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3255), 7, + STATE(4184), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146734,7 +147641,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146748,22 +147655,199 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15289] = 8, + [16269] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(1944), 1, - anon_sym_EQ_GT, - ACTIONS(3915), 3, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3634), 1, + anon_sym_STAR, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3644), 1, + anon_sym_LBRACK, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4204), 1, + anon_sym_export, + ACTIONS(4209), 1, + anon_sym_async, + ACTIONS(4211), 1, + anon_sym_static, + ACTIONS(4213), 1, + anon_sym_readonly, + STATE(3828), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(3652), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4206), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4215), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4217), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3935), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5631), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5633), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4500), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4202), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [16393] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3642), 1, + anon_sym_SEMI, + ACTIONS(3644), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1750), 15, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(3662), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(4044), 1, + anon_sym_export, + ACTIONS(4046), 1, + anon_sym_STAR, + ACTIONS(4052), 1, + anon_sym_async, + ACTIONS(4056), 1, + anon_sym_static, + ACTIONS(4058), 1, + anon_sym_readonly, + ACTIONS(4064), 1, + anon_sym_COMMA, + ACTIONS(4219), 1, + anon_sym_RBRACE, + STATE(3833), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(4054), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4060), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4062), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3913), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4557), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4042), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [16523] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146779,13 +147863,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(3846), 20, 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -146796,11 +147882,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1729), 19, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3842), 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, @@ -146808,7 +147897,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, @@ -146816,79 +147907,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15365] = 34, + [16593] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4065), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4069), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(4221), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(4233), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2286), 1, + sym_template_string, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(2462), 1, - sym_template_string, - STATE(5693), 1, + STATE(5415), 1, sym_type_parameters, - STATE(5921), 1, + STATE(5756), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3553), 7, + STATE(3561), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146896,7 +147987,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146910,169 +148001,128 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15493] = 9, + [16721] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 1, - anon_sym_EQ, - ACTIONS(1950), 1, - anon_sym_EQ_GT, - ACTIONS(2305), 1, - anon_sym_COMMA, - ACTIONS(3915), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(1729), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2970), 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, - [15571] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3887), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4076), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4078), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, + anon_sym_typeof, + ACTIONS(4237), 1, + anon_sym_new, + ACTIONS(4239), 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(4241), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4243), 1, anon_sym_PIPE, + ACTIONS(4245), 1, + anon_sym_readonly, + ACTIONS(4247), 1, + anon_sym_keyof, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2286), 1, + sym_template_string, + STATE(2290), 1, + sym_string, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5475), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(6024), 1, + sym_formal_parameters, + ACTIONS(4088), 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, - [15643] = 12, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3365), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [16849] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3908), 1, - anon_sym_COMMA, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(4149), 1, + ACTIONS(3893), 1, anon_sym_EQ_GT, - STATE(3896), 1, + ACTIONS(3916), 1, + anon_sym_extends, + ACTIONS(4106), 1, + anon_sym_EQ, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3850), 2, + ACTIONS(3854), 2, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, + ACTIONS(3860), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3848), 14, + ACTIONS(3846), 14, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147082,7 +148132,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147098,7 +148148,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3842), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147117,106 +148167,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15727] = 32, + [16933] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3642), 1, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3646), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4249), 1, + anon_sym_typeof, + ACTIONS(4251), 1, anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4153), 1, - anon_sym_export, - ACTIONS(4158), 1, - anon_sym_async, - ACTIONS(4160), 1, - anon_sym_static, - ACTIONS(4162), 1, + ACTIONS(4253), 1, + anon_sym_QMARK, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4259), 1, anon_sym_readonly, - STATE(3831), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(3654), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4155), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4164), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4166), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3924), 3, + ACTIONS(4261), 1, + anon_sym_keyof, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2286), 1, + sym_template_string, + STATE(2290), 1, sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5580), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5621), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4539), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4151), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5683), 1, + sym_type_parameters, + STATE(5725), 1, + sym_formal_parameters, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [15851] = 6, + STATE(3325), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [17061] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1944), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(1948), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147232,7 +148284,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 19, + ACTIONS(1730), 19, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -147252,7 +148304,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147275,14 +148327,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15923] = 6, + [17133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, - anon_sym_EQ_GT, - ACTIONS(1946), 1, + ACTIONS(3876), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147298,15 +148348,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 19, + ACTIONS(3846), 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -147318,7 +148368,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + anon_sym_PIPE_RBRACE, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147341,23 +148392,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15995] = 9, + [17203] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 1, - anon_sym_EQ_GT, - ACTIONS(1946), 1, + ACTIONS(1942), 1, anon_sym_EQ, - ACTIONS(2305), 1, - anon_sym_extends, - ACTIONS(3915), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1750), 15, + ACTIONS(1944), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147373,13 +148415,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(1730), 19, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, + anon_sym_LBRACE, + anon_sym_COMMA, 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, @@ -147390,11 +148434,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1729), 19, + anon_sym_extends, + ACTIONS(1713), 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, @@ -147402,7 +148448,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, @@ -147410,20 +148458,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16073] = 9, + [17275] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3862), 1, + ACTIONS(3916), 1, + anon_sym_extends, + ACTIONS(3921), 1, anon_sym_EQ_GT, - ACTIONS(3872), 1, + ACTIONS(4263), 1, + anon_sym_EQ, + ACTIONS(4266), 1, + anon_sym_COLON, + ACTIONS(4268), 1, + anon_sym_QMARK, + STATE(3888), 1, + sym_type_arguments, + STATE(5395), 1, + sym_type_annotation, + ACTIONS(3860), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3912), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3846), 11, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [17367] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, anon_sym_EQ, - STATE(3896), 1, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3895), 1, + anon_sym_LT, + ACTIONS(3923), 1, + anon_sym_EQ_GT, + STATE(2861), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147439,14 +148563,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(3846), 17, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147457,7 +148581,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147479,78 +148603,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16151] = 33, + [17445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(1944), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(1713), 22, anon_sym_STAR, - ACTIONS(740), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(742), 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(744), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 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, + [17517] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, + ACTIONS(4278), 1, anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(4280), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, + ACTIONS(4284), 1, anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4288), 1, + anon_sym_AMP, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4298), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(4302), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3914), 1, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, + anon_sym_keyof, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(3422), 1, sym__number, - STATE(4015), 1, + STATE(3460), 1, sym__primary_type, - STATE(4023), 1, + STATE(3506), 1, + sym_template_string, + STATE(3514), 1, sym_string, - STATE(5481), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5714), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3098), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3368), 2, + STATE(5940), 1, + sym_nested_identifier, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4058), 7, + STATE(3504), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -147558,7 +148749,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -147572,7 +148763,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16277] = 34, + [17645] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, @@ -147581,70 +148772,164 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4322), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2286), 1, + sym_template_string, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(2348), 1, + STATE(5448), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3622), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [17773] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(814), 1, + anon_sym_DQUOTE, + ACTIONS(816), 1, + anon_sym_SQUOTE, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(4124), 1, + anon_sym_STAR, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4130), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_LBRACK, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4148), 1, + sym_this, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4324), 1, + anon_sym_typeof, + ACTIONS(4326), 1, + anon_sym_new, + ACTIONS(4328), 1, + anon_sym_QMARK, + ACTIONS(4330), 1, + anon_sym_AMP, + ACTIONS(4332), 1, + anon_sym_PIPE, + ACTIONS(4334), 1, + anon_sym_readonly, + ACTIONS(4336), 1, + anon_sym_keyof, + STATE(2637), 1, + sym_nested_type_identifier, + STATE(2956), 1, sym_template_string, - STATE(5699), 1, + STATE(3002), 1, + sym_string, + STATE(3012), 1, + sym__primary_type, + STATE(3051), 1, + sym__number, + STATE(5677), 1, sym_type_parameters, - STATE(5725), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(3953), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3313), 7, + STATE(2994), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -147652,7 +148937,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -147666,12 +148951,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16405] = 5, + [17901] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, + ACTIONS(1940), 1, + anon_sym_EQ_GT, + ACTIONS(1946), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147687,9 +148974,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 20, + ACTIONS(1730), 19, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -147708,7 +148994,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147731,20 +149017,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16475] = 9, + [17973] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(3889), 1, - anon_sym_LT, - ACTIONS(3925), 1, + ACTIONS(3898), 1, anon_sym_EQ_GT, - STATE(2927), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147760,14 +149040,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(3846), 19, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -147778,10 +149060,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -147800,79 +149083,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16553] = 34, + [18045] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(4338), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [18129] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4184), 1, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4188), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4190), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4192), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4352), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(2410), 1, + sym_template_string, + STATE(2454), 1, sym__primary_type, - STATE(2294), 1, + STATE(2455), 1, sym__number, - STATE(2348), 1, - sym_template_string, - STATE(5396), 1, + STATE(2593), 1, + sym_string, + STATE(5411), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(5845), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3588), 7, + STATE(3276), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -147880,7 +149235,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -147894,88 +149249,88 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16681] = 32, + [18257] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3636), 1, + ACTIONS(3634), 1, anon_sym_STAR, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(4153), 1, + ACTIONS(4204), 1, anon_sym_export, - ACTIONS(4158), 1, + ACTIONS(4209), 1, anon_sym_async, - ACTIONS(4160), 1, + ACTIONS(4211), 1, anon_sym_static, - ACTIONS(4162), 1, + ACTIONS(4213), 1, anon_sym_readonly, - STATE(3831), 1, + STATE(3828), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3654), 2, + ACTIONS(3652), 2, sym_number, sym_private_property_identifier, - ACTIONS(4155), 2, + ACTIONS(4206), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4164), 2, + ACTIONS(4215), 2, anon_sym_get, anon_sym_set, - ACTIONS(4166), 3, + ACTIONS(4217), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3924), 3, + STATE(3935), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5580), 3, + STATE(5631), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5621), 3, + STATE(5633), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4501), 6, + STATE(4562), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4151), 10, + ACTIONS(4202), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -147986,79 +149341,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16805] = 34, + [18381] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4198), 1, + ACTIONS(4356), 1, + anon_sym_RBRACK, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4202), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(2348), 1, - sym_template_string, - STATE(5600), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2766), 7, + STATE(4987), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148066,7 +149419,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148080,148 +149433,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16933] = 9, + [18506] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3868), 1, - anon_sym_EQ_GT, - ACTIONS(4087), 1, - anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 21, + ACTIONS(564), 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, - [17011] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4370), 1, + sym_identifier, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(4378), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(4382), 1, + sym_this, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(2348), 1, - sym_template_string, - STATE(5448), 1, + STATE(3934), 1, + sym_type_predicate, + STATE(5634), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, + STATE(5872), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3566), 7, + STATE(4346), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148229,7 +149511,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148243,229 +149525,44 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17139] = 35, + [18631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3644), 1, - anon_sym_SEMI, - ACTIONS(3646), 1, - anon_sym_LBRACK, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3664), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3993), 1, - anon_sym_export, - ACTIONS(3995), 1, + ACTIONS(3828), 23, anon_sym_STAR, - ACTIONS(3997), 1, - anon_sym_COMMA, - ACTIONS(4001), 1, - anon_sym_async, - ACTIONS(4005), 1, - anon_sym_static, - ACTIONS(4007), 1, - anon_sym_readonly, - ACTIONS(4224), 1, - anon_sym_RBRACE, - STATE(3826), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(4003), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4009), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4011), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3933), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4581), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3991), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [17269] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(2972), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4226), 1, - sym_identifier, - ACTIONS(4228), 1, - anon_sym_STAR, - ACTIONS(4230), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, - anon_sym_LPAREN, - ACTIONS(4236), 1, - anon_sym_LBRACK, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4242), 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(4244), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4252), 1, - sym_this, - ACTIONS(4256), 1, - anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, - sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, - sym__primary_type, - STATE(3405), 1, - sym_string, - STATE(3414), 1, - sym_template_string, - STATE(5469), 1, - sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(5959), 1, - sym_formal_parameters, - ACTIONS(4246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4254), 2, - sym_true, - sym_false, - ACTIONS(4248), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3363), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3352), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17397] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1744), 1, - anon_sym_EQ_GT, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(3915), 1, - anon_sym_LBRACK, - ACTIONS(3918), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4264), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2305), 4, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3830), 34, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1746), 12, + 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_LT_EQ, - anon_sym_EQ_EQ_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(1750), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148481,100 +149578,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 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, - [17477] = 34, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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, + [18696] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4268), 1, - sym_identifier, - ACTIONS(4270), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4280), 1, - anon_sym_new, - ACTIONS(4282), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(4286), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(4294), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4296), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(4298), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, sym_this, - ACTIONS(4302), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4304), 1, - anon_sym_asserts, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, - anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - STATE(4050), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4388), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, + STATE(3920), 1, sym_string, - STATE(4258), 1, + STATE(3926), 1, sym__primary_type, - STATE(4946), 1, - sym_type_predicate, - STATE(5510), 1, + STATE(3927), 1, + sym__number, + STATE(5664), 1, sym_type_parameters, - STATE(5850), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(5899), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4317), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148582,7 +149665,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148596,48 +149679,44 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17605] = 16, + [18821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3908), 1, - anon_sym_extends, - ACTIONS(3913), 1, - anon_sym_EQ_GT, - ACTIONS(4312), 1, + ACTIONS(3820), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4315), 1, - anon_sym_COLON, - ACTIONS(4317), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - STATE(3896), 1, - sym_type_arguments, - STATE(5660), 1, - sym_type_annotation, - ACTIONS(3856), 2, + anon_sym_AMP_AMP, + anon_sym_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(3904), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3848), 11, + anon_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(3822), 34, + 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_LT_EQ, - anon_sym_EQ_EQ_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(3864), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148653,98 +149732,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [17697] = 34, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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, + [18886] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4095), 1, - sym_identifier, - ACTIONS(4097), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4099), 1, - anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, - anon_sym_LBRACK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4127), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(4131), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, - anon_sym_typeof, - ACTIONS(4323), 1, - anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(4331), 1, - anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(834), 1, anon_sym_keyof, - STATE(2634), 1, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, + sym_this, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4390), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2842), 1, - sym_template_string, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5666), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5664), 1, sym_type_parameters, - STATE(5734), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6035), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3003), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148752,7 +149819,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148766,57 +149833,15 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [17825] = 9, + [19011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3925), 1, - anon_sym_EQ_GT, - ACTIONS(4335), 1, - anon_sym_LT, - STATE(4197), 1, - sym_type_arguments, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - 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_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 21, + ACTIONS(3824), 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, @@ -148835,20 +149860,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17903] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3826), 34, + 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, - ACTIONS(3862), 1, - anon_sym_EQ_GT, - ACTIONS(4147), 1, - anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148864,15 +149886,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -148882,101 +149895,169 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + [19076] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 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(802), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(804), 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, - [17981] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4392), 1, + anon_sym_GT, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5664), 1, + sym_type_parameters, + STATE(6017), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4756), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [19201] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, - anon_sym_typeof, - ACTIONS(4340), 1, - anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(834), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, + sym_this, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4394), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(2348), 1, - sym_template_string, - STATE(5554), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5974), 1, + STATE(6017), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3317), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148984,7 +150065,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148998,145 +150079,104 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18109] = 35, + [19326] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3642), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3646), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, + anon_sym_typeof, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3816), 1, - anon_sym_SEMI, - ACTIONS(3818), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3993), 1, - anon_sym_export, - ACTIONS(3995), 1, - anon_sym_STAR, - ACTIONS(4001), 1, - anon_sym_async, - ACTIONS(4005), 1, - anon_sym_static, - ACTIONS(4007), 1, + ACTIONS(4239), 1, + anon_sym_QMARK, + ACTIONS(4241), 1, + anon_sym_AMP, + ACTIONS(4243), 1, + anon_sym_PIPE, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4352), 1, - anon_sym_COMMA, - ACTIONS(4354), 1, - anon_sym_RBRACE, - STATE(3826), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(4003), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4009), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4011), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3933), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4571), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3991), 10, - anon_sym_type, - anon_sym_namespace, + ACTIONS(4247), 1, + anon_sym_keyof, + ACTIONS(4396), 1, sym_identifier, - anon_sym_declare, - anon_sym_module, + ACTIONS(4398), 1, + sym_this, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2290), 1, + sym_string, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(2336), 1, + sym_type_predicate, + STATE(5475), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(6024), 1, + sym_formal_parameters, + ACTIONS(4088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18239] = 5, + STATE(3467), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [19451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3866), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 20, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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_PIPE_RBRACE, - ACTIONS(3844), 22, + ACTIONS(3540), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149158,14 +150198,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18309] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1942), 1, - anon_sym_EQ, - ACTIONS(1944), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 15, + ACTIONS(3542), 34, + 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_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149181,17 +150224,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 19, - 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -149201,30 +150233,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 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, - [18381] = 33, + [19516] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -149233,21 +150242,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -149263,38 +150272,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4356), 1, + ACTIONS(4400), 1, anon_sym_GT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -149302,7 +150311,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149316,77 +150325,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18506] = 33, + [19641] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4368), 1, anon_sym_keyof, - ACTIONS(4358), 1, - sym_identifier, - ACTIONS(4360), 1, - sym_this, - STATE(2634), 1, + ACTIONS(4402), 1, + anon_sym_RBRACK, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2897), 1, - sym_type_predicate, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5666), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5435), 1, sym_type_parameters, - STATE(5734), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6035), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2865), 7, + STATE(4985), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -149394,7 +150403,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149408,77 +150417,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18631] = 33, + [19766] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, anon_sym_typeof, - ACTIONS(4198), 1, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2255), 1, anon_sym_new, - ACTIONS(4200), 1, - anon_sym_QMARK, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2277), 1, anon_sym_readonly, - ACTIONS(4208), 1, - anon_sym_keyof, - ACTIONS(4362), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4196), 1, sym_identifier, - ACTIONS(4364), 1, + ACTIONS(4198), 1, sym_this, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2260), 1, + STATE(3987), 1, + sym__number, + STATE(3990), 1, + sym__primary_type, + STATE(3991), 1, sym_type_predicate, - STATE(2287), 1, + STATE(4002), 1, sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5600), 1, + STATE(5483), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5753), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6019), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2768), 7, + STATE(4032), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -149486,7 +150495,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149500,14 +150509,33 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18756] = 6, + [19891] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(3925), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(2878), 1, + anon_sym_COLON, + ACTIONS(3850), 1, + sym_identifier, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149523,27 +150551,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 22, + ACTIONS(1713), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -149565,231 +150575,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18827] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, - anon_sym_typeof, - ACTIONS(4198), 1, - anon_sym_new, - ACTIONS(4200), 1, - anon_sym_QMARK, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_readonly, - ACTIONS(4208), 1, - anon_sym_keyof, - ACTIONS(4362), 1, - sym_identifier, - ACTIONS(4364), 1, - sym_this, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2200), 1, - sym_type_predicate, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5600), 1, - sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5753), 1, - sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2774), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [18952] = 3, + anon_sym_instanceof, + [19966] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 23, + ACTIONS(724), 1, anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(740), 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(742), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(744), 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(3552), 34, - 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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_extends, - [19017] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, ACTIONS(760), 1, anon_sym_infer, + ACTIONS(762), 1, + anon_sym_keyof, ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(2972), 1, + ACTIONS(2277), 1, + anon_sym_readonly, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4366), 1, + ACTIONS(4196), 1, sym_identifier, - ACTIONS(4368), 1, - anon_sym_typeof, - ACTIONS(4370), 1, - anon_sym_new, - ACTIONS(4372), 1, - anon_sym_QMARK, - ACTIONS(4374), 1, - anon_sym_AMP, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4378), 1, + ACTIONS(4198), 1, sym_this, - ACTIONS(4380), 1, - anon_sym_readonly, - ACTIONS(4382), 1, - anon_sym_keyof, - STATE(3914), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(4006), 1, - sym_type_predicate, - STATE(4014), 1, + STATE(3987), 1, sym__number, - STATE(4015), 1, + STATE(3990), 1, sym__primary_type, - STATE(4023), 1, + STATE(4002), 1, sym_string, - STATE(5698), 1, + STATE(4011), 1, + sym_type_predicate, + STATE(5483), 1, sym_type_parameters, - STATE(5897), 1, - sym_formal_parameters, - STATE(5905), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(2112), 2, + STATE(6019), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4202), 7, + STATE(4044), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -149797,7 +150654,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149811,42 +150668,33 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19142] = 12, + [20091] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3908), 1, - anon_sym_extends, - ACTIONS(4384), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(4386), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 2, + ACTIONS(2838), 1, + anon_sym_COLON, + ACTIONS(3850), 1, + sym_identifier, + ACTIONS(1730), 14, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 12, - anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149862,11 +150710,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 19, + ACTIONS(1713), 24, anon_sym_STAR, - anon_sym_LBRACE, + 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, @@ -149874,7 +150724,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, @@ -149882,20 +150734,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19225] = 9, + anon_sym_instanceof, + [20166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3868), 1, - anon_sym_EQ_GT, - ACTIONS(4388), 1, + ACTIONS(3900), 1, anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149911,13 +150756,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 19, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149928,10 +150776,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149950,10 +150799,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19302] = 3, + [20235] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3916), 1, + anon_sym_extends, + ACTIONS(4404), 1, + anon_sym_EQ, + ACTIONS(4406), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [20318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 23, + ACTIONS(3548), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -149977,7 +150897,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3540), 34, + ACTIONS(3550), 34, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -150012,77 +150932,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [19367] = 33, + [20383] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4390), 1, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(4392), 1, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4402), 1, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4028), 1, sym_this, - ACTIONS(4404), 1, + ACTIONS(4032), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + STATE(4036), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3926), 1, + STATE(4219), 1, + sym__number, + STATE(4225), 1, sym_type_predicate, - STATE(3937), 1, + STATE(4243), 1, sym__primary_type, - STATE(3942), 1, - sym__number, + STATE(4255), 1, + sym_string, STATE(5570), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5833), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4810), 7, + STATE(4196), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150090,7 +151010,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150104,77 +151024,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19492] = 33, + [20508] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4268), 1, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(4270), 1, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(4272), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4274), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(4280), 1, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4282), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4286), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(4022), 1, anon_sym_DQUOTE, - ACTIONS(4294), 1, + ACTIONS(4024), 1, anon_sym_SQUOTE, - ACTIONS(4296), 1, + ACTIONS(4026), 1, sym_number, - ACTIONS(4298), 1, + ACTIONS(4028), 1, sym_this, - ACTIONS(4302), 1, + ACTIONS(4032), 1, anon_sym_readonly, - ACTIONS(4306), 1, + ACTIONS(4036), 1, anon_sym_infer, - ACTIONS(4308), 1, + ACTIONS(4038), 1, anon_sym_keyof, - ACTIONS(4310), 1, + ACTIONS(4040), 1, anon_sym_LBRACE_PIPE, - STATE(4050), 1, + STATE(4036), 1, sym_nested_type_identifier, - STATE(4230), 1, - sym_type_predicate, - STATE(4249), 1, + STATE(4219), 1, sym__number, - STATE(4252), 1, - sym_string, - STATE(4258), 1, + STATE(4229), 1, + sym_type_predicate, + STATE(4243), 1, sym__primary_type, - STATE(5510), 1, + STATE(4255), 1, + sym_string, + STATE(5570), 1, sym_type_parameters, - STATE(5850), 1, - sym_formal_parameters, - STATE(5899), 1, + STATE(5833), 1, sym_nested_identifier, - ACTIONS(4288), 2, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(4030), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4231), 7, + STATE(4222), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150182,7 +151102,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150196,43 +151116,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19617] = 12, + [20633] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4408), 1, + ACTIONS(3923), 1, anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150248,10 +151139,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3846), 18, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3842), 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, @@ -150259,7 +151171,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, @@ -150267,106 +151181,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19700] = 33, + [20704] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(4268), 1, - sym_identifier, - ACTIONS(4270), 1, - anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4280), 1, - anon_sym_new, - ACTIONS(4282), 1, - anon_sym_QMARK, - ACTIONS(4284), 1, - anon_sym_AMP, - ACTIONS(4286), 1, - anon_sym_PIPE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - anon_sym_SQUOTE, - ACTIONS(4296), 1, - sym_number, - ACTIONS(4298), 1, - sym_this, - ACTIONS(4302), 1, - anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, - anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - STATE(4050), 1, - sym_nested_type_identifier, - STATE(4216), 1, - sym_type_predicate, - STATE(4249), 1, - sym__number, - STATE(4252), 1, - sym_string, - STATE(4258), 1, - sym__primary_type, - STATE(5510), 1, - sym_type_parameters, - STATE(5850), 1, - sym_formal_parameters, - STATE(5899), 1, - sym_nested_identifier, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, - sym_true, - sym_false, - ACTIONS(4290), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4222), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4251), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [19825] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3872), 1, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4408), 1, anon_sym_EQ, - ACTIONS(3925), 1, + ACTIONS(4410), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150382,15 +151210,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3846), 16, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -150400,12 +151225,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, - ACTIONS(3844), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -150424,112 +151249,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19896] = 33, + [20781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, - anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3866), 1, + anon_sym_EQ_GT, + ACTIONS(4412), 1, + anon_sym_EQ, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4043), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, - anon_sym_typeof, - ACTIONS(4135), 1, - anon_sym_new, - ACTIONS(4137), 1, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3842), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4139), 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(4141), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_readonly, - ACTIONS(4145), 1, - anon_sym_keyof, - ACTIONS(4410), 1, - sym_identifier, - ACTIONS(4412), 1, - sym_this, - STATE(2375), 1, - sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2427), 1, - sym__primary_type, - STATE(2428), 1, - sym__number, - STATE(2585), 1, - sym_type_predicate, - STATE(5693), 1, - sym_type_parameters, - STATE(5921), 1, - sym_formal_parameters, - STATE(6126), 1, - sym_nested_identifier, - ACTIONS(4053), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, - sym_true, - sym_false, - ACTIONS(4055), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3562), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2450), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [20021] = 9, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [20858] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_DOT, ACTIONS(4414), 1, anon_sym_LT, ACTIONS(4417), 1, anon_sym_EQ_GT, - STATE(3411), 1, + STATE(3391), 1, sym_type_arguments, - ACTIONS(3848), 15, + ACTIONS(3846), 15, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -150545,7 +151346,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150561,7 +151362,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -150584,169 +151385,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20098] = 33, + [20935] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(4228), 1, - anon_sym_STAR, - ACTIONS(4230), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3866), 1, + anon_sym_EQ_GT, + ACTIONS(4419), 1, + anon_sym_EQ, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4236), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3842), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4242), 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(4244), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4256), 1, - anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4419), 1, - sym_identifier, - ACTIONS(4421), 1, - sym_this, - STATE(3121), 1, - sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, - sym__primary_type, - STATE(3405), 1, - sym_string, - STATE(3483), 1, - sym_type_predicate, - STATE(5469), 1, - sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(5959), 1, - sym_formal_parameters, - ACTIONS(4246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4254), 2, - sym_true, - sym_false, - ACTIONS(4248), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3364), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3352), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [20223] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [21012] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1128), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4228), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4230), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4236), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, + anon_sym_typeof, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(4240), 1, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4242), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4244), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4256), 1, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, + ACTIONS(4247), 1, anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4419), 1, + ACTIONS(4396), 1, sym_identifier, - ACTIONS(4421), 1, + ACTIONS(4398), 1, sym_this, - STATE(3121), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, + STATE(2290), 1, + sym_string, + STATE(2296), 1, sym__primary_type, - STATE(3381), 1, + STATE(2297), 1, + sym__number, + STATE(2324), 1, sym_type_predicate, - STATE(3405), 1, - sym_string, - STATE(5469), 1, + STATE(5475), 1, sym_type_parameters, - STATE(5888), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5959), 1, + STATE(6024), 1, sym_formal_parameters, - ACTIONS(4246), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4254), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3425), 7, + STATE(3334), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150754,7 +151531,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150768,72 +151545,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20348] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1950), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 18, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(1729), 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, - [20419] = 33, + [21137] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -150842,68 +151554,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, + ACTIONS(1914), 1, + sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4390), 1, - sym_identifier, - ACTIONS(4392), 1, - anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(1926), 1, anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4402), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4404), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4421), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3928), 1, - sym_type_predicate, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5900), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4814), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150911,7 +151623,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150925,40 +151637,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20544] = 12, + [21262] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, + ACTIONS(4410), 1, + anon_sym_EQ_GT, ACTIONS(4423), 1, anon_sym_EQ, - ACTIONS(4427), 1, - anon_sym_COMMA, - ACTIONS(4429), 1, - anon_sym_EQ_GT, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - STATE(4951), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(4425), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(3848), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150974,7 +151666,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3846), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150996,62 +151705,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20627] = 12, + [21339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4431), 1, - anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 13, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3832), 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, @@ -151059,7 +151722,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, @@ -151067,36 +151732,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20710] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4384), 1, - anon_sym_EQ, - ACTIONS(4417), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3848), 15, + ACTIONS(3834), 34, + 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3864), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151112,192 +151758,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [20787] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, - anon_sym_typeof, - ACTIONS(4212), 1, - anon_sym_new, - ACTIONS(4214), 1, - anon_sym_QMARK, - ACTIONS(4216), 1, - anon_sym_AMP, - ACTIONS(4218), 1, - anon_sym_PIPE, - ACTIONS(4220), 1, - anon_sym_readonly, - ACTIONS(4222), 1, - anon_sym_keyof, - ACTIONS(4435), 1, - sym_identifier, - ACTIONS(4437), 1, - sym_this, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2260), 1, - sym_type_predicate, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5448), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3577), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [20912] = 33, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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, + [21404] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4097), 1, + ACTIONS(4274), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4278), 1, anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(4280), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(4284), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4286), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4288), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4290), 1, anon_sym_PIPE, - ACTIONS(4119), 1, + ACTIONS(4296), 1, sym_number, - ACTIONS(4125), 1, + ACTIONS(4302), 1, anon_sym_readonly, - ACTIONS(4127), 1, + ACTIONS(4304), 1, anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4306), 1, anon_sym_keyof, - ACTIONS(4131), 1, + ACTIONS(4308), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4439), 1, + ACTIONS(4425), 1, sym_identifier, - ACTIONS(4441), 1, + ACTIONS(4427), 1, sym_this, - STATE(2634), 1, + STATE(3135), 1, sym_nested_type_identifier, - STATE(2835), 1, - sym_type_predicate, - STATE(3012), 1, + STATE(3422), 1, sym__number, - STATE(3023), 1, + STATE(3432), 1, + sym_type_predicate, + STATE(3460), 1, sym__primary_type, - STATE(3034), 1, + STATE(3514), 1, sym_string, - STATE(5404), 1, + STATE(5509), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6065), 1, + STATE(5714), 1, sym_formal_parameters, - ACTIONS(4115), 2, + STATE(5940), 1, + sym_nested_identifier, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4300), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3155), 7, + STATE(3462), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151305,7 +151845,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151319,77 +151859,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21037] = 33, + [21529] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4097), 1, + ACTIONS(4274), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4278), 1, anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(4280), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(4284), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4286), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4288), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4290), 1, anon_sym_PIPE, - ACTIONS(4119), 1, + ACTIONS(4296), 1, sym_number, - ACTIONS(4125), 1, + ACTIONS(4302), 1, anon_sym_readonly, - ACTIONS(4127), 1, + ACTIONS(4304), 1, anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4306), 1, anon_sym_keyof, - ACTIONS(4131), 1, + ACTIONS(4308), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4439), 1, + ACTIONS(4425), 1, sym_identifier, - ACTIONS(4441), 1, + ACTIONS(4427), 1, sym_this, - STATE(2634), 1, + STATE(3135), 1, sym_nested_type_identifier, - STATE(2897), 1, - sym_type_predicate, - STATE(3012), 1, + STATE(3422), 1, sym__number, - STATE(3023), 1, + STATE(3460), 1, sym__primary_type, - STATE(3034), 1, + STATE(3492), 1, + sym_type_predicate, + STATE(3514), 1, sym_string, - STATE(5404), 1, + STATE(5509), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6065), 1, + STATE(5714), 1, sym_formal_parameters, - ACTIONS(4115), 2, + STATE(5940), 1, + sym_nested_identifier, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4300), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3296), 7, + STATE(3359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151397,7 +151937,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151411,12 +151951,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21162] = 5, + [21654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3885), 1, + ACTIONS(1950), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151432,12 +151974,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, + ACTIONS(1730), 18, 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, @@ -151452,7 +151993,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151475,12 +152016,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21231] = 5, + [21725] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 1, + ACTIONS(1728), 1, + anon_sym_EQ_GT, + ACTIONS(1946), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151496,15 +152039,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1730), 18, 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_LT_EQ, @@ -151515,8 +152058,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151539,14 +152081,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21300] = 6, + [21796] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1948), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(1950), 1, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3873), 1, + anon_sym_LT, + ACTIONS(4410), 1, anon_sym_EQ_GT, - ACTIONS(1750), 15, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151562,15 +152110,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 18, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3846), 16, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -151580,12 +152125,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, - ACTIONS(1729), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -151604,169 +152149,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21371] = 33, + [21873] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, - anon_sym_typeof, - ACTIONS(4212), 1, - anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(4220), 1, - anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(4435), 1, - sym_identifier, - ACTIONS(4437), 1, - sym_this, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2200), 1, - sym_type_predicate, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5448), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3592), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [21496] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, - anon_sym_typeof, - ACTIONS(4184), 1, - anon_sym_new, - ACTIONS(4186), 1, - anon_sym_QMARK, - ACTIONS(4188), 1, - anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_PIPE, - ACTIONS(4192), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4194), 1, - anon_sym_keyof, - ACTIONS(4443), 1, + ACTIONS(4176), 1, sym_identifier, - ACTIONS(4445), 1, + ACTIONS(4178), 1, sym_this, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2260), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3925), 1, + sym_type_predicate, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5396), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3561), 7, + STATE(4365), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151774,7 +152227,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151788,33 +152241,31 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21621] = 12, + [21998] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3908), 1, - anon_sym_COMMA, - ACTIONS(4447), 1, + ACTIONS(4408), 1, anon_sym_EQ, - ACTIONS(4449), 1, + ACTIONS(4410), 1, anon_sym_EQ_GT, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3850), 2, + ACTIONS(3854), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3856), 3, + ACTIONS(3860), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3848), 13, - sym__automatic_semicolon, + ACTIONS(3846), 13, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -151824,7 +152275,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + anon_sym_implements, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151840,7 +152292,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3842), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151859,39 +152311,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21704] = 6, + [22079] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4404), 1, anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 18, + ACTIONS(4417), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3846), 15, 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, @@ -151901,62 +152338,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1729), 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, - [21775] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1978), 1, - anon_sym_EQ, - ACTIONS(1980), 1, - anon_sym_EQ_GT, - ACTIONS(2305), 1, - anon_sym_COMMA, - ACTIONS(3915), 2, - anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 15, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(1750), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151972,11 +152356,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(3842), 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, @@ -151984,7 +152369,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, @@ -151992,41 +152379,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21852] = 11, + [22156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_EQ_GT, - ACTIONS(4451), 1, + ACTIONS(3844), 1, anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152042,11 +152400,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 19, - anon_sym_STAR, + ACTIONS(3846), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3842), 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, @@ -152054,7 +152433,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, @@ -152062,77 +152443,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21933] = 33, + [22225] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4128), 1, + anon_sym_typeof, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, - anon_sym_typeof, - ACTIONS(4184), 1, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(4188), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4190), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4192), 1, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - ACTIONS(4443), 1, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4429), 1, sym_identifier, - ACTIONS(4445), 1, + ACTIONS(4431), 1, sym_this, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2200), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5396), 1, + STATE(3055), 1, + sym_type_predicate, + STATE(5389), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(5882), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3557), 7, + STATE(3119), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152140,7 +152521,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152154,44 +152535,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22058] = 3, + [22350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3834), 23, - anon_sym_STAR, + ACTIONS(3900), 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(3836), 34, - 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, + ACTIONS(3923), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152207,6 +152558,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 18, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -152216,77 +152577,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [22123] = 33, + ACTIONS(3842), 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, + [22421] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4453), 1, - sym_identifier, - ACTIONS(4455), 1, + ACTIONS(4124), 1, + anon_sym_STAR, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4128), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4130), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_LBRACK, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4465), 1, - sym_this, - ACTIONS(4467), 1, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - STATE(3914), 1, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4429), 1, + sym_identifier, + ACTIONS(4431), 1, + sym_this, + STATE(2637), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, + STATE(3002), 1, + sym_string, + STATE(3012), 1, sym__primary_type, - STATE(4016), 1, + STATE(3047), 1, sym_type_predicate, - STATE(4023), 1, - sym_string, - STATE(5548), 1, + STATE(3051), 1, + sym__number, + STATE(5389), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, + STATE(5882), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4150), 2, + sym_true, + sym_false, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4557), 7, + STATE(3154), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152294,7 +152678,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152308,112 +152692,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22248] = 33, + [22546] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4366), 1, - sym_identifier, - ACTIONS(4368), 1, - anon_sym_typeof, - ACTIONS(4370), 1, - anon_sym_new, - ACTIONS(4372), 1, - anon_sym_QMARK, - ACTIONS(4374), 1, - anon_sym_AMP, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4378), 1, - sym_this, - ACTIONS(4380), 1, - anon_sym_readonly, - ACTIONS(4382), 1, - anon_sym_keyof, - STATE(3914), 1, - sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4016), 1, - sym_type_predicate, - STATE(4023), 1, - sym_string, - STATE(5698), 1, - sym_type_parameters, - STATE(5897), 1, - sym_formal_parameters, - STATE(5905), 1, - sym_nested_identifier, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2102), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4204), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4019), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [22373] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3868), 1, - anon_sym_EQ_GT, - ACTIONS(4447), 1, + ACTIONS(1948), 1, anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(1950), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152429,13 +152715,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(1730), 18, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -152446,10 +152734,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -152468,33 +152757,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22450] = 8, + [22617] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4433), 1, anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(4435), 1, anon_sym_EQ_GT, - ACTIONS(2860), 1, - anon_sym_COLON, - ACTIONS(3842), 1, - sym_identifier, - ACTIONS(1746), 14, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 13, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152510,13 +152809,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(3842), 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, @@ -152524,9 +152820,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, @@ -152534,170 +152828,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [22525] = 33, + [22700] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4035), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4037), 1, - anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, - anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4065), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(4069), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, - anon_sym_typeof, - ACTIONS(4135), 1, - anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(4410), 1, - sym_identifier, - ACTIONS(4412), 1, - sym_this, - STATE(2375), 1, - sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2427), 1, - sym__primary_type, - STATE(2428), 1, - sym__number, - STATE(2594), 1, - sym_type_predicate, - STATE(5693), 1, - sym_type_parameters, - STATE(5921), 1, - sym_formal_parameters, - STATE(6126), 1, - sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, - sym_true, - sym_false, - ACTIONS(4055), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3558), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2450), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [22650] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, + ACTIONS(1920), 1, anon_sym_typeof, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, + ACTIONS(1926), 1, anon_sym_new, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3963), 1, - anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, - anon_sym_keyof, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4471), 1, - sym_identifier, - ACTIONS(4473), 1, + ACTIONS(1934), 1, sym_this, - STATE(2163), 1, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4437), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2260), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5477), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, + STATE(6017), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3433), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152705,7 +152906,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152719,77 +152920,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22775] = 33, + [22825] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3939), 1, - anon_sym_typeof, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_new, - ACTIONS(3947), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(3949), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, sym_number, - ACTIONS(3963), 1, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, - anon_sym_keyof, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4471), 1, + ACTIONS(4176), 1, sym_identifier, - ACTIONS(4473), 1, + ACTIONS(4178), 1, sym_this, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2200), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5477), 1, + STATE(3934), 1, + sym_type_predicate, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3416), 7, + STATE(4376), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152797,7 +152998,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152811,44 +153012,39 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22900] = 3, + [22950] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 23, - anon_sym_STAR, + ACTIONS(1990), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(1992), 1, + anon_sym_EQ_GT, + ACTIONS(2309), 1, + anon_sym_COMMA, + ACTIONS(3904), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_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(3840), 34, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1730), 15, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152864,108 +153060,27 @@ 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_extends, - [22965] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, + ACTIONS(1713), 19, anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2972), 1, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4453), 1, - sym_identifier, - ACTIONS(4455), 1, - anon_sym_typeof, - ACTIONS(4457), 1, - anon_sym_new, - ACTIONS(4459), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4461), 1, - anon_sym_AMP, - ACTIONS(4463), 1, - anon_sym_PIPE, - ACTIONS(4465), 1, - sym_this, - ACTIONS(4467), 1, - anon_sym_readonly, - ACTIONS(4469), 1, - anon_sym_keyof, - STATE(3914), 1, - sym_nested_type_identifier, - STATE(4006), 1, - sym_type_predicate, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, - sym_string, - STATE(5548), 1, - sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, - sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + 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(2102), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4570), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4019), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [23090] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [23027] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -152974,22 +153089,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, + ACTIONS(1914), 1, + sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1920), 1, @@ -152998,44 +153115,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1926), 1, anon_sym_new, + ACTIONS(1934), 1, + sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4475), 1, - sym_identifier, - ACTIONS(4477), 1, - sym_this, - STATE(3884), 1, + ACTIONS(4439), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3928), 1, - sym_type_predicate, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4461), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153043,7 +153158,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153057,7 +153172,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23215] = 33, + [23152] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -153066,13 +153181,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -153082,52 +153197,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4481), 1, - anon_sym_RBRACK, - ACTIONS(4483), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4441), 1, + anon_sym_RBRACK, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5103), 7, + STATE(5057), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153135,7 +153250,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153149,31 +153264,29 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23340] = 12, + [23277] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3908), 1, - anon_sym_extends, - ACTIONS(4423), 1, - anon_sym_EQ, - ACTIONS(4429), 1, + ACTIONS(4417), 1, anon_sym_EQ_GT, - STATE(3896), 1, + ACTIONS(4443), 1, + anon_sym_EQ, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3850), 2, + ACTIONS(3854), 3, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3856), 3, + anon_sym_extends, + ACTIONS(3860), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3848), 13, + ACTIONS(3846), 12, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -153184,8 +153297,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(3864), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153201,8 +153314,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3842), 19, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_SLASH, @@ -153220,169 +153334,212 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23423] = 33, + [23358] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, - anon_sym_AMP, - ACTIONS(794), 1, - anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2870), 1, + anon_sym_COLON, + ACTIONS(3850), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, - sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 24, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4495), 1, anon_sym_GT, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5640), 1, - sym_type_parameters, - STATE(5904), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 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(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4792), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [23548] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [23433] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3873), 1, + anon_sym_LT, + ACTIONS(4338), 1, + anon_sym_EQ_GT, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 16, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3842), 21, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(792), 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(794), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 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, + [23510] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4124), 1, + anon_sym_STAR, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, + ACTIONS(4130), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4324), 1, + anon_sym_typeof, + ACTIONS(4326), 1, anon_sym_new, - ACTIONS(1936), 1, + ACTIONS(4328), 1, + anon_sym_QMARK, + ACTIONS(4330), 1, + anon_sym_AMP, + ACTIONS(4332), 1, + anon_sym_PIPE, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4475), 1, + ACTIONS(4336), 1, + anon_sym_keyof, + ACTIONS(4445), 1, sym_identifier, - ACTIONS(4477), 1, + ACTIONS(4447), 1, sym_this, - STATE(3884), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3002), 1, sym_string, - STATE(3926), 1, - sym_type_predicate, - STATE(3937), 1, + STATE(3012), 1, sym__primary_type, - STATE(3942), 1, + STATE(3047), 1, + sym_type_predicate, + STATE(3051), 1, sym__number, - STATE(5640), 1, + STATE(5677), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4150), 2, + sym_true, + sym_false, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4493), 7, + STATE(3015), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153390,7 +153547,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153404,77 +153561,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23673] = 33, + [23635] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(814), 1, + anon_sym_DQUOTE, + ACTIONS(816), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4130), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_LBRACK, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(4324), 1, + anon_sym_typeof, + ACTIONS(4326), 1, + anon_sym_new, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(4330), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(4334), 1, + anon_sym_readonly, + ACTIONS(4336), 1, anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(4445), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4447), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4497), 1, - anon_sym_GT, - STATE(3884), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3002), 1, sym_string, - STATE(3937), 1, + STATE(3012), 1, sym__primary_type, - STATE(3942), 1, + STATE(3051), 1, sym__number, - STATE(5640), 1, + STATE(3055), 1, + sym_type_predicate, + STATE(5677), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4150), 2, + sym_true, + sym_false, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(3007), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153482,7 +153639,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153496,77 +153653,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23798] = 33, + [23760] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2114), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4249), 1, + anon_sym_typeof, + ACTIONS(4251), 1, + anon_sym_new, + ACTIONS(4253), 1, + anon_sym_QMARK, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4259), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4089), 1, + ACTIONS(4261), 1, + anon_sym_keyof, + ACTIONS(4449), 1, sym_identifier, - ACTIONS(4091), 1, + ACTIONS(4451), 1, sym_this, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, + STATE(2290), 1, + sym_string, + STATE(2296), 1, sym__primary_type, - STATE(4016), 1, + STATE(2297), 1, + sym__number, + STATE(2324), 1, sym_type_predicate, - STATE(4023), 1, - sym_string, - STATE(5481), 1, + STATE(5683), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5725), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4036), 7, + STATE(3453), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153574,7 +153731,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153588,77 +153745,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23923] = 33, + [23885] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4065), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4069), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(4251), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(4259), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(4261), 1, anon_sym_keyof, - ACTIONS(4499), 1, + ACTIONS(4449), 1, sym_identifier, - ACTIONS(4501), 1, + ACTIONS(4451), 1, sym_this, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(2594), 1, + STATE(2336), 1, sym_type_predicate, - STATE(5418), 1, + STATE(5683), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5725), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3261), 7, + STATE(3458), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153666,7 +153823,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153680,44 +153837,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24048] = 3, + [24010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 23, - anon_sym_STAR, + ACTIONS(3910), 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(3832), 34, - 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, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153733,6 +153858,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 19, + 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -153742,12 +153878,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [24113] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3826), 23, + ACTIONS(3842), 22, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -153769,17 +153901,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3828), 34, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, + [24079] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 1, anon_sym_LBRACK, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, anon_sym_DOT, + ACTIONS(4419), 1, + anon_sym_EQ, + ACTIONS(4453), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 13, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153795,23 +153953,125 @@ 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_extends, - [24178] = 6, + ACTIONS(3842), 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, + [24162] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3913), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4160), 1, + anon_sym_typeof, + ACTIONS(4162), 1, + anon_sym_new, + ACTIONS(4164), 1, + anon_sym_QMARK, + ACTIONS(4166), 1, + anon_sym_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE, + ACTIONS(4170), 1, + anon_sym_readonly, + ACTIONS(4172), 1, + anon_sym_keyof, + ACTIONS(4455), 1, + sym_identifier, + ACTIONS(4457), 1, + sym_this, + STATE(2407), 1, + sym_nested_type_identifier, + STATE(2454), 1, + sym__primary_type, + STATE(2455), 1, + sym__number, + STATE(2478), 1, + sym_type_predicate, + STATE(2593), 1, + sym_string, + STATE(5693), 1, + sym_type_parameters, + STATE(5778), 1, + sym_formal_parameters, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3547), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2452), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [24287] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1728), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153827,7 +154087,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, + ACTIONS(1730), 18, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -153846,7 +154106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -153869,77 +154129,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24249] = 33, + [24358] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(3938), 1, + anon_sym_LBRACE, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(4160), 1, + anon_sym_typeof, + ACTIONS(4162), 1, + anon_sym_new, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(4166), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(4170), 1, + anon_sym_readonly, + ACTIONS(4172), 1, anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(4455), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4457), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_GT, - STATE(3884), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5640), 1, + STATE(2566), 1, + sym_type_predicate, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5778), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(3590), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153947,7 +154207,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153961,169 +154221,148 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24374] = 33, + [24483] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3916), 1, + anon_sym_extends, + ACTIONS(4423), 1, + anon_sym_EQ, + ACTIONS(4459), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3860), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(744), 1, anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, + ACTIONS(3846), 13, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2114), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4089), 1, - sym_identifier, - ACTIONS(4091), 1, - sym_this, - STATE(3914), 1, - sym_nested_type_identifier, - STATE(4006), 1, - sym_type_predicate, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, - sym_string, - STATE(5481), 1, - sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, - sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, - ACTIONS(2102), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4043), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4019), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [24499] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [24566] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4035), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(3940), 1, + anon_sym_typeof, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, - anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(3950), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(3952), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - ACTIONS(4499), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4461), 1, sym_identifier, - ACTIONS(4501), 1, + ACTIONS(4463), 1, sym_this, - STATE(2375), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2427), 1, + STATE(2454), 1, sym__primary_type, - STATE(2428), 1, + STATE(2455), 1, sym__number, - STATE(2585), 1, + STATE(2478), 1, sym_type_predicate, - STATE(5418), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5836), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3256), 7, + STATE(2738), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154131,7 +154370,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154145,20 +154384,156 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24624] = 9, + [24691] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(4505), 1, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4412), 1, anon_sym_EQ, - ACTIONS(4507), 1, + ACTIONS(4465), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 13, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [24774] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3921), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 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(3842), 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, + [24845] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3871), 1, anon_sym_EQ_GT, - STATE(3896), 1, + ACTIONS(4467), 1, + anon_sym_EQ, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154174,7 +154549,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 16, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -154191,7 +154566,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154213,77 +154588,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24701] = 33, + [24922] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, - anon_sym_AMP, - ACTIONS(1626), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2170), 1, - anon_sym_new, - ACTIONS(2178), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4509), 1, + ACTIONS(4469), 1, sym_identifier, - ACTIONS(4511), 1, + ACTIONS(4471), 1, + anon_sym_typeof, + ACTIONS(4473), 1, + anon_sym_new, + ACTIONS(4475), 1, + anon_sym_QMARK, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, sym_this, - STATE(3884), 1, + ACTIONS(4483), 1, + anon_sym_readonly, + ACTIONS(4485), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3987), 1, + sym__number, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, sym_string, - STATE(3926), 1, + STATE(4011), 1, sym_type_predicate, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5451), 1, + STATE(5613), 1, sym_type_parameters, - STATE(6068), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6115), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4288), 7, + STATE(4220), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154291,7 +154666,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154305,7 +154680,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24826] = 33, + [25047] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -154314,68 +154689,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4013), 1, + ACTIONS(4368), 1, + anon_sym_keyof, + ACTIONS(4487), 1, sym_identifier, - ACTIONS(4015), 1, + ACTIONS(4489), 1, sym_this, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, STATE(3926), 1, - sym_type_predicate, - STATE(3937), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(3934), 1, + sym_type_predicate, + STATE(5435), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4366), 7, + STATE(4629), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154383,7 +154758,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154397,77 +154772,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24951] = 33, + [25172] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2289), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(2291), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(2299), 1, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4513), 1, + ACTIONS(4368), 1, + anon_sym_keyof, + ACTIONS(4487), 1, sym_identifier, - ACTIONS(4515), 1, + ACTIONS(4489), 1, sym_this, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3926), 1, + STATE(3925), 1, sym_type_predicate, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5581), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5841), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4361), 7, + STATE(4625), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154475,7 +154850,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154489,147 +154864,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25076] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4505), 1, - anon_sym_EQ, - ACTIONS(4507), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [25157] = 33, + [25297] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, + ACTIONS(1914), 1, + sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2291), 1, + ACTIONS(1926), 1, anon_sym_new, - ACTIONS(2299), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4513), 1, - sym_identifier, - ACTIONS(4515), 1, - sym_this, - STATE(3884), 1, + ACTIONS(4491), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3928), 1, - sym_type_predicate, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5581), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5841), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4352), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154637,7 +154942,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154651,150 +154956,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25282] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2305), 1, - anon_sym_extends, - ACTIONS(3915), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 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, - [25359] = 3, + [25422] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 23, - anon_sym_STAR, + ACTIONS(3844), 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(3824), 34, - 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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_extends, - [25424] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(4517), 1, - anon_sym_EQ, - ACTIONS(4519), 1, + ACTIONS(4338), 1, anon_sym_EQ_GT, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154810,11 +154985,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 16, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -154825,9 +155001,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -154849,77 +155024,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25501] = 33, + [25499] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4013), 1, + ACTIONS(4469), 1, sym_identifier, - ACTIONS(4015), 1, + ACTIONS(4471), 1, + anon_sym_typeof, + ACTIONS(4473), 1, + anon_sym_new, + ACTIONS(4475), 1, + anon_sym_QMARK, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4481), 1, sym_this, - STATE(3884), 1, + ACTIONS(4483), 1, + anon_sym_readonly, + ACTIONS(4485), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3928), 1, - sym_type_predicate, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5520), 1, + STATE(3990), 1, + sym__primary_type, + STATE(3991), 1, + sym_type_predicate, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6115), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4355), 7, + STATE(4226), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154927,7 +155102,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154941,174 +155116,32 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25626] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_EQ_GT, - ACTIONS(4521), 1, - anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 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, - [25703] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3904), 1, - anon_sym_RPAREN, - ACTIONS(3908), 1, - anon_sym_extends, - ACTIONS(3913), 1, - anon_sym_EQ_GT, - ACTIONS(4312), 1, - anon_sym_EQ, - ACTIONS(4526), 1, - anon_sym_QMARK, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3856), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4523), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3848), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [25792] = 14, + [25624] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, + ACTIONS(3854), 1, anon_sym_LBRACK, - ACTIONS(3853), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3908), 1, + ACTIONS(3916), 1, anon_sym_extends, - ACTIONS(3913), 1, + ACTIONS(3921), 1, anon_sym_EQ_GT, - ACTIONS(4529), 1, + ACTIONS(4493), 1, anon_sym_EQ, - ACTIONS(4535), 1, + ACTIONS(4499), 1, anon_sym_COLON, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3856), 2, + ACTIONS(3860), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4531), 2, + ACTIONS(4495), 2, anon_sym_COMMA, anon_sym_RBRACK, - ACTIONS(3848), 11, + ACTIONS(3846), 11, anon_sym_as, anon_sym_LPAREN, anon_sym_QMARK_DOT, @@ -155120,7 +155153,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155136,7 +155169,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 19, + ACTIONS(3842), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155156,7 +155189,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25879] = 33, + [25711] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -155165,24 +155198,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1920), 1, @@ -155191,42 +155222,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1926), 1, anon_sym_new, - ACTIONS(1934), 1, - sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4537), 1, - anon_sym_GT, - STATE(3884), 1, + ACTIONS(4501), 1, + sym_identifier, + ACTIONS(4503), 1, + sym_this, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3925), 1, + sym_type_predicate, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4427), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155234,7 +155267,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155248,142 +155281,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26004] = 6, + [25836] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 1, - anon_sym_EQ_GT, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 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(1729), 22, + ACTIONS(564), 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, - [26075] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4021), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4023), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4025), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4027), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4029), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4031), 1, + ACTIONS(4368), 1, anon_sym_keyof, - ACTIONS(4539), 1, - sym_identifier, - ACTIONS(4541), 1, - sym_this, - STATE(2163), 1, + ACTIONS(4505), 1, + anon_sym_RBRACK, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2260), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5426), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, + STATE(5941), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3606), 7, + STATE(5094), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155391,7 +155359,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155405,71 +155373,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26200] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 19, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 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, - [26269] = 33, + [25961] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -155478,68 +155382,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, + ACTIONS(1914), 1, + sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3971), 1, - sym_identifier, - ACTIONS(3973), 1, - anon_sym_typeof, - ACTIONS(3975), 1, + ACTIONS(1926), 1, anon_sym_new, - ACTIONS(3977), 1, - anon_sym_QMARK, - ACTIONS(3979), 1, - anon_sym_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE, - ACTIONS(3983), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3985), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(3989), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4507), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3928), 1, - sym_type_predicate, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5453), 1, + STATE(5664), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(6017), 1, sym_formal_parameters, - ACTIONS(1770), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4682), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155547,7 +155451,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155561,7 +155465,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26394] = 33, + [26086] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -155570,68 +155474,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4378), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4386), 1, anon_sym_keyof, - ACTIONS(4543), 1, - anon_sym_RBRACK, - STATE(3884), 1, + ACTIONS(4509), 1, + sym_identifier, + ACTIONS(4511), 1, + sym_jsx_identifier, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5634), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5030), 7, + STATE(4558), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155639,7 +155543,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155653,7 +155557,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26519] = 33, + [26211] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -155662,24 +155566,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1920), 1, @@ -155688,290 +155590,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1926), 1, anon_sym_new, - ACTIONS(1934), 1, - sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4545), 1, - anon_sym_GT, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5640), 1, - sym_type_parameters, - STATE(5904), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4792), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [26644] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3892), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 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, - [26713] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, - anon_sym_typeof, - ACTIONS(4021), 1, - anon_sym_new, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4025), 1, - anon_sym_AMP, - ACTIONS(4027), 1, - anon_sym_PIPE, - ACTIONS(4029), 1, - anon_sym_readonly, - ACTIONS(4031), 1, - anon_sym_keyof, - ACTIONS(4539), 1, - sym_identifier, - ACTIONS(4541), 1, - sym_this, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2200), 1, - sym_type_predicate, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5426), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3608), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [26838] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3971), 1, + ACTIONS(4501), 1, sym_identifier, - ACTIONS(3973), 1, - anon_sym_typeof, - ACTIONS(3975), 1, - anon_sym_new, - ACTIONS(3977), 1, - anon_sym_QMARK, - ACTIONS(3979), 1, - anon_sym_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE, - ACTIONS(3983), 1, + ACTIONS(4503), 1, sym_this, - ACTIONS(3985), 1, - anon_sym_readonly, - ACTIONS(3989), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, STATE(3926), 1, - sym_type_predicate, - STATE(3937), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5453), 1, + STATE(3934), 1, + sym_type_predicate, + STATE(5664), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(6017), 1, sym_formal_parameters, - ACTIONS(1770), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4711), 7, + STATE(4522), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155979,7 +155635,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155993,7 +155649,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26963] = 33, + [26336] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -156002,21 +155658,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -156032,38 +155688,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4547), 1, + ACTIONS(4513), 1, anon_sym_GT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156071,7 +155727,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156085,20 +155741,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27088] = 9, + [26461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3882), 1, - anon_sym_LT, - ACTIONS(4507), 1, + ACTIONS(1940), 1, anon_sym_EQ_GT, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(1990), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156114,13 +155764,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - sym__automatic_semicolon, + ACTIONS(1730), 18, 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, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -156131,10 +155783,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -156153,20 +155806,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27165] = 9, + [26532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3862), 1, - anon_sym_EQ_GT, - ACTIONS(4431), 1, + ACTIONS(3883), 1, anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156182,80 +155827,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 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_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 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, - [27242] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_EQ, - ACTIONS(4519), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -156265,12 +155846,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, - ACTIONS(3844), 21, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -156289,77 +155870,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [27319] = 33, + [26601] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, + ACTIONS(4074), 1, anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4080), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(4057), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4063), 1, + ACTIONS(4098), 1, anon_sym_readonly, - ACTIONS(4065), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(4102), 1, anon_sym_keyof, - ACTIONS(4069), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4549), 1, + ACTIONS(4515), 1, sym_identifier, - ACTIONS(4551), 1, + ACTIONS(4517), 1, sym_this, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(2585), 1, + STATE(2324), 1, sym_type_predicate, - STATE(5393), 1, + STATE(5706), 1, sym_type_parameters, - STATE(5831), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(6138), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2612), 7, + STATE(2762), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156367,7 +155948,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156381,77 +155962,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27444] = 33, + [26726] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, - anon_sym_typeof, - ACTIONS(4340), 1, - anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(4348), 1, - anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(4553), 1, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2125), 1, + anon_sym_new, + ACTIONS(2133), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4519), 1, sym_identifier, - ACTIONS(4555), 1, + ACTIONS(4521), 1, sym_this, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2200), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5554), 1, + STATE(3934), 1, + sym_type_predicate, + STATE(5417), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5974), 1, + STATE(5960), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3526), 7, + STATE(4278), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156459,7 +156040,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156473,77 +156054,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27569] = 33, + [26851] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(4557), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(4559), 1, + ACTIONS(4525), 1, sym_this, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2200), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5699), 1, + STATE(2336), 1, + sym_type_predicate, + STATE(5444), 1, sym_type_parameters, - STATE(5725), 1, - sym_formal_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(3953), 2, + STATE(6067), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3379), 7, + STATE(3557), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156551,7 +156132,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156565,77 +156146,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27694] = 33, + [26976] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4352), 1, anon_sym_keyof, - ACTIONS(4561), 1, - anon_sym_RBRACK, - STATE(3884), 1, + ACTIONS(4527), 1, + sym_identifier, + ACTIONS(4529), 1, + sym_this, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5433), 1, + STATE(2566), 1, + sym_type_predicate, + STATE(2593), 1, + sym_string, + STATE(5411), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5845), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4948), 7, + STATE(3277), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156643,7 +156224,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156657,77 +156238,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27819] = 33, + [27101] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, - anon_sym_AMP, - ACTIONS(794), 1, - anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(3940), 1, anon_sym_typeof, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(1934), 1, - sym_this, - ACTIONS(1936), 1, + ACTIONS(3948), 1, + anon_sym_QMARK, + ACTIONS(3950), 1, + anon_sym_AMP, + ACTIONS(3952), 1, + anon_sym_PIPE, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4563), 1, - anon_sym_GT, - STATE(3884), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, + anon_sym_keyof, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4461), 1, + sym_identifier, + ACTIONS(4463), 1, + sym_this, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5640), 1, + STATE(2566), 1, + sym_type_predicate, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5836), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(2699), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156735,7 +156316,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156749,77 +156330,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27944] = 33, + [27226] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4352), 1, anon_sym_keyof, - ACTIONS(4565), 1, - anon_sym_RBRACK, - STATE(3884), 1, + ACTIONS(4527), 1, + sym_identifier, + ACTIONS(4529), 1, + sym_this, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5433), 1, + STATE(2478), 1, + sym_type_predicate, + STATE(2593), 1, + sym_string, + STATE(5411), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5845), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4929), 7, + STATE(3274), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156827,7 +156408,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156841,7 +156422,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28069] = 33, + [27351] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -156850,21 +156431,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -156880,38 +156461,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4567), 1, + ACTIONS(4531), 1, anon_sym_GT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156919,7 +156500,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156933,20 +156514,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28194] = 9, + [27476] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(4533), 1, anon_sym_EQ, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(4507), 1, + ACTIONS(4535), 1, anon_sym_EQ_GT, - STATE(2493), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156962,7 +156543,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 16, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -156979,7 +156560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -157001,169 +156582,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [28271] = 33, + [27553] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, - anon_sym_AMP, - ACTIONS(1626), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2170), 1, - anon_sym_new, - ACTIONS(2178), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4509), 1, - sym_identifier, - ACTIONS(4511), 1, - sym_this, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3928), 1, - sym_type_predicate, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5451), 1, - sym_type_parameters, - STATE(6068), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4380), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [28396] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4569), 1, - sym_identifier, - ACTIONS(4571), 1, + ACTIONS(4074), 1, anon_sym_typeof, - ACTIONS(4573), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_new, - ACTIONS(4575), 1, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(4577), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(4579), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(4581), 1, - sym_this, - ACTIONS(4583), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4098), 1, anon_sym_readonly, - ACTIONS(4585), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4515), 1, + sym_identifier, + ACTIONS(4517), 1, + sym_this, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3926), 1, - sym_type_predicate, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5473), 1, + STATE(2336), 1, + sym_type_predicate, + STATE(5706), 1, sym_type_parameters, - STATE(5780), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6138), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4333), 7, + STATE(2772), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157171,7 +156660,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157185,14 +156674,39 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28521] = 6, + [27678] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(3913), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(2309), 1, + anon_sym_extends, + ACTIONS(3904), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 15, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157208,16 +156722,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, - anon_sym_as, + ACTIONS(1713), 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, + [27755] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(4535), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 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_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 13, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -157227,12 +156777,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3844), 22, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, @@ -157240,9 +156804,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, @@ -157250,7 +156812,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [28592] = 33, + [27836] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, + anon_sym_typeof, + ACTIONS(4110), 1, + anon_sym_new, + ACTIONS(4112), 1, + anon_sym_QMARK, + ACTIONS(4114), 1, + anon_sym_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_readonly, + ACTIONS(4120), 1, + anon_sym_keyof, + ACTIONS(4537), 1, + sym_identifier, + ACTIONS(4539), 1, + sym_this, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2290), 1, + sym_string, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(2336), 1, + sym_type_predicate, + STATE(5630), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(6101), 1, + sym_formal_parameters, + ACTIONS(4088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3412), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [27961] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -157259,68 +156913,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4569), 1, + ACTIONS(4541), 1, sym_identifier, - ACTIONS(4571), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4573), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4575), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4577), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4579), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4581), 1, + ACTIONS(4553), 1, sym_this, - ACTIONS(4583), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4585), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3928), 1, - sym_type_predicate, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5473), 1, + STATE(3934), 1, + sym_type_predicate, + STATE(5601), 1, sym_type_parameters, - STATE(5780), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4328), 7, + STATE(4825), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157328,7 +156982,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157342,7 +156996,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28717] = 33, + [28086] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -157351,68 +157005,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4541), 1, + sym_identifier, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4553), 1, + sym_this, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4557), 1, anon_sym_keyof, - ACTIONS(4587), 1, - anon_sym_RBRACK, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3925), 1, + sym_type_predicate, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5101), 7, + STATE(4831), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157420,7 +157074,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157434,77 +157088,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28842] = 33, + [28211] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(4221), 1, + anon_sym_typeof, + ACTIONS(4223), 1, + anon_sym_new, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(4231), 1, + anon_sym_readonly, + ACTIONS(4233), 1, anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4561), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4589), 1, - anon_sym_GT, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5640), 1, + STATE(2324), 1, + sym_type_predicate, + STATE(5415), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5756), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(3598), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157512,7 +157166,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157526,77 +157180,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28967] = 33, + [28336] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(4221), 1, + anon_sym_typeof, + ACTIONS(4223), 1, + anon_sym_new, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(4231), 1, + anon_sym_readonly, + ACTIONS(4233), 1, anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(4559), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4561), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4591), 1, - anon_sym_GT, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5640), 1, + STATE(2336), 1, + sym_type_predicate, + STATE(5415), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5756), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(3596), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157604,7 +157258,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157618,20 +157272,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29092] = 9, + [28461] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(3883), 1, anon_sym_EQ, - ACTIONS(3879), 1, - anon_sym_LT, - ACTIONS(4519), 1, + ACTIONS(3921), 1, anon_sym_EQ_GT, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157647,12 +157295,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -157662,12 +157314,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, - ACTIONS(3844), 21, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -157686,77 +157337,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [29169] = 33, + [28532] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4035), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4037), 1, - anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4063), 1, - anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4549), 1, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4551), 1, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, sym_this, - STATE(2375), 1, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4563), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(2594), 1, - sym_type_predicate, - STATE(5393), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5831), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2613), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157764,7 +157415,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157778,77 +157429,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29294] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4517), 1, - anon_sym_EQ, - ACTIONS(4519), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [29375] = 33, + [28657] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -157857,68 +157438,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, + ACTIONS(1914), 1, + sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4593), 1, - sym_identifier, - ACTIONS(4595), 1, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4597), 1, - sym_jsx_identifier, - ACTIONS(4599), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4605), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4565), 1, + anon_sym_RBRACK, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5608), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5752), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4527), 7, + STATE(5060), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157926,7 +157507,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157940,7 +157521,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29500] = 33, + [28782] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -157949,68 +157530,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3978), 1, + sym_identifier, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(3990), 1, + sym_this, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(3996), 1, anon_sym_keyof, - ACTIONS(4611), 1, - anon_sym_RBRACK, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3925), 1, + sym_type_predicate, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5463), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4995), 7, + STATE(4614), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158018,7 +157599,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158032,77 +157613,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29625] = 33, + [28907] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4368), 1, anon_sym_keyof, - ACTIONS(4557), 1, - sym_identifier, - ACTIONS(4559), 1, - sym_this, - STATE(2163), 1, + ACTIONS(4567), 1, + anon_sym_RBRACK, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2260), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5699), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5725), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3387), 7, + STATE(4948), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158110,7 +157691,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158124,7 +157705,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29750] = 33, + [29032] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -158133,21 +157714,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -158163,38 +157744,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4613), 1, + ACTIONS(4569), 1, anon_sym_GT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158202,7 +157783,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158216,14 +157797,112 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29875] = 6, + [29157] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, + anon_sym_typeof, + ACTIONS(4110), 1, + anon_sym_new, + ACTIONS(4112), 1, + anon_sym_QMARK, + ACTIONS(4114), 1, + anon_sym_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_readonly, + ACTIONS(4120), 1, + anon_sym_keyof, + ACTIONS(4537), 1, + sym_identifier, + ACTIONS(4539), 1, + sym_this, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2290), 1, + sym_string, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(2324), 1, + sym_type_predicate, + STATE(5630), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(6101), 1, + sym_formal_parameters, + ACTIONS(4088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3409), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [29282] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3871), 1, anon_sym_EQ_GT, - ACTIONS(1956), 1, + ACTIONS(4433), 1, anon_sym_EQ, - ACTIONS(1750), 15, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158239,15 +157918,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 18, + ACTIONS(3846), 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -158258,11 +157935,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -158281,14 +157957,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [29946] = 6, + [29359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, + ACTIONS(1924), 1, anon_sym_EQ_GT, - ACTIONS(1978), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -158304,13 +157980,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 18, + ACTIONS(1730), 18, + 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_DOT, anon_sym_QMARK_DOT, @@ -158323,7 +157999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -158346,77 +158022,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30017] = 33, + [29430] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(4553), 1, + ACTIONS(4523), 1, sym_identifier, - ACTIONS(4555), 1, + ACTIONS(4525), 1, sym_this, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2260), 1, - sym_type_predicate, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5554), 1, + STATE(2324), 1, + sym_type_predicate, + STATE(5444), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5974), 1, + STATE(6067), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3495), 7, + STATE(3584), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158424,7 +158100,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158438,7 +158114,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30142] = 33, + [29555] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -158447,68 +158123,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3978), 1, + sym_identifier, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(3990), 1, + sym_this, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(3996), 1, anon_sym_keyof, - ACTIONS(4615), 1, - anon_sym_RBRACK, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(3934), 1, + sym_type_predicate, + STATE(5463), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5072), 7, + STATE(4605), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158516,7 +158192,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158530,7 +158206,78 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30267] = 33, + [29680] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4467), 1, + anon_sym_EQ, + ACTIONS(4571), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 13, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [29763] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -158539,21 +158286,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -158569,38 +158316,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4617), 1, + ACTIONS(4573), 1, anon_sym_GT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158608,7 +158355,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158622,77 +158369,145 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30392] = 33, + [29888] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3868), 1, + anon_sym_LT, + ACTIONS(4535), 1, + anon_sym_EQ_GT, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 16, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3842), 21, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(792), 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(794), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 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, + [29965] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4575), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1926), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP, + ACTIONS(4585), 1, + anon_sym_PIPE, + ACTIONS(4587), 1, sym_this, - ACTIONS(1936), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4619), 1, - anon_sym_GT, - STATE(3884), 1, + ACTIONS(4591), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5640), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(4011), 1, + sym_type_predicate, + STATE(5494), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5958), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4492), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158700,7 +158515,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158714,77 +158529,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30517] = 33, + [30090] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, + anon_sym_AMP, + ACTIONS(606), 1, + anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(2091), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(2093), 1, anon_sym_new, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_AMP, - ACTIONS(4605), 1, - anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(2101), 1, anon_sym_readonly, - ACTIONS(4609), 1, - anon_sym_keyof, - ACTIONS(4621), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4593), 1, sym_identifier, - ACTIONS(4623), 1, + ACTIONS(4595), 1, sym_this, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, STATE(3926), 1, - sym_type_predicate, - STATE(3937), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5608), 1, + STATE(3934), 1, + sym_type_predicate, + STATE(5615), 1, sym_type_parameters, - STATE(5752), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4268), 7, + STATE(4408), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158792,7 +158607,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158806,77 +158621,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30642] = 33, + [30215] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(602), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(604), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(606), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, + ACTIONS(2091), 1, + anon_sym_typeof, + ACTIONS(2093), 1, anon_sym_new, - ACTIONS(1934), 1, - sym_this, - ACTIONS(1936), 1, + ACTIONS(2101), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4625), 1, - anon_sym_GT, - STATE(3884), 1, + ACTIONS(4593), 1, + sym_identifier, + ACTIONS(4595), 1, + sym_this, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3925), 1, + sym_type_predicate, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5615), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4380), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158884,7 +158699,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158898,7 +158713,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30767] = 33, + [30340] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -158907,68 +158722,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, - anon_sym_AMP, - ACTIONS(794), 1, - anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4627), 1, - anon_sym_GT, - STATE(3884), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, + anon_sym_readonly, + ACTIONS(4368), 1, + anon_sym_keyof, + ACTIONS(4597), 1, + anon_sym_RBRACK, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4970), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158976,7 +158791,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158990,7 +158805,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30892] = 33, + [30465] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4417), 1, + anon_sym_EQ_GT, + ACTIONS(4443), 1, + anon_sym_EQ, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3846), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [30542] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -158999,68 +158882,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(1934), 1, - sym_this, - ACTIONS(1936), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4629), 1, - anon_sym_GT, - STATE(3884), 1, + ACTIONS(4519), 1, + sym_identifier, + ACTIONS(4521), 1, + sym_this, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3925), 1, + sym_type_predicate, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5417), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4315), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159068,7 +158951,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159082,77 +158965,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31017] = 33, + [30667] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(4310), 1, + anon_sym_typeof, + ACTIONS(4312), 1, + anon_sym_new, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(4320), 1, + anon_sym_readonly, + ACTIONS(4322), 1, anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(4599), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4601), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4631), 1, - anon_sym_GT, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5640), 1, + STATE(2324), 1, + sym_type_predicate, + STATE(5448), 1, sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, STATE(5904), 1, sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(3684), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159160,7 +159043,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159174,77 +159057,141 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31142] = 33, + [30792] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(3883), 1, + anon_sym_EQ, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 19, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1762), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3842), 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, + [30861] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1918), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4605), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(4322), 1, anon_sym_keyof, - ACTIONS(4621), 1, + ACTIONS(4599), 1, sym_identifier, - ACTIONS(4623), 1, + ACTIONS(4601), 1, sym_this, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3928), 1, - sym_type_predicate, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5608), 1, + STATE(2336), 1, + sym_type_predicate, + STATE(5448), 1, sym_type_parameters, - STATE(5752), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4281), 7, + STATE(3658), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159252,7 +159199,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159266,33 +159213,46 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31267] = 8, + [30986] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3912), 1, + anon_sym_RPAREN, + ACTIONS(3916), 1, + anon_sym_extends, + ACTIONS(3921), 1, anon_sym_EQ_GT, - ACTIONS(2874), 1, - anon_sym_COLON, - ACTIONS(3842), 1, - sym_identifier, - ACTIONS(1746), 14, - sym__automatic_semicolon, + ACTIONS(4263), 1, + anon_sym_EQ, + ACTIONS(4606), 1, + anon_sym_QMARK, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3860), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4603), 2, anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3846), 11, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159308,23 +159268,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(3842), 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, @@ -159332,8 +159287,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [31342] = 33, + [31075] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -159342,68 +159296,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, + ACTIONS(1914), 1, + sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, - anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(1926), 1, anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_readonly, - ACTIONS(4493), 1, - anon_sym_keyof, - ACTIONS(4633), 1, - sym_identifier, - ACTIONS(4635), 1, + ACTIONS(1934), 1, sym_this, - STATE(3884), 1, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4609), 1, + anon_sym_GT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, STATE(3926), 1, - sym_type_predicate, - STATE(3937), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5931), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4655), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159411,7 +159365,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159425,291 +159379,388 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31467] = 13, + [31200] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, - anon_sym_EQ, - ACTIONS(4386), 1, - anon_sym_EQ_GT, - ACTIONS(4425), 1, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4637), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(4639), 1, - anon_sym_COMMA, - ACTIONS(4641), 1, - anon_sym_LT, - ACTIONS(4644), 1, - anon_sym_DOT, - STATE(5056), 1, - aux_sym_extends_clause_repeat1, - STATE(5257), 1, - sym_type_arguments, - ACTIONS(3848), 12, - anon_sym_as, + ACTIONS(2251), 1, anon_sym_LPAREN, + ACTIONS(2253), 1, anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4575), 1, + sym_identifier, + ACTIONS(4577), 1, + anon_sym_typeof, + ACTIONS(4579), 1, + anon_sym_new, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4585), 1, anon_sym_PIPE, + ACTIONS(4587), 1, + sym_this, + ACTIONS(4589), 1, + anon_sym_readonly, + ACTIONS(4591), 1, + anon_sym_keyof, + STATE(3916), 1, + sym_nested_type_identifier, + STATE(3987), 1, + sym__number, + STATE(3990), 1, + sym__primary_type, + STATE(3991), 1, + sym_type_predicate, + STATE(4002), 1, + sym_string, + STATE(5494), 1, + sym_type_parameters, + STATE(5958), 1, + sym_formal_parameters, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, + sym_true, + sym_false, + ACTIONS(3374), 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, - [31552] = 5, + ACTIONS(2265), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4447), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3992), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [31325] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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_PIPE_RBRACE, - ACTIONS(3844), 22, + ACTIONS(564), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 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(802), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(804), 1, anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, + sym_this, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4611), 1, + anon_sym_GT, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5664), 1, + sym_type_parameters, + STATE(6017), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 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, - [31621] = 8, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4756), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [31450] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2880), 1, - anon_sym_COLON, - ACTIONS(3842), 1, - sym_identifier, - ACTIONS(1746), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(564), 1, anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 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(802), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(804), 1, anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, + sym_this, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4613), 1, + anon_sym_GT, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5664), 1, + sym_type_parameters, + STATE(6017), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 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, - anon_sym_instanceof, - [31696] = 9, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4756), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [31575] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4417), 1, - anon_sym_EQ_GT, - ACTIONS(4451), 1, - anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3848), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(564), 1, anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1918), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4615), 1, + sym_identifier, + ACTIONS(4617), 1, + anon_sym_typeof, + ACTIONS(4619), 1, + anon_sym_new, + ACTIONS(4621), 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(4623), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4625), 1, anon_sym_PIPE, + ACTIONS(4627), 1, + sym_this, + ACTIONS(4629), 1, + anon_sym_readonly, + ACTIONS(4631), 1, + anon_sym_keyof, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(3934), 1, + sym_type_predicate, + STATE(5469), 1, + sym_type_parameters, + STATE(5790), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 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, - [31773] = 9, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4307), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [31700] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(3879), 1, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3880), 1, anon_sym_LT, - ACTIONS(4149), 1, + ACTIONS(4535), 1, anon_sym_EQ_GT, - STATE(2359), 1, + STATE(2602), 1, sym_type_arguments, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159725,12 +159776,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -159742,7 +159793,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -159764,78 +159815,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [31850] = 12, + [31777] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3908), 1, - anon_sym_COMMA, - ACTIONS(4521), 1, - anon_sym_EQ, - ACTIONS(4647), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 2, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4370), 1, + sym_identifier, + ACTIONS(4372), 1, + anon_sym_typeof, + ACTIONS(4374), 1, + anon_sym_new, + ACTIONS(4376), 1, + anon_sym_QMARK, + ACTIONS(4378), 1, anon_sym_AMP, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(3848), 13, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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(4382), 1, + sym_this, + ACTIONS(4384), 1, + anon_sym_readonly, + ACTIONS(4386), 1, + anon_sym_keyof, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3925), 1, + sym_type_predicate, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5634), 1, + sym_type_parameters, + STATE(5872), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 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, - [31933] = 33, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4265), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [31902] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -159844,68 +159916,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1918), 1, anon_sym_LBRACE, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4615), 1, + sym_identifier, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4627), 1, + sym_this, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4631), 1, anon_sym_keyof, - ACTIONS(4633), 1, - sym_identifier, - ACTIONS(4635), 1, - sym_this, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3928), 1, + STATE(3925), 1, sym_type_predicate, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5469), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5790), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4647), 7, + STATE(4318), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159913,7 +159985,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159927,20 +159999,44 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32058] = 9, + [32027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3836), 23, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3859), 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(3838), 34, + 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, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(4149), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3864), 15, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -159956,14 +160052,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -159973,99 +160061,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 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, - [32135] = 33, + [32092] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4097), 1, + ACTIONS(3934), 1, + sym_identifier, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(4127), 1, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(4131), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4352), 1, anon_sym_keyof, - ACTIONS(4358), 1, - sym_identifier, - ACTIONS(4360), 1, - sym_this, - STATE(2634), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2835), 1, - sym_type_predicate, - STATE(3012), 1, - sym__number, - STATE(3023), 1, + STATE(2454), 1, sym__primary_type, - STATE(3034), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, sym_string, - STATE(5666), 1, + STATE(5411), 1, sym_type_parameters, - STATE(5734), 1, + STATE(5845), 1, sym_formal_parameters, - STATE(6035), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(4115), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2860), 7, + STATE(2486), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160073,7 +160137,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160087,7 +160151,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32260] = 32, + [32214] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -160096,25 +160160,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -160124,38 +160176,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4368), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5435), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4915), 7, + STATE(4876), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160163,7 +160227,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160177,7 +160241,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32382] = 32, + [32336] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -160186,25 +160250,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -160214,38 +160266,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4368), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5435), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5063), 7, + STATE(5042), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160253,7 +160317,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160267,75 +160331,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32504] = 32, + [32458] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(2634), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5666), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5435), 1, sym_type_parameters, - STATE(5734), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6035), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2924), 7, + STATE(5041), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160343,7 +160407,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160357,75 +160421,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32626] = 32, + [32580] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(2634), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5666), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5435), 1, sym_type_parameters, - STATE(5734), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6035), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2954), 7, + STATE(5034), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160433,7 +160497,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160447,75 +160511,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32748] = 32, + [32702] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2634), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5666), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5601), 1, sym_type_parameters, - STATE(5734), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6035), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2953), 7, + STATE(4922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160523,7 +160587,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160537,75 +160601,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32870] = 32, + [32824] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4095), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4325), 1, + ACTIONS(4374), 1, + anon_sym_new, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4333), 1, + ACTIONS(4378), 1, + anon_sym_AMP, + ACTIONS(4380), 1, + anon_sym_PIPE, + ACTIONS(4384), 1, + anon_sym_readonly, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(2634), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2853), 1, + STATE(3920), 1, + sym_string, + STATE(3926), 1, sym__primary_type, - STATE(3012), 1, + STATE(3927), 1, sym__number, - STATE(3034), 1, - sym_string, - STATE(5520), 1, + STATE(5634), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5872), 1, sym_formal_parameters, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5318), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160613,7 +160677,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160627,75 +160691,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32992] = 32, + [32946] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4378), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5693), 1, + STATE(5634), 1, sym_type_parameters, - STATE(5921), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3547), 7, + STATE(4292), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160703,7 +160767,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160717,7 +160781,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33114] = 32, + [33068] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -160726,19 +160790,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -160748,44 +160806,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4479), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4485), 1, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4493), 1, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, + anon_sym_readonly, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3938), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5601), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5250), 7, + STATE(4927), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160793,7 +160857,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160807,59 +160871,149 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33236] = 7, + [33190] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, - anon_sym_EQ, - ACTIONS(3913), 1, - anon_sym_EQ_GT, - ACTIONS(4649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3848), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, anon_sym_LPAREN, + ACTIONS(4078), 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(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, + anon_sym_typeof, + ACTIONS(4110), 1, + anon_sym_new, + ACTIONS(4112), 1, anon_sym_QMARK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, + ACTIONS(4114), 1, + anon_sym_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, + anon_sym_readonly, + ACTIONS(4120), 1, + anon_sym_keyof, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2290), 1, + sym_string, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5630), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(6101), 1, + sym_formal_parameters, + ACTIONS(4088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3356), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [33312] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, + anon_sym_EQ, + ACTIONS(3921), 1, + anon_sym_EQ_GT, + ACTIONS(4633), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3846), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + 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(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, @@ -160872,7 +161026,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [33308] = 32, + [33384] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -160889,58 +161043,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, + ACTIONS(2249), 1, anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, + ACTIONS(2255), 1, anon_sym_new, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(2277), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3914), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(3987), 1, sym__number, - STATE(4015), 1, + STATE(3990), 1, sym__primary_type, - STATE(4023), 1, + STATE(4002), 1, sym_string, - STATE(5481), 1, + STATE(5483), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6009), 1, + STATE(6019), 1, sym_formal_parameters, - ACTIONS(2112), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4025), 7, + STATE(4041), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160948,7 +161102,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160962,7 +161116,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33430] = 32, + [33506] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -160971,13 +161125,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1090), 1, + anon_sym_AMP, + ACTIONS(1092), 1, + anon_sym_PIPE, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -160987,50 +161149,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(4493), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5417), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4685), 7, + STATE(4345), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161038,7 +161192,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161052,75 +161206,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33552] = 32, + [33628] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4378), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5693), 1, + STATE(5634), 1, sym_type_parameters, - STATE(5921), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2587), 7, + STATE(4293), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161128,7 +161282,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161142,75 +161296,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33674] = 32, + [33750] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4121), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4127), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4131), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4322), 1, anon_sym_keyof, - STATE(2634), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(2290), 1, sym_string, - STATE(5666), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5448), 1, sym_type_parameters, - STATE(5734), 1, - sym_formal_parameters, - STATE(6035), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4115), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2852), 7, + STATE(3687), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161218,7 +161372,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161232,7 +161386,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33796] = 32, + [33872] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -161241,66 +161395,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, - anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4493), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5931), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4687), 7, + STATE(4441), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161308,7 +161462,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161322,7 +161476,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33918] = 32, + [33994] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -161331,13 +161485,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -161347,50 +161507,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5931), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(5379), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161398,7 +161552,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161412,139 +161566,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34040] = 6, + [34116] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(4505), 1, - anon_sym_EQ, - ACTIONS(4507), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4617), 1, + anon_sym_typeof, + ACTIONS(4619), 1, + anon_sym_new, + ACTIONS(4621), 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(4623), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4625), 1, anon_sym_PIPE, + ACTIONS(4629), 1, + anon_sym_readonly, + ACTIONS(4631), 1, + anon_sym_keyof, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5469), 1, + sym_type_parameters, + STATE(5790), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 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, - [34110] = 32, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3922), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [34238] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(2634), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5666), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5469), 1, sym_type_parameters, - STATE(5734), 1, + STATE(5790), 1, sym_formal_parameters, - STATE(6035), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2861), 7, + STATE(4321), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161552,7 +161732,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161566,7 +161746,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34232] = 32, + [34360] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -161575,13 +161755,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -161591,50 +161771,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5469), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5790), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4965), 7, + STATE(4310), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161642,7 +161822,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161656,75 +161836,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34354] = 32, + [34482] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4198), 1, - anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(3917), 1, sym__primary_type, - STATE(2294), 1, + STATE(3920), 1, + sym_string, + STATE(3927), 1, sym__number, - STATE(5600), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5705), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2246), 7, + STATE(5379), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161732,7 +161912,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161746,75 +161926,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34476] = 32, + [34604] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4198), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4202), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5600), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2271), 7, + STATE(4941), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161822,7 +162002,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161836,75 +162016,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34598] = 32, + [34726] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4198), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4202), 1, + ACTIONS(4378), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5600), 1, + STATE(5634), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2760), 7, + STATE(4319), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161912,7 +162092,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161926,75 +162106,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34720] = 32, + [34848] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(4128), 1, + anon_sym_typeof, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, - anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4148), 1, + sym_this, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - STATE(2634), 1, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + STATE(2637), 1, sym_nested_type_identifier, + STATE(3002), 1, + sym_string, STATE(3012), 1, - sym__number, - STATE(3023), 1, sym__primary_type, - STATE(3034), 1, - sym_string, - STATE(5666), 1, + STATE(3051), 1, + sym__number, + STATE(5389), 1, sym_type_parameters, - STATE(5734), 1, + STATE(5882), 1, sym_formal_parameters, - STATE(6035), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(4115), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2881), 7, + STATE(3143), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162002,7 +162182,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162016,7 +162196,72 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34842] = 32, + [34970] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2838), 1, + anon_sym_COLON, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 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(1713), 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, + [35042] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -162025,25 +162270,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -162053,38 +162286,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4372), 1, + anon_sym_typeof, + ACTIONS(4374), 1, + anon_sym_new, + ACTIONS(4376), 1, + anon_sym_QMARK, + ACTIONS(4378), 1, + anon_sym_AMP, + ACTIONS(4380), 1, + anon_sym_PIPE, + ACTIONS(4384), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4386), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5634), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4365), 7, + STATE(3914), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162092,7 +162337,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162106,75 +162351,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34964] = 32, + [35164] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5548), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5469), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, + STATE(5790), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4579), 7, + STATE(3914), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162182,7 +162427,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162196,7 +162441,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35086] = 32, + [35286] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -162205,13 +162450,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -162221,50 +162466,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5469), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5790), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5084), 7, + STATE(4311), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162272,7 +162517,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162286,30 +162531,22 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35208] = 32, + [35408] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -162319,42 +162556,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2289), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(2291), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(2299), 1, + ACTIONS(4376), 1, + anon_sym_QMARK, + ACTIONS(4378), 1, + anon_sym_AMP, + ACTIONS(4380), 1, + anon_sym_PIPE, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4386), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5581), 1, + STATE(5634), 1, sym_type_parameters, - STATE(5841), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4409), 7, + STATE(4309), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162362,7 +162607,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162376,7 +162621,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35330] = 32, + [35530] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -162385,13 +162630,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -162401,50 +162646,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5469), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5790), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4961), 7, + STATE(3929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162452,7 +162697,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162466,269 +162711,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35452] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2277), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 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, - 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(1729), 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, - [35522] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2880), 1, - anon_sym_COLON, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 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(1729), 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, - [35594] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2880), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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(3844), 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, - [35666] = 32, + [35652] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, + ACTIONS(4082), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, sym_number, - ACTIONS(4121), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, - anon_sym_typeof, - ACTIONS(4323), 1, - anon_sym_new, - ACTIONS(4325), 1, - anon_sym_QMARK, - ACTIONS(4327), 1, - anon_sym_AMP, - ACTIONS(4329), 1, - anon_sym_PIPE, - ACTIONS(4331), 1, - anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(2634), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3012), 1, + STATE(2290), 1, + sym_string, + STATE(2297), 1, sym__number, - STATE(3023), 1, + STATE(2358), 1, sym__primary_type, - STATE(3034), 1, - sym_string, - STATE(5666), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5734), 1, - sym_formal_parameters, - STATE(6035), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4115), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2866), 7, + STATE(5271), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162736,7 +162787,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162750,7 +162801,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35788] = 32, + [35774] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -162759,13 +162810,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -162775,50 +162832,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(3917), 1, sym__primary_type, - STATE(3942), 1, + STATE(3920), 1, + sym_string, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5931), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4648), 7, + STATE(5347), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162826,7 +162877,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162840,271 +162891,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35910] = 9, + [35896] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2006), 1, - anon_sym_EQ, - ACTIONS(2008), 1, - anon_sym_EQ_GT, - ACTIONS(2305), 1, - anon_sym_COMMA, - ACTIONS(3915), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 14, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 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, - [35986] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1970), 1, - anon_sym_EQ, - ACTIONS(1972), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, - 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, - anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 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, - [36056] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2860), 1, - anon_sym_COLON, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4078), 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(1729), 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, - [36128] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(4080), 1, + anon_sym_new, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(1936), 1, + ACTIONS(4098), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, + anon_sym_keyof, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5640), 1, + STATE(5706), 1, sym_type_parameters, - STATE(5904), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6138), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4428), 7, + STATE(2359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163112,7 +162967,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163126,7 +162981,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36250] = 32, + [36018] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -163135,13 +162990,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -163151,50 +163006,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4571), 1, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4573), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(4575), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4577), 1, + ACTIONS(4378), 1, anon_sym_AMP, - ACTIONS(4579), 1, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(4583), 1, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(4585), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5473), 1, + STATE(5634), 1, sym_type_parameters, - STATE(5780), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4442), 7, + STATE(4279), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163202,7 +163057,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163216,7 +163071,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36372] = 32, + [36140] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -163225,13 +163080,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -163241,50 +163096,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5469), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5790), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4962), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163292,7 +163147,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163306,294 +163161,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36494] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4417), 1, - anon_sym_EQ_GT, - ACTIONS(4451), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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, - 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(3844), 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, - [36564] = 7, + [36262] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2860), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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(3844), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 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, - [36636] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2110), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4368), 1, - anon_sym_typeof, - ACTIONS(4370), 1, + ACTIONS(4080), 1, anon_sym_new, - ACTIONS(4372), 1, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(4374), 1, - anon_sym_AMP, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4380), 1, - anon_sym_readonly, - ACTIONS(4382), 1, - anon_sym_keyof, - STATE(3914), 1, - sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, - sym_string, - STATE(5698), 1, - sym_type_parameters, - STATE(5897), 1, - sym_formal_parameters, - STATE(5905), 1, - sym_nested_identifier, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2102), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4203), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4019), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [36758] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4095), 1, - sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, - anon_sym_LBRACE, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, - anon_sym_LBRACK, - ACTIONS(4119), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4121), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, - anon_sym_typeof, - ACTIONS(4325), 1, - anon_sym_QMARK, - ACTIONS(4333), 1, + ACTIONS(4098), 1, + anon_sym_readonly, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(2634), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2933), 1, + STATE(2290), 1, + sym_string, + STATE(2296), 1, sym__primary_type, - STATE(3012), 1, + STATE(2297), 1, sym__number, - STATE(3034), 1, - sym_string, - STATE(5520), 1, + STATE(5706), 1, sym_type_parameters, - STATE(6035), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6052), 1, + STATE(6138), 1, sym_formal_parameters, - ACTIONS(4115), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5318), 7, + STATE(2748), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163601,7 +163237,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163615,7 +163251,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36880] = 32, + [36384] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -163624,13 +163260,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -163640,50 +163288,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5900), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5003), 7, + STATE(4940), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163691,7 +163327,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163705,7 +163341,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37002] = 32, + [36506] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -163714,13 +163350,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -163730,50 +163366,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4571), 1, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4573), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(4575), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4577), 1, + ACTIONS(4378), 1, anon_sym_AMP, - ACTIONS(4579), 1, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(4583), 1, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(4585), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5473), 1, + STATE(5634), 1, sym_type_parameters, - STATE(5780), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4398), 7, + STATE(3922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163781,7 +163417,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163795,76 +163431,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37124] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_EQ, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [37204] = 32, + [36628] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -163873,13 +163440,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -163889,50 +163462,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, - anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5931), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3934), 7, + STATE(5347), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163940,7 +163507,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163954,75 +163521,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37326] = 32, + [36750] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4074), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4098), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5570), 1, + STATE(5706), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6138), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5009), 7, + STATE(2755), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164030,7 +163597,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164044,71 +163611,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37448] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(4417), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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, - 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(3844), 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, - [37518] = 32, + [36872] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -164117,13 +163620,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -164133,50 +163636,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5469), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5790), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5033), 7, + STATE(4306), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164184,7 +163687,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164198,75 +163701,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37640] = 32, + [36994] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(3996), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5418), 1, + STATE(5463), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3212), 7, + STATE(4636), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164274,7 +163777,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164288,75 +163791,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37762] = 32, + [37116] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4082), 1, + anon_sym_QMARK, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, - anon_sym_typeof, - ACTIONS(4170), 1, - anon_sym_new, - ACTIONS(4172), 1, - anon_sym_QMARK, - ACTIONS(4174), 1, - anon_sym_AMP, - ACTIONS(4176), 1, - anon_sym_PIPE, - ACTIONS(4178), 1, - anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5699), 1, + STATE(2348), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5725), 1, - sym_formal_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(3953), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3389), 7, + STATE(5271), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164364,7 +163867,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164378,7 +163881,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37884] = 32, + [37238] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -164387,66 +163890,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2125), 1, + anon_sym_new, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5417), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3929), 7, + STATE(4781), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164454,7 +163957,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164468,75 +163971,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38006] = 32, + [37360] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5693), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5921), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3549), 7, + STATE(4968), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164544,7 +164047,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164558,7 +164061,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38128] = 32, + [37482] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1710), 1, + anon_sym_EQ, + ACTIONS(1728), 1, + anon_sym_EQ_GT, + ACTIONS(2309), 1, + anon_sym_extends, + ACTIONS(3033), 1, + anon_sym_QMARK, + ACTIONS(3904), 1, + anon_sym_LBRACK, + ACTIONS(3972), 1, + anon_sym_RPAREN, + ACTIONS(1717), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3907), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 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, + [37564] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2838), 1, + anon_sym_COLON, + ACTIONS(3893), 1, + anon_sym_EQ_GT, + ACTIONS(4106), 1, + anon_sym_EQ, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 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(3842), 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, + [37636] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -164567,13 +164205,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -164583,50 +164221,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4937), 7, + STATE(5003), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164634,7 +164272,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164648,165 +164286,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38250] = 32, + [37758] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(2109), 1, + anon_sym_EQ, + ACTIONS(2111), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 16, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(2090), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2110), 1, - sym_this, - ACTIONS(2972), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(1713), 23, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_typeof, - ACTIONS(4457), 1, - anon_sym_new, - ACTIONS(4459), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4461), 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(4463), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4467), 1, - anon_sym_readonly, - ACTIONS(4469), 1, - anon_sym_keyof, - STATE(3914), 1, - sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, - sym_string, - STATE(5548), 1, - sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, - sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4890), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4019), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [38372] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [37828] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4577), 1, + anon_sym_typeof, + ACTIONS(4579), 1, + anon_sym_new, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP, + ACTIONS(4585), 1, + anon_sym_PIPE, + ACTIONS(4589), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4591), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5520), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5958), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5026), 7, + STATE(4550), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164814,7 +164426,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164828,12 +164440,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38494] = 32, + [37950] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, ACTIONS(636), 1, anon_sym_infer, @@ -164841,62 +164453,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, - anon_sym_QMARK, - ACTIONS(4057), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4067), 1, - anon_sym_keyof, - ACTIONS(4069), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - STATE(2375), 1, + ACTIONS(4310), 1, + anon_sym_typeof, + ACTIONS(4314), 1, + anon_sym_QMARK, + ACTIONS(4322), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(2489), 1, + STATE(2358), 1, sym__primary_type, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5349), 7, + STATE(5299), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164904,7 +164516,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164918,75 +164530,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38616] = 32, + [38072] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, - sym_identifier, - ACTIONS(4035), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4577), 1, + anon_sym_typeof, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4063), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(4591), 1, anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2427), 1, - sym__primary_type, - STATE(2428), 1, + STATE(3987), 1, sym__number, - STATE(5393), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(5831), 1, + STATE(5958), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2490), 7, + STATE(3981), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164994,7 +164606,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165008,75 +164620,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38738] = 32, + [38194] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, + anon_sym_typeof, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4063), 1, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(4322), 1, anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(5393), 1, + STATE(5448), 1, sym_type_parameters, - STATE(5831), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2687), 7, + STATE(2359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165084,7 +164696,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165098,75 +164710,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38860] = 32, + [38316] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4121), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4127), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4131), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4322), 1, anon_sym_keyof, - STATE(2634), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(2290), 1, sym_string, - STATE(5666), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5448), 1, sym_type_parameters, - STATE(5734), 1, - sym_formal_parameters, - STATE(6035), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4115), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2863), 7, + STATE(3630), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165174,7 +164786,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165188,75 +164800,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38982] = 32, + [38438] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, - anon_sym_AMP, - ACTIONS(1626), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2168), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(2170), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(4314), 1, + anon_sym_QMARK, + ACTIONS(4316), 1, + anon_sym_AMP, + ACTIONS(4318), 1, + anon_sym_PIPE, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4322), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5451), 1, + STATE(5448), 1, sym_type_parameters, - STATE(6068), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4771), 7, + STATE(3642), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165264,7 +164876,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165278,75 +164890,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39104] = 32, + [38560] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, - anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4322), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5570), 1, + STATE(2348), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5027), 7, + STATE(5299), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165354,7 +164966,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165368,7 +164980,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39226] = 32, + [38682] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -165377,19 +164989,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -165399,44 +165005,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4595), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4601), 1, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, + anon_sym_readonly, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3935), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5601), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5358), 7, + STATE(5091), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165444,7 +165056,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165458,75 +165070,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39348] = 32, + [38804] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, + anon_sym_typeof, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4063), 1, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(4322), 1, anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(5393), 1, + STATE(5448), 1, sym_type_parameters, - STATE(5831), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2686), 7, + STATE(2335), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165534,7 +165146,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165548,7 +165160,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39470] = 32, + [38926] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -165561,62 +165173,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4033), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, + ACTIONS(3940), 1, anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4047), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4057), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(4067), 1, + ACTIONS(3968), 1, anon_sym_keyof, - ACTIONS(4069), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2428), 1, + STATE(2455), 1, sym__number, - STATE(2501), 1, + STATE(2593), 1, + sym_string, + STATE(2605), 1, sym__primary_type, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5349), 7, + STATE(5225), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165624,7 +165236,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165638,75 +165250,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39592] = 32, + [39048] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(3940), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(3950), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(3952), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5570), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5836), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5035), 7, + STATE(2604), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165714,7 +165326,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165728,75 +165340,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39714] = 32, + [39170] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(3940), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(3950), 1, anon_sym_AMP, - ACTIONS(4605), 1, + ACTIONS(3952), 1, anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5608), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(5752), 1, + STATE(5836), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(2617), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165804,7 +165416,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165818,75 +165430,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39836] = 32, + [39292] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4605), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(4322), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5608), 1, + STATE(5448), 1, sym_type_parameters, - STATE(5752), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4413), 7, + STATE(3599), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165894,7 +165506,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165908,75 +165520,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39958] = 32, + [39414] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4320), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4322), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5433), 1, + STATE(5448), 1, sym_type_parameters, - STATE(5931), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3929), 7, + STATE(2327), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165984,7 +165596,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165998,7 +165610,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40080] = 32, + [39536] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -166007,13 +165619,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -166023,50 +165635,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5041), 7, + STATE(5089), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166074,7 +165686,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166088,139 +165700,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40202] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1940), 1, - anon_sym_EQ_GT, - ACTIONS(2006), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 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, - [40272] = 32, + [39658] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4595), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4601), 1, + ACTIONS(4312), 1, + anon_sym_new, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4609), 1, + ACTIONS(4316), 1, + anon_sym_AMP, + ACTIONS(4318), 1, + anon_sym_PIPE, + ACTIONS(4320), 1, + anon_sym_readonly, + ACTIONS(4322), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3938), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(5448), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5358), 7, + STATE(2320), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166228,7 +165776,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166242,75 +165790,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40394] = 32, + [39780] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(3940), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(3950), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(3952), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5570), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5836), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5047), 7, + STATE(2620), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166318,7 +165866,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166332,75 +165880,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40516] = 32, + [39902] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(3940), 1, anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, - anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, sym_string, - STATE(3937), 1, + STATE(2600), 1, sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5570), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5061), 7, + STATE(5225), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166408,7 +165956,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166422,75 +165970,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40638] = 32, + [40024] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4247), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5570), 1, + STATE(5475), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6024), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5067), 7, + STATE(3444), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166498,7 +166046,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166512,22 +166060,32 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40760] = 32, + [40146] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -166537,50 +166095,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(2091), 1, anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4493), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5931), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(5351), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166588,7 +166136,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166602,75 +166150,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40882] = 32, + [40268] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(602), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(604), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(606), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, + ACTIONS(2091), 1, + anon_sym_typeof, + ACTIONS(2093), 1, + anon_sym_new, + ACTIONS(2101), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5615), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4499), 7, + STATE(3922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166678,7 +166226,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166692,22 +166240,99 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41004] = 32, + [40390] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4404), 1, + anon_sym_EQ, + ACTIONS(4406), 1, + anon_sym_EQ_GT, + ACTIONS(4635), 1, + anon_sym_LBRACE, + ACTIONS(4639), 1, + anon_sym_LT, + ACTIONS(4642), 1, + anon_sym_DOT, + STATE(5070), 1, + sym_type_arguments, + ACTIONS(4637), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + ACTIONS(3846), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [40470] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, + anon_sym_AMP, + ACTIONS(606), 1, + anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -166717,50 +166342,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(2091), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(2093), 1, anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(2101), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5615), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5070), 7, + STATE(4403), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166768,7 +166385,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166782,22 +166399,32 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41126] = 32, + [40592] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -166807,50 +166434,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(2091), 1, anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(3917), 1, sym__primary_type, - STATE(3942), 1, + STATE(3920), 1, + sym_string, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5900), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5079), 7, + STATE(5351), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166858,7 +166475,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166872,165 +166489,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41248] = 32, + [40714] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(4417), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 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, + 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(4196), 1, - anon_sym_typeof, - ACTIONS(4198), 1, - anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(3842), 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, - ACTIONS(4202), 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(4204), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_readonly, - ACTIONS(4208), 1, - anon_sym_keyof, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5600), 1, - sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5753), 1, - sym_nested_identifier, - ACTIONS(3953), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2776), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [41370] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [40784] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4198), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4202), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5600), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2199), 7, + STATE(4965), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167038,7 +166629,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167052,75 +166643,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41492] = 32, + [40906] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1090), 1, + anon_sym_AMP, + ACTIONS(1092), 1, + anon_sym_PIPE, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(4172), 1, - anon_sym_QMARK, - ACTIONS(4174), 1, - anon_sym_AMP, - ACTIONS(4176), 1, - anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(4180), 1, - anon_sym_keyof, - STATE(2163), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5699), 1, + STATE(5417), 1, sym_type_parameters, - STATE(5725), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3388), 7, + STATE(4325), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167128,7 +166719,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167142,75 +166733,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41614] = 32, + [41028] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1090), 1, + anon_sym_AMP, + ACTIONS(1092), 1, + anon_sym_PIPE, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4368), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(4370), 1, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(4372), 1, - anon_sym_QMARK, - ACTIONS(4374), 1, - anon_sym_AMP, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(4382), 1, - anon_sym_keyof, - STATE(3914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5698), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5417), 1, sym_type_parameters, - STATE(5897), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(5905), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(2112), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4008), 7, + STATE(3914), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167218,7 +166809,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167232,7 +166823,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41736] = 32, + [41150] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -167241,25 +166832,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -167269,38 +166856,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2125), 1, + anon_sym_new, + ACTIONS(2133), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5417), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5087), 7, + STATE(4623), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167308,7 +166899,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167322,75 +166913,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41858] = 32, + [41272] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(4417), 1, + anon_sym_EQ_GT, + ACTIONS(4443), 1, + anon_sym_EQ, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 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, + 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(3842), 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, + [41342] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5693), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5921), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3559), 7, + STATE(4685), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167398,7 +167053,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167412,22 +167067,30 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41980] = 32, + [41464] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, + anon_sym_AMP, + ACTIONS(606), 1, + anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -167437,50 +167100,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(2091), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(2093), 1, anon_sym_new, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_AMP, - ACTIONS(4605), 1, - anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(2101), 1, anon_sym_readonly, - ACTIONS(4609), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5608), 1, + STATE(5615), 1, sym_type_parameters, - STATE(5752), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3934), 7, + STATE(3914), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167488,7 +167143,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167502,22 +167157,30 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42102] = 32, + [41586] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, + anon_sym_AMP, + ACTIONS(606), 1, + anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -167527,50 +167190,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(2091), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(2093), 1, anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(2101), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5615), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4698), 7, + STATE(4381), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167578,7 +167233,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167592,75 +167247,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42224] = 32, + [41708] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, + anon_sym_AMP, + ACTIONS(606), 1, + anon_sym_PIPE, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(2091), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(2093), 1, anon_sym_new, - ACTIONS(4137), 1, - anon_sym_QMARK, - ACTIONS(4139), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(2101), 1, anon_sym_readonly, - ACTIONS(4145), 1, - anon_sym_keyof, - STATE(2375), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5693), 1, + STATE(5615), 1, sym_type_parameters, - STATE(5921), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2490), 7, + STATE(3929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167668,7 +167323,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167682,7 +167337,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42346] = 32, + [41830] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -167691,13 +167346,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -167707,50 +167374,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_typeof, - ACTIONS(4599), 1, - anon_sym_new, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_AMP, - ACTIONS(4605), 1, - anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4609), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5608), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5752), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4527), 7, + STATE(5068), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167758,7 +167413,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167772,14 +167427,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42468] = 6, + [41952] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(2111), 1, anon_sym_EQ_GT, - ACTIONS(1974), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -167795,12 +167450,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, - sym__automatic_semicolon, + ACTIONS(1730), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -167813,8 +167466,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + anon_sym_LBRACE_PIPE, + ACTIONS(1713), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -167836,75 +167491,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [42538] = 32, + [42022] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(606), 1, anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4270), 1, - anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4282), 1, - anon_sym_QMARK, - ACTIONS(4292), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(4294), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4296), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(4308), 1, - anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4657), 1, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - STATE(4050), 1, + ACTIONS(2091), 1, + anon_sym_typeof, + ACTIONS(2093), 1, + anon_sym_new, + ACTIONS(2101), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4243), 1, + STATE(3920), 1, + sym_string, + STATE(3926), 1, sym__primary_type, - STATE(4249), 1, + STATE(3927), 1, sym__number, - STATE(4252), 1, - sym_string, - STATE(5520), 1, + STATE(5615), 1, sym_type_parameters, - STATE(5899), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5719), 1, sym_formal_parameters, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5225), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167912,7 +167567,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167926,34 +167581,30 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42660] = 32, + [42144] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(602), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(604), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(606), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -167963,38 +167614,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(2091), 1, + anon_sym_typeof, + ACTIONS(2093), 1, + anon_sym_new, + ACTIONS(2101), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5615), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4941), 7, + STATE(4411), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168002,7 +167657,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168016,140 +167671,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42782] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2874), 1, - anon_sym_COLON, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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(3844), 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, - [42854] = 32, + [42266] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4270), 1, - anon_sym_STAR, ACTIONS(4272), 1, - anon_sym_LBRACE, + sym_identifier, ACTIONS(4274), 1, - anon_sym_typeof, + anon_sym_STAR, ACTIONS(4276), 1, - anon_sym_LPAREN, + anon_sym_LBRACE, ACTIONS(4278), 1, - anon_sym_LBRACK, + anon_sym_typeof, ACTIONS(4280), 1, - anon_sym_new, + anon_sym_LPAREN, ACTIONS(4282), 1, - anon_sym_QMARK, + anon_sym_LBRACK, ACTIONS(4284), 1, - anon_sym_AMP, + anon_sym_new, ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4288), 1, + anon_sym_AMP, + ACTIONS(4290), 1, anon_sym_PIPE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - anon_sym_SQUOTE, ACTIONS(4296), 1, sym_number, + ACTIONS(4298), 1, + sym_this, ACTIONS(4302), 1, anon_sym_readonly, - ACTIONS(4306), 1, + ACTIONS(4304), 1, anon_sym_infer, - ACTIONS(4308), 1, + ACTIONS(4306), 1, anon_sym_keyof, - ACTIONS(4310), 1, + ACTIONS(4308), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4657), 1, - sym_this, - STATE(4050), 1, + STATE(3135), 1, sym_nested_type_identifier, - STATE(4249), 1, + STATE(3422), 1, sym__number, - STATE(4252), 1, - sym_string, - STATE(4258), 1, + STATE(3460), 1, sym__primary_type, - STATE(5510), 1, + STATE(3514), 1, + sym_string, + STATE(5509), 1, sym_type_parameters, - STATE(5850), 1, + STATE(5714), 1, sym_formal_parameters, - STATE(5899), 1, + STATE(5940), 1, sym_nested_identifier, - ACTIONS(4288), 2, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, ACTIONS(4300), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4242), 7, + STATE(3401), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168157,7 +167747,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168171,75 +167761,255 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42976] = 32, + [42388] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4270), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4280), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4282), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4286), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(4555), 1, + anon_sym_readonly, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5601), 1, + sym_type_parameters, + STATE(5843), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4923), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42510] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(4294), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4296), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(4302), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, + ACTIONS(4557), 1, anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5601), 1, + sym_type_parameters, + STATE(5843), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5064), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42632] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4657), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - STATE(4050), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4310), 1, + anon_sym_typeof, + ACTIONS(4312), 1, + anon_sym_new, + ACTIONS(4314), 1, + anon_sym_QMARK, + ACTIONS(4316), 1, + anon_sym_AMP, + ACTIONS(4318), 1, + anon_sym_PIPE, + ACTIONS(4320), 1, + anon_sym_readonly, + ACTIONS(4322), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, + STATE(2290), 1, sym_string, - STATE(4258), 1, + STATE(2296), 1, sym__primary_type, - STATE(5510), 1, + STATE(2297), 1, + sym__number, + STATE(5448), 1, sym_type_parameters, - STATE(5850), 1, - sym_formal_parameters, - STATE(5899), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4288), 2, + STATE(5904), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4239), 7, + STATE(3686), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168247,7 +168017,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168261,16 +168031,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43098] = 7, + [42754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, + ACTIONS(4106), 1, anon_sym_EQ, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2874), 1, - anon_sym_COLON, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -168286,10 +168052,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(3846), 18, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -168303,7 +168070,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1729), 22, + anon_sym_extends, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -168326,30 +168094,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43170] = 32, + [42822] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, + ACTIONS(602), 1, anon_sym_QMARK, - ACTIONS(1624), 1, + ACTIONS(604), 1, anon_sym_AMP, - ACTIONS(1626), 1, + ACTIONS(606), 1, anon_sym_PIPE, - ACTIONS(1640), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -168359,42 +168127,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, + ACTIONS(2091), 1, anon_sym_typeof, - ACTIONS(2170), 1, + ACTIONS(2093), 1, anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(2101), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5615), 1, sym_type_parameters, - STATE(6068), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(4405), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168402,7 +168170,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168416,7 +168184,71 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43292] = 32, + [42944] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1924), 1, + anon_sym_EQ_GT, + ACTIONS(2085), 1, + anon_sym_EQ, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, + 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, + anon_sym_extends, + ACTIONS(1713), 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, + [43014] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -168425,13 +168257,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -168441,50 +168273,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4605), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(3996), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5608), 1, + STATE(5463), 1, sym_type_parameters, - STATE(5752), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4279), 7, + STATE(4603), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168492,7 +168324,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168506,75 +168338,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43414] = 32, + [43136] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, + anon_sym_new, + ACTIONS(4186), 1, + anon_sym_QMARK, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4194), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(5444), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6067), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5018), 7, + STATE(3582), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168582,7 +168414,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168596,75 +168428,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43536] = 32, + [43258] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(3996), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5418), 1, + STATE(5463), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2490), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168672,7 +168504,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168686,75 +168518,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43658] = 32, + [43380] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4270), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4280), 1, - anon_sym_new, - ACTIONS(4282), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(4286), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(4294), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4296), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(4302), 1, - anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, - anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4657), 1, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, sym_this, - STATE(4050), 1, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, + STATE(3920), 1, sym_string, - STATE(4258), 1, + STATE(3926), 1, sym__primary_type, - STATE(5510), 1, + STATE(3927), 1, + sym__number, + STATE(5664), 1, sym_type_parameters, - STATE(5850), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(5899), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4238), 7, + STATE(4585), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168762,7 +168594,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168776,75 +168608,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43780] = 32, + [43502] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, + anon_sym_new, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(1624), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(1626), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(1640), 1, + ACTIONS(4192), 1, + anon_sym_readonly, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2290), 1, + sym_string, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5444), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(6067), 1, + sym_formal_parameters, + ACTIONS(4088), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3587), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43624] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2168), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(2170), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(4186), 1, + anon_sym_QMARK, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4194), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5451), 1, + STATE(5444), 1, sym_type_parameters, - STATE(6068), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6067), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4274), 7, + STATE(2320), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168852,7 +168774,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168866,75 +168788,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43902] = 32, + [43746] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(602), 1, + anon_sym_QMARK, + ACTIONS(604), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(606), 1, anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4270), 1, - anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(638), 1, + anon_sym_keyof, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4282), 1, - anon_sym_QMARK, - ACTIONS(4292), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(4294), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4296), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(4308), 1, - anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4657), 1, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - STATE(4050), 1, + ACTIONS(2091), 1, + anon_sym_typeof, + ACTIONS(2093), 1, + anon_sym_new, + ACTIONS(2101), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4236), 1, + STATE(3920), 1, + sym_string, + STATE(3926), 1, sym__primary_type, - STATE(4249), 1, + STATE(3927), 1, sym__number, - STATE(4252), 1, - sym_string, - STATE(5520), 1, + STATE(5615), 1, sym_type_parameters, - STATE(5899), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5719), 1, sym_formal_parameters, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5225), 7, + STATE(4295), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168942,7 +168864,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168956,7 +168878,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44024] = 32, + [43868] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -168965,13 +168887,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -168981,50 +168915,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_typeof, - ACTIONS(4599), 1, - anon_sym_new, - ACTIONS(4601), 1, - anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_AMP, - ACTIONS(4605), 1, - anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4609), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5608), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5752), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3929), 7, + STATE(5025), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169032,7 +168954,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169046,75 +168968,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44146] = 32, + [43990] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(4235), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4247), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5554), 1, + STATE(5475), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5974), 1, + STATE(6024), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3491), 7, + STATE(2335), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169122,7 +169044,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169136,18 +169058,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44268] = 8, + [44112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, + ACTIONS(2111), 1, anon_sym_EQ_GT, - ACTIONS(3066), 1, - anon_sym_in, - ACTIONS(4659), 1, - anon_sym_of, - ACTIONS(1750), 15, + ACTIONS(2305), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169163,12 +169081,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, - sym__automatic_semicolon, + ACTIONS(1730), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169180,9 +169096,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1729), 21, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(1713), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -169202,7 +169122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [44342] = 32, + [44182] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -169211,13 +169131,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -169227,50 +169147,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4605), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5608), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5752), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(4920), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169278,7 +169198,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169292,75 +169212,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44464] = 32, + [44304] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4605), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5608), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(5752), 1, + STATE(5958), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4265), 7, + STATE(3988), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169368,7 +169288,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169382,75 +169302,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44586] = 32, + [44426] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(4184), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4188), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4190), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4192), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(3987), 1, sym__number, - STATE(5396), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(5958), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3564), 7, + STATE(4442), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169458,7 +169378,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169472,7 +169392,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44708] = 32, + [44548] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2085), 1, + anon_sym_EQ, + ACTIONS(2087), 1, + anon_sym_EQ_GT, + ACTIONS(3904), 1, + anon_sym_LBRACK, + ACTIONS(2309), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 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, + [44624] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -169481,13 +169468,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -169497,50 +169484,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(3996), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5463), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4807), 7, + STATE(3929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169548,7 +169535,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169562,75 +169549,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44830] = 32, + [44746] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4110), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4116), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4118), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4120), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5570), 1, + STATE(5630), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6101), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5046), 7, + STATE(3408), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169638,7 +169625,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169652,75 +169639,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44952] = 32, + [44868] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4221), 1, anon_sym_typeof, - ACTIONS(4170), 1, - anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4174), 1, - anon_sym_AMP, - ACTIONS(4176), 1, - anon_sym_PIPE, - ACTIONS(4178), 1, - anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4233), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5699), 1, + STATE(2358), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5725), 1, - sym_formal_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(3953), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2271), 7, + STATE(5325), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169728,7 +169715,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169742,75 +169729,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45074] = 32, + [44990] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(4221), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4233), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5554), 1, + STATE(5415), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5974), 1, + STATE(5756), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2271), 7, + STATE(2359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169818,7 +169805,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169832,7 +169819,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45196] = 32, + [45112] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -169841,23 +169828,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -169867,40 +169844,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3935), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5601), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5371), 7, + STATE(4953), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169908,7 +169895,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169922,75 +169909,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45318] = 32, + [45234] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5693), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5921), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2596), 7, + STATE(4979), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169998,7 +169985,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170012,75 +169999,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45440] = 32, + [45356] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4110), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4116), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4118), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4120), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5570), 1, + STATE(5630), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6101), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(2327), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170088,7 +170075,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170102,7 +170089,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45562] = 32, + [45478] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -170111,66 +170098,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, - anon_sym_AMP, - ACTIONS(794), 1, - anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3980), 1, + anon_sym_typeof, + ACTIONS(3982), 1, + anon_sym_new, + ACTIONS(3984), 1, + anon_sym_QMARK, + ACTIONS(3986), 1, + anon_sym_AMP, + ACTIONS(3988), 1, + anon_sym_PIPE, + ACTIONS(3992), 1, + anon_sym_readonly, + ACTIONS(3996), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5463), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4549), 7, + STATE(4609), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170178,7 +170165,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170192,7 +170179,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45684] = 32, + [45600] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -170201,21 +170188,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, - anon_sym_AMP, - ACTIONS(1626), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -170225,42 +170204,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(2170), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(3984), 1, + anon_sym_QMARK, + ACTIONS(3986), 1, + anon_sym_AMP, + ACTIONS(3988), 1, + anon_sym_PIPE, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(3996), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5463), 1, sym_type_parameters, - STATE(6068), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(3914), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170268,7 +170255,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170282,75 +170269,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45806] = 32, + [45722] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, ACTIONS(724), 1, anon_sym_STAR, + ACTIONS(760), 1, + anon_sym_infer, ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2080), 1, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4368), 1, + ACTIONS(4471), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(4473), 1, + anon_sym_new, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4382), 1, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_readonly, + ACTIONS(4485), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(4004), 1, - sym__primary_type, - STATE(4014), 1, + STATE(3987), 1, sym__number, - STATE(4023), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, sym_string, - STATE(5520), 1, + STATE(5613), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6052), 1, + STATE(6115), 1, sym_formal_parameters, - ACTIONS(2112), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5164), 7, + STATE(4257), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170358,7 +170345,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170372,75 +170359,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45928] = 32, + [45844] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(4221), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4233), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5554), 1, + STATE(5415), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5974), 1, + STATE(5756), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3429), 7, + STATE(3560), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170448,7 +170435,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170462,75 +170449,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46050] = 32, + [45966] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4368), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4221), 1, anon_sym_typeof, - ACTIONS(4370), 1, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4372), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4374), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4376), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4382), 1, + ACTIONS(4233), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5698), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5415), 1, sym_type_parameters, - STATE(5897), 1, + STATE(5756), 1, sym_formal_parameters, - STATE(5905), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4200), 7, + STATE(3559), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170538,7 +170525,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170552,72 +170539,97 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46172] = 7, + [46088] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(4661), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3848), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, anon_sym_LPAREN, + ACTIONS(4078), 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(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4221), 1, + anon_sym_typeof, + ACTIONS(4225), 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(4233), 1, + anon_sym_keyof, + STATE(2167), 1, + sym_nested_type_identifier, + STATE(2290), 1, + sym_string, + STATE(2297), 1, + sym__number, + STATE(2348), 1, + sym__primary_type, + STATE(5569), 1, + sym_type_parameters, + STATE(5874), 1, + sym_nested_identifier, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 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, - [46244] = 32, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5325), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2292), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [46210] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -170626,13 +170638,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -170642,50 +170654,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3929), 7, + STATE(4980), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170693,7 +170705,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170707,75 +170719,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46366] = 32, + [46332] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, - anon_sym_AMP, - ACTIONS(794), 1, - anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(1936), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4221), 1, + anon_sym_typeof, + ACTIONS(4223), 1, + anon_sym_new, + ACTIONS(4225), 1, + anon_sym_QMARK, + ACTIONS(4227), 1, + anon_sym_AMP, + ACTIONS(4229), 1, + anon_sym_PIPE, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4233), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5640), 1, + STATE(5415), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5756), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(2335), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170783,7 +170795,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170797,7 +170809,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46488] = 32, + [46454] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -170806,13 +170818,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -170822,50 +170840,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3973), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(3975), 1, - anon_sym_new, - ACTIONS(3977), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(3979), 1, - anon_sym_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE, - ACTIONS(3985), 1, - anon_sym_readonly, - ACTIONS(3989), 1, + ACTIONS(3996), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(3917), 1, sym__primary_type, - STATE(3942), 1, + STATE(3920), 1, + sym_string, + STATE(3927), 1, sym__number, - STATE(5453), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(1770), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4857), 7, + STATE(5341), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170873,7 +170885,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170887,7 +170899,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46610] = 32, + [46576] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -170896,21 +170908,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -170926,36 +170938,36 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4516), 7, + STATE(4477), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170963,7 +170975,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170977,165 +170989,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46732] = 32, + [46698] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4033), 1, - sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, - anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, - anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, - anon_sym_typeof, - ACTIONS(4137), 1, - anon_sym_QMARK, - ACTIONS(4145), 1, - anon_sym_keyof, - STATE(2375), 1, - sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2428), 1, - sym__number, - STATE(2489), 1, - sym__primary_type, - STATE(5520), 1, - sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6126), 1, - sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, - sym_true, - sym_false, - ACTIONS(4055), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(5205), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2450), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [46854] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4368), 1, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(4370), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4372), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4374), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4376), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4382), 1, + ACTIONS(3996), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5698), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5463), 1, sym_type_parameters, - STATE(5897), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(5905), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(2112), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4199), 7, + STATE(4790), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171143,7 +171065,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171157,7 +171079,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46976] = 32, + [46820] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -171166,13 +171088,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -171182,50 +171104,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(3980), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(3996), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5463), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4876), 7, + STATE(3922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171233,7 +171155,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171247,7 +171169,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47098] = 32, + [46942] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -171256,25 +171178,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -171284,38 +171200,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(3980), 1, + anon_sym_typeof, + ACTIONS(3984), 1, + anon_sym_QMARK, + ACTIONS(3996), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4993), 7, + STATE(5341), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171323,7 +171245,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171337,75 +171259,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47220] = 32, + [47064] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4221), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4233), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5548), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5415), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, + STATE(5756), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4776), 7, + STATE(3594), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171413,7 +171335,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171427,75 +171349,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47342] = 32, + [47186] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4221), 1, anon_sym_typeof, - ACTIONS(4599), 1, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4603), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4605), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4607), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(4233), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5608), 1, + STATE(5415), 1, sym_type_parameters, - STATE(5752), 1, + STATE(5756), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4412), 7, + STATE(2327), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171503,7 +171425,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171517,142 +171439,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47464] = 9, + [47308] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2150), 1, - anon_sym_EQ_GT, - ACTIONS(3915), 1, - anon_sym_LBRACK, - ACTIONS(2305), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 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, - [47540] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, + anon_sym_typeof, + ACTIONS(4110), 1, + anon_sym_new, + ACTIONS(4112), 1, + anon_sym_QMARK, + ACTIONS(4114), 1, + anon_sym_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3914), 1, + ACTIONS(4120), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5481), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5630), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6009), 1, + STATE(6101), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3994), 7, + STATE(3410), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171660,7 +171515,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171674,75 +171529,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47662] = 32, + [47430] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, + anon_sym_typeof, + ACTIONS(4239), 1, + anon_sym_QMARK, + ACTIONS(4247), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(2348), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4982), 7, + STATE(5288), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171750,7 +171605,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171764,75 +171619,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47784] = 32, + [47552] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4270), 1, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4272), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4280), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4221), 1, + anon_sym_typeof, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4282), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4286), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - anon_sym_SQUOTE, - ACTIONS(4296), 1, - sym_number, - ACTIONS(4302), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, + ACTIONS(4233), 1, anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4657), 1, - sym_this, - STATE(4050), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, + STATE(2290), 1, sym_string, - STATE(4258), 1, + STATE(2296), 1, sym__primary_type, - STATE(5510), 1, + STATE(2297), 1, + sym__number, + STATE(5415), 1, sym_type_parameters, - STATE(5850), 1, + STATE(5756), 1, sym_formal_parameters, - STATE(5899), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4288), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4227), 7, + STATE(2320), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171840,7 +171695,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171854,75 +171709,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47906] = 32, + [47674] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4270), 1, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4272), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4280), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4221), 1, + anon_sym_typeof, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4282), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4286), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - anon_sym_SQUOTE, - ACTIONS(4296), 1, - sym_number, - ACTIONS(4302), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, + ACTIONS(4233), 1, anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4657), 1, - sym_this, - STATE(4050), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, + STATE(2290), 1, sym_string, - STATE(4258), 1, + STATE(2296), 1, sym__primary_type, - STATE(5510), 1, + STATE(2297), 1, + sym__number, + STATE(5415), 1, sym_type_parameters, - STATE(5850), 1, + STATE(5756), 1, sym_formal_parameters, - STATE(5899), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4288), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4226), 7, + STATE(3597), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171930,7 +171785,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171944,75 +171799,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48028] = 32, + [47796] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4368), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, anon_sym_typeof, - ACTIONS(4370), 1, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(4372), 1, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4374), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4376), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4382), 1, + ACTIONS(4247), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5698), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5475), 1, sym_type_parameters, - STATE(5897), 1, - sym_formal_parameters, - STATE(5905), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(6024), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3989), 7, + STATE(3450), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172020,7 +171875,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172034,7 +171889,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48150] = 32, + [47918] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -172043,21 +171898,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(1626), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -172067,42 +171920,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2170), 1, - anon_sym_new, - ACTIONS(2178), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(6068), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4266), 7, + STATE(5352), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172110,7 +171965,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172124,7 +171979,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48272] = 32, + [48040] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -172133,13 +171988,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -172149,50 +172004,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5081), 7, + STATE(3922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172200,7 +172055,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172214,7 +172069,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48394] = 32, + [48162] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -172223,13 +172078,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -172239,50 +172094,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4955), 7, + STATE(4686), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172290,7 +172145,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172304,141 +172159,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48516] = 8, + [48284] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(4663), 1, - anon_sym_in, - ACTIONS(4666), 1, - anon_sym_of, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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(3844), 21, + ACTIONS(564), 1, 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, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(700), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(702), 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, - [48590] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4270), 1, - anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4280), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(4282), 1, - anon_sym_QMARK, - ACTIONS(4284), 1, - anon_sym_AMP, - ACTIONS(4286), 1, - anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(4294), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4296), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(4302), 1, - anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, - anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4657), 1, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - STATE(4050), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, - sym_string, - STATE(4258), 1, + STATE(3917), 1, sym__primary_type, - STATE(5510), 1, + STATE(3920), 1, + sym_string, + STATE(3927), 1, + sym__number, + STATE(5569), 1, sym_type_parameters, - STATE(5850), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(5899), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4218), 7, + STATE(5352), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172446,7 +172235,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172460,14 +172249,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48712] = 6, + [48406] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1954), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(4535), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -172483,7 +172272,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, + ACTIONS(3846), 17, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -172501,7 +172290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -172524,75 +172313,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [48782] = 32, + [48476] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4368), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4382), 1, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, + anon_sym_readonly, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4000), 1, + STATE(3920), 1, + sym_string, + STATE(3926), 1, sym__primary_type, - STATE(4014), 1, + STATE(3927), 1, sym__number, - STATE(4023), 1, - sym_string, - STATE(5520), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5164), 7, + STATE(4982), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172600,7 +172389,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172614,165 +172403,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48904] = 32, + [48598] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4270), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4280), 1, - anon_sym_new, - ACTIONS(4282), 1, - anon_sym_QMARK, - ACTIONS(4284), 1, - anon_sym_AMP, - ACTIONS(4286), 1, - anon_sym_PIPE, - ACTIONS(4292), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(4294), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4296), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(4302), 1, - anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, - anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4657), 1, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - STATE(4050), 1, - sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, - sym_string, - STATE(4258), 1, - sym__primary_type, - STATE(5510), 1, - sym_type_parameters, - STATE(5850), 1, - sym_formal_parameters, - STATE(5899), 1, - sym_nested_identifier, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, - sym_true, - sym_false, - ACTIONS(4290), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4209), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4251), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [49026] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4270), 1, - anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4276), 1, - anon_sym_LPAREN, - ACTIONS(4278), 1, - anon_sym_LBRACK, - ACTIONS(4280), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4282), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4286), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - anon_sym_SQUOTE, - ACTIONS(4296), 1, - sym_number, - ACTIONS(4302), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, + ACTIONS(4557), 1, anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4657), 1, - sym_this, - STATE(4050), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, + STATE(3920), 1, sym_string, - STATE(4258), 1, + STATE(3926), 1, sym__primary_type, - STATE(5510), 1, + STATE(3927), 1, + sym__number, + STATE(5601), 1, sym_type_parameters, - STATE(5850), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(5899), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4207), 7, + STATE(3914), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172780,7 +172479,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172794,7 +172493,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49148] = 32, + [48720] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -172803,21 +172502,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, - anon_sym_AMP, - ACTIONS(1626), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -172827,42 +172518,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(2170), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5601), 1, sym_type_parameters, - STATE(6068), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3929), 7, + STATE(4828), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172870,7 +172569,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172884,75 +172583,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49270] = 32, + [48842] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2114), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3914), 1, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, + anon_sym_readonly, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5481), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5601), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4041), 7, + STATE(3929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172960,7 +172659,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172974,75 +172673,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49392] = 32, + [48964] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4110), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4116), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4118), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4120), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5570), 1, + STATE(5630), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6101), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4813), 7, + STATE(2335), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173050,7 +172749,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173064,7 +172763,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49514] = 32, + [49086] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -173073,13 +172772,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -173089,50 +172788,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4963), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173140,7 +172839,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173154,7 +172853,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49636] = 32, + [49208] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -173163,66 +172862,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, - anon_sym_AMP, - ACTIONS(794), 1, - anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, + anon_sym_readonly, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4536), 7, + STATE(4824), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173230,7 +172929,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173244,75 +172943,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49758] = 32, + [49330] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(4221), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4223), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4225), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4227), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4229), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4231), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4233), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5554), 1, + STATE(5415), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5974), 1, + STATE(5756), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2246), 7, + STATE(3591), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173320,7 +173019,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173334,14 +173033,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49880] = 6, + [49452] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1978), 1, - anon_sym_EQ, - ACTIONS(1980), 1, + ACTIONS(1924), 1, anon_sym_EQ_GT, - ACTIONS(1750), 15, + ACTIONS(1960), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -173357,12 +173056,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, + ACTIONS(1730), 17, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -173375,7 +173074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -173398,139 +173097,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [49950] = 6, + [49522] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1940), 1, - anon_sym_EQ_GT, - ACTIONS(2028), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(564), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 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(802), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(804), 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, - [50020] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, - anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(1920), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, anon_sym_new, - ACTIONS(4137), 1, - anon_sym_QMARK, - ACTIONS(4139), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4145), 1, - anon_sym_keyof, - STATE(2375), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5693), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5921), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2567), 7, + STATE(4496), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173538,7 +173173,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173552,75 +173187,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50142] = 32, + [49644] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4021), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4023), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4025), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4027), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4029), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4031), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5426), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2356), 7, + STATE(4759), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173628,7 +173263,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173642,75 +173277,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50264] = 32, + [49766] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4033), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, - anon_sym_typeof, - ACTIONS(4075), 1, - anon_sym_QMARK, - ACTIONS(4083), 1, - anon_sym_keyof, - STATE(2375), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2428), 1, - sym__number, - STATE(2489), 1, + STATE(3926), 1, sym__primary_type, - STATE(5520), 1, + STATE(3927), 1, + sym__number, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5268), 7, + STATE(4992), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173718,7 +173353,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173732,75 +173367,145 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50386] = 32, + [49888] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3854), 1, + anon_sym_LBRACK, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4645), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [49970] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(700), 1, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4226), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4228), 1, - anon_sym_STAR, - ACTIONS(4230), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4232), 1, + ACTIONS(1920), 1, anon_sym_typeof, - ACTIONS(4234), 1, - anon_sym_LPAREN, - ACTIONS(4236), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4240), 1, - anon_sym_QMARK, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4252), 1, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, sym_this, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3405), 1, + STATE(3920), 1, sym_string, - STATE(3460), 1, + STATE(3926), 1, sym__primary_type, - STATE(5520), 1, + STATE(3927), 1, + sym__number, + STATE(5664), 1, sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(6017), 1, sym_formal_parameters, - ACTIONS(4246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4254), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5121), 7, + STATE(4435), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173808,7 +173513,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173822,75 +173527,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50508] = 32, + [50092] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4226), 1, - sym_identifier, - ACTIONS(4228), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4230), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, - anon_sym_LPAREN, - ACTIONS(4236), 1, - anon_sym_LBRACK, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(4242), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(4244), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(4250), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, sym_number, - ACTIONS(4252), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(4256), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, - sym__primary_type, - STATE(3405), 1, + STATE(3920), 1, sym_string, - STATE(5469), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5569), 1, sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(5959), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(4246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4254), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3461), 7, + STATE(5028), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173898,7 +173603,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173912,139 +173617,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50630] = 6, + [50214] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 1, - anon_sym_EQ_GT, - ACTIONS(2152), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, - anon_sym_as, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2251), 1, anon_sym_LPAREN, + ACTIONS(2253), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - ACTIONS(1729), 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, - [50700] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1126), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1128), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4226), 1, - sym_identifier, - ACTIONS(4228), 1, - anon_sym_STAR, - ACTIONS(4230), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(4234), 1, - anon_sym_LPAREN, - ACTIONS(4236), 1, - anon_sym_LBRACK, - ACTIONS(4238), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4240), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4242), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4244), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4252), 1, - sym_this, - ACTIONS(4256), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, + ACTIONS(4591), 1, anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3329), 1, + STATE(3987), 1, sym__number, - STATE(3342), 1, + STATE(3990), 1, sym__primary_type, - STATE(3405), 1, + STATE(4002), 1, sym_string, - STATE(5469), 1, + STATE(5494), 1, sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(5959), 1, + STATE(5958), 1, sym_formal_parameters, - ACTIONS(4246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4254), 2, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3463), 7, + STATE(4774), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174052,7 +173693,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174066,75 +173707,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50822] = 32, + [50336] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1128), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4226), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4228), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4230), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4236), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4240), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4242), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4244), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4252), 1, - sym_this, - ACTIONS(4256), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, - sym__primary_type, - STATE(3405), 1, + STATE(2290), 1, sym_string, - STATE(5469), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5444), 1, sym_type_parameters, - STATE(5888), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5959), 1, + STATE(6067), 1, sym_formal_parameters, - ACTIONS(4246), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4254), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3473), 7, + STATE(2327), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174142,7 +173783,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174156,14 +173797,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50944] = 6, + [50458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 1, + ACTIONS(1996), 1, anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(2281), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -174179,7 +173820,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, + ACTIONS(1730), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -174197,7 +173838,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174220,7 +173861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [51014] = 32, + [50528] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -174229,66 +173870,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, - anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4493), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5931), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5077), 7, + STATE(4525), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174296,7 +173937,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174310,7 +173951,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51136] = 32, + [50650] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -174319,13 +173960,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -174335,50 +173988,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, - anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4493), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5433), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5931), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5073), 7, + STATE(5063), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174386,7 +174027,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174400,25 +174041,37 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51258] = 9, + [50772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3879), 1, - anon_sym_LT, - ACTIONS(4653), 1, + ACTIONS(1992), 1, anon_sym_EQ_GT, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(3848), 15, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, 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, @@ -174429,7 +174082,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(1713), 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, + [50842] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1956), 1, + anon_sym_EQ, + ACTIONS(1958), 1, + anon_sym_EQ_GT, + ACTIONS(3904), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 14, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 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, + [50916] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -174445,10 +174194,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(1730), 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(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -174467,7 +174235,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [51334] = 32, + [50986] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -174476,25 +174244,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -174504,38 +174268,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2125), 1, + anon_sym_new, + ACTIONS(2133), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5417), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5078), 7, + STATE(3929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174543,7 +174311,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174557,7 +174325,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51456] = 32, + [51108] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -174566,21 +174334,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -174596,36 +174364,36 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4555), 7, + STATE(4549), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174633,7 +174401,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174647,7 +174415,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51578] = 32, + [51230] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -174656,19 +174424,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -174678,44 +174452,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4571), 1, - anon_sym_typeof, - ACTIONS(4575), 1, - anon_sym_QMARK, - ACTIONS(4585), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3935), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5374), 7, + STATE(5053), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174723,7 +174491,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174737,75 +174505,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51700] = 32, + [51352] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4571), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, anon_sym_typeof, - ACTIONS(4573), 1, - anon_sym_new, - ACTIONS(4575), 1, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_PIPE, - ACTIONS(4583), 1, - anon_sym_readonly, - ACTIONS(4585), 1, + ACTIONS(4120), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5473), 1, + STATE(2348), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5780), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(5275), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174813,7 +174581,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174827,75 +174595,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51822] = 32, + [51474] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, + anon_sym_new, + ACTIONS(4186), 1, + anon_sym_QMARK, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4194), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(5444), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6067), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5094), 7, + STATE(3548), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174903,7 +174671,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174917,7 +174685,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51944] = 32, + [51596] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -174926,66 +174694,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4571), 1, - anon_sym_typeof, - ACTIONS(4573), 1, - anon_sym_new, - ACTIONS(4575), 1, - anon_sym_QMARK, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_PIPE, - ACTIONS(4583), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4585), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5473), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5780), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4351), 7, + STATE(4559), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174993,7 +174761,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175007,75 +174775,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52066] = 32, + [51718] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(4080), 1, + anon_sym_new, + ACTIONS(4082), 1, + anon_sym_QMARK, + ACTIONS(4084), 1, + anon_sym_AMP, + ACTIONS(4086), 1, + anon_sym_PIPE, + ACTIONS(4092), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, - anon_sym_typeof, - ACTIONS(4075), 1, - anon_sym_QMARK, - ACTIONS(4083), 1, + ACTIONS(4098), 1, + anon_sym_readonly, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(2375), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2428), 1, - sym__number, - STATE(2501), 1, + STATE(2296), 1, sym__primary_type, - STATE(5520), 1, + STATE(2297), 1, + sym__number, + STATE(5706), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(6138), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5268), 7, + STATE(2335), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175083,7 +174851,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175097,7 +174865,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52188] = 32, + [51840] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -175106,13 +174874,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -175122,50 +174902,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4571), 1, - anon_sym_typeof, - ACTIONS(4573), 1, - anon_sym_new, - ACTIONS(4575), 1, - anon_sym_QMARK, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_PIPE, - ACTIONS(4583), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4585), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5473), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5780), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4347), 7, + STATE(4929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175173,7 +174941,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175187,75 +174955,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52310] = 32, + [51962] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4571), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, anon_sym_typeof, - ACTIONS(4575), 1, + ACTIONS(4237), 1, + anon_sym_new, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4585), 1, + ACTIONS(4241), 1, + anon_sym_AMP, + ACTIONS(4243), 1, + anon_sym_PIPE, + ACTIONS(4245), 1, + anon_sym_readonly, + ACTIONS(4247), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3938), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(5475), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6024), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5374), 7, + STATE(3520), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175263,7 +175031,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175277,75 +175045,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52432] = 32, + [52084] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, + anon_sym_typeof, + ACTIONS(4342), 1, + anon_sym_new, + ACTIONS(4344), 1, + anon_sym_QMARK, + ACTIONS(4346), 1, + anon_sym_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3914), 1, + ACTIONS(4352), 1, + anon_sym_keyof, + STATE(2407), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, + STATE(2454), 1, sym__primary_type, - STATE(4023), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, sym_string, - STATE(5481), 1, + STATE(5411), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5845), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4008), 7, + STATE(3259), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175353,7 +175121,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175367,75 +175135,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52554] = 32, + [52206] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(4108), 1, + anon_sym_typeof, + ACTIONS(4110), 1, + anon_sym_new, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(4116), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(4118), 1, + anon_sym_readonly, + ACTIONS(4120), 1, anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(5630), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6101), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4300), 7, + STATE(3461), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175443,7 +175211,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175457,141 +175225,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52676] = 8, + [52328] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1970), 1, - anon_sym_EQ, - ACTIONS(1972), 1, - anon_sym_EQ_GT, - ACTIONS(3915), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(564), 1, 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, - [52750] = 32, - ACTIONS(3), 1, - sym_comment, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1126), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4226), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4228), 1, - anon_sym_STAR, - ACTIONS(4230), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, - anon_sym_LPAREN, - ACTIONS(4236), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4240), 1, - anon_sym_QMARK, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4252), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3405), 1, + STATE(3920), 1, sym_string, - STATE(3515), 1, + STATE(3926), 1, sym__primary_type, - STATE(5520), 1, + STATE(3927), 1, + sym__number, + STATE(5569), 1, sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(4246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4254), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5121), 7, + STATE(4976), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175599,7 +175301,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175613,75 +175315,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52872] = 32, + [52450] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4352), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5570), 1, + STATE(2593), 1, + sym_string, + STATE(5411), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5845), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3934), 7, + STATE(3273), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175689,7 +175391,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175703,75 +175405,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52994] = 32, + [52572] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4352), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(2454), 1, sym__primary_type, - STATE(2294), 1, + STATE(2455), 1, sym__number, - STATE(5699), 1, + STATE(2593), 1, + sym_string, + STATE(5411), 1, sym_type_parameters, - STATE(5725), 1, + STATE(5845), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(3953), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2246), 7, + STATE(2420), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175779,7 +175481,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175793,75 +175495,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53116] = 32, + [52694] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, + anon_sym_typeof, + ACTIONS(4110), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(4116), 1, anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4063), 1, + ACTIONS(4118), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(4120), 1, anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(5393), 1, + STATE(5630), 1, sym_type_parameters, - STATE(5831), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(6101), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2587), 7, + STATE(3464), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175869,7 +175571,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175883,75 +175585,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53238] = 32, + [52816] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, + anon_sym_typeof, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4063), 1, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(4247), 1, anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(5393), 1, + STATE(5475), 1, sym_type_parameters, - STATE(5831), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(6024), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2609), 7, + STATE(2327), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175959,7 +175661,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175973,75 +175675,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53360] = 32, + [52938] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4074), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4080), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4098), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5433), 1, + STATE(5706), 1, sym_type_parameters, - STATE(5931), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6138), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5071), 7, + STATE(2673), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176049,7 +175751,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176063,209 +175765,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53482] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3882), 1, - anon_sym_LT, - ACTIONS(4449), 1, - anon_sym_EQ_GT, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3848), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [53558] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2305), 1, - anon_sym_extends, - ACTIONS(2309), 1, - anon_sym_EQ, - ACTIONS(2311), 1, - anon_sym_EQ_GT, - ACTIONS(3915), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 13, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 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, - [53634] = 32, + [53060] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4080), 1, + anon_sym_new, + ACTIONS(4082), 1, + anon_sym_QMARK, + ACTIONS(4084), 1, + anon_sym_AMP, + ACTIONS(4086), 1, + anon_sym_PIPE, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, - anon_sym_typeof, - ACTIONS(4200), 1, - anon_sym_QMARK, - ACTIONS(4208), 1, + ACTIONS(4098), 1, + anon_sym_readonly, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2294), 1, - sym__number, - STATE(2357), 1, + STATE(2296), 1, sym__primary_type, - STATE(5520), 1, + STATE(2297), 1, + sym__number, + STATE(5706), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6052), 1, + STATE(6138), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5174), 7, + STATE(2770), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176273,7 +175841,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176287,75 +175855,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53756] = 32, + [53182] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4198), 1, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4202), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(4352), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(2454), 1, sym__primary_type, - STATE(2294), 1, + STATE(2455), 1, sym__number, - STATE(5600), 1, + STATE(2593), 1, + sym_string, + STATE(5411), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5845), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(3953), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2689), 7, + STATE(3275), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176363,7 +175931,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176377,75 +175945,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53878] = 32, + [53304] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4198), 1, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4202), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(4352), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(2454), 1, sym__primary_type, - STATE(2294), 1, + STATE(2455), 1, sym__number, - STATE(5600), 1, + STATE(2593), 1, + sym_string, + STATE(5411), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5845), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(3953), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2688), 7, + STATE(2563), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176453,7 +176021,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176467,75 +176035,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54000] = 32, + [53426] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3940), 1, + anon_sym_typeof, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, - anon_sym_typeof, - ACTIONS(4198), 1, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4202), 1, + ACTIONS(3950), 1, anon_sym_AMP, - ACTIONS(4204), 1, + ACTIONS(3952), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(2454), 1, sym__primary_type, - STATE(2294), 1, + STATE(2455), 1, sym__number, - STATE(5600), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5836), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(3953), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2356), 7, + STATE(2728), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176543,7 +176111,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176557,75 +176125,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54122] = 32, + [53548] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, + anon_sym_typeof, + ACTIONS(4110), 1, + anon_sym_new, + ACTIONS(4112), 1, + anon_sym_QMARK, + ACTIONS(4114), 1, + anon_sym_AMP, + ACTIONS(4116), 1, + anon_sym_PIPE, + ACTIONS(4118), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3914), 1, + ACTIONS(4120), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5481), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5630), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6009), 1, + STATE(6101), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4193), 7, + STATE(2359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176633,7 +176201,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176647,75 +176215,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54244] = 32, + [53670] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3940), 1, + anon_sym_typeof, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3946), 1, + anon_sym_new, + ACTIONS(3948), 1, + anon_sym_QMARK, + ACTIONS(3950), 1, + anon_sym_AMP, + ACTIONS(3952), 1, + anon_sym_PIPE, + ACTIONS(3958), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, - anon_sym_typeof, - ACTIONS(4200), 1, - anon_sym_QMARK, - ACTIONS(4208), 1, + ACTIONS(3964), 1, + anon_sym_readonly, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2294), 1, - sym__number, - STATE(2355), 1, + STATE(2454), 1, sym__primary_type, - STATE(5520), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5836), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5174), 7, + STATE(2563), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176723,7 +176291,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176737,75 +176305,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54366] = 32, + [53792] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(3940), 1, + anon_sym_typeof, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, - anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(3950), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(3952), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(2375), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2427), 1, + STATE(2454), 1, sym__primary_type, - STATE(2428), 1, + STATE(2455), 1, sym__number, - STATE(5418), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5836), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2587), 7, + STATE(2744), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176813,7 +176381,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176827,7 +176395,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54488] = 32, + [53914] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -176836,13 +176404,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -176852,50 +176432,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5900), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5092), 7, + STATE(4954), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176903,7 +176471,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176917,75 +176485,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54610] = 32, + [54036] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3868), 1, + anon_sym_LT, + ACTIONS(4435), 1, + anon_sym_EQ_GT, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3846), 15, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [54112] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4103), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4119), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4121), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4127), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4131), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4321), 1, + ACTIONS(4235), 1, anon_sym_typeof, - ACTIONS(4323), 1, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(4325), 1, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4327), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4329), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4331), 1, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4333), 1, + ACTIONS(4247), 1, anon_sym_keyof, - STATE(2634), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(2290), 1, sym_string, - STATE(5666), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5475), 1, sym_type_parameters, - STATE(5734), 1, - sym_formal_parameters, - STATE(6035), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4115), 2, + STATE(6024), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2906), 7, + STATE(2359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176993,7 +176628,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177007,75 +176642,143 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54732] = 32, + [54234] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4423), 1, + anon_sym_EQ, + ACTIONS(4459), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(4637), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_implements, + ACTIONS(3846), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 21, anon_sym_STAR, - ACTIONS(760), 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, + [54312] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4368), 1, - anon_sym_typeof, - ACTIONS(4370), 1, - anon_sym_new, - ACTIONS(4372), 1, - anon_sym_QMARK, - ACTIONS(4374), 1, - anon_sym_AMP, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4382), 1, - anon_sym_keyof, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5698), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5569), 1, sym_type_parameters, - STATE(5897), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(5905), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(2112), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4248), 7, + STATE(5088), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177083,7 +176786,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177097,75 +176800,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54854] = 32, + [54434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(1996), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, + 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, + anon_sym_extends, + ACTIONS(1713), 22, anon_sym_STAR, - ACTIONS(760), 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, + [54504] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4368), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(4370), 1, - anon_sym_new, - ACTIONS(4372), 1, - anon_sym_QMARK, - ACTIONS(4374), 1, - anon_sym_AMP, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4382), 1, - anon_sym_keyof, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, + STATE(3917), 1, sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5698), 1, + STATE(3927), 1, + sym__number, + STATE(5569), 1, sym_type_parameters, - STATE(5897), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(5905), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(2112), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3994), 7, + STATE(5386), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177173,7 +176940,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177187,75 +176954,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54976] = 32, + [54626] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4368), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4370), 1, - anon_sym_new, - ACTIONS(4372), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4374), 1, - anon_sym_AMP, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4380), 1, - anon_sym_readonly, - ACTIONS(4382), 1, + ACTIONS(4352), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(2455), 1, sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2593), 1, sym_string, - STATE(5698), 1, + STATE(2600), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5897), 1, - sym_formal_parameters, - STATE(5905), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4025), 7, + STATE(5301), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177263,7 +177030,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177277,75 +177044,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55098] = 32, + [54748] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1128), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4226), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4228), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4230), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4236), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, + anon_sym_typeof, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4240), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4242), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4244), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4252), 1, - sym_this, - ACTIONS(4256), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, + ACTIONS(4352), 1, anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, + STATE(2454), 1, sym__primary_type, - STATE(3405), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, sym_string, - STATE(5469), 1, + STATE(5411), 1, sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(5959), 1, + STATE(5845), 1, sym_formal_parameters, - ACTIONS(4246), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4254), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3309), 7, + STATE(3227), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177353,7 +177120,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177367,75 +177134,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55220] = 32, + [54870] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, - anon_sym_AMP, - ACTIONS(794), 1, - anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, sym_this, - ACTIONS(1936), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, + anon_sym_typeof, + ACTIONS(4342), 1, + anon_sym_new, + ACTIONS(4344), 1, + anon_sym_QMARK, + ACTIONS(4346), 1, + anon_sym_AMP, + ACTIONS(4348), 1, + anon_sym_PIPE, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4352), 1, + anon_sym_keyof, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5640), 1, + STATE(2593), 1, + sym_string, + STATE(5411), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5845), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4469), 7, + STATE(3228), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177443,7 +177210,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177457,75 +177224,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55342] = 32, + [54992] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1128), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4226), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4228), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4230), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4236), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, + anon_sym_typeof, + ACTIONS(4342), 1, anon_sym_new, - ACTIONS(4240), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4242), 1, + ACTIONS(4346), 1, anon_sym_AMP, - ACTIONS(4244), 1, + ACTIONS(4348), 1, anon_sym_PIPE, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4252), 1, - sym_this, - ACTIONS(4256), 1, + ACTIONS(4350), 1, anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, + ACTIONS(4352), 1, anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, + STATE(2454), 1, sym__primary_type, - STATE(3405), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, sym_string, - STATE(5469), 1, + STATE(5411), 1, sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(5959), 1, + STATE(5845), 1, sym_formal_parameters, - ACTIONS(4246), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4254), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3338), 7, + STATE(2604), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177533,7 +177300,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177547,75 +177314,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55464] = 32, + [55114] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4340), 1, anon_sym_typeof, - ACTIONS(4457), 1, - anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4344), 1, anon_sym_QMARK, - ACTIONS(4461), 1, - anon_sym_AMP, - ACTIONS(4463), 1, - anon_sym_PIPE, - ACTIONS(4467), 1, - anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4352), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(2455), 1, sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2593), 1, sym_string, - STATE(5548), 1, + STATE(2605), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5989), 1, sym_nested_identifier, - STATE(6130), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4908), 7, + STATE(5301), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177623,7 +177390,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177637,75 +177404,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55586] = 32, + [55236] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1128), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4226), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4228), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4230), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4236), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, - anon_sym_QMARK, - ACTIONS(4242), 1, - anon_sym_AMP, - ACTIONS(4244), 1, - anon_sym_PIPE, - ACTIONS(4250), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4252), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4256), 1, - anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - STATE(3121), 1, + ACTIONS(4235), 1, + anon_sym_typeof, + ACTIONS(4239), 1, + anon_sym_QMARK, + ACTIONS(4247), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3329), 1, + STATE(2290), 1, + sym_string, + STATE(2297), 1, sym__number, - STATE(3342), 1, + STATE(2358), 1, sym__primary_type, - STATE(3405), 1, - sym_string, - STATE(5469), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5888), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5959), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(4246), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4254), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3357), 7, + STATE(5288), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177713,7 +177480,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177727,75 +177494,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55708] = 32, + [55358] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4065), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4069), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4135), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4139), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4141), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4143), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(5693), 1, + STATE(5444), 1, sym_type_parameters, - STATE(5921), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(6067), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3565), 7, + STATE(2335), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177803,7 +177570,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177817,7 +177584,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55830] = 32, + [55480] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -177826,13 +177593,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1090), 1, + anon_sym_AMP, + ACTIONS(1092), 1, + anon_sym_PIPE, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -177842,50 +177617,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4571), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(4573), 1, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(4575), 1, - anon_sym_QMARK, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_PIPE, - ACTIONS(4583), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(4585), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5473), 1, + STATE(5417), 1, sym_type_parameters, - STATE(5780), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3934), 7, + STATE(4385), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177893,7 +177660,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177907,75 +177674,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55952] = 32, + [55602] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4226), 1, - sym_identifier, - ACTIONS(4228), 1, - anon_sym_STAR, - ACTIONS(4230), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(1940), 1, + anon_sym_EQ_GT, + ACTIONS(2028), 1, + anon_sym_EQ, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4236), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1713), 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, + [55672] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(4242), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(4244), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(4250), 1, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, sym_number, - ACTIONS(4252), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(4256), 1, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2125), 1, + anon_sym_new, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, - sym__primary_type, - STATE(3405), 1, + STATE(3920), 1, sym_string, - STATE(5469), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5417), 1, sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(5959), 1, + STATE(5960), 1, sym_formal_parameters, - ACTIONS(4246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4254), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3386), 7, + STATE(4313), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177983,7 +177814,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177997,97 +177828,71 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56074] = 32, + [55794] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4226), 1, - sym_identifier, - ACTIONS(4228), 1, - anon_sym_STAR, - ACTIONS(4230), 1, - anon_sym_LBRACE, - ACTIONS(4232), 1, - anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(1958), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4236), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4238), 1, - anon_sym_new, - ACTIONS(4240), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1713), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4242), 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(4244), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4250), 1, - sym_number, - ACTIONS(4252), 1, - sym_this, - ACTIONS(4256), 1, - anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, - sym_nested_type_identifier, - STATE(3329), 1, - sym__number, - STATE(3342), 1, - sym__primary_type, - STATE(3405), 1, - sym_string, - STATE(5469), 1, - sym_type_parameters, - STATE(5888), 1, - sym_nested_identifier, - STATE(5959), 1, - sym_formal_parameters, - ACTIONS(4246), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4254), 2, - sym_true, - sym_false, - ACTIONS(4248), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3437), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3352), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [56196] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [55864] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -178096,13 +177901,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1090), 1, + anon_sym_AMP, + ACTIONS(1092), 1, + anon_sym_PIPE, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -178112,50 +177925,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4571), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(4573), 1, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(4575), 1, - anon_sym_QMARK, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_PIPE, - ACTIONS(4583), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(4585), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5473), 1, + STATE(5417), 1, sym_type_parameters, - STATE(5780), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4329), 7, + STATE(3922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178163,7 +177968,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178177,7 +177982,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56318] = 32, + [55986] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -178186,25 +177991,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -178214,38 +178017,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4974), 7, + STATE(5386), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178253,7 +178058,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178267,75 +178072,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56440] = 32, + [56108] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4595), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4108), 1, anon_sym_typeof, - ACTIONS(4599), 1, - anon_sym_new, - ACTIONS(4601), 1, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(4603), 1, - anon_sym_AMP, - ACTIONS(4605), 1, - anon_sym_PIPE, - ACTIONS(4607), 1, - anon_sym_readonly, - ACTIONS(4609), 1, + ACTIONS(4120), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5608), 1, + STATE(2358), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5752), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4331), 7, + STATE(5275), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178343,7 +178148,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178357,75 +178162,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56562] = 32, + [56230] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4571), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4160), 1, anon_sym_typeof, - ACTIONS(4573), 1, - anon_sym_new, - ACTIONS(4575), 1, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_PIPE, - ACTIONS(4583), 1, - anon_sym_readonly, - ACTIONS(4585), 1, + ACTIONS(4172), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, sym_string, - STATE(3937), 1, + STATE(2600), 1, sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5473), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5780), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3929), 7, + STATE(5276), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178433,7 +178238,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178447,75 +178252,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56684] = 32, + [56352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(1990), 1, + anon_sym_EQ, + ACTIONS(1992), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1713), 22, anon_sym_STAR, - ACTIONS(636), 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, + [56422] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5433), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(5931), 1, + STATE(5958), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4657), 7, + STATE(4579), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178523,7 +178392,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178537,7 +178406,71 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56806] = 32, + [56544] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 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(1713), 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, + [56614] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -178546,66 +178479,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(1624), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(1626), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(1640), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2170), 1, - anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5664), 1, sym_type_parameters, - STATE(6068), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4503), 7, + STATE(4531), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178613,7 +178546,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178627,75 +178560,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56928] = 32, + [56736] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, - anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(4080), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4098), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(2375), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(5418), 1, + STATE(5706), 1, sym_type_parameters, - STATE(6047), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + STATE(6138), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3258), 7, + STATE(2327), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178703,7 +178636,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178717,7 +178650,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57050] = 32, + [56858] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -178726,66 +178659,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4571), 1, - anon_sym_typeof, - ACTIONS(4573), 1, - anon_sym_new, - ACTIONS(4575), 1, - anon_sym_QMARK, - ACTIONS(4577), 1, - anon_sym_AMP, - ACTIONS(4579), 1, - anon_sym_PIPE, - ACTIONS(4583), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4585), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5473), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5780), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178793,7 +178726,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178807,75 +178740,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57172] = 32, + [56980] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4479), 1, - anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(2277), 1, anon_sym_readonly, - ACTIONS(4493), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5433), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5483), 1, sym_type_parameters, - STATE(5931), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6019), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5076), 7, + STATE(4077), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178883,7 +178816,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178897,75 +178830,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57294] = 32, + [57102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(1994), 1, + anon_sym_EQ, + ACTIONS(1996), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, + 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, + anon_sym_extends, + ACTIONS(1713), 22, anon_sym_STAR, - ACTIONS(740), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(742), 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(744), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(760), 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, + [57172] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2114), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3914), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, + anon_sym_readonly, + ACTIONS(4368), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5481), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5435), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5941), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4259), 7, + STATE(4990), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178973,7 +178970,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178987,75 +178984,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57416] = 32, + [57294] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(740), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(742), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(744), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(762), 1, anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2255), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(2277), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5520), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5483), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6019), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5062), 7, + STATE(3985), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179063,7 +179060,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179077,75 +179074,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57538] = 32, + [57416] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5570), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5958), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4913), 7, + STATE(4849), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179153,7 +179150,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179167,42 +179164,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57660] = 12, + [57538] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3850), 1, - anon_sym_LBRACK, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(1940), 1, anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1982), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -179218,10 +179187,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(1730), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1713), 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, @@ -179229,7 +179218,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, @@ -179237,75 +179228,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [57742] = 32, + [57608] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4270), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4272), 1, - anon_sym_LBRACE, - ACTIONS(4274), 1, - anon_sym_typeof, - ACTIONS(4276), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(4278), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4280), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4282), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4284), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4286), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4292), 1, - anon_sym_DQUOTE, - ACTIONS(4294), 1, - anon_sym_SQUOTE, - ACTIONS(4296), 1, - sym_number, - ACTIONS(4302), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4306), 1, - anon_sym_infer, - ACTIONS(4308), 1, + ACTIONS(4557), 1, anon_sym_keyof, - ACTIONS(4310), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4655), 1, - sym_identifier, - ACTIONS(4657), 1, - sym_this, - STATE(4050), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4249), 1, - sym__number, - STATE(4252), 1, + STATE(3920), 1, sym_string, - STATE(4258), 1, + STATE(3926), 1, sym__primary_type, - STATE(5510), 1, + STATE(3927), 1, + sym__number, + STATE(5601), 1, sym_type_parameters, - STATE(5850), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(5899), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4288), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4300), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4290), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4201), 7, + STATE(4984), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179313,7 +179304,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4251), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179327,142 +179318,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57864] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(4653), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3848), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [57940] = 32, + [57730] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2114), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3914), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, + anon_sym_readonly, + ACTIONS(4368), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5481), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5435), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5941), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4260), 7, + STATE(4991), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179470,7 +179394,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179484,7 +179408,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58062] = 32, + [57852] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -179493,25 +179417,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -179521,38 +179433,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5601), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4989), 7, + STATE(4994), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179560,7 +179484,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179574,7 +179498,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58184] = 32, + [57974] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -179583,66 +179507,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(1936), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5664), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5057), 7, + STATE(3929), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58096] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, + anon_sym_new, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4014), 1, + anon_sym_AMP, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4032), 1, + anon_sym_readonly, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, + anon_sym_keyof, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, + sym_nested_type_identifier, + STATE(4219), 1, + sym__number, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, + STATE(5570), 1, + sym_type_parameters, + STATE(5833), 1, + sym_nested_identifier, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4249), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179650,7 +179664,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179664,75 +179678,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58306] = 32, + [58218] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4196), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4198), 1, - anon_sym_new, - ACTIONS(4200), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4202), 1, - anon_sym_AMP, - ACTIONS(4204), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - anon_sym_readonly, - ACTIONS(4208), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5600), 1, + STATE(2348), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(3953), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2615), 7, + STATE(5297), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179740,7 +179754,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179754,75 +179768,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58428] = 32, + [58340] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4022), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(4024), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(4026), 1, sym_number, - ACTIONS(1914), 1, + ACTIONS(4038), 1, + anon_sym_keyof, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4647), 1, sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4649), 1, sym_this, - ACTIONS(2972), 1, + STATE(4036), 1, + sym_nested_type_identifier, + STATE(4208), 1, + sym__primary_type, + STATE(4219), 1, + sym__number, + STATE(4255), 1, + sym_string, + STATE(5569), 1, + sym_type_parameters, + STATE(5833), 1, + sym_nested_identifier, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4018), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5289), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(4248), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [58462] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4032), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(4219), 1, sym__number, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, STATE(5570), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5833), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4954), 7, + STATE(4210), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179830,7 +179934,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179844,75 +179948,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58550] = 32, + [58584] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4571), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4573), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4575), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4577), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4579), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4583), 1, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4032), 1, anon_sym_readonly, - ACTIONS(4585), 1, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(4219), 1, sym__number, - STATE(5473), 1, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, + STATE(5570), 1, sym_type_parameters, - STATE(5780), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5833), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4334), 7, + STATE(4211), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179920,7 +180024,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179934,75 +180038,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58672] = 32, + [58706] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4372), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4374), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4376), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4378), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4380), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4384), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4386), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5699), 1, + STATE(5634), 1, sym_type_parameters, - STATE(5725), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3380), 7, + STATE(4558), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180010,7 +180114,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180024,7 +180128,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58794] = 32, + [58828] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -180033,21 +180137,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(1624), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(1626), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1640), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -180057,42 +180165,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2170), 1, - anon_sym_new, - ACTIONS(2178), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6068), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4892), 7, + STATE(4359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180100,7 +180204,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180114,7 +180218,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58916] = 32, + [58950] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -180123,66 +180227,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(1624), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(1626), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(1640), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2170), 1, - anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5664), 1, sym_type_parameters, - STATE(6068), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3934), 7, + STATE(4565), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180190,7 +180294,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180204,7 +180308,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59038] = 32, + [59072] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -180213,21 +180317,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(1624), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(1626), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(1640), 1, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -180237,42 +180341,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(2170), 1, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5417), 1, sym_type_parameters, - STATE(6068), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4371), 7, + STATE(4386), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180280,7 +180384,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180294,7 +180398,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59160] = 32, + [59194] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -180303,66 +180407,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5900), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4778), 7, + STATE(4855), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180370,7 +180474,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180384,75 +180488,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59282] = 32, + [59316] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, - sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4119), 1, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4125), 1, + ACTIONS(4032), 1, anon_sym_readonly, - ACTIONS(4127), 1, + ACTIONS(4036), 1, anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4038), 1, anon_sym_keyof, - ACTIONS(4131), 1, + ACTIONS(4040), 1, anon_sym_LBRACE_PIPE, - STATE(2634), 1, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, sym_nested_type_identifier, - STATE(3012), 1, + STATE(4219), 1, sym__number, - STATE(3023), 1, + STATE(4243), 1, sym__primary_type, - STATE(3034), 1, + STATE(4255), 1, sym_string, - STATE(5404), 1, + STATE(5570), 1, sym_type_parameters, - STATE(6035), 1, + STATE(5833), 1, sym_nested_identifier, - STATE(6065), 1, + STATE(5923), 1, sym_formal_parameters, - ACTIONS(4115), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4030), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3298), 7, + STATE(4227), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180460,7 +180564,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180474,75 +180578,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59404] = 32, + [59438] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1294), 1, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4095), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - anon_sym_typeof, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4109), 1, - anon_sym_QMARK, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4129), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4368), 1, anon_sym_keyof, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - STATE(2634), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2933), 1, - sym__primary_type, - STATE(3012), 1, - sym__number, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5520), 1, + STATE(3927), 1, + sym__number, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5276), 7, + STATE(5255), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180550,7 +180654,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180564,75 +180668,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59526] = 32, + [59560] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, - sym_identifier, - ACTIONS(4097), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, - anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4111), 1, - anon_sym_AMP, - ACTIONS(4113), 1, - anon_sym_PIPE, - ACTIONS(4119), 1, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4125), 1, - anon_sym_readonly, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4038), 1, anon_sym_keyof, - ACTIONS(4131), 1, + ACTIONS(4040), 1, anon_sym_LBRACE_PIPE, - STATE(2634), 1, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, + STATE(4197), 1, sym__primary_type, - STATE(3034), 1, + STATE(4219), 1, + sym__number, + STATE(4255), 1, sym_string, - STATE(5404), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6035), 1, + STATE(5833), 1, sym_nested_identifier, - STATE(6065), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(4115), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4030), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2924), 7, + STATE(5289), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180640,7 +180744,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180654,142 +180758,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59648] = 9, + [59682] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3879), 1, - anon_sym_LT, - ACTIONS(4647), 1, - anon_sym_EQ_GT, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(3848), 15, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(564), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(800), 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(802), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(804), 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, - [59724] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(1920), 1, anon_sym_typeof, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(1926), 1, anon_sym_new, - ACTIONS(4109), 1, - anon_sym_QMARK, - ACTIONS(4111), 1, - anon_sym_AMP, - ACTIONS(4113), 1, - anon_sym_PIPE, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4125), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4129), 1, - anon_sym_keyof, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - STATE(2634), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5404), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5664), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6065), 1, + STATE(6017), 1, sym_formal_parameters, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3184), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180797,7 +180834,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180811,7 +180848,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59846] = 32, + [59804] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -180820,66 +180857,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5900), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5058), 7, + STATE(3914), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180887,7 +180924,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180901,7 +180938,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59968] = 32, + [59926] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -180910,66 +180947,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1640), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(1936), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3938), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5664), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5371), 7, + STATE(4756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180977,7 +181014,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180991,75 +181028,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60090] = 32, + [60048] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4471), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4473), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4477), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4483), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4485), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5570), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6115), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5011), 7, + STATE(4231), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181067,7 +181104,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181081,7 +181118,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60212] = 32, + [60170] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -181090,25 +181127,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -181118,38 +181143,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4368), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5435), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4374), 7, + STATE(3922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181157,7 +181194,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181171,7 +181208,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60334] = 32, + [60292] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -181180,25 +181217,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -181208,38 +181233,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4372), 1, + anon_sym_typeof, + ACTIONS(4374), 1, + anon_sym_new, + ACTIONS(4376), 1, + anon_sym_QMARK, + ACTIONS(4378), 1, + anon_sym_AMP, + ACTIONS(4380), 1, + anon_sym_PIPE, + ACTIONS(4384), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4386), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5634), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5872), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5095), 7, + STATE(3929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181247,7 +181284,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181261,75 +181298,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60456] = 32, + [60414] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4033), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4137), 1, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4145), 1, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, + anon_sym_readonly, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2428), 1, - sym__number, - STATE(2501), 1, + STATE(3926), 1, sym__primary_type, - STATE(5520), 1, + STATE(3927), 1, + sym__number, + STATE(5435), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5205), 7, + STATE(4875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181337,7 +181374,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181351,100 +181388,10 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60578] = 32, + [60536] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, - anon_sym_typeof, - ACTIONS(4212), 1, - anon_sym_new, - ACTIONS(4214), 1, - anon_sym_QMARK, - ACTIONS(4216), 1, - anon_sym_AMP, - ACTIONS(4218), 1, - anon_sym_PIPE, - ACTIONS(4220), 1, - anon_sym_readonly, - ACTIONS(4222), 1, - anon_sym_keyof, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5448), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3589), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [60700] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, + ACTIONS(564), 1, anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, @@ -181454,15 +181401,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -181472,44 +181419,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4392), 1, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4396), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4406), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3938), 1, + STATE(3917), 1, sym__primary_type, - STATE(3942), 1, + STATE(3920), 1, + sym_string, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5362), 7, + STATE(5255), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181517,7 +181464,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181531,75 +181478,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60822] = 32, + [60658] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4471), 1, anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(4473), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(4477), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(4483), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(4485), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(3987), 1, sym__number, - STATE(5448), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6057), 1, + STATE(6115), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3574), 7, + STATE(3985), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181607,7 +181554,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181621,75 +181568,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60944] = 32, + [60780] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4471), 1, + anon_sym_typeof, + ACTIONS(4473), 1, + anon_sym_new, + ACTIONS(4475), 1, + anon_sym_QMARK, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4485), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5520), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6115), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5039), 7, + STATE(3988), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181697,7 +181644,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181711,75 +181658,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61066] = 32, + [60902] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5448), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, + STATE(5941), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2271), 7, + STATE(3914), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181787,7 +181734,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181801,7 +181748,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61188] = 32, + [61024] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -181810,13 +181757,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -181826,50 +181773,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4699), 7, + STATE(4626), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181877,7 +181824,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181891,7 +181838,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61310] = 32, + [61146] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -181900,13 +181847,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -181916,50 +181863,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4394), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4396), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4398), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4400), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4406), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5900), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4940), 7, + STATE(3929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181967,7 +181914,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181981,142 +181928,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61432] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_EQ_GT, - ACTIONS(3915), 1, - anon_sym_LBRACK, - ACTIONS(2305), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 14, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 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, - [61508] = 32, + [61268] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(4108), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4110), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4112), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4114), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4116), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4118), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4120), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5554), 1, + STATE(5630), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5974), 1, + STATE(6101), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3524), 7, + STATE(2320), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182124,7 +182004,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182138,139 +182018,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61630] = 6, + [61390] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 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(1729), 22, + ACTIONS(564), 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, - [61700] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1294), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4097), 1, - anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - anon_sym_typeof, - ACTIONS(4103), 1, - anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4125), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4368), 1, anon_sym_keyof, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - STATE(2634), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(3920), 1, sym_string, - STATE(5404), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5435), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6065), 1, + STATE(5941), 1, sym_formal_parameters, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3222), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182278,7 +182094,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182292,7 +182108,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61822] = 32, + [61512] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -182301,66 +182117,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4689), 7, + STATE(5077), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182368,7 +182184,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182382,7 +182198,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61944] = 32, + [61634] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -182391,25 +182207,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -182419,38 +182223,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4368), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5435), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4912), 7, + STATE(4630), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182458,7 +182274,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182472,75 +182288,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62066] = 32, + [61756] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4471), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4473), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4477), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4483), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4485), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(3987), 1, sym__number, - STATE(5554), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, STATE(5974), 1, + sym_nested_identifier, + STATE(6115), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2199), 7, + STATE(3981), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182548,7 +182364,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182562,77 +182378,108 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62188] = 5, + [61878] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 22, + ACTIONS(724), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(740), 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(742), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(744), 1, anon_sym_PIPE, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2277), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, + sym_nested_type_identifier, + STATE(3987), 1, + sym__number, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5483), 1, + sym_type_parameters, + STATE(5974), 1, + sym_nested_identifier, + STATE(6019), 1, + sym_formal_parameters, + ACTIONS(2275), 2, + sym_true, + sym_false, + ACTIONS(3374), 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, - [62256] = 6, + ACTIONS(2265), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3988), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3992), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [62000] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, + ACTIONS(3893), 1, anon_sym_EQ_GT, - ACTIONS(2148), 1, + ACTIONS(4106), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(4651), 1, + anon_sym_in, + ACTIONS(4654), 1, + anon_sym_of, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -182648,7 +182495,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, + ACTIONS(3846), 16, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -182665,11 +182512,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -182689,75 +182534,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [62326] = 32, + [62074] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, + ACTIONS(1920), 1, anon_sym_typeof, - ACTIONS(4041), 1, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3917), 1, + sym__primary_type, + STATE(3920), 1, + sym_string, + STATE(3927), 1, + sym__number, + STATE(5569), 1, + sym_type_parameters, + STATE(6051), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5338), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [62196] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3980), 1, + anon_sym_typeof, + ACTIONS(3982), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(3984), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(3986), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(3988), 1, anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4063), 1, + ACTIONS(3992), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(3996), 1, anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5393), 1, + STATE(5463), 1, sym_type_parameters, - STATE(5831), 1, + STATE(5995), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2596), 7, + STATE(4791), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182765,7 +182700,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182779,7 +182714,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62448] = 32, + [62318] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -182788,66 +182723,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(1936), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5664), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4933), 7, + STATE(4478), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182855,7 +182790,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182869,68 +182804,68 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62570] = 32, + [62440] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, ACTIONS(636), 1, anon_sym_infer, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4095), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4109), 1, - anon_sym_QMARK, - ACTIONS(4119), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(4121), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(4129), 1, - anon_sym_keyof, - ACTIONS(4131), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - STATE(2634), 1, + ACTIONS(4160), 1, + anon_sym_typeof, + ACTIONS(4164), 1, + anon_sym_QMARK, + ACTIONS(4172), 1, + anon_sym_keyof, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2853), 1, - sym__primary_type, - STATE(3012), 1, + STATE(2455), 1, sym__number, - STATE(3034), 1, + STATE(2593), 1, sym_string, - STATE(5520), 1, + STATE(2605), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(6035), 1, + STATE(5989), 1, sym_nested_identifier, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(4115), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, @@ -182945,7 +182880,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182959,7 +182894,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62692] = 32, + [62562] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -182968,21 +182903,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(834), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -182998,36 +182933,36 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4465), 7, + STATE(3922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183035,7 +182970,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183049,7 +182984,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62814] = 32, + [62684] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -183058,66 +182993,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5570), 1, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5900), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(5338), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183125,7 +183060,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183139,75 +183074,141 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62936] = 32, + [62806] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(3076), 1, + anon_sym_in, + ACTIONS(4656), 1, + anon_sym_of, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 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(1713), 21, anon_sym_STAR, - ACTIONS(602), 1, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(604), 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(606), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 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, + [62880] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2289), 1, + ACTIONS(3940), 1, anon_sym_typeof, - ACTIONS(2291), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(2299), 1, + ACTIONS(3948), 1, + anon_sym_QMARK, + ACTIONS(3950), 1, + anon_sym_AMP, + ACTIONS(3952), 1, + anon_sym_PIPE, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, + anon_sym_keyof, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5581), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(5841), 1, + STATE(5836), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4370), 7, + STATE(2486), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183215,7 +183216,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183229,75 +183230,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63058] = 32, + [63002] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(4392), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4160), 1, anon_sym_typeof, - ACTIONS(4396), 1, + ACTIONS(4162), 1, + anon_sym_new, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4406), 1, + ACTIONS(4166), 1, + anon_sym_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE, + ACTIONS(4170), 1, + anon_sym_readonly, + ACTIONS(4172), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3935), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5520), 1, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5778), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5362), 7, + STATE(2604), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183305,7 +183306,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183319,75 +183320,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63180] = 32, + [63124] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5699), 1, + STATE(5444), 1, sym_type_parameters, - STATE(5725), 1, - sym_formal_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(3953), 2, + STATE(6067), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2199), 7, + STATE(3581), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183395,7 +183396,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183409,144 +183410,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63302] = 11, + [63246] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, - anon_sym_EQ, - ACTIONS(4386), 1, - anon_sym_EQ_GT, - ACTIONS(4641), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4644), 1, - anon_sym_DOT, - ACTIONS(4670), 1, - anon_sym_LBRACE, - STATE(5257), 1, - sym_type_arguments, - ACTIONS(4672), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3848), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [63382] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(4065), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(4069), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(4160), 1, anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(4162), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(4166), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(4170), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(4172), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2427), 1, + STATE(2454), 1, sym__primary_type, - STATE(2428), 1, + STATE(2455), 1, sym__number, - STATE(5418), 1, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5778), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2596), 7, + STATE(3551), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183554,7 +183486,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183568,71 +183500,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63504] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2275), 1, - anon_sym_EQ, - ACTIONS(2277), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 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, - 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(1729), 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, - [63574] = 32, + [63368] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -183649,17 +183517,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(1720), 1, anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -183669,38 +183537,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3935), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5363), 7, + STATE(4785), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183708,7 +183576,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183722,75 +183590,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63696] = 32, + [63490] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4160), 1, + anon_sym_typeof, + ACTIONS(4162), 1, + anon_sym_new, + ACTIONS(4164), 1, + anon_sym_QMARK, + ACTIONS(4166), 1, + anon_sym_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE, + ACTIONS(4170), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4172), 1, + anon_sym_keyof, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5520), 1, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5778), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5037), 7, + STATE(3552), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183798,7 +183666,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183812,75 +183680,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63818] = 32, + [63612] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, - sym_identifier, - ACTIONS(4035), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4133), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4471), 1, anon_sym_typeof, - ACTIONS(4135), 1, - anon_sym_new, - ACTIONS(4137), 1, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4139), 1, - anon_sym_AMP, - ACTIONS(4141), 1, - anon_sym_PIPE, - ACTIONS(4143), 1, - anon_sym_readonly, - ACTIONS(4145), 1, + ACTIONS(4485), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3987), 1, + sym__number, + STATE(4002), 1, sym_string, - STATE(2427), 1, + STATE(4019), 1, sym__primary_type, - STATE(2428), 1, - sym__number, - STATE(5693), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5921), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3569), 7, + STATE(5267), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183888,7 +183756,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183902,75 +183770,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63940] = 32, + [63734] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4471), 1, anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(4473), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(4477), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(4483), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(4485), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(3987), 1, sym__number, - STATE(5448), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6057), 1, + STATE(6115), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2246), 7, + STATE(4246), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183978,7 +183846,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183992,75 +183860,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64062] = 32, + [63856] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4471), 1, + anon_sym_typeof, + ACTIONS(4473), 1, + anon_sym_new, + ACTIONS(4475), 1, + anon_sym_QMARK, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4485), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5520), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6115), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4992), 7, + STATE(4364), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184068,7 +183936,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184082,75 +183950,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64184] = 32, + [63978] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4471), 1, + anon_sym_typeof, + ACTIONS(4473), 1, + anon_sym_new, + ACTIONS(4475), 1, + anon_sym_QMARK, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4485), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5520), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6115), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(4242), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184158,7 +184026,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184172,75 +184040,209 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64306] = 32, + [64100] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, - anon_sym_DQUOTE, - ACTIONS(1296), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2281), 1, + anon_sym_EQ, + ACTIONS(2283), 1, + anon_sym_EQ_GT, + ACTIONS(2309), 1, + anon_sym_extends, + ACTIONS(3904), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4095), 1, - sym_identifier, - ACTIONS(4097), 1, + anon_sym_SLASH, + anon_sym_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, + [64176] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3880), 1, + anon_sym_LT, + ACTIONS(4435), 1, + anon_sym_EQ_GT, + STATE(2602), 1, + sym_type_arguments, + ACTIONS(3846), 15, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, + [64252] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4471), 1, + anon_sym_typeof, + ACTIONS(4473), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4477), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4479), 1, anon_sym_PIPE, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4125), 1, + ACTIONS(4483), 1, anon_sym_readonly, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4485), 1, anon_sym_keyof, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - STATE(2634), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3012), 1, + STATE(3987), 1, sym__number, - STATE(3023), 1, + STATE(3990), 1, sym__primary_type, - STATE(3034), 1, + STATE(4002), 1, sym_string, - STATE(5404), 1, + STATE(5613), 1, sym_type_parameters, - STATE(6035), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6065), 1, + STATE(6115), 1, sym_formal_parameters, - ACTIONS(4115), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2852), 7, + STATE(4025), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184248,7 +184250,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184262,75 +184264,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64428] = 32, + [64374] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(3969), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, + ACTIONS(4160), 1, anon_sym_typeof, - ACTIONS(4023), 1, + ACTIONS(4162), 1, + anon_sym_new, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4031), 1, + ACTIONS(4166), 1, + anon_sym_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE, + ACTIONS(4170), 1, + anon_sym_readonly, + ACTIONS(4172), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2294), 1, - sym__number, - STATE(2355), 1, + STATE(2454), 1, sym__primary_type, - STATE(5520), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5778), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5259), 7, + STATE(2563), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184338,7 +184340,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184352,75 +184354,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64550] = 32, + [64496] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4160), 1, + anon_sym_typeof, + ACTIONS(4162), 1, + anon_sym_new, + ACTIONS(4164), 1, + anon_sym_QMARK, + ACTIONS(4166), 1, + anon_sym_AMP, + ACTIONS(4168), 1, + anon_sym_PIPE, + ACTIONS(4170), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4172), 1, + anon_sym_keyof, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5520), 1, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5778), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(3592), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184428,7 +184430,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184442,75 +184444,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64672] = 32, + [64618] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(4065), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(4069), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(4160), 1, anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(4162), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(4166), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(4170), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(4172), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2426), 1, - sym_string, - STATE(2427), 1, + STATE(2454), 1, sym__primary_type, - STATE(2428), 1, + STATE(2455), 1, sym__number, - STATE(5418), 1, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5778), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5989), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2567), 7, + STATE(2486), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184518,7 +184520,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184532,75 +184534,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64794] = 32, + [64740] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, - sym_identifier, - ACTIONS(4035), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4471), 1, anon_sym_typeof, - ACTIONS(4073), 1, - anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4077), 1, - anon_sym_AMP, - ACTIONS(4079), 1, - anon_sym_PIPE, - ACTIONS(4081), 1, - anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(4485), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3987), 1, + sym__number, + STATE(4002), 1, sym_string, - STATE(2427), 1, + STATE(4003), 1, sym__primary_type, - STATE(2428), 1, - sym__number, - STATE(5418), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6047), 1, - sym_formal_parameters, - STATE(6126), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3254), 7, + STATE(5267), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184608,7 +184610,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184622,75 +184624,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64916] = 32, + [64862] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4160), 1, + anon_sym_typeof, + ACTIONS(4162), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4166), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4125), 1, + ACTIONS(4170), 1, anon_sym_readonly, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4172), 1, anon_sym_keyof, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - STATE(2634), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, + STATE(2454), 1, sym__primary_type, - STATE(3034), 1, + STATE(2455), 1, + sym__number, + STATE(2593), 1, sym_string, - STATE(5404), 1, + STATE(5693), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6065), 1, + STATE(5778), 1, sym_formal_parameters, - ACTIONS(4115), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3304), 7, + STATE(2420), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184698,7 +184700,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184712,75 +184714,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65038] = 32, + [64984] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, + ACTIONS(4160), 1, anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(4162), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(4166), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(4170), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(4172), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(2454), 1, sym__primary_type, - STATE(2294), 1, + STATE(2455), 1, sym__number, - STATE(5448), 1, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, + STATE(5778), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3591), 7, + STATE(3583), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184788,7 +184790,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184802,75 +184804,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65160] = 32, + [65106] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3893), 1, + anon_sym_EQ_GT, + ACTIONS(4106), 1, + anon_sym_EQ, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 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(3842), 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, + [65176] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, + ACTIONS(4074), 1, anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(4080), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(4119), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4121), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4125), 1, + ACTIONS(4098), 1, anon_sym_readonly, - ACTIONS(4127), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4102), 1, anon_sym_keyof, - ACTIONS(4131), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - STATE(2634), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(2290), 1, sym_string, - STATE(5404), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5706), 1, sym_type_parameters, - STATE(6035), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6065), 1, + STATE(6138), 1, sym_formal_parameters, - ACTIONS(4115), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2881), 7, + STATE(2320), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184878,7 +184944,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184892,75 +184958,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65282] = 32, + [65298] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1126), 1, - anon_sym_DQUOTE, - ACTIONS(1128), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4226), 1, - sym_identifier, - ACTIONS(4228), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(4230), 1, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(4232), 1, + ACTIONS(2249), 1, anon_sym_typeof, - ACTIONS(4234), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(4236), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(4238), 1, + ACTIONS(2255), 1, anon_sym_new, - ACTIONS(4240), 1, - anon_sym_QMARK, - ACTIONS(4242), 1, - anon_sym_AMP, - ACTIONS(4244), 1, - anon_sym_PIPE, - ACTIONS(4250), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(4252), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(4256), 1, + ACTIONS(2277), 1, anon_sym_readonly, - ACTIONS(4258), 1, - anon_sym_infer, - ACTIONS(4260), 1, - anon_sym_keyof, - ACTIONS(4262), 1, - anon_sym_LBRACE_PIPE, - STATE(3121), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3329), 1, + STATE(3987), 1, sym__number, - STATE(3342), 1, + STATE(3990), 1, sym__primary_type, - STATE(3405), 1, + STATE(4002), 1, sym_string, - STATE(5469), 1, + STATE(5483), 1, sym_type_parameters, - STATE(5888), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(5959), 1, + STATE(6019), 1, sym_formal_parameters, - ACTIONS(4246), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4254), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(4248), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3351), 7, + STATE(4217), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184968,7 +185034,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3352), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184982,30 +185048,27 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65404] = 12, + [65420] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 1, + ACTIONS(2028), 1, anon_sym_EQ, - ACTIONS(1744), 1, + ACTIONS(2030), 1, anon_sym_EQ_GT, - ACTIONS(2305), 1, - anon_sym_extends, - ACTIONS(3035), 1, - anon_sym_QMARK, - ACTIONS(3915), 1, + ACTIONS(3904), 1, anon_sym_LBRACK, - ACTIONS(4264), 1, - anon_sym_RPAREN, - ACTIONS(1733), 2, + ACTIONS(2309), 2, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3918), 2, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 12, + ACTIONS(1730), 14, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -185016,7 +185079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185032,13 +185095,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(1713), 19, 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, @@ -185052,75 +185115,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [65486] = 32, + [65496] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(3958), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(3960), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(3966), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(3970), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(4160), 1, anon_sym_typeof, - ACTIONS(4184), 1, + ACTIONS(4162), 1, anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4164), 1, anon_sym_QMARK, - ACTIONS(4188), 1, + ACTIONS(4166), 1, anon_sym_AMP, - ACTIONS(4190), 1, + ACTIONS(4168), 1, anon_sym_PIPE, - ACTIONS(4192), 1, + ACTIONS(4170), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4172), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(2454), 1, sym__primary_type, - STATE(2294), 1, + STATE(2455), 1, sym__number, - STATE(5396), 1, + STATE(2593), 1, + sym_string, + STATE(5693), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(5778), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3563), 7, + STATE(3593), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185128,7 +185191,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185142,75 +185205,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65608] = 32, + [65618] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, ACTIONS(760), 1, anon_sym_infer, + ACTIONS(762), 1, + anon_sym_keyof, ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_typeof, - ACTIONS(4457), 1, - anon_sym_new, - ACTIONS(4459), 1, - anon_sym_QMARK, - ACTIONS(4461), 1, - anon_sym_AMP, - ACTIONS(4463), 1, - anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(2277), 1, anon_sym_readonly, - ACTIONS(4469), 1, - anon_sym_keyof, - STATE(3914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(3987), 1, sym__number, - STATE(4015), 1, + STATE(3990), 1, sym__primary_type, - STATE(4023), 1, + STATE(4002), 1, sym_string, - STATE(5548), 1, + STATE(5483), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6130), 1, + STATE(6019), 1, sym_formal_parameters, - ACTIONS(2112), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4710), 7, + STATE(4216), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185218,7 +185281,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185232,75 +185295,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65730] = 32, + [65740] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4074), 1, + anon_sym_typeof, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, - anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(4080), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(4082), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(4084), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(4086), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4098), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4102), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5448), 1, + STATE(5706), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6057), 1, + STATE(6138), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2199), 7, + STATE(2760), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185308,7 +185371,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185322,75 +185385,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65852] = 32, + [65862] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(4184), 1, - anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4188), 1, - anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_PIPE, - ACTIONS(4192), 1, - anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4261), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5396), 1, + STATE(2358), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5813), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2271), 7, + STATE(5304), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185398,7 +185461,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185412,75 +185475,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65974] = 32, + [65984] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4249), 1, + anon_sym_typeof, + ACTIONS(4251), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4125), 1, + ACTIONS(4259), 1, anon_sym_readonly, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4261), 1, anon_sym_keyof, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - STATE(2634), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(2290), 1, sym_string, - STATE(5404), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5683), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6065), 1, + STATE(5725), 1, sym_formal_parameters, - ACTIONS(4115), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2906), 7, + STATE(2359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185488,7 +185551,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185502,75 +185565,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66096] = 32, + [66106] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(4072), 1, + anon_sym_LBRACE, + ACTIONS(4076), 1, + anon_sym_LPAREN, + ACTIONS(4078), 1, + anon_sym_LBRACK, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(4251), 1, anon_sym_new, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4253), 1, + anon_sym_QMARK, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4259), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4261), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3937), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(5683), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5725), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4299), 7, + STATE(3512), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185578,7 +185641,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185592,75 +185655,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66218] = 32, + [66228] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1294), 1, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(1296), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4095), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4097), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4099), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4101), 1, - anon_sym_typeof, - ACTIONS(4103), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4105), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4107), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4249), 1, + anon_sym_typeof, + ACTIONS(4251), 1, anon_sym_new, - ACTIONS(4109), 1, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4111), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(4113), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4119), 1, - sym_number, - ACTIONS(4121), 1, - sym_this, - ACTIONS(4125), 1, + ACTIONS(4259), 1, anon_sym_readonly, - ACTIONS(4127), 1, - anon_sym_infer, - ACTIONS(4129), 1, + ACTIONS(4261), 1, anon_sym_keyof, - ACTIONS(4131), 1, - anon_sym_LBRACE_PIPE, - STATE(2634), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3012), 1, - sym__number, - STATE(3023), 1, - sym__primary_type, - STATE(3034), 1, + STATE(2290), 1, sym_string, - STATE(5404), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5683), 1, sym_type_parameters, - STATE(6035), 1, - sym_nested_identifier, - STATE(6065), 1, + STATE(5725), 1, sym_formal_parameters, - ACTIONS(4115), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4123), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4117), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3289), 7, + STATE(3510), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185668,7 +185731,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3032), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185682,75 +185745,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66340] = 32, + [66350] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4368), 1, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(4370), 1, - anon_sym_new, - ACTIONS(4372), 1, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4374), 1, - anon_sym_AMP, - ACTIONS(4376), 1, - anon_sym_PIPE, - ACTIONS(4380), 1, - anon_sym_readonly, - ACTIONS(4382), 1, + ACTIONS(4261), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(2290), 1, + sym_string, + STATE(2297), 1, sym__number, - STATE(4015), 1, + STATE(2348), 1, sym__primary_type, - STATE(4023), 1, - sym_string, - STATE(5698), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5897), 1, - sym_formal_parameters, - STATE(5905), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4206), 7, + STATE(5304), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185758,7 +185821,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185772,75 +185835,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66462] = 32, + [66472] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(636), 1, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4471), 1, anon_sym_typeof, - ACTIONS(4214), 1, + ACTIONS(4473), 1, + anon_sym_new, + ACTIONS(4475), 1, anon_sym_QMARK, - ACTIONS(4222), 1, + ACTIONS(4477), 1, + anon_sym_AMP, + ACTIONS(4479), 1, + anon_sym_PIPE, + ACTIONS(4483), 1, + anon_sym_readonly, + ACTIONS(4485), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2294), 1, + STATE(3987), 1, sym__number, - STATE(2357), 1, + STATE(3990), 1, sym__primary_type, - STATE(5520), 1, + STATE(4002), 1, + sym_string, + STATE(5613), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6052), 1, + STATE(6115), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5229), 7, + STATE(4224), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185848,7 +185911,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185862,75 +185925,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66584] = 32, + [66594] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(4021), 1, + ACTIONS(4251), 1, anon_sym_new, - ACTIONS(4023), 1, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4025), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(4027), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4029), 1, + ACTIONS(4259), 1, anon_sym_readonly, - ACTIONS(4031), 1, + ACTIONS(4261), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5426), 1, + STATE(5683), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, + STATE(5725), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3605), 7, + STATE(2335), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185938,7 +186001,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185952,75 +186015,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66706] = 32, + [66716] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4251), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4259), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4261), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5548), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5683), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, + STATE(5725), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4528), 7, + STATE(3455), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186028,7 +186091,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186042,75 +186105,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66828] = 32, + [66838] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3893), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 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(3842), 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, + [66908] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(616), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(4035), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(4065), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(4069), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(4251), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(4255), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(4257), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(4259), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(4261), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(2290), 1, sym_string, - STATE(2427), 1, + STATE(2296), 1, sym__primary_type, - STATE(2428), 1, + STATE(2297), 1, sym__number, - STATE(5418), 1, + STATE(5683), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5725), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(4053), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3238), 7, + STATE(2327), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186118,7 +186245,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186132,75 +186259,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66950] = 32, + [67030] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4354), 1, + anon_sym_typeof, + ACTIONS(4358), 1, + anon_sym_new, + ACTIONS(4360), 1, + anon_sym_QMARK, + ACTIONS(4362), 1, + anon_sym_AMP, + ACTIONS(4364), 1, + anon_sym_PIPE, + ACTIONS(4366), 1, anon_sym_readonly, - STATE(3914), 1, + ACTIONS(4368), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4004), 1, + STATE(3920), 1, + sym_string, + STATE(3926), 1, sym__primary_type, - STATE(4014), 1, + STATE(3927), 1, sym__number, - STATE(4023), 1, - sym_string, - STATE(5520), 1, + STATE(5435), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5941), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5215), 7, + STATE(4934), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186208,7 +186335,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186222,75 +186349,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67072] = 32, + [67152] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4249), 1, + anon_sym_typeof, + ACTIONS(4251), 1, + anon_sym_new, + ACTIONS(4253), 1, + anon_sym_QMARK, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4259), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3914), 1, + ACTIONS(4261), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5481), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5683), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5725), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4058), 7, + STATE(2320), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186298,7 +186425,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186312,75 +186439,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67194] = 32, + [67274] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1956), 1, + anon_sym_EQ, + ACTIONS(1958), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 17, + 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, + anon_sym_extends, + ACTIONS(1713), 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, + [67344] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3969), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(4172), 1, + ACTIONS(4251), 1, + anon_sym_new, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4180), 1, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4259), 1, + anon_sym_readonly, + ACTIONS(4261), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2294), 1, - sym__number, - STATE(2355), 1, + STATE(2296), 1, sym__primary_type, - STATE(5520), 1, + STATE(2297), 1, + sym__number, + STATE(5683), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5725), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5274), 7, + STATE(3440), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186388,7 +186579,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186402,32 +186593,32 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67316] = 32, + [67466] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, ACTIONS(4182), 1, anon_sym_typeof, @@ -186443,34 +186634,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_readonly, ACTIONS(4194), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, + STATE(2296), 1, sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5396), 1, + STATE(5444), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(5813), 1, + STATE(6067), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2246), 7, + STATE(3578), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186478,7 +186669,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186492,75 +186683,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67438] = 32, + [67588] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, ACTIONS(760), 1, anon_sym_infer, + ACTIONS(762), 1, + anon_sym_keyof, ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_typeof, - ACTIONS(4457), 1, - anon_sym_new, - ACTIONS(4459), 1, - anon_sym_QMARK, - ACTIONS(4461), 1, - anon_sym_AMP, - ACTIONS(4463), 1, - anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(2277), 1, anon_sym_readonly, - ACTIONS(4469), 1, - anon_sym_keyof, - STATE(3914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(3987), 1, sym__number, - STATE(4015), 1, + STATE(3990), 1, sym__primary_type, - STATE(4023), 1, + STATE(4002), 1, sym_string, - STATE(5548), 1, + STATE(5483), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6130), 1, + STATE(6019), 1, sym_formal_parameters, - ACTIONS(2112), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4025), 7, + STATE(4047), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186568,7 +186759,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186582,118 +186773,31 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67560] = 32, + [67710] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, - anon_sym_typeof, - ACTIONS(4184), 1, - anon_sym_new, - ACTIONS(4186), 1, - anon_sym_QMARK, - ACTIONS(4188), 1, - anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_PIPE, - ACTIONS(4192), 1, - anon_sym_readonly, - ACTIONS(4194), 1, - anon_sym_keyof, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5396), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3560), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [67682] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1974), 1, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4658), 1, anon_sym_EQ, - ACTIONS(1976), 1, + ACTIONS(4660), 1, anon_sym_EQ_GT, - ACTIONS(2305), 1, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 3, anon_sym_COMMA, - ACTIONS(3915), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3918), 3, + ACTIONS(3860), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 14, - sym__automatic_semicolon, + ACTIONS(3846), 12, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_RPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -186703,7 +186807,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186719,11 +186823,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(3842), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -186739,75 +186842,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [67758] = 32, + [67790] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4184), 1, - anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4188), 1, - anon_sym_AMP, - ACTIONS(4190), 1, - anon_sym_PIPE, - ACTIONS(4192), 1, - anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3026), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5396), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2199), 7, + STATE(5331), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186815,7 +186918,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186829,75 +186932,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67880] = 32, + [67912] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4326), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4330), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5699), 1, + STATE(5677), 1, sym_type_parameters, - STATE(5725), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(3953), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2356), 7, + STATE(3027), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186905,7 +187008,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186919,75 +187022,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68002] = 32, + [68034] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4326), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4330), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5699), 1, + STATE(5677), 1, sym_type_parameters, - STATE(5725), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(3953), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3395), 7, + STATE(2841), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186995,7 +187098,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187009,75 +187112,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68124] = 32, + [68156] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(814), 1, + anon_sym_DQUOTE, + ACTIONS(816), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4124), 1, + anon_sym_STAR, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4324), 1, + anon_sym_typeof, + ACTIONS(4326), 1, + anon_sym_new, + ACTIONS(4328), 1, + anon_sym_QMARK, + ACTIONS(4330), 1, + anon_sym_AMP, + ACTIONS(4332), 1, + anon_sym_PIPE, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3914), 1, + ACTIONS(4336), 1, + anon_sym_keyof, + STATE(2637), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3002), 1, sym_string, - STATE(5481), 1, + STATE(3012), 1, + sym__primary_type, + STATE(3051), 1, + sym__number, + STATE(5677), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4150), 2, + sym_true, + sym_false, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4070), 7, + STATE(2834), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187085,7 +187188,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187099,75 +187202,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68246] = 32, + [68278] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4021), 1, - anon_sym_new, - ACTIONS(4023), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4025), 1, - anon_sym_AMP, - ACTIONS(4027), 1, - anon_sym_PIPE, - ACTIONS(4029), 1, - anon_sym_readonly, - ACTIONS(4031), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3030), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5426), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3607), 7, + STATE(5331), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187175,7 +187278,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187189,141 +187292,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68368] = 8, + [68400] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2275), 1, - anon_sym_EQ, - ACTIONS(2277), 1, - anon_sym_EQ_GT, - ACTIONS(3915), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, anon_sym_AMP, + ACTIONS(744), 1, anon_sym_PIPE, - ACTIONS(1746), 13, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 20, - anon_sym_STAR, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2277), 1, + anon_sym_readonly, + ACTIONS(2970), 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, + STATE(3916), 1, + sym_nested_type_identifier, + STATE(3987), 1, + sym__number, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5483), 1, + sym_type_parameters, + STATE(5974), 1, + sym_nested_identifier, + STATE(6019), 1, + sym_formal_parameters, + ACTIONS(2275), 2, + sym_true, + sym_false, + ACTIONS(3374), 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, - [68442] = 32, + ACTIONS(2265), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3981), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3992), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [68522] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4186), 1, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4194), 1, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, + anon_sym_readonly, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2294), 1, - sym__number, - STATE(2357), 1, + STATE(3926), 1, sym__primary_type, - STATE(5520), 1, + STATE(3927), 1, + sym__number, + STATE(5601), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5294), 7, + STATE(5009), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187331,7 +187458,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187345,75 +187472,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68564] = 32, + [68644] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4184), 1, + ACTIONS(4326), 1, anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4188), 1, + ACTIONS(4330), 1, anon_sym_AMP, - ACTIONS(4190), 1, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(4192), 1, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5396), 1, + STATE(5677), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3583), 7, + STATE(3056), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187421,7 +187548,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187435,75 +187562,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68686] = 32, + [68766] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4184), 1, + ACTIONS(4326), 1, anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4188), 1, + ACTIONS(4330), 1, anon_sym_AMP, - ACTIONS(4190), 1, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(4192), 1, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5396), 1, + STATE(5677), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3586), 7, + STATE(3013), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187511,7 +187638,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187525,75 +187652,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68808] = 32, + [68888] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(4326), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(4330), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5448), 1, + STATE(5677), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3568), 7, + STATE(3063), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187601,7 +187728,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187615,75 +187742,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68930] = 32, + [69010] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, - sym_identifier, - ACTIONS(4035), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(4037), 1, - anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, - anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(4057), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, sym_number, - ACTIONS(4059), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(4063), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, - anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5393), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5831), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2567), 7, + STATE(5010), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187691,7 +187818,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187705,75 +187832,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69052] = 32, + [69132] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4326), 1, anon_sym_new, - ACTIONS(4172), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4174), 1, + ACTIONS(4330), 1, anon_sym_AMP, - ACTIONS(4176), 1, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(4178), 1, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(4180), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5699), 1, + STATE(5677), 1, sym_type_parameters, - STATE(5725), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5753), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(3953), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3402), 7, + STATE(3032), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187781,7 +187908,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187795,75 +187922,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69174] = 32, + [69254] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(4326), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(4330), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(4332), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(4334), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5448), 1, + STATE(5677), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3575), 7, + STATE(3016), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187871,7 +187998,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187885,165 +188012,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69296] = 32, + [69376] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3973), 1, - anon_sym_typeof, - ACTIONS(3975), 1, - anon_sym_new, - ACTIONS(3977), 1, - anon_sym_QMARK, - ACTIONS(3979), 1, - anon_sym_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE, - ACTIONS(3985), 1, - anon_sym_readonly, - ACTIONS(3989), 1, - anon_sym_keyof, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5453), 1, - sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, - sym_formal_parameters, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4714), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [69418] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(3936), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(3940), 1, + anon_sym_typeof, + ACTIONS(3942), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(3944), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, - anon_sym_typeof, - ACTIONS(4212), 1, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(4214), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(4216), 1, + ACTIONS(3950), 1, anon_sym_AMP, - ACTIONS(4218), 1, + ACTIONS(3952), 1, anon_sym_PIPE, - ACTIONS(4220), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(4222), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, + STATE(2454), 1, sym__primary_type, - STATE(2294), 1, + STATE(2455), 1, sym__number, - STATE(5448), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6057), 1, + STATE(5836), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(3962), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2356), 7, + STATE(2420), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188051,7 +188088,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188065,7 +188102,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69540] = 32, + [69498] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -188074,13 +188111,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -188090,50 +188127,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3973), 1, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(3975), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(3977), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(3979), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(3981), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(3985), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(3989), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5453), 1, + STATE(5435), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(5941), 1, sym_formal_parameters, - ACTIONS(1770), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(4933), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188141,7 +188178,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188155,255 +188192,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69662] = 32, + [69620] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, + ACTIONS(1982), 1, + anon_sym_EQ, + ACTIONS(1984), 1, + anon_sym_EQ_GT, + ACTIONS(2309), 1, + anon_sym_COMMA, + ACTIONS(3904), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(1730), 14, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, - anon_sym_typeof, - ACTIONS(4023), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4031), 1, - anon_sym_keyof, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2294), 1, - sym__number, - STATE(2357), 1, - sym__primary_type, - STATE(5520), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, - sym_formal_parameters, - ACTIONS(3953), 2, + 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(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(5259), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [69784] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [69696] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(4184), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4186), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4188), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4190), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4192), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4194), 1, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(3987), 1, sym__number, - STATE(5396), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5813), 1, + STATE(5958), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2356), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [69906] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4210), 1, - anon_sym_typeof, - ACTIONS(4214), 1, - anon_sym_QMARK, - ACTIONS(4222), 1, - anon_sym_keyof, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2294), 1, - sym__number, - STATE(2355), 1, - sym__primary_type, - STATE(5520), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, - sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5229), 7, + STATE(4672), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188411,7 +188335,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188425,7 +188349,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70028] = 32, + [69818] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -188434,25 +188358,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -188462,38 +188374,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4617), 1, + anon_sym_typeof, + ACTIONS(4619), 1, + anon_sym_new, + ACTIONS(4621), 1, + anon_sym_QMARK, + ACTIONS(4623), 1, + anon_sym_AMP, + ACTIONS(4625), 1, + anon_sym_PIPE, + ACTIONS(4629), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4631), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5469), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5790), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3929), 7, + STATE(4456), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188501,7 +188425,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188515,7 +188439,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70150] = 32, + [69940] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -188532,17 +188456,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(1720), 1, anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -188552,38 +188476,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3938), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5363), 7, + STATE(4384), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188591,7 +188515,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188605,7 +188529,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70272] = 32, + [70062] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -188614,13 +188538,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -188630,50 +188554,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3973), 1, + ACTIONS(4617), 1, anon_sym_typeof, - ACTIONS(3975), 1, + ACTIONS(4619), 1, anon_sym_new, - ACTIONS(3977), 1, + ACTIONS(4621), 1, anon_sym_QMARK, - ACTIONS(3979), 1, + ACTIONS(4623), 1, anon_sym_AMP, - ACTIONS(3981), 1, + ACTIONS(4625), 1, anon_sym_PIPE, - ACTIONS(3985), 1, + ACTIONS(4629), 1, anon_sym_readonly, - ACTIONS(3989), 1, + ACTIONS(4631), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5453), 1, + STATE(5469), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(5790), 1, sym_formal_parameters, - ACTIONS(1770), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3929), 7, + STATE(4367), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188681,7 +188605,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188695,75 +188619,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70394] = 32, + [70184] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3969), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4182), 1, + ACTIONS(4249), 1, anon_sym_typeof, - ACTIONS(4186), 1, + ACTIONS(4251), 1, + anon_sym_new, + ACTIONS(4253), 1, anon_sym_QMARK, - ACTIONS(4194), 1, + ACTIONS(4255), 1, + anon_sym_AMP, + ACTIONS(4257), 1, + anon_sym_PIPE, + ACTIONS(4259), 1, + anon_sym_readonly, + ACTIONS(4261), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2294), 1, - sym__number, - STATE(2355), 1, + STATE(2296), 1, sym__primary_type, - STATE(5520), 1, + STATE(2297), 1, + sym__number, + STATE(5683), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5725), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(5874), 1, + sym_nested_identifier, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5294), 7, + STATE(3430), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188771,7 +188695,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188785,165 +188709,140 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70516] = 32, + [70306] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(3893), 1, + anon_sym_EQ_GT, + ACTIONS(4106), 1, + anon_sym_EQ, + ACTIONS(4662), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3846), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(2090), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2110), 1, - sym_this, - ACTIONS(2972), 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(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4368), 1, - anon_sym_typeof, - ACTIONS(4370), 1, - anon_sym_new, - ACTIONS(4372), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4374), 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(4376), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4380), 1, - anon_sym_readonly, - ACTIONS(4382), 1, - anon_sym_keyof, - STATE(3914), 1, - sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, - sym_string, - STATE(5698), 1, - sym_type_parameters, - STATE(5897), 1, - sym_formal_parameters, - STATE(5905), 1, - sym_nested_identifier, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4276), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4019), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [70638] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [70378] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3969), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4168), 1, + ACTIONS(4324), 1, anon_sym_typeof, - ACTIONS(4172), 1, + ACTIONS(4326), 1, + anon_sym_new, + ACTIONS(4328), 1, anon_sym_QMARK, - ACTIONS(4180), 1, + ACTIONS(4330), 1, + anon_sym_AMP, + ACTIONS(4332), 1, + anon_sym_PIPE, + ACTIONS(4334), 1, + anon_sym_readonly, + ACTIONS(4336), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2294), 1, - sym__number, - STATE(2357), 1, + STATE(3012), 1, sym__primary_type, - STATE(5520), 1, + STATE(3051), 1, + sym__number, + STATE(5677), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5274), 7, + STATE(3014), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188951,7 +188850,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188965,75 +188864,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70760] = 32, + [70500] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, - anon_sym_AMP, - ACTIONS(4400), 1, - anon_sym_PIPE, - ACTIONS(4404), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3987), 1, + sym__number, + STATE(4002), 1, sym_string, - STATE(3937), 1, + STATE(4019), 1, sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5570), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4916), 7, + STATE(5279), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189041,7 +188940,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189055,7 +188954,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70882] = 32, + [70622] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -189064,19 +188963,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -189086,44 +188991,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4479), 1, - anon_sym_typeof, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4493), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3935), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5250), 7, + STATE(5076), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189131,7 +189030,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189145,75 +189044,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71004] = 32, + [70744] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5548), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5444), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6130), 1, + STATE(6067), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3994), 7, + STATE(2359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189221,7 +189120,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189235,165 +189134,206 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71126] = 32, + [70866] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(2870), 1, + anon_sym_COLON, + ACTIONS(3893), 1, + anon_sym_EQ_GT, + ACTIONS(4106), 1, + anon_sym_EQ, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 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(3842), 22, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(700), 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(702), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 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, + [70938] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2109), 1, + anon_sym_EQ, + ACTIONS(2111), 1, + anon_sym_EQ_GT, + ACTIONS(3904), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 13, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 20, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5520), 1, - sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 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_CARET, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4973), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [71248] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [71012] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, + ACTIONS(740), 1, anon_sym_QMARK, - ACTIONS(700), 1, + ACTIONS(742), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(744), 1, anon_sym_PIPE, - ACTIONS(718), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(762), 1, anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2249), 1, anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2255), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(2277), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5520), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5483), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6019), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4945), 7, + STATE(4056), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189401,7 +189341,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189415,7 +189355,72 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71370] = 32, + [71134] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2870), 1, + anon_sym_COLON, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 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(1713), 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, + [71206] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -189432,17 +189437,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(1720), 1, anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -189452,38 +189457,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4975), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189491,7 +189496,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189505,75 +189510,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71492] = 32, + [71328] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3973), 1, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(3975), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(3977), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(3979), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(3981), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(3985), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(3989), 1, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5453), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(5958), 1, sym_formal_parameters, - ACTIONS(1770), 2, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4683), 7, + STATE(4733), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189581,7 +189586,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189595,7 +189600,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71614] = 32, + [71450] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -189604,13 +189609,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -189620,50 +189637,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3973), 1, - anon_sym_typeof, - ACTIONS(3975), 1, - anon_sym_new, - ACTIONS(3977), 1, - anon_sym_QMARK, - ACTIONS(3979), 1, - anon_sym_AMP, - ACTIONS(3981), 1, - anon_sym_PIPE, - ACTIONS(3985), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(3989), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5453), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(1770), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3934), 7, + STATE(5092), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189671,7 +189676,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189685,397 +189690,27 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71736] = 32, + [71572] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, - anon_sym_typeof, - ACTIONS(4342), 1, - anon_sym_QMARK, - ACTIONS(4350), 1, - anon_sym_keyof, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2294), 1, - sym__number, - STATE(2357), 1, - sym__primary_type, - STATE(5520), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(5195), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [71858] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, - anon_sym_AMP, - ACTIONS(1626), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2168), 1, - anon_sym_typeof, - ACTIONS(2170), 1, - anon_sym_new, - ACTIONS(2178), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5451), 1, - sym_type_parameters, - STATE(6068), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4264), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [71980] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, - anon_sym_typeof, - ACTIONS(4021), 1, - anon_sym_new, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4025), 1, - anon_sym_AMP, - ACTIONS(4027), 1, - anon_sym_PIPE, - ACTIONS(4029), 1, - anon_sym_readonly, - ACTIONS(4031), 1, - anon_sym_keyof, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5426), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2199), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [72102] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3939), 1, - anon_sym_typeof, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1960), 1, + anon_sym_EQ, + ACTIONS(1962), 1, + anon_sym_EQ_GT, + ACTIONS(2309), 1, + anon_sym_COMMA, + ACTIONS(3904), 2, anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_new, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3951), 1, anon_sym_PIPE, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3963), 1, - anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, - anon_sym_keyof, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5477), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3438), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [72224] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(1730), 14, 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, @@ -190086,37 +189721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3844), 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, - [72294] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1956), 1, - anon_sym_EQ, - ACTIONS(1958), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190132,30 +189737,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 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(1729), 22, + ACTIONS(1713), 19, 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, @@ -190163,9 +189749,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, @@ -190173,14 +189757,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [72364] = 6, + [71648] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 1, - anon_sym_EQ, - ACTIONS(1954), 1, + ACTIONS(2878), 1, + anon_sym_COLON, + ACTIONS(3893), 1, anon_sym_EQ_GT, - ACTIONS(1750), 15, + ACTIONS(4106), 1, + anon_sym_EQ, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -190196,7 +189782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, + ACTIONS(3846), 16, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -190213,8 +189799,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -190237,75 +189822,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [72434] = 32, + [71720] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4071), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4354), 1, anon_sym_typeof, - ACTIONS(4073), 1, + ACTIONS(4358), 1, anon_sym_new, - ACTIONS(4075), 1, + ACTIONS(4360), 1, anon_sym_QMARK, - ACTIONS(4077), 1, + ACTIONS(4362), 1, anon_sym_AMP, - ACTIONS(4079), 1, + ACTIONS(4364), 1, anon_sym_PIPE, - ACTIONS(4081), 1, + ACTIONS(4366), 1, anon_sym_readonly, - ACTIONS(4083), 1, + ACTIONS(4368), 1, anon_sym_keyof, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5418), 1, + STATE(5435), 1, sym_type_parameters, - STATE(6047), 1, + STATE(5941), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3201), 7, + STATE(4817), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190313,7 +189898,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190327,143 +189912,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72556] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4423), 1, - anon_sym_EQ, - ACTIONS(4429), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(4672), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3848), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 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, - [72634] = 32, + [71842] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(616), 1, anon_sym_DQUOTE, ACTIONS(618), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4070), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, - anon_sym_typeof, - ACTIONS(3941), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_new, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(3963), 1, - anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, - anon_sym_keyof, - ACTIONS(3969), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - STATE(2163), 1, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4186), 1, + anon_sym_QMARK, + ACTIONS(4194), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(2290), 1, sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(2297), 1, sym__number, - STATE(5477), 1, + STATE(2358), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6014), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4096), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3434), 7, + STATE(5297), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190471,7 +189988,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190485,75 +190002,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72756] = 32, + [71964] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4047), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4049), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4051), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, - sym_this, - ACTIONS(4063), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, + ACTIONS(4557), 1, anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5393), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5831), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2648), 7, + STATE(5085), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190561,7 +190078,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190575,139 +190092,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72878] = 6, + [72086] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3902), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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(3844), 22, + ACTIONS(564), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 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(700), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(702), 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, - [72948] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, - anon_sym_typeof, - ACTIONS(4021), 1, - anon_sym_new, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4025), 1, - anon_sym_AMP, - ACTIONS(4027), 1, - anon_sym_PIPE, - ACTIONS(4029), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4031), 1, - anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5426), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3603), 7, + STATE(5103), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190715,7 +190168,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190729,75 +190182,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73070] = 32, + [72208] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, + ACTIONS(2249), 1, anon_sym_typeof, - ACTIONS(3941), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, + ACTIONS(2255), 1, anon_sym_new, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3963), 1, + ACTIONS(2277), 1, anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, - anon_sym_keyof, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - STATE(2163), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(3987), 1, sym__number, - STATE(5477), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5483), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6014), 1, + STATE(6019), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2271), 7, + STATE(4025), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190805,7 +190258,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190819,142 +190272,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73192] = 9, + [72330] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3876), 1, - anon_sym_LT, - ACTIONS(4449), 1, - anon_sym_EQ_GT, - STATE(2493), 1, - sym_type_arguments, - ACTIONS(3848), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(564), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 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(700), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(702), 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, - [73268] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4033), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(4035), 1, - anon_sym_STAR, - ACTIONS(4037), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(4039), 1, - anon_sym_typeof, - ACTIONS(4041), 1, - anon_sym_LPAREN, - ACTIONS(4043), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(4045), 1, - anon_sym_new, - ACTIONS(4047), 1, - anon_sym_QMARK, - ACTIONS(4049), 1, - anon_sym_AMP, - ACTIONS(4051), 1, - anon_sym_PIPE, - ACTIONS(4057), 1, - sym_number, - ACTIONS(4059), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(4063), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4065), 1, - anon_sym_infer, - ACTIONS(4067), 1, - anon_sym_keyof, - ACTIONS(4069), 1, - anon_sym_LBRACE_PIPE, - STATE(2375), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2426), 1, + STATE(3920), 1, sym_string, - STATE(2427), 1, + STATE(3926), 1, sym__primary_type, - STATE(2428), 1, + STATE(3927), 1, sym__number, - STATE(5393), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5831), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6126), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(4053), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4061), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(4055), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2761), 7, + STATE(5111), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190962,7 +190348,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2450), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190976,75 +190362,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73390] = 32, + [72452] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(740), 1, + anon_sym_QMARK, + ACTIONS(762), 1, + anon_sym_keyof, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(2249), 1, + anon_sym_typeof, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, - anon_sym_typeof, - ACTIONS(4021), 1, - anon_sym_new, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4025), 1, - anon_sym_AMP, - ACTIONS(4027), 1, - anon_sym_PIPE, - ACTIONS(4029), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4031), 1, - anon_sym_keyof, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3987), 1, + sym__number, + STATE(4002), 1, sym_string, - STATE(2293), 1, + STATE(4003), 1, sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5426), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(5777), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2246), 7, + STATE(5279), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191052,7 +190438,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191066,14 +190452,16 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73512] = 6, + [72574] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(4149), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(2878), 1, + anon_sym_COLON, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191089,12 +190477,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(1730), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -191106,8 +190494,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -191130,97 +190517,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [73582] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3939), 1, - anon_sym_typeof, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_new, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3963), 1, - anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, - anon_sym_keyof, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5477), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, - sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2246), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2289), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [73704] = 32, + [72646] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -191229,19 +190526,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -191251,44 +190554,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(3973), 1, - anon_sym_typeof, - ACTIONS(3977), 1, - anon_sym_QMARK, - ACTIONS(3989), 1, - anon_sym_keyof, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3938), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5346), 7, + STATE(5104), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191296,7 +190593,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191310,7 +190607,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73826] = 32, + [72768] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -191327,58 +190624,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, + ACTIONS(2249), 1, anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, + ACTIONS(2255), 1, anon_sym_new, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(2277), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3914), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(3987), 1, sym__number, - STATE(4015), 1, + STATE(3990), 1, sym__primary_type, - STATE(4023), 1, + STATE(4002), 1, sym_string, - STATE(5481), 1, + STATE(5483), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6009), 1, + STATE(6019), 1, sym_formal_parameters, - ACTIONS(2112), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4032), 7, + STATE(4027), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191386,7 +190683,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191400,7 +190697,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73948] = 32, + [72890] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -191409,66 +190706,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, - anon_sym_AMP, - ACTIONS(794), 1, - anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, + anon_sym_new, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, + anon_sym_readonly, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4509), 7, + STATE(5061), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191476,7 +190773,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191490,75 +190787,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74070] = 32, + [73012] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3934), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(3936), 1, + anon_sym_STAR, + ACTIONS(3938), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3973), 1, + ACTIONS(3940), 1, anon_sym_typeof, - ACTIONS(3975), 1, + ACTIONS(3942), 1, + anon_sym_LPAREN, + ACTIONS(3944), 1, + anon_sym_LBRACK, + ACTIONS(3946), 1, anon_sym_new, - ACTIONS(3977), 1, + ACTIONS(3948), 1, anon_sym_QMARK, - ACTIONS(3979), 1, + ACTIONS(3950), 1, anon_sym_AMP, - ACTIONS(3981), 1, + ACTIONS(3952), 1, anon_sym_PIPE, - ACTIONS(3985), 1, + ACTIONS(3958), 1, + sym_number, + ACTIONS(3960), 1, + sym_this, + ACTIONS(3964), 1, anon_sym_readonly, - ACTIONS(3989), 1, + ACTIONS(3966), 1, + anon_sym_infer, + ACTIONS(3968), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(3970), 1, + anon_sym_LBRACE_PIPE, + STATE(2407), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(2454), 1, sym__primary_type, - STATE(3942), 1, + STATE(2455), 1, sym__number, - STATE(5453), 1, + STATE(2593), 1, + sym_string, + STATE(5523), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(5836), 1, sym_formal_parameters, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5989), 1, + sym_nested_identifier, + ACTIONS(3954), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(3962), 2, + sym_true, + sym_false, + ACTIONS(3956), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4780), 7, + STATE(2778), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191566,7 +190863,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2452), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191580,75 +190877,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74192] = 32, + [73134] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4124), 1, + anon_sym_STAR, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3973), 1, + ACTIONS(4128), 1, anon_sym_typeof, - ACTIONS(3975), 1, + ACTIONS(4130), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_LBRACK, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(3977), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(3979), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(3981), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(3985), 1, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4148), 1, + sym_this, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(3989), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + STATE(2637), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3002), 1, sym_string, - STATE(3937), 1, + STATE(3012), 1, sym__primary_type, - STATE(3942), 1, + STATE(3051), 1, sym__number, - STATE(5453), 1, + STATE(5389), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(5882), 1, sym_formal_parameters, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4150), 2, + sym_true, + sym_false, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(3203), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191656,7 +190953,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191670,75 +190967,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74314] = 32, + [73256] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(814), 1, + anon_sym_DQUOTE, + ACTIONS(816), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4128), 1, + anon_sym_typeof, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(4132), 1, + anon_sym_LBRACK, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(4136), 1, + anon_sym_QMARK, + ACTIONS(4138), 1, + anon_sym_AMP, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4146), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(3973), 1, - anon_sym_typeof, - ACTIONS(3977), 1, - anon_sym_QMARK, - ACTIONS(3989), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + STATE(2637), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3002), 1, sym_string, - STATE(3935), 1, + STATE(3012), 1, sym__primary_type, - STATE(3942), 1, + STATE(3051), 1, sym__number, - STATE(5520), 1, + STATE(5389), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5882), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6098), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4150), 2, + sym_true, + sym_false, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5346), 7, + STATE(3032), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191746,7 +191043,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191760,75 +191057,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74436] = 32, + [73378] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, + STATE(3987), 1, sym__number, - STATE(5554), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5974), 1, + STATE(5958), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3376), 7, + STATE(3985), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191836,7 +191133,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191850,75 +191147,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74558] = 32, + [73500] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4128), 1, + anon_sym_typeof, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, - anon_sym_typeof, - ACTIONS(4021), 1, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(4023), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(4025), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4027), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4029), 1, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4148), 1, + sym_this, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(4031), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5426), 1, + STATE(5389), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, + STATE(5882), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2271), 7, + STATE(3063), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191926,7 +191223,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191940,75 +191237,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74680] = 32, + [73622] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, + ACTIONS(4128), 1, anon_sym_typeof, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(3947), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(3949), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3963), 1, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(3965), 1, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3967), 1, + ACTIONS(4156), 1, anon_sym_keyof, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5477), 1, + STATE(5389), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, + STATE(5882), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3417), 7, + STATE(3132), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192016,7 +191313,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192030,75 +191327,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74802] = 32, + [73744] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3939), 1, - anon_sym_typeof, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_new, - ACTIONS(3947), 1, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(3949), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(3963), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, - anon_sym_keyof, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5477), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2199), 7, + STATE(3929), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192106,7 +191403,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192120,139 +191417,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74924] = 6, + [73866] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2277), 1, - anon_sym_EQ_GT, - ACTIONS(2309), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 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, - 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(1729), 23, + ACTIONS(564), 1, anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 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(700), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(702), 1, anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5569), 1, + sym_type_parameters, + STATE(6051), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 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, - [74994] = 32, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5049), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [73988] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, + ACTIONS(4128), 1, anon_sym_typeof, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3947), 1, + ACTIONS(4134), 1, + anon_sym_new, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(3957), 1, + ACTIONS(4138), 1, + anon_sym_AMP, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3967), 1, + ACTIONS(4152), 1, + anon_sym_readonly, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2294), 1, - sym__number, - STATE(2357), 1, + STATE(3012), 1, sym__primary_type, - STATE(5520), 1, + STATE(3051), 1, + sym__number, + STATE(5389), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5882), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5218), 7, + STATE(3056), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192260,7 +191583,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192274,75 +191597,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75116] = 32, + [74110] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5554), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5974), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3369), 7, + STATE(5051), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192350,7 +191673,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192364,75 +191687,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75238] = 32, + [74232] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3965), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, - anon_sym_typeof, - ACTIONS(4021), 1, - anon_sym_new, - ACTIONS(4023), 1, + ACTIONS(800), 1, anon_sym_QMARK, - ACTIONS(4025), 1, + ACTIONS(802), 1, anon_sym_AMP, - ACTIONS(4027), 1, + ACTIONS(804), 1, anon_sym_PIPE, - ACTIONS(4029), 1, - anon_sym_readonly, - ACTIONS(4031), 1, + ACTIONS(834), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, + ACTIONS(1934), 1, + sym_this, + ACTIONS(1936), 1, + anon_sym_readonly, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5426), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, + STATE(6017), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3612), 7, + STATE(4420), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192440,7 +191763,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192454,75 +191777,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75360] = 32, + [74354] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, - anon_sym_typeof, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, + ACTIONS(1934), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, + anon_sym_typeof, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(3947), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(3949), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(3951), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3963), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, + ACTIONS(4557), 1, anon_sym_keyof, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5477), 1, + STATE(5601), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3465), 7, + STATE(5043), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192530,7 +191853,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192544,75 +191867,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75482] = 32, + [74476] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(1914), 1, + sym_identifier, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(1922), 1, + anon_sym_LBRACK, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_typeof, - ACTIONS(4459), 1, - anon_sym_QMARK, - ACTIONS(4469), 1, - anon_sym_keyof, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4004), 1, + STATE(3920), 1, + sym_string, + STATE(3926), 1, sym__primary_type, - STATE(4014), 1, + STATE(3927), 1, sym__number, - STATE(4023), 1, - sym_string, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5175), 7, + STATE(4366), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192620,7 +191943,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192634,75 +191957,141 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75604] = 32, + [74598] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(1994), 1, + anon_sym_EQ, + ACTIONS(1996), 1, + anon_sym_EQ_GT, + ACTIONS(3904), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 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, + [74672] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, + ACTIONS(4128), 1, anon_sym_typeof, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_new, - ACTIONS(3947), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3963), 1, - anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, + ACTIONS(4156), 1, anon_sym_keyof, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3030), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5477), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3482), 7, + STATE(5324), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192710,7 +192099,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192724,7 +192113,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75726] = 32, + [74794] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -192733,13 +192122,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -192749,50 +192150,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4479), 1, - anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, + sym_nested_type_identifier, + STATE(3920), 1, + sym_string, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5569), 1, + sym_type_parameters, + STATE(6051), 1, + sym_formal_parameters, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, + sym_true, + sym_false, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3914), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [74916] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(4491), 1, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4493), 1, + ACTIONS(4577), 1, + anon_sym_typeof, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(3884), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3987), 1, + sym__number, + STATE(4002), 1, sym_string, - STATE(3937), 1, + STATE(4019), 1, sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5433), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5931), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5093), 7, + STATE(5238), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192800,7 +192279,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192814,7 +192293,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75848] = 32, + [75038] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -192823,21 +192302,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1622), 1, - anon_sym_QMARK, - ACTIONS(1624), 1, - anon_sym_AMP, - ACTIONS(1626), 1, - anon_sym_PIPE, - ACTIONS(1640), 1, - anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -192847,42 +192318,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2168), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(2170), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(2178), 1, + ACTIONS(4547), 1, + anon_sym_QMARK, + ACTIONS(4549), 1, + anon_sym_AMP, + ACTIONS(4551), 1, + anon_sym_PIPE, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5451), 1, + STATE(5601), 1, sym_type_parameters, - STATE(6068), 1, + STATE(5843), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4273), 7, + STATE(5056), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192890,7 +192369,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192904,7 +192383,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75970] = 32, + [75160] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -192913,66 +192392,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4553), 7, + STATE(5058), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192980,7 +192459,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192994,75 +192473,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76092] = 32, + [75282] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(814), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(816), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4128), 1, + anon_sym_typeof, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4134), 1, + anon_sym_new, + ACTIONS(4136), 1, + anon_sym_QMARK, + ACTIONS(4138), 1, + anon_sym_AMP, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3965), 1, + ACTIONS(4152), 1, + anon_sym_readonly, + ACTIONS(4154), 1, anon_sym_infer, - ACTIONS(3969), 1, + ACTIONS(4156), 1, + anon_sym_keyof, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, + STATE(2637), 1, + sym_nested_type_identifier, + STATE(3002), 1, + sym_string, + STATE(3012), 1, + sym__primary_type, + STATE(3051), 1, + sym__number, + STATE(5389), 1, + sym_type_parameters, + STATE(5882), 1, + sym_formal_parameters, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4150), 2, + sym_true, + sym_false, + ACTIONS(4144), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3232), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3003), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [75404] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(814), 1, + anon_sym_DQUOTE, + ACTIONS(816), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4122), 1, + sym_identifier, + ACTIONS(4124), 1, + anon_sym_STAR, + ACTIONS(4126), 1, + anon_sym_LBRACE, + ACTIONS(4128), 1, anon_sym_typeof, - ACTIONS(4340), 1, + ACTIONS(4130), 1, + anon_sym_LPAREN, + ACTIONS(4132), 1, + anon_sym_LBRACK, + ACTIONS(4134), 1, anon_sym_new, - ACTIONS(4342), 1, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(4344), 1, + ACTIONS(4138), 1, anon_sym_AMP, - ACTIONS(4346), 1, + ACTIONS(4140), 1, anon_sym_PIPE, - ACTIONS(4348), 1, + ACTIONS(4146), 1, + sym_number, + ACTIONS(4148), 1, + sym_this, + ACTIONS(4152), 1, anon_sym_readonly, - ACTIONS(4350), 1, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2293), 1, + STATE(3012), 1, sym__primary_type, - STATE(2294), 1, + STATE(3051), 1, sym__number, - STATE(5554), 1, + STATE(5389), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5974), 1, + STATE(5882), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2356), 7, + STATE(3235), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193070,7 +192639,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193084,75 +192653,255 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76214] = 32, + [75526] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4577), 1, + anon_sym_typeof, + ACTIONS(4579), 1, + anon_sym_new, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(4589), 1, + anon_sym_readonly, + ACTIONS(4591), 1, + anon_sym_keyof, + STATE(3916), 1, + sym_nested_type_identifier, + STATE(3987), 1, + sym__number, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, + sym_type_parameters, + STATE(5958), 1, + sym_formal_parameters, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, + sym_true, + sym_false, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4762), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3992), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [75648] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + anon_sym_STAR, + ACTIONS(760), 1, + anon_sym_infer, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, + anon_sym_LPAREN, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2271), 1, + sym_number, + ACTIONS(2273), 1, + sym_this, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4577), 1, + anon_sym_typeof, + ACTIONS(4579), 1, + anon_sym_new, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP, + ACTIONS(4585), 1, + anon_sym_PIPE, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(4591), 1, + anon_sym_keyof, + STATE(3916), 1, + sym_nested_type_identifier, + STATE(3987), 1, + sym__number, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, + sym_type_parameters, + STATE(5958), 1, + sym_formal_parameters, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, + sym_true, + sym_false, + ACTIONS(3374), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2265), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4491), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3992), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [75770] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(814), 1, + anon_sym_DQUOTE, + ACTIONS(816), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3939), 1, + ACTIONS(4128), 1, anon_sym_typeof, - ACTIONS(3941), 1, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3947), 1, + ACTIONS(4134), 1, + anon_sym_new, + ACTIONS(4136), 1, anon_sym_QMARK, - ACTIONS(3957), 1, + ACTIONS(4138), 1, + anon_sym_AMP, + ACTIONS(4140), 1, + anon_sym_PIPE, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3967), 1, + ACTIONS(4152), 1, + anon_sym_readonly, + ACTIONS(4154), 1, + anon_sym_infer, + ACTIONS(4156), 1, anon_sym_keyof, - ACTIONS(3969), 1, + ACTIONS(4158), 1, anon_sym_LBRACE_PIPE, - STATE(2163), 1, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2294), 1, - sym__number, - STATE(2355), 1, + STATE(3012), 1, sym__primary_type, - STATE(5520), 1, + STATE(3051), 1, + sym__number, + STATE(5389), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5882), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5218), 7, + STATE(3027), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193160,7 +192909,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193174,20 +192923,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76336] = 9, + [75892] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(4651), 1, - anon_sym_EQ, - ACTIONS(4653), 1, + ACTIONS(4660), 1, anon_sym_EQ_GT, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3848), 15, + ACTIONS(3846), 15, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -193203,7 +192952,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193219,7 +192968,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -193241,7 +192990,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [76412] = 32, + [75968] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -193258,17 +193007,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(1720), 1, anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -193278,38 +193027,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4672), 7, + STATE(5108), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193317,7 +193066,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193331,75 +193080,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76534] = 32, + [76090] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, ACTIONS(636), 1, anon_sym_infer, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1748), 1, + ACTIONS(814), 1, + anon_sym_DQUOTE, + ACTIONS(816), 1, + anon_sym_SQUOTE, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(3933), 1, + ACTIONS(4122), 1, sym_identifier, - ACTIONS(3935), 1, + ACTIONS(4124), 1, anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(4126), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, + ACTIONS(4128), 1, + anon_sym_typeof, + ACTIONS(4130), 1, anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(4132), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, + ACTIONS(4136), 1, + anon_sym_QMARK, + ACTIONS(4146), 1, sym_number, - ACTIONS(3959), 1, + ACTIONS(4148), 1, sym_this, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4338), 1, - anon_sym_typeof, - ACTIONS(4342), 1, - anon_sym_QMARK, - ACTIONS(4350), 1, + ACTIONS(4156), 1, anon_sym_keyof, - STATE(2163), 1, + ACTIONS(4158), 1, + anon_sym_LBRACE_PIPE, + STATE(2637), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3002), 1, sym_string, - STATE(2294), 1, - sym__number, - STATE(2355), 1, + STATE(3026), 1, sym__primary_type, - STATE(5520), 1, + STATE(3051), 1, + sym__number, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, + STATE(6098), 1, + sym_nested_identifier, + ACTIONS(4142), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, + ACTIONS(4150), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(4144), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5195), 7, + STATE(5324), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193407,7 +193156,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3003), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193421,7 +193170,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76656] = 32, + [76212] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -193430,66 +193179,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4504), 7, + STATE(4975), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193497,7 +193246,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193511,139 +193260,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76778] = 6, + [76334] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(1750), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 17, - anon_sym_as, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, + sym_identifier, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, + ACTIONS(4076), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4078), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 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, - [76848] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(4092), 1, + sym_number, + ACTIONS(4094), 1, + sym_this, + ACTIONS(4100), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(4104), 1, anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, + ACTIONS(4235), 1, + anon_sym_typeof, + ACTIONS(4237), 1, + anon_sym_new, + ACTIONS(4239), 1, + anon_sym_QMARK, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(702), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4245), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4247), 1, + anon_sym_keyof, + STATE(2167), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(2290), 1, sym_string, - STATE(3935), 1, + STATE(2296), 1, sym__primary_type, - STATE(3942), 1, + STATE(2297), 1, sym__number, - STATE(5520), 1, + STATE(5475), 1, sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5874), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6024), 1, + sym_formal_parameters, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5324), 7, + STATE(3400), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193651,7 +193336,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193665,7 +193350,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76970] = 32, + [76456] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -193674,66 +193359,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(4999), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193741,7 +193426,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193755,71 +193440,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77092] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(4507), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - 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, - anon_sym_extends, - ACTIONS(3844), 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, - [77162] = 32, + [76578] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -193828,66 +193449,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(1088), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(1090), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(1092), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(1106), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, + ACTIONS(2123), 1, + anon_sym_typeof, + ACTIONS(2125), 1, + anon_sym_new, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5417), 1, sym_type_parameters, - STATE(5904), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4510), 7, + STATE(4512), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193895,7 +193516,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193909,75 +193530,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77284] = 32, + [76700] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4247), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5548), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5475), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6130), 1, + STATE(6024), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4424), 7, + STATE(3357), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193985,7 +193606,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193999,75 +193620,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77406] = 32, + [76822] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(616), 1, + anon_sym_DQUOTE, + ACTIONS(618), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4068), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4070), 1, + anon_sym_STAR, + ACTIONS(4072), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4076), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4078), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4092), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4094), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4100), 1, + anon_sym_infer, + ACTIONS(4104), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4235), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4237), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4239), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4241), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4243), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4245), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4247), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(2167), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(2290), 1, sym_string, - STATE(5548), 1, + STATE(2296), 1, + sym__primary_type, + STATE(2297), 1, + sym__number, + STATE(5475), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5874), 1, sym_nested_identifier, - STATE(6130), 1, + STATE(6024), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + ACTIONS(4088), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4096), 2, + sym_true, + sym_false, + ACTIONS(4090), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4452), 7, + STATE(2320), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194075,7 +193696,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(2292), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194089,32 +193710,89 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77528] = 32, + [76944] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3873), 1, + anon_sym_LT, + ACTIONS(4465), 1, + anon_sym_EQ_GT, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(3846), 15, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 21, anon_sym_STAR, - ACTIONS(602), 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, + [77020] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -194124,130 +193802,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, - anon_sym_readonly, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3935), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5520), 1, - sym_type_parameters, - STATE(6052), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(5361), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [77650] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2110), 1, - sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5548), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5601), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4821), 7, + STATE(4971), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194255,7 +193853,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194269,14 +193867,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77772] = 6, + [77142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4149), 1, + ACTIONS(4410), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194292,12 +193890,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(3846), 17, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194309,8 +193906,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194333,75 +193931,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [77842] = 32, + [77212] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3973), 1, + ACTIONS(4278), 1, anon_sym_typeof, - ACTIONS(3975), 1, + ACTIONS(4280), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, + anon_sym_LBRACK, + ACTIONS(4284), 1, anon_sym_new, - ACTIONS(3977), 1, + ACTIONS(4286), 1, anon_sym_QMARK, - ACTIONS(3979), 1, + ACTIONS(4288), 1, anon_sym_AMP, - ACTIONS(3981), 1, + ACTIONS(4290), 1, anon_sym_PIPE, - ACTIONS(3985), 1, + ACTIONS(4296), 1, + sym_number, + ACTIONS(4298), 1, + sym_this, + ACTIONS(4302), 1, anon_sym_readonly, - ACTIONS(3989), 1, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, anon_sym_keyof, - STATE(3884), 1, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3422), 1, sym__number, - STATE(5453), 1, + STATE(3460), 1, + sym__primary_type, + STATE(3514), 1, + sym_string, + STATE(5509), 1, sym_type_parameters, - STATE(6070), 1, - sym_nested_identifier, - STATE(6125), 1, + STATE(5714), 1, sym_formal_parameters, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(5940), 1, + sym_nested_identifier, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4781), 7, + STATE(3431), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194409,7 +194007,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194423,75 +194021,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77964] = 32, + [77334] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4278), 1, + anon_sym_typeof, + ACTIONS(4280), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4284), 1, + anon_sym_new, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4288), 1, + anon_sym_AMP, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, + sym_number, + ACTIONS(4298), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4302), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, + anon_sym_keyof, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3422), 1, sym__number, - STATE(5520), 1, + STATE(3460), 1, + sym__primary_type, + STATE(3514), 1, + sym_string, + STATE(5509), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5714), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5940), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3934), 7, + STATE(3532), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194499,7 +194097,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194513,7 +194111,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78086] = 32, + [77456] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -194530,17 +194128,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(1720), 1, anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -194550,38 +194148,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(3917), 1, sym__primary_type, - STATE(3942), 1, + STATE(3920), 1, + sym_string, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4356), 7, + STATE(5354), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194589,7 +194187,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194603,75 +194201,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78208] = 32, + [77578] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(4278), 1, anon_sym_typeof, - ACTIONS(1922), 1, + ACTIONS(4280), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4284), 1, + anon_sym_new, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4288), 1, + anon_sym_AMP, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, + sym_number, + ACTIONS(4298), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4302), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, + anon_sym_keyof, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3938), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3422), 1, sym__number, - STATE(5520), 1, + STATE(3460), 1, + sym__primary_type, + STATE(3514), 1, + sym_string, + STATE(5509), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5714), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5940), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5324), 7, + STATE(3485), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194679,7 +194277,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194693,75 +194291,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78330] = 32, + [77700] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2110), 1, - sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4280), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, + anon_sym_LBRACK, + ACTIONS(4284), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4286), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4288), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4290), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4296), 1, + sym_number, + ACTIONS(4298), 1, + sym_this, + ACTIONS(4302), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, anon_sym_keyof, - STATE(3914), 1, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(3422), 1, sym__number, - STATE(4015), 1, + STATE(3460), 1, sym__primary_type, - STATE(4023), 1, + STATE(3514), 1, sym_string, - STATE(5548), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, + STATE(5714), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(5940), 1, + sym_nested_identifier, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3989), 7, + STATE(3457), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194769,7 +194367,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194783,75 +194381,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78452] = 32, + [77822] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2080), 1, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(4278), 1, + anon_sym_typeof, + ACTIONS(4280), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4284), 1, + anon_sym_new, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4288), 1, + anon_sym_AMP, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4298), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4302), 1, anon_sym_readonly, - ACTIONS(4455), 1, - anon_sym_typeof, - ACTIONS(4459), 1, - anon_sym_QMARK, - ACTIONS(4469), 1, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, anon_sym_keyof, - STATE(3914), 1, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(4000), 1, - sym__primary_type, - STATE(4014), 1, + STATE(3422), 1, sym__number, - STATE(4023), 1, + STATE(3460), 1, + sym__primary_type, + STATE(3514), 1, sym_string, - STATE(5520), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6052), 1, + STATE(5714), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(5940), 1, + sym_nested_identifier, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5175), 7, + STATE(3446), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194859,7 +194457,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194873,30 +194471,34 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78574] = 32, + [77944] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -194906,42 +194508,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2291), 1, - anon_sym_new, - ACTIONS(2299), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5581), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5841), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3934), 7, + STATE(4343), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -194949,7 +194547,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -194963,139 +194561,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78696] = 6, + [78066] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(4517), 1, - anon_sym_EQ, - ACTIONS(4519), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - 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, - anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(564), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(636), 1, + anon_sym_infer, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(698), 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(700), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(702), 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, - [78766] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, + anon_sym_LPAREN, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(618), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, + ACTIONS(1750), 1, + sym_number, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4019), 1, - anon_sym_typeof, - ACTIONS(4021), 1, - anon_sym_new, - ACTIONS(4023), 1, - anon_sym_QMARK, - ACTIONS(4025), 1, - anon_sym_AMP, - ACTIONS(4027), 1, - anon_sym_PIPE, - ACTIONS(4029), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, anon_sym_readonly, - ACTIONS(4031), 1, - anon_sym_keyof, - STATE(2163), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(2287), 1, + STATE(3920), 1, sym_string, - STATE(2293), 1, + STATE(3926), 1, sym__primary_type, - STATE(2294), 1, + STATE(3927), 1, sym__number, - STATE(5426), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(5777), 1, + STATE(6051), 1, sym_formal_parameters, - ACTIONS(3953), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3961), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3955), 6, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3627), 7, + STATE(5098), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -195103,7 +194637,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -195117,14 +194651,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78888] = 6, + [78188] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3976), 1, anon_sym_EQ, - ACTIONS(4519), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195140,11 +194672,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(3846), 18, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -195156,9 +194690,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195181,75 +194714,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [78958] = 32, + [78256] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2289), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(2291), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(2299), 1, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP, + ACTIONS(4585), 1, + anon_sym_PIPE, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4591), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5581), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(5841), 1, + STATE(5958), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(4497), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -195257,7 +194790,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -195271,30 +194804,34 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79080] = 32, + [78378] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(698), 1, + anon_sym_QMARK, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -195304,42 +194841,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2291), 1, - anon_sym_new, - ACTIONS(2299), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5581), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5841), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4372), 7, + STATE(4342), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -195347,7 +194880,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -195361,122 +194894,101 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79202] = 32, + [78500] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3873), 1, + anon_sym_LT, + ACTIONS(4660), 1, + anon_sym_EQ_GT, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(3846), 15, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(1934), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_typeof, - ACTIONS(4394), 1, - anon_sym_new, - ACTIONS(4396), 1, - anon_sym_QMARK, - ACTIONS(4398), 1, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, - ACTIONS(4400), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4404), 1, - anon_sym_readonly, - ACTIONS(4406), 1, - anon_sym_keyof, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5570), 1, - sym_type_parameters, - STATE(5900), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(5002), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [79324] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [78576] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, + ACTIONS(698), 1, + anon_sym_QMARK, ACTIONS(700), 1, anon_sym_AMP, ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(1738), 1, + ACTIONS(718), 1, + anon_sym_keyof, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -195486,40 +194998,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3938), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5361), 7, + STATE(3922), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -195527,7 +195037,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -195541,7 +195051,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79446] = 32, + [78698] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -195558,17 +195068,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1736), 1, + ACTIONS(1720), 1, anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, + ACTIONS(1732), 1, anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -195578,38 +195088,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(3840), 1, anon_sym_readonly, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5520), 1, + STATE(5569), 1, sym_type_parameters, - STATE(6052), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5008), 7, + STATE(5038), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -195617,7 +195127,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -195631,7 +195141,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79568] = 32, + [78820] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -195640,156 +195150,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(3933), 1, + sym__primary_type, + STATE(5569), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4464), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [79690] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(616), 1, - anon_sym_DQUOTE, - ACTIONS(618), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3933), 1, - sym_identifier, - ACTIONS(3935), 1, - anon_sym_STAR, - ACTIONS(3937), 1, - anon_sym_LBRACE, - ACTIONS(3939), 1, - anon_sym_typeof, - ACTIONS(3941), 1, - anon_sym_LPAREN, - ACTIONS(3943), 1, - anon_sym_LBRACK, - ACTIONS(3945), 1, - anon_sym_new, - ACTIONS(3947), 1, - anon_sym_QMARK, - ACTIONS(3949), 1, - anon_sym_AMP, - ACTIONS(3951), 1, - anon_sym_PIPE, - ACTIONS(3957), 1, - sym_number, - ACTIONS(3959), 1, - sym_this, - ACTIONS(3963), 1, - anon_sym_readonly, - ACTIONS(3965), 1, - anon_sym_infer, - ACTIONS(3967), 1, - anon_sym_keyof, - ACTIONS(3969), 1, - anon_sym_LBRACE_PIPE, - STATE(2163), 1, - sym_nested_type_identifier, - STATE(2287), 1, - sym_string, - STATE(2293), 1, - sym__primary_type, - STATE(2294), 1, - sym__number, - STATE(5477), 1, - sym_type_parameters, - STATE(5753), 1, - sym_nested_identifier, - STATE(6014), 1, - sym_formal_parameters, - ACTIONS(3953), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3961), 2, - sym_true, - sym_false, - ACTIONS(3955), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2356), 7, + STATE(5354), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -195797,7 +195217,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2289), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -195811,165 +195231,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79812] = 32, + [78942] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(760), 1, + ACTIONS(636), 1, anon_sym_infer, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(1750), 1, sym_number, - ACTIONS(2110), 1, - sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(4455), 1, - anon_sym_typeof, - ACTIONS(4457), 1, - anon_sym_new, - ACTIONS(4459), 1, - anon_sym_QMARK, - ACTIONS(4461), 1, - anon_sym_AMP, - ACTIONS(4463), 1, - anon_sym_PIPE, - ACTIONS(4467), 1, - anon_sym_readonly, - ACTIONS(4469), 1, - anon_sym_keyof, - STATE(3914), 1, - sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, - sym_string, - STATE(5548), 1, - sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, - sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2102), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4582), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4019), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [79934] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(1914), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2110), 1, + ACTIONS(1934), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4557), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5548), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5601), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4610), 7, + STATE(5026), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -195977,7 +195307,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -195991,75 +195321,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80056] = 32, + [79064] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(800), 1, + anon_sym_QMARK, + ACTIONS(802), 1, + anon_sym_AMP, + ACTIONS(804), 1, + anon_sym_PIPE, + ACTIONS(834), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, + ACTIONS(1920), 1, + anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, + ACTIONS(1926), 1, + anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2291), 1, - anon_sym_new, - ACTIONS(2299), 1, + ACTIONS(1936), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5581), 1, + STATE(5664), 1, sym_type_parameters, - STATE(5841), 1, + STATE(6017), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4363), 7, + STATE(4516), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -196067,7 +195397,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -196081,7 +195411,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80178] = 32, + [79186] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(724), 1, @@ -196090,66 +195420,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(2088), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(4455), 1, + ACTIONS(4577), 1, anon_sym_typeof, - ACTIONS(4457), 1, + ACTIONS(4579), 1, anon_sym_new, - ACTIONS(4459), 1, + ACTIONS(4581), 1, anon_sym_QMARK, - ACTIONS(4461), 1, + ACTIONS(4583), 1, anon_sym_AMP, - ACTIONS(4463), 1, + ACTIONS(4585), 1, anon_sym_PIPE, - ACTIONS(4467), 1, + ACTIONS(4589), 1, anon_sym_readonly, - ACTIONS(4469), 1, + ACTIONS(4591), 1, anon_sym_keyof, - STATE(3914), 1, + STATE(3916), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(3987), 1, sym__number, - STATE(4015), 1, + STATE(3990), 1, sym__primary_type, - STATE(4023), 1, + STATE(4002), 1, sym_string, - STATE(5548), 1, + STATE(5494), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6130), 1, + STATE(5958), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(5974), 1, + sym_nested_identifier, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4008), 7, + STATE(4025), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -196157,7 +195487,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -196171,165 +195501,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80300] = 32, + [79308] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, - sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5640), 1, - sym_type_parameters, - STATE(5904), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3934), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [80422] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2289), 1, - anon_sym_typeof, - ACTIONS(2291), 1, - anon_sym_new, - ACTIONS(2299), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4577), 1, + anon_sym_typeof, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4591), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3987), 1, + sym__number, + STATE(4002), 1, sym_string, - STATE(3937), 1, + STATE(4003), 1, sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5581), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5841), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4358), 7, + STATE(5238), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -196337,7 +195577,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -196351,75 +195591,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80544] = 32, + [79430] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, ACTIONS(724), 1, anon_sym_STAR, ACTIONS(740), 1, anon_sym_QMARK, + ACTIONS(742), 1, + anon_sym_AMP, + ACTIONS(744), 1, + anon_sym_PIPE, + ACTIONS(760), 1, + anon_sym_infer, ACTIONS(762), 1, anon_sym_keyof, ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(2080), 1, + ACTIONS(2243), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, + ACTIONS(2249), 1, anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(2253), 1, anon_sym_LBRACK, - ACTIONS(2104), 1, + ACTIONS(2255), 1, + anon_sym_new, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(2277), 1, anon_sym_readonly, - STATE(3914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + STATE(3916), 1, sym_nested_type_identifier, - STATE(4000), 1, - sym__primary_type, - STATE(4014), 1, + STATE(3987), 1, sym__number, - STATE(4023), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, sym_string, - STATE(5520), 1, + STATE(5483), 1, sym_type_parameters, - STATE(5905), 1, + STATE(5974), 1, sym_nested_identifier, - STATE(6052), 1, + STATE(6019), 1, sym_formal_parameters, - ACTIONS(2112), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5215), 7, + STATE(4184), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -196427,7 +195667,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -196441,30 +195681,22 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80666] = 32, + [79552] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, - anon_sym_AMP, - ACTIONS(606), 1, - anon_sym_PIPE, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, - anon_sym_keyof, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -196474,132 +195706,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2289), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4543), 1, anon_sym_typeof, - ACTIONS(2291), 1, + ACTIONS(4545), 1, anon_sym_new, - ACTIONS(2299), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, - sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, - sym__number, - STATE(5581), 1, - sym_type_parameters, - STATE(5841), 1, - sym_formal_parameters, - STATE(6070), 1, - sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1760), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3929), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3932), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [80788] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, + ACTIONS(4547), 1, anon_sym_QMARK, - ACTIONS(742), 1, + ACTIONS(4549), 1, anon_sym_AMP, - ACTIONS(744), 1, + ACTIONS(4551), 1, anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, - sym_identifier, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(2086), 1, - anon_sym_typeof, - ACTIONS(2088), 1, - anon_sym_LPAREN, - ACTIONS(2090), 1, - anon_sym_LBRACK, - ACTIONS(2092), 1, - anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, - sym_number, - ACTIONS(2110), 1, - sym_this, - ACTIONS(2114), 1, + ACTIONS(4555), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3914), 1, + ACTIONS(4557), 1, + anon_sym_keyof, + STATE(3879), 1, sym_nested_type_identifier, - STATE(4014), 1, - sym__number, - STATE(4015), 1, - sym__primary_type, - STATE(4023), 1, + STATE(3920), 1, sym_string, - STATE(5481), 1, + STATE(3926), 1, + sym__primary_type, + STATE(3927), 1, + sym__number, + STATE(5601), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5843), 1, sym_formal_parameters, - ACTIONS(2112), 2, + STATE(6142), 1, + sym_nested_identifier, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(3368), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3989), 7, + STATE(5021), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -196607,7 +195757,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -196621,25 +195771,24 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80910] = 9, + [79674] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(2305), 1, anon_sym_EQ, - ACTIONS(2154), 1, + ACTIONS(2307), 1, anon_sym_EQ_GT, - ACTIONS(2305), 1, + ACTIONS(2309), 1, anon_sym_extends, - ACTIONS(3915), 2, + ACTIONS(3904), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3918), 3, + ACTIONS(3907), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 14, + ACTIONS(1730), 13, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196651,8 +195800,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(1750), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196668,8 +195817,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(1713), 20, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -196688,27 +195838,179 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [80986] = 8, + [79750] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 1, + ACTIONS(3976), 1, anon_sym_EQ, - ACTIONS(1954), 1, + ACTIONS(4338), 1, anon_sym_EQ_GT, - ACTIONS(3915), 3, - anon_sym_COMMA, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3918), 3, + ACTIONS(3842), 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, - ACTIONS(1746), 14, - 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, + [79820] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, + anon_sym_new, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4014), 1, + anon_sym_AMP, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4032), 1, + anon_sym_readonly, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, + anon_sym_keyof, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, + sym_nested_type_identifier, + STATE(4219), 1, + sym__number, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, + STATE(5570), 1, + sym_type_parameters, + STATE(5833), 1, + sym_nested_identifier, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4223), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(4248), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [79942] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, anon_sym_DOT, + ACTIONS(4658), 1, + anon_sym_EQ, + ACTIONS(4660), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3846), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -196718,7 +196020,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + anon_sym_extends, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196734,11 +196037,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(3842), 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, @@ -196746,7 +196049,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, @@ -196754,75 +196059,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81060] = 32, + [80018] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(724), 1, anon_sym_STAR, - ACTIONS(636), 1, + ACTIONS(760), 1, anon_sym_infer, - ACTIONS(640), 1, + ACTIONS(764), 1, anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, + ACTIONS(2243), 1, + sym_identifier, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(2251), 1, anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(2253), 1, + anon_sym_LBRACK, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(2271), 1, sym_number, - ACTIONS(1914), 1, - sym_identifier, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(1922), 1, - anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(2273), 1, sym_this, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4577), 1, + anon_sym_typeof, + ACTIONS(4579), 1, + anon_sym_new, + ACTIONS(4581), 1, + anon_sym_QMARK, + ACTIONS(4583), 1, + anon_sym_AMP, + ACTIONS(4585), 1, + anon_sym_PIPE, + ACTIONS(4589), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4591), 1, + anon_sym_keyof, + STATE(3916), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3987), 1, sym__number, - STATE(5520), 1, + STATE(3990), 1, + sym__primary_type, + STATE(4002), 1, + sym_string, + STATE(5494), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5958), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5974), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(2275), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(3374), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(2265), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5020), 7, + STATE(4840), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -196830,7 +196135,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3992), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -196844,75 +196149,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [81182] = 32, + [80140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(4338), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3842), 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, + [80210] = 32, + ACTIONS(3), 1, + sym_comment, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, - anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(816), 1, - anon_sym_keyof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, + ACTIONS(4278), 1, anon_sym_typeof, - ACTIONS(1922), 1, + ACTIONS(4280), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, - ACTIONS(1934), 1, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4296), 1, + sym_number, + ACTIONS(4298), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3884), 1, + ACTIONS(4306), 1, + anon_sym_keyof, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, + STATE(3398), 1, sym__primary_type, - STATE(3942), 1, + STATE(3422), 1, sym__number, - STATE(5640), 1, + STATE(3514), 1, + sym_string, + STATE(5569), 1, sym_type_parameters, - STATE(5904), 1, - sym_formal_parameters, - STATE(6070), 1, + STATE(5940), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4480), 7, + STATE(5298), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -196920,7 +196289,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -196934,75 +196303,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [81304] = 32, + [80332] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, - anon_sym_STAR, - ACTIONS(740), 1, - anon_sym_QMARK, - ACTIONS(742), 1, - anon_sym_AMP, - ACTIONS(744), 1, - anon_sym_PIPE, - ACTIONS(760), 1, - anon_sym_infer, - ACTIONS(762), 1, - anon_sym_keyof, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2080), 1, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(2084), 1, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(2086), 1, + ACTIONS(4278), 1, anon_sym_typeof, - ACTIONS(2088), 1, + ACTIONS(4280), 1, anon_sym_LPAREN, - ACTIONS(2090), 1, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(2092), 1, + ACTIONS(4284), 1, anon_sym_new, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2108), 1, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4288), 1, + anon_sym_AMP, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, sym_number, - ACTIONS(2110), 1, + ACTIONS(4298), 1, sym_this, - ACTIONS(2114), 1, + ACTIONS(4302), 1, anon_sym_readonly, - ACTIONS(2972), 1, - anon_sym_LT, - STATE(3914), 1, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, + anon_sym_keyof, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(4014), 1, + STATE(3422), 1, sym__number, - STATE(4015), 1, + STATE(3460), 1, sym__primary_type, - STATE(4023), 1, + STATE(3514), 1, sym_string, - STATE(5481), 1, + STATE(5509), 1, sym_type_parameters, - STATE(5905), 1, - sym_nested_identifier, - STATE(6009), 1, + STATE(5714), 1, sym_formal_parameters, - ACTIONS(2112), 2, - sym_true, - sym_false, - ACTIONS(3368), 2, + STATE(5940), 1, + sym_nested_identifier, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2102), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4037), 7, + STATE(3465), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -197010,7 +196379,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4019), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -197024,75 +196393,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [81426] = 32, + [80454] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(636), 1, - anon_sym_infer, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(698), 1, - anon_sym_QMARK, - ACTIONS(700), 1, - anon_sym_AMP, - ACTIONS(702), 1, - anon_sym_PIPE, - ACTIONS(718), 1, - anon_sym_keyof, - ACTIONS(1736), 1, - anon_sym_typeof, - ACTIONS(1738), 1, - anon_sym_LPAREN, - ACTIONS(1748), 1, - anon_sym_new, - ACTIONS(1762), 1, + ACTIONS(878), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(880), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, - sym_number, - ACTIONS(1914), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4272), 1, sym_identifier, - ACTIONS(1918), 1, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, anon_sym_LBRACE, - ACTIONS(1922), 1, + ACTIONS(4278), 1, + anon_sym_typeof, + ACTIONS(4280), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, anon_sym_LBRACK, - ACTIONS(1934), 1, + ACTIONS(4284), 1, + anon_sym_new, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4288), 1, + anon_sym_AMP, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, + sym_number, + ACTIONS(4298), 1, sym_this, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3870), 1, + ACTIONS(4302), 1, anon_sym_readonly, - STATE(3884), 1, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, + anon_sym_keyof, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, sym_nested_type_identifier, - STATE(3912), 1, - sym_string, - STATE(3937), 1, - sym__primary_type, - STATE(3942), 1, + STATE(3422), 1, sym__number, - STATE(5520), 1, + STATE(3460), 1, + sym__primary_type, + STATE(3514), 1, + sym_string, + STATE(5509), 1, sym_type_parameters, - STATE(6052), 1, + STATE(5714), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(5940), 1, sym_nested_identifier, - ACTIONS(1770), 2, - sym_true, - sym_false, - ACTIONS(2974), 2, + ACTIONS(4292), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5005), 7, + STATE(3523), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -197100,7 +196469,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3484), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -197114,30 +196483,300 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [81548] = 32, + [80576] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(564), 1, - anon_sym_STAR, - ACTIONS(602), 1, - anon_sym_QMARK, - ACTIONS(604), 1, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, + anon_sym_typeof, + ACTIONS(4280), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, + anon_sym_LBRACK, + ACTIONS(4284), 1, + anon_sym_new, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4288), 1, anon_sym_AMP, - ACTIONS(606), 1, + ACTIONS(4290), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, + sym_number, + ACTIONS(4298), 1, + sym_this, + ACTIONS(4302), 1, + anon_sym_readonly, + ACTIONS(4304), 1, + anon_sym_infer, + ACTIONS(4306), 1, + anon_sym_keyof, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, + sym_nested_type_identifier, + STATE(3422), 1, + sym__number, + STATE(3460), 1, + sym__primary_type, + STATE(3514), 1, + sym_string, + STATE(5509), 1, + sym_type_parameters, + STATE(5714), 1, + sym_formal_parameters, + STATE(5940), 1, + sym_nested_identifier, + ACTIONS(4292), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3538), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3484), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [80698] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, + anon_sym_new, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4014), 1, + anon_sym_AMP, + ACTIONS(4016), 1, anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4032), 1, + anon_sym_readonly, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, + anon_sym_keyof, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, + sym_nested_type_identifier, + STATE(4219), 1, + sym__number, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, + STATE(5570), 1, + sym_type_parameters, + STATE(5833), 1, + sym_nested_identifier, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4221), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(4248), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [80820] = 32, + ACTIONS(3), 1, + sym_comment, ACTIONS(636), 1, anon_sym_infer, - ACTIONS(638), 1, + ACTIONS(700), 1, + anon_sym_AMP, + ACTIONS(702), 1, + anon_sym_PIPE, + ACTIONS(878), 1, + anon_sym_DQUOTE, + ACTIONS(880), 1, + anon_sym_SQUOTE, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3840), 1, + anon_sym_readonly, + ACTIONS(4272), 1, + sym_identifier, + ACTIONS(4274), 1, + anon_sym_STAR, + ACTIONS(4276), 1, + anon_sym_LBRACE, + ACTIONS(4278), 1, + anon_sym_typeof, + ACTIONS(4280), 1, + anon_sym_LPAREN, + ACTIONS(4282), 1, + anon_sym_LBRACK, + ACTIONS(4286), 1, + anon_sym_QMARK, + ACTIONS(4296), 1, + sym_number, + ACTIONS(4298), 1, + sym_this, + ACTIONS(4306), 1, anon_sym_keyof, + ACTIONS(4308), 1, + anon_sym_LBRACE_PIPE, + STATE(3135), 1, + sym_nested_type_identifier, + STATE(3422), 1, + sym__number, + STATE(3514), 1, + sym_string, + STATE(3539), 1, + sym__primary_type, + STATE(5569), 1, + sym_type_parameters, + STATE(5940), 1, + sym_nested_identifier, + STATE(6051), 1, + sym_formal_parameters, + ACTIONS(4292), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4300), 2, + sym_true, + sym_false, + ACTIONS(4294), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5298), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3484), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [80942] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(564), 1, + anon_sym_STAR, + ACTIONS(636), 1, + anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1738), 1, + ACTIONS(1088), 1, + anon_sym_QMARK, + ACTIONS(1090), 1, + anon_sym_AMP, + ACTIONS(1092), 1, + anon_sym_PIPE, + ACTIONS(1106), 1, + anon_sym_keyof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, @@ -197147,42 +196786,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1934), 1, sym_this, - ACTIONS(2289), 1, + ACTIONS(2123), 1, anon_sym_typeof, - ACTIONS(2291), 1, + ACTIONS(2125), 1, anon_sym_new, - ACTIONS(2299), 1, + ACTIONS(2133), 1, anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5581), 1, + STATE(5417), 1, sym_type_parameters, - STATE(5841), 1, + STATE(5960), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(1744), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3943), 7, + STATE(3946), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -197190,7 +196829,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(3921), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -197204,12 +196843,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [81670] = 5, + [81064] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, + ACTIONS(4408), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(4410), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197225,13 +196866,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 18, - sym__automatic_semicolon, + ACTIONS(3846), 17, 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, @@ -197243,8 +196882,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197267,7 +196907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81738] = 32, + [81134] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(564), 1, @@ -197276,66 +196916,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(790), 1, + ACTIONS(698), 1, anon_sym_QMARK, - ACTIONS(792), 1, + ACTIONS(700), 1, anon_sym_AMP, - ACTIONS(794), 1, + ACTIONS(702), 1, anon_sym_PIPE, - ACTIONS(816), 1, + ACTIONS(718), 1, anon_sym_keyof, - ACTIONS(1738), 1, + ACTIONS(1720), 1, + anon_sym_typeof, + ACTIONS(1722), 1, anon_sym_LPAREN, - ACTIONS(1762), 1, + ACTIONS(1732), 1, + anon_sym_new, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(1766), 1, + ACTIONS(1750), 1, sym_number, ACTIONS(1914), 1, sym_identifier, ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(1920), 1, - anon_sym_typeof, ACTIONS(1922), 1, anon_sym_LBRACK, - ACTIONS(1926), 1, - anon_sym_new, ACTIONS(1934), 1, sym_this, - ACTIONS(1936), 1, - anon_sym_readonly, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3884), 1, + ACTIONS(3840), 1, + anon_sym_readonly, + STATE(3879), 1, sym_nested_type_identifier, - STATE(3912), 1, + STATE(3920), 1, sym_string, - STATE(3937), 1, + STATE(3926), 1, sym__primary_type, - STATE(3942), 1, + STATE(3927), 1, sym__number, - STATE(5640), 1, + STATE(5569), 1, sym_type_parameters, - STATE(5904), 1, + STATE(6051), 1, sym_formal_parameters, - STATE(6070), 1, + STATE(6142), 1, sym_nested_identifier, - ACTIONS(1770), 2, + ACTIONS(1754), 2, sym_true, sym_false, - ACTIONS(2974), 2, + ACTIONS(2972), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1744), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4962), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3921), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [81256] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, + anon_sym_new, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4014), 1, + anon_sym_AMP, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4032), 1, + anon_sym_readonly, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, + anon_sym_keyof, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, + sym_nested_type_identifier, + STATE(4219), 1, + sym__number, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, + STATE(5570), 1, + sym_type_parameters, + STATE(5833), 1, + sym_nested_identifier, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1760), 6, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(4200), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -197343,7 +197073,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3932), 13, + STATE(4248), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -197357,14 +197087,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [81860] = 6, + [81378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2152), 1, + ACTIONS(4533), 1, anon_sym_EQ, - ACTIONS(2154), 1, + ACTIONS(4535), 1, anon_sym_EQ_GT, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197380,11 +197110,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(3846), 17, + sym__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, @@ -197396,8 +197127,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(1729), 22, + anon_sym_extends, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197420,30 +197151,194 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81929] = 6, + [81448] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2311), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(1746), 15, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, anon_sym_LPAREN, + ACTIONS(4008), 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(4010), 1, + anon_sym_new, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4014), 1, + anon_sym_AMP, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4032), 1, + anon_sym_readonly, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, + anon_sym_keyof, + ACTIONS(4040), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, + sym_nested_type_identifier, + STATE(4219), 1, + sym__number, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, + STATE(5570), 1, + sym_type_parameters, + STATE(5833), 1, + sym_nested_identifier, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4235), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(4248), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [81570] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, + anon_sym_new, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4014), 1, + anon_sym_AMP, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + anon_sym_DQUOTE, + ACTIONS(4024), 1, + anon_sym_SQUOTE, + ACTIONS(4026), 1, + sym_number, + ACTIONS(4032), 1, + anon_sym_readonly, + ACTIONS(4036), 1, + anon_sym_infer, + ACTIONS(4038), 1, + anon_sym_keyof, + ACTIONS(4040), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, + ACTIONS(4647), 1, + sym_identifier, + ACTIONS(4649), 1, + sym_this, + STATE(4036), 1, + sym_nested_type_identifier, + STATE(4219), 1, + sym__number, + STATE(4243), 1, + sym__primary_type, + STATE(4255), 1, + sym_string, + STATE(5570), 1, + sym_type_parameters, + STATE(5833), 1, + sym_nested_identifier, + STATE(5923), 1, + sym_formal_parameters, + ACTIONS(4018), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4030), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4240), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(4248), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [81692] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2283), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197459,9 +197354,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 23, - anon_sym_STAR, + ACTIONS(1730), 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(1713), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -197483,84 +197394,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81998] = 31, + [81761] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3646), 1, + ACTIONS(3644), 1, anon_sym_LBRACK, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4676), 1, + ACTIONS(4666), 1, anon_sym_export, - ACTIONS(4680), 1, + ACTIONS(4670), 1, anon_sym_async, - ACTIONS(4682), 1, + ACTIONS(4672), 1, anon_sym_static, - ACTIONS(4684), 1, + ACTIONS(4674), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4003), 2, + ACTIONS(4054), 2, sym_number, sym_private_property_identifier, - ACTIONS(4678), 2, + ACTIONS(4668), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4686), 2, + ACTIONS(4676), 2, anon_sym_get, anon_sym_set, - ACTIONS(4688), 3, + ACTIONS(4678), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3933), 3, + STATE(3913), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5621), 3, + STATE(5633), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4501), 6, + STATE(4500), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4674), 10, + ACTIONS(4664), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -197571,14 +197482,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82117] = 6, + [81880] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(4647), 1, + ACTIONS(2307), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1730), 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(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197594,25 +197521,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -197634,14 +197545,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82186] = 6, + [81949] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(1710), 1, anon_sym_EQ, - ACTIONS(4647), 1, + ACTIONS(1728), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3033), 1, + anon_sym_QMARK, + ACTIONS(1717), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1730), 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(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197657,31 +197588,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 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, @@ -197697,14 +197610,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82255] = 6, + [82022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4653), 1, + ACTIONS(4660), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197720,7 +197633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -197737,7 +197650,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197760,20 +197673,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82324] = 9, + [82091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_RBRACK, - ACTIONS(2030), 1, + ACTIONS(3540), 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(3542), 31, + 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_extends, + anon_sym_LBRACE_PIPE, + [82154] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3921), 1, anon_sym_EQ_GT, - ACTIONS(3095), 1, + ACTIONS(4263), 1, anon_sym_EQ, - ACTIONS(3098), 1, + ACTIONS(4606), 1, + anon_sym_QMARK, + ACTIONS(4603), 3, anon_sym_COMMA, - ACTIONS(3100), 1, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(1746), 13, + ACTIONS(3846), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -197787,7 +197760,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197803,14 +197776,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 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, @@ -197826,36 +197798,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82399] = 10, + [82227] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 1, - anon_sym_EQ_GT, - ACTIONS(4523), 1, - anon_sym_RBRACK, - ACTIONS(4690), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4693), 1, - anon_sym_COMMA, - ACTIONS(4695), 1, - anon_sym_in, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(3848), 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(3864), 15, + ACTIONS(4465), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197871,9 +197821,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3846), 16, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -197893,14 +197861,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82476] = 6, + [82296] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 1, + ACTIONS(4658), 1, anon_sym_EQ, - ACTIONS(4653), 1, + ACTIONS(4660), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197916,7 +197884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -197933,7 +197901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197956,14 +197924,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82545] = 6, + [82365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1974), 1, + ACTIONS(3548), 24, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1976), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 15, + 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(3550), 31, + 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, @@ -197979,11 +197974,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, - sym__automatic_semicolon, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [82428] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 16, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -197996,8 +198021,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + anon_sym_LBRACE_PIPE, + ACTIONS(3842), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -198019,14 +198046,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82614] = 6, + [82495] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(4412), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198042,12 +198067,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, - sym__automatic_semicolon, + ACTIONS(3846), 17, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -198059,7 +198085,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198082,40 +198108,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82683] = 11, + [82562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4699), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4701), 1, + ACTIONS(4459), 1, anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3850), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198131,10 +198131,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3846), 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(3842), 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, @@ -198142,7 +198161,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, @@ -198150,24 +198171,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82762] = 9, + [82631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4701), 1, - anon_sym_EQ_GT, - ACTIONS(4704), 1, + ACTIONS(2305), 1, anon_sym_EQ, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3848), 14, + ACTIONS(2307), 1, + anon_sym_EQ_GT, + ACTIONS(1730), 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, @@ -198177,8 +198193,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198194,10 +198210,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(1713), 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, @@ -198216,31 +198234,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82837] = 12, + [82700] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3857), 1, anon_sym_LT, - ACTIONS(3859), 1, + ACTIONS(3863), 1, anon_sym_DOT, - ACTIONS(3908), 1, - anon_sym_COMMA, - ACTIONS(4704), 1, - anon_sym_EQ, - ACTIONS(4706), 1, + ACTIONS(4465), 1, anon_sym_EQ_GT, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3850), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3856), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3848), 11, + ACTIONS(3846), 14, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -198250,7 +198261,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + anon_sym_extends, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198266,10 +198278,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 18, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -198277,7 +198290,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, @@ -198285,30 +198300,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82918] = 6, + [82775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(4533), 1, anon_sym_EQ, - ACTIONS(4386), 1, - anon_sym_EQ_GT, ACTIONS(3848), 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(3864), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198324,9 +198321,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 23, + ACTIONS(3846), 17, + 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, + anon_sym_extends, + ACTIONS(3842), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -198348,14 +198362,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82987] = 6, + [82842] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2309), 1, + ACTIONS(4404), 1, anon_sym_EQ, - ACTIONS(2311), 1, + ACTIONS(4406), 1, anon_sym_EQ_GT, - ACTIONS(1746), 15, + ACTIONS(3846), 15, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -198371,7 +198385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198387,7 +198401,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 23, + ACTIONS(3842), 23, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -198411,12 +198425,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83056] = 5, + [82911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, + ACTIONS(4433), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(4435), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198432,11 +198448,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(3846), 16, + sym__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, @@ -198448,9 +198464,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198473,12 +198488,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83123] = 5, + [82980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(4433), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198494,13 +198509,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(3846), 17, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -198512,7 +198527,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198535,14 +198550,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83190] = 6, + [83047] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(4449), 1, + ACTIONS(1728), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2309), 1, + anon_sym_extends, + ACTIONS(3907), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3904), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(1730), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198558,24 +198595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - 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, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198588,9 +198608,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, @@ -198598,14 +198616,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83259] = 6, + [83122] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(4419), 1, anon_sym_EQ, - ACTIONS(4429), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198621,12 +198637,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 17, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -198637,8 +198654,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(3844), 22, + anon_sym_extends, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198661,21 +198678,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83328] = 8, + [83189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, - anon_sym_EQ_GT, - ACTIONS(4312), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4526), 1, - anon_sym_QMARK, - ACTIONS(4523), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3848), 13, + ACTIONS(4406), 1, + anon_sym_EQ_GT, + ACTIONS(3846), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -198688,7 +198700,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198704,13 +198717,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3842), 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, @@ -198726,14 +198741,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83401] = 6, + [83258] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1996), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(4423), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(4459), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198749,11 +198764,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(3846), 16, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198765,8 +198780,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 22, + anon_sym_implements, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198789,17 +198804,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83470] = 3, + [83327] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3822), 24, - anon_sym_STAR, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3916), 1, + anon_sym_COMMA, + ACTIONS(4680), 1, anon_sym_EQ, - anon_sym_LBRACE, + ACTIONS(4682), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 11, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 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, @@ -198807,9 +198865,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, @@ -198817,56 +198873,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3824), 31, + [83408] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4680), 1, + anon_sym_EQ, + ACTIONS(4685), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3846), 14, 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_extends, - anon_sym_LBRACE_PIPE, - [83533] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(4647), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3848), 14, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -198877,7 +198901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198893,7 +198917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198915,30 +198939,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83608] = 6, + [83483] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4423), 1, anon_sym_EQ, - ACTIONS(4386), 1, - anon_sym_EQ_GT, ACTIONS(3848), 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(3864), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198954,9 +198960,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 23, - anon_sym_STAR, + ACTIONS(3846), 17, + 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, + anon_sym_extends, + ACTIONS(3842), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -198978,14 +199001,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83677] = 6, + [83550] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 1, + ACTIONS(4443), 1, anon_sym_EQ, - ACTIONS(4449), 1, - anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199001,11 +199022,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - sym__automatic_semicolon, + ACTIONS(3846), 16, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199018,8 +199038,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + anon_sym_LBRACE_PIPE, + ACTIONS(3842), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -199041,102 +199063,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83746] = 31, + [83617] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3646), 1, - anon_sym_LBRACK, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3995), 1, - anon_sym_STAR, - ACTIONS(4676), 1, - anon_sym_export, - ACTIONS(4680), 1, - anon_sym_async, - ACTIONS(4682), 1, - anon_sym_static, - ACTIONS(4684), 1, - anon_sym_readonly, - STATE(3826), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(4003), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4678), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4686), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4688), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3933), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5621), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4539), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4674), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [83865] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4423), 1, + ACTIONS(4412), 1, anon_sym_EQ, - ACTIONS(4429), 1, + ACTIONS(4465), 1, anon_sym_EQ_GT, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199152,12 +199086,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199168,8 +199102,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(3844), 22, + anon_sym_extends, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199192,12 +199126,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83934] = 5, + [83686] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4517), 1, + ACTIONS(4408), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199213,7 +199147,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(3846), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -199231,7 +199165,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199254,27 +199188,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84001] = 10, + [83753] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 1, + ACTIONS(1986), 1, anon_sym_EQ, - ACTIONS(1744), 1, + ACTIONS(1988), 1, anon_sym_EQ_GT, - ACTIONS(2305), 1, - anon_sym_extends, - ACTIONS(3915), 1, - anon_sym_LBRACK, - ACTIONS(4264), 2, + ACTIONS(3904), 3, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3918), 3, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 12, + ACTIONS(1730), 13, anon_sym_as, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199285,7 +199217,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199301,13 +199233,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(1713), 19, 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, @@ -199321,12 +199253,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84078] = 3, + [83826] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3538), 24, - anon_sym_STAR, + ACTIONS(4404), 1, anon_sym_EQ, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3846), 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, + 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(3842), 23, + anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -199349,13 +199315,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3540), 31, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [83893] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2281), 1, + anon_sym_EQ, + ACTIONS(2283), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199371,6 +199338,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 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, @@ -199379,16 +199354,40 @@ 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, - [84141] = 6, + anon_sym_implements, + ACTIONS(1713), 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, + [83962] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2008), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(4106), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(4651), 1, + anon_sym_in, + ACTIONS(4654), 1, + anon_sym_of, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199404,12 +199403,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(3846), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199420,11 +199420,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -199444,20 +199442,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84210] = 8, + [84033] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(1744), 1, + ACTIONS(4453), 1, anon_sym_EQ_GT, - ACTIONS(3035), 1, - anon_sym_QMARK, - ACTIONS(1733), 3, + ACTIONS(4603), 1, + anon_sym_RBRACK, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4691), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4693), 1, + anon_sym_in, + ACTIONS(4695), 1, anon_sym_COLON, - ACTIONS(1746), 13, + ACTIONS(3846), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -199471,7 +199471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199487,13 +199487,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 21, + ACTIONS(3842), 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, @@ -199509,16 +199509,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84283] = 7, + [84110] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, + ACTIONS(1717), 1, + anon_sym_RBRACK, + ACTIONS(2030), 1, + anon_sym_EQ_GT, + ACTIONS(3103), 1, + anon_sym_COMMA, + ACTIONS(3109), 1, anon_sym_EQ, - ACTIONS(4663), 1, - anon_sym_in, - ACTIONS(4666), 1, - anon_sym_of, - ACTIONS(3864), 15, + ACTIONS(3112), 1, + anon_sym_COLON, + ACTIONS(1730), 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(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199534,26 +199552,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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(3844), 21, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -199573,72 +199575,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84354] = 5, + [84185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3844), 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, - [84421] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3550), 24, + ACTIONS(3828), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -199663,7 +199603,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3552), 31, + ACTIONS(3830), 31, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -199695,37 +199635,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [84484] = 9, + [84248] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2085), 1, anon_sym_EQ, - ACTIONS(2315), 1, + ACTIONS(2087), 1, anon_sym_EQ_GT, - ACTIONS(3915), 1, - anon_sym_LBRACK, - ACTIONS(2305), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 13, - anon_sym_as, + ACTIONS(3850), 1, + sym_identifier, + ACTIONS(1730), 13, + sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199741,11 +199674,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(1713), 24, 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, @@ -199753,7 +199688,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, @@ -199761,12 +199698,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84559] = 5, + anon_sym_instanceof, + [84319] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(2085), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(2087), 1, + anon_sym_EQ_GT, + ACTIONS(4697), 1, + sym_identifier, + ACTIONS(1730), 13, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199782,26 +199738,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 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, - 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(3844), 23, + ACTIONS(1713), 24, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -199823,14 +199762,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84626] = 6, + anon_sym_instanceof, + [84390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 1, + ACTIONS(4467), 1, anon_sym_EQ, - ACTIONS(1996), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199846,11 +199784,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(3846), 17, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199863,7 +199802,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199886,14 +199825,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84695] = 6, + [84457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2006), 1, + ACTIONS(3832), 24, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(2008), 1, - anon_sym_EQ_GT, - ACTIONS(1750), 15, + 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(3834), 31, + 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, @@ -199909,12 +199875,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, - anon_sym_as, - 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, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [84520] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1710), 1, + anon_sym_EQ, + ACTIONS(1728), 1, + anon_sym_EQ_GT, + ACTIONS(2309), 1, + anon_sym_extends, + ACTIONS(3904), 1, anon_sym_LBRACK, + ACTIONS(3972), 2, + anon_sym_COMMA, anon_sym_RBRACK, + ACTIONS(3907), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 12, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199925,23 +199916,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1729), 22, + ACTIONS(1734), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1713), 19, 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, @@ -199949,41 +199952,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84764] = 3, + [84597] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3826), 24, - anon_sym_STAR, + ACTIONS(1982), 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_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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(3828), 31, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1984), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199999,6 +199975,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1730), 16, + anon_sym_as, + anon_sym_RBRACE, + 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, @@ -200008,15 +199992,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [84827] = 6, + ACTIONS(1713), 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, + [84666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2154), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(1986), 1, anon_sym_EQ, - ACTIONS(1750), 15, + ACTIONS(1988), 1, + anon_sym_EQ_GT, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200032,11 +200038,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1746), 16, + ACTIONS(1730), 16, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200048,8 +200054,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(1729), 22, + anon_sym_extends, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200072,10 +200078,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84896] = 3, + [84735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3830), 24, + ACTIONS(3836), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -200100,7 +200106,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3832), 31, + ACTIONS(3838), 31, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -200132,35 +200138,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [84959] = 9, + [84798] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3879), 1, - anon_sym_LT, - ACTIONS(4701), 1, + ACTIONS(1984), 1, anon_sym_EQ_GT, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(3848), 14, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200176,10 +200161,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(1730), 16, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -200198,36 +200201,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85034] = 9, + [84867] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1744), 1, + ACTIONS(1988), 1, anon_sym_EQ_GT, - ACTIONS(1946), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(2305), 1, - anon_sym_extends, - ACTIONS(3918), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3915), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(1746), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200243,7 +200224,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 20, + ACTIONS(1730), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200256,7 +200254,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, @@ -200264,30 +200264,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85109] = 7, + [84936] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, + ACTIONS(1960), 1, anon_sym_EQ, - ACTIONS(2150), 1, + ACTIONS(1962), 1, anon_sym_EQ_GT, - ACTIONS(3842), 1, - sym_identifier, - ACTIONS(1746), 13, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200303,9 +200287,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, - anon_sym_STAR, + ACTIONS(1730), 16, + 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, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1713), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -200327,13 +200327,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [85180] = 5, + [85005] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(4435), 1, + anon_sym_EQ_GT, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200349,10 +200350,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 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, @@ -200365,10 +200367,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(3844), 23, + ACTIONS(3842), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -200390,10 +200390,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85247] = 3, + [85074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3838), 24, + ACTIONS(3820), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -200418,7 +200418,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3840), 31, + ACTIONS(3822), 31, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -200450,12 +200450,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [85310] = 5, + [85137] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(2336), 1, + anon_sym_EQ_GT, + ACTIONS(3904), 1, + anon_sym_LBRACK, + ACTIONS(2309), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 13, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200471,30 +200496,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - 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, - anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 19, 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, @@ -200502,9 +200508,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, @@ -200512,54 +200516,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85377] = 9, + [85212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(4699), 1, - anon_sym_EQ, - ACTIONS(4701), 1, - anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3848), 14, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3824), 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, @@ -200578,30 +200544,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85452] = 7, + ACTIONS(3826), 31, + 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_extends, + anon_sym_LBRACE_PIPE, + [85275] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, - anon_sym_EQ, - ACTIONS(2150), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4685), 1, anon_sym_EQ_GT, - ACTIONS(4709), 1, - sym_identifier, - ACTIONS(1746), 13, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4699), 1, + anon_sym_EQ, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3854), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_extends, + ACTIONS(3860), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3846), 11, + anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200617,13 +200625,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 24, + ACTIONS(3842), 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, @@ -200631,9 +200636,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, @@ -200641,13 +200644,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [85523] = 5, + [85354] = 31, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3644), 1, + anon_sym_LBRACK, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4046), 1, + anon_sym_STAR, + ACTIONS(4666), 1, + anon_sym_export, + ACTIONS(4670), 1, + anon_sym_async, + ACTIONS(4672), 1, + anon_sym_static, + ACTIONS(4674), 1, + anon_sym_readonly, + STATE(3833), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(4054), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4668), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4676), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4678), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3913), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5633), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4562), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4664), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [85473] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1962), 1, + anon_sym_EQ_GT, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200663,10 +200755,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, + ACTIONS(1730), 16, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -200681,7 +200772,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200704,12 +200795,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85590] = 5, + [85542] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4505), 1, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4685), 1, + anon_sym_EQ_GT, + ACTIONS(4699), 1, anon_sym_EQ, - ACTIONS(3864), 15, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3846), 14, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200725,14 +200839,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 17, - sym__automatic_semicolon, + ACTIONS(3842), 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, + [85617] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3873), 1, + anon_sym_LT, + ACTIONS(4685), 1, + anon_sym_EQ_GT, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(3846), 14, 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, @@ -200743,11 +200889,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 22, + ACTIONS(3848), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -200766,12 +200927,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85657] = 5, + [85692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4658), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200787,10 +200948,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(3846), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -200803,10 +200965,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(3844), 23, + ACTIONS(3842), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -200828,85 +200988,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85724] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3834), 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(3836), 31, - 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_extends, - anon_sym_LBRACE_PIPE, - [85787] = 8, + [85758] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 1, - anon_sym_EQ, - ACTIONS(1996), 1, + ACTIONS(3921), 1, anon_sym_EQ_GT, - ACTIONS(3915), 3, + ACTIONS(4263), 1, + anon_sym_EQ, + ACTIONS(4603), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 13, + anon_sym_RBRACK, + ACTIONS(3846), 13, anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -200917,7 +201012,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200933,11 +201028,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(3842), 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, @@ -200945,7 +201041,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, @@ -200953,18 +201051,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85860] = 6, + [85828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4701), 1, + ACTIONS(4453), 1, anon_sym_EQ_GT, - ACTIONS(3848), 15, + ACTIONS(3846), 15, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -200975,8 +201074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200992,7 +201090,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201015,17 +201113,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85928] = 7, + [85896] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1726), 1, - anon_sym_EQ, - ACTIONS(1744), 1, + ACTIONS(4453), 1, anon_sym_EQ_GT, - ACTIONS(1733), 2, - anon_sym_COMMA, + ACTIONS(4603), 1, anon_sym_RBRACK, - ACTIONS(1746), 13, + ACTIONS(4688), 1, + anon_sym_EQ, + ACTIONS(4691), 1, + anon_sym_COMMA, + ACTIONS(3846), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -201039,7 +201138,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201055,7 +201154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201078,17 +201177,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85998] = 6, + [85968] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(2085), 1, anon_sym_EQ, - ACTIONS(2200), 1, + ACTIONS(2087), 1, anon_sym_EQ_GT, - ACTIONS(1746), 15, + ACTIONS(1730), 15, + 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, @@ -201100,8 +201200,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201117,7 +201216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201140,17 +201239,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86066] = 7, + [86036] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, + ACTIONS(1717), 1, + anon_sym_RBRACK, + ACTIONS(2030), 1, anon_sym_EQ_GT, - ACTIONS(4529), 1, - anon_sym_EQ, - ACTIONS(4711), 2, + ACTIONS(3103), 1, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3848), 13, + ACTIONS(3109), 1, + anon_sym_EQ, + ACTIONS(1730), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -201164,7 +201264,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201180,7 +201280,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201203,19 +201303,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86136] = 6, + [86108] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, + ACTIONS(4419), 1, anon_sym_EQ, - ACTIONS(2150), 1, + ACTIONS(4453), 1, anon_sym_EQ_GT, - ACTIONS(1746), 15, - sym__automatic_semicolon, + ACTIONS(4693), 1, + anon_sym_in, + ACTIONS(4695), 1, + anon_sym_COLON, + ACTIONS(3846), 14, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -201226,7 +201329,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201242,10 +201345,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -201265,12 +201367,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86204] = 5, + [86180] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(2028), 1, anon_sym_EQ, - ACTIONS(3864), 15, + ACTIONS(2030), 1, + anon_sym_EQ_GT, + ACTIONS(3112), 1, + anon_sym_COLON, + ACTIONS(1730), 14, + 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(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201286,24 +201407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201326,18 +201430,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86270] = 6, + [86250] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, - anon_sym_EQ, - ACTIONS(4408), 1, + ACTIONS(1728), 1, anon_sym_EQ_GT, - ACTIONS(3848), 15, - sym__automatic_semicolon, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(1717), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1730), 13, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201349,7 +201454,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201365,7 +201470,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201388,19 +201493,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86338] = 6, + [86320] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(2028), 1, anon_sym_EQ, - ACTIONS(4408), 1, + ACTIONS(2030), 1, anon_sym_EQ_GT, - ACTIONS(3848), 15, - sym__automatic_semicolon, + ACTIONS(1730), 15, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -201411,7 +201516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201427,7 +201532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201450,16 +201555,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86406] = 6, + [86388] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(3883), 1, anon_sym_EQ, - ACTIONS(1746), 15, - anon_sym_as, + ACTIONS(3921), 1, + anon_sym_EQ_GT, + ACTIONS(4603), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3846), 13, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -201472,8 +201579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201489,7 +201595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201512,23 +201618,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86474] = 9, + [86458] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 1, + ACTIONS(2309), 1, anon_sym_COMMA, - ACTIONS(2333), 1, + ACTIONS(2313), 1, anon_sym_EQ, - ACTIONS(2335), 1, + ACTIONS(2315), 1, anon_sym_EQ_GT, - ACTIONS(3915), 2, + ACTIONS(3904), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3918), 3, + ACTIONS(3907), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1746), 12, + ACTIONS(1730), 12, anon_sym_as, anon_sym_LPAREN, anon_sym_DOT, @@ -201541,7 +201647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201557,7 +201663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(1713), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201577,33 +201683,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86548] = 8, + [86532] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, + ACTIONS(4699), 1, anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_EQ_GT, - ACTIONS(4695), 1, - anon_sym_in, - ACTIONS(4714), 1, - anon_sym_COLON, - ACTIONS(3848), 14, - 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(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201619,9 +201704,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3846), 16, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3842), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -201641,20 +201744,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86620] = 7, + [86598] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(2046), 1, anon_sym_EQ, - ACTIONS(3913), 1, + ACTIONS(2048), 1, anon_sym_EQ_GT, - ACTIONS(4711), 2, + ACTIONS(3904), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3848), 13, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3907), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1730), 12, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -201665,7 +201772,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201681,12 +201788,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 19, 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, @@ -201694,9 +201800,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, @@ -201704,19 +201808,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86690] = 6, + [86670] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2030), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(3883), 1, anon_sym_EQ, - ACTIONS(1746), 15, - anon_sym_as, + ACTIONS(3921), 1, + anon_sym_EQ_GT, + ACTIONS(4701), 2, + anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(3846), 13, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -201727,7 +201832,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201743,7 +201848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201766,23 +201871,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86758] = 9, + [86740] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3879), 1, - anon_sym_LT, - ACTIONS(4706), 1, + ACTIONS(2048), 1, anon_sym_EQ_GT, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(3848), 13, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1730), 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, @@ -201793,7 +201894,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201809,10 +201910,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -201831,24 +201933,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86832] = 8, + [86808] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2198), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(2200), 1, + ACTIONS(4685), 1, anon_sym_EQ_GT, - ACTIONS(3915), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3918), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1746), 12, + ACTIONS(3846), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -201859,7 +201955,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + anon_sym_extends, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201875,11 +201972,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 19, + ACTIONS(3842), 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, @@ -201887,7 +201985,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, @@ -201895,20 +201995,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86904] = 7, + [86876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_EQ, - ACTIONS(2030), 1, + ACTIONS(4685), 1, anon_sym_EQ_GT, - ACTIONS(3134), 1, - anon_sym_COLON, - ACTIONS(1746), 14, + ACTIONS(4699), 1, + anon_sym_EQ, + ACTIONS(3846), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -201919,7 +202017,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + anon_sym_extends, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201935,7 +202034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -201958,20 +202057,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86974] = 8, + [86944] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1733), 1, - anon_sym_RBRACK, - ACTIONS(2030), 1, + ACTIONS(2087), 1, anon_sym_EQ_GT, - ACTIONS(3095), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(3098), 1, - anon_sym_COMMA, - ACTIONS(1746), 13, + ACTIONS(1730), 15, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -201983,7 +202080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -201999,7 +202096,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202022,18 +202119,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87046] = 8, + [87012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4433), 1, - anon_sym_EQ_GT, - ACTIONS(4523), 1, - anon_sym_RBRACK, - ACTIONS(4690), 1, + ACTIONS(1710), 1, anon_sym_EQ, - ACTIONS(4693), 1, + ACTIONS(1728), 1, + anon_sym_EQ_GT, + ACTIONS(1717), 2, anon_sym_COMMA, - ACTIONS(3848), 13, + anon_sym_RBRACK, + ACTIONS(1730), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -202047,7 +202143,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202063,7 +202159,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202086,23 +202182,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87118] = 9, + [87082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3859), 1, - anon_sym_DOT, - ACTIONS(3872), 1, + ACTIONS(4467), 1, anon_sym_EQ, - ACTIONS(4706), 1, + ACTIONS(4571), 1, anon_sym_EQ_GT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3848), 13, + ACTIONS(3846), 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, @@ -202112,8 +202205,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202129,10 +202221,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -202151,22 +202244,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87192] = 8, + [87150] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, + ACTIONS(2046), 1, anon_sym_EQ, - ACTIONS(4433), 1, + ACTIONS(2048), 1, anon_sym_EQ_GT, - ACTIONS(4695), 1, - anon_sym_in, - ACTIONS(4697), 1, - anon_sym_COLON, - ACTIONS(3848), 14, + ACTIONS(1730), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -202177,7 +202266,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + anon_sym_extends, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202193,9 +202283,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -202215,14 +202306,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87264] = 6, + [87218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2150), 1, - anon_sym_EQ_GT, - ACTIONS(2313), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(1746), 15, + ACTIONS(4571), 1, + anon_sym_EQ_GT, + ACTIONS(3846), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -202238,7 +202329,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202254,7 +202345,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202277,81 +202368,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87332] = 5, + [87286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(4419), 1, anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3844), 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, - [87398] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1744), 1, + ACTIONS(4453), 1, anon_sym_EQ_GT, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(1733), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1746), 13, + ACTIONS(3846), 15, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -202362,7 +202391,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202378,7 +202407,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202401,30 +202430,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87468] = 6, + [87354] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(4680), 1, anon_sym_EQ, - ACTIONS(4433), 1, - anon_sym_EQ_GT, ACTIONS(3848), 15, - anon_sym_as, - anon_sym_RBRACE, - 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(3864), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202440,7 +202451,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(3846), 16, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202463,18 +202491,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87536] = 6, + [87420] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2200), 1, - anon_sym_EQ_GT, - ACTIONS(2333), 1, + ACTIONS(4419), 1, anon_sym_EQ, - ACTIONS(1746), 15, + ACTIONS(4453), 1, + anon_sym_EQ_GT, + ACTIONS(4693), 1, + anon_sym_in, + ACTIONS(4704), 1, + anon_sym_COLON, + ACTIONS(3846), 14, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -202485,8 +202517,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202502,10 +202533,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -202525,20 +202555,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87604] = 7, + [87492] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, + ACTIONS(2028), 1, anon_sym_EQ, - ACTIONS(3913), 1, + ACTIONS(2030), 1, anon_sym_EQ_GT, - ACTIONS(4523), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3848), 13, + ACTIONS(3132), 1, + anon_sym_COLON, + ACTIONS(1730), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -202549,7 +202579,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202565,7 +202595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202588,32 +202618,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87674] = 5, + [87562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 1, + ACTIONS(2048), 1, + anon_sym_EQ_GT, + ACTIONS(2313), 1, anon_sym_EQ, - ACTIONS(3864), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3848), 16, + ACTIONS(1730), 15, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -202626,54 +202641,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3844), 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, - [87740] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2028), 1, - anon_sym_EQ, - ACTIONS(2030), 1, - anon_sym_EQ_GT, - ACTIONS(3100), 1, - anon_sym_COLON, - ACTIONS(1746), 14, - 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(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202689,7 +202657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202712,19 +202680,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87810] = 6, + [87630] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4701), 1, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(3873), 1, + anon_sym_LT, + ACTIONS(4682), 1, anon_sym_EQ_GT, - ACTIONS(3848), 15, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(3846), 13, 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, @@ -202735,7 +202707,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202751,11 +202723,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -202774,14 +202745,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87878] = 6, + [87704] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_EQ, - ACTIONS(4433), 1, + ACTIONS(2030), 1, anon_sym_EQ_GT, - ACTIONS(3848), 15, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1730), 15, anon_sym_as, anon_sym_RBRACE, anon_sym_LPAREN, @@ -202797,7 +202768,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202813,7 +202784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202836,21 +202807,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87946] = 7, + [87772] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3913), 1, - anon_sym_EQ_GT, - ACTIONS(4312), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4523), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3848), 13, + ACTIONS(3857), 1, + anon_sym_LT, + ACTIONS(3863), 1, + anon_sym_DOT, + ACTIONS(4682), 1, + anon_sym_EQ_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3846), 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, @@ -202860,7 +202833,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + anon_sym_extends, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202876,11 +202850,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -202899,19 +202872,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88016] = 6, + [87846] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2028), 1, - anon_sym_EQ, - ACTIONS(2030), 1, + ACTIONS(3921), 1, anon_sym_EQ_GT, - ACTIONS(1746), 15, + ACTIONS(4493), 1, + anon_sym_EQ, + ACTIONS(4701), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3846), 13, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -202922,7 +202896,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202938,7 +202912,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -202961,14 +202935,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88084] = 6, + [87916] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(2313), 1, anon_sym_EQ, - ACTIONS(4706), 1, + ACTIONS(2315), 1, anon_sym_EQ_GT, - ACTIONS(3848), 14, + ACTIONS(1730), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -202983,7 +202957,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -202999,7 +202973,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203022,14 +202996,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88151] = 6, + [87983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, - anon_sym_EQ, - ACTIONS(2335), 1, + ACTIONS(2315), 1, anon_sym_EQ_GT, - ACTIONS(1746), 14, + ACTIONS(2334), 1, + anon_sym_EQ, + ACTIONS(1730), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -203044,7 +203018,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203060,7 +203034,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203083,18 +203057,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88218] = 8, + [88050] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(2315), 1, + ACTIONS(2336), 1, anon_sym_EQ_GT, - ACTIONS(3066), 1, + ACTIONS(3076), 1, anon_sym_in, - ACTIONS(4659), 1, + ACTIONS(4656), 1, anon_sym_of, - ACTIONS(1746), 13, + ACTIONS(1730), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -203108,7 +203082,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203124,7 +203098,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 21, + ACTIONS(1713), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -203146,20 +203120,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88289] = 8, + [88121] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4663), 1, - anon_sym_in, - ACTIONS(4666), 1, - anon_sym_of, - ACTIONS(4668), 1, + ACTIONS(4645), 1, anon_sym_EQ_GT, - ACTIONS(3848), 13, + ACTIONS(3846), 14, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203171,7 +203142,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203187,9 +203158,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -203209,17 +203181,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88360] = 6, + [88188] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4682), 1, anon_sym_EQ_GT, - ACTIONS(3848), 14, + ACTIONS(3846), 14, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -203231,7 +203202,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + anon_sym_extends, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203247,7 +203219,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203270,14 +203242,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88427] = 6, + [88255] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, + ACTIONS(4680), 1, anon_sym_EQ, - ACTIONS(4706), 1, + ACTIONS(4682), 1, anon_sym_EQ_GT, - ACTIONS(3848), 14, + ACTIONS(3846), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -203292,7 +203264,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203308,7 +203280,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 22, + ACTIONS(3842), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203331,14 +203303,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88494] = 6, + [88322] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2333), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(2335), 1, + ACTIONS(4645), 1, anon_sym_EQ_GT, - ACTIONS(1746), 14, + ACTIONS(4651), 1, + anon_sym_in, + ACTIONS(4654), 1, + anon_sym_of, + ACTIONS(3846), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -203352,8 +203328,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1750), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203369,10 +203344,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -203392,14 +203366,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88561] = 6, + [88393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2313), 1, + ACTIONS(2334), 1, anon_sym_EQ, - ACTIONS(2315), 1, + ACTIONS(2336), 1, anon_sym_EQ_GT, - ACTIONS(1746), 14, + ACTIONS(1730), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_COLON, @@ -203414,7 +203388,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1750), 15, + ACTIONS(1734), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203430,7 +203404,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1729), 22, + ACTIONS(1713), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -203453,16 +203427,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88628] = 7, + [88460] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(4663), 1, + ACTIONS(4651), 1, anon_sym_in, - ACTIONS(4666), 1, + ACTIONS(4654), 1, anon_sym_of, - ACTIONS(3848), 13, + ACTIONS(3846), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -203476,7 +203450,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3864), 15, + ACTIONS(3848), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -203492,7 +203466,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3844), 21, + ACTIONS(3842), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -203514,155 +203488,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88696] = 33, + [88528] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4729), 1, + ACTIONS(4719), 1, anon_sym_RBRACE, - ACTIONS(4734), 1, - anon_sym_module, - STATE(3864), 1, - sym_decorator, - STATE(4600), 1, - aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, - sym_declaration, - STATE(4996), 1, - sym_export_clause, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5381), 1, - sym_namespace_import, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4656), 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, - [88814] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2916), 1, - anon_sym_namespace, - ACTIONS(2918), 1, - anon_sym_import, - ACTIONS(2920), 1, - anon_sym_var, - ACTIONS(2922), 1, - anon_sym_let, - ACTIONS(2924), 1, - anon_sym_const, - ACTIONS(2926), 1, - anon_sym_class, - ACTIONS(2928), 1, - anon_sym_async, - ACTIONS(2930), 1, - anon_sym_function, - ACTIONS(2932), 1, - anon_sym_declare, - ACTIONS(2936), 1, - anon_sym_abstract, - ACTIONS(2940), 1, - anon_sym_interface, - ACTIONS(2942), 1, - anon_sym_enum, - ACTIONS(4716), 1, - anon_sym_STAR, - ACTIONS(4718), 1, - anon_sym_default, - ACTIONS(4720), 1, - anon_sym_type, - ACTIONS(4722), 1, - anon_sym_EQ, ACTIONS(4724), 1, - anon_sym_as, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4734), 1, anon_sym_module, - ACTIONS(4736), 1, - anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - STATE(5381), 1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -203670,7 +203559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -203684,70 +203573,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88932] = 33, + [88646] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, - ACTIONS(4739), 1, + ACTIONS(4726), 1, anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5381), 1, + STATE(5319), 1, + aux_sym_object_repeat1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -203755,7 +203644,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -203769,70 +203658,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [89050] = 33, + [88764] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, - ACTIONS(4742), 1, + ACTIONS(4729), 1, anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5381), 1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -203840,7 +203729,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -203854,70 +203743,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [89168] = 33, + [88882] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, - ACTIONS(4745), 1, + ACTIONS(4732), 1, anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5381), 1, + STATE(5319), 1, + aux_sym_object_repeat1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -203925,7 +203814,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -203939,70 +203828,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [89286] = 33, + [89000] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, - ACTIONS(4748), 1, + ACTIONS(4735), 1, anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5381), 1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -204010,7 +203899,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -204024,70 +203913,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [89404] = 33, + [89118] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, - ACTIONS(4751), 1, + ACTIONS(4738), 1, anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5381), 1, + STATE(5244), 1, + aux_sym_object_repeat1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -204095,7 +203984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -204109,70 +203998,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [89522] = 33, + [89236] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, - ACTIONS(4754), 1, + ACTIONS(4741), 1, anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5381), 1, + STATE(5319), 1, + aux_sym_object_repeat1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -204180,7 +204069,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -204194,70 +204083,155 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [89640] = 33, + [89354] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, - ACTIONS(4757), 1, + ACTIONS(4744), 1, anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, + STATE(4640), 1, + sym_declaration, + STATE(4696), 1, sym_internal_module, - STATE(4635), 1, + STATE(5083), 1, + sym_export_clause, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + STATE(5390), 1, + sym_namespace_import, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4698), 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, + [89472] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2914), 1, + anon_sym_namespace, + ACTIONS(2916), 1, + anon_sym_import, + ACTIONS(2918), 1, + anon_sym_var, + ACTIONS(2920), 1, + anon_sym_let, + ACTIONS(2922), 1, + anon_sym_const, + ACTIONS(2924), 1, + anon_sym_class, + ACTIONS(2926), 1, + anon_sym_async, + ACTIONS(2928), 1, + anon_sym_function, + ACTIONS(2930), 1, + anon_sym_declare, + ACTIONS(2934), 1, + anon_sym_abstract, + ACTIONS(2938), 1, + anon_sym_interface, + ACTIONS(2940), 1, + anon_sym_enum, + ACTIONS(4706), 1, + anon_sym_STAR, + ACTIONS(4708), 1, + anon_sym_default, + ACTIONS(4710), 1, + anon_sym_type, + ACTIONS(4712), 1, + anon_sym_EQ, + ACTIONS(4714), 1, + anon_sym_as, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4724), 1, + anon_sym_module, + ACTIONS(4747), 1, + anon_sym_RBRACE, + STATE(3864), 1, + sym_decorator, + STATE(4598), 1, + aux_sym_export_statement_repeat1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - STATE(5381), 1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -204265,7 +204239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -204279,75 +204253,75 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [89758] = 28, + [89590] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4764), 2, + ACTIONS(3642), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4766), 2, + ACTIONS(3662), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4548), 6, + STATE(4557), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -204358,75 +204332,138 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89865] = 28, + [89697] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4768), 1, + sym_identifier, + ACTIONS(4770), 1, + anon_sym_STAR, + ACTIONS(4776), 1, + anon_sym_LBRACE, + STATE(5546), 1, + sym_import_clause, + ACTIONS(4772), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5549), 2, + sym_string, + sym_import_require_clause, + STATE(5970), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(4774), 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(4778), 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, + [89772] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4782), 2, + ACTIONS(4780), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4784), 2, + ACTIONS(4782), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4506), 6, + STATE(4581), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -204437,158 +204474,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89972] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2521), 1, - anon_sym_LBRACE, - ACTIONS(2916), 1, - anon_sym_namespace, - ACTIONS(2918), 1, - anon_sym_import, - ACTIONS(2920), 1, - anon_sym_var, - ACTIONS(2922), 1, - anon_sym_let, - ACTIONS(2924), 1, - anon_sym_const, - ACTIONS(2926), 1, - anon_sym_class, - ACTIONS(2928), 1, - anon_sym_async, - ACTIONS(2930), 1, - anon_sym_function, - ACTIONS(2932), 1, - anon_sym_declare, - ACTIONS(2936), 1, - anon_sym_abstract, - ACTIONS(2940), 1, - anon_sym_interface, - ACTIONS(2942), 1, - anon_sym_enum, - ACTIONS(4716), 1, - anon_sym_STAR, - ACTIONS(4718), 1, - anon_sym_default, - ACTIONS(4720), 1, - anon_sym_type, - ACTIONS(4722), 1, - anon_sym_EQ, - ACTIONS(4724), 1, - anon_sym_as, - ACTIONS(4734), 1, - anon_sym_module, - ACTIONS(4786), 1, - anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_RBRACE, - STATE(3864), 1, - sym_decorator, - STATE(4600), 1, - aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, - sym_declaration, - STATE(4996), 1, - sym_export_clause, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5381), 1, - sym_namespace_import, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4656), 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, - [90087] = 28, + [89879] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4792), 2, + ACTIONS(4784), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4794), 2, + ACTIONS(4786), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4427), 6, + STATE(4527), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -204599,138 +204553,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90194] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4796), 1, - sym_identifier, - ACTIONS(4798), 1, - anon_sym_STAR, - ACTIONS(4804), 1, - anon_sym_LBRACE, - STATE(5701), 1, - sym_import_clause, - ACTIONS(4800), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5692), 2, - sym_string, - sym_import_require_clause, - STATE(5748), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(4802), 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(4806), 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, - [90269] = 28, + [89986] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(3644), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3664), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4780), 3, + ACTIONS(4788), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4790), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4581), 6, + STATE(4481), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -204741,75 +204632,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90376] = 28, + [90093] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4808), 2, + ACTIONS(4792), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4810), 2, + ACTIONS(4794), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4422), 6, + STATE(4465), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -204820,46 +204711,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90483] = 28, + [90200] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, ACTIONS(3816), 2, anon_sym_COMMA, @@ -204867,28 +204758,28 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(3818), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4571), 6, + STATE(4452), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -204899,75 +204790,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90590] = 28, + [90307] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4812), 2, + ACTIONS(4796), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4814), 2, + ACTIONS(4798), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4554), 6, + STATE(4476), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -204978,65 +204869,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90697] = 30, + [90414] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, + ACTIONS(4800), 1, + anon_sym_COMMA, + ACTIONS(4803), 1, + anon_sym_RBRACE, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5381), 1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4816), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -205044,7 +204938,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -205058,65 +204952,65 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [90807] = 30, + [90529] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4722), 1, + ACTIONS(4712), 1, anon_sym_EQ, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5381), 1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4820), 2, + ACTIONS(4806), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -205124,7 +205018,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -205138,62 +205032,62 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [90917] = 29, + [90639] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2521), 1, + ACTIONS(2453), 1, anon_sym_LBRACE, - ACTIONS(2916), 1, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2936), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2940), 1, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(4716), 1, + ACTIONS(4706), 1, anon_sym_STAR, - ACTIONS(4718), 1, + ACTIONS(4708), 1, anon_sym_default, - ACTIONS(4720), 1, + ACTIONS(4710), 1, anon_sym_type, - ACTIONS(4724), 1, + ACTIONS(4714), 1, anon_sym_as, - ACTIONS(4734), 1, + ACTIONS(4724), 1, anon_sym_module, - ACTIONS(4823), 1, + ACTIONS(4809), 1, anon_sym_EQ, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4634), 1, - sym_internal_module, - STATE(4635), 1, + STATE(4640), 1, sym_declaration, - STATE(4996), 1, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, sym_export_clause, - STATE(5381), 1, + STATE(5390), 1, sym_namespace_import, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -205203,7 +205097,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -205217,131 +205111,152 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [91025] = 10, + [90747] = 30, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4833), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4837), 1, - anon_sym_QMARK_DOT, - STATE(2170), 1, - sym_type_arguments, - STATE(2332), 1, - sym_arguments, - ACTIONS(4825), 14, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(2914), 1, + anon_sym_namespace, + ACTIONS(2916), 1, + anon_sym_import, + ACTIONS(2918), 1, + anon_sym_var, + ACTIONS(2920), 1, + anon_sym_let, + ACTIONS(2922), 1, + anon_sym_const, + ACTIONS(2924), 1, + anon_sym_class, + ACTIONS(2926), 1, + anon_sym_async, + ACTIONS(2928), 1, + anon_sym_function, + ACTIONS(2930), 1, + anon_sym_declare, + ACTIONS(2934), 1, + anon_sym_abstract, + ACTIONS(2938), 1, + anon_sym_interface, + ACTIONS(2940), 1, + anon_sym_enum, + ACTIONS(4706), 1, anon_sym_STAR, + ACTIONS(4708), 1, + anon_sym_default, + ACTIONS(4710), 1, + anon_sym_type, + ACTIONS(4712), 1, 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4827), 26, + ACTIONS(4714), 1, anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4724), 1, + anon_sym_module, + STATE(3864), 1, + sym_decorator, + STATE(4598), 1, + aux_sym_export_statement_repeat1, + STATE(4640), 1, + sym_declaration, + STATE(4696), 1, + sym_internal_module, + STATE(5083), 1, + sym_export_clause, + STATE(5390), 1, + sym_namespace_import, + ACTIONS(4811), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [91094] = 27, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4698), 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, + [90857] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4839), 2, + ACTIONS(4815), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205352,72 +205267,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91197] = 27, + [90960] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4841), 2, + ACTIONS(4817), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205428,72 +205343,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91300] = 27, + [91063] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4843), 2, + ACTIONS(4819), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205504,72 +205419,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91403] = 27, + [91166] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4845), 2, + ACTIONS(4821), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205580,72 +205495,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91506] = 27, + [91269] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3995), 1, - anon_sym_STAR, - ACTIONS(4762), 1, - anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, - anon_sym_async, - ACTIONS(4774), 1, - anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4831), 1, + anon_sym_LT, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_QMARK_DOT, + STATE(2169), 1, + sym_type_arguments, + STATE(2314), 1, + sym_arguments, + ACTIONS(4823), 14, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4825), 26, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [91338] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4046), 1, + anon_sym_STAR, + ACTIONS(4752), 1, + anon_sym_export, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_async, + ACTIONS(4760), 1, + anon_sym_static, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4847), 2, + ACTIONS(4837), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205656,72 +205630,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91609] = 27, + [91441] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4849), 2, + ACTIONS(4839), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205732,72 +205706,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91712] = 27, + [91544] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4851), 2, + ACTIONS(4841), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205808,72 +205782,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91815] = 27, + [91647] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4853), 2, + ACTIONS(4843), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205884,72 +205858,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91918] = 27, + [91750] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4855), 2, + ACTIONS(4845), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -205960,72 +205934,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92021] = 27, + [91853] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4857), 2, + ACTIONS(4847), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206036,72 +206010,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92124] = 27, + [91956] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4859), 2, + ACTIONS(4849), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206112,72 +206086,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92227] = 27, + [92059] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4861), 2, + ACTIONS(4851), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206188,72 +206162,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92330] = 27, + [92162] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4863), 2, + ACTIONS(4853), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206264,72 +206238,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92433] = 27, + [92265] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4865), 2, + ACTIONS(4855), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206340,72 +206314,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92536] = 27, + [92368] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4867), 2, + ACTIONS(4857), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206416,72 +206390,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92639] = 27, + [92471] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4869), 2, + ACTIONS(4859), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206492,72 +206466,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92742] = 27, + [92574] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4871), 2, + ACTIONS(4861), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206568,72 +206542,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92845] = 27, + [92677] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4873), 2, + ACTIONS(4863), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206644,72 +206618,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92948] = 27, + [92780] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4875), 2, + ACTIONS(4865), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206720,72 +206694,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93051] = 27, + [92883] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4877), 2, + ACTIONS(4867), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206796,72 +206770,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93154] = 27, + [92986] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4879), 2, + ACTIONS(4869), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4820), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -206872,14 +206846,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93257] = 4, + [93089] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(4871), 1, sym__automatic_semicolon, - ACTIONS(1984), 15, + ACTIONS(2000), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -206893,7 +206868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 30, + ACTIONS(1998), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -206924,20 +206899,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93313] = 6, + [93147] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_DOT, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(4883), 14, + ACTIONS(4873), 1, + anon_sym_LBRACE, + STATE(2267), 1, + sym_statement_block, + ACTIONS(1976), 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, @@ -206948,9 +206922,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 29, + ACTIONS(1974), 29, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -206958,6 +206931,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -206978,18 +206952,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93373] = 5, + [93205] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_LT, - STATE(2351), 1, - sym_type_arguments, - ACTIONS(4887), 14, + ACTIONS(4873), 1, + anon_sym_LBRACE, + ACTIONS(4875), 1, + anon_sym_DOT, + STATE(2267), 1, + sym_statement_block, + ACTIONS(1976), 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, @@ -207000,9 +206977,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 30, + ACTIONS(1974), 28, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -207010,7 +206986,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207031,10 +207006,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93431] = 3, + [93265] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 15, + ACTIONS(4877), 1, + anon_sym_LBRACE, + ACTIONS(4879), 1, + anon_sym_DOT, + STATE(2213), 1, + sym_statement_block, + ACTIONS(1976), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207050,19 +207031,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2160), 31, + ACTIONS(1974), 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_COLON, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207082,17 +207060,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93485] = 4, + [93325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4891), 1, - sym__automatic_semicolon, - ACTIONS(2062), 15, + ACTIONS(4831), 1, + anon_sym_LT, + ACTIONS(4883), 1, + anon_sym_DOT, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(4881), 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, @@ -207103,7 +207084,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2060), 30, + ACTIONS(3916), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207113,7 +207094,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -207134,64 +207114,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93541] = 6, + [93385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - ACTIONS(4895), 1, - anon_sym_DOT, - STATE(2264), 1, + STATE(2213), 1, sym_statement_block, - ACTIONS(2000), 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(1998), 28, - 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_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, - [93601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 15, + ACTIONS(1976), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207207,17 +207137,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2249), 31, + ACTIONS(1974), 29, 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, @@ -207239,16 +207167,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93655] = 6, + [93443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - ACTIONS(4899), 1, - anon_sym_DOT, - STATE(2244), 1, - sym_statement_block, - ACTIONS(2000), 15, + ACTIONS(2026), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207264,16 +207186,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1998), 28, + ACTIONS(2024), 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, @@ -207293,19 +207218,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93715] = 5, + [93497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(2264), 1, - sym_statement_block, - ACTIONS(2000), 15, + ACTIONS(4831), 1, + anon_sym_LT, + STATE(2347), 1, + sym_type_arguments, + ACTIONS(4885), 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, @@ -207316,8 +207240,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1998), 29, + ACTIONS(4887), 30, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -207346,14 +207271,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93773] = 5, + [93555] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, - anon_sym_LPAREN, - STATE(2275), 1, - sym_arguments, - ACTIONS(4901), 15, + ACTIONS(4871), 1, + sym__automatic_semicolon, + ACTIONS(2000), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207369,11 +207292,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4903), 29, + ACTIONS(1998), 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, @@ -207399,15 +207323,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93831] = 5, + [93611] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(4881), 1, - sym__automatic_semicolon, - ACTIONS(1984), 14, + ACTIONS(4827), 1, + anon_sym_LPAREN, + STATE(2212), 1, + sym_arguments, + ACTIONS(4889), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -207421,12 +207346,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 30, + ACTIONS(4891), 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, @@ -207452,14 +207376,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93889] = 5, + [93669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - STATE(2244), 1, - sym_statement_block, - ACTIONS(2000), 15, + ACTIONS(4893), 1, + sym__automatic_semicolon, + ACTIONS(2022), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207475,17 +207397,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1998), 29, - sym__automatic_semicolon, + ACTIONS(2020), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207503,12 +207426,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, - [93947] = 3, + [93725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 15, + ACTIONS(2107), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207524,7 +207447,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2190), 30, + ACTIONS(2105), 31, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -207534,6 +207457,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, @@ -207555,10 +207479,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94000] = 3, + [93779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 15, + ACTIONS(3842), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207574,7 +207498,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4907), 30, + ACTIONS(3846), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207605,104 +207529,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94053] = 23, + [93832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(4895), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(4897), 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_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, - ACTIONS(4943), 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(4911), 9, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94146] = 3, + [93885] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 15, + ACTIONS(4899), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(4949), 30, + ACTIONS(3846), 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_EQ_GT, @@ -207724,182 +207631,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [94199] = 26, + [93942] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, + ACTIONS(4905), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_extends, + ACTIONS(4908), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(3842), 12, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4957), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(3846), 27, + 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_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, - ACTIONS(4943), 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(4953), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94298] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [93999] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(4911), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_extends, + ACTIONS(4914), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(2002), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4957), 1, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(2006), 27, + 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_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, - ACTIONS(4943), 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(4961), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94397] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [94058] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(4919), 1, anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(4923), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 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(3848), 30, + ACTIONS(4921), 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_EQ_GT, @@ -207921,84 +207789,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [94452] = 26, + [94117] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(2157), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(2159), 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_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, - ACTIONS(4943), 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(4963), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94551] = 3, + [94170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 15, + ACTIONS(2117), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208014,7 +207858,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4967), 30, + ACTIONS(2119), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208045,83 +207889,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94604] = 26, + [94223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(2293), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(2291), 30, + 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, - ACTIONS(4943), 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(4969), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [94703] = 3, + [94276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 15, + ACTIONS(4929), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208137,7 +207958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2070), 30, + ACTIONS(4931), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208168,10 +207989,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94756] = 3, + [94329] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 15, + ACTIONS(4933), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208187,7 +208008,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2016), 30, + ACTIONS(4935), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208218,89 +208039,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94809] = 26, + [94382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(4937), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(4939), 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_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, - ACTIONS(4943), 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(4971), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [94908] = 6, + [94435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4837), 1, - anon_sym_QMARK_DOT, - ACTIONS(2056), 15, + ACTIONS(2187), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208316,7 +208108,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 27, + ACTIONS(2189), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208324,8 +208116,11 @@ 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -208344,10 +208139,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94967] = 3, + [94488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 15, + ACTIONS(2207), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208363,7 +208158,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 30, + ACTIONS(2209), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208394,83 +208189,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [95020] = 26, + [94541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(2299), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(2301), 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_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, - ACTIONS(4943), 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(4973), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [95119] = 3, + [94594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 15, + ACTIONS(2225), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208486,7 +208258,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4977), 30, + ACTIONS(2227), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208517,400 +208289,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [95172] = 26, + [94647] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(2040), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4987), 1, anon_sym_in, - ACTIONS(4989), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5011), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4983), 7, + ACTIONS(2042), 30, + 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, - [95271] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4987), 1, - anon_sym_in, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4993), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4995), 1, - anon_sym_QMARK, - ACTIONS(4997), 1, anon_sym_AMP_AMP, - ACTIONS(5003), 1, - anon_sym_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5001), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5011), 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(4949), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [95370] = 26, + [94700] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(4941), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4987), 1, anon_sym_in, - ACTIONS(4989), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5011), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5017), 7, + ACTIONS(4943), 30, + 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, - [95469] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4987), 1, - anon_sym_in, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4993), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4995), 1, - anon_sym_QMARK, - ACTIONS(4997), 1, anon_sym_AMP_AMP, - ACTIONS(5003), 1, - anon_sym_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5001), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5011), 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(5019), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [95568] = 26, + [94753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(4945), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4987), 1, anon_sym_in, - ACTIONS(4989), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5011), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5021), 7, + ACTIONS(4947), 30, + 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, - [95667] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4993), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5009), 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(5023), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 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(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [94806] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4949), 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, @@ -208921,110 +208458,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 20, + ACTIONS(4951), 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_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, - [95740] = 18, + [94859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, + ACTIONS(4953), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 5, + 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, - ACTIONS(5011), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4955), 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_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, - [95823] = 10, + [94912] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(5026), 1, + ACTIONS(4961), 1, anon_sym_LT, - ACTIONS(5028), 1, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(4965), 1, anon_sym_QMARK_DOT, - STATE(2377), 1, + STATE(2404), 1, sym_type_arguments, - STATE(2458), 1, + STATE(2425), 1, sym_arguments, - ACTIONS(4825), 14, + ACTIONS(4823), 14, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209039,7 +208571,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4827), 24, + ACTIONS(4825), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -209064,10 +208596,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95890] = 3, + [94979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209083,7 +208615,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5032), 30, + ACTIONS(4969), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209114,10 +208646,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [95943] = 3, + [95032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209133,7 +208665,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5036), 30, + ACTIONS(4969), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209164,10 +208696,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [95996] = 3, + [95085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209183,7 +208715,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 30, + ACTIONS(4969), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209214,10 +208746,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96049] = 3, + [95138] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 15, + ACTIONS(4971), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209233,7 +208765,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5044), 30, + ACTIONS(4973), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209264,10 +208796,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96102] = 3, + [95191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209283,7 +208815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2122), 30, + ACTIONS(4969), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209314,10 +208846,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96155] = 3, + [95244] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 15, + ACTIONS(4975), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209333,7 +208865,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2132), 30, + ACTIONS(4977), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209364,10 +208896,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96208] = 3, + [95297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2142), 15, + ACTIONS(2177), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209383,7 +208915,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2144), 30, + ACTIONS(2179), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209414,38 +208946,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96261] = 6, + [95350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5052), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(2077), 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(5050), 27, + ACTIONS(2079), 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_EQ_GT, @@ -209467,10 +208995,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [96320] = 3, + anon_sym_extends, + [95403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 15, + ACTIONS(2167), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209486,7 +209015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 30, + ACTIONS(2169), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209517,38 +209046,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96373] = 6, + [95456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(5058), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(2197), 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(1990), 27, + ACTIONS(2199), 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_EQ_GT, @@ -209570,10 +209095,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [96432] = 3, + anon_sym_extends, + [95509] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 15, + ACTIONS(4979), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209589,7 +209115,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 30, + ACTIONS(4981), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209620,73 +209146,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96485] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 17, - 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_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_extends, - [96564] = 3, + [95562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 15, + ACTIONS(4983), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209702,7 +209165,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 30, + ACTIONS(4985), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209733,20 +209196,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96617] = 5, + [95615] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 3, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_QMARK_DOT, + ACTIONS(4989), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5071), 3, + ACTIONS(4987), 4, + anon_sym_EQ, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(2055), 11, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -209757,7 +209224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 27, + ACTIONS(2057), 25, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACE, @@ -209765,9 +209232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, 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, @@ -209785,10 +209250,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [96674] = 3, + [95676] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 15, + ACTIONS(4991), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209804,7 +209269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5076), 30, + ACTIONS(4993), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209835,84 +209300,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96727] = 19, + [95729] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4987), 1, + ACTIONS(4995), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4989), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5011), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4997), 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_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, - [96812] = 5, + [95782] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 3, + ACTIONS(4999), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5081), 3, + ACTIONS(5001), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(3842), 12, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209925,7 +209374,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 27, + ACTIONS(3846), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACE, @@ -209953,163 +209402,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [96869] = 21, + [95839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4987), 1, + ACTIONS(5003), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4989), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5007), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5011), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 11, + ACTIONS(5005), 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_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, - [96958] = 15, + [95892] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5023), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, + ACTIONS(5007), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 10, + 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(4911), 17, + ACTIONS(5009), 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_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, - [97035] = 12, + [95945] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5023), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5011), 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, @@ -210120,14 +209521,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 21, + ACTIONS(5013), 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -210141,83 +209547,115 @@ 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, - [97106] = 23, + [95998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4987), 1, + ACTIONS(2289), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4989), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, + ACTIONS(2287), 30, + 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, - ACTIONS(5011), 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(4911), 9, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [96051] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 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(5017), 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_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, - [97199] = 4, + [96104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, - sym__automatic_semicolon, - ACTIONS(1984), 15, + ACTIONS(5019), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210233,17 +209671,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 29, + ACTIONS(5021), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210261,85 +209700,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, - anon_sym_PIPE_RBRACE, - [97254] = 26, + [96157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5023), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4987), 1, anon_sym_in, - ACTIONS(4989), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, + ACTIONS(5025), 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_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, - ACTIONS(5011), 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(4953), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [97353] = 3, + [96210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 15, + ACTIONS(5027), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210355,18 +209771,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2060), 30, - sym__automatic_semicolon, + ACTIONS(5029), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210384,12 +209800,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, - [97406] = 3, + [96263] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 15, + ACTIONS(5031), 1, + sym__automatic_semicolon, + ACTIONS(2000), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210405,18 +209823,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5088), 30, + ACTIONS(1998), 29, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210434,14 +209851,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, - [97459] = 4, + anon_sym_PIPE_RBRACE, + [96318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - anon_sym_DOT, - ACTIONS(5090), 15, + ACTIONS(2067), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210457,7 +209872,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 29, + ACTIONS(2065), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210467,6 +209882,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -210487,83 +209903,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97514] = 26, + [96371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5033), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4987), 1, anon_sym_in, - ACTIONS(4989), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, + ACTIONS(5035), 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_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, - ACTIONS(5011), 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(4961), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [97613] = 3, + [96424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 15, + ACTIONS(5037), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210579,7 +209972,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 30, + ACTIONS(5039), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210610,156 +210003,201 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97666] = 26, + [96477] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4987), 1, - anon_sym_in, - ACTIONS(4989), 1, + ACTIONS(5045), 1, anon_sym_LT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5009), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5043), 21, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5013), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(5082), 1, + anon_sym_instanceof, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [96548] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5045), 1, + anon_sym_LT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4979), 3, + ACTIONS(5041), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, + ACTIONS(5043), 21, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5011), 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(4963), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_extends, - [97765] = 26, + anon_sym_PIPE_RBRACE, + [96619] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(4987), 1, + ACTIONS(5060), 1, anon_sym_in, - ACTIONS(4989), 1, + ACTIONS(5062), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + ACTIONS(5066), 1, anon_sym_QMARK, - ACTIONS(4997), 1, + ACTIONS(5068), 1, anon_sym_AMP_AMP, - ACTIONS(5003), 1, + ACTIONS(5074), 1, anon_sym_AMP, - ACTIONS(5005), 1, + ACTIONS(5076), 1, anon_sym_PIPE, - ACTIONS(5009), 1, + ACTIONS(5080), 1, anon_sym_STAR_STAR, - ACTIONS(5013), 1, + ACTIONS(5084), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4999), 2, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5007), 2, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4979), 3, + ACTIONS(5052), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4991), 3, + ACTIONS(5064), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5011), 5, + ACTIONS(5082), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4969), 7, + ACTIONS(5056), 7, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_extends, - [97864] = 3, + anon_sym_PIPE_RBRACE, + [96718] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 15, + ACTIONS(2293), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210775,7 +210213,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2156), 30, + ACTIONS(2291), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210806,83 +210244,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97917] = 26, + [96771] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(4987), 1, + ACTIONS(5060), 1, anon_sym_in, - ACTIONS(4989), 1, + ACTIONS(5062), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + ACTIONS(5066), 1, anon_sym_QMARK, - ACTIONS(4997), 1, + ACTIONS(5068), 1, anon_sym_AMP_AMP, - ACTIONS(5003), 1, + ACTIONS(5074), 1, anon_sym_AMP, - ACTIONS(5005), 1, + ACTIONS(5076), 1, anon_sym_PIPE, - ACTIONS(5009), 1, + ACTIONS(5080), 1, anon_sym_STAR_STAR, - ACTIONS(5013), 1, + ACTIONS(5084), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4999), 2, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5007), 2, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4979), 3, + ACTIONS(5052), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4991), 3, + ACTIONS(5064), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5011), 5, + ACTIONS(5082), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4971), 7, + ACTIONS(5086), 7, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [96870] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5092), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 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(5090), 23, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [98016] = 3, + anon_sym_PIPE_RBRACE, + [96939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 15, + ACTIONS(5095), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210898,7 +210394,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 30, + ACTIONS(5097), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210929,83 +210425,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98069] = 26, + [96992] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(2237), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2239), 30, anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, + 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_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, - ACTIONS(4939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 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, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [97045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2061), 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, - ACTIONS(4923), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(2059), 30, + 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, - ACTIONS(4943), 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(4949), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98168] = 3, + [97098] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 15, + ACTIONS(5099), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211021,7 +210544,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5107), 30, + ACTIONS(5101), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211052,69 +210575,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98221] = 26, + [97151] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, + ACTIONS(4752), 1, + anon_sym_export, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_async, + ACTIONS(4760), 1, + anon_sym_static, ACTIONS(4762), 1, + anon_sym_readonly, + STATE(3833), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(4758), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4434), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [97250] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4046), 1, + anon_sym_STAR, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4642), 6, + STATE(4500), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -211125,145 +210721,195 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [98320] = 26, + [97349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(5103), 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(5105), 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_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, - ACTIONS(4829), 1, + anon_sym_implements, + anon_sym_extends, + [97402] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(4987), 1, + ACTIONS(5060), 1, anon_sym_in, - ACTIONS(4989), 1, + ACTIONS(5062), 1, anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, + ACTIONS(5066), 1, anon_sym_QMARK, - ACTIONS(4997), 1, + ACTIONS(5068), 1, anon_sym_AMP_AMP, - ACTIONS(5003), 1, + ACTIONS(5074), 1, anon_sym_AMP, - ACTIONS(5005), 1, + ACTIONS(5076), 1, anon_sym_PIPE, - ACTIONS(5009), 1, + ACTIONS(5080), 1, anon_sym_STAR_STAR, - ACTIONS(5013), 1, + ACTIONS(5084), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4999), 2, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5007), 2, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4979), 3, + ACTIONS(5052), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4991), 3, + ACTIONS(5064), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5001), 3, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5011), 5, + ACTIONS(5082), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4973), 7, + ACTIONS(5107), 7, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_extends, - [98419] = 26, + anon_sym_PIPE_RBRACE, + [97501] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4929), 1, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5060), 1, + anon_sym_in, + ACTIONS(5062), 1, + anon_sym_LT, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, anon_sym_AMP_AMP, - ACTIONS(4935), 1, + ACTIONS(5074), 1, anon_sym_AMP, - ACTIONS(4937), 1, + ACTIONS(5076), 1, anon_sym_PIPE, - ACTIONS(4941), 1, + ACTIONS(5080), 1, anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, + ACTIONS(5084), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4931), 2, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(4939), 2, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4909), 3, + ACTIONS(5052), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4923), 3, + ACTIONS(5064), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4943), 5, + ACTIONS(5082), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4983), 7, + ACTIONS(5109), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -211271,60 +210917,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98518] = 3, + [97600] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5066), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, + ACTIONS(5076), 1, anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5111), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, + ACTIONS(5111), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [98571] = 3, + anon_sym_PIPE_RBRACE, + [97699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 15, + ACTIONS(5113), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211340,7 +211009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2950), 30, + ACTIONS(5115), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211371,128 +211040,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98624] = 19, + [97752] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4941), 1, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5060), 1, + anon_sym_in, + ACTIONS(5062), 1, + anon_sym_LT, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, + anon_sym_AMP, + ACTIONS(5076), 1, + anon_sym_PIPE, + ACTIONS(5080), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4909), 3, + ACTIONS(5052), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4923), 3, + ACTIONS(5064), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4943), 5, + ACTIONS(5082), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 12, + ACTIONS(5117), 7, 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_CARET, - anon_sym_QMARK_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98709] = 3, + [97851] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5066), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, + ACTIONS(5076), 1, anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5115), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, + ACTIONS(5119), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [98762] = 3, + anon_sym_PIPE_RBRACE, + [97950] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 15, - anon_sym_STAR, + ACTIONS(4919), 1, anon_sym_EQ, + ACTIONS(4917), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -211506,7 +211206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 30, + ACTIONS(4921), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211537,30 +211237,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98815] = 12, + [98005] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5121), 1, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5125), 1, anon_sym_LT, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -211574,21 +211276,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 21, + ACTIONS(5123), 20, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -211596,111 +211296,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [98886] = 4, + anon_sym_PIPE_RBRACE, + [98078] = 18, ACTIONS(3), 1, sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5046), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_QMARK_DOT, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, - anon_sym_extends, - [98941] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5124), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(5121), 5, 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(5126), 30, + ACTIONS(5123), 12, + 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_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [98994] = 3, + anon_sym_PIPE_RBRACE, + [98161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 15, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(4987), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211716,18 +211383,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2207), 30, - sym__automatic_semicolon, + ACTIONS(4989), 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_DOT, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -211745,12 +211411,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, - [99047] = 3, + [98216] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 15, + ACTIONS(2026), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211766,7 +211432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2160), 30, + ACTIONS(2024), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211797,210 +211463,269 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99100] = 3, + [98269] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5062), 1, + anon_sym_LT, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5078), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5072), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 8, 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(5130), 30, + ACTIONS(5123), 17, + 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_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [99153] = 3, + anon_sym_PIPE_RBRACE, + [98348] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5082), 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_implements, + ACTIONS(5123), 12, + 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_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [99206] = 3, + anon_sym_PIPE_RBRACE, + [98433] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5082), 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_implements, + ACTIONS(5123), 11, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [99259] = 3, + anon_sym_PIPE_RBRACE, + [98522] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5125), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5072), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, 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(5134), 30, + ACTIONS(5123), 17, + 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_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [99312] = 3, + anon_sym_PIPE_RBRACE, + [98599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 15, + ACTIONS(2215), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212016,7 +211741,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5138), 30, + ACTIONS(2213), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212047,15 +211772,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99365] = 3, + [98652] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5125), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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, @@ -212066,19 +211809,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5142), 30, + ACTIONS(5123), 21, + 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_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212092,65 +211829,82 @@ 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, - [99418] = 3, + anon_sym_PIPE_RBRACE, + [98723] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, + ACTIONS(5076), 1, anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, + ACTIONS(5123), 9, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_extends, - [99471] = 3, + anon_sym_PIPE_RBRACE, + [98816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 15, + ACTIONS(5128), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212166,7 +211920,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5146), 30, + ACTIONS(5130), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212197,110 +211951,229 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99524] = 3, + [98869] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5066), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, + ACTIONS(5076), 1, anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2245), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, + ACTIONS(5132), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [99577] = 3, + anon_sym_PIPE_RBRACE, + [98968] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5066), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, + ACTIONS(5076), 1, anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2269), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, + ACTIONS(5134), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [99630] = 3, + anon_sym_PIPE_RBRACE, + [99067] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4046), 1, + anon_sym_STAR, + ACTIONS(4752), 1, + anon_sym_export, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_async, + ACTIONS(4760), 1, + anon_sym_static, + ACTIONS(4762), 1, + anon_sym_readonly, + STATE(3833), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(4758), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4820), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [99166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 15, + ACTIONS(5136), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212316,7 +212189,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2259), 30, + ACTIONS(5132), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212347,10 +212220,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99683] = 3, + [99219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 15, + ACTIONS(5138), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212366,7 +212239,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2231), 30, + ACTIONS(5140), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212397,10 +212270,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99736] = 3, + [99272] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(3648), 1, + anon_sym_new, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4046), 1, + anon_sym_STAR, + ACTIONS(4752), 1, + anon_sym_export, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(4756), 1, + anon_sym_async, + ACTIONS(4760), 1, + anon_sym_static, + ACTIONS(4762), 1, + anon_sym_readonly, + STATE(3833), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4059), 1, + sym_formal_parameters, + STATE(4915), 1, + sym__call_signature, + STATE(4955), 1, + aux_sym_export_statement_repeat1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(4758), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4764), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3942), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4562), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [99371] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 15, + ACTIONS(2067), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212416,18 +212362,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4806), 30, + ACTIONS(2065), 30, + 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -212445,71 +212391,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [99789] = 26, + anon_sym_PIPE_RBRACE, + [99424] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4586), 6, + STATE(4572), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -212520,15 +212466,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [99888] = 3, + [99523] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5142), 1, + anon_sym_LT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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, @@ -212539,19 +212503,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5150), 30, + ACTIONS(5043), 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_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212565,20 +212524,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, - [99941] = 3, + [99594] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5142), 1, + anon_sym_LT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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, @@ -212589,19 +212562,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 30, + ACTIONS(5043), 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_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212615,70 +212583,177 @@ 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, - [99994] = 3, + [99665] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5155), 1, anon_sym_in, + ACTIONS(5157), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5161), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_AMP, + ACTIONS(5171), 1, anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 30, - anon_sym_as, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5056), 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_extends, + [99764] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, - anon_sym_EQ_GT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5161), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5177), 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_implements, + ACTIONS(5086), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - [100047] = 3, + [99863] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5181), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 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, @@ -212689,19 +212764,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 30, + ACTIONS(5090), 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_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212717,13 +212787,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, - [100100] = 3, + [99932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 15, + ACTIONS(2289), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212739,7 +212807,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2207), 30, + ACTIONS(2287), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212770,12 +212838,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100153] = 4, + [99985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, + ACTIONS(5186), 1, anon_sym_EQ, - ACTIONS(5164), 14, + ACTIONS(5184), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -212790,7 +212858,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 30, + ACTIONS(5188), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212821,10 +212889,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100208] = 3, + [100040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 15, + ACTIONS(2022), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212840,7 +212908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2060), 30, + ACTIONS(2020), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212871,37 +212939,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100261] = 5, + [100093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5172), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(5190), 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(3848), 27, + ACTIONS(5192), 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_EQ_GT, @@ -212923,10 +212988,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [100318] = 3, + anon_sym_extends, + [100146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 15, + ACTIONS(5194), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212942,7 +213008,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2968), 30, + ACTIONS(5196), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212973,62 +213039,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100371] = 3, + [100199] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5066), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, + ACTIONS(5076), 1, anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, + ACTIONS(4897), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [100424] = 4, + anon_sym_PIPE_RBRACE, + [100298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(2004), 1, anon_sym_EQ, - ACTIONS(1986), 14, + ACTIONS(2002), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -213043,7 +213132,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 30, + ACTIONS(2006), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213074,12 +213163,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100479] = 3, + [100353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 15, - anon_sym_STAR, + ACTIONS(3844), 1, anon_sym_EQ, + ACTIONS(3842), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -213093,7 +213183,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5180), 30, + ACTIONS(3846), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213124,60 +213214,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100532] = 3, + [100408] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5066), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, + ACTIONS(5076), 1, anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5184), 30, - anon_sym_as, + ACTIONS(5072), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5082), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5025), 7, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [100507] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4959), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4963), 1, anon_sym_DOT, - anon_sym_EQ_GT, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5060), 1, + anon_sym_in, + ACTIONS(5062), 1, + anon_sym_LT, + ACTIONS(5066), 1, + anon_sym_QMARK, + ACTIONS(5068), 1, anon_sym_AMP_AMP, + ACTIONS(5074), 1, + anon_sym_AMP, + ACTIONS(5076), 1, + anon_sym_PIPE, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, + ACTIONS(5021), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [100585] = 3, + anon_sym_PIPE_RBRACE, + [100606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 15, + ACTIONS(5198), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213193,7 +213379,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2960), 30, + ACTIONS(5200), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213224,60 +213410,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100638] = 3, + [100659] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5060), 1, anon_sym_in, + ACTIONS(5062), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5066), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5068), 1, + anon_sym_AMP_AMP, + ACTIONS(5074), 1, anon_sym_AMP, + ACTIONS(5076), 1, anon_sym_PIPE, - anon_sym_PLUS, + ACTIONS(5080), 1, + anon_sym_STAR_STAR, + ACTIONS(5084), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5070), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5078), 2, + anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5052), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5064), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5072), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5082), 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_implements, + ACTIONS(5202), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [100691] = 3, + anon_sym_PIPE_RBRACE, + [100758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 15, + ACTIONS(5204), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213293,7 +213502,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 30, + ACTIONS(5206), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213324,182 +213533,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100744] = 7, + [100811] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4837), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5196), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5194), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2056), 11, - anon_sym_STAR, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5155), 1, anon_sym_in, + ACTIONS(5157), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5161), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2058), 25, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ_GT, + ACTIONS(5163), 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(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5179), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [100805] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5121), 1, - anon_sym_LT, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5149), 3, 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, + ACTIONS(5159), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 21, - 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, + ACTIONS(5167), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5177), 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, + ACTIONS(5107), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - [100876] = 26, + [100910] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4539), 6, + STATE(4460), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -213510,63 +213679,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [100975] = 4, + [101009] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 1, - sym__automatic_semicolon, - ACTIONS(2062), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5155), 1, anon_sym_in, + ACTIONS(5157), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5161), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_AMP, + ACTIONS(5171), 1, anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2060), 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_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5167), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5177), 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, + ACTIONS(5109), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [101030] = 4, + [101108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, + ACTIONS(5212), 1, sym_regex_flags, - ACTIONS(5200), 18, + ACTIONS(5208), 18, anon_sym_STAR, anon_sym_EQ, anon_sym_as, @@ -213585,7 +213776,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_instanceof, anon_sym_extends, - ACTIONS(5202), 26, + ACTIONS(5210), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -213612,69 +213803,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [101085] = 12, + [101163] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5206), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, anon_sym_LT, - STATE(5014), 1, + ACTIONS(5161), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5149), 3, 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, + ACTIONS(5159), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 21, - 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, + ACTIONS(5167), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5177), 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, + ACTIONS(5111), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [101156] = 3, + [101262] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 15, + ACTIONS(5214), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213690,7 +213895,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 30, + ACTIONS(5216), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213721,10 +213926,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101209] = 3, + [101315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 15, + ACTIONS(5218), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213740,7 +213945,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 30, + ACTIONS(5220), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213771,110 +213976,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101262] = 3, + [101368] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5155), 1, anon_sym_in, + ACTIONS(5157), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5161), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_AMP, + ACTIONS(5171), 1, anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5167), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5177), 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_implements, + ACTIONS(5117), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - [101315] = 3, + [101467] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5155), 1, anon_sym_in, + ACTIONS(5157), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5161), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, anon_sym_AMP, + ACTIONS(5171), 1, anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4969), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5167), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5177), 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_implements, + ACTIONS(5119), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - [101368] = 3, + [101566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 15, + ACTIONS(2311), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213890,7 +214141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2305), 30, + ACTIONS(2309), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213921,10 +214172,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101421] = 3, + [101619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 15, + ACTIONS(5222), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213940,7 +214191,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5223), 30, + ACTIONS(5224), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213971,27 +214222,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101474] = 11, + [101672] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5229), 1, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5226), 1, anon_sym_LT, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - STATE(2299), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5225), 13, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -214005,7 +214261,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 23, + ACTIONS(5123), 20, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214019,20 +214275,17 @@ 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_extends, - [101543] = 3, + [101745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 15, + ACTIONS(4885), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214048,7 +214301,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 30, + ACTIONS(4887), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214079,189 +214332,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101596] = 12, + [101798] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5232), 1, + ACTIONS(5157), 1, anon_sym_LT, - STATE(5014), 1, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5149), 3, 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, + ACTIONS(5159), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 21, - 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, + ACTIONS(5167), 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_extends, - anon_sym_PIPE_RBRACE, - [101667] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5121), 5, anon_sym_BANG, - ACTIONS(4987), 1, anon_sym_in, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, anon_sym_QMARK, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, anon_sym_AMP, - ACTIONS(5005), 1, anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5011), 5, + ACTIONS(5177), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5235), 7, + ACTIONS(5123), 12, + 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_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [101766] = 15, + [101881] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(5232), 1, + ACTIONS(5157), 1, anon_sym_LT, - STATE(5014), 1, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4909), 3, + ACTIONS(5149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4933), 3, + ACTIONS(5167), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 10, + ACTIONS(5121), 8, anon_sym_BANG, anon_sym_in, 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(4911), 17, - sym__automatic_semicolon, + ACTIONS(5123), 17, 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_CARET, @@ -214272,13 +214460,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [101843] = 4, + [101960] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5237), 15, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_QMARK_DOT, + ACTIONS(2055), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214294,7 +214485,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5239), 29, + ACTIONS(2057), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214303,9 +214494,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COLON, 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, @@ -214324,10 +214513,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101898] = 3, + [102019] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 15, + ACTIONS(5233), 1, + anon_sym_LBRACK, + ACTIONS(5229), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214343,7 +214534,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 30, + ACTIONS(5231), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214351,7 +214542,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_EQ_GT, @@ -214374,10 +214564,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101951] = 3, + [102074] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5247), 15, + ACTIONS(5235), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214393,7 +214583,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 30, + ACTIONS(5237), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214424,10 +214614,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102004] = 3, + [102127] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 15, + ACTIONS(2055), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214443,7 +214633,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5251), 30, + ACTIONS(2057), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214474,151 +214664,144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102057] = 21, + [102180] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4941), 1, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5175), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4909), 3, + ACTIONS(5149), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(4923), 3, + ACTIONS(5159), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(5167), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4943), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5177), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 11, - sym__automatic_semicolon, + ACTIONS(5123), 12, 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_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [102146] = 26, + [102265] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5173), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3995), 1, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5149), 3, anon_sym_STAR, - ACTIONS(4762), 1, - anon_sym_export, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(4770), 1, - anon_sym_async, - ACTIONS(4774), 1, - anon_sym_static, - ACTIONS(4776), 1, - anon_sym_readonly, - STATE(3826), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(4772), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4778), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4530), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [102245] = 3, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5123), 11, + anon_sym_as, + 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, + anon_sym_extends, + [102354] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 15, + ACTIONS(4774), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214634,7 +214817,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5255), 30, + ACTIONS(4778), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214665,69 +214848,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102298] = 26, + [102407] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5226), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, + anon_sym_BANG, + anon_sym_in, + 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(5123), 17, + 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_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_extends, + [102484] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4453), 6, + STATE(4468), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -214738,15 +214983,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [102397] = 3, + [102583] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5226), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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, @@ -214757,19 +215020,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2156), 30, - sym__automatic_semicolon, + ACTIONS(5123), 21, 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_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -214783,15 +215041,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_extends, + [102654] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5123), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [102747] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5161), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5132), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [102450] = 3, + [102846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 15, + ACTIONS(2107), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214807,7 +215204,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2194), 30, + ACTIONS(2105), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214838,10 +215235,375 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102503] = 3, + [102899] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5161), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5134), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [102998] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5161), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4897), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [103097] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5161), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5025), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [103196] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5161), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5021), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [103295] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5155), 1, + anon_sym_in, + ACTIONS(5157), 1, + anon_sym_LT, + ACTIONS(5161), 1, + anon_sym_QMARK, + ACTIONS(5163), 1, + anon_sym_AMP_AMP, + ACTIONS(5169), 1, + anon_sym_AMP, + ACTIONS(5171), 1, + anon_sym_PIPE, + ACTIONS(5175), 1, + anon_sym_STAR_STAR, + ACTIONS(5179), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5165), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5173), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5149), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5159), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5167), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5177), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5202), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [103394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5239), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214857,7 +215619,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5259), 30, + ACTIONS(5119), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214888,10 +215650,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102556] = 3, + [103447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 15, + ACTIONS(5241), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214907,7 +215669,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2249), 30, + ACTIONS(5243), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214938,10 +215700,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102609] = 3, + [103500] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 15, + ACTIONS(5245), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -214957,7 +215719,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 30, + ACTIONS(5247), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -214988,10 +215750,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102662] = 3, + [103553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5265), 15, + ACTIONS(5249), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215007,7 +215769,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5267), 30, + ACTIONS(5251), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215038,10 +215800,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102715] = 3, + [103606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5269), 15, + ACTIONS(5253), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215057,7 +215819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5271), 30, + ACTIONS(5255), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215088,10 +215850,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102768] = 3, + [103659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 15, + ACTIONS(5257), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215107,7 +215869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 30, + ACTIONS(5259), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215138,30 +215900,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102821] = 11, + [103712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5273), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 13, + ACTIONS(2944), 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, @@ -215172,13 +215919,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 23, - sym__automatic_semicolon, + ACTIONS(2942), 30, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215194,85 +215947,63 @@ 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, - anon_sym_PIPE_RBRACE, - [102890] = 26, + [103765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(5261), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(5263), 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_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, - ACTIONS(4943), 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(5235), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [102989] = 3, + [103818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 15, + ACTIONS(5265), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215288,7 +216019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2285), 30, + ACTIONS(5267), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215319,10 +216050,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103042] = 3, + [103871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 15, + ACTIONS(2968), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215338,18 +216069,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2164), 30, - sym__automatic_semicolon, + ACTIONS(2966), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -215367,12 +216098,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, - [103095] = 3, + [103924] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 15, + ACTIONS(2219), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215388,7 +216119,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2194), 30, + ACTIONS(2217), 30, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -215419,10 +216150,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [103148] = 3, + [103977] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 15, + ACTIONS(5269), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215438,7 +216169,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 30, + ACTIONS(5271), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215469,138 +216200,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103201] = 16, + [104030] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, + ACTIONS(5273), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4933), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, + 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(4911), 17, - sym__automatic_semicolon, + ACTIONS(5275), 30, 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [103280] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4927), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4933), 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(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4943), 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(4911), 12, - 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_CARET, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [103363] = 3, + [104083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 15, + ACTIONS(2219), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215616,7 +216269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5282), 30, + ACTIONS(2217), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215647,106 +216300,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103416] = 26, + [104136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, + ACTIONS(5277), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4937), 1, anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4933), 3, + ACTIONS(5279), 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_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, - ACTIONS(4943), 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(5284), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [103515] = 12, + [104189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5206), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5281), 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, @@ -215757,13 +216369,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 21, - sym__automatic_semicolon, + ACTIONS(5283), 30, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -215777,12 +216395,15 @@ 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, - anon_sym_PIPE_RBRACE, - [103586] = 3, + [104242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5286), 15, + ACTIONS(2964), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215798,7 +216419,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 30, + ACTIONS(2962), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215829,10 +216450,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103639] = 3, + [104295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 15, + ACTIONS(5285), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215848,7 +216469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 30, + ACTIONS(5287), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215879,10 +216500,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103692] = 3, + [104348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 15, + ACTIONS(5289), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215898,7 +216519,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 30, + ACTIONS(5291), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215929,10 +216550,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103745] = 3, + [104401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 15, + ACTIONS(5293), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215948,7 +216569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5300), 30, + ACTIONS(5295), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215979,10 +216600,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103798] = 3, + [104454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 15, + ACTIONS(5297), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215998,7 +216619,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5304), 30, + ACTIONS(5299), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216029,69 +216650,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103851] = 26, + [104507] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(3650), 1, + ACTIONS(3648), 1, anon_sym_new, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(3995), 1, + ACTIONS(4046), 1, anon_sym_STAR, - ACTIONS(4762), 1, + ACTIONS(4752), 1, anon_sym_export, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4770), 1, + ACTIONS(4756), 1, anon_sym_async, - ACTIONS(4774), 1, + ACTIONS(4760), 1, anon_sym_static, - ACTIONS(4776), 1, + ACTIONS(4762), 1, anon_sym_readonly, - STATE(3826), 1, + STATE(3833), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4589), 1, + STATE(4915), 1, sym__call_signature, - STATE(4918), 1, + STATE(4955), 1, aux_sym_export_statement_repeat1, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(4772), 2, + ACTIONS(4758), 2, sym_number, sym_private_property_identifier, - ACTIONS(4778), 2, + ACTIONS(4764), 2, anon_sym_get, anon_sym_set, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3922), 3, + STATE(3942), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4525), 6, + STATE(4532), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -216102,12 +216723,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [103950] = 4, + [104606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(5194), 15, + ACTIONS(5301), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216123,7 +216742,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 29, + ACTIONS(5303), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216133,6 +216752,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -216153,10 +216773,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104005] = 3, + [104659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 15, + ACTIONS(5305), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216172,7 +216792,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 30, + ACTIONS(5307), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216203,10 +216823,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104058] = 3, + [104712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 15, + ACTIONS(5313), 1, + anon_sym_DOT, + ACTIONS(5309), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216222,7 +216844,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5312), 30, + ACTIONS(5311), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216232,7 +216854,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -216253,10 +216874,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104111] = 3, + [104767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 15, + ACTIONS(5316), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216272,7 +216893,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5316), 30, + ACTIONS(5318), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216303,35 +216924,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104164] = 13, + [104820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5320), 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(5322), 30, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4919), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4925), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4927), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4941), 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(5232), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 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(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [104873] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2960), 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, @@ -216342,31 +216993,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 20, - sym__automatic_semicolon, + ACTIONS(2958), 30, 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_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, - anon_sym_PIPE_RBRACE, - [104237] = 3, + [104926] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 15, + ACTIONS(5324), 1, + sym__automatic_semicolon, + ACTIONS(2022), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216382,18 +217045,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2190), 30, + ACTIONS(2020), 29, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216411,12 +217073,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, - [104290] = 3, + anon_sym_PIPE_RBRACE, + [104981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 15, + ACTIONS(2022), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216432,18 +217094,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5320), 30, + ACTIONS(2020), 30, + 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216461,12 +217123,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, - [104343] = 3, + anon_sym_PIPE_RBRACE, + [105034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 15, + ACTIONS(2215), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216482,18 +217144,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 30, + ACTIONS(2213), 30, + 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216511,12 +217173,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, - [104396] = 3, + anon_sym_PIPE_RBRACE, + [105087] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 15, + ACTIONS(5326), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216532,7 +217194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 30, + ACTIONS(5328), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216563,99 +217225,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104449] = 26, + [105140] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, + ACTIONS(5330), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3995), 1, - anon_sym_STAR, - ACTIONS(4762), 1, - anon_sym_export, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(4770), 1, - anon_sym_async, - ACTIONS(4774), 1, - anon_sym_static, - ACTIONS(4776), 1, - anon_sym_readonly, - STATE(3826), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(4772), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4778), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4501), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [104548] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5328), 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_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(5330), 30, + ACTIONS(5109), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216686,10 +217275,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104601] = 3, + [105193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 15, + ACTIONS(2061), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216705,7 +217294,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 30, + ACTIONS(2059), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216736,83 +217325,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104654] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4987), 1, - anon_sym_in, - ACTIONS(4989), 1, - anon_sym_LT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(4995), 1, - anon_sym_QMARK, - ACTIONS(4997), 1, - anon_sym_AMP_AMP, - ACTIONS(5003), 1, - anon_sym_AMP, - ACTIONS(5005), 1, - anon_sym_PIPE, - ACTIONS(5009), 1, - anon_sym_STAR_STAR, - ACTIONS(5013), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4999), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5007), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4979), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4991), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5001), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5011), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5284), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_extends, - [104753] = 3, + [105246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 15, + ACTIONS(5332), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -216828,7 +217344,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 30, + ACTIONS(5334), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -216859,82 +217375,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104806] = 26, + [105299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, + ACTIONS(5233), 1, anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4933), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4943), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5017), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [104905] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(5336), 15, anon_sym_STAR, anon_sym_EQ, @@ -216951,130 +217396,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 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_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, - [104958] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4933), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4943), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5021), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [105057] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2166), 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(2164), 30, + ACTIONS(5338), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217082,7 +217404,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_EQ_GT, @@ -217105,153 +217426,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105110] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4917), 1, - anon_sym_in, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4921), 1, - anon_sym_LT, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4929), 1, - anon_sym_AMP_AMP, - ACTIONS(4935), 1, - anon_sym_AMP, - ACTIONS(4937), 1, - anon_sym_PIPE, - ACTIONS(4941), 1, - anon_sym_STAR_STAR, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(4957), 1, - anon_sym_QMARK, - ACTIONS(4959), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4931), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4939), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4909), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4923), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4933), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4943), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5019), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [105209] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(3650), 1, - anon_sym_new, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(3995), 1, - anon_sym_STAR, - ACTIONS(4762), 1, - anon_sym_export, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(4770), 1, - anon_sym_async, - ACTIONS(4774), 1, - anon_sym_static, - ACTIONS(4776), 1, - anon_sym_readonly, - STATE(3826), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4063), 1, - sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(4918), 1, - aux_sym_export_statement_repeat1, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(4772), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4778), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3922), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4455), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [105308] = 3, + [105354] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5340), 15, @@ -217301,7 +217476,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105361] = 3, + [105407] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5344), 15, @@ -217351,7 +217526,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105414] = 3, + [105460] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(5348), 15, @@ -217401,10 +217576,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105467] = 3, + [105513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 15, + ACTIONS(5352), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217420,18 +217595,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2076), 30, - sym__automatic_semicolon, + ACTIONS(5354), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -217449,12 +217624,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, - [105520] = 3, + [105566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 15, + ACTIONS(2956), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217470,7 +217645,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2956), 30, + ACTIONS(2954), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217501,10 +217676,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105573] = 3, + [105619] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 15, + ACTIONS(5356), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217520,7 +217695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5354), 30, + ACTIONS(5358), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217551,10 +217726,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105626] = 3, + [105672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 15, + ACTIONS(5001), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217570,7 +217745,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 30, + ACTIONS(4999), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217601,10 +217776,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105679] = 3, + [105725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 15, + ACTIONS(4987), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217620,7 +217795,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 30, + ACTIONS(4989), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217651,10 +217826,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105732] = 3, + [105778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 15, + ACTIONS(5360), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217670,7 +217845,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5360), 30, + ACTIONS(5362), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217701,17 +217876,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105785] = 6, + [105831] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, + ACTIONS(5231), 1, anon_sym_extends, - ACTIONS(5241), 1, + ACTIONS(5233), 1, anon_sym_LBRACK, - ACTIONS(5237), 2, + ACTIONS(5229), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5362), 13, + ACTIONS(5364), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217725,7 +217900,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5364), 28, + ACTIONS(5366), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217754,10 +217929,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [105844] = 3, + [105890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 15, + ACTIONS(5368), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217773,7 +217948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5368), 30, + ACTIONS(5370), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -217804,17 +217979,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [105897] = 4, + [105943] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 1, - anon_sym_LBRACK, - ACTIONS(5370), 15, + ACTIONS(4961), 1, + anon_sym_LT, + ACTIONS(5372), 1, + anon_sym_DOT, + ACTIONS(5374), 1, + anon_sym_is, + STATE(2602), 1, + sym_type_arguments, + ACTIONS(4881), 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, @@ -217825,17 +218004,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5372), 29, + ACTIONS(3916), 27, + 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_DOT, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -217853,86 +218030,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [105952] = 3, + anon_sym_PIPE_RBRACE, + [106003] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 15, - anon_sym_STAR, + ACTIONS(2004), 1, 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(5170), 30, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(2954), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4911), 2, 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, - [106005] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5374), 15, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 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(5376), 30, + ACTIONS(2006), 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_EQ_GT, @@ -217953,36 +218085,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [106058] = 3, + [106063] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 15, - anon_sym_STAR, + ACTIONS(4919), 1, anon_sym_EQ, + ACTIONS(5362), 1, + anon_sym_COMMA, + ACTIONS(4923), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 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(5380), 30, + ACTIONS(4921), 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_EQ_GT, @@ -218003,81 +218138,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [106111] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5402), 1, - anon_sym_QMARK, - ACTIONS(5404), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5412), 1, - anon_sym_PIPE, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - ACTIONS(5420), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5406), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5382), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5396), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5408), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5418), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4961), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - [106209] = 23, + [106123] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(111), 1, @@ -218086,55 +218147,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(5426), 1, + ACTIONS(5378), 1, anon_sym_RBRACE, - ACTIONS(5428), 1, + ACTIONS(5380), 1, anon_sym_LBRACK, - ACTIONS(5430), 1, + ACTIONS(5382), 1, anon_sym_async, - ACTIONS(5432), 1, + ACTIONS(5384), 1, anon_sym_static, - ACTIONS(5434), 1, + ACTIONS(5386), 1, anon_sym_readonly, - STATE(3832), 1, + STATE(3834), 1, sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5285), 1, + STATE(5152), 1, aux_sym_object_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, ACTIONS(129), 2, sym_number, sym_private_property_identifier, - ACTIONS(5436), 2, + ACTIONS(5388), 2, anon_sym_get, anon_sym_set, - ACTIONS(5438), 3, + ACTIONS(5390), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4362), 3, + STATE(4396), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5284), 3, + STATE(5138), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5859), 3, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5424), 11, + ACTIONS(5376), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218146,7 +218207,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [106301] = 23, + [106215] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(111), 1, @@ -218155,55 +218216,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(5428), 1, + ACTIONS(5380), 1, anon_sym_LBRACK, - ACTIONS(5442), 1, + ACTIONS(5394), 1, anon_sym_RBRACE, - ACTIONS(5444), 1, + ACTIONS(5396), 1, anon_sym_async, - ACTIONS(5446), 1, + ACTIONS(5398), 1, anon_sym_static, - ACTIONS(5448), 1, + ACTIONS(5400), 1, anon_sym_readonly, - STATE(3832), 1, + STATE(3834), 1, sym_accessibility_modifier, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5142), 1, + STATE(5170), 1, aux_sym_object_repeat1, ACTIONS(129), 2, sym_number, sym_private_property_identifier, - ACTIONS(5450), 2, + ACTIONS(5402), 2, anon_sym_get, anon_sym_set, - ACTIONS(5452), 3, + ACTIONS(5404), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4362), 3, + STATE(4396), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5106), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5440), 11, + ACTIONS(5392), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -218215,229 +218276,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [106393] = 26, + [106307] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5402), 1, - anon_sym_QMARK, - ACTIONS(5404), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5412), 1, - anon_sym_PIPE, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - ACTIONS(5420), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5406), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5382), 3, + ACTIONS(111), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5396), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5408), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5418), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4953), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - [106491] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5402), 1, - anon_sym_QMARK, - ACTIONS(5404), 1, - anon_sym_AMP_AMP, + ACTIONS(5408), 1, + anon_sym_RBRACE, ACTIONS(5410), 1, - anon_sym_AMP, + anon_sym_async, ACTIONS(5412), 1, - anon_sym_PIPE, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - ACTIONS(5420), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5406), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5382), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5396), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5408), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5418), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4983), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - [106589] = 18, + anon_sym_static, + ACTIONS(5414), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + STATE(5152), 1, + aux_sym_object_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5416), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5418), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5138), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5406), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [106399] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5382), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5396), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5408), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5418), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(5420), 3, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [106671] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4833), 1, - anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_DOT, - ACTIONS(5454), 1, - anon_sym_is, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(4883), 13, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4917), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -218448,16 +218369,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 27, + ACTIONS(4921), 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -218476,32 +218396,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [106731] = 13, + [106455] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5427), 1, + anon_sym_LT, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - ACTIONS(5456), 1, - anon_sym_LT, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218515,7 +218430,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 19, + ACTIONS(5090), 22, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -218528,388 +218443,184 @@ 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_extends, - [106803] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(5461), 1, - anon_sym_RBRACE, - ACTIONS(5463), 1, - anon_sym_async, - ACTIONS(5465), 1, - anon_sym_static, - ACTIONS(5467), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5469), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5471), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5459), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [106895] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(5475), 1, - anon_sym_RBRACE, - ACTIONS(5477), 1, - anon_sym_async, - ACTIONS(5479), 1, - anon_sym_static, - ACTIONS(5481), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5483), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5485), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5473), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [106987] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(5489), 1, - anon_sym_RBRACE, - ACTIONS(5491), 1, - anon_sym_async, - ACTIONS(5493), 1, - anon_sym_static, - ACTIONS(5495), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5243), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5497), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5499), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5108), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5487), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [107079] = 26, + [106523] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5402), 1, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5446), 1, anon_sym_QMARK, - ACTIONS(5404), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, + ACTIONS(5464), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5021), 6, + ACTIONS(5086), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [107177] = 26, + [106621] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5402), 1, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5446), 1, anon_sym_QMARK, - ACTIONS(5404), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, + ACTIONS(5464), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5019), 6, + ACTIONS(5056), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [107275] = 12, + [106719] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5456), 1, + ACTIONS(5468), 1, anon_sym_LT, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5041), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -218923,7 +218634,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 20, + ACTIONS(5043), 20, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -218944,16 +218655,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [107345] = 5, + [106789] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5468), 1, anon_sym_LT, - STATE(2497), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(4887), 14, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -218966,17 +218692,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 28, + ACTIONS(5043), 20, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -218990,44 +218712,42 @@ 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, - [107401] = 6, + [106859] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5501), 1, - anon_sym_DOT, - STATE(2493), 1, - sym_type_arguments, - ACTIONS(4883), 14, - anon_sym_STAR, + ACTIONS(2004), 1, anon_sym_EQ, + ACTIONS(2954), 1, + anon_sym_extends, + ACTIONS(4911), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 11, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 27, - sym__automatic_semicolon, + ACTIONS(2006), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -219045,39 +218765,41 @@ 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, - [107459] = 5, + anon_sym_implements, + [106919] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, - anon_sym_LPAREN, - STATE(2565), 1, - sym_arguments, - ACTIONS(4901), 15, - anon_sym_STAR, + ACTIONS(4919), 1, anon_sym_EQ, + ACTIONS(5362), 1, + anon_sym_extends, + ACTIONS(4923), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 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(4903), 27, - sym__automatic_semicolon, + ACTIONS(4921), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -219096,357 +218818,133 @@ 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, - [107515] = 23, + anon_sym_implements, + [106979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, + ACTIONS(5186), 1, + anon_sym_EQ, + ACTIONS(5471), 3, anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(5505), 1, anon_sym_RBRACE, - ACTIONS(5507), 1, - anon_sym_async, - ACTIONS(5509), 1, - anon_sym_static, - ACTIONS(5511), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5513), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5515), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5503), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [107607] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, + anon_sym_RBRACK, + ACTIONS(5184), 14, anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(5519), 1, - anon_sym_RBRACE, - ACTIONS(5521), 1, - anon_sym_async, - ACTIONS(5523), 1, - anon_sym_static, - ACTIONS(5525), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5527), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5529), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5517), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [107699] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, anon_sym_BANG, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5390), 1, anon_sym_in, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5394), 1, anon_sym_LT, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5402), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5404), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5412), 1, anon_sym_PIPE, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - ACTIONS(5420), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5406), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5414), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5382), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5396), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5188), 26, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5418), 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(5017), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [107797] = 16, + [107035] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5382), 3, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(5474), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(2002), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5408), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, 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(4911), 16, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2006), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [107875] = 19, + [107091] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - STATE(5055), 1, + ACTIONS(5477), 1, + anon_sym_LT, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5414), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5396), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5408), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5418), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [107959] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5501), 1, - anon_sym_DOT, - ACTIONS(5531), 1, - anon_sym_is, - STATE(2493), 1, - sym_type_arguments, - ACTIONS(4883), 13, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -219460,16 +218958,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 27, + ACTIONS(5123), 20, 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, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -219483,930 +218978,729 @@ 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, - [108019] = 23, + [107161] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5404), 1, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5446), 1, + anon_sym_QMARK, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - STATE(5055), 1, + ACTIONS(5464), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5406), 2, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 8, + ACTIONS(5107), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_QMARK_QMARK, anon_sym_extends, - [108111] = 4, + [107259] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 1, - sym_regex_flags, - ACTIONS(5200), 18, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_extends, - ACTIONS(5202), 25, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5425), 1, anon_sym_LBRACK, + ACTIONS(5430), 1, anon_sym_DOT, + ACTIONS(5432), 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [108165] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5384), 1, + ACTIONS(5436), 1, anon_sym_as, - ACTIONS(5386), 1, + ACTIONS(5438), 1, anon_sym_BANG, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5390), 1, + ACTIONS(5440), 1, anon_sym_in, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5442), 1, anon_sym_LT, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5402), 1, + ACTIONS(5446), 1, anon_sym_QMARK, - ACTIONS(5404), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, + ACTIONS(5464), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4963), 6, + ACTIONS(5109), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [108263] = 26, + [107357] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5402), 1, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5446), 1, anon_sym_QMARK, - ACTIONS(5404), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, + ACTIONS(5464), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4949), 6, + ACTIONS(5111), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [108361] = 15, + [107455] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5416), 1, - anon_sym_STAR_STAR, - ACTIONS(5456), 1, - anon_sym_LT, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5382), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5408), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 10, - anon_sym_BANG, - anon_sym_in, - 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(4911), 16, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [108437] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5384), 1, + ACTIONS(5436), 1, anon_sym_as, - ACTIONS(5386), 1, + ACTIONS(5438), 1, anon_sym_BANG, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5390), 1, + ACTIONS(5440), 1, anon_sym_in, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5442), 1, anon_sym_LT, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5402), 1, + ACTIONS(5446), 1, anon_sym_QMARK, - ACTIONS(5404), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, + ACTIONS(5464), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4969), 6, + ACTIONS(5117), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [108535] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(5537), 1, - anon_sym_RBRACE, - ACTIONS(5539), 1, - anon_sym_async, - ACTIONS(5541), 1, - anon_sym_static, - ACTIONS(5543), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5142), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5545), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5547), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5106), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5535), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [108627] = 26, + [107553] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5402), 1, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5446), 1, anon_sym_QMARK, - ACTIONS(5404), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, + ACTIONS(5464), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4971), 6, + ACTIONS(5119), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [108725] = 7, + [107651] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(2956), 1, - anon_sym_extends, - ACTIONS(5058), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, - 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(1990), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, anon_sym_DOT, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5477), 1, + anon_sym_LT, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [108785] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5360), 1, - anon_sym_extends, - ACTIONS(5052), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5055), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(5050), 26, + ACTIONS(5123), 19, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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_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, - anon_sym_implements, - [108845] = 26, + anon_sym_extends, + [107723] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5402), 1, - anon_sym_QMARK, - ACTIONS(5404), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5412), 1, - anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4973), 6, + ACTIONS(5123), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [108943] = 5, + [107805] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(5549), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1986), 14, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5458), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5434), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5452), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 8, 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(1990), 26, + ACTIONS(5123), 16, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, + 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, anon_sym_extends, - [108999] = 21, + [107883] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5404), 1, - anon_sym_AMP_AMP, - ACTIONS(5410), 1, - anon_sym_AMP, - ACTIONS(5416), 1, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 10, + ACTIONS(5123), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [109087] = 5, + [107967] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym_EQ, - ACTIONS(5552), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(5164), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5440), 1, anon_sym_in, + ACTIONS(5442), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5448), 1, + anon_sym_AMP_AMP, + ACTIONS(5454), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5434), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5444), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5462), 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, + ACTIONS(5123), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [109143] = 11, + [108055] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5555), 1, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + ACTIONS(5477), 1, anon_sym_LT, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - STATE(2916), 2, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5225), 13, + ACTIONS(5434), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5452), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, 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(5227), 22, + ACTIONS(5123), 16, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -220415,505 +219709,619 @@ 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, anon_sym_extends, - [109211] = 26, + [108131] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5402), 1, - anon_sym_QMARK, - ACTIONS(5404), 1, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5235), 6, + ACTIONS(5123), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_extends, - [109309] = 23, + [108223] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5560), 1, - anon_sym_RBRACE, - ACTIONS(5562), 1, - anon_sym_async, - ACTIONS(5564), 1, - anon_sym_static, - ACTIONS(5566), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5568), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5570), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5558), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [109401] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5572), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(5046), 14, - anon_sym_STAR, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, anon_sym_BANG, + ACTIONS(5440), 1, anon_sym_in, + ACTIONS(5442), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5446), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5448), 1, + anon_sym_AMP_AMP, + ACTIONS(5454), 1, anon_sym_AMP, + ACTIONS(5456), 1, anon_sym_PIPE, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5450), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5434), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5444), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5462), 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, + ACTIONS(5132), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - [109457] = 26, + [108321] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5384), 1, - anon_sym_as, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5390), 1, - anon_sym_in, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5394), 1, - anon_sym_LT, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5402), 1, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5446), 1, anon_sym_QMARK, - ACTIONS(5404), 1, + ACTIONS(5448), 1, anon_sym_AMP_AMP, - ACTIONS(5410), 1, + ACTIONS(5454), 1, anon_sym_AMP, - ACTIONS(5412), 1, + ACTIONS(5456), 1, anon_sym_PIPE, - ACTIONS(5416), 1, + ACTIONS(5460), 1, anon_sym_STAR_STAR, - ACTIONS(5420), 1, + ACTIONS(5464), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5406), 2, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5414), 2, + ACTIONS(5458), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5382), 3, + ACTIONS(5434), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5396), 3, + ACTIONS(5444), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5408), 3, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5418), 5, + ACTIONS(5462), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5284), 6, + ACTIONS(5134), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [109555] = 23, + [108419] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(5577), 1, - anon_sym_RBRACE, - ACTIONS(5579), 1, - anon_sym_async, - ACTIONS(5581), 1, - anon_sym_static, - ACTIONS(5583), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - STATE(5141), 1, - aux_sym_object_pattern_repeat1, - STATE(5272), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5585), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5587), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5282), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5575), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [109647] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5589), 1, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, anon_sym_LT, - STATE(5055), 1, + ACTIONS(5446), 1, + anon_sym_QMARK, + ACTIONS(5448), 1, + anon_sym_AMP_AMP, + ACTIONS(5454), 1, + anon_sym_AMP, + ACTIONS(5456), 1, + anon_sym_PIPE, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5450), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5458), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5434), 3, 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, + ACTIONS(5444), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 20, + ACTIONS(5452), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5462), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4897), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_extends, + [108517] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5446), 1, + anon_sym_QMARK, + ACTIONS(5448), 1, anon_sym_AMP_AMP, + ACTIONS(5454), 1, + anon_sym_AMP, + ACTIONS(5456), 1, + anon_sym_PIPE, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5458), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5434), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5444), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5462), 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, + ACTIONS(5025), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - [109717] = 12, + [108615] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5589), 1, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, anon_sym_LT, - STATE(5055), 1, + ACTIONS(5446), 1, + anon_sym_QMARK, + ACTIONS(5448), 1, + anon_sym_AMP_AMP, + ACTIONS(5454), 1, + anon_sym_AMP, + ACTIONS(5456), 1, + anon_sym_PIPE, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5450), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5458), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5434), 3, 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, + ACTIONS(5444), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 20, + ACTIONS(5452), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5462), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5021), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_extends, + [108713] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5436), 1, + anon_sym_as, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5440), 1, + anon_sym_in, + ACTIONS(5442), 1, + anon_sym_LT, + ACTIONS(5446), 1, + anon_sym_QMARK, + ACTIONS(5448), 1, anon_sym_AMP_AMP, + ACTIONS(5454), 1, + anon_sym_AMP, + ACTIONS(5456), 1, + anon_sym_PIPE, + ACTIONS(5460), 1, + anon_sym_STAR_STAR, + ACTIONS(5464), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5450), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5458), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5434), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5444), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5452), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5462), 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, + ACTIONS(5202), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - [109787] = 7, + [108811] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(2956), 1, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(5058), 2, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(5482), 1, + anon_sym_RBRACE, + ACTIONS(5484), 1, + anon_sym_async, + ACTIONS(5486), 1, + anon_sym_static, + ACTIONS(5488), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5490), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5492), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5480), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [108903] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_LT, + ACTIONS(4883), 1, + anon_sym_DOT, + ACTIONS(5494), 1, + anon_sym_is, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(4881), 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(1990), 26, + ACTIONS(3916), 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -220931,42 +220339,385 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [109847] = 7, + anon_sym_extends, + [108963] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5360), 1, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(5052), 2, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(5498), 1, + anon_sym_RBRACE, + ACTIONS(5500), 1, + anon_sym_async, + ACTIONS(5502), 1, + anon_sym_static, + ACTIONS(5504), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5372), 1, + aux_sym_object_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5506), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5508), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5369), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5496), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [109055] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_LBRACK, + ACTIONS(5512), 1, + anon_sym_RBRACE, + ACTIONS(5514), 1, + anon_sym_async, + ACTIONS(5516), 1, + anon_sym_static, + ACTIONS(5518), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5520), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5522), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5510), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [109147] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_LBRACK, + ACTIONS(5526), 1, + anon_sym_RBRACE, + ACTIONS(5528), 1, + anon_sym_async, + ACTIONS(5530), 1, + anon_sym_static, + ACTIONS(5532), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + STATE(5152), 1, + aux_sym_object_repeat1, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5534), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5536), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5138), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5524), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [109239] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_LBRACK, + ACTIONS(5540), 1, + anon_sym_RBRACE, + ACTIONS(5542), 1, + anon_sym_async, + ACTIONS(5544), 1, + anon_sym_static, + ACTIONS(5546), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5218), 1, + aux_sym_object_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5548), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5550), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5213), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5538), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [109331] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_LBRACK, + ACTIONS(5554), 1, + anon_sym_RBRACE, + ACTIONS(5556), 1, + anon_sym_async, + ACTIONS(5558), 1, + anon_sym_static, + ACTIONS(5560), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5562), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5564), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5552), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [109423] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4961), 1, + anon_sym_LT, + ACTIONS(5372), 1, + anon_sym_DOT, + STATE(2602), 1, + sym_type_arguments, + ACTIONS(4881), 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(5050), 26, + ACTIONS(3916), 27, + 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_DOT, - anon_sym_EQ_GT, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -220984,7 +220735,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [109907] = 23, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [109481] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(111), 1, @@ -220993,55 +220746,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(5428), 1, + ACTIONS(5380), 1, anon_sym_LBRACK, - ACTIONS(5594), 1, + ACTIONS(5568), 1, anon_sym_RBRACE, - ACTIONS(5596), 1, + ACTIONS(5570), 1, anon_sym_async, - ACTIONS(5598), 1, + ACTIONS(5572), 1, anon_sym_static, - ACTIONS(5600), 1, + ACTIONS(5574), 1, anon_sym_readonly, - STATE(3832), 1, + STATE(3834), 1, sym_accessibility_modifier, - STATE(5141), 1, + STATE(5156), 1, aux_sym_object_pattern_repeat1, - STATE(5142), 1, + STATE(5170), 1, aux_sym_object_repeat1, ACTIONS(129), 2, sym_number, sym_private_property_identifier, - ACTIONS(5602), 2, + ACTIONS(5576), 2, anon_sym_get, anon_sym_set, - ACTIONS(5604), 3, + ACTIONS(5578), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4362), 3, + STATE(4396), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5106), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5148), 3, + STATE(5136), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5859), 3, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5592), 11, + ACTIONS(5566), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -221053,10 +220806,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [109999] = 3, + [109573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 15, + ACTIONS(4957), 1, + anon_sym_LPAREN, + STATE(2541), 1, + sym_arguments, + ACTIONS(4889), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -221072,13 +220829,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5138), 28, + ACTIONS(4891), 27, 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, @@ -221101,87 +220857,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [110050] = 27, + [109629] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5608), 1, + ACTIONS(5582), 1, + anon_sym_RBRACE, + ACTIONS(5584), 1, + anon_sym_async, + ACTIONS(5586), 1, + anon_sym_static, + ACTIONS(5588), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + STATE(5170), 1, + aux_sym_object_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5590), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5592), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5167), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5580), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [109721] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5594), 1, + sym_regex_flags, + ACTIONS(5208), 18, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(5610), 1, anon_sym_as, - ACTIONS(5612), 1, + anon_sym_BANG, anon_sym_in, - ACTIONS(5614), 1, anon_sym_LT, - ACTIONS(5618), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5628), 1, anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5284), 4, + anon_sym_instanceof, + anon_sym_extends, + ACTIONS(5210), 25, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 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_instanceof, - [110149] = 3, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [109775] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 15, + ACTIONS(4961), 1, + anon_sym_LT, + STATE(2598), 1, + sym_type_arguments, + ACTIONS(4885), 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, @@ -221192,7 +220998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5300), 28, + ACTIONS(4887), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -221221,179 +221027,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [110200] = 26, + [109831] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4895), 1, + anon_sym_EQ, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4983), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [110297] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(5606), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5608), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5614), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(5624), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5610), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4949), 5, + ACTIONS(4897), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110394] = 5, + [109930] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(5326), 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(3848), 25, + ACTIONS(5328), 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, @@ -221412,11 +221145,12 @@ 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, - [110449] = 3, + [109981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 15, + ACTIONS(5218), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -221432,7 +221166,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 28, + ACTIONS(5220), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -221461,175 +221195,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [110500] = 26, + [110032] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5626), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5088), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5284), 5, + ACTIONS(5090), 21, + anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(5662), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110597] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [110099] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(5606), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5608), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5614), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(5624), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5629), 1, + anon_sym_EQ, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5610), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5235), 5, + ACTIONS(5107), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110694] = 12, + [110198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5666), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(3842), 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, @@ -221640,13 +221342,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 19, + ACTIONS(3846), 28, + 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_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, @@ -221660,71 +221366,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [110763] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [110249] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5669), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 13, - anon_sym_STAR, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5330), 1, + anon_sym_EQ, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5606), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5608), 1, + anon_sym_AMP_AMP, + ACTIONS(5614), 1, anon_sym_AMP, + ACTIONS(5616), 1, anon_sym_PIPE, + ACTIONS(5620), 1, + anon_sym_STAR_STAR, + ACTIONS(5624), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5610), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5596), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5604), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 21, - 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, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5109), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 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, - [110830] = 3, + [110348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 15, + ACTIONS(5631), 1, + anon_sym_LT, + ACTIONS(5633), 1, + anon_sym_DOT, + ACTIONS(5635), 1, + anon_sym_is, + STATE(2861), 1, + sym_type_arguments, + ACTIONS(4881), 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, @@ -221735,16 +221468,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 28, + ACTIONS(3916), 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, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -221763,38 +221495,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [110881] = 5, + [110407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(2077), 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(3848), 25, + ACTIONS(2079), 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, @@ -221813,82 +221541,191 @@ 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, - [110936] = 26, + [110458] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(5606), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5608), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5614), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(5624), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5637), 1, + anon_sym_EQ, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5610), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5017), 5, + ACTIONS(5111), 4, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [110557] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4899), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(3846), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [110612] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5639), 1, + anon_sym_LT, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(5123), 19, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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, - [111033] = 3, + anon_sym_extends, + [110681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 15, + ACTIONS(5261), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -221904,7 +221741,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 28, + ACTIONS(5263), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -221933,10 +221770,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111084] = 3, + [110732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5286), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -221952,7 +221789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 28, + ACTIONS(4969), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -221981,10 +221818,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111135] = 3, + [110783] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 15, + ACTIONS(5239), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222000,7 +221837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2305), 28, + ACTIONS(5119), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222029,10 +221866,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111186] = 3, + [110834] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222048,7 +221885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5223), 28, + ACTIONS(4969), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222077,12 +221914,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111237] = 4, + [110885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, - anon_sym_LBRACK, - ACTIONS(5237), 15, + ACTIONS(5198), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222098,7 +221933,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5239), 27, + ACTIONS(5200), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222106,6 +221941,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222126,10 +221962,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111290] = 3, + [110936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 15, + ACTIONS(5241), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222145,7 +221981,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 28, + ACTIONS(5243), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222174,10 +222010,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111341] = 3, + [110987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 15, + ACTIONS(5245), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222193,7 +222029,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5076), 28, + ACTIONS(5247), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222222,40 +222058,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111392] = 6, + [111038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_COMMA, - ACTIONS(5078), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(5249), 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(3848), 26, + ACTIONS(5251), 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -222273,38 +222104,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [111449] = 6, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [111089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(5253), 15, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(5058), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5061), 3, + 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(1986), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5255), 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, + [111140] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5257), 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(1990), 25, + ACTIONS(5259), 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, @@ -222323,22 +222200,93 @@ 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, - [111506] = 6, + [111191] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5052), 3, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5111), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [111288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4905), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5055), 3, + ACTIONS(4908), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(3842), 12, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -222349,7 +222297,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 25, + ACTIONS(3846), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222375,152 +222323,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_PIPE_RBRACE, - [111563] = 26, + [111343] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, ACTIONS(5660), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE, ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5019), 5, + ACTIONS(5086), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(5662), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111660] = 26, + [111440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5021), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [111757] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5294), 15, + ACTIONS(5113), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222536,7 +222413,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 28, + ACTIONS(5115), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222565,35 +222442,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111808] = 13, + [111491] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4965), 1, anon_sym_QMARK_DOT, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5674), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + ACTIONS(2055), 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, @@ -222604,60 +222467,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 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, - [111879] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_COMMA, - ACTIONS(5068), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, - 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(3848), 26, + ACTIONS(2057), 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_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, @@ -222674,295 +222491,348 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [111936] = 27, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [111548] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(5606), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5608), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5614), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(5624), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - STATE(5082), 1, + ACTIONS(5670), 1, + anon_sym_EQ, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5610), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5679), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, + ACTIONS(5117), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112035] = 18, + [111647] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5642), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5239), 1, + anon_sym_EQ, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, + anon_sym_in, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5660), 1, + ACTIONS(5606), 1, + anon_sym_QMARK, + ACTIONS(5608), 1, + anon_sym_AMP_AMP, + ACTIONS(5614), 1, + anon_sym_AMP, + ACTIONS(5616), 1, + anon_sym_PIPE, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(5624), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5610), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5662), 5, + ACTIONS(5119), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 10, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [112116] = 6, + [111746] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, - anon_sym_extends, - ACTIONS(5068), 2, - anon_sym_COMMA, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5620), 1, + anon_sym_STAR_STAR, + ACTIONS(5672), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(3848), 26, + ACTIONS(5123), 17, + sym__automatic_semicolon, 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_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, - anon_sym_implements, - [112173] = 3, + anon_sym_extends, + [111817] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5620), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5618), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5596), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5604), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5612), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5622), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5121), 6, 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(5312), 28, + ACTIONS(5123), 9, 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, - [112224] = 6, + [111898] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_extends, - ACTIONS(5078), 2, - anon_sym_COMMA, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, - anon_sym_STAR, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 26, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5656), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5056), 5, + 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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_implements, - [112281] = 3, + [111995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 15, + ACTIONS(5265), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222978,7 +222848,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5255), 28, + ACTIONS(5267), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223007,43 +222877,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [112332] = 16, + [112046] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 8, + ACTIONS(5121), 9, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -223052,13 +222923,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 15, + ACTIONS(5123), 14, + 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_CARET, @@ -223068,170 +222937,271 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [112409] = 19, + anon_sym_extends, + [112123] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, + ACTIONS(5121), 5, + anon_sym_EQ, anon_sym_BANG, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5662), 5, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 10, + ACTIONS(5123), 9, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [112206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5214), 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(5216), 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, + [112257] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4887), 1, anon_sym_COMMA, + ACTIONS(4899), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 11, + 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(3846), 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_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, - [112492] = 21, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [112314] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5648), 1, + ACTIONS(5608), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5614), 1, anon_sym_AMP, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5121), 4, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 9, + ACTIONS(5123), 8, + 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_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [112579] = 15, + anon_sym_extends, + [112401] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - ACTIONS(5674), 1, + ACTIONS(5672), 1, anon_sym_LT, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 10, + ACTIONS(5121), 11, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -223242,13 +223212,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 15, + ACTIONS(5123), 14, + 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_CARET, @@ -223258,31 +223226,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [112654] = 12, + anon_sym_extends, + [112476] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5674), 1, + ACTIONS(5672), 1, anon_sym_LT, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5121), 14, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -223295,13 +223265,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 19, + ACTIONS(5123), 18, + 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, @@ -223315,102 +223283,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [112723] = 23, + anon_sym_extends, + [112545] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5648), 1, + ACTIONS(5608), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5614), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5610), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5121), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 7, + ACTIONS(5123), 6, + 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_QMARK_QMARK, - [112814] = 3, + anon_sym_extends, + [112636] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 15, - anon_sym_STAR, + ACTIONS(2004), 1, anon_sym_EQ, + ACTIONS(4911), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 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(4889), 28, + ACTIONS(2006), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -223429,178 +223402,87 @@ 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, - [112865] = 26, + [112693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(2311), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4953), 5, + ACTIONS(2309), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [112962] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4961), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 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, - [113059] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [112744] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 15, - anon_sym_STAR, + ACTIONS(4919), 1, anon_sym_EQ, + ACTIONS(4923), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 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(2070), 28, + ACTIONS(4921), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -223619,12 +223501,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, - [113110] = 3, + [112801] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 15, + ACTIONS(4885), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223640,7 +223521,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2016), 28, + ACTIONS(4887), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223669,10 +223550,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113161] = 3, + [112852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 15, + ACTIONS(2055), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223688,7 +223569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5316), 28, + ACTIONS(2057), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223717,13 +223598,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113212] = 4, + [112903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(5675), 1, + anon_sym_LBRACK, + ACTIONS(5229), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -223737,7 +223619,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 28, + ACTIONS(5231), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223745,7 +223627,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -223766,13 +223647,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113265] = 4, + [112956] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5046), 14, + ACTIONS(5235), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -223786,7 +223666,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 28, + ACTIONS(5237), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223815,35 +223695,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113318] = 3, + [113007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 15, + ACTIONS(5224), 1, + anon_sym_COMMA, + ACTIONS(4905), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4908), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(5320), 28, - sym__automatic_semicolon, + ACTIONS(3846), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -223861,66 +223746,85 @@ 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, - [113369] = 7, + [113064] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, - anon_sym_LT, - ACTIONS(5683), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5685), 1, - anon_sym_is, - STATE(2927), 1, - sym_type_arguments, - ACTIONS(4883), 13, - anon_sym_STAR, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5136), 1, + anon_sym_EQ, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5602), 1, + anon_sym_LT, + ACTIONS(5606), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5608), 1, + anon_sym_AMP_AMP, + ACTIONS(5614), 1, anon_sym_AMP, + ACTIONS(5616), 1, anon_sym_PIPE, + ACTIONS(5620), 1, + anon_sym_STAR_STAR, + ACTIONS(5624), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5610), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5596), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5604), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 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_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5132), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 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, - [113428] = 3, + [113163] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5344), 15, + ACTIONS(5374), 1, + anon_sym_is, + ACTIONS(4885), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -223934,7 +223838,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5346), 28, + ACTIONS(4887), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223963,58 +223867,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113479] = 3, + [113216] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, + ACTIONS(5602), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5606), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5608), 1, + anon_sym_AMP_AMP, + ACTIONS(5614), 1, anon_sym_AMP, + ACTIONS(5616), 1, anon_sym_PIPE, + ACTIONS(5620), 1, + anon_sym_STAR_STAR, + ACTIONS(5624), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5677), 1, + anon_sym_EQ, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5610), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5596), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5604), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 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, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5134), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 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_PIPE_RBRACE, - [113530] = 3, + [113315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 15, + ACTIONS(2968), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224030,7 +223958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 28, + ACTIONS(2966), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224059,10 +223987,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113581] = 3, + [113366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 15, + ACTIONS(5103), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224078,7 +224006,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5342), 28, + ACTIONS(5105), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224107,10 +224035,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113632] = 3, + [113417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 15, + ACTIONS(5138), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224126,7 +224054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 28, + ACTIONS(5140), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224155,58 +224083,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113683] = 3, + [113468] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_AMP, + ACTIONS(5660), 1, anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5330), 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, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5117), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 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_PIPE_RBRACE, - [113734] = 3, + [113565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224222,7 +224173,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 28, + ACTIONS(4969), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224251,13 +224202,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113785] = 4, + [113616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3846), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(4953), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -224271,16 +224221,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 28, + ACTIONS(4955), 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, @@ -224300,152 +224249,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [113838] = 26, + anon_sym_PIPE_RBRACE, + [113667] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5691), 1, - anon_sym_in, - ACTIONS(5693), 1, - anon_sym_LT, - ACTIONS(5697), 1, - anon_sym_QMARK, - ACTIONS(5699), 1, - anon_sym_AMP_AMP, - ACTIONS(5705), 1, - anon_sym_AMP, - ACTIONS(5707), 1, - anon_sym_PIPE, - ACTIONS(5711), 1, - anon_sym_STAR_STAR, - ACTIONS(5715), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5701), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5709), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5687), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5695), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5703), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4983), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5713), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [113935] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5386), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5689), 1, - anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4949), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5119), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114032] = 3, + [113764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 15, + ACTIONS(4979), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224461,7 +224340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5304), 28, + ACTIONS(4981), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224490,156 +224369,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [114083] = 4, + [113815] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5023), 1, anon_sym_EQ, - ACTIONS(1986), 14, - anon_sym_STAR, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, + ACTIONS(5602), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5606), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5608), 1, + anon_sym_AMP_AMP, + ACTIONS(5614), 1, anon_sym_AMP, + ACTIONS(5616), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1990), 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, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5624), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114136] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3866), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(5610), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5618), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5596), 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, + ACTIONS(5604), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 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, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5025), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 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_PIPE_RBRACE, - [114189] = 3, + [113914] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 15, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5019), 1, anon_sym_EQ, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, + ACTIONS(5602), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5606), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5608), 1, + anon_sym_AMP_AMP, + ACTIONS(5614), 1, anon_sym_AMP, + ACTIONS(5616), 1, anon_sym_PIPE, + ACTIONS(5620), 1, + anon_sym_STAR_STAR, + ACTIONS(5624), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5610), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5596), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5604), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 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, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5021), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 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_PIPE_RBRACE, - [114240] = 3, + [114013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 15, + ACTIONS(4949), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224655,7 +224532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5282), 28, + ACTIONS(4951), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224684,63 +224561,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [114291] = 3, + [114064] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 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(3848), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4829), 1, anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114342] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5276), 15, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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, @@ -224751,17 +224598,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 28, - sym__automatic_semicolon, + ACTIONS(5043), 19, 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, @@ -224775,17 +224618,15 @@ 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, - [114393] = 3, + [114133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 15, - anon_sym_STAR, + ACTIONS(2004), 1, anon_sym_EQ, + ACTIONS(5031), 1, + sym__automatic_semicolon, + ACTIONS(2000), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -224799,8 +224640,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2285), 28, - sym__automatic_semicolon, + ACTIONS(1998), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -224828,160 +224668,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [114444] = 7, + [114188] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5028), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5194), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5196), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2056), 12, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(5438), 1, anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_as, + ACTIONS(5686), 1, anon_sym_in, + ACTIONS(5688), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5692), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2058), 23, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5694), 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(5700), 1, + anon_sym_AMP, + ACTIONS(5702), 1, + anon_sym_PIPE, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [114503] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5269), 15, + ACTIONS(5696), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5704), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5682), 3, 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, + ACTIONS(5690), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5271), 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, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5107), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5708), 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_PIPE_RBRACE, - [114554] = 3, + [114285] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5265), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5438), 1, anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_as, + ACTIONS(5686), 1, anon_sym_in, + ACTIONS(5688), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5692), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5694), 1, + anon_sym_AMP_AMP, + ACTIONS(5700), 1, anon_sym_AMP, + ACTIONS(5702), 1, anon_sym_PIPE, + ACTIONS(5706), 1, + anon_sym_STAR_STAR, + ACTIONS(5710), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5696), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5690), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5267), 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, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5109), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5708), 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_PIPE_RBRACE, - [114605] = 3, + [114382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 15, - anon_sym_STAR, + ACTIONS(3844), 1, anon_sym_EQ, + ACTIONS(3842), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -224995,7 +224830,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2956), 28, + ACTIONS(3846), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225024,21 +224859,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [114656] = 6, + [114435] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4919), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5028), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(2056), 15, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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, @@ -225049,14 +224896,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 25, - sym__automatic_semicolon, + ACTIONS(5043), 19, 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_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -225070,86 +224916,82 @@ 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, - [114713] = 26, + [114504] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5598), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5606), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5608), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5614), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5624), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + ACTIONS(5712), 1, + anon_sym_EQ, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5610), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5017), 5, + ACTIONS(5202), 4, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114810] = 3, + [114603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 15, + ACTIONS(5269), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225165,7 +225007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 28, + ACTIONS(5271), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225194,28 +225036,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [114861] = 7, + [114654] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(5028), 1, - anon_sym_QMARK_DOT, - ACTIONS(5194), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5196), 8, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2056), 12, + ACTIONS(5136), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -225223,13 +225049,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(2058), 18, + ACTIONS(5132), 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, @@ -225246,17 +225082,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [114920] = 4, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [114705] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4925), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5194), 15, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5714), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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, @@ -225267,43 +225123,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 27, - sym__automatic_semicolon, + ACTIONS(5123), 18, 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_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_extends, - anon_sym_PIPE_RBRACE, - [114973] = 3, + [114776] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 15, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5717), 1, + anon_sym_LT, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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, @@ -225314,17 +225179,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 28, + ACTIONS(5043), 19, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -225338,15 +225198,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, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [115024] = 3, + [114845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 15, + ACTIONS(5099), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225362,7 +225218,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5360), 28, + ACTIONS(5101), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225391,17 +225247,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115075] = 6, + [114896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, - anon_sym_extends, - ACTIONS(5672), 1, - anon_sym_LBRACK, - ACTIONS(5237), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5362), 13, + ACTIONS(2237), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225411,11 +225260,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(5364), 26, + ACTIONS(2239), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225423,6 +225274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -225441,16 +225293,35 @@ 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, - [115132] = 3, + [114947] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 15, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5717), 1, + anon_sym_LT, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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, @@ -225461,17 +225332,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5368), 28, + ACTIONS(5043), 19, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -225485,18 +225351,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_extends, - anon_sym_PIPE_RBRACE, - [115183] = 4, + [115016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5531), 1, - anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(5273), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -225510,7 +225371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 28, + ACTIONS(5275), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225539,10 +225400,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115236] = 3, + [115067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 15, + ACTIONS(5277), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225558,7 +225419,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5170), 28, + ACTIONS(5279), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225587,63 +225448,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115287] = 3, + [115118] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5374), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5438), 1, anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_as, + ACTIONS(5686), 1, anon_sym_in, + ACTIONS(5688), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5692), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5694), 1, + anon_sym_AMP_AMP, + ACTIONS(5700), 1, anon_sym_AMP, + ACTIONS(5702), 1, anon_sym_PIPE, + ACTIONS(5706), 1, + anon_sym_STAR_STAR, + ACTIONS(5710), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5696), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5690), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5376), 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, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5111), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5708), 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_PIPE_RBRACE, - [115338] = 3, + [115215] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5720), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 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, @@ -225654,17 +225554,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 28, + ACTIONS(5090), 20, 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, @@ -225680,13 +225574,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_PIPE_RBRACE, - [115389] = 3, + [115282] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 15, + ACTIONS(4774), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225702,7 +225594,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5380), 28, + ACTIONS(4778), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225731,186 +225623,245 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115440] = 3, + [115333] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_AMP, + ACTIONS(5660), 1, anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4949), 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, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5725), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 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_PIPE_RBRACE, - [115491] = 3, + [115432] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, + ACTIONS(5602), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5606), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5608), 1, + anon_sym_AMP_AMP, + ACTIONS(5614), 1, anon_sym_AMP, + ACTIONS(5616), 1, anon_sym_PIPE, + ACTIONS(5620), 1, + anon_sym_STAR_STAR, + ACTIONS(5624), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5727), 1, + anon_sym_EQ, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5610), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5596), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5604), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5354), 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, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5086), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 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_PIPE_RBRACE, - [115542] = 11, + [115531] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5717), 1, + ACTIONS(5646), 1, anon_sym_LT, - STATE(5055), 1, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - STATE(2916), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5225), 13, + ACTIONS(5642), 3, 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, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 21, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5666), 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_extends, - [115609] = 3, + ACTIONS(5123), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [115612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 15, + ACTIONS(5224), 1, + anon_sym_extends, + ACTIONS(4905), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4908), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(5259), 28, - sym__automatic_semicolon, + ACTIONS(3846), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -225929,108 +225880,111 @@ 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, - [115660] = 26, + anon_sym_implements, + [115669] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5598), 1, + anon_sym_as, + ACTIONS(5600), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5602), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(5606), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5608), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5614), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5616), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5620), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(5624), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5729), 1, + anon_sym_EQ, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5610), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5618), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5596), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5604), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5612), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4963), 5, + ACTIONS(5056), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5622), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115757] = 4, + [115768] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5672), 1, + ACTIONS(4887), 1, + anon_sym_extends, + ACTIONS(4899), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5370), 15, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(5372), 27, - sym__automatic_semicolon, + ACTIONS(3846), 26, 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_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -226049,249 +226003,224 @@ 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, - [115810] = 27, + anon_sym_implements, + [115825] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(5612), 1, - anon_sym_in, - ACTIONS(5614), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5618), 1, - anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, - anon_sym_AMP, - ACTIONS(5628), 1, - anon_sym_PIPE, - ACTIONS(5632), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5720), 1, - anon_sym_EQ, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4973), 4, - sym__automatic_semicolon, + ACTIONS(5121), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5123), 15, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 5, + 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, - [115909] = 26, + [115902] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, - anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5697), 1, - anon_sym_QMARK, - ACTIONS(5699), 1, - anon_sym_AMP_AMP, - ACTIONS(5705), 1, - anon_sym_AMP, - ACTIONS(5707), 1, - anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5019), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116006] = 26, + ACTIONS(5123), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [115985] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, - anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5697), 1, - anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5707), 1, - anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5021), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116103] = 13, + ACTIONS(5123), 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, + [116072] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5711), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, + ACTIONS(5731), 1, anon_sym_LT, - STATE(5055), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5041), 14, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -226304,11 +226233,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 18, + ACTIONS(5043), 18, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -226316,6 +226244,7 @@ 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, @@ -226323,161 +226252,273 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [116174] = 26, + [116141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5289), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4971), 5, + ACTIONS(5291), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 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, - [116271] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [116192] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5693), 1, + ACTIONS(5714), 1, anon_sym_LT, - ACTIONS(5711), 1, - anon_sym_STAR_STAR, - STATE(5055), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5709), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2916), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5121), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5695), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5123), 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4913), 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, + [116261] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5731), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 14, + 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, - ACTIONS(5713), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5043), 18, + 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, - ACTIONS(4911), 10, + anon_sym_extends, + [116330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5095), 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(5097), 28, 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, - [116352] = 10, + anon_sym_PIPE_RBRACE, + [116381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 1, + ACTIONS(5281), 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(5283), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5392), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5398), 1, anon_sym_DOT, - ACTIONS(5681), 1, - anon_sym_LT, - ACTIONS(5725), 1, anon_sym_QMARK_DOT, - STATE(2661), 1, - sym_type_arguments, - STATE(2874), 1, - sym_arguments, - ACTIONS(4825), 13, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [116432] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2964), 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, @@ -226488,13 +226529,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4827), 23, + ACTIONS(2962), 28, 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -226512,226 +226557,486 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [116417] = 27, + anon_sym_PIPE_RBRACE, + [116483] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5438), 1, anon_sym_BANG, - ACTIONS(5217), 1, - anon_sym_EQ, - ACTIONS(5610), 1, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5612), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5614), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5618), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5620), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5626), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5628), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5632), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5636), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5622), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5630), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5616), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4971), 4, + ACTIONS(5117), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5634), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116516] = 27, + [116580] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5438), 1, anon_sym_BANG, - ACTIONS(5219), 1, - anon_sym_EQ, - ACTIONS(5610), 1, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5612), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5614), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5618), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5620), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5626), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5628), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5632), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5636), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5622), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5630), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5616), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4969), 4, + ACTIONS(5119), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5634), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116615] = 27, + [116677] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5639), 1, + anon_sym_LT, + ACTIONS(5706), 1, + anon_sym_STAR_STAR, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5247), 1, - anon_sym_EQ, - ACTIONS(5610), 1, + 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(5123), 18, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - ACTIONS(5612), 1, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [116748] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5037), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(5614), 1, anon_sym_LT, - ACTIONS(5618), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5620), 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(5039), 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, - ACTIONS(5626), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [116799] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5688), 1, + anon_sym_LT, + ACTIONS(5706), 1, + anon_sym_STAR_STAR, + STATE(4925), 1, + sym_type_arguments, + ACTIONS(5466), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5704), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5682), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5690), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5698), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5708), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5123), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [116880] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4945), 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, - ACTIONS(5628), 1, anon_sym_PIPE, - ACTIONS(5632), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4947), 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, - ACTIONS(5636), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(5014), 1, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [116931] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5622), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5630), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5616), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4963), 4, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5123), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [117022] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5033), 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(5035), 28, sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 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, - [116714] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117073] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 15, + ACTIONS(4941), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226747,7 +227052,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5032), 28, + ACTIONS(4943), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226776,10 +227081,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116765] = 3, + [117124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 15, + ACTIONS(4971), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226795,7 +227100,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5044), 28, + ACTIONS(4973), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226824,10 +227129,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116816] = 3, + [117175] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_QMARK_DOT, + ACTIONS(4987), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4989), 8, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(2055), 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(2057), 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, + [117234] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 15, + ACTIONS(5204), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226843,7 +227200,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 28, + ACTIONS(5206), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226872,10 +227229,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116867] = 3, + [117285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226891,7 +227248,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2122), 28, + ACTIONS(4969), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226920,115 +227277,114 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116918] = 27, + [117336] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5610), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5612), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5614), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5618), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5620), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5626), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5628), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5632), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5636), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - ACTIONS(5727), 1, - anon_sym_EQ, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5622), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5630), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5616), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4961), 4, - sym__automatic_semicolon, + ACTIONS(5107), 5, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 5, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [117017] = 16, + [117433] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 8, + ACTIONS(5121), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -227037,7 +227393,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 15, + ACTIONS(5123), 15, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -227053,60 +227409,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [117094] = 19, + [117510] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, + ACTIONS(5121), 4, anon_sym_BANG, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 10, + ACTIONS(5123), 10, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -227117,63 +227473,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [117177] = 21, + [117593] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5121), 3, anon_sym_BANG, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 9, + ACTIONS(5123), 9, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -227183,40 +227539,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [117264] = 15, + [117680] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5711), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, + ACTIONS(5639), 1, anon_sym_LT, - STATE(5055), 1, + ACTIONS(5706), 1, + anon_sym_STAR_STAR, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 10, + ACTIONS(5121), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -227227,7 +227583,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 15, + ACTIONS(5123), 15, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -227243,67 +227599,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [117339] = 23, + [117755] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(4913), 2, + ACTIONS(5121), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 7, + ACTIONS(5123), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -227311,294 +227667,250 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_QMARK_QMARK, anon_sym_extends, - [117430] = 27, + [117846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5322), 1, + ACTIONS(2157), 15, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(5612), 1, + anon_sym_BANG, anon_sym_in, - ACTIONS(5614), 1, anon_sym_LT, - ACTIONS(5618), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5628), 1, anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4953), 4, + ACTIONS(2159), 28, sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 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, - [117529] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117897] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4953), 5, + ACTIONS(5132), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [117626] = 26, + [117994] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4961), 5, + ACTIONS(5134), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [117723] = 23, + [118091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5612), 1, + ACTIONS(4975), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(5614), 1, anon_sym_LT, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5628), 1, anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(4977), 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, - ACTIONS(5634), 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(4911), 6, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [117814] = 4, + anon_sym_PIPE_RBRACE, + [118142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5454), 1, + ACTIONS(5494), 1, anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(4885), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -227613,7 +227925,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 28, + ACTIONS(4887), 28, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -227642,34 +227954,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [117867] = 12, + [118195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5729), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 14, + ACTIONS(5027), 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, @@ -227680,11 +227973,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 18, + ACTIONS(5029), 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, @@ -227698,224 +227997,139 @@ 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, - [117936] = 15, + anon_sym_PIPE_RBRACE, + [118246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5729), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, + ACTIONS(4895), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 11, 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(4911), 14, + ACTIONS(4897), 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, - [118011] = 21, + anon_sym_PIPE_RBRACE, + [118297] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5612), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5684), 1, + anon_sym_as, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5614), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5620), 1, + ACTIONS(5692), 1, + anon_sym_QMARK, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5626), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5632), 1, + ACTIONS(5702), 1, + anon_sym_PIPE, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + ACTIONS(5710), 1, + anon_sym_QMARK_QMARK, + STATE(4925), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5630), 2, + ACTIONS(5696), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5616), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5634), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 8, + ACTIONS(5056), 5, sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_extends, - [118098] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5612), 1, - anon_sym_in, - ACTIONS(5614), 1, - anon_sym_LT, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5630), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5634), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 9, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [118181] = 12, + [118394] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_LT, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5003), 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, @@ -227926,12 +228140,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 19, + ACTIONS(5005), 28, 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -227945,11 +228164,15 @@ 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, - [118250] = 3, + anon_sym_PIPE_RBRACE, + [118445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 15, + ACTIONS(5023), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227965,7 +228188,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2132), 28, + ACTIONS(5025), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227994,142 +228217,223 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118301] = 16, + [118496] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5614), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5632), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5630), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5624), 3, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 9, - anon_sym_EQ, + ACTIONS(5132), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [118593] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - anon_sym_GT, + ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_AMP, + ACTIONS(5660), 1, anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 14, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(5656), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5134), 5, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 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_extends, - [118378] = 26, + [118690] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5235), 5, + ACTIONS(5086), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [118475] = 3, + [118787] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2142), 15, + ACTIONS(2117), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -228145,7 +228449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2144), 28, + ACTIONS(2119), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -228174,73 +228478,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118526] = 18, + [118838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5614), 1, - anon_sym_LT, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5630), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5019), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5634), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4913), 6, 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, - ACTIONS(4911), 9, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5021), 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, - [118607] = 3, + anon_sym_PIPE_RBRACE, + [118889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 15, + ACTIONS(2040), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -228256,7 +228545,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 28, + ACTIONS(2042), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -228285,36 +228574,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118658] = 13, + [118940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5729), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 14, + ACTIONS(5011), 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, @@ -228325,172 +228593,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, + ACTIONS(5013), 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, - [118729] = 27, + anon_sym_PIPE_RBRACE, + [118991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5356), 1, + ACTIONS(5007), 15, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(5612), 1, + anon_sym_BANG, anon_sym_in, - ACTIONS(5614), 1, anon_sym_LT, - ACTIONS(5618), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5628), 1, anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5021), 4, + ACTIONS(5009), 28, sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 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, - [118828] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4999), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + anon_sym_extends, + ACTIONS(5001), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 12, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(5612), 1, anon_sym_in, - ACTIONS(5614), 1, anon_sym_LT, - ACTIONS(5618), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, - anon_sym_AMP, - ACTIONS(5628), 1, - anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5732), 1, - anon_sym_EQ, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(3846), 25, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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(5019), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 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, - [118927] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [119097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 15, + ACTIONS(4995), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -228506,7 +228739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 28, + ACTIONS(4997), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -228535,10 +228768,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118978] = 3, + [119148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 15, + ACTIONS(4991), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -228554,7 +228787,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5088), 28, + ACTIONS(4993), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -228583,320 +228816,243 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119029] = 26, + [119199] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5284), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5202), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [119126] = 27, + [119296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2002), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(5612), 1, anon_sym_in, - ACTIONS(5614), 1, anon_sym_LT, - ACTIONS(5618), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5628), 1, anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5734), 1, - anon_sym_EQ, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5017), 4, + ACTIONS(2006), 28, sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 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, - [119225] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119349] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4947), 1, - anon_sym_EQ, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(5612), 1, - anon_sym_in, - ACTIONS(5614), 1, - anon_sym_LT, - ACTIONS(5618), 1, - anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, - anon_sym_AMP, - ACTIONS(5628), 1, - anon_sym_PIPE, - ACTIONS(5632), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(5714), 1, + anon_sym_LT, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5606), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4949), 4, - sym__automatic_semicolon, + ACTIONS(5121), 10, + anon_sym_BANG, + anon_sym_in, + 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(5123), 15, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 5, + 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, - [119324] = 27, + [119424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5285), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(5612), 1, anon_sym_in, - ACTIONS(5614), 1, anon_sym_LT, - ACTIONS(5618), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5628), 1, anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5736), 1, - anon_sym_EQ, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4983), 4, + ACTIONS(5287), 28, sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 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, - [119423] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5738), 1, - anon_sym_LT, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5422), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119475] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4933), 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, @@ -228907,12 +229063,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 19, + ACTIONS(4935), 28, 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -228926,34 +229087,20 @@ 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, - [119492] = 12, + anon_sym_PIPE_RBRACE, + [119526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5738), 1, - anon_sym_LT, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5422), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(2225), 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, @@ -228964,12 +229111,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 19, + ACTIONS(2227), 28, 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -228983,224 +229135,228 @@ 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, - [119561] = 26, + anon_sym_PIPE_RBRACE, + [119577] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4963), 5, + ACTIONS(4897), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [119658] = 26, + [119674] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4969), 5, + ACTIONS(5025), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [119755] = 26, + [119771] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4971), 5, + ACTIONS(5021), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [119852] = 3, + [119868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 15, + ACTIONS(4983), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229216,7 +229372,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 28, + ACTIONS(4985), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229245,10 +229401,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119903] = 3, + [119919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 15, + ACTIONS(2197), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229264,7 +229420,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5107), 28, + ACTIONS(2199), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229293,10 +229449,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119954] = 3, + [119970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 15, + ACTIONS(2167), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229312,7 +229468,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 28, + ACTIONS(2169), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229341,15 +229497,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120005] = 5, + [120021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(5084), 1, - sym__automatic_semicolon, - ACTIONS(1984), 14, + ACTIONS(5015), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -229363,7 +229516,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 27, + ACTIONS(5017), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -229391,99 +229545,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120060] = 26, + [120072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, + ACTIONS(2177), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4969), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [120157] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4837), 1, - anon_sym_QMARK_DOT, - ACTIONS(5194), 3, anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5196), 8, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(2056), 12, - anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -229491,13 +229558,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(2058), 18, + ACTIONS(2179), 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, @@ -229514,12 +229591,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [120216] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 15, - anon_sym_STAR, + ACTIONS(4919), 1, anon_sym_EQ, + ACTIONS(4917), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -229533,7 +229613,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2960), 28, + ACTIONS(4921), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229562,10 +229642,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120267] = 3, + [120176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 15, + ACTIONS(2299), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229581,7 +229661,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5251), 28, + ACTIONS(2301), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229610,10 +229690,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120318] = 3, + [120227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5247), 15, + ACTIONS(5293), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229629,7 +229709,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 28, + ACTIONS(5295), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229658,10 +229738,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120369] = 3, + [120278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 15, + ACTIONS(5301), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229677,7 +229757,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4907), 28, + ACTIONS(5303), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229706,12 +229786,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120420] = 3, + [120329] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 15, - anon_sym_STAR, + ACTIONS(3852), 1, anon_sym_EQ, + ACTIONS(3842), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -229725,15 +229806,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4969), 28, - sym__automatic_semicolon, + ACTIONS(3846), 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, @@ -229753,11 +229835,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120471] = 3, + [120382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 15, + ACTIONS(5297), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229773,7 +229854,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 28, + ACTIONS(5299), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229802,10 +229883,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120522] = 3, + [120433] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 15, + ACTIONS(5305), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229821,7 +229902,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 28, + ACTIONS(5307), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229850,10 +229931,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120573] = 3, + [120484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 15, + ACTIONS(5313), 1, + anon_sym_DOT, + ACTIONS(5309), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229869,7 +229952,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 28, + ACTIONS(5311), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229878,7 +229961,6 @@ 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, @@ -229898,10 +229980,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120624] = 3, + [120537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 15, + ACTIONS(5316), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229917,7 +229999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5184), 28, + ACTIONS(5318), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229946,10 +230028,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120675] = 3, + [120588] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 15, + ACTIONS(5320), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -229965,7 +230047,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5180), 28, + ACTIONS(5322), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -229994,15 +230076,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120726] = 3, + [120639] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 15, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5631), 1, + anon_sym_LT, + ACTIONS(5734), 1, + anon_sym_QMARK_DOT, + STATE(2732), 1, + sym_type_arguments, + STATE(2951), 1, + sym_arguments, + ACTIONS(4823), 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, @@ -230013,17 +230107,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 28, + ACTIONS(4825), 23, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -230041,11 +230131,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120777] = 3, + [120704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 15, + ACTIONS(2960), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230061,7 +230150,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2968), 28, + ACTIONS(2958), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230090,37 +230179,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120828] = 5, + [120755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5172), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(2207), 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(3848), 25, + ACTIONS(2209), 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, @@ -230139,11 +230225,12 @@ 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, - [120883] = 3, + [120806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 15, + ACTIONS(2187), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230159,7 +230246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 28, + ACTIONS(2189), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230188,36 +230275,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120934] = 3, + [120857] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 15, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(4965), 1, + anon_sym_QMARK_DOT, + ACTIONS(4987), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4989), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2055), 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(5158), 28, + ACTIONS(2057), 23, 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, @@ -230234,17 +230326,31 @@ 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, - [120985] = 3, + [120916] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 15, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(5425), 1, + anon_sym_LBRACK, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5432), 1, + anon_sym_QMARK_DOT, + ACTIONS(5736), 1, + anon_sym_LT, + STATE(4925), 1, + sym_type_arguments, + STATE(3022), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 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, @@ -230255,17 +230361,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 28, + ACTIONS(5090), 21, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -230281,15 +230382,14 @@ 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, - [121036] = 3, + [120983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 15, - anon_sym_STAR, + ACTIONS(3876), 1, anon_sym_EQ, + ACTIONS(3842), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -230303,7 +230403,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 28, + ACTIONS(3846), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230332,33 +230432,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121087] = 12, + [121036] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5666), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5109), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121133] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5190), 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, @@ -230369,13 +230522,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 19, + ACTIONS(5192), 28, + 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_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, @@ -230389,10 +230546,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [121156] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121184] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 15, + ACTIONS(5348), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230408,7 +230570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 28, + ACTIONS(5350), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230437,81 +230599,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121207] = 26, + [121235] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5400), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5689), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5684), 1, anon_sym_as, - ACTIONS(5691), 1, + ACTIONS(5686), 1, anon_sym_in, - ACTIONS(5693), 1, + ACTIONS(5688), 1, anon_sym_LT, - ACTIONS(5697), 1, + ACTIONS(5692), 1, anon_sym_QMARK, - ACTIONS(5699), 1, + ACTIONS(5694), 1, anon_sym_AMP_AMP, - ACTIONS(5705), 1, + ACTIONS(5700), 1, anon_sym_AMP, - ACTIONS(5707), 1, + ACTIONS(5702), 1, anon_sym_PIPE, - ACTIONS(5711), 1, + ACTIONS(5706), 1, anon_sym_STAR_STAR, - ACTIONS(5715), 1, + ACTIONS(5710), 1, anon_sym_QMARK_QMARK, - STATE(5055), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5422), 2, + ACTIONS(5466), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5701), 2, + ACTIONS(5696), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5709), 2, + ACTIONS(5704), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2916), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(5687), 3, + ACTIONS(5682), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5695), 3, + ACTIONS(5690), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5703), 3, + ACTIONS(5698), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4973), 5, + ACTIONS(5202), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5713), 5, + ACTIONS(5708), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [121304] = 3, + [121332] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 15, + ACTIONS(5194), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230527,7 +230689,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5111), 28, + ACTIONS(5196), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230556,10 +230718,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121355] = 3, + [121383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 15, + ACTIONS(5352), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230575,7 +230737,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2231), 28, + ACTIONS(5354), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230604,10 +230766,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121406] = 3, + [121434] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 15, + ACTIONS(5344), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230623,7 +230785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 28, + ACTIONS(5346), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230652,10 +230814,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121457] = 3, + [121485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 15, + ACTIONS(4937), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230671,7 +230833,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 28, + ACTIONS(4939), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230700,10 +230862,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121508] = 3, + [121536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 15, + ACTIONS(2956), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230719,7 +230881,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2259), 28, + ACTIONS(2954), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230748,13 +230910,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121559] = 4, + [121587] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym_EQ, - ACTIONS(5164), 14, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(4987), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -230768,7 +230931,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 28, + ACTIONS(4989), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230777,7 +230940,6 @@ 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, @@ -230797,12 +230959,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121612] = 4, + [121640] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - anon_sym_DOT, - ACTIONS(5090), 15, + ACTIONS(4987), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230818,7 +230978,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 27, + ACTIONS(4989), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230827,6 +230987,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, @@ -230846,10 +231007,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121665] = 3, + [121691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 15, + ACTIONS(4929), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230865,7 +231026,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5150), 28, + ACTIONS(4931), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230894,10 +231055,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121716] = 3, + [121742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 15, + ACTIONS(5330), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -230913,7 +231074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4806), 28, + ACTIONS(5109), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230942,12 +231103,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121767] = 3, + [121793] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 15, - anon_sym_STAR, + ACTIONS(5186), 1, anon_sym_EQ, + ACTIONS(5184), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -230961,7 +231123,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5036), 28, + ACTIONS(5188), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -230990,10 +231152,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121818] = 3, + [121846] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(5128), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231009,7 +231171,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 28, + ACTIONS(5130), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231038,58 +231200,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121869] = 3, + [121897] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_AMP, + ACTIONS(5660), 1, anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 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, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5021), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 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_PIPE_RBRACE, - [121920] = 3, + [121994] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(5222), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231105,7 +231290,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 28, + ACTIONS(5224), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231134,12 +231319,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121971] = 3, + [122045] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 15, - anon_sym_STAR, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(4965), 1, + anon_sym_QMARK_DOT, + ACTIONS(4987), 3, anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4989), 8, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2055), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -231147,23 +231348,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(5142), 28, - sym__automatic_semicolon, + ACTIONS(2057), 18, 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, @@ -231180,126 +231371,152 @@ 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, - [122022] = 12, + [122104] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5741), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - STATE(5014), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 14, + ACTIONS(5642), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 18, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5025), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 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_extends, - [122091] = 12, + [122201] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5741), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - STATE(5014), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 14, + ACTIONS(5642), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 18, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4897), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5666), 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_extends, - [122160] = 3, + [122298] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 15, + ACTIONS(2944), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231315,7 +231532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 28, + ACTIONS(2942), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231344,82 +231561,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122211] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5610), 1, - anon_sym_as, - ACTIONS(5612), 1, - anon_sym_in, - ACTIONS(5614), 1, - anon_sym_LT, - ACTIONS(5618), 1, - anon_sym_QMARK, - ACTIONS(5620), 1, - anon_sym_AMP_AMP, - ACTIONS(5626), 1, - anon_sym_AMP, - ACTIONS(5628), 1, - anon_sym_PIPE, - ACTIONS(5632), 1, - anon_sym_STAR_STAR, - ACTIONS(5636), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5744), 1, - anon_sym_EQ, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5622), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5630), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5606), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5616), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5624), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5235), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5634), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [122310] = 3, + [122349] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 15, + ACTIONS(5332), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231435,7 +231580,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 28, + ACTIONS(5334), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231464,10 +231609,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122361] = 3, + [122400] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 15, + ACTIONS(5360), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231483,7 +231628,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5115), 28, + ACTIONS(5362), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231512,31 +231657,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122412] = 11, + [122451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5675), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5746), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 14, + ACTIONS(5336), 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, @@ -231547,11 +231678,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 20, + ACTIONS(5338), 27, sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, 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, @@ -231567,11 +231703,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, - [122479] = 3, + anon_sym_PIPE_RBRACE, + [122504] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 15, + ACTIONS(5340), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231587,7 +231725,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4967), 28, + ACTIONS(5342), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231616,10 +231754,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122530] = 3, + [122555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(5356), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231635,7 +231773,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 28, + ACTIONS(5358), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231664,10 +231802,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122581] = 3, + [122606] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 15, + ACTIONS(5001), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231683,7 +231821,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5146), 28, + ACTIONS(4999), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231712,10 +231850,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122632] = 3, + [122657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 15, + ACTIONS(5368), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231731,7 +231869,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2950), 28, + ACTIONS(5370), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231760,10 +231898,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122683] = 3, + [122708] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 15, + ACTIONS(5231), 1, + anon_sym_extends, + ACTIONS(5675), 1, + anon_sym_LBRACK, + ACTIONS(5229), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5364), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -231773,13 +231918,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(2269), 28, + ACTIONS(5366), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231787,7 +231930,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -231806,136 +231948,230 @@ 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, - [122734] = 3, + [122765] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5712), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, anon_sym_BANG, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, anon_sym_in, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5759), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, anon_sym_AMP, + ACTIONS(5769), 1, anon_sym_PIPE, + ACTIONS(5773), 1, + anon_sym_STAR_STAR, + ACTIONS(5777), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5763), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(5202), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5753), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4977), 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, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5775), 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_PIPE_RBRACE, - [122785] = 26, + [122863] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5789), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5781), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5785), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5123), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 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_extends, + [122939] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, + anon_sym_LT, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5773), 1, + anon_sym_STAR_STAR, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4973), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5662), 5, + ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [122882] = 3, + ACTIONS(5121), 6, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5123), 8, + 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, + [123019] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 15, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5773), 1, + anon_sym_STAR_STAR, + ACTIONS(5791), 1, + anon_sym_LT, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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, @@ -231946,56 +232182,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2245), 28, - sym__automatic_semicolon, + ACTIONS(5123), 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [122933] = 26, + anon_sym_LBRACE_PIPE, + [123089] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5239), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(5753), 1, - anon_sym_in, - ACTIONS(5755), 1, anon_sym_LT, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, ACTIONS(5759), 1, anon_sym_QMARK, ACTIONS(5761), 1, @@ -232008,25 +232234,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5119), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -232034,38 +232264,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5235), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [123029] = 26, + [123187] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5670), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(5753), 1, - anon_sym_in, - ACTIONS(5755), 1, anon_sym_LT, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, ACTIONS(5759), 1, anon_sym_QMARK, ACTIONS(5761), 1, @@ -232078,25 +232305,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5117), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -232104,219 +232335,331 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5284), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [123125] = 4, + [123285] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, - anon_sym_AMP, - ACTIONS(5779), 13, - anon_sym_STAR, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5637), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, anon_sym_BANG, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, anon_sym_in, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5759), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, + anon_sym_AMP, + ACTIONS(5769), 1, anon_sym_PIPE, + ACTIONS(5773), 1, + anon_sym_STAR_STAR, + ACTIONS(5777), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5763), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(5111), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5753), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5781), 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, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5775), 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_PIPE_RBRACE, - [123177] = 29, + [123383] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5330), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5743), 1, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5759), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5761), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5769), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5773), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(5785), 1, - anon_sym_RPAREN, - ACTIONS(5787), 1, - anon_sym_COLON, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - STATE(5779), 1, - sym_type_annotation, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5109), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [123279] = 4, + [123481] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(3923), 1, - anon_sym_EQ, - ACTIONS(3844), 14, - anon_sym_STAR, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5629), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, anon_sym_BANG, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, anon_sym_in, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5759), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, anon_sym_AMP, + ACTIONS(5769), 1, anon_sym_PIPE, + ACTIONS(5773), 1, + anon_sym_STAR_STAR, + ACTIONS(5777), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5763), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(5107), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5753), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5765), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5775), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123579] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, + ACTIONS(5751), 1, + anon_sym_LT, + ACTIONS(5755), 1, anon_sym_DOT, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, + ACTIONS(5761), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5767), 1, + anon_sym_AMP, + ACTIONS(5773), 1, + anon_sym_STAR_STAR, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5771), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(5739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5753), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5121), 4, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5775), 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, + ACTIONS(5123), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [123331] = 6, + anon_sym_LBRACE_PIPE, + [123665] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, - anon_sym_AMP, - ACTIONS(5789), 1, - anon_sym_PIPE, - ACTIONS(5791), 1, - anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5794), 1, + anon_sym_LT, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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(5150), 27, - sym__automatic_semicolon, + ACTIONS(5043), 17, 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, @@ -232330,20 +232673,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_PIPE_RBRACE, - [123387] = 6, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [123733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, + ACTIONS(5801), 1, anon_sym_AMP, - ACTIONS(5789), 1, - anon_sym_PIPE, - ACTIONS(5791), 1, - anon_sym_extends, - ACTIONS(5038), 12, + ACTIONS(5797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232352,11 +232689,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 27, + ACTIONS(5799), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -232383,32 +232721,34 @@ 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, - [123443] = 12, + [123785] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5793), 1, + ACTIONS(5791), 1, anon_sym_LT, - STATE(5014), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5121), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -232421,12 +232761,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 18, - sym__automatic_semicolon, + ACTIONS(5123), 17, 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, @@ -232440,16 +232777,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [123511] = 6, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [123853] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, + anon_sym_LT, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5761), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, + anon_sym_AMP, + ACTIONS(5769), 1, + anon_sym_PIPE, + ACTIONS(5773), 1, + anon_sym_STAR_STAR, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5763), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5771), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 3, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5739), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5753), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5765), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5123), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5775), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [123943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, + ACTIONS(5801), 1, anon_sym_AMP, - ACTIONS(5802), 1, + ACTIONS(5807), 1, anon_sym_PIPE, - ACTIONS(5804), 1, + ACTIONS(5809), 1, anon_sym_extends, - ACTIONS(5796), 12, + ACTIONS(5803), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232462,16 +232868,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5798), 27, + ACTIONS(5805), 27, + 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, @@ -232490,227 +232895,194 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [123567] = 12, + anon_sym_PIPE_RBRACE, + [123999] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5751), 1, + anon_sym_LT, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5806), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5759), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5761), 1, + anon_sym_AMP_AMP, + ACTIONS(5767), 1, anon_sym_AMP, + ACTIONS(5769), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5119), 18, - anon_sym_as, - anon_sym_LBRACE, - 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(5773), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [123635] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5806), 1, - anon_sym_LT, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5763), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5771), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5132), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, 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, + ACTIONS(5753), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5775), 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_extends, - [123703] = 27, + [124097] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5677), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5751), 1, + anon_sym_LT, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5608), 1, - anon_sym_EQ, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_in, - ACTIONS(5815), 1, - anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5759), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5761), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5769), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5773), 1, anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5284), 3, + ACTIONS(5134), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5809), 3, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [123801] = 12, + [124195] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5793), 1, + ACTIONS(5813), 1, anon_sym_LT, - STATE(5014), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5811), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5816), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, 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(5119), 18, + ACTIONS(5123), 14, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -232718,112 +233090,94 @@ 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, - [123869] = 27, + [124269] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4895), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5751), 1, + anon_sym_LT, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5744), 1, - anon_sym_EQ, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_in, - ACTIONS(5815), 1, - anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5759), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5761), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5769), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5773), 1, anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5235), 3, + ACTIONS(4897), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5809), 3, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [123967] = 11, + [124367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5839), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 13, + ACTIONS(3900), 1, + anon_sym_EQ, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -232834,11 +233188,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 20, + ACTIONS(3846), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -232854,28 +233214,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, - [124033] = 26, + [124419] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5023), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(5753), 1, - anon_sym_in, - ACTIONS(5755), 1, anon_sym_LT, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, ACTIONS(5759), 1, anon_sym_QMARK, ACTIONS(5761), 1, @@ -232888,25 +233251,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5025), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -232914,102 +233281,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4983), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124129] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(5844), 1, - anon_sym_async, - ACTIONS(5846), 1, - anon_sym_static, - ACTIONS(5848), 1, - anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4155), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5850), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5852), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4362), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5580), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5621), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5842), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [124213] = 26, + [124517] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5019), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(5753), 1, - anon_sym_in, - ACTIONS(5755), 1, anon_sym_LT, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, ACTIONS(5759), 1, anon_sym_QMARK, ACTIONS(5761), 1, @@ -233022,25 +233322,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR_STAR, ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5021), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -233048,334 +233352,364 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4949), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124309] = 12, + [124615] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5854), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5677), 1, + anon_sym_EQ, + ACTIONS(5822), 1, + anon_sym_as, + ACTIONS(5824), 1, + anon_sym_in, + ACTIONS(5826), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5830), 1, + anon_sym_QMARK, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5844), 1, + anon_sym_STAR_STAR, + ACTIONS(5848), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5834), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5842), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 14, + ACTIONS(5134), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5820), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5828), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5846), 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_extends, - [124377] = 12, + [124713] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5854), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5629), 1, + anon_sym_EQ, + ACTIONS(5822), 1, + anon_sym_as, + ACTIONS(5824), 1, + anon_sym_in, + ACTIONS(5826), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5830), 1, + anon_sym_QMARK, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5844), 1, + anon_sym_STAR_STAR, + ACTIONS(5848), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5834), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5842), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 14, + ACTIONS(5107), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5820), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5828), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5846), 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_extends, - [124445] = 11, + [124811] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5857), 1, + ACTIONS(5773), 1, + anon_sym_STAR_STAR, + ACTIONS(5791), 1, anon_sym_LT, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5225), 14, + ACTIONS(5739), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5765), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 11, + 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(5227), 19, + ACTIONS(5123), 13, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, - [124511] = 26, + anon_sym_LBRACE_PIPE, + [124885] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5136), 1, + anon_sym_EQ, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5822), 1, anon_sym_as, - ACTIONS(5753), 1, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5759), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5761), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5773), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5777), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5132), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5017), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5775), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124607] = 26, + [124983] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, + anon_sym_LT, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(5753), 1, + ACTIONS(5852), 1, anon_sym_in, - ACTIONS(5755), 1, - anon_sym_LT, - ACTIONS(5759), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5761), 1, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5773), 1, - anon_sym_STAR_STAR, - ACTIONS(5777), 1, + ACTIONS(5868), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5019), 4, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5025), 4, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_extends, - ACTIONS(5775), 5, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124703] = 6, + [125079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, + ACTIONS(5631), 1, anon_sym_LT, - ACTIONS(5683), 1, + ACTIONS(5633), 1, anon_sym_DOT, - STATE(2927), 1, + STATE(2861), 1, sym_type_arguments, - ACTIONS(4883), 13, + ACTIONS(4881), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233389,7 +233723,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 26, + ACTIONS(3916), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -233416,126 +233750,125 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [124759] = 26, + [125135] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(5753), 1, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5761), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5773), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5777), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5121), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5021), 4, - anon_sym_LBRACE, + ACTIONS(5123), 5, + anon_sym_as, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_QMARK_QMARK, anon_sym_extends, - ACTIONS(5775), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124855] = 13, + [125225] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5773), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5860), 1, + ACTIONS(5870), 1, anon_sym_LT, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5820), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5836), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 11, + 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, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, + ACTIONS(5123), 13, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -233543,76 +233876,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [124925] = 18, + [125299] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5755), 1, + ACTIONS(5824), 1, + anon_sym_in, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5773), 1, + ACTIONS(5832), 1, + anon_sym_AMP_AMP, + ACTIONS(5838), 1, + anon_sym_AMP, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5771), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, + ACTIONS(5121), 4, + anon_sym_EQ, anon_sym_BANG, - anon_sym_in, anon_sym_QMARK, - anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5775), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 9, + ACTIONS(5123), 7, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [125005] = 5, + [125385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, + ACTIONS(5631), 1, anon_sym_LT, - STATE(2872), 1, + STATE(2839), 1, sym_type_arguments, - ACTIONS(4887), 13, + ACTIONS(4885), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -233626,7 +233962,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 27, + ACTIONS(4887), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -233654,682 +233990,736 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [125059] = 16, + [125439] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5755), 1, + ACTIONS(5824), 1, + anon_sym_in, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5773), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5771), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5765), 3, + ACTIONS(5828), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 8, + ACTIONS(5121), 5, + anon_sym_EQ, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 14, + ACTIONS(5846), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5123), 8, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_extends, - [125135] = 19, + [125521] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5753), 1, - anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5773), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5771), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, + ACTIONS(5121), 9, + anon_sym_EQ, anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5775), 5, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5123), 13, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, - ACTIONS(4911), 9, + anon_sym_extends, + [125597] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5813), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(5123), 18, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + 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_extends, - [125217] = 21, + anon_sym_instanceof, + [125665] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5753), 1, - anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5761), 1, - anon_sym_AMP_AMP, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5773), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5771), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5749), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5775), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 8, + ACTIONS(5121), 6, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5123), 8, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [125303] = 26, + [125745] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5727), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5743), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5759), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5761), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5769), 1, anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(5773), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5086), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4971), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 5, + ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125399] = 15, + [125843] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5773), 1, - anon_sym_STAR_STAR, - ACTIONS(5860), 1, + ACTIONS(5873), 1, anon_sym_LT, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5088), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5765), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 10, + 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(4911), 14, + ACTIONS(5090), 19, anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + 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_extends, - [125473] = 26, + anon_sym_LBRACE_PIPE, + [125909] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4969), 4, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(5887), 5, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125569] = 23, + [126005] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5753), 1, - anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5761), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, + anon_sym_QMARK, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5773), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(5868), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5775), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5202), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 6, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [125659] = 26, + [126101] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(4895), 1, + anon_sym_EQ, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5822), 1, anon_sym_as, - ACTIONS(5753), 1, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5759), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5761), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5773), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5777), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(4897), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4953), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5775), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125755] = 26, + [126199] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4963), 4, - sym__automatic_semicolon, + ACTIONS(5107), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 5, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125851] = 26, + [126295] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(5753), 1, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5759), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5761), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5773), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5777), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4961), 4, + ACTIONS(5109), 4, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_implements, anon_sym_extends, - ACTIONS(5775), 5, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125947] = 7, + [126391] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5681), 1, + ACTIONS(5631), 1, anon_sym_LT, - ACTIONS(5683), 1, + ACTIONS(5633), 1, anon_sym_DOT, - ACTIONS(5891), 1, + ACTIONS(5928), 1, anon_sym_is, - STATE(2927), 1, + STATE(2861), 1, sym_type_arguments, - ACTIONS(4883), 13, + ACTIONS(4881), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -234343,7 +234733,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 25, + ACTIONS(3916), 25, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -234369,365 +234759,493 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [126005] = 26, + [126449] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(5753), 1, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5759), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5761), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5773), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5777), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4963), 4, + ACTIONS(5111), 4, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_implements, anon_sym_extends, - ACTIONS(5775), 5, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126101] = 26, + [126545] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(5753), 1, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5759), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5761), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5767), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5769), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5773), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5777), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4969), 4, + ACTIONS(5117), 4, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_implements, anon_sym_extends, - ACTIONS(5775), 5, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126197] = 5, + [126641] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, + anon_sym_in, + ACTIONS(5904), 1, + anon_sym_LT, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, + anon_sym_AMP_AMP, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5789), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(5922), 1, + anon_sym_STAR_STAR, + ACTIONS(5926), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5912), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5920), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5898), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5906), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5914), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5119), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126737] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5922), 1, + anon_sym_STAR_STAR, + ACTIONS(5930), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(5895), 28, - sym__automatic_semicolon, + ACTIONS(5123), 17, 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, + anon_sym_extends, + [126807] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5904), 1, + anon_sym_LT, + ACTIONS(5922), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5920), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5898), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5906), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5914), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5924), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5123), 9, + 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, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [126251] = 4, + [126887] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5904), 1, + anon_sym_LT, + ACTIONS(5922), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5920), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5898), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5914), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 8, 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(3848), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 14, 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [126303] = 26, + [126963] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(5753), 1, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5755), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5761), 1, - anon_sym_AMP_AMP, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE, - ACTIONS(5773), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5777), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5763), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5771), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5765), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4971), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5775), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126399] = 26, + ACTIONS(5123), 9, + 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, + anon_sym_extends, + [127045] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5747), 1, + anon_sym_in, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(5753), 1, - anon_sym_in, - ACTIONS(5755), 1, anon_sym_LT, - ACTIONS(5759), 1, - anon_sym_QMARK, - ACTIONS(5761), 1, - anon_sym_AMP_AMP, - ACTIONS(5767), 1, - anon_sym_AMP, - ACTIONS(5769), 1, - anon_sym_PIPE, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, ACTIONS(5773), 1, anon_sym_STAR_STAR, - ACTIONS(5777), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5763), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5749), 3, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5757), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, @@ -234735,914 +235253,1089 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4973), 4, + ACTIONS(5121), 5, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126495] = 29, + ACTIONS(5123), 8, + 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, + [127127] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(5787), 1, - anon_sym_COLON, - ACTIONS(5897), 1, - anon_sym_RPAREN, - STATE(5082), 1, + ACTIONS(5870), 1, + anon_sym_LT, + STATE(4916), 1, sym_type_arguments, - STATE(5909), 1, - sym_type_annotation, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5121), 14, 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, - ACTIONS(5644), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5123), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5662), 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, - [126597] = 26, + anon_sym_extends, + [127197] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5871), 1, - anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5881), 1, - anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4973), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 5, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126693] = 26, + ACTIONS(5123), 8, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_implements, + anon_sym_extends, + [127283] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5865), 1, - anon_sym_in, - ACTIONS(5867), 1, - anon_sym_LT, - ACTIONS(5871), 1, - anon_sym_QMARK, - ACTIONS(5873), 1, - anon_sym_AMP_AMP, - ACTIONS(5879), 1, - anon_sym_AMP, - ACTIONS(5881), 1, - anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(5930), 1, + anon_sym_LT, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5017), 4, - sym__automatic_semicolon, + ACTIONS(5121), 10, + anon_sym_BANG, + anon_sym_in, + 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(5123), 14, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 5, + 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, - [126789] = 29, + anon_sym_implements, + anon_sym_extends, + [127357] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5239), 1, + anon_sym_EQ, + ACTIONS(5822), 1, + anon_sym_as, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(5787), 1, - anon_sym_COLON, - ACTIONS(5899), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - STATE(5786), 1, - sym_type_annotation, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5119), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126891] = 26, + [127455] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5930), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5121), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5123), 18, + 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(5901), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(5662), 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, - [126987] = 29, + anon_sym_implements, + anon_sym_extends, + [127523] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(5787), 1, - anon_sym_COLON, - ACTIONS(5903), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - STATE(6113), 1, - sym_type_annotation, - ACTIONS(5015), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127089] = 26, + ACTIONS(5123), 6, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_implements, + anon_sym_extends, + [127613] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5284), 4, - sym__automatic_semicolon, + ACTIONS(5132), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 5, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127185] = 26, + [127709] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4949), 4, - sym__automatic_semicolon, + ACTIONS(5134), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 5, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127281] = 12, + [127805] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5860), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, + anon_sym_in, + ACTIONS(5904), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5908), 1, + anon_sym_QMARK, + ACTIONS(5910), 1, + anon_sym_AMP_AMP, + ACTIONS(5916), 1, + anon_sym_AMP, + ACTIONS(5918), 1, + anon_sym_PIPE, + ACTIONS(5922), 1, + anon_sym_STAR_STAR, + ACTIONS(5926), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5912), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5920), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5898), 3, 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, + ACTIONS(5906), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4897), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 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_extends, - [127349] = 5, + [127901] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - STATE(2970), 1, - sym_arguments, - ACTIONS(4901), 14, - anon_sym_STAR, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, anon_sym_in, + ACTIONS(5904), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5908), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5910), 1, + anon_sym_AMP_AMP, + ACTIONS(5916), 1, anon_sym_AMP, + ACTIONS(5918), 1, anon_sym_PIPE, + ACTIONS(5922), 1, + anon_sym_STAR_STAR, + ACTIONS(5926), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5912), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5898), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5906), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4903), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5025), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 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, - [127403] = 11, + [127997] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5909), 1, - anon_sym_LT, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - STATE(4978), 1, - sym_type_arguments, - STATE(3412), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 14, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5904), 1, + anon_sym_LT, + ACTIONS(5908), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5910), 1, + anon_sym_AMP_AMP, + ACTIONS(5916), 1, anon_sym_AMP, + ACTIONS(5918), 1, anon_sym_PIPE, + ACTIONS(5922), 1, + anon_sym_STAR_STAR, + ACTIONS(5926), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5912), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5898), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5906), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 19, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5021), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 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_extends, - anon_sym_LBRACE_PIPE, - [127469] = 27, + [128093] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5744), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5922), 1, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5235), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5202), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127567] = 27, + [128189] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5608), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(5922), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5942), 1, - anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5932), 2, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5811), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5816), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5107), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [128285] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, + anon_sym_in, + ACTIONS(5878), 1, + anon_sym_LT, + ACTIONS(5884), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_AMP, + ACTIONS(5890), 1, + anon_sym_PIPE, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5886), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5892), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5284), 3, + ACTIONS(5811), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5816), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5894), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5123), 6, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + [128375] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5933), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 14, 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, - ACTIONS(5926), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5090), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, + [128441] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 1, + anon_sym_AMP, + ACTIONS(5942), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_extends, + ACTIONS(5936), 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(5934), 3, + ACTIONS(5938), 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, - ACTIONS(5944), 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, - [127665] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [128497] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5950), 1, + ACTIONS(5946), 1, anon_sym_LT, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 14, + ACTIONS(5041), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -235655,8 +236348,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, + ACTIONS(5043), 18, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -235671,34 +236365,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_implements, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [127733] = 12, + [128565] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5950), 1, + ACTIONS(5946), 1, anon_sym_LT, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 14, + ACTIONS(5041), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -235711,8 +236404,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, + ACTIONS(5043), 18, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -235727,542 +236421,658 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_implements, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [127801] = 27, + [128633] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5720), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5922), 1, + ACTIONS(5670), 1, + anon_sym_EQ, + ACTIONS(5822), 1, + anon_sym_as, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4973), 3, + ACTIONS(5117), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127899] = 27, + [128731] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5217), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5922), 1, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4971), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5056), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127997] = 27, + [128827] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5219), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5922), 1, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(5902), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5904), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5908), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5910), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5916), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5918), 1, anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5922), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5926), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5912), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5920), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4969), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5898), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(5906), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5914), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5086), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5924), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128095] = 27, + [128923] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5247), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5949), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5922), 1, anon_sym_in, - ACTIONS(5924), 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(5090), 20, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + anon_sym_extends, + [128989] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5942), 1, - anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5868), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4963), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5021), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128193] = 27, + [129085] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(5727), 1, + ACTIONS(5729), 1, anon_sym_LBRACE, - ACTIONS(5905), 1, - anon_sym_LPAREN, - ACTIONS(5907), 1, - anon_sym_LBRACK, - ACTIONS(5912), 1, - anon_sym_DOT, - ACTIONS(5914), 1, - anon_sym_QMARK_DOT, - ACTIONS(5918), 1, + ACTIONS(5741), 1, anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5743), 1, anon_sym_BANG, - ACTIONS(5922), 1, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5747), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5751), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(5759), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5761), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5767), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5769), 1, anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5773), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5777), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5932), 2, + ACTIONS(5763), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, + ACTIONS(5056), 3, anon_sym_COMMA, anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(5753), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5775), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128291] = 27, + [129183] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5322), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5922), 1, - anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5942), 1, - anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5868), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4953), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4897), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128389] = 23, + [129279] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5922), 1, - anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5930), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, + anon_sym_QMARK, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5942), 1, - anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(5868), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5916), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4911), 5, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5134), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5944), 5, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128479] = 12, + [129375] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5953), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, anon_sym_LT, - STATE(4978), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, + anon_sym_QMARK, + ACTIONS(5858), 1, + anon_sym_AMP_AMP, + ACTIONS(5862), 1, + anon_sym_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5868), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 14, + ACTIONS(5781), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5785), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5132), 4, anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [129471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5801), 1, + anon_sym_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE, + ACTIONS(5809), 1, + anon_sym_extends, + ACTIONS(5218), 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(4911), 17, + ACTIONS(5220), 27, + 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, @@ -236276,244 +237086,251 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [128547] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [129527] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5942), 1, - anon_sym_STAR_STAR, - ACTIONS(5953), 1, + ACTIONS(5952), 1, anon_sym_LT, - STATE(4978), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5916), 3, + ACTIONS(5088), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5934), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 11, - 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(4911), 13, + ACTIONS(5090), 20, + 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_extends, - anon_sym_LBRACE_PIPE, - [128621] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [129593] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5922), 1, - anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5930), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5942), 1, - anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(5864), 1, + anon_sym_PIPE, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5916), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5944), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 7, + ACTIONS(5123), 6, anon_sym_as, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK_QMARK, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [128707] = 19, + [129683] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5922), 1, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5942), 1, - anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(5882), 1, + anon_sym_QMARK, + ACTIONS(5884), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_AMP, + ACTIONS(5890), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5886), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5892), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5916), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5944), 5, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5132), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 8, - 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, - [128789] = 16, + [129779] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5924), 1, - anon_sym_LT, - ACTIONS(5942), 1, + ACTIONS(5789), 1, anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(5955), 1, + anon_sym_LT, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5916), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5934), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 9, - anon_sym_LBRACE, + ACTIONS(5121), 10, anon_sym_BANG, anon_sym_in, 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(4911), 13, + ACTIONS(5123), 14, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -236524,637 +237341,605 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [128865] = 18, + [129853] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5924), 1, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5942), 1, + ACTIONS(5789), 1, anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(5852), 1, + anon_sym_in, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5916), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4913), 6, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4911), 8, + ACTIONS(5123), 9, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [128945] = 13, + [129935] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5942), 1, + ACTIONS(5818), 1, anon_sym_STAR_STAR, - ACTIONS(5953), 1, + ACTIONS(5876), 1, + anon_sym_in, + ACTIONS(5878), 1, anon_sym_LT, - STATE(4978), 1, + ACTIONS(5884), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_AMP, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5892), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 14, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(5121), 3, 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(4911), 16, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5811), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5894), 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_extends, - anon_sym_LBRACE_PIPE, - [129015] = 27, + ACTIONS(5123), 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, + [130021] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5356), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5922), 1, + ACTIONS(5330), 1, + anon_sym_EQ, + ACTIONS(5822), 1, + anon_sym_as, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5021), 3, + ACTIONS(5109), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129113] = 27, + [130119] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(5732), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(5751), 1, + anon_sym_LT, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(5922), 1, - anon_sym_in, - ACTIONS(5924), 1, - anon_sym_LT, - ACTIONS(5928), 1, - anon_sym_QMARK, - ACTIONS(5930), 1, - anon_sym_AMP_AMP, - ACTIONS(5936), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5773), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5932), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5771), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5019), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5739), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5765), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5121), 9, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5123), 13, + 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, - [129211] = 27, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [130195] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5734), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5922), 1, + ACTIONS(5637), 1, + anon_sym_EQ, + ACTIONS(5822), 1, + anon_sym_as, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5940), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5017), 3, + ACTIONS(5111), 3, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129309] = 27, + [130293] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5922), 1, - anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5928), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5930), 1, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5936), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5938), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5942), 1, - anon_sym_STAR_STAR, - ACTIONS(5946), 1, + ACTIONS(5868), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4949), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5086), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129407] = 27, + [130389] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5736), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(5922), 1, - anon_sym_in, - ACTIONS(5924), 1, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5928), 1, - anon_sym_QMARK, - ACTIONS(5930), 1, - anon_sym_AMP_AMP, - ACTIONS(5936), 1, - anon_sym_AMP, - ACTIONS(5938), 1, - anon_sym_PIPE, - ACTIONS(5942), 1, + ACTIONS(5789), 1, anon_sym_STAR_STAR, - ACTIONS(5946), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5932), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5940), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4983), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5916), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5926), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5934), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5944), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129505] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5783), 1, - anon_sym_AMP, - ACTIONS(5789), 1, - anon_sym_PIPE, - ACTIONS(5791), 1, - anon_sym_extends, - ACTIONS(5956), 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(5958), 27, - sym__automatic_semicolon, + ACTIONS(5123), 9, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [130469] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4829), 1, anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(5789), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5955), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [129561] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5783), 1, - anon_sym_AMP, - ACTIONS(5960), 13, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(5962), 28, - sym__automatic_semicolon, + ACTIONS(5123), 17, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [129613] = 4, + [130539] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_AMP, - ACTIONS(5960), 13, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, - anon_sym_in, + ACTIONS(5783), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5858), 1, + anon_sym_AMP_AMP, + ACTIONS(5862), 1, + anon_sym_AMP, + ACTIONS(5864), 1, anon_sym_PIPE, + ACTIONS(5868), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5781), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5785), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5854), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5962), 28, - anon_sym_as, + ACTIONS(5119), 4, 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_extends, + ACTIONS(5866), 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, - [129665] = 6, + [130635] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, + ACTIONS(5801), 1, anon_sym_AMP, - ACTIONS(5802), 1, + ACTIONS(5807), 1, anon_sym_PIPE, - ACTIONS(5804), 1, + ACTIONS(5809), 1, anon_sym_extends, - ACTIONS(5956), 12, + ACTIONS(5305), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237167,16 +237952,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5958), 27, + ACTIONS(5307), 27, + 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, @@ -237195,861 +237979,793 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [129721] = 29, + anon_sym_PIPE_RBRACE, + [130691] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(5868), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(5787), 1, - anon_sym_COLON, - ACTIONS(5964), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - STATE(5945), 1, - sym_type_annotation, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5117), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129823] = 27, + [130787] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5720), 1, - anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, + anon_sym_LT, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5852), 1, anon_sym_in, - ACTIONS(5815), 1, - anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5868), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4973), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [129921] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3885), 1, - anon_sym_EQ, - ACTIONS(3844), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5854), 3, 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(3848), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + ACTIONS(5111), 4, 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 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, - [129973] = 27, + [130883] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, + anon_sym_LT, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5852), 1, anon_sym_in, - ACTIONS(5815), 1, - anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5868), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4971), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5109), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130071] = 27, + [130979] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5219), 1, + ACTIONS(5023), 1, anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5822), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4969), 3, + ACTIONS(5025), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130169] = 27, + [131077] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5247), 1, + ACTIONS(5019), 1, anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5822), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4963), 3, + ACTIONS(5021), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130267] = 27, + [131175] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5727), 1, - anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5958), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130365] = 26, + [131271] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5712), 1, + anon_sym_EQ, + ACTIONS(5822), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5990), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5202), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4983), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130461] = 26, + [131369] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4949), 4, - anon_sym_LBRACE, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5086), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130557] = 26, + [131465] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5017), 4, - anon_sym_LBRACE, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5056), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130653] = 26, + [131561] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, + anon_sym_LT, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5852), 1, anon_sym_in, - ACTIONS(5972), 1, - anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5856), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5864), 1, anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5868), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5019), 4, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5107), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_extends, - ACTIONS(5992), 5, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130749] = 26, + [131657] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5990), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(5960), 1, + anon_sym_RPAREN, + ACTIONS(5962), 1, + anon_sym_COLON, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(5921), 1, + sym_type_annotation, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5021), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130845] = 13, + [131759] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5996), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + ACTIONS(3910), 1, + anon_sym_EQ, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -238060,399 +238776,243 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, + ACTIONS(3846), 27, + 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [130915] = 18, + [131811] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5972), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5990), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_COLON, + ACTIONS(5964), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(5988), 1, + sym_type_annotation, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5988), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5992), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 9, - 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, - anon_sym_extends, - [130995] = 16, + [131913] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5972), 1, + ACTIONS(5966), 1, anon_sym_LT, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5988), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5041), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5982), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, 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(4911), 14, + ACTIONS(5043), 18, + 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - anon_sym_extends, - [131071] = 19, + [131981] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5970), 1, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5988), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5966), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_QMARK, + ACTIONS(5884), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, anon_sym_AMP, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5992), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - anon_sym_implements, - anon_sym_extends, - [131153] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5970), 1, - anon_sym_in, - ACTIONS(5972), 1, - anon_sym_LT, - ACTIONS(5978), 1, - anon_sym_AMP_AMP, - ACTIONS(5984), 1, - anon_sym_AMP, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5988), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5966), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5992), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 8, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_implements, - anon_sym_extends, - [131239] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5996), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5892), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 10, - anon_sym_BANG, - anon_sym_in, - 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(4911), 14, - 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, - anon_sym_extends, - [131313] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5996), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5880), 3, 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(4911), 18, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5021), 4, + sym__automatic_semicolon, 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_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 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_implements, - anon_sym_extends, - [131381] = 6, + [132077] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - ACTIONS(6001), 1, + ACTIONS(5971), 1, anon_sym_DOT, - STATE(3060), 1, + STATE(2996), 1, sym_statement_block, - ACTIONS(2000), 14, + ACTIONS(1976), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238467,7 +239027,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1998), 25, + ACTIONS(1974), 25, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -238493,14 +239053,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [131437] = 5, + [132133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - STATE(3060), 1, + STATE(2996), 1, sym_statement_block, - ACTIONS(2000), 14, + ACTIONS(1976), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238515,7 +239075,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1998), 26, + ACTIONS(1974), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -238542,81 +239102,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [131491] = 23, + [132187] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5970), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5978), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5990), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_COLON, + ACTIONS(5973), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, + STATE(5856), 1, + sym_type_annotation, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5992), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 6, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_implements, - anon_sym_extends, - [131581] = 5, + [132289] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(2004), 1, anon_sym_EQ, - ACTIONS(6003), 1, + ACTIONS(5975), 1, sym__automatic_semicolon, - ACTIONS(1984), 14, + ACTIONS(2000), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238631,7 +239197,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 26, + ACTIONS(1998), 26, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -238658,666 +239224,530 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [131635] = 26, + [132343] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5990), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_COLON, + ACTIONS(5977), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(5945), 1, + sym_type_annotation, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4953), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131731] = 26, + [132445] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4961), 4, - anon_sym_LBRACE, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5025), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131827] = 26, + [132541] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4963), 4, - anon_sym_LBRACE, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4897), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131923] = 26, + [132637] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5976), 1, - anon_sym_QMARK, - ACTIONS(5978), 1, - anon_sym_AMP_AMP, - ACTIONS(5984), 1, - anon_sym_AMP, - ACTIONS(5986), 1, - anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4969), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [132019] = 26, + ACTIONS(5123), 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, + [132719] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(5970), 1, - anon_sym_in, - ACTIONS(5972), 1, - anon_sym_LT, - ACTIONS(5976), 1, - anon_sym_QMARK, - ACTIONS(5978), 1, - anon_sym_AMP_AMP, - ACTIONS(5984), 1, - anon_sym_AMP, - ACTIONS(5986), 1, - anon_sym_PIPE, - ACTIONS(5990), 1, + ACTIONS(5818), 1, anon_sym_STAR_STAR, - ACTIONS(5994), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5878), 1, + anon_sym_LT, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4971), 4, - anon_sym_LBRACE, + ACTIONS(5121), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5123), 14, + sym__automatic_semicolon, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + 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, - [132115] = 26, + [132795] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(5970), 1, - anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5966), 1, anon_sym_LT, - ACTIONS(5976), 1, - anon_sym_QMARK, - ACTIONS(5978), 1, - anon_sym_AMP_AMP, - ACTIONS(5984), 1, - anon_sym_AMP, - ACTIONS(5986), 1, - anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5988), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5041), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5043), 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, - ACTIONS(4973), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 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, - [132211] = 28, + [132863] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5865), 1, - anon_sym_in, - ACTIONS(5867), 1, - anon_sym_LT, - ACTIONS(5871), 1, - anon_sym_QMARK, - ACTIONS(5873), 1, - anon_sym_AMP_AMP, - ACTIONS(5879), 1, - anon_sym_AMP, - ACTIONS(5881), 1, - anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(5818), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6005), 1, - anon_sym_COMMA, - ACTIONS(6008), 1, - anon_sym_RBRACE, - STATE(5014), 1, + ACTIONS(5878), 1, + anon_sym_LT, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5019), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5887), 5, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [132311] = 28, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5123), 9, + sym__automatic_semicolon, anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5865), 1, - anon_sym_in, - ACTIONS(5867), 1, - anon_sym_LT, - ACTIONS(5871), 1, - anon_sym_QMARK, - ACTIONS(5873), 1, - anon_sym_AMP_AMP, - ACTIONS(5879), 1, - anon_sym_AMP, - ACTIONS(5881), 1, - anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6010), 1, anon_sym_COMMA, - ACTIONS(6013), 1, anon_sym_RBRACE, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5019), 2, - sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(5875), 2, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5887), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [132411] = 27, + anon_sym_QMARK_QMARK, + [132943] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5322), 1, - anon_sym_EQ, - ACTIONS(5811), 1, - anon_sym_as, - ACTIONS(5813), 1, - anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5979), 1, anon_sym_LT, - ACTIONS(5819), 1, - anon_sym_QMARK, - ACTIONS(5821), 1, - anon_sym_AMP_AMP, - ACTIONS(5827), 1, - anon_sym_AMP, - ACTIONS(5829), 1, - anon_sym_PIPE, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5837), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5831), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4953), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5041), 14, 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, - ACTIONS(5817), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5043), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5835), 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, - [132509] = 12, + anon_sym_extends, + [133011] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6015), 1, + ACTIONS(4961), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5372), 1, + anon_sym_DOT, + ACTIONS(5982), 1, + anon_sym_is, + STATE(2602), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(4881), 14, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -239330,10 +239760,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 18, + ACTIONS(3916), 24, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + 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, @@ -239347,49 +239781,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [132577] = 12, + [133069] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6015), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5801), 1, + anon_sym_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE, + ACTIONS(5809), 1, + anon_sym_extends, + ACTIONS(5936), 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(5119), 18, + ACTIONS(5938), 27, + 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, @@ -239403,172 +239831,218 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - anon_sym_extends, - [132645] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [133125] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5284), 4, - anon_sym_LBRACE, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5134), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [132741] = 26, + [133221] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5870), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 14, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4993), 1, + 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(5123), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [133289] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5970), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5972), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5976), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5978), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5984), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5986), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5990), 1, - anon_sym_STAR_STAR, - ACTIONS(5994), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5980), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5988), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5966), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5974), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5982), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5235), 4, - anon_sym_LBRACE, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5202), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5992), 5, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [132837] = 11, + [133385] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6018), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - STATE(2299), 2, - sym_template_string, + STATE(2864), 1, sym_arguments, - ACTIONS(5225), 13, + ACTIONS(4889), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -239579,10 +240053,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 20, + ACTIONS(4891), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -239598,212 +240078,204 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_implements, + anon_sym_BQUOTE, anon_sym_extends, - [132903] = 28, + [133439] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - ACTIONS(6013), 1, - anon_sym_RBRACE, - ACTIONS(6021), 1, - anon_sym_COMMA, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4983), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5875), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5887), 5, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5111), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [133003] = 23, + [133535] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5813), 1, - anon_sym_in, - ACTIONS(5815), 1, - anon_sym_LT, - ACTIONS(5821), 1, - anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5940), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5942), 1, anon_sym_PIPE, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5823), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5831), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5809), 3, + ACTIONS(5944), 1, + anon_sym_extends, + ACTIONS(5218), 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(5817), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4911), 5, + ACTIONS(5220), 27, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(5835), 5, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [133093] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [133591] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(6024), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5783), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5856), 1, + anon_sym_QMARK, + ACTIONS(5858), 1, + anon_sym_AMP_AMP, + ACTIONS(5862), 1, + anon_sym_AMP, + ACTIONS(5864), 1, + anon_sym_PIPE, + ACTIONS(5868), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5787), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5860), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5809), 3, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5825), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 11, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5854), 3, 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(4911), 13, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(5056), 4, + anon_sym_LBRACE, anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5866), 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_extends, - [133167] = 4, + [133687] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6027), 1, + ACTIONS(5984), 1, sym_regex_flags, - ACTIONS(5200), 17, + ACTIONS(5208), 17, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -239821,7 +240293,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_instanceof, anon_sym_extends, - ACTIONS(5202), 24, + ACTIONS(5210), 24, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -239846,424 +240318,563 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [133219] = 21, + [133739] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5813), 1, - anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5783), 1, anon_sym_LT, - ACTIONS(5821), 1, + ACTIONS(5789), 1, + anon_sym_STAR_STAR, + ACTIONS(5852), 1, + anon_sym_in, + ACTIONS(5858), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5862), 1, anon_sym_AMP, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5831), 2, + ACTIONS(5787), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5809), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5781), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5785), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5835), 5, + ACTIONS(5854), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5866), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 7, + ACTIONS(5123), 8, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [133305] = 19, + [133825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5813), 1, + ACTIONS(5801), 1, + anon_sym_AMP, + ACTIONS(5807), 1, + anon_sym_PIPE, + ACTIONS(5809), 1, + anon_sym_extends, + ACTIONS(5269), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(5815), 1, anon_sym_LT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5831), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5809), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5817), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5271), 27, + 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, - ACTIONS(4913), 5, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5835), 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(4911), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_extends, - [133387] = 16, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [133881] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5815), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5833), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_COLON, + ACTIONS(5986), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(5752), 1, + sym_type_annotation, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5831), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5809), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5825), 3, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 9, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [133983] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3883), 1, anon_sym_EQ, + ACTIONS(3842), 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(4911), 13, + ACTIONS(3846), 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, anon_sym_extends, - [133463] = 26, + [134035] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5865), 1, - anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5955), 1, anon_sym_LT, - ACTIONS(5871), 1, - anon_sym_QMARK, - ACTIONS(5873), 1, - anon_sym_AMP_AMP, - ACTIONS(5879), 1, - anon_sym_AMP, - ACTIONS(5881), 1, - anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5121), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5123), 18, + anon_sym_as, + anon_sym_LBRACE, + 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(4961), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 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, - [133559] = 26, + anon_sym_extends, + [134103] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(5988), 1, + anon_sym_COMMA, + ACTIONS(5991), 1, + anon_sym_RBRACE, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5117), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4953), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 5, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [133655] = 18, + [134203] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5815), 1, + ACTIONS(5993), 1, anon_sym_LT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5831), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5809), 3, + ACTIONS(5041), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5817), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5043), 18, + anon_sym_as, + anon_sym_LBRACE, + 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(5835), 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(4913), 6, - anon_sym_EQ, + anon_sym_extends, + [134271] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5801), 1, + anon_sym_AMP, + ACTIONS(5996), 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, + anon_sym_GT_GT, anon_sym_PIPE, - ACTIONS(4911), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5998), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, + 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, - [133735] = 13, + anon_sym_PIPE_RBRACE, + [134323] = 20, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_LBRACK, + ACTIONS(6002), 1, + anon_sym_async, + ACTIONS(6004), 1, + anon_sym_static, + ACTIONS(6006), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4206), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6008), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6010), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4396), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5631), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5633), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(6000), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [134407] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(6024), 1, + ACTIONS(5993), 1, anon_sym_LT, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 14, + ACTIONS(5041), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -240276,16 +240887,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 16, + ACTIONS(5043), 18, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, 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, @@ -240293,187 +240906,209 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [133805] = 27, + [134475] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5356), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5729), 1, anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5822), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5830), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5840), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5848), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5834), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5021), 3, + ACTIONS(5056), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [133903] = 23, + [134573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5940), 1, + anon_sym_AMP, + ACTIONS(5797), 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 28, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4919), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4925), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4927), 1, anon_sym_QMARK_DOT, - ACTIONS(5865), 1, - anon_sym_in, - ACTIONS(5867), 1, - anon_sym_LT, - ACTIONS(5873), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, - anon_sym_AMP, - ACTIONS(5881), 1, - anon_sym_PIPE, - ACTIONS(5885), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4945), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [134625] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(4923), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(4921), 24, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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(5887), 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(4911), 6, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_QMARK_QMARK, - [133993] = 12, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [134681] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(4911), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6029), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + anon_sym_extends, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 18, + ACTIONS(2006), 24, 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -240487,607 +241122,530 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [134061] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [134737] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(5362), 1, + anon_sym_COMMA, + ACTIONS(4923), 2, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(6029), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5877), 3, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4921), 24, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + 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(4913), 10, - anon_sym_BANG, - anon_sym_in, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [134795] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2954), 1, + anon_sym_COMMA, + ACTIONS(4911), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4914), 3, anon_sym_GT, - anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(2002), 11, + 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(4911), 14, + ACTIONS(2006), 24, 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [134135] = 21, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [134853] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5865), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5727), 1, + anon_sym_EQ, + ACTIONS(5822), 1, + anon_sym_as, + ACTIONS(5824), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5826), 1, anon_sym_LT, - ACTIONS(5873), 1, + ACTIONS(5830), 1, + anon_sym_QMARK, + ACTIONS(5832), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5838), 1, anon_sym_AMP, - ACTIONS(5885), 1, + ACTIONS(5840), 1, + anon_sym_PIPE, + ACTIONS(5844), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + ACTIONS(5848), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5883), 2, + ACTIONS(5834), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5842), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5863), 3, + ACTIONS(5086), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5820), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(5828), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5836), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5887), 5, + ACTIONS(5846), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 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, - [134221] = 19, + [134951] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5865), 1, - anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(6012), 1, anon_sym_LT, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5883), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5088), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, + ACTIONS(5090), 20, + anon_sym_as, + anon_sym_LBRACE, + 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(4913), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5887), 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(4911), 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, - [134303] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(5867), 1, - anon_sym_LT, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5883), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, + anon_sym_extends, + [135017] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 1, + anon_sym_AMP, + ACTIONS(5942), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_extends, + ACTIONS(5803), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5877), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, 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(4911), 14, - sym__automatic_semicolon, + ACTIONS(5805), 27, 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, - [134379] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4925), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4927), 1, anon_sym_QMARK_DOT, - ACTIONS(5867), 1, - anon_sym_LT, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5883), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 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(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5887), 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(4911), 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, - [134459] = 27, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [135073] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5732), 1, - anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6015), 1, + anon_sym_COMMA, + ACTIONS(6018), 1, + anon_sym_RBRACE, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5117), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5019), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [134557] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5783), 1, - anon_sym_AMP, - ACTIONS(5789), 1, - anon_sym_PIPE, - ACTIONS(5791), 1, - anon_sym_extends, - ACTIONS(5348), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5880), 3, 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(5350), 27, - 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, + ACTIONS(5894), 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_PIPE_RBRACE, - [134613] = 27, + [135173] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5734), 1, - anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5833), 1, - anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6018), 1, + anon_sym_RBRACE, + ACTIONS(6020), 1, + anon_sym_COMMA, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5107), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5017), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [134711] = 29, + [135273] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(6025), 1, + anon_sym_LBRACE, + ACTIONS(6027), 1, + anon_sym_COMMA, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(5787), 1, - anon_sym_COLON, - ACTIONS(6032), 1, - anon_sym_RPAREN, - STATE(5082), 1, + ACTIONS(6055), 1, + anon_sym_LBRACE_PIPE, + STATE(5020), 1, sym_type_arguments, - STATE(5851), 1, - sym_type_annotation, - ACTIONS(5015), 2, + STATE(5047), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [134813] = 13, + [135375] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(6029), 1, + ACTIONS(5794), 1, anon_sym_LT, - STATE(5014), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5041), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -241100,334 +241658,326 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, - sym__automatic_semicolon, + ACTIONS(5043), 17, 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, - [134883] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [135443] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5940), 1, + anon_sym_AMP, + ACTIONS(5942), 1, + anon_sym_PIPE, + ACTIONS(6057), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5865), 1, anon_sym_in, - ACTIONS(5867), 1, anon_sym_LT, - ACTIONS(5871), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5873), 1, - anon_sym_AMP_AMP, - ACTIONS(5879), 1, - anon_sym_AMP, - ACTIONS(5881), 1, - anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(6059), 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(5021), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 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, - [134979] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [135497] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4947), 1, - anon_sym_EQ, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5811), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(5962), 1, + anon_sym_COLON, + ACTIONS(6061), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(6141), 1, + sym_type_annotation, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4949), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135077] = 26, + [135599] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5940), 1, + anon_sym_AMP, + ACTIONS(5942), 1, + anon_sym_PIPE, + ACTIONS(5944), 1, + anon_sym_extends, + ACTIONS(5269), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5865), 1, anon_sym_in, - ACTIONS(5867), 1, anon_sym_LT, - ACTIONS(5871), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5873), 1, - anon_sym_AMP_AMP, - ACTIONS(5879), 1, - anon_sym_AMP, - ACTIONS(5881), 1, - anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5271), 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, - ACTIONS(5019), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5887), 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, - [135173] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [135655] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5736), 1, - anon_sym_EQ, - ACTIONS(5811), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(5813), 1, + ACTIONS(6065), 1, + anon_sym_COMMA, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(5815), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(5819), 1, + ACTIONS(6073), 1, anon_sym_QMARK, - ACTIONS(5821), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(5827), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(5829), 1, + ACTIONS(6083), 1, anon_sym_PIPE, - ACTIONS(5833), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - ACTIONS(5837), 1, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(4918), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5823), 2, + ACTIONS(6055), 2, + anon_sym_LBRACE, + anon_sym_implements, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5831), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4983), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5809), 3, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5817), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5825), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5835), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135271] = 12, + [135755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2002), 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(2006), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4831), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(6024), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 14, - anon_sym_STAR, + anon_sym_BQUOTE, + anon_sym_extends, + [135807] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 1, anon_sym_EQ, + ACTIONS(5184), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -241438,10 +241988,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, + ACTIONS(5188), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, + 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, @@ -241455,13 +242012,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, anon_sym_extends, - [135339] = 4, + [135859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5685), 1, - anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(4917), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241476,7 +242036,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 27, + ACTIONS(4921), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -241504,156 +242064,175 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [135391] = 26, + [135911] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5235), 4, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5117), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(5887), 5, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135487] = 26, + [136007] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4983), 4, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5119), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(5887), 5, + ACTIONS(5894), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135583] = 4, + [136103] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5813), 1, + anon_sym_LT, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -241664,14 +242243,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 27, + ACTIONS(5123), 17, 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, + anon_sym_instanceof, + [136173] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5940), 1, + anon_sym_AMP, + ACTIONS(5996), 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5998), 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, @@ -241691,15 +242309,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [135635] = 5, + [136225] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5979), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 14, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5043), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [136293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, + ACTIONS(5940), 1, anon_sym_AMP, - ACTIONS(5802), 1, + ACTIONS(5942), 1, anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(5944), 1, + anon_sym_extends, + ACTIONS(5305), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241712,7 +242387,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5895), 28, + ACTIONS(5307), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -241740,17 +242415,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [135689] = 6, + [136349] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5783), 1, - anon_sym_AMP, - ACTIONS(5789), 1, - anon_sym_PIPE, - ACTIONS(5791), 1, - anon_sym_extends, - ACTIONS(5796), 12, + ACTIONS(5635), 1, + anon_sym_is, + ACTIONS(4885), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241759,16 +242429,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(5798), 27, + ACTIONS(4887), 27, 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, @@ -241790,25 +242462,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - [135745] = 6, + anon_sym_extends, + [136401] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(4919), 1, anon_sym_EQ, - ACTIONS(5052), 3, - anon_sym_COMMA, + ACTIONS(4923), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, + ACTIONS(4926), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(6093), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5362), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(4917), 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, @@ -241816,13 +242494,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 24, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4921), 20, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -241841,24 +242515,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [135801] = 6, + [136461] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(2004), 1, anon_sym_EQ, - ACTIONS(5058), 3, - anon_sym_COMMA, + ACTIONS(4911), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, + ACTIONS(4914), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(6097), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2954), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(2002), 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, @@ -241866,13 +242546,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 24, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2006), 20, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -241891,39 +242567,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [135857] = 7, + [136521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(5360), 1, - anon_sym_COMMA, - ACTIONS(5052), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(3842), 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(5050), 24, + ACTIONS(3846), 27, 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, @@ -241942,39 +242614,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [135915] = 7, + anon_sym_extends, + [136573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(3883), 1, anon_sym_EQ, - ACTIONS(2956), 1, - anon_sym_COMMA, - ACTIONS(5058), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(3842), 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(1990), 24, + ACTIONS(3846), 27, 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -241993,16 +242661,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [135973] = 6, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [136625] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, + ACTIONS(5801), 1, anon_sym_AMP, - ACTIONS(5802), 1, + ACTIONS(5807), 1, anon_sym_PIPE, - ACTIONS(5804), 1, - anon_sym_extends, - ACTIONS(5348), 12, + ACTIONS(6057), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242015,16 +242683,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 27, + ACTIONS(6059), 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, @@ -242043,22 +242710,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [136029] = 7, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [136679] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5501), 1, - anon_sym_DOT, - ACTIONS(6034), 1, - anon_sym_is, - STATE(2493), 1, - sym_type_arguments, - ACTIONS(4883), 14, + ACTIONS(3842), 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, @@ -242069,13 +242730,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 24, + ACTIONS(3846), 27, 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, @@ -242094,16 +242758,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [136087] = 6, + [136728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_AMP, - ACTIONS(5802), 1, - anon_sym_PIPE, - ACTIONS(5804), 1, - anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(5281), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242112,20 +242770,21 @@ 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(5150), 27, + ACTIONS(5283), 27, + 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, @@ -242144,119 +242803,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [136143] = 29, + anon_sym_extends, + [136777] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4639), 1, - anon_sym_COMMA, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6038), 1, - anon_sym_LBRACE, - ACTIONS(6040), 1, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6107), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6111), 1, anon_sym_QMARK, - ACTIONS(6048), 1, + ACTIONS(6113), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(6119), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(6121), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6125), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, + ACTIONS(6129), 1, anon_sym_QMARK_QMARK, - ACTIONS(6066), 1, - anon_sym_LBRACE_PIPE, - STATE(4976), 1, - aux_sym_extends_clause_repeat1, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(6115), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5202), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6109), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(6127), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [136245] = 11, + [136872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4999), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6068), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 13, + anon_sym_extends, + ACTIONS(5001), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 20, + ACTIONS(3846), 24, 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -242272,108 +242920,218 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [136311] = 4, + anon_sym_BQUOTE, + [136925] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(1986), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, + ACTIONS(6107), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6111), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6113), 1, + anon_sym_AMP_AMP, + ACTIONS(6119), 1, anon_sym_AMP, + ACTIONS(6121), 1, anon_sym_PIPE, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6129), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6115), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5021), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6109), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 27, - 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, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6127), 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, - [136363] = 4, + [137020] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym_EQ, - ACTIONS(5164), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, + ACTIONS(6107), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6111), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6113), 1, + anon_sym_AMP_AMP, + ACTIONS(6119), 1, anon_sym_AMP, + ACTIONS(6121), 1, anon_sym_PIPE, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6129), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6115), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5025), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6109), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6117), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6127), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [137115] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4829), 1, anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, + anon_sym_in, + ACTIONS(6107), 1, + anon_sym_LT, + ACTIONS(6111), 1, + anon_sym_QMARK, + ACTIONS(6113), 1, anon_sym_AMP_AMP, + ACTIONS(6119), 1, + anon_sym_AMP, + ACTIONS(6121), 1, + anon_sym_PIPE, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6129), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6115), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(4897), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6109), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6127), 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, - [136415] = 4, + [137210] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5046), 14, + ACTIONS(4953), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242388,7 +243146,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 27, + ACTIONS(4955), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -242416,62 +243174,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [136467] = 6, + [137259] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_AMP, - ACTIONS(5802), 1, - anon_sym_PIPE, - ACTIONS(5804), 1, - anon_sym_extends, - ACTIONS(5038), 12, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, + ACTIONS(6107), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6111), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6113), 1, + anon_sym_AMP_AMP, + ACTIONS(6119), 1, + anon_sym_AMP, + ACTIONS(6121), 1, + anon_sym_PIPE, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6129), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6115), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5134), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6109), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 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, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6127), 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, - [136523] = 4, + [137354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3892), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(5313), 1, + anon_sym_DOT, + ACTIONS(5309), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242486,16 +243263,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 27, + ACTIONS(5311), 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, anon_sym_PIPE_PIPE, @@ -242514,478 +243290,543 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [136575] = 4, + [137405] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5800), 1, - anon_sym_AMP, - ACTIONS(5779), 13, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, + ACTIONS(6107), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6111), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6113), 1, + anon_sym_AMP_AMP, + ACTIONS(6119), 1, + anon_sym_AMP, + ACTIONS(6121), 1, anon_sym_PIPE, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6129), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6115), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5132), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6109), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5781), 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, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6127), 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, - [136627] = 8, + [137500] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5052), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5055), 2, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6105), 1, + anon_sym_in, + ACTIONS(6107), 1, + anon_sym_LT, + ACTIONS(6113), 1, + anon_sym_AMP_AMP, + ACTIONS(6119), 1, anon_sym_AMP, + ACTIONS(6121), 1, anon_sym_PIPE, - ACTIONS(6071), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5360), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(5046), 12, - anon_sym_STAR, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5121), 2, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6115), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6101), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6109), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 20, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5123), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_extends, + ACTIONS(6127), 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, - [136687] = 8, + [137589] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(5058), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5061), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6075), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2956), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1986), 12, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6131), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6101), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6117), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, 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(1990), 20, + ACTIONS(5123), 13, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [136747] = 28, + anon_sym_extends, + [137662] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4427), 1, - anon_sym_COMMA, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, + ACTIONS(6105), 1, anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6107), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK, - ACTIONS(6089), 1, + ACTIONS(6113), 1, anon_sym_AMP_AMP, - ACTIONS(6095), 1, + ACTIONS(6119), 1, anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6125), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(4952), 1, - aux_sym_extends_clause_repeat1, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6066), 2, - anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6079), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6109), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6103), 5, + ACTIONS(6127), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [136847] = 11, + ACTIONS(5123), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [137747] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(6105), 1, + anon_sym_in, ACTIONS(6107), 1, anon_sym_LT, - STATE(5014), 1, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - STATE(2443), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5225), 13, + ACTIONS(6101), 3, 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, + ACTIONS(6109), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 19, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6127), 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(5123), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [136912] = 3, + [137828] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6107), 1, + anon_sym_LT, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6123), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6101), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6117), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 8, 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(5360), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 13, 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_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [136961] = 27, + [137903] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5322), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6107), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6111), 1, anon_sym_QMARK, - ACTIONS(6048), 1, + ACTIONS(6113), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(6119), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(6121), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6125), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, + ACTIONS(6129), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4953), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(6115), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5056), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6109), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(6127), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [137058] = 27, + [137998] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5727), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(6040), 1, - anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6107), 1, anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK, - ACTIONS(6048), 1, - anon_sym_AMP_AMP, - ACTIONS(6054), 1, - anon_sym_AMP, - ACTIONS(6056), 1, - anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6125), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4961), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(6101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6109), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6127), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [137155] = 3, + ACTIONS(5123), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [138077] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6131), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -242996,595 +243837,584 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4967), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 16, 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_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [137204] = 26, + [138146] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6103), 1, anon_sym_as, - ACTIONS(6081), 1, + ACTIONS(6105), 1, anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6107), 1, anon_sym_LT, - ACTIONS(6087), 1, + ACTIONS(6111), 1, anon_sym_QMARK, - ACTIONS(6089), 1, + ACTIONS(6113), 1, anon_sym_AMP_AMP, - ACTIONS(6095), 1, + ACTIONS(6119), 1, anon_sym_AMP, - ACTIONS(6097), 1, + ACTIONS(6121), 1, anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6125), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, + ACTIONS(6129), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, + ACTIONS(6115), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6099), 2, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5019), 3, - anon_sym_LBRACE, + ACTIONS(5119), 3, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6109), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6103), 5, + ACTIONS(6127), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [137299] = 26, + [138241] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6103), 1, anon_sym_as, - ACTIONS(6081), 1, + ACTIONS(6105), 1, anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6107), 1, anon_sym_LT, - ACTIONS(6087), 1, + ACTIONS(6111), 1, anon_sym_QMARK, - ACTIONS(6089), 1, + ACTIONS(6113), 1, anon_sym_AMP_AMP, - ACTIONS(6095), 1, + ACTIONS(6119), 1, anon_sym_AMP, - ACTIONS(6097), 1, + ACTIONS(6121), 1, anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6125), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, + ACTIONS(6129), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, + ACTIONS(6115), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6099), 2, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5021), 3, - anon_sym_LBRACE, + ACTIONS(5117), 3, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6109), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6103), 5, + ACTIONS(6127), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [137394] = 13, + [138336] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - ACTIONS(6110), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, - anon_sym_STAR, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6107), 1, + anon_sym_LT, + ACTIONS(6111), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6113), 1, + anon_sym_AMP_AMP, + ACTIONS(6119), 1, anon_sym_AMP, + ACTIONS(6121), 1, anon_sym_PIPE, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6129), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6115), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 16, - anon_sym_as, - anon_sym_LBRACE, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5086), 3, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_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, - [137463] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5322), 14, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 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, + ACTIONS(6109), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4953), 27, - 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, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6127), 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, - [137512] = 28, + [138431] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6107), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6111), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6113), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6119), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6121), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6125), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6129), 1, anon_sym_QMARK_QMARK, - ACTIONS(6113), 1, - anon_sym_RBRACK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - STATE(5131), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6115), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5111), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6109), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6127), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [137611] = 3, + [138526] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6103), 1, + anon_sym_as, + ACTIONS(6105), 1, anon_sym_in, + ACTIONS(6107), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6111), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6113), 1, + anon_sym_AMP_AMP, + ACTIONS(6119), 1, anon_sym_AMP, + ACTIONS(6121), 1, anon_sym_PIPE, + ACTIONS(6125), 1, + anon_sym_STAR_STAR, + ACTIONS(6129), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6115), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5109), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6101), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6109), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5184), 27, - 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, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6127), 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, - [137660] = 26, + [138621] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6103), 1, anon_sym_as, - ACTIONS(6119), 1, + ACTIONS(6105), 1, anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(6107), 1, anon_sym_LT, - ACTIONS(6125), 1, + ACTIONS(6111), 1, anon_sym_QMARK, - ACTIONS(6127), 1, + ACTIONS(6113), 1, anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(6119), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(6121), 1, anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(6125), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, + ACTIONS(6129), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, + ACTIONS(6115), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(6123), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5284), 3, + ACTIONS(5107), 3, anon_sym_COMMA, anon_sym_EQ_GT, anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(6101), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(6109), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(6117), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, + ACTIONS(6127), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [137755] = 26, + [138716] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(6119), 1, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6125), 1, + ACTIONS(6073), 1, anon_sym_QMARK, - ACTIONS(6127), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(6083), 1, anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5235), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, + ACTIONS(6134), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [137850] = 18, + [138811] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5712), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6083), 1, + ACTIONS(6029), 1, + anon_sym_in, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6101), 1, + ACTIONS(6035), 1, + anon_sym_QMARK, + ACTIONS(6037), 1, + anon_sym_AMP_AMP, + ACTIONS(6043), 1, + anon_sym_AMP, + ACTIONS(6045), 1, + anon_sym_PIPE, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6053), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5202), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6099), 2, + ACTIONS(6039), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(6079), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6103), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 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, - [137929] = 3, + [138908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 14, + ACTIONS(5982), 1, + anon_sym_is, + ACTIONS(4885), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -243598,11 +244428,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5330), 27, + ACTIONS(4887), 25, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -243626,10 +244454,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [137978] = 3, + [138959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 14, + ACTIONS(4941), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243644,7 +244472,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4977), 27, + ACTIONS(4943), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243672,79 +244500,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138027] = 26, + [139008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(2040), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, anon_sym_in, - ACTIONS(6083), 1, anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5017), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6085), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(2042), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6103), 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, - [138122] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [139057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 14, + ACTIONS(2225), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243759,7 +244564,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5304), 27, + ACTIONS(2227), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243787,80 +244592,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138171] = 27, + [139106] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(6136), 1, + sym__automatic_semicolon, + ACTIONS(2000), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(5865), 1, anon_sym_in, - ACTIONS(5867), 1, anon_sym_LT, - ACTIONS(5871), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5873), 1, - anon_sym_AMP_AMP, - ACTIONS(5879), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5881), 1, anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6145), 1, - anon_sym_COMMA, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6147), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(1998), 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(5887), 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, - [138268] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [139159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 14, + ACTIONS(2299), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243875,7 +244658,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 27, + ACTIONS(2301), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243903,206 +244686,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138317] = 16, + [139208] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6083), 1, - anon_sym_LT, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6099), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6079), 3, + ACTIONS(2207), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6093), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, 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(4911), 13, + ACTIONS(2209), 27, + 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [138392] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [139257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(2187), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(2189), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6149), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(5662), 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, - [138487] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [139306] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6081), 1, + ACTIONS(2117), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6083), 1, anon_sym_LT, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6099), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6079), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6085), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(2119), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6103), 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(4911), 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, - [138568] = 5, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [139355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(6151), 1, - sym__automatic_semicolon, - ACTIONS(1984), 15, + ACTIONS(2026), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -244116,10 +244842,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 24, + ACTIONS(2024), 27, + 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, @@ -244140,11 +244870,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [138621] = 3, + [139404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 14, + ACTIONS(2157), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244159,7 +244888,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5282), 27, + ACTIONS(2159), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244187,153 +244916,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138670] = 21, + [139453] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6081), 1, - anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6138), 1, anon_sym_LT, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6099), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6079), 3, + ACTIONS(5121), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6085), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5123), 17, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6103), 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(4911), 7, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_implements, - [138755] = 15, + anon_sym_instanceof, + anon_sym_extends, + [139520] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - ACTIONS(6110), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(4883), 1, + anon_sym_DOT, + ACTIONS(6141), 1, + anon_sym_is, + STATE(2354), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6079), 3, + ACTIONS(4881), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6093), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 10, 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(4911), 13, + ACTIONS(3916), 24, anon_sym_as, anon_sym_LBRACE, 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_implements, - [138828] = 12, + anon_sym_extends, + [139577] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6110), 1, + ACTIONS(6143), 1, anon_sym_LT, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5041), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -244346,9 +245059,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, + ACTIONS(5043), 16, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -244363,77 +245075,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [138895] = 23, + anon_sym_LBRACE_PIPE, + [139644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6081), 1, + ACTIONS(2177), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6083), 1, anon_sym_LT, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6085), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4911), 5, + ACTIONS(2179), 27, + 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(6103), 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, - [138984] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [139693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 14, + ACTIONS(2077), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244448,7 +245140,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2160), 27, + ACTIONS(2079), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244476,310 +245168,251 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [139033] = 26, + [139742] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(2167), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, anon_sym_in, - ACTIONS(6083), 1, anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4953), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6085), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(2169), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6103), 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, - [139128] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [139791] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5729), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6087), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(6089), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(6095), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(6097), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5056), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6099), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6103), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [139223] = 26, + [139888] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(5362), 1, + anon_sym_extends, + ACTIONS(4923), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, anon_sym_in, - ACTIONS(6083), 1, anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4949), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6085), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(4921), 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, - ACTIONS(6103), 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, - [139318] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [139945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5975), 1, + sym__automatic_semicolon, + ACTIONS(2000), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, anon_sym_in, - ACTIONS(6083), 1, anon_sym_LT, - ACTIONS(6087), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6097), 1, anon_sym_PIPE, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4983), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6085), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(1998), 26, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6103), 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, - [139413] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [139996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, + ACTIONS(2004), 1, anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(2954), 1, + anon_sym_extends, + ACTIONS(4911), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 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(3848), 26, + ACTIONS(2006), 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -244798,11 +245431,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [139464] = 3, + [140053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 14, + ACTIONS(2107), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244817,7 +245449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 27, + ACTIONS(2105), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244845,10 +245477,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [139513] = 3, + [140102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 14, + ACTIONS(4908), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4905), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(5224), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3842), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244857,21 +245501,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(2285), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3846), 20, 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, @@ -244890,35 +245526,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [139562] = 12, + [140157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - anon_sym_LPAREN, - ACTIONS(5907), 1, - anon_sym_LBRACK, - ACTIONS(5912), 1, - anon_sym_DOT, - ACTIONS(5914), 1, - anon_sym_QMARK_DOT, - ACTIONS(6153), 1, - anon_sym_LT, - STATE(4978), 1, - sym_type_arguments, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3412), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 14, + ACTIONS(2197), 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, @@ -244929,9 +245544,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 16, + ACTIONS(2199), 27, + 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, @@ -244945,71 +245568,137 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [139629] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [140206] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(5727), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6153), 1, + ACTIONS(6029), 1, + anon_sym_in, + ACTIONS(6031), 1, anon_sym_LT, - STATE(4978), 1, + ACTIONS(6035), 1, + anon_sym_QMARK, + ACTIONS(6037), 1, + anon_sym_AMP_AMP, + ACTIONS(6043), 1, + anon_sym_AMP, + ACTIONS(6045), 1, + anon_sym_PIPE, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + ACTIONS(6053), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5086), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(6039), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6047), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6052), 3, + ACTIONS(6033), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 11, + ACTIONS(6051), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [140303] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(6146), 1, + anon_sym_LT, + ACTIONS(6148), 1, + anon_sym_QMARK_DOT, + STATE(3176), 1, + sym_type_arguments, + STATE(3515), 1, + sym_arguments, + ACTIONS(4823), 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, anon_sym_AMP, anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 12, + ACTIONS(4825), 20, 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_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [139702] = 4, + [140366] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6003), 1, - sym__automatic_semicolon, - ACTIONS(1984), 14, + ACTIONS(2215), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245024,7 +245713,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 26, + ACTIONS(2213), 27, + sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -245051,79 +245741,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [139753] = 26, + [140415] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, - anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6150), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4963), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + ACTIONS(5088), 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(6085), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5090), 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(6103), 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, - [139848] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [140480] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 14, + ACTIONS(6153), 1, + anon_sym_AMP, + ACTIONS(6155), 1, + anon_sym_PIPE, + ACTIONS(6157), 1, + anon_sym_extends, + ACTIONS(5803), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245132,13 +245813,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(2249), 27, + ACTIONS(5805), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -245165,23 +245844,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [139897] = 6, + [140535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5068), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(5223), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3844), 12, + ACTIONS(4983), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245190,13 +245856,21 @@ 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(3848), 20, + ACTIONS(4985), 27, + 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, @@ -245215,12 +245889,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [139952] = 4, + anon_sym_extends, + [140584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - anon_sym_DOT, - ACTIONS(5090), 14, + ACTIONS(4991), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245235,7 +245908,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 26, + ACTIONS(4993), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -245244,6 +245917,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, @@ -245262,148 +245936,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140003] = 26, + [140633] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, - anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6143), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6101), 1, - anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4969), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + ACTIONS(5041), 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(6085), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5043), 16, + 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(6103), 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, - [140098] = 26, + anon_sym_LBRACE_PIPE, + [140700] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(6081), 1, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6087), 1, + ACTIONS(6169), 1, anon_sym_QMARK, - ACTIONS(6089), 1, + ACTIONS(6171), 1, anon_sym_AMP_AMP, - ACTIONS(6095), 1, + ACTIONS(6177), 1, anon_sym_AMP, - ACTIONS(6097), 1, + ACTIONS(6179), 1, anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, + ACTIONS(6187), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, + ACTIONS(6173), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6099), 2, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4971), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + ACTIONS(5107), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6103), 5, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [140193] = 3, + [140795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 14, + ACTIONS(5332), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245418,7 +246078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2190), 27, + ACTIONS(5334), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -245446,264 +246106,313 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140242] = 21, + [140844] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6040), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6048), 1, + ACTIONS(6169), 1, + anon_sym_QMARK, + ACTIONS(6171), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(6177), 1, anon_sym_AMP, - ACTIONS(6060), 1, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6058), 2, + ACTIONS(6173), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5109), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6062), 5, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 6, + [140939] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6153), 1, + anon_sym_AMP, + ACTIONS(5797), 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 27, + 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - [140327] = 19, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [140990] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6040), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6060), 1, + ACTIONS(6169), 1, + anon_sym_QMARK, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6058), 2, + ACTIONS(6173), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5111), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6062), 5, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 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, - [140408] = 16, + [141085] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5734), 1, anon_sym_QMARK_DOT, - ACTIONS(6042), 1, - anon_sym_LT, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - STATE(4978), 1, - sym_type_arguments, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6058), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3412), 2, - sym_template_string, - sym_arguments, - ACTIONS(6036), 3, + ACTIONS(2055), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6052), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 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(4911), 12, + ACTIONS(2057), 24, + 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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [140483] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [141140] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(6081), 1, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6087), 1, + ACTIONS(6169), 1, anon_sym_QMARK, - ACTIONS(6089), 1, + ACTIONS(6171), 1, anon_sym_AMP_AMP, - ACTIONS(6095), 1, + ACTIONS(6177), 1, anon_sym_AMP, - ACTIONS(6097), 1, + ACTIONS(6179), 1, anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, + ACTIONS(6187), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, + ACTIONS(6173), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6099), 2, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4973), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + ACTIONS(5117), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6103), 5, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [140578] = 3, + [141235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 14, + ACTIONS(4995), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245718,7 +246427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5076), 27, + ACTIONS(4997), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -245746,269 +246455,516 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140627] = 12, + [141284] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6156), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - STATE(4978), 1, + ACTIONS(6169), 1, + anon_sym_QMARK, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(6173), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 14, + ACTIONS(5119), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6167), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 16, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6185), 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_LBRACE_PIPE, - [140694] = 3, + [141379] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5269), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6169), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, anon_sym_AMP, + ACTIONS(6179), 1, anon_sym_PIPE, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6173), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5132), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5271), 27, - 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, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6185), 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, - [140743] = 18, + [141474] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6042), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6060), 1, + ACTIONS(6169), 1, + anon_sym_QMARK, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6058), 2, + ACTIONS(6173), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5134), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4913), 6, - anon_sym_LBRACE, + [141569] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, anon_sym_in, + ACTIONS(6165), 1, + anon_sym_LT, + ACTIONS(6169), 1, anon_sym_QMARK, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, anon_sym_AMP, + ACTIONS(6179), 1, anon_sym_PIPE, - ACTIONS(4911), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6173), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - [140822] = 3, + ACTIONS(6181), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(4897), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6175), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6185), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [141664] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6169), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, anon_sym_AMP, + ACTIONS(6179), 1, anon_sym_PIPE, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6173), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5025), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 27, - 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, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6185), 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, - [140871] = 4, + [141759] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6159), 1, - sym__automatic_semicolon, - ACTIONS(2062), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6169), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, anon_sym_AMP, + ACTIONS(6179), 1, anon_sym_PIPE, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6173), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5021), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2060), 26, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6175), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6185), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [141854] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4829), 1, anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, + anon_sym_LT, + ACTIONS(6169), 1, + anon_sym_QMARK, + ACTIONS(6171), 1, anon_sym_AMP_AMP, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + ACTIONS(6187), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6173), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5202), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6185), 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, - [140922] = 3, + [141949] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6189), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246019,17 +246975,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 27, + ACTIONS(5043), 17, 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, @@ -246043,18 +246992,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_extends, - [140971] = 3, + [142016] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6189), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246065,17 +247030,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5111), 27, + ACTIONS(5043), 17, 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, @@ -246089,37 +247047,108 @@ 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, - [141020] = 3, + [142083] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, + anon_sym_in, + ACTIONS(6198), 1, + anon_sym_LT, + ACTIONS(6202), 1, anon_sym_QMARK, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, + anon_sym_AMP, + ACTIONS(6212), 1, + anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5056), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6218), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [142178] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(4923), 1, + anon_sym_LBRACK, + ACTIONS(5362), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, + ACTIONS(4917), 11, + 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(2070), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4921), 23, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -246138,15 +247167,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + [142235] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, + anon_sym_in, + ACTIONS(6198), 1, + anon_sym_LT, + ACTIONS(6202), 1, + anon_sym_QMARK, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, + anon_sym_AMP, + ACTIONS(6212), 1, + anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5086), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - [141069] = 3, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6218), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [142330] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6222), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246157,17 +247270,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 27, + ACTIONS(5090), 19, 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, @@ -246183,16 +247289,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [141118] = 3, + [142395] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6131), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(5123), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [142462] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, anon_sym_LT, + ACTIONS(4883), 1, + anon_sym_DOT, + ACTIONS(6225), 1, + anon_sym_is, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(4881), 14, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246203,16 +247371,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3916), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -246231,10 +247395,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141167] = 3, + [142519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 14, + ACTIONS(5356), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246249,7 +247413,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 27, + ACTIONS(5358), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -246277,26 +247441,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141216] = 5, + [142568] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5170), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(4911), 1, anon_sym_LBRACK, + ACTIONS(2954), 2, + anon_sym_COMMA, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3844), 12, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 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, @@ -246304,9 +247467,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 20, + ACTIONS(2006), 23, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -246325,21 +247491,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [141269] = 7, + [142625] = 28, ACTIONS(3), 1, sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, ACTIONS(4833), 1, - anon_sym_LT, - ACTIONS(4885), 1, anon_sym_DOT, - ACTIONS(6161), 1, - anon_sym_is, - STATE(2359), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6227), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4883), 13, + STATE(5145), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [142724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5011), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246350,12 +247580,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 24, + ACTIONS(5013), 27, + 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, @@ -246373,105 +247607,200 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [141326] = 27, + [142773] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5054), 1, anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5878), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5882), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5884), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5888), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5890), 1, anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5896), 1, anon_sym_QMARK_QMARK, - ACTIONS(6145), 1, - anon_sym_COMMA, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6163), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5811), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(5816), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6229), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5894), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [142868] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5015), 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(5877), 3, + ACTIONS(5017), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5887), 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, - [141423] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [142917] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5019), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6165), 1, + ACTIONS(6029), 1, + anon_sym_in, + ACTIONS(6031), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(6035), 1, + anon_sym_QMARK, + ACTIONS(6037), 1, + anon_sym_AMP_AMP, + ACTIONS(6043), 1, + anon_sym_AMP, + ACTIONS(6045), 1, + anon_sym_PIPE, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + ACTIONS(6053), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5021), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(6039), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6047), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(6023), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6033), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6041), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6051), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [143014] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5019), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246482,10 +247811,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, + ACTIONS(5021), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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, @@ -246499,81 +247835,84 @@ 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, - [141490] = 27, + [143063] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5023), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - ACTIONS(6145), 1, - anon_sym_COMMA, - STATE(5014), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5025), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6168), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2443), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5887), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [141587] = 3, + [143160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 14, + ACTIONS(5023), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246588,7 +247927,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5259), 27, + ACTIONS(5025), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -246616,36 +247955,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141636] = 13, + [143209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(5003), 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(5005), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(5907), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5912), 1, anon_sym_DOT, - ACTIONS(5914), 1, anon_sym_QMARK_DOT, - ACTIONS(6060), 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(6153), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [143258] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(4895), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(6029), 1, + anon_sym_in, + ACTIONS(6031), 1, anon_sym_LT, - STATE(4978), 1, + ACTIONS(6035), 1, + anon_sym_QMARK, + ACTIONS(6037), 1, + anon_sym_AMP_AMP, + ACTIONS(6043), 1, + anon_sym_AMP, + ACTIONS(6045), 1, + anon_sym_PIPE, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + ACTIONS(6053), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(4897), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + ACTIONS(6039), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6047), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 14, + ACTIONS(6023), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6033), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6041), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6051), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [143355] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4895), 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, @@ -246656,26 +248089,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 15, + ACTIONS(4897), 27, + 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [141705] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [143404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 14, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2008), 1, + sym__automatic_semicolon, + ACTIONS(1998), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2002), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246690,11 +248142,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2006), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -246717,11 +248166,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [141754] = 3, + [143459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 14, + ACTIONS(2055), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246736,7 +248184,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2016), 27, + ACTIONS(2057), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -246764,10 +248212,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141803] = 3, + [143508] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 14, + ACTIONS(5027), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246782,7 +248230,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5036), 27, + ACTIONS(5029), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -246810,12 +248258,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141852] = 4, + [143557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_LBRACK, - ACTIONS(5370), 14, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(4987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246830,7 +248278,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5372), 26, + ACTIONS(4989), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -246838,7 +248286,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -246857,21 +248305,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141903] = 7, + [143608] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_DOT, - ACTIONS(6172), 1, - anon_sym_is, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(4883), 13, + ACTIONS(5204), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246882,13 +248323,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 24, + ACTIONS(5206), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -246907,10 +248351,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141960] = 3, + [143657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 14, + ACTIONS(5099), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246925,7 +248369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5380), 27, + ACTIONS(5101), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -246953,218 +248397,219 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142009] = 26, + [143706] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4951), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(5865), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5867), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(5871), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5873), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5879), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5881), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(5885), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(5889), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(6231), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + STATE(5210), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5875), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5883), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5863), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5869), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6149), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(5887), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [142104] = 26, + [143805] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(6119), 1, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6125), 1, + ACTIONS(6169), 1, anon_sym_QMARK, - ACTIONS(6127), 1, + ACTIONS(6171), 1, anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(6177), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(6179), 1, anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, + ACTIONS(6187), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, + ACTIONS(6173), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4973), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, + ACTIONS(5056), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [142199] = 27, + [143900] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5356), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6169), 1, anon_sym_QMARK, - ACTIONS(6048), 1, + ACTIONS(6171), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(6177), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(6179), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, + ACTIONS(6187), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5021), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(6173), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5086), 3, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [142296] = 3, + [143995] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 14, + ACTIONS(5007), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247179,7 +248624,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 27, + ACTIONS(5009), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -247207,16 +248652,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142345] = 6, + [144044] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, - anon_sym_AMP, - ACTIONS(6176), 1, - anon_sym_PIPE, - ACTIONS(6178), 1, - anon_sym_extends, - ACTIONS(5038), 12, + ACTIONS(5033), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247225,11 +248664,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(5040), 26, + ACTIONS(5035), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -247256,12 +248697,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [142400] = 4, + anon_sym_extends, + [144093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, - anon_sym_AMP, - ACTIONS(5779), 13, + ACTIONS(2061), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247270,12 +248710,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(5781), 27, + ACTIONS(2059), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -247303,206 +248744,187 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142451] = 5, + [144142] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 3, - anon_sym_COMMA, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5172), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, - anon_sym_STAR, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, anon_sym_in, + ACTIONS(6198), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(6202), 1, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3848), 24, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(6204), 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(6210), 1, + anon_sym_AMP, + ACTIONS(6212), 1, + anon_sym_PIPE, + ACTIONS(6216), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6220), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [142504] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6174), 1, - anon_sym_AMP, - ACTIONS(6176), 1, - anon_sym_PIPE, - ACTIONS(6178), 1, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5202), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(5796), 12, + ACTIONS(6192), 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, + ACTIONS(6200), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5798), 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, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6218), 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, - [142559] = 27, + [144237] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5732), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6048), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + ACTIONS(6233), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5019), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + STATE(5196), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [142656] = 6, + [144336] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, - anon_sym_AMP, - ACTIONS(6176), 1, - anon_sym_PIPE, - ACTIONS(6178), 1, - anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6235), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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(5150), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5043), 17, 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_RBRACE, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -247516,22 +248938,27 @@ 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, - [142711] = 5, + anon_sym_extends, + [144403] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5734), 1, + anon_sym_QMARK_DOT, + ACTIONS(4987), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6176), 1, anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(4989), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2055), 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, @@ -247539,17 +248966,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5895), 27, + ACTIONS(2057), 22, 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, @@ -247566,33 +248989,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [142764] = 12, + [144460] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6156), 1, + ACTIONS(6235), 1, anon_sym_LT, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 14, + ACTIONS(5041), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -247605,9 +249026,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 16, + ACTIONS(5043), 17, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -247621,15 +249043,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [142831] = 3, + anon_sym_extends, + [144527] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 14, + ACTIONS(6146), 1, + anon_sym_LT, + ACTIONS(6238), 1, + anon_sym_DOT, + ACTIONS(6240), 1, + anon_sym_is, + STATE(3391), 1, + sym_type_arguments, + ACTIONS(4881), 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, @@ -247640,16 +249070,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2950), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3916), 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, @@ -247668,84 +249093,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142880] = 27, + anon_sym_LBRACE_PIPE, + [144584] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5608), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(6040), 1, - anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6242), 1, anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK, - ACTIONS(6048), 1, - anon_sym_AMP_AMP, - ACTIONS(6054), 1, - anon_sym_AMP, - ACTIONS(6056), 1, - anon_sym_PIPE, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6064), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5284), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6058), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6044), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6052), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6062), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [142977] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5344), 14, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -247756,17 +249128,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5346), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5090), 19, 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_RBRACE, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -247782,59 +249147,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [143026] = 4, + [144649] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5194), 14, - anon_sym_STAR, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, + ACTIONS(5878), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5882), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5884), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, anon_sym_AMP, + ACTIONS(5890), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5196), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5896), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6245), 1, anon_sym_COMMA, - anon_sym_LPAREN, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5725), 2, + sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, + ACTIONS(5886), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5892), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5811), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5894), 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, - [143077] = 3, + [144746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 14, + ACTIONS(5095), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247849,7 +249236,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5354), 27, + ACTIONS(5097), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -247877,149 +249264,175 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [143126] = 27, + [144795] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5744), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6198), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6202), 1, anon_sym_QMARK, - ACTIONS(6048), 1, + ACTIONS(6204), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(6210), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(6212), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6216), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, + ACTIONS(6220), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5235), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(6206), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5021), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6192), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6200), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(6218), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [143223] = 3, + [144890] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, anon_sym_in, + ACTIONS(6198), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6202), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, anon_sym_AMP, + ACTIONS(6212), 1, anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5320), 27, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5025), 3, 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_extends, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6218), 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, - [143272] = 3, + [144985] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 14, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4899), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(5316), 27, + ACTIONS(3846), 24, 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, @@ -248038,11 +249451,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [143321] = 3, + [145040] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 14, + ACTIONS(4949), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248057,7 +249469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5107), 27, + ACTIONS(4951), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -248085,56 +249497,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [143370] = 3, + [145089] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, anon_sym_in, + ACTIONS(6198), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6202), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, anon_sym_AMP, + ACTIONS(6212), 1, anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5115), 27, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(4897), 3, 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_extends, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6218), 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, - [143419] = 3, + [145184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 14, + ACTIONS(4106), 1, + anon_sym_EQ, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248149,12 +249586,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5326), 27, + ACTIONS(3846), 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, @@ -248177,14 +249613,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [143468] = 3, + [145235] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6247), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -248195,17 +249650,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5312), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5043), 17, 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_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -248219,18 +249667,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_extends, - [143517] = 3, + [145302] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5265), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6247), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -248241,17 +249705,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5267), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5043), 17, 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_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -248265,18 +249722,31 @@ 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, - [143566] = 3, + [145369] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6250), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -248287,17 +249757,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5090), 19, 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_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -248313,35 +249776,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [143615] = 3, + [145434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 14, + ACTIONS(5224), 1, + anon_sym_COMMA, + ACTIONS(4905), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4908), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(5308), 27, + ACTIONS(3846), 24, 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, @@ -248360,27 +249826,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [143664] = 7, + [145489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5725), 1, - anon_sym_QMARK_DOT, - ACTIONS(5194), 3, - anon_sym_GT, + ACTIONS(4902), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5196), 3, + ACTIONS(4899), 3, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LBRACK, + ACTIONS(4887), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(2056), 11, + anon_sym_PIPE_RBRACE, + ACTIONS(3842), 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, @@ -248388,13 +249854,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 22, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3846), 20, anon_sym_as, - anon_sym_LBRACE, 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, @@ -248411,60 +249875,237 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [143721] = 3, + [145544] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, anon_sym_in, + ACTIONS(6198), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6202), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, anon_sym_AMP, + ACTIONS(6212), 1, anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5134), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5300), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6208), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6218), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [145639] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4959), 1, anon_sym_LBRACK, + ACTIONS(4963), 1, anon_sym_DOT, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, + anon_sym_in, + ACTIONS(6198), 1, + anon_sym_LT, + ACTIONS(6202), 1, + anon_sym_QMARK, + ACTIONS(6204), 1, anon_sym_AMP_AMP, + ACTIONS(6210), 1, + anon_sym_AMP, + ACTIONS(6212), 1, + anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5132), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6218), 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, + [145734] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6196), 1, + anon_sym_in, + ACTIONS(6198), 1, + anon_sym_LT, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, + anon_sym_AMP, + ACTIONS(6212), 1, + anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5123), 5, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_extends, - [143770] = 3, + ACTIONS(6218), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [145823] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6253), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -248475,17 +250116,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2122), 27, + ACTIONS(5123), 17, 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, @@ -248499,388 +250133,341 @@ 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, - [143819] = 3, + [145890] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5261), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6192), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6208), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, 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(5263), 27, + ACTIONS(5123), 13, 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [143868] = 28, + [145963] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(6196), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6198), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6204), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6210), 1, anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6216), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6180), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - STATE(5119), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6192), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6200), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6218), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [143967] = 27, + ACTIONS(5123), 7, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [146048] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5734), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(6196), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6198), 1, anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK, - ACTIONS(6048), 1, - anon_sym_AMP_AMP, - ACTIONS(6054), 1, - anon_sym_AMP, - ACTIONS(6056), 1, - anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6216), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5017), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(6192), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6200), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6218), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [144064] = 26, + ACTIONS(5123), 8, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [146129] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, - anon_sym_as, - ACTIONS(6119), 1, - anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(6198), 1, anon_sym_LT, - ACTIONS(6125), 1, - anon_sym_QMARK, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6133), 1, - anon_sym_AMP, - ACTIONS(6135), 1, - anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(6216), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4971), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(6192), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [144159] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2130), 14, - anon_sym_STAR, + ACTIONS(5121), 8, 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(2132), 27, + ACTIONS(5123), 13, 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [144208] = 6, + [146204] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_COMMA, - ACTIONS(5078), 2, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6198), 1, anon_sym_LT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6218), 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, - [144263] = 3, + ACTIONS(5123), 8, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [146283] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2142), 14, + ACTIONS(4899), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(2144), 27, + ACTIONS(3846), 24, 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, @@ -248899,84 +250486,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [144312] = 26, + [146336] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6119), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6125), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6127), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6256), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(5326), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4969), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [144407] = 3, + [146435] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6253), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -248987,185 +250596,243 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5170), 27, + ACTIONS(5123), 16, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [144456] = 3, + [146504] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, anon_sym_in, + ACTIONS(6198), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6202), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, anon_sym_AMP, + ACTIONS(6212), 1, anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5138), 27, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5119), 3, 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_extends, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6218), 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, - [144505] = 3, + [146599] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, anon_sym_in, + ACTIONS(6198), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6202), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, anon_sym_AMP, + ACTIONS(6212), 1, anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5188), 27, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5117), 3, 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_extends, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6218), 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, - [144554] = 3, + [146694] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, anon_sym_in, + ACTIONS(5878), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5882), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5884), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, anon_sym_AMP, + ACTIONS(5890), 1, anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6245), 1, + anon_sym_COMMA, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5886), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5892), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5150), 27, + ACTIONS(6258), 2, 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, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5811), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5894), 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, - [144603] = 6, + [146791] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, + ACTIONS(4905), 3, anon_sym_COMMA, - ACTIONS(5068), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5071), 3, + ACTIONS(4908), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(3842), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249177,7 +250844,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, + ACTIONS(3846), 24, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -249202,123 +250869,290 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [144658] = 3, + [146844] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_AMP, + ACTIONS(5660), 1, anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5656), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6260), 3, anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [146939] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4959), 1, anon_sym_LBRACK, + ACTIONS(4963), 1, anon_sym_DOT, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, + anon_sym_in, + ACTIONS(6198), 1, + anon_sym_LT, + ACTIONS(6202), 1, + anon_sym_QMARK, + ACTIONS(6204), 1, anon_sym_AMP_AMP, + ACTIONS(6210), 1, + anon_sym_AMP, + ACTIONS(6212), 1, + anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6206), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5111), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6218), 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, + [147034] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, + anon_sym_in, + ACTIONS(6198), 1, + anon_sym_LT, + ACTIONS(6202), 1, + anon_sym_QMARK, + ACTIONS(6204), 1, + anon_sym_AMP_AMP, + ACTIONS(6210), 1, + anon_sym_AMP, + ACTIONS(6212), 1, + anon_sym_PIPE, + ACTIONS(6216), 1, + anon_sym_STAR_STAR, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(6206), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6214), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5109), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - [144707] = 23, + ACTIONS(6192), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6200), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6208), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6218), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [147129] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5905), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6040), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6196), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6198), 1, anon_sym_LT, - ACTIONS(6048), 1, + ACTIONS(6202), 1, + anon_sym_QMARK, + ACTIONS(6204), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(6210), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(6212), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6216), 1, anon_sym_STAR_STAR, - STATE(4978), 1, + ACTIONS(6220), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5948), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(6206), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6214), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6036), 3, + ACTIONS(5107), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6192), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6200), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6208), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4911), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - ACTIONS(6062), 5, + ACTIONS(6218), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [144796] = 3, + [147224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 14, + ACTIONS(5212), 1, + sym_regex_flags, + ACTIONS(5208), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -249332,15 +251166,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + anon_sym_instanceof, + ACTIONS(5210), 24, 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, @@ -249355,84 +251189,84 @@ 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, - [144845] = 26, + [147275] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, ACTIONS(5660), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE, ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6262), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(5383), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6182), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(5662), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [144940] = 3, + [147374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 14, + ACTIONS(2237), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249447,7 +251281,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 27, + ACTIONS(2239), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -249475,10 +251309,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [144989] = 3, + [147423] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 14, + ACTIONS(5103), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249493,7 +251327,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2968), 27, + ACTIONS(5105), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -249521,10 +251355,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145038] = 3, + [147472] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 14, + ACTIONS(5113), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249539,7 +251373,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 27, + ACTIONS(5115), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -249567,102 +251401,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145087] = 3, + [147521] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 14, - anon_sym_STAR, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5677), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, anon_sym_BANG, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(6029), 1, anon_sym_in, + ACTIONS(6031), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6035), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6037), 1, + anon_sym_AMP_AMP, + ACTIONS(6043), 1, anon_sym_AMP, + ACTIONS(6045), 1, anon_sym_PIPE, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + ACTIONS(6053), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5134), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6039), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(6023), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6033), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5180), 27, - 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, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6051), 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, - [145136] = 3, + [147618] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 14, - anon_sym_STAR, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5136), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, anon_sym_BANG, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(6029), 1, anon_sym_in, + ACTIONS(6031), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6035), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6037), 1, + anon_sym_AMP_AMP, + ACTIONS(6043), 1, anon_sym_AMP, + ACTIONS(6045), 1, anon_sym_PIPE, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + ACTIONS(6053), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5132), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6039), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(6023), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6033), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2960), 27, - 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, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6051), 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, - [145185] = 3, + [147715] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 14, + ACTIONS(5136), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249677,7 +251559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5088), 27, + ACTIONS(5132), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -249705,36 +251587,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145234] = 5, + [147764] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(5190), 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(3848), 24, + ACTIONS(5192), 27, 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, @@ -249753,10 +251632,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [145287] = 3, + anon_sym_extends, + [147813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 14, + ACTIONS(5194), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249771,7 +251651,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2269), 27, + ACTIONS(5196), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -249799,31 +251679,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145336] = 12, + [147862] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(6029), 1, + anon_sym_in, + ACTIONS(6031), 1, + anon_sym_LT, + ACTIONS(6037), 1, + anon_sym_AMP_AMP, + ACTIONS(6043), 1, + anon_sym_AMP, + ACTIONS(6045), 1, + anon_sym_PIPE, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6039), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6047), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 3, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6023), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6033), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6041), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5123), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + ACTIONS(6051), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [147951] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6184), 1, + ACTIONS(6264), 1, anon_sym_LT, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5121), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -249836,10 +251783,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, + ACTIONS(5123), 16, anon_sym_as, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -249853,81 +251799,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [145403] = 27, + anon_sym_LBRACE_PIPE, + [148018] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4947), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + ACTIONS(6264), 1, + anon_sym_LT, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(6023), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6041), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 11, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(6040), 1, anon_sym_in, - ACTIONS(6042), 1, - anon_sym_LT, - ACTIONS(6046), 1, + anon_sym_GT, anon_sym_QMARK, - ACTIONS(6048), 1, - anon_sym_AMP_AMP, - ACTIONS(6054), 1, anon_sym_AMP, - ACTIONS(6056), 1, anon_sym_PIPE, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6064), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, - sym_type_arguments, - ACTIONS(4949), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5123), 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, - ACTIONS(5948), 2, + [148091] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(6029), 1, + anon_sym_in, + ACTIONS(6031), 1, + anon_sym_LT, + ACTIONS(6037), 1, + anon_sym_AMP_AMP, + ACTIONS(6043), 1, + anon_sym_AMP, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(5121), 4, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [145500] = 3, + ACTIONS(5123), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + [148176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 14, + ACTIONS(5352), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -249942,7 +251940,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4949), 27, + ACTIONS(5354), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -249970,128 +251968,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145549] = 27, + [148225] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(5736), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK, - ACTIONS(6048), 1, - anon_sym_AMP_AMP, - ACTIONS(6054), 1, - anon_sym_AMP, - ACTIONS(6056), 1, - anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(4983), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(5121), 5, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [145646] = 5, + ACTIONS(5123), 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, + [148306] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 3, - anon_sym_COMMA, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(6031), 1, + anon_sym_LT, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(6023), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6041), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 9, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_LT, - anon_sym_SLASH, + anon_sym_GT, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 12, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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, - [145699] = 3, + anon_sym_LBRACE_PIPE, + [148381] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 14, + ACTIONS(6267), 1, + sym__automatic_semicolon, + ACTIONS(2022), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250106,8 +252109,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5255), 27, - sym__automatic_semicolon, + ACTIONS(2020), 26, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -250134,10 +252136,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145748] = 3, + [148432] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(5757), 1, + anon_sym_QMARK_DOT, + ACTIONS(6031), 1, + anon_sym_LT, + ACTIONS(6049), 1, + anon_sym_STAR_STAR, + STATE(5020), 1, + sym_type_arguments, + ACTIONS(5779), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6047), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3448), 2, + sym_template_string, + sym_arguments, + ACTIONS(6023), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6033), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6041), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6051), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5121), 6, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5123), 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, + [148511] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5286), 14, + ACTIONS(5289), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250152,7 +252215,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 27, + ACTIONS(5291), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250180,355 +252243,298 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145797] = 26, + [148560] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, - anon_sym_in, - ACTIONS(6083), 1, - anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6264), 1, + anon_sym_LT, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(6079), 3, + ACTIONS(5121), 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(6085), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5123), 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, - ACTIONS(6187), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6103), 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, - [145892] = 26, + anon_sym_LBRACE_PIPE, + [148629] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5239), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5119), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4983), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [145987] = 26, + [148726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5239), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6199), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6201), 1, - anon_sym_AMP_AMP, - ACTIONS(6207), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6213), 1, - anon_sym_STAR_STAR, - ACTIONS(6217), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6203), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4949), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6197), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(5119), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6215), 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, - [146082] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [148775] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5670), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5117), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5017), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [146177] = 26, + [148872] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5198), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6199), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6201), 1, - anon_sym_AMP_AMP, - ACTIONS(6207), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6213), 1, - anon_sym_STAR_STAR, - ACTIONS(6217), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6203), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5019), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6197), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(5200), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6215), 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, - [146272] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [148921] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 14, + ACTIONS(5241), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250543,7 +252549,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 27, + ACTIONS(5243), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250571,10 +252577,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [146321] = 3, + [148970] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 14, + ACTIONS(5245), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250589,7 +252595,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5368), 27, + ACTIONS(5247), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250617,148 +252623,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [146370] = 26, + [149019] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5249), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6199), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6201), 1, - anon_sym_AMP_AMP, - ACTIONS(6207), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6213), 1, - anon_sym_STAR_STAR, - ACTIONS(6217), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6203), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5021), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6197), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(5251), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6215), 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, - [146465] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149068] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5253), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6199), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6201), 1, - anon_sym_AMP_AMP, - ACTIONS(6207), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5255), 27, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6211), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4953), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(6189), 3, + [149117] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5257), 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(6197), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(5259), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6215), 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, - [146560] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149166] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5374), 14, + ACTIONS(5218), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250773,7 +252779,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5376), 27, + ACTIONS(5220), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250801,319 +252807,286 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [146609] = 26, + [149215] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(6073), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(6083), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4961), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(5107), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [146704] = 26, + [149310] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(6073), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(6083), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4963), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(5109), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [146799] = 28, + [149405] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6073), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6083), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, - ACTIONS(6219), 1, - anon_sym_RBRACK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - STATE(5353), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5111), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [146898] = 4, + [149500] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - sym_regex_flags, - ACTIONS(5200), 16, - anon_sym_STAR, - anon_sym_as, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(6067), 1, anon_sym_in, + ACTIONS(6069), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6073), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6075), 1, + anon_sym_AMP_AMP, + ACTIONS(6081), 1, anon_sym_AMP, + ACTIONS(6083), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(5202), 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_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [146949] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5294), 14, + ACTIONS(6077), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5117), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 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, + ACTIONS(6071), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 27, - 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, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6089), 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, - [146998] = 6, + [149595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, - anon_sym_extends, - ACTIONS(6170), 1, - anon_sym_LBRACK, - ACTIONS(5237), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5362), 12, + ACTIONS(4774), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251122,11 +253095,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(5364), 25, + ACTIONS(4778), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251134,6 +253109,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -251152,131 +253128,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [147053] = 13, + anon_sym_extends, + [149644] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6165), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(6067), 1, + anon_sym_in, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6213), 1, + ACTIONS(6073), 1, + anon_sym_QMARK, + ACTIONS(6075), 1, + anon_sym_AMP_AMP, + ACTIONS(6081), 1, + anon_sym_AMP, + ACTIONS(6083), 1, + anon_sym_PIPE, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6091), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(6077), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5119), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, 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, + ACTIONS(6071), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 16, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(6089), 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_extends, - [147122] = 18, + [149739] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6195), 1, - anon_sym_LT, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6269), 1, + anon_sym_LT, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6211), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6197), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6205), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6215), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 8, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [147201] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5144), 14, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -251287,38 +253237,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5146), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 16, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [147250] = 3, + anon_sym_implements, + [149808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 14, + ACTIONS(5138), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251333,7 +253272,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 27, + ACTIONS(5140), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251361,10 +253300,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [147299] = 3, + [149857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 14, + ACTIONS(5037), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251379,7 +253318,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5142), 27, + ACTIONS(5039), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251407,433 +253346,357 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [147348] = 3, + [149906] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6069), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(6087), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6071), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 27, - 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, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6089), 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, - [147397] = 27, + ACTIONS(5123), 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, + [149985] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5720), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6048), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + ACTIONS(6272), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4973), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + STATE(5309), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6052), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6062), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [147494] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(5648), 3, 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(5134), 27, - 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, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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, - [147543] = 16, + [150084] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6195), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6211), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6189), 3, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6205), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 13, - anon_sym_as, - anon_sym_RBRACE, - 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_extends, - [147618] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5132), 14, - anon_sym_STAR, + ACTIONS(5121), 8, 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(5134), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 13, 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [147667] = 19, + anon_sym_implements, + [150159] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6193), 1, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6211), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6189), 3, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, + ACTIONS(5121), 4, anon_sym_BANG, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6215), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 8, + ACTIONS(5123), 8, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_extends, - [147748] = 21, + anon_sym_implements, + [150240] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6193), 1, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6201), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6211), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, + ACTIONS(5121), 3, anon_sym_BANG, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6189), 3, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 7, + ACTIONS(5123), 7, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_extends, - [147833] = 15, + anon_sym_implements, + [150325] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6165), 1, - anon_sym_LT, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6269), 1, + anon_sym_LT, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6189), 3, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6205), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 10, + ACTIONS(5121), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -251844,10 +253707,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 13, + ACTIONS(5123), 13, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -251857,81 +253720,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [147906] = 23, + anon_sym_implements, + [150398] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6193), 1, - anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6269), 1, anon_sym_LT, - ACTIONS(6201), 1, - anon_sym_AMP_AMP, - ACTIONS(6207), 1, - anon_sym_AMP, - ACTIONS(6209), 1, - anon_sym_PIPE, - ACTIONS(6213), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6211), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6189), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6197), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6205), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4911), 5, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(6215), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [147995] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4802), 14, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -251942,17 +253758,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4806), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 17, 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, @@ -251966,340 +253775,491 @@ 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, - [148044] = 3, + anon_sym_implements, + [150465] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6067), 1, anon_sym_in, + ACTIONS(6069), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6075), 1, + anon_sym_AMP_AMP, + ACTIONS(6081), 1, anon_sym_AMP, + ACTIONS(6083), 1, anon_sym_PIPE, + ACTIONS(6087), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6077), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6071), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(6079), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5123), 5, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_implements, + ACTIONS(6089), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [150554] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4829), 1, anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(6067), 1, + anon_sym_in, + ACTIONS(6069), 1, + anon_sym_LT, + ACTIONS(6073), 1, + anon_sym_QMARK, + ACTIONS(6075), 1, anon_sym_AMP_AMP, + ACTIONS(6081), 1, + anon_sym_AMP, + ACTIONS(6083), 1, + anon_sym_PIPE, + ACTIONS(6087), 1, + anon_sym_STAR_STAR, + ACTIONS(6091), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6085), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5132), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6071), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6089), 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, - [148093] = 26, + [150649] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(6073), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(6083), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4969), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(5134), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [148188] = 26, + [150744] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(6073), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(6083), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4971), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(4897), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [148283] = 3, + [150839] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(6067), 1, anon_sym_in, + ACTIONS(6069), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6073), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6075), 1, + anon_sym_AMP_AMP, + ACTIONS(6081), 1, anon_sym_AMP, + ACTIONS(6083), 1, anon_sym_PIPE, + ACTIONS(6087), 1, + anon_sym_STAR_STAR, + ACTIONS(6091), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6077), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2956), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5025), 3, 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_implements, + ACTIONS(6063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6071), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6089), 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, - [148332] = 6, + [150934] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, - anon_sym_AMP, - ACTIONS(6176), 1, - anon_sym_PIPE, - ACTIONS(6178), 1, - anon_sym_extends, - ACTIONS(5956), 12, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(6067), 1, anon_sym_in, + ACTIONS(6069), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6073), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6075), 1, + anon_sym_AMP_AMP, + ACTIONS(6081), 1, + anon_sym_AMP, + ACTIONS(6083), 1, + anon_sym_PIPE, + ACTIONS(6087), 1, + anon_sym_STAR_STAR, + ACTIONS(6091), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6077), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5958), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5021), 3, 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_implements, + ACTIONS(6063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6071), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6089), 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, - [148387] = 4, + [151029] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, - anon_sym_AMP, - ACTIONS(5960), 13, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(6067), 1, anon_sym_in, + ACTIONS(6069), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6073), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6075), 1, + anon_sym_AMP_AMP, + ACTIONS(6081), 1, + anon_sym_AMP, + ACTIONS(6083), 1, anon_sym_PIPE, + ACTIONS(6087), 1, + anon_sym_STAR_STAR, + ACTIONS(6091), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6077), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5962), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5202), 3, 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_implements, + ACTIONS(6063), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6071), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6089), 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, - [148438] = 3, + [151124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 14, + ACTIONS(2022), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252314,7 +254274,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2060), 27, + ACTIONS(2020), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -252342,152 +254302,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [148487] = 26, + [151173] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6119), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6125), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6127), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6274), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(5251), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4963), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [148582] = 26, + [151272] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4973), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6229), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [148677] = 3, + [151367] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 14, + ACTIONS(4831), 1, + anon_sym_LT, + ACTIONS(4883), 1, + anon_sym_DOT, + ACTIONS(6276), 1, + anon_sym_is, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(4881), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -252498,16 +254467,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3916), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -252526,16 +254492,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [148726] = 6, + [151424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5392), 1, - anon_sym_LBRACK, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5725), 1, - anon_sym_QMARK_DOT, - ACTIONS(2056), 14, + ACTIONS(4975), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252550,7 +254510,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 24, + ACTIONS(4977), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -252558,6 +254518,9 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -252575,22 +254538,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [148781] = 7, + [151473] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_DOT, - ACTIONS(6221), 1, - anon_sym_is, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(4883), 14, + ACTIONS(4967), 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, @@ -252601,12 +254556,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 23, + ACTIONS(4969), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -252625,33 +254584,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [148838] = 12, + [151522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6223), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(4971), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -252662,10 +254602,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, + ACTIONS(4973), 27, 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, @@ -252679,11 +254626,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_extends, - [148905] = 3, + [151571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 14, + ACTIONS(4967), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -252698,7 +254648,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2194), 27, + ACTIONS(4969), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -252726,33 +254676,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [148954] = 12, + [151620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6223), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(4967), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -252763,10 +254694,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, + ACTIONS(4969), 27, 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, @@ -252780,218 +254718,176 @@ 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, - [149021] = 26, + [151669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4967), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6230), 1, anon_sym_in, - ACTIONS(6232), 1, anon_sym_LT, - ACTIONS(6236), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6238), 1, - anon_sym_AMP_AMP, - ACTIONS(6244), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6246), 1, anon_sym_PIPE, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6254), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6240), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6248), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5284), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(4969), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6252), 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, - [149116] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [151718] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5637), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6230), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(6232), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6236), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(6238), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(6244), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(6246), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(6250), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5111), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6240), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6248), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5235), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6234), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6252), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [149211] = 26, + [151815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(4945), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6230), 1, anon_sym_in, - ACTIONS(6232), 1, anon_sym_LT, - ACTIONS(6236), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6238), 1, - anon_sym_AMP_AMP, - ACTIONS(6244), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6246), 1, anon_sym_PIPE, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6254), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6240), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6248), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4973), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(4947), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6252), 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, - [149306] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [151864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 14, + ACTIONS(4937), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253006,7 +254902,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 27, + ACTIONS(4939), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -253034,148 +254930,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [149355] = 26, + [151913] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(4929), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6117), 1, - anon_sym_as, - ACTIONS(6119), 1, anon_sym_in, - ACTIONS(6121), 1, anon_sym_LT, - ACTIONS(6125), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6133), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6135), 1, anon_sym_PIPE, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - ACTIONS(6143), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6129), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6137), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4961), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6123), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(4931), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6141), 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, - [149450] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [151962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6117), 1, - anon_sym_as, - ACTIONS(6119), 1, - anon_sym_in, - ACTIONS(6121), 1, - anon_sym_LT, - ACTIONS(6125), 1, - anon_sym_QMARK, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(6153), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(6155), 1, anon_sym_PIPE, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - ACTIONS(6143), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6129), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6137), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4953), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, + ACTIONS(6157), 1, anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(5218), 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(6123), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(5220), 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6141), 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, - [149545] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [152017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 14, + ACTIONS(2293), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253190,7 +255043,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 27, + ACTIONS(2291), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -253218,76 +255071,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [149594] = 23, + [152066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6119), 1, + ACTIONS(2289), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6121), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6133), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6135), 1, anon_sym_PIPE, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6129), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6137), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6115), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6123), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(2287), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4911), 5, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(6141), 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, - [149683] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [152115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 14, + ACTIONS(2219), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253302,7 +255135,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5103), 27, + ACTIONS(2217), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -253330,265 +255163,173 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [149732] = 15, + [152164] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - ACTIONS(6184), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6115), 3, + ACTIONS(5214), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6131), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 10, 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(4911), 13, + ACTIONS(5216), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + 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, - [149805] = 28, + [152213] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, ACTIONS(5660), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE, ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - ACTIONS(6256), 1, - anon_sym_RPAREN, - STATE(5082), 1, + ACTIONS(6278), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - STATE(5281), 1, + STATE(5328), 1, aux_sym_array_repeat1, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [149904] = 21, + [152312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6119), 1, + ACTIONS(5285), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6121), 1, anon_sym_LT, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6133), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6137), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6115), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6123), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6141), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 7, + ACTIONS(5287), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [149989] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(6119), 1, - anon_sym_in, - ACTIONS(6121), 1, - anon_sym_LT, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6137), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6115), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6123), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6131), 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(4913), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6141), 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(4911), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [150070] = 3, + [152361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 14, + ACTIONS(2311), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253603,7 +255344,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2164), 27, + ACTIONS(2309), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -253631,12 +255372,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150119] = 4, + [152410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5891), 1, - anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(5222), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253651,11 +255390,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 26, + ACTIONS(5224), 27, 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, @@ -253678,10 +255418,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150170] = 3, + [152459] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 14, + ACTIONS(4885), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253696,7 +255436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5044), 27, + ACTIONS(4887), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -253724,155 +255464,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150219] = 16, + [152508] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6121), 1, - anon_sym_LT, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6137), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6115), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6131), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 13, + ACTIONS(5330), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_GT, - 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_extends, - [150294] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6230), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(6232), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6236), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(6238), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(6244), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(6246), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(6250), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5109), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6240), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6248), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4971), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6234), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6252), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [150389] = 11, + [152605] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6258), 1, + ACTIONS(6280), 1, anon_sym_LT, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5225), 13, + ACTIONS(5088), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253886,10 +255568,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 19, + ACTIONS(5090), 19, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -253905,210 +255587,381 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_extends, - [150454] = 26, + anon_sym_implements, + [152670] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(5900), 1, anon_sym_as, - ACTIONS(6230), 1, + ACTIONS(6067), 1, anon_sym_in, - ACTIONS(6232), 1, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6236), 1, + ACTIONS(6073), 1, anon_sym_QMARK, - ACTIONS(6238), 1, + ACTIONS(6075), 1, anon_sym_AMP_AMP, - ACTIONS(6244), 1, + ACTIONS(6081), 1, anon_sym_AMP, - ACTIONS(6246), 1, + ACTIONS(6083), 1, anon_sym_PIPE, - ACTIONS(6250), 1, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, + ACTIONS(6091), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6240), 2, + ACTIONS(6077), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6248), 2, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4969), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, + ACTIONS(5086), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6234), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6252), 5, + ACTIONS(6089), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [150549] = 26, + [152765] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(6153), 1, + anon_sym_AMP, + ACTIONS(6155), 1, + anon_sym_PIPE, + ACTIONS(6157), 1, + anon_sym_extends, + ACTIONS(5305), 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(5307), 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [152820] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6230), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6232), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6236), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6238), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6244), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6246), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6250), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(6283), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + STATE(5285), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6240), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6248), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4963), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6234), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6252), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [150644] = 18, + [152919] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6121), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5900), 1, + anon_sym_as, + ACTIONS(6067), 1, + anon_sym_in, + ACTIONS(6069), 1, anon_sym_LT, - ACTIONS(6139), 1, + ACTIONS(6073), 1, + anon_sym_QMARK, + ACTIONS(6075), 1, + anon_sym_AMP_AMP, + ACTIONS(6081), 1, + anon_sym_AMP, + ACTIONS(6083), 1, + anon_sym_PIPE, + ACTIONS(6087), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6091), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6137), 2, + ACTIONS(6077), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6085), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6115), 3, + ACTIONS(5056), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(6063), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(6071), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(6079), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, + ACTIONS(6089), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [153014] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6285), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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, - ACTIONS(6141), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5043), 17, + 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, - ACTIONS(4911), 8, + anon_sym_implements, + [153081] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6285), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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(5043), 17, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_extends, - [150723] = 3, + anon_sym_instanceof, + anon_sym_implements, + [153148] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 14, + ACTIONS(6288), 1, + anon_sym_LBRACK, + ACTIONS(5229), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254123,7 +255976,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5032), 27, + ACTIONS(5231), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -254131,7 +255984,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -254151,10 +256003,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150772] = 3, + [153199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 14, + ACTIONS(6153), 1, + anon_sym_AMP, + ACTIONS(5996), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254163,13 +256017,12 @@ 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(2245), 27, + ACTIONS(5998), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -254197,431 +256050,323 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150821] = 13, + [153250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - ACTIONS(6184), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + ACTIONS(6153), 1, + anon_sym_AMP, + ACTIONS(6155), 1, + anon_sym_PIPE, + ACTIONS(6157), 1, + anon_sym_extends, + ACTIONS(5936), 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(4911), 16, + ACTIONS(5938), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + 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_extends, - [150890] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [153305] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6117), 1, - anon_sym_as, - ACTIONS(6119), 1, - anon_sym_in, - ACTIONS(6121), 1, - anon_sym_LT, - ACTIONS(6125), 1, - anon_sym_QMARK, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(6153), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(6155), 1, anon_sym_PIPE, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - ACTIONS(6143), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6129), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6137), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5021), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, + ACTIONS(6157), 1, anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(5269), 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(6123), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(5271), 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6141), 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, - [150985] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [153360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(6153), 1, + anon_sym_AMP, + ACTIONS(6155), 1, + anon_sym_PIPE, + ACTIONS(6057), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6230), 1, anon_sym_in, - ACTIONS(6232), 1, anon_sym_LT, - ACTIONS(6236), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6238), 1, - anon_sym_AMP_AMP, - ACTIONS(6244), 1, - anon_sym_AMP, - ACTIONS(6246), 1, - anon_sym_PIPE, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6254), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6240), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6248), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4961), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(6059), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6252), 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, - [151080] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [153413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5330), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6230), 1, anon_sym_in, - ACTIONS(6232), 1, anon_sym_LT, - ACTIONS(6236), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6238), 1, - anon_sym_AMP_AMP, - ACTIONS(6244), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6246), 1, anon_sym_PIPE, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6254), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6240), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6248), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4953), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(5109), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6252), 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, - [151175] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [153462] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5629), 1, + anon_sym_LBRACE, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, - anon_sym_as, - ACTIONS(6119), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6125), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(6127), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5107), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5019), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [151270] = 23, + [153559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6230), 1, + ACTIONS(5928), 1, + anon_sym_is, + ACTIONS(4885), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6232), 1, anon_sym_LT, - ACTIONS(6238), 1, - anon_sym_AMP_AMP, - ACTIONS(6244), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6246), 1, anon_sym_PIPE, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6240), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6248), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4911), 5, + ACTIONS(4887), 26, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(6252), 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, - [151359] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6261), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + anon_sym_BQUOTE, + anon_sym_extends, + [153610] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2067), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -254632,10 +256377,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, + ACTIONS(2065), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + 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, @@ -254649,23 +256401,18 @@ 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, - [151426] = 7, + [153659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_LT, - ACTIONS(6266), 1, - anon_sym_DOT, - ACTIONS(6268), 1, - anon_sym_is, - STATE(3411), 1, - sym_type_arguments, - ACTIONS(4883), 14, + ACTIONS(2956), 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, @@ -254676,11 +256423,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 23, + ACTIONS(2954), 27, + 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, @@ -254699,29 +256451,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [151483] = 10, + [153708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 1, - anon_sym_LPAREN, - ACTIONS(5907), 1, - anon_sym_LBRACK, - ACTIONS(5912), 1, - anon_sym_DOT, - ACTIONS(6264), 1, - anon_sym_LT, - ACTIONS(6270), 1, - anon_sym_QMARK_DOT, - STATE(3115), 1, - sym_type_arguments, - STATE(3497), 1, - sym_arguments, - ACTIONS(4825), 14, + ACTIONS(5348), 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, @@ -254732,9 +256469,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4827), 20, + ACTIONS(5350), 27, + 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, @@ -254752,23 +256497,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [151546] = 6, + [153757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5078), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LBRACK, - ACTIONS(4889), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3844), 12, + ACTIONS(4987), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254777,13 +256509,21 @@ 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(3848), 20, + ACTIONS(4989), 27, + 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, @@ -254802,103 +256542,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [151601] = 27, + anon_sym_extends, + [153806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4951), 1, - anon_sym_as, - ACTIONS(4955), 1, + ACTIONS(5360), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5865), 1, anon_sym_in, - ACTIONS(5867), 1, anon_sym_LT, - ACTIONS(5871), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5873), 1, - anon_sym_AMP_AMP, - ACTIONS(5879), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5881), 1, anon_sym_PIPE, - ACTIONS(5885), 1, - anon_sym_STAR_STAR, - ACTIONS(5889), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6145), 1, - anon_sym_COMMA, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5679), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5875), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5883), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5863), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5869), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5877), 3, + ACTIONS(5362), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5887), 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, - [151698] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6272), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + anon_sym_BQUOTE, + anon_sym_extends, + [153855] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5297), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -254909,10 +256607,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 17, + ACTIONS(5299), 27, 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, @@ -254926,48 +256631,43 @@ 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, - [151765] = 12, + [153904] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5231), 1, + anon_sym_extends, + ACTIONS(6288), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6261), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5229), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5364), 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(5119), 17, + ACTIONS(5366), 25, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + 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, @@ -254981,11 +256681,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [151832] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [153959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 14, + ACTIONS(5368), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255000,7 +256702,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2259), 27, + ACTIONS(5370), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -255028,87 +256730,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [151881] = 28, + [154008] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5001), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6275), 1, - anon_sym_RBRACK, - STATE(5082), 1, - sym_type_arguments, - STATE(5204), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(4999), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5662), 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, - [151980] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [154057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6174), 1, - anon_sym_AMP, - ACTIONS(6176), 1, - anon_sym_PIPE, - ACTIONS(6178), 1, - anon_sym_extends, - ACTIONS(5348), 12, + ACTIONS(5340), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255117,11 +256788,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(5350), 26, + ACTIONS(5342), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -255148,31 +256821,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [152035] = 11, + anon_sym_extends, + [154106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(6288), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, - anon_sym_DOT, - ACTIONS(5914), 1, - anon_sym_QMARK_DOT, - ACTIONS(6277), 1, - anon_sym_LT, - STATE(4978), 1, - sym_type_arguments, - STATE(3412), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 14, + ACTIONS(5336), 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, @@ -255183,9 +256842,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 18, + ACTIONS(5338), 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -255201,286 +256867,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACE_PIPE, - [152100] = 28, + anon_sym_BQUOTE, + anon_sym_extends, + [154157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(2944), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6280), 1, - anon_sym_RPAREN, - STATE(5082), 1, - sym_type_arguments, - STATE(5299), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(2942), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5662), 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, - [152199] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6272), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6226), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [154206] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5261), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6242), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 10, 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(4911), 13, + ACTIONS(5263), 27, 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [152272] = 21, + [154255] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6230), 1, + ACTIONS(5344), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6232), 1, anon_sym_LT, - ACTIONS(6238), 1, - anon_sym_AMP_AMP, - ACTIONS(6244), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6248), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6252), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 7, + ACTIONS(5346), 27, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [152357] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4919), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4925), 1, anon_sym_DOT, - ACTIONS(4927), 1, anon_sym_QMARK_DOT, - ACTIONS(6230), 1, - anon_sym_in, - ACTIONS(6232), 1, - anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6248), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6242), 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(4913), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6252), 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(4911), 8, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [152438] = 11, + [154304] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6282), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 13, + ACTIONS(5326), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -255491,10 +257025,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 19, + ACTIONS(5328), 27, + 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, @@ -255510,28 +257051,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_implements, - [152503] = 11, + anon_sym_BQUOTE, + anon_sym_extends, + [154353] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, + ACTIONS(6138), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - STATE(2299), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5225), 13, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255545,7 +257092,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 19, + ACTIONS(5123), 16, anon_sym_as, anon_sym_RBRACE, anon_sym_RBRACK, @@ -255555,89 +257102,78 @@ 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_extends, - [152568] = 26, + [154422] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, - anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5235), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6103), 5, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [152663] = 3, + ACTIONS(5123), 8, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [154501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 14, + ACTIONS(5265), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255652,7 +257188,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 27, + ACTIONS(5267), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -255680,25 +257216,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [152712] = 3, + [154550] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6165), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6181), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6175), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5123), 13, + anon_sym_as, + anon_sym_RBRACE, + 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_extends, + [154625] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2968), 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(2231), 27, + ACTIONS(2966), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -255726,157 +257321,216 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [152761] = 26, + [154674] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5968), 1, - anon_sym_as, - ACTIONS(6081), 1, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6083), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6087), 1, - anon_sym_QMARK, - ACTIONS(6089), 1, - anon_sym_AMP_AMP, - ACTIONS(6095), 1, - anon_sym_AMP, - ACTIONS(6097), 1, - anon_sym_PIPE, - ACTIONS(6101), 1, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - ACTIONS(6105), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6091), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6099), 2, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5284), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(6079), 3, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6085), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(6175), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6103), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6185), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [152856] = 12, + ACTIONS(5123), 8, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [154755] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6288), 1, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, + anon_sym_in, + ACTIONS(5878), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5882), 1, + anon_sym_QMARK, + ACTIONS(5884), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_AMP, + ACTIONS(5890), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6245), 1, + anon_sym_COMMA, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5886), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6290), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5811), 3, 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(5119), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5816), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5894), 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_implements, - [152923] = 12, + [154852] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6288), 1, + ACTIONS(5054), 1, + anon_sym_as, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5818), 1, + anon_sym_STAR_STAR, + ACTIONS(5876), 1, + anon_sym_in, + ACTIONS(5878), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5882), 1, + anon_sym_QMARK, + ACTIONS(5884), 1, + anon_sym_AMP_AMP, + ACTIONS(5888), 1, + anon_sym_AMP, + ACTIONS(5890), 1, + anon_sym_PIPE, + ACTIONS(5896), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6245), 1, + anon_sym_COMMA, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5886), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5892), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6292), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5811), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5816), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5880), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5894), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [154949] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4979), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -255887,10 +257541,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, + ACTIONS(4981), 27, + 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, @@ -255904,114 +257565,125 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [152990] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [154998] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6232), 1, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6250), 1, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6183), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6248), 2, + ACTIONS(6181), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6226), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6159), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6242), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, - anon_sym_BANG, - anon_sym_in, + ACTIONS(6167), 3, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 13, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(6175), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6185), 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, + ACTIONS(5123), 7, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [153065] = 12, + [155083] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6291), 1, + ACTIONS(6138), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(6159), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6175), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, 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(5119), 17, + ACTIONS(5123), 13, anon_sym_as, anon_sym_RBRACE, 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, @@ -256019,33 +257691,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [153132] = 12, + [155156] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6291), 1, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(6171), 1, + anon_sym_AMP_AMP, + ACTIONS(6177), 1, + anon_sym_AMP, + ACTIONS(6179), 1, + anon_sym_PIPE, + ACTIONS(6183), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(6173), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6181), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(6159), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6175), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5123), 5, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_extends, + ACTIONS(6185), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [155245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5269), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -256056,10 +257775,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 17, + ACTIONS(5271), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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, @@ -256073,95 +257799,101 @@ 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, - [153199] = 26, + [155294] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6119), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6125), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6127), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6294), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + STATE(5328), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5017), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [153294] = 7, + [155393] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(2956), 1, - anon_sym_extends, - ACTIONS(5058), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5061), 3, - anon_sym_GT, + ACTIONS(5001), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(4999), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3842), 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, @@ -256169,12 +257901,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 23, - sym__automatic_semicolon, + ACTIONS(3846), 20, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -256193,73 +257922,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [153351] = 18, + [155446] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6232), 1, - anon_sym_LT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6248), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6226), 3, + ACTIONS(5128), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6242), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 5, 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(6252), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5130), 27, 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, - [153430] = 4, + [155495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 1, - anon_sym_LBRACK, - ACTIONS(5237), 14, + ACTIONS(5235), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256274,7 +257986,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5239), 26, + ACTIONS(5237), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -256282,6 +257994,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -256301,81 +258014,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [153481] = 28, + [155544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5316), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6294), 1, - anon_sym_RPAREN, - STATE(5082), 1, - sym_type_arguments, - STATE(5335), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5318), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5662), 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, - [153580] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [155593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 14, + ACTIONS(5320), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256390,7 +258078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 27, + ACTIONS(5322), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -256418,38 +258106,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [153629] = 7, + [155642] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5360), 1, - anon_sym_extends, - ACTIONS(5052), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5055), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(2960), 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(5050), 23, + ACTIONS(2958), 27, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, + 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, @@ -256468,10 +258151,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [153686] = 3, + anon_sym_extends, + [155691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 14, + ACTIONS(5305), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256486,7 +258170,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5251), 27, + ACTIONS(5307), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -256514,35 +258198,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [153735] = 13, + [155740] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6272), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5301), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -256553,165 +258216,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 16, + ACTIONS(5303), 27, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [153804] = 26, + [155789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5293), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6230), 1, anon_sym_in, - ACTIONS(6232), 1, anon_sym_LT, - ACTIONS(6236), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6238), 1, - anon_sym_AMP_AMP, - ACTIONS(6244), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6246), 1, anon_sym_PIPE, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6254), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6240), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6248), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5021), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6252), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [153899] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(5295), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4919), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4925), 1, anon_sym_DOT, - ACTIONS(4927), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6230), 1, - anon_sym_in, - ACTIONS(6232), 1, - anon_sym_LT, - ACTIONS(6236), 1, - anon_sym_QMARK, - ACTIONS(6238), 1, anon_sym_AMP_AMP, - ACTIONS(6244), 1, - anon_sym_AMP, - ACTIONS(6246), 1, - anon_sym_PIPE, - ACTIONS(6250), 1, - anon_sym_STAR_STAR, - ACTIONS(6254), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6240), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6248), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5019), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6234), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6242), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6252), 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, - [153994] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [155838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 14, + ACTIONS(4933), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256726,7 +258308,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 27, + ACTIONS(4935), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -256754,10 +258336,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [154043] = 3, + [155887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 14, + ACTIONS(3976), 1, + anon_sym_EQ, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256772,14 +258356,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3846), 26, 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, @@ -256800,79 +258383,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [154092] = 26, + [155938] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5741), 1, + anon_sym_as, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6117), 1, - anon_sym_as, - ACTIONS(6119), 1, + ACTIONS(6029), 1, anon_sym_in, - ACTIONS(6121), 1, + ACTIONS(6031), 1, anon_sym_LT, - ACTIONS(6125), 1, + ACTIONS(6035), 1, anon_sym_QMARK, - ACTIONS(6127), 1, + ACTIONS(6037), 1, anon_sym_AMP_AMP, - ACTIONS(6133), 1, + ACTIONS(6043), 1, anon_sym_AMP, - ACTIONS(6135), 1, + ACTIONS(6045), 1, anon_sym_PIPE, - ACTIONS(6139), 1, + ACTIONS(6049), 1, anon_sym_STAR_STAR, - ACTIONS(6143), 1, + ACTIONS(6053), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6296), 1, + anon_sym_LBRACE, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5779), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6129), 2, + ACTIONS(6039), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6137), 2, + ACTIONS(6047), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(6134), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(4949), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, + ACTIONS(6023), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6123), 3, + ACTIONS(6033), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6131), 3, + ACTIONS(6041), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6141), 5, + ACTIONS(6051), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [154187] = 3, + [156035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 14, + ACTIONS(2964), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256887,7 +258471,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5223), 27, + ACTIONS(2962), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -256915,10 +258499,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [154236] = 3, + [156084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 14, + ACTIONS(5273), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256933,7 +258517,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2305), 27, + ACTIONS(5275), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -256961,79 +258545,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [154285] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6117), 1, - anon_sym_as, - ACTIONS(6119), 1, - anon_sym_in, - ACTIONS(6121), 1, - anon_sym_LT, - ACTIONS(6125), 1, - anon_sym_QMARK, - ACTIONS(6127), 1, - anon_sym_AMP_AMP, - ACTIONS(6133), 1, - anon_sym_AMP, - ACTIONS(6135), 1, - anon_sym_PIPE, - ACTIONS(6139), 1, - anon_sym_STAR_STAR, - ACTIONS(6143), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6129), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6137), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4983), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6115), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6123), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6131), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6141), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [154380] = 3, + [156133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5247), 14, + ACTIONS(5277), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257048,7 +258563,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4963), 27, + ACTIONS(5279), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -257076,79 +258591,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [154429] = 26, + [156182] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6230), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6232), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6236), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6238), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6244), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6246), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6250), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(6298), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + STATE(5140), 1, + aux_sym_array_repeat1, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6240), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6248), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5017), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6234), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6252), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [154524] = 3, + [156281] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 14, + ACTIONS(6300), 1, + anon_sym_LBRACE, + ACTIONS(6302), 1, + anon_sym_DOT, + STATE(3419), 1, + sym_statement_block, + ACTIONS(1976), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257163,11 +258686,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 27, + ACTIONS(1974), 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, + [156335] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2081), 1, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2073), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2077), 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(2079), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -257190,91 +258757,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [154573] = 26, + [156387] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(6308), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5235), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [154668] = 7, + [156481] = 26, ACTIONS(3), 1, sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, + anon_sym_in, + ACTIONS(6310), 1, + anon_sym_LT, + ACTIONS(6314), 1, + anon_sym_QMARK, + ACTIONS(6316), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + ACTIONS(6324), 1, + anon_sym_PIPE, + ACTIONS(6328), 1, + anon_sym_STAR_STAR, + ACTIONS(6332), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5107), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6326), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6304), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6312), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6320), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6330), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [156575] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6334), 1, anon_sym_EQ, - ACTIONS(5052), 1, - anon_sym_LBRACK, - ACTIONS(5360), 2, + ACTIONS(4923), 3, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5055), 3, + ACTIONS(4926), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(4917), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257286,12 +258918,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 23, + ACTIONS(4921), 22, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -257310,311 +258941,243 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [154725] = 26, + [156629] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6230), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6232), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6236), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6238), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6244), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6246), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6250), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6337), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6240), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6248), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4949), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6234), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6252), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [154820] = 26, + [156725] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6193), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6195), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6199), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6201), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6207), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6209), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6213), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6217), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6339), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6203), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6211), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5284), 3, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6189), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6197), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6205), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6215), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [154915] = 26, + [156821] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(6194), 1, anon_sym_as, - ACTIONS(6230), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6232), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6236), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(6238), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6244), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6246), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6250), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6254), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6240), 2, + ACTIONS(5109), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6248), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(4983), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6226), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6234), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6242), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6252), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [155010] = 28, + [156915] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2357), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2954), 1, anon_sym_COMMA, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4911), 2, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_extends, + ACTIONS(4914), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6296), 1, - anon_sym_RPAREN, - STATE(5082), 1, - sym_type_arguments, - STATE(5271), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [155109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5209), 14, + ACTIONS(2002), 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(5211), 27, + ACTIONS(2006), 22, 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, @@ -257633,80 +259196,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [155158] = 3, + [156971] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_AMP, + ACTIONS(5660), 1, anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6341), 1, + anon_sym_RBRACK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5342), 27, - 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, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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, - [155207] = 3, + [157067] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 14, + ACTIONS(4887), 1, + anon_sym_extends, + ACTIONS(4899), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(2076), 27, + ACTIONS(3846), 23, 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -257725,108 +259313,174 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [155256] = 27, + [157121] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(5247), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6353), 1, anon_sym_QMARK, - ACTIONS(6048), 1, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, + ACTIONS(6371), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4963), 2, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5202), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6357), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6365), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6343), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6351), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6359), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6369), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [157215] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + ACTIONS(6373), 1, + anon_sym_RBRACE, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [155353] = 6, + [157311] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(4919), 1, anon_sym_EQ, - ACTIONS(1992), 1, - sym__automatic_semicolon, - ACTIONS(1982), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1986), 14, + ACTIONS(5362), 1, + anon_sym_COMMA, + ACTIONS(4923), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 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(1990), 23, + ACTIONS(4921), 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, anon_sym_AMP_AMP, @@ -257845,11 +259499,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [155408] = 3, + [157367] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6377), 1, + anon_sym_RBRACE, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3085), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [157453] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6393), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3239), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [157539] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 14, + ACTIONS(6240), 1, + anon_sym_is, + ACTIONS(4885), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -257863,14 +259648,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4907), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4887), 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, @@ -257891,11 +259672,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [155457] = 3, + anon_sym_LBRACE_PIPE, + [157589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 14, + ACTIONS(5186), 1, + anon_sym_EQ, + ACTIONS(5184), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -257909,14 +259694,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4969), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5188), 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, @@ -257937,39 +259718,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [155506] = 7, + anon_sym_LBRACE_PIPE, + [157639] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(5058), 1, - anon_sym_LBRACK, - ACTIONS(2956), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(4831), 1, + anon_sym_LT, + ACTIONS(4883), 1, + anon_sym_DOT, + ACTIONS(6395), 1, + anon_sym_is, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(4881), 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(1990), 23, + ACTIONS(3916), 23, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -257987,151 +259767,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [155563] = 28, + anon_sym_extends, + [157695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2357), 1, + ACTIONS(5224), 1, + anon_sym_extends, + ACTIONS(4905), 2, anon_sym_COMMA, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(4908), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6298), 1, - anon_sym_RBRACK, - STATE(5082), 1, - sym_type_arguments, - STATE(5191), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [155662] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(5219), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(3846), 23, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5907), 1, - anon_sym_LBRACK, - ACTIONS(5912), 1, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(5914), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(6040), 1, - anon_sym_in, - ACTIONS(6042), 1, - anon_sym_LT, - ACTIONS(6046), 1, - anon_sym_QMARK, - ACTIONS(6048), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, - anon_sym_AMP, - ACTIONS(6056), 1, - anon_sym_PIPE, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6064), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, - sym_type_arguments, - ACTIONS(4969), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6050), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6058), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3412), 2, - sym_template_string, - sym_arguments, - ACTIONS(6036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6044), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6052), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6062), 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, - [155759] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [157749] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6397), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3239), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [157835] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 14, + ACTIONS(2241), 1, + sym__automatic_semicolon, + ACTIONS(2233), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2237), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258146,11 +259903,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2239), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -258173,12 +259927,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [155808] = 3, + [157887] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6399), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3080), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [157973] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 14, + ACTIONS(5594), 1, + sym_regex_flags, + ACTIONS(5208), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -258192,12 +260012,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2156), 27, + anon_sym_instanceof, + ACTIONS(5210), 23, 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, @@ -258215,156 +260034,133 @@ 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, - [155857] = 27, + [158023] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(4911), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5912), 1, - anon_sym_DOT, - ACTIONS(5914), 1, - anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + anon_sym_extends, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 12, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(6040), 1, anon_sym_in, - ACTIONS(6042), 1, anon_sym_LT, - ACTIONS(6046), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6048), 1, - anon_sym_AMP_AMP, - ACTIONS(6054), 1, - anon_sym_AMP, - ACTIONS(6056), 1, - anon_sym_PIPE, - ACTIONS(6060), 1, - anon_sym_STAR_STAR, - ACTIONS(6064), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6300), 1, - anon_sym_LBRACE, - STATE(4978), 1, - sym_type_arguments, - ACTIONS(5948), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6050), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6058), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6187), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - STATE(3412), 2, - sym_template_string, - sym_arguments, - ACTIONS(6036), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6044), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(2006), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6062), 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, - [155954] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [158077] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1130), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5217), 1, - anon_sym_LBRACE, - ACTIONS(5905), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(5907), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5912), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(5914), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, - anon_sym_as, - ACTIONS(5920), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(6040), 1, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6042), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6046), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(6048), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6054), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6056), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6060), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6064), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - STATE(4978), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4971), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5948), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6050), 2, + ACTIONS(5111), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6058), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3412), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6036), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6044), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6052), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6062), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [156051] = 3, + [158171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 14, + ACTIONS(4404), 1, + anon_sym_EQ, + ACTIONS(3842), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -258378,14 +260174,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2207), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3846), 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, @@ -258406,14 +260198,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [156100] = 3, + anon_sym_LBRACE_PIPE, + [158221] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6401), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -258424,17 +260236,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 16, 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_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -258448,87 +260252,61 @@ 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, - [156149] = 28, + [158287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(2357), 1, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(4923), 3, anon_sym_COMMA, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 12, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6302), 1, - anon_sym_RBRACK, - STATE(5082), 1, - sym_type_arguments, - STATE(5131), 1, - aux_sym_array_repeat1, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(4921), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5662), 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, - [156248] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [158341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4147), 1, + ACTIONS(4467), 1, anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258543,13 +260321,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 26, + ACTIONS(3846), 25, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -258570,14 +260347,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [156299] = 4, + [158391] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6034), 1, - anon_sym_is, - ACTIONS(4887), 15, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6404), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3239), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [158477] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, anon_sym_EQ, + ACTIONS(2954), 1, + anon_sym_extends, + ACTIONS(4911), 1, + anon_sym_LBRACK, + ACTIONS(6406), 1, + anon_sym_COLON, + ACTIONS(4914), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6097), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2002), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -258585,19 +260437,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(4889), 25, - sym__automatic_semicolon, + ACTIONS(2006), 20, 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, @@ -258616,16 +260462,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [156350] = 5, + [158537] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, - sym__automatic_semicolon, - ACTIONS(2138), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2142), 14, + ACTIONS(6300), 1, + anon_sym_LBRACE, + STATE(3419), 1, + sym_statement_block, + ACTIONS(1976), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258640,11 +260484,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2144), 23, + ACTIONS(1974), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -258664,33 +260507,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [156402] = 12, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [158589] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6304), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5031), 1, + sym__automatic_semicolon, + ACTIONS(2000), 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, @@ -258701,9 +260530,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 16, + ACTIONS(1998), 24, anon_sym_as, - anon_sym_EQ_GT, + 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, @@ -258717,16 +260551,20 @@ 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, - [156468] = 5, + [158639] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2188), 1, + ACTIONS(2193), 5, sym__automatic_semicolon, - ACTIONS(2180), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2184), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2197), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258741,11 +260579,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 23, + ACTIONS(2199), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -258765,33 +260601,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [156520] = 12, + [158689] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6304), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(4443), 1, + anon_sym_EQ, + ACTIONS(3842), 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, @@ -258802,9 +260622,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 16, + ACTIONS(3846), 24, anon_sym_as, - anon_sym_EQ_GT, + 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, @@ -258818,171 +260642,99 @@ 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, - [156586] = 13, + anon_sym_LBRACE_PIPE, + [158739] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(4923), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6307), 1, - anon_sym_LT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5362), 1, + anon_sym_extends, + ACTIONS(6093), 1, + anon_sym_RPAREN, + ACTIONS(6334), 1, + anon_sym_QMARK, + ACTIONS(4926), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5420), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(4917), 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(4911), 15, + ACTIONS(4921), 20, anon_sym_as, - anon_sym_EQ_GT, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [156654] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [158801] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2954), 1, + anon_sym_extends, + ACTIONS(4911), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, - anon_sym_as, - ACTIONS(6316), 1, - anon_sym_in, - ACTIONS(6318), 1, - anon_sym_LT, - ACTIONS(6322), 1, + ACTIONS(6097), 1, + anon_sym_RPAREN, + ACTIONS(6408), 1, anon_sym_QMARK, - ACTIONS(6324), 1, - anon_sym_AMP_AMP, - ACTIONS(6330), 1, + ACTIONS(4914), 2, anon_sym_AMP, - ACTIONS(6332), 1, anon_sym_PIPE, - ACTIONS(6338), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5021), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6326), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6320), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6328), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6336), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [156748] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6340), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(5474), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(2002), 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(5119), 16, - sym__automatic_semicolon, + ACTIONS(2006), 20, anon_sym_as, - anon_sym_SEMI, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -258996,17 +260748,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [156814] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [158863] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6343), 1, + ACTIONS(2163), 5, sym__automatic_semicolon, - ACTIONS(2263), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2267), 14, + ACTIONS(2167), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259021,7 +260775,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2269), 21, + ACTIONS(2169), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -259043,30 +260797,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [156866] = 11, + [158913] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4738), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6345), 1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6419), 2, + anon_sym_get, + anon_sym_set, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 13, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [158985] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(6334), 1, + anon_sym_in, + ACTIONS(6421), 1, + anon_sym_of, + ACTIONS(4917), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -259077,9 +260877,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 18, + ACTIONS(4921), 24, + sym__automatic_semicolon, anon_sym_as, - anon_sym_EQ_GT, + 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, @@ -259095,103 +260901,202 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_extends, - [156930] = 27, + anon_sym_BQUOTE, + [159039] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4738), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6429), 1, + anon_sym_readonly, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [159115] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4738), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6433), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [159189] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6353), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6348), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5021), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6357), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [157026] = 12, + [159283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6340), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(4433), 1, + anon_sym_EQ, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -259202,10 +261107,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 16, + ACTIONS(3846), 25, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -259219,90 +261129,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [157092] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [159333] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6353), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6350), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5025), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6357), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [157188] = 7, + [159427] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_DOT, - ACTIONS(6352), 1, - anon_sym_is, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(4883), 13, + ACTIONS(2044), 1, + sym__automatic_semicolon, + ACTIONS(2036), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2040), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -259313,12 +261224,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 23, + ACTIONS(2042), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -259336,238 +261248,274 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + [159479] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2954), 1, anon_sym_extends, - [157244] = 27, + ACTIONS(4911), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 12, + 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(2006), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [159535] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(5362), 1, + anon_sym_extends, + ACTIONS(4923), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 12, + 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(4921), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4829), 1, + anon_sym_LBRACE_PIPE, + [159591] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6354), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5117), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [157340] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4745), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [157414] = 26, + [159685] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(6194), 1, anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6376), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5017), 2, + ACTIONS(5119), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6380), 2, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [157508] = 17, + [159779] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4745), 1, + ACTIONS(4726), 1, anon_sym_RBRACE, - ACTIONS(6356), 1, + ACTIONS(6411), 1, anon_sym_STAR, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6362), 1, + ACTIONS(6425), 1, anon_sym_async, - ACTIONS(6396), 1, + ACTIONS(6433), 1, anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, sym_number, sym_private_property_identifier, - ACTIONS(6366), 2, + ACTIONS(6431), 2, anon_sym_get, anon_sym_set, - STATE(3945), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -259575,12 +261523,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -259591,141 +261540,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [157584] = 15, + [159853] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(6435), 1, + sym__automatic_semicolon, + ACTIONS(2221), 4, anon_sym_COMMA, - ACTIONS(4745), 1, anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [157656] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6406), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [157752] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2134), 1, - sym__automatic_semicolon, - ACTIONS(2126), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2130), 14, + ACTIONS(2225), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259740,11 +261565,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2132), 23, + ACTIONS(2227), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -259764,147 +261587,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [157804] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, - anon_sym_as, - ACTIONS(6316), 1, - anon_sym_in, - ACTIONS(6318), 1, - anon_sym_LT, - ACTIONS(6322), 1, - anon_sym_QMARK, - ACTIONS(6324), 1, - anon_sym_AMP_AMP, - ACTIONS(6330), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE, - ACTIONS(6338), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4983), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6326), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6320), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6328), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6336), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [157898] = 22, + [159905] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(6408), 1, - anon_sym_STAR, - ACTIONS(6410), 1, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4726), 1, anon_sym_RBRACE, - ACTIONS(6412), 1, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, + ACTIONS(6429), 1, anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, sym_number, sym_private_property_identifier, - ACTIONS(6420), 2, + ACTIONS(6431), 2, anon_sym_get, anon_sym_set, - STATE(3166), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [157984] = 5, + [159981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2124), 1, - sym__automatic_semicolon, - ACTIONS(2116), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2120), 14, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_PIPE, + ACTIONS(6441), 1, + anon_sym_extends, + ACTIONS(5305), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259913,15 +261664,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(2122), 23, + ACTIONS(5307), 25, + 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, @@ -259943,85 +261694,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [158036] = 26, + [160035] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, - anon_sym_in, - ACTIONS(6372), 1, - anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6384), 1, - anon_sym_AMP, - ACTIONS(6386), 1, - anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(6443), 1, + anon_sym_LT, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5284), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6388), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6374), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6382), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6392), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [158130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4881), 1, - sym__automatic_semicolon, - ACTIONS(1984), 15, + ACTIONS(5121), 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, @@ -260032,313 +261733,288 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 24, + ACTIONS(5123), 15, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [158180] = 26, + [160103] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4726), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, - anon_sym_in, - ACTIONS(6372), 1, - anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6384), 1, - anon_sym_AMP, - ACTIONS(6386), 1, - anon_sym_PIPE, - ACTIONS(6390), 1, - anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4949), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6419), 2, + anon_sym_get, + anon_sym_set, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(6380), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6388), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6368), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6374), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6382), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6392), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [158274] = 26, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [160175] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(6345), 1, anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6376), 1, + ACTIONS(6353), 1, anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, + ACTIONS(6371), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(4897), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, + ACTIONS(6357), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [158368] = 26, + [160269] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, - anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6384), 1, - anon_sym_AMP, - ACTIONS(6386), 1, - anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4983), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [158462] = 26, + ACTIONS(5123), 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, + [160347] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6376), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6446), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6380), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6426), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [158556] = 4, + [160443] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(5186), 1, anon_sym_EQ, - ACTIONS(3844), 15, + ACTIONS(6448), 1, + anon_sym_in, + ACTIONS(6451), 1, + anon_sym_of, + ACTIONS(5184), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -260350,10 +262026,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, + ACTIONS(5188), 24, + 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, @@ -260373,34 +262051,36 @@ 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, - [158606] = 4, + [160497] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6428), 1, - sym__automatic_semicolon, - ACTIONS(2062), 15, + ACTIONS(4899), 1, + anon_sym_LBRACK, + ACTIONS(4887), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 11, 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(2060), 24, + ACTIONS(3846), 23, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -260419,200 +262099,66 @@ 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, - [158656] = 22, + [160551] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, - anon_sym_LBRACK, ACTIONS(6408), 1, - anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6430), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3122), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [158742] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4748), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(4911), 3, + anon_sym_COMMA, anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_extends, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [158814] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4748), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6362), 1, - anon_sym_async, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2006), 22, sym__automatic_semicolon, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [158890] = 5, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [160605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2018), 1, - sym__automatic_semicolon, - ACTIONS(2010), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2014), 14, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(6406), 1, + anon_sym_of, + ACTIONS(6408), 1, + anon_sym_in, + ACTIONS(2002), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -260624,7 +262170,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2016), 23, + ACTIONS(2006), 24, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -260648,93 +262195,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [158942] = 18, + [160659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6318), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, + ACTIONS(4408), 1, + anon_sym_EQ, + ACTIONS(3842), 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(6320), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(3846), 25, + 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, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6336), 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(4911), 7, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [159020] = 4, + [160709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4447), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(4905), 1, + anon_sym_LBRACK, + ACTIONS(5224), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4908), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 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(3848), 25, - sym__automatic_semicolon, + ACTIONS(3846), 23, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -260753,84 +262289,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [159070] = 26, + [160763] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6316), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6322), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6324), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6330), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6338), 1, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6453), 1, + anon_sym_RBRACE, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5019), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6326), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6334), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6320), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6336), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [159164] = 5, + [160859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, - sym__automatic_semicolon, - ACTIONS(2064), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2068), 14, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(5996), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260839,15 +262372,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(2070), 23, + ACTIONS(5998), 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, @@ -260869,14 +262403,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [159216] = 4, + anon_sym_extends, + [160909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - sym_regex_flags, - ACTIONS(5200), 18, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_PIPE, + ACTIONS(6441), 1, + anon_sym_extends, + ACTIONS(5218), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -260884,19 +262422,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, - anon_sym_instanceof, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5202), 21, + ACTIONS(5220), 25, + 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, @@ -260912,406 +262448,433 @@ 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, - [159266] = 26, + [160963] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6008), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5121), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5123), 12, + sym__automatic_semicolon, + 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, - [159360] = 26, + [161037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(6146), 1, + anon_sym_LT, + STATE(3392), 1, + sym_type_arguments, + ACTIONS(4885), 14, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4887), 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, - ACTIONS(5664), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [161089] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(6013), 2, - anon_sym_COMMA, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6455), 1, anon_sym_RBRACE, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3150), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [161175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2002), 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, - ACTIONS(5644), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(2006), 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(5662), 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, - [159454] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [161225] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6384), 1, - anon_sym_AMP, - ACTIONS(6386), 1, - anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5019), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [159548] = 26, + ACTIONS(5123), 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, + [161305] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6386), 1, - anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5021), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [159642] = 27, + ACTIONS(5123), 6, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [161389] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6432), 1, - anon_sym_RBRACE, - STATE(5082), 1, + ACTIONS(6443), 1, + anon_sym_LT, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [159738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4521), 1, - anon_sym_EQ, - ACTIONS(3844), 14, - anon_sym_STAR, + ACTIONS(5121), 10, 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(3848), 25, + ACTIONS(5123), 12, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [159788] = 4, + [161461] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4431), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6443), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -261322,15 +262885,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 25, + ACTIONS(5123), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - 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, @@ -261344,163 +262902,102 @@ 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, - [159838] = 27, + [161527] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6434), 1, - anon_sym_SEMI, - ACTIONS(6436), 1, - sym__automatic_semicolon, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6380), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [159934] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6390), 1, - anon_sym_STAR_STAR, - ACTIONS(6438), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 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(4911), 15, + ACTIONS(5123), 4, 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_QMARK_QMARK, + ACTIONS(6330), 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, - [160002] = 6, + [161615] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_LT, - ACTIONS(6266), 1, - anon_sym_DOT, - STATE(3411), 1, - sym_type_arguments, - ACTIONS(4883), 14, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_PIPE, + ACTIONS(6441), 1, + anon_sym_extends, + ACTIONS(5936), 12, 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(3908), 23, + ACTIONS(5938), 25, + 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, @@ -261518,297 +263015,285 @@ 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, - [160056] = 5, + [161669] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - STATE(3366), 1, - sym_arguments, - ACTIONS(4901), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_AMP, + ACTIONS(5660), 1, anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6457), 1, + anon_sym_RBRACE, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4903), 23, - 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(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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, - [160108] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4748), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [160182] = 18, + [161765] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6372), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, + anon_sym_in, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6390), 1, + ACTIONS(6353), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_AMP_AMP, + ACTIONS(6361), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_PIPE, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + ACTIONS(6371), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5134), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6388), 2, + ACTIONS(6357), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6392), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 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, - [160260] = 27, + [161859] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6441), 1, - anon_sym_RBRACK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5132), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [160356] = 7, + [161953] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_LT, - ACTIONS(4885), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(6443), 1, - anon_sym_is, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(4883), 13, - anon_sym_STAR, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6310), 1, + anon_sym_LT, + ACTIONS(6314), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6316), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, anon_sym_AMP, + ACTIONS(6324), 1, anon_sym_PIPE, + ACTIONS(6328), 1, + anon_sym_STAR_STAR, + ACTIONS(6332), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5134), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6304), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6312), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 23, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6330), 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, - [160412] = 4, + [162047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4517), 1, + ACTIONS(4419), 1, anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261823,12 +263308,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 25, + ACTIONS(3846), 25, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -261847,109 +263333,129 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [160462] = 5, + [162097] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6264), 1, - anon_sym_LT, - STATE(3421), 1, - sym_type_arguments, - ACTIONS(4887), 14, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6349), 1, + anon_sym_LT, + ACTIONS(6353), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6355), 1, + anon_sym_AMP_AMP, + ACTIONS(6361), 1, anon_sym_AMP, + ACTIONS(6363), 1, anon_sym_PIPE, + ACTIONS(6367), 1, + anon_sym_STAR_STAR, + ACTIONS(6371), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5132), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6357), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6343), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6351), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 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(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6369), 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, - [160514] = 22, + [162191] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(6408), 1, + ACTIONS(6375), 1, anon_sym_STAR, - ACTIONS(6412), 1, + ACTIONS(6379), 1, anon_sym_async, - ACTIONS(6416), 1, + ACTIONS(6383), 1, anon_sym_static, - ACTIONS(6418), 1, + ACTIONS(6385), 1, anon_sym_readonly, - ACTIONS(6422), 1, + ACTIONS(6389), 1, anon_sym_declare, - ACTIONS(6424), 1, + ACTIONS(6391), 1, anon_sym_abstract, - ACTIONS(6445), 1, + ACTIONS(6459), 1, anon_sym_RBRACE, - STATE(3796), 1, + STATE(3773), 1, sym_method_definition, - STATE(3820), 1, + STATE(3819), 1, sym_accessibility_modifier, - ACTIONS(6414), 2, + ACTIONS(6381), 2, sym_number, sym_private_property_identifier, - ACTIONS(6420), 2, + ACTIONS(6387), 2, anon_sym_get, anon_sym_set, - STATE(3166), 2, + STATE(3239), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3904), 3, + STATE(3905), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5343), 4, + STATE(5385), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -261960,251 +263466,221 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [160600] = 27, + [162277] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6447), 1, - anon_sym_RBRACK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6357), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5123), 4, + anon_sym_as, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_extends, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [160696] = 4, + [162365] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2243), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6367), 1, + anon_sym_STAR_STAR, + ACTIONS(6401), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6343), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6359), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, 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(2245), 21, + ACTIONS(5123), 12, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [160746] = 6, + anon_sym_extends, + [162437] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_extends, - ACTIONS(5078), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5081), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, - 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(3848), 23, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(6347), 1, + anon_sym_in, + ACTIONS(6349), 1, + anon_sym_LT, + ACTIONS(6355), 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(6361), 1, + anon_sym_AMP, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [160800] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_extends, - ACTIONS(5068), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5071), 3, - anon_sym_GT, - anon_sym_AMP, + ACTIONS(6365), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(6343), 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, + ACTIONS(6351), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 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, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6369), 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, - [160854] = 10, + ACTIONS(5123), 6, + anon_sym_as, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [162521] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_extends, - ACTIONS(5078), 1, - anon_sym_LBRACK, - ACTIONS(6449), 1, - anon_sym_EQ, - ACTIONS(6454), 1, - anon_sym_RPAREN, - ACTIONS(6458), 1, - anon_sym_QMARK, - ACTIONS(5081), 2, + ACTIONS(6437), 1, anon_sym_AMP, + ACTIONS(6439), 1, anon_sym_PIPE, - ACTIONS(6451), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3844), 11, + ACTIONS(6441), 1, + anon_sym_extends, + ACTIONS(5269), 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(3848), 20, + ACTIONS(5271), 25, + 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, @@ -262223,432 +263699,251 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [160916] = 16, + [162575] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6372), 1, - anon_sym_LT, - ACTIONS(6390), 1, - anon_sym_STAR_STAR, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6388), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6368), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6382), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, + ACTIONS(5153), 1, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 12, - sym__automatic_semicolon, - 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, - [160990] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6479), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6487), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6461), 1, - anon_sym_RBRACK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5107), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161086] = 27, + [162669] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6479), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6487), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6463), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5109), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161182] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4736), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [161256] = 19, + [162763] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6370), 1, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6390), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6388), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, + ACTIONS(5121), 4, anon_sym_BANG, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6392), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 7, - sym__automatic_semicolon, + ACTIONS(5123), 7, anon_sym_as, - anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [161336] = 21, + anon_sym_extends, + [162843] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6370), 1, - anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6384), 1, - anon_sym_AMP, - ACTIONS(6390), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6388), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6368), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6374), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6382), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6392), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 6, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [161420] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6390), 1, - anon_sym_STAR_STAR, - ACTIONS(6438), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6382), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 10, + ACTIONS(5121), 8, anon_sym_BANG, anon_sym_in, 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(4911), 12, - sym__automatic_semicolon, + ACTIONS(5123), 12, anon_sym_as, - anon_sym_SEMI, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -262658,33 +263953,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [161492] = 12, + anon_sym_extends, + [162917] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6438), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + anon_sym_EQ, + ACTIONS(4917), 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, @@ -262695,10 +263975,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 16, - sym__automatic_semicolon, + ACTIONS(4921), 24, anon_sym_as, - anon_sym_SEMI, + 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, @@ -262712,82 +263995,168 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [161558] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [162967] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6349), 1, + anon_sym_LT, + ACTIONS(6367), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6365), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6343), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6351), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6359), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6369), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5123), 7, + anon_sym_as, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [163045] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6370), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(6378), 1, + ACTIONS(6469), 1, + anon_sym_QMARK, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6479), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - STATE(5014), 1, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(4945), 2, + ACTIONS(5111), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6380), 2, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4911), 4, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - ACTIONS(6392), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161646] = 4, + [163139] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6151), 1, - sym__automatic_semicolon, - ACTIONS(1984), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6367), 1, + anon_sym_STAR_STAR, + ACTIONS(6401), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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, @@ -262798,363 +264167,256 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 24, + ACTIONS(5123), 15, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [161696] = 27, + [163207] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, ACTIONS(5660), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE, ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, + ACTIONS(5723), 1, anon_sym_COMMA, - ACTIONS(6465), 1, - anon_sym_RBRACE, - STATE(5082), 1, + ACTIONS(6489), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161792] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4736), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6362), 1, - anon_sym_async, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [161868] = 26, + [163303] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(6376), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6479), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, + ACTIONS(6487), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5117), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4953), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161962] = 26, + [163397] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(6376), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6479), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, + ACTIONS(6487), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5119), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4961), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [162056] = 15, + [163491] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4736), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + ACTIONS(6491), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [162128] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2056), 14, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -263165,106 +264427,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 24, - sym__automatic_semicolon, + ACTIONS(5123), 15, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + 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, - [162178] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6467), 1, - anon_sym_RBRACK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [162274] = 4, + [163559] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4423), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(2121), 1, + sym__automatic_semicolon, + ACTIONS(2113), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2117), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263279,11 +264466,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 25, + ACTIONS(2119), 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, @@ -263303,246 +264490,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - [162324] = 27, + [163611] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6469), 1, - anon_sym_RBRACK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [162420] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6471), 1, - anon_sym_AMP, - ACTIONS(6473), 1, - anon_sym_PIPE, - ACTIONS(6475), 1, - anon_sym_extends, - ACTIONS(5348), 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(5350), 24, - sym__automatic_semicolon, + ACTIONS(5123), 7, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + 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, - [162474] = 22, + [163689] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(6408), 1, - anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6477), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3086), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [162560] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 1, - anon_sym_LT, - ACTIONS(5501), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(6479), 1, - anon_sym_is, - STATE(2493), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6465), 1, + anon_sym_LT, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4883), 13, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6481), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6461), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 8, 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(3908), 23, - sym__automatic_semicolon, + ACTIONS(5123), 12, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + 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, - [162616] = 4, + [163763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6268), 1, - anon_sym_is, - ACTIONS(4887), 15, + ACTIONS(6494), 1, + sym__automatic_semicolon, + ACTIONS(2295), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2299), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -263556,9 +264633,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 24, + ACTIONS(2301), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -263579,441 +264655,333 @@ 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, - [162666] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(6481), 1, - anon_sym_LT, - STATE(5014), 1, - sym_type_arguments, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 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(5227), 18, - 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, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [162730] = 27, + [163815] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6484), 1, - anon_sym_RBRACK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [162826] = 27, + ACTIONS(5123), 7, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [163895] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6486), 1, - anon_sym_RPAREN, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [162922] = 27, + ACTIONS(5123), 6, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [163979] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, - anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, - ACTIONS(5646), 1, - anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, - anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6488), 1, - anon_sym_RBRACK, - STATE(5082), 1, + ACTIONS(6491), 1, + anon_sym_LT, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [163018] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6490), 1, - anon_sym_AMP, - ACTIONS(6492), 1, - anon_sym_PIPE, - ACTIONS(6494), 1, - anon_sym_extends, - ACTIONS(5038), 12, - anon_sym_STAR, + ACTIONS(5121), 10, 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(5040), 25, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5123), 12, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACE, + 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, - [163072] = 4, + [164051] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2213), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2217), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, + ACTIONS(6349), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6353), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6355), 1, + anon_sym_AMP_AMP, + ACTIONS(6361), 1, anon_sym_AMP, + ACTIONS(6363), 1, anon_sym_PIPE, + ACTIONS(6367), 1, + anon_sym_STAR_STAR, + ACTIONS(6371), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5119), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6357), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6343), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6351), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 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, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6369), 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, - [163122] = 27, + [164145] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6353), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6371), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6496), 1, - anon_sym_RBRACE, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5117), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6357), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [163218] = 5, + [164239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2221), 1, - sym__automatic_semicolon, - ACTIONS(2213), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2217), 14, + ACTIONS(5745), 1, + anon_sym_LPAREN, + STATE(3418), 1, + sym_arguments, + ACTIONS(4889), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -264027,11 +264995,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 23, + ACTIONS(4891), 23, anon_sym_as, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -264051,17 +265017,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [163270] = 4, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [164291] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6221), 1, - anon_sym_is, - ACTIONS(4887), 15, + ACTIONS(6146), 1, + anon_sym_LT, + ACTIONS(6238), 1, + anon_sym_DOT, + STATE(3391), 1, + sym_type_arguments, + ACTIONS(4881), 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, @@ -264072,13 +265043,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 24, + ACTIONS(3916), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -264097,18 +265066,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [163320] = 6, + anon_sym_LBRACE_PIPE, + [164345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4087), 1, - anon_sym_EQ, - ACTIONS(4663), 1, - anon_sym_in, - ACTIONS(4666), 1, - anon_sym_of, - ACTIONS(3844), 13, + ACTIONS(2051), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2055), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -264120,7 +265088,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, + ACTIONS(2057), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -264145,62 +265113,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [163374] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2052), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2056), 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(2058), 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, - [163424] = 4, + [164395] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4384), 1, + ACTIONS(4106), 1, anon_sym_EQ, - ACTIONS(3844), 15, + ACTIONS(4651), 1, + anon_sym_in, + ACTIONS(4654), 1, + anon_sym_of, + ACTIONS(3842), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -264212,10 +265136,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, + ACTIONS(3846), 24, + 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, @@ -264235,106 +265161,38 @@ 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, - [163474] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(6408), 1, - anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6498), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3166), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [163560] = 16, + [164449] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4729), 1, + ACTIONS(4735), 1, anon_sym_RBRACE, - ACTIONS(6356), 1, + ACTIONS(6411), 1, anon_sym_STAR, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6360), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - STATE(5183), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, + ACTIONS(6417), 2, sym_number, sym_private_property_identifier, - ACTIONS(6366), 2, + ACTIONS(6419), 2, anon_sym_get, anon_sym_set, - STATE(3945), 3, + STATE(4484), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -264342,10 +265200,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -264359,238 +265218,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [163634] = 22, + [164521] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(6408), 1, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4735), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, anon_sym_STAR, - ACTIONS(6412), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, + ACTIONS(6429), 1, anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6500), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6427), 2, sym_number, sym_private_property_identifier, - ACTIONS(6420), 2, + ACTIONS(6431), 2, anon_sym_get, anon_sym_set, - STATE(3166), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [163720] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6505), 1, - anon_sym_STAR, - ACTIONS(6508), 1, - anon_sym_RBRACE, - ACTIONS(6510), 1, - anon_sym_LBRACK, - ACTIONS(6513), 1, - anon_sym_async, - ACTIONS(6516), 1, - anon_sym_DASH, - ACTIONS(6519), 1, - anon_sym_DQUOTE, - ACTIONS(6522), 1, - anon_sym_SQUOTE, - ACTIONS(6528), 1, - anon_sym_AT, - ACTIONS(6531), 1, anon_sym_static, - ACTIONS(6534), 1, - anon_sym_readonly, - ACTIONS(6540), 1, anon_sym_declare, - ACTIONS(6546), 1, - anon_sym_abstract, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6525), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6537), 2, - anon_sym_get, - anon_sym_set, - STATE(3166), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(6543), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(6502), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [163806] = 26, + [164597] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, - anon_sym_as, - ACTIONS(6316), 1, - anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(6491), 1, anon_sym_LT, - ACTIONS(6322), 1, - anon_sym_QMARK, - ACTIONS(6324), 1, - anon_sym_AMP_AMP, - ACTIONS(6330), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE, - ACTIONS(6338), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5017), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6326), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(5121), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6320), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(5123), 16, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6336), 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, - [163900] = 17, + [164663] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4729), 1, + ACTIONS(4735), 1, anon_sym_RBRACE, - ACTIONS(6356), 1, + ACTIONS(6411), 1, anon_sym_STAR, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6362), 1, + ACTIONS(6425), 1, anon_sym_async, - ACTIONS(6396), 1, + ACTIONS(6433), 1, anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - STATE(5183), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, + ACTIONS(6427), 2, sym_number, sym_private_property_identifier, - ACTIONS(6366), 2, + ACTIONS(6431), 2, anon_sym_get, anon_sym_set, - STATE(3945), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -264598,12 +265372,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -264614,71 +265389,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [163976] = 12, + [164737] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6307), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6496), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 13, + ACTIONS(5642), 3, 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, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 16, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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_extends, - [164042] = 4, + [164831] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5533), 1, - sym_regex_flags, - ACTIONS(5200), 16, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6498), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3195), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [164917] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6500), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 13, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -264689,16 +265555,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(5202), 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, + ACTIONS(5090), 18, + anon_sym_as, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -264711,20 +265570,21 @@ 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, - [164092] = 5, + anon_sym_extends, + [164981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 1, + ACTIONS(6503), 1, sym__automatic_semicolon, - ACTIONS(2180), 4, + ACTIONS(2073), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2184), 14, + ACTIONS(2077), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264739,7 +265599,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 21, + ACTIONS(2079), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -264761,162 +265621,218 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [164144] = 4, + [165033] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4388), 1, - anon_sym_EQ, - ACTIONS(3844), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, anon_sym_AMP, + ACTIONS(5660), 1, anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6505), 1, + anon_sym_RBRACK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 25, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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, - [164194] = 5, + [165129] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6551), 1, - sym__automatic_semicolon, - ACTIONS(2138), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2142), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6463), 1, anon_sym_in, + ACTIONS(6465), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6471), 1, + anon_sym_AMP_AMP, + ACTIONS(6477), 1, anon_sym_AMP, + ACTIONS(6479), 1, anon_sym_PIPE, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6467), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2144), 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, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5123), 4, + anon_sym_as, + anon_sym_RBRACE, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + ACTIONS(6485), 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, - [164246] = 12, + [165217] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5666), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, + anon_sym_in, + ACTIONS(6465), 1, anon_sym_LT, - STATE(5014), 1, + ACTIONS(6469), 1, + anon_sym_QMARK, + ACTIONS(6471), 1, + anon_sym_AMP_AMP, + ACTIONS(6477), 1, + anon_sym_AMP, + ACTIONS(6479), 1, + anon_sym_PIPE, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5132), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2443), 2, + ACTIONS(6473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(6461), 3, 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, + ACTIONS(6467), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 16, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6485), 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, - [164312] = 5, + [165311] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2287), 1, + ACTIONS(2203), 5, sym__automatic_semicolon, - ACTIONS(2279), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2283), 14, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2207), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264931,11 +265847,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2285), 23, + ACTIONS(2209), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -264955,197 +265869,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [164364] = 15, + [165361] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4754), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [164436] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4754), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6362), 1, - anon_sym_async, - ACTIONS(6396), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, + anon_sym_in, + ACTIONS(6465), 1, anon_sym_LT, + ACTIONS(6469), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [164512] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4754), 1, + ACTIONS(6471), 1, + anon_sym_AMP_AMP, + ACTIONS(6477), 1, + anon_sym_AMP, + ACTIONS(6479), 1, + anon_sym_PIPE, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5134), 2, anon_sym_RBRACE, - ACTIONS(6356), 1, + anon_sym_RBRACK, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6461), 3, anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [164586] = 7, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6467), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [165455] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(4919), 1, anon_sym_EQ, - ACTIONS(5360), 1, - anon_sym_extends, - ACTIONS(5052), 2, - anon_sym_COMMA, + ACTIONS(4923), 1, anon_sym_LBRACK, - ACTIONS(5055), 3, + ACTIONS(5362), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4926), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5046), 12, + ACTIONS(4917), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -265156,9 +265963,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 21, + ACTIONS(4921), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265177,110 +265986,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [164642] = 7, + [165511] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(2956), 1, - anon_sym_extends, - ACTIONS(5058), 2, - anon_sym_COMMA, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 12, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, anon_sym_in, + ACTIONS(6310), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(6314), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6316), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + ACTIONS(6324), 1, + anon_sym_PIPE, + ACTIONS(6328), 1, + anon_sym_STAR_STAR, + ACTIONS(6332), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(4897), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6318), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6304), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6312), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 21, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6330), 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, - [164698] = 22, + [165605] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(6408), 1, + ACTIONS(6375), 1, anon_sym_STAR, - ACTIONS(6412), 1, + ACTIONS(6379), 1, anon_sym_async, - ACTIONS(6416), 1, + ACTIONS(6383), 1, anon_sym_static, - ACTIONS(6418), 1, + ACTIONS(6385), 1, anon_sym_readonly, - ACTIONS(6422), 1, + ACTIONS(6389), 1, anon_sym_declare, - ACTIONS(6424), 1, + ACTIONS(6391), 1, anon_sym_abstract, - ACTIONS(6553), 1, + ACTIONS(6507), 1, anon_sym_RBRACE, - STATE(3796), 1, + STATE(3773), 1, sym_method_definition, - STATE(3820), 1, + STATE(3819), 1, sym_accessibility_modifier, - ACTIONS(6414), 2, + ACTIONS(6381), 2, sym_number, sym_private_property_identifier, - ACTIONS(6420), 2, + ACTIONS(6387), 2, anon_sym_get, anon_sym_set, - STATE(3165), 2, + STATE(3239), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3904), 3, + STATE(3905), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5343), 4, + STATE(5385), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -265291,173 +266118,430 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [164784] = 15, + [165691] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4729), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, + anon_sym_in, + ACTIONS(6465), 1, anon_sym_LT, + ACTIONS(6469), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [164856] = 6, + ACTIONS(6471), 1, + anon_sym_AMP_AMP, + ACTIONS(6477), 1, + anon_sym_AMP, + ACTIONS(6479), 1, + anon_sym_PIPE, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(4897), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6467), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [165785] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5052), 3, - anon_sym_COMMA, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, + anon_sym_in, + ACTIONS(6310), 1, + anon_sym_LT, + ACTIONS(6314), 1, + anon_sym_QMARK, + ACTIONS(6316), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, anon_sym_AMP, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(5046), 12, + ACTIONS(6328), 1, + anon_sym_STAR_STAR, + ACTIONS(6332), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5025), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6318), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6326), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6304), 3, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6312), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6320), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6330), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [165879] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, anon_sym_in, + ACTIONS(6310), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(6314), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6316), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, + anon_sym_AMP, + ACTIONS(6324), 1, + anon_sym_PIPE, + ACTIONS(6328), 1, + anon_sym_STAR_STAR, + ACTIONS(6332), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5021), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6318), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6304), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6312), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 21, - anon_sym_as, + ACTIONS(6320), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6330), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [165973] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, + anon_sym_in, + ACTIONS(6465), 1, + anon_sym_LT, + ACTIONS(6469), 1, + anon_sym_QMARK, + ACTIONS(6471), 1, anon_sym_AMP_AMP, + ACTIONS(6477), 1, + anon_sym_AMP, + ACTIONS(6479), 1, + anon_sym_PIPE, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5025), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6467), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6485), 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, - [164910] = 4, + [166067] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_AMP, - ACTIONS(5960), 13, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, anon_sym_in, + ACTIONS(6465), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6469), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6471), 1, + anon_sym_AMP_AMP, + ACTIONS(6477), 1, + anon_sym_AMP, + ACTIONS(6479), 1, anon_sym_PIPE, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5021), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6467), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5962), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(6475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6485), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [166161] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4829), 1, anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, + anon_sym_in, + ACTIONS(6465), 1, + anon_sym_LT, + ACTIONS(6469), 1, + anon_sym_QMARK, + ACTIONS(6471), 1, anon_sym_AMP_AMP, + ACTIONS(6477), 1, + anon_sym_AMP, + ACTIONS(6479), 1, + anon_sym_PIPE, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5202), 2, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6467), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6485), 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, - [164960] = 6, + [166255] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(2004), 1, anon_sym_EQ, - ACTIONS(5058), 3, - anon_sym_COMMA, + ACTIONS(4911), 1, anon_sym_LBRACK, + ACTIONS(2954), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(5061), 3, + ACTIONS(4914), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1986), 12, + ACTIONS(2002), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -265468,9 +266552,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 21, + ACTIONS(2006), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265489,17 +266575,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [165014] = 4, + [166311] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2126), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2130), 14, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_PIPE, + ACTIONS(6057), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265508,15 +266591,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(2132), 21, + ACTIONS(6059), 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, @@ -265536,87 +266621,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [165064] = 26, + anon_sym_extends, + [166363] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6316), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6322), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6324), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6330), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6338), 1, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6509), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4949), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6326), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6334), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6320), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6336), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [165158] = 5, + [166459] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2247), 1, - sym__automatic_semicolon, - ACTIONS(2239), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2243), 14, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6511), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -265627,14 +266728,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2245), 23, + ACTIONS(5043), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -265648,398 +266744,183 @@ 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, - [165210] = 26, + anon_sym_extends, + [166525] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, - anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6511), 1, anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6384), 1, - anon_sym_AMP, - ACTIONS(6386), 1, - anon_sym_PIPE, - ACTIONS(6390), 1, - anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4963), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6388), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(5041), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6374), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(5043), 16, + anon_sym_as, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6392), 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, - [165304] = 16, + anon_sym_extends, + [166591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4739), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, + ACTIONS(6334), 1, anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4917), 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(4921), 25, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [165378] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4739), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6362), 1, - anon_sym_async, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [165454] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, anon_sym_DOT, - ACTIONS(4927), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, - anon_sym_in, - ACTIONS(6372), 1, - anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, - anon_sym_AMP, - ACTIONS(6386), 1, - anon_sym_PIPE, - ACTIONS(6390), 1, - anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4969), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6388), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6368), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6374), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6382), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6392), 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, - [165548] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [166641] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(6345), 1, anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6376), 1, + ACTIONS(6353), 1, anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, + ACTIONS(6371), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5111), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4971), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, + ACTIONS(6357), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [165642] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4739), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [165714] = 4, + [166735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 5, + ACTIONS(6136), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2120), 14, + ACTIONS(2000), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -266053,8 +266934,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2122), 21, + ACTIONS(1998), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -266075,12 +266957,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [165764] = 4, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [166785] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4505), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(2161), 1, + sym__automatic_semicolon, + ACTIONS(2153), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2157), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266095,8 +266982,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 25, - sym__automatic_semicolon, + ACTIONS(2159), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -266120,227 +267006,355 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [165814] = 22, + [166837] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(6408), 1, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6514), 1, + anon_sym_RBRACK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6555), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3204), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [165900] = 16, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [166933] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6318), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6516), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6334), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6328), 3, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 8, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [167029] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6518), 1, + sym__automatic_semicolon, + ACTIONS(2113), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2117), 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(4911), 12, + ACTIONS(2119), 21, anon_sym_as, - anon_sym_EQ_GT, + anon_sym_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_extends, - [165974] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [167081] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6316), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6322), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6324), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6330), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6338), 1, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4973), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6326), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6334), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + ACTIONS(6520), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6320), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6336), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [166068] = 6, + [167175] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_EQ, - ACTIONS(5052), 3, - anon_sym_COMMA, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, + anon_sym_in, + ACTIONS(6310), 1, + anon_sym_LT, + ACTIONS(6314), 1, + anon_sym_QMARK, + ACTIONS(6316), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, anon_sym_AMP, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(6328), 1, + anon_sym_STAR_STAR, + ACTIONS(6332), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6318), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6326), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6522), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6304), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6312), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6320), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6330), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [167269] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2153), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2157), 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(5050), 22, - sym__automatic_semicolon, + ACTIONS(2159), 21, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -266359,18 +267373,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [166122] = 6, + [167319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, - anon_sym_AMP, - ACTIONS(6473), 1, - anon_sym_PIPE, - ACTIONS(6475), 1, - anon_sym_extends, - ACTIONS(5956), 13, + ACTIONS(2229), 1, + sym__automatic_semicolon, + ACTIONS(2221), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2225), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -266378,12 +267390,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(5958), 24, - sym__automatic_semicolon, + ACTIONS(2227), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -266407,36 +267420,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [166176] = 6, + [167371] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 1, - anon_sym_EQ, - ACTIONS(5058), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(2303), 1, + sym__automatic_semicolon, + ACTIONS(2295), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2299), 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(1990), 22, - sym__automatic_semicolon, + ACTIONS(2301), 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, @@ -266455,121 +267467,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [166230] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6316), 1, - anon_sym_in, - ACTIONS(6318), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6320), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6328), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6336), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 7, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [166310] = 22, + [167423] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(3652), 1, + ACTIONS(3650), 1, anon_sym_DASH, - ACTIONS(4768), 1, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(6408), 1, + ACTIONS(6375), 1, anon_sym_STAR, - ACTIONS(6412), 1, + ACTIONS(6379), 1, anon_sym_async, - ACTIONS(6416), 1, + ACTIONS(6383), 1, anon_sym_static, - ACTIONS(6418), 1, + ACTIONS(6385), 1, anon_sym_readonly, - ACTIONS(6422), 1, + ACTIONS(6389), 1, anon_sym_declare, - ACTIONS(6424), 1, + ACTIONS(6391), 1, anon_sym_abstract, - ACTIONS(6563), 1, + ACTIONS(6524), 1, anon_sym_RBRACE, - STATE(3796), 1, + STATE(3773), 1, sym_method_definition, - STATE(3820), 1, + STATE(3819), 1, sym_accessibility_modifier, - ACTIONS(6414), 2, + ACTIONS(6381), 2, sym_number, sym_private_property_identifier, - ACTIONS(6420), 2, + ACTIONS(6387), 2, anon_sym_get, anon_sym_set, - STATE(3166), 2, + STATE(3239), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4780), 3, + ACTIONS(4766), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3904), 3, + STATE(3905), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5343), 4, + STATE(5385), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4760), 10, + ACTIONS(4750), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -266580,203 +267531,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [166396] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6565), 1, - anon_sym_LBRACE, - ACTIONS(6567), 1, - anon_sym_DOT, - STATE(3477), 1, - sym_statement_block, - ACTIONS(2000), 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(1998), 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, - [166450] = 27, + [167509] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(5642), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(5646), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(5656), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(5660), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(5664), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6569), 1, - anon_sym_RBRACK, - STATE(5082), 1, + ACTIONS(6526), 1, + anon_sym_SEMI, + ACTIONS(6528), 1, + sym__automatic_semicolon, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [166546] = 7, + [167605] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(4412), 1, anon_sym_EQ, - ACTIONS(5360), 1, - anon_sym_COMMA, - ACTIONS(5052), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(3842), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5050), 22, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [166602] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(2956), 1, - anon_sym_COMMA, - ACTIONS(5058), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1986), 11, - 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(1990), 22, - sym__automatic_semicolon, + ACTIONS(3846), 25, anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -266795,14 +267645,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [166658] = 5, + anon_sym_extends, + [167655] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6565), 1, - anon_sym_LBRACE, - STATE(3477), 1, - sym_statement_block, - ACTIONS(2000), 14, + ACTIONS(6448), 1, + anon_sym_EQ, + ACTIONS(5184), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266817,10 +267666,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1998), 24, + ACTIONS(5188), 25, + 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, @@ -266841,15 +267692,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [166710] = 4, + [167705] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, + ACTIONS(4919), 1, anon_sym_EQ, - ACTIONS(5164), 15, + ACTIONS(4923), 1, + anon_sym_LBRACK, + ACTIONS(5362), 1, + anon_sym_extends, + ACTIONS(6421), 1, + anon_sym_COLON, + ACTIONS(4926), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6093), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4917), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -266857,17 +267718,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(5168), 24, + ACTIONS(4921), 20, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -266886,60 +267743,190 @@ 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, - [166760] = 4, + [167765] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 5, - sym__automatic_semicolon, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, anon_sym_COMMA, + ACTIONS(4732), 1, anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6419), 2, + anon_sym_get, + anon_sym_set, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2283), 14, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [167837] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4732), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6429), 1, + anon_sym_readonly, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + 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(2285), 21, - anon_sym_as, - anon_sym_LPAREN, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [167913] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4732), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6433), 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, - [166810] = 4, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [167987] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, + ACTIONS(6530), 1, anon_sym_AMP, - ACTIONS(5960), 14, + ACTIONS(6532), 1, + anon_sym_PIPE, + ACTIONS(6534), 1, + anon_sym_extends, + ACTIONS(5803), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -266949,12 +267936,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5962), 25, + ACTIONS(5805), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -266979,13 +267965,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [166860] = 4, + [168041] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5084), 1, - sym__automatic_semicolon, - ACTIONS(1984), 15, + ACTIONS(6530), 1, + anon_sym_AMP, + ACTIONS(5797), 14, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -266995,13 +267980,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(1982), 24, + ACTIONS(5799), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -267026,268 +268011,389 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [166910] = 21, + [168091] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6316), 1, - anon_sym_in, - ACTIONS(6318), 1, - anon_sym_LT, - ACTIONS(6324), 1, - anon_sym_AMP_AMP, - ACTIONS(6330), 1, - anon_sym_AMP, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6334), 2, - anon_sym_PLUS, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6536), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3230), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [168177] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6312), 3, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6320), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6328), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6336), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 6, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [166994] = 27, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6538), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3239), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [168263] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(6345), 1, anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6376), 1, + ACTIONS(6353), 1, anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, + ACTIONS(6371), 1, anon_sym_QMARK_QMARK, - ACTIONS(6571), 1, - anon_sym_SEMI, - ACTIONS(6573), 1, - sym__automatic_semicolon, - STATE(5014), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5109), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6380), 2, + ACTIONS(6357), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2443), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [167090] = 15, + [168357] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6307), 1, - anon_sym_LT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(6439), 1, + anon_sym_PIPE, + ACTIONS(6441), 1, + anon_sym_extends, + ACTIONS(5803), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6328), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 10, 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(4911), 12, + ACTIONS(5805), 25, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_EQ_GT, + 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, - anon_sym_extends, - [167162] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [168411] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6540), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3219), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [168497] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6316), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6324), 1, + ACTIONS(6353), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(6330), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(6363), 1, anon_sym_PIPE, - STATE(5082), 1, + ACTIONS(6367), 1, + anon_sym_STAR_STAR, + ACTIONS(6371), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, + ACTIONS(5107), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6326), 2, + ACTIONS(6357), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6334), 2, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6320), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4911), 4, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(6336), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [167250] = 4, + [168591] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(1986), 15, + ACTIONS(6437), 1, + anon_sym_AMP, + ACTIONS(5797), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -267295,16 +268401,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(1990), 24, + ACTIONS(5799), 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, @@ -267325,152 +268433,261 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [167300] = 27, + [168641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, - anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(2233), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2237), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5677), 1, - anon_sym_COMMA, - ACTIONS(6575), 1, - anon_sym_RPAREN, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(2239), 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(5662), 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, - [167396] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [168691] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(4985), 1, + ACTIONS(5153), 1, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(5642), 1, - anon_sym_LT, ACTIONS(5646), 1, + anon_sym_LT, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(5648), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(5654), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(5656), 1, - anon_sym_PIPE, ACTIONS(5660), 1, - anon_sym_STAR_STAR, + anon_sym_PIPE, ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6542), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5650), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5658), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6577), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(5638), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5644), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5662), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [167490] = 4, + [168787] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4741), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(5046), 15, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6419), 2, + anon_sym_get, + anon_sym_set, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [168859] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6547), 1, anon_sym_STAR, + ACTIONS(6550), 1, + anon_sym_RBRACE, + ACTIONS(6552), 1, + anon_sym_LBRACK, + ACTIONS(6555), 1, + anon_sym_async, + ACTIONS(6558), 1, + anon_sym_DASH, + ACTIONS(6561), 1, + anon_sym_DQUOTE, + ACTIONS(6564), 1, + anon_sym_SQUOTE, + ACTIONS(6570), 1, + anon_sym_AT, + ACTIONS(6573), 1, + anon_sym_static, + ACTIONS(6576), 1, + anon_sym_readonly, + ACTIONS(6582), 1, + anon_sym_declare, + ACTIONS(6588), 1, + anon_sym_abstract, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6567), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6579), 2, + anon_sym_get, + anon_sym_set, + STATE(3239), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(6585), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(6544), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [168945] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5430), 1, + anon_sym_DOT, + ACTIONS(5734), 1, + anon_sym_QMARK_DOT, + ACTIONS(4987), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4989), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2055), 12, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -267478,19 +268695,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(5050), 24, + ACTIONS(2057), 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, @@ -267507,148 +268718,321 @@ 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, - [167540] = 6, + [169001] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_AMP, - ACTIONS(6492), 1, - anon_sym_PIPE, - ACTIONS(6494), 1, - anon_sym_extends, - ACTIONS(5956), 12, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4744), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6419), 2, + anon_sym_get, + anon_sym_set, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5958), 25, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [169073] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4744), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6429), 1, + anon_sym_readonly, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [169149] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4744), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6433), 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, - [167594] = 26, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [169223] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4741), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6429), 1, + anon_sym_readonly, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [169299] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6316), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6322), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6324), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6330), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6338), 1, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6591), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4953), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6326), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6334), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6320), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6336), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [167688] = 11, + [169395] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6579), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 13, + ACTIONS(2181), 1, + sym__automatic_semicolon, + ACTIONS(2173), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2177), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -267659,10 +269043,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5227), 18, + ACTIONS(2179), 23, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -267678,92 +269066,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [167752] = 26, + anon_sym_BQUOTE, + [169447] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6593), 1, + anon_sym_RPAREN, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(6594), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [167846] = 9, + [169543] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(2956), 1, - anon_sym_extends, - ACTIONS(5058), 1, - anon_sym_LBRACK, - ACTIONS(6610), 1, - anon_sym_COLON, - ACTIONS(5061), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6075), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1986), 12, + ACTIONS(6276), 1, + anon_sym_is, + ACTIONS(4885), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -267772,13 +269150,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(1990), 20, + ACTIONS(4887), 25, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -267797,93 +269181,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [167906] = 26, + anon_sym_extends, + [169593] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4741), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6433), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [169667] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5151), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(5646), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(5650), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(5652), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(5658), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(5660), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(5664), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(5668), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6595), 1, + anon_sym_COLON, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5284), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(6594), 2, + ACTIONS(5654), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(5648), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(5666), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [168000] = 9, + [169763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5052), 1, - anon_sym_LBRACK, - ACTIONS(5360), 1, - anon_sym_extends, - ACTIONS(6612), 1, - anon_sym_COLON, - ACTIONS(5055), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6071), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5046), 12, + ACTIONS(6225), 1, + anon_sym_is, + ACTIONS(4885), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -267891,13 +269324,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(5050), 20, + ACTIONS(4887), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -267916,33 +269354,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168060] = 12, + anon_sym_extends, + [169813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6614), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(2036), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2040), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -267953,10 +269379,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 16, + ACTIONS(2042), 21, anon_sym_as, - anon_sym_RBRACE, - 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, @@ -267970,30 +269398,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [168126] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [169863] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6614), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(4883), 1, + anon_sym_DOT, + ACTIONS(6597), 1, + anon_sym_is, + STATE(2354), 1, sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(4881), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268007,10 +269426,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5119), 16, + ACTIONS(3916), 23, anon_sym_as, anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -268024,83 +269446,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [168192] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, - anon_sym_as, - ACTIONS(6316), 1, - anon_sym_in, - ACTIONS(6318), 1, - anon_sym_LT, - ACTIONS(6322), 1, - anon_sym_QMARK, - ACTIONS(6324), 1, - anon_sym_AMP_AMP, - ACTIONS(6330), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE, - ACTIONS(6338), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4961), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(5015), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6326), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6320), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6328), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6336), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [168286] = 5, + anon_sym_BQUOTE, + anon_sym_extends, + [169919] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2271), 1, + ACTIONS(2201), 1, sym__automatic_semicolon, - ACTIONS(2263), 2, + ACTIONS(2193), 2, anon_sym_else, anon_sym_while, - ACTIONS(2267), 14, + ACTIONS(2197), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268115,7 +269473,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2269), 23, + ACTIONS(2199), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -268139,39 +269497,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168338] = 7, + [169971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5398), 1, + ACTIONS(4961), 1, + anon_sym_LT, + ACTIONS(5372), 1, anon_sym_DOT, - ACTIONS(5725), 1, - anon_sym_QMARK_DOT, - ACTIONS(5194), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5196), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2056), 12, + ACTIONS(6599), 1, + anon_sym_is, + STATE(2602), 1, + sym_type_arguments, + ACTIONS(4881), 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(2058), 18, + ACTIONS(3916), 23, + sym__automatic_semicolon, anon_sym_as, 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, @@ -268188,14 +269545,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168394] = 4, + anon_sym_extends, + [170027] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4451), 1, - anon_sym_EQ, - ACTIONS(3844), 15, + ACTIONS(2171), 1, + sym__automatic_semicolon, + ACTIONS(2163), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2167), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -268209,10 +269569,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, + ACTIONS(2169), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -268232,14 +269593,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, - [168444] = 4, + [170079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6172), 1, - anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(4533), 1, + anon_sym_EQ, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268254,12 +269613,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 25, + ACTIONS(3846), 25, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -268280,17 +269639,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [168494] = 5, + [170129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6617), 1, + ACTIONS(2173), 5, sym__automatic_semicolon, - ACTIONS(2010), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2014), 14, + ACTIONS(2177), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268305,7 +269663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2016), 21, + ACTIONS(2179), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -268327,73 +269685,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168546] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4757), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [168618] = 6, + [170179] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, + ACTIONS(6530), 1, anon_sym_AMP, - ACTIONS(6473), 1, + ACTIONS(6532), 1, anon_sym_PIPE, - ACTIONS(6475), 1, + ACTIONS(6534), 1, anon_sym_extends, - ACTIONS(5796), 13, + ACTIONS(5936), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -268407,7 +269708,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5798), 24, + ACTIONS(5938), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -268432,17 +269733,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168672] = 4, + [170233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2068), 14, + ACTIONS(3844), 1, + anon_sym_EQ, + ACTIONS(3842), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -268456,8 +269754,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2070), 21, + ACTIONS(3846), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -268478,154 +269777,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168722] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4757), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6362), 1, - anon_sym_async, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [168798] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4757), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [168872] = 7, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [170283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(5058), 1, - anon_sym_LBRACK, - ACTIONS(2956), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(6141), 1, + anon_sym_is, + ACTIONS(4885), 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(1990), 22, - sym__automatic_semicolon, + ACTIONS(4887), 25, 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, @@ -268644,16 +269823,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168928] = 4, + anon_sym_implements, + anon_sym_extends, + [170333] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2257), 14, + ACTIONS(6408), 1, + anon_sym_EQ, + ACTIONS(2002), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268668,9 +269845,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2259), 21, + ACTIONS(2006), 25, + 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, @@ -268690,20 +269870,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168978] = 4, + anon_sym_extends, + [170383] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2229), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6601), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -268714,12 +269908,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2231), 21, + ACTIONS(5043), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -268733,203 +269925,170 @@ 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, - [169028] = 7, + [170449] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5052), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5360), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, - anon_sym_STAR, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6604), 1, + anon_sym_RPAREN, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5050), 22, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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, - [169084] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(6408), 1, - anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6619), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3163), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [169170] = 26, + [170545] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4919), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4925), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4927), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(4955), 1, + ACTIONS(5058), 1, anon_sym_BANG, - ACTIONS(6228), 1, + ACTIONS(6194), 1, anon_sym_as, - ACTIONS(6370), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6372), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6376), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(6378), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6384), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6386), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6390), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6394), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - STATE(5014), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4945), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6380), 2, + ACTIONS(5202), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6388), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6621), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2443), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6368), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6374), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6382), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6392), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [169264] = 5, + [170639] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2261), 1, - sym__automatic_semicolon, - ACTIONS(2253), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2257), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(6601), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -268940,14 +270099,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2259), 23, + ACTIONS(5043), 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -268961,19 +270116,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, - [169316] = 5, + [170705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2233), 1, + ACTIONS(4871), 1, sym__automatic_semicolon, - ACTIONS(2225), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2229), 14, + ACTIONS(2000), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -268987,11 +270137,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2231), 23, + ACTIONS(1998), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -269011,194 +270161,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [169368] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(6408), 1, - anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6623), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3251), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [169454] = 22, + anon_sym_extends, + [170755] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(6408), 1, - anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6625), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3166), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [169540] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(6560), 1, - anon_sym_in, - ACTIONS(6610), 1, - anon_sym_of, - ACTIONS(1986), 13, - anon_sym_STAR, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5058), 1, anon_sym_BANG, + ACTIONS(6194), 1, + anon_sym_as, + ACTIONS(6306), 1, + anon_sym_in, + ACTIONS(6310), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6314), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6316), 1, + anon_sym_AMP_AMP, + ACTIONS(6322), 1, anon_sym_AMP, + ACTIONS(6324), 1, anon_sym_PIPE, + ACTIONS(6328), 1, + anon_sym_STAR_STAR, + ACTIONS(6332), 1, + anon_sym_QMARK_QMARK, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5050), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5056), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(6304), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6312), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 24, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6330), 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, - [169594] = 6, + [170849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym_EQ, - ACTIONS(6627), 1, - anon_sym_in, - ACTIONS(6630), 1, - anon_sym_of, - ACTIONS(5164), 13, + ACTIONS(2183), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2187), 14, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -269210,12 +270254,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 24, - sym__automatic_semicolon, + ACTIONS(2189), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -269235,113 +270276,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [169648] = 5, + [170899] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, - anon_sym_AMP, - ACTIONS(6473), 1, - anon_sym_PIPE, - ACTIONS(5893), 13, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5991), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5895), 25, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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, - [169700] = 6, + [170993] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_AMP, - ACTIONS(6492), 1, - anon_sym_PIPE, - ACTIONS(6494), 1, - anon_sym_extends, - ACTIONS(5348), 12, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5644), 1, anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5650), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6018), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5642), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5648), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 25, - 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, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5666), 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, - [169754] = 6, + [171087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, - anon_sym_AMP, - ACTIONS(6473), 1, - anon_sym_PIPE, - ACTIONS(6475), 1, - anon_sym_extends, - ACTIONS(5148), 13, + ACTIONS(6606), 1, + sym__automatic_semicolon, + ACTIONS(2022), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -269349,16 +270427,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(5150), 24, - sym__automatic_semicolon, + ACTIONS(2020), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -269378,13 +270456,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [169808] = 4, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [171137] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6161), 1, - anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(6530), 1, + anon_sym_AMP, + ACTIONS(6532), 1, + anon_sym_PIPE, + ACTIONS(6057), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -269392,17 +270475,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(4889), 25, + ACTIONS(6059), 25, + sym__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, @@ -269422,14 +270504,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [169858] = 4, + [171189] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, + ACTIONS(6530), 1, anon_sym_AMP, - ACTIONS(5779), 14, + ACTIONS(6532), 1, + anon_sym_PIPE, + ACTIONS(6534), 1, + anon_sym_extends, + ACTIONS(5269), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -269439,12 +270524,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5781), 25, + ACTIONS(5271), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -269469,153 +270553,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [169908] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, - anon_sym_as, - ACTIONS(6316), 1, - anon_sym_in, - ACTIONS(6318), 1, - anon_sym_LT, - ACTIONS(6322), 1, - anon_sym_QMARK, - ACTIONS(6324), 1, - anon_sym_AMP_AMP, - ACTIONS(6330), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE, - ACTIONS(6338), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4963), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6326), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6334), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6320), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6328), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6336), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [170002] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(6228), 1, - anon_sym_as, - ACTIONS(6370), 1, - anon_sym_in, - ACTIONS(6372), 1, - anon_sym_LT, - ACTIONS(6376), 1, - anon_sym_QMARK, - ACTIONS(6378), 1, - anon_sym_AMP_AMP, - ACTIONS(6384), 1, - anon_sym_AMP, - ACTIONS(6386), 1, - anon_sym_PIPE, - ACTIONS(6390), 1, - anon_sym_STAR_STAR, - ACTIONS(6394), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4973), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6380), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6388), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6368), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6374), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6382), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6392), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [170096] = 6, + [171243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6471), 1, + ACTIONS(6530), 1, anon_sym_AMP, - ACTIONS(6473), 1, - anon_sym_PIPE, - ACTIONS(6475), 1, - anon_sym_extends, - ACTIONS(5038), 13, + ACTIONS(5996), 14, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -269625,11 +270568,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 24, + ACTIONS(5998), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -269654,23 +270598,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [170150] = 6, + anon_sym_extends, + [171293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, - anon_sym_LBRACK, - ACTIONS(5223), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, + ACTIONS(6530), 1, anon_sym_AMP, + ACTIONS(6532), 1, anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(6534), 1, + anon_sym_extends, + ACTIONS(5218), 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, @@ -269678,12 +270622,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 23, + ACTIONS(5220), 24, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, 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, @@ -269702,23 +270647,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [170204] = 6, + [171347] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, - anon_sym_LBRACK, - ACTIONS(4889), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5081), 3, - anon_sym_GT, + ACTIONS(6530), 1, anon_sym_AMP, + ACTIONS(6532), 1, anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(6534), 1, + anon_sym_extends, + ACTIONS(5305), 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, @@ -269726,12 +270670,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 23, + ACTIONS(5307), 24, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, + anon_sym_COMMA, 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, @@ -269750,40 +270695,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [170258] = 16, + [171401] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4742), 1, + ACTIONS(4747), 1, anon_sym_RBRACE, - ACTIONS(6356), 1, + ACTIONS(6411), 1, anon_sym_STAR, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, + ACTIONS(6425), 1, anon_sym_async, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + ACTIONS(6433), 1, + anon_sym_LBRACK, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, sym_number, sym_private_property_identifier, - ACTIONS(6366), 2, + ACTIONS(6431), 2, anon_sym_get, anon_sym_set, - STATE(3945), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -269791,7 +270736,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -269808,42 +270753,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [170332] = 17, + [171475] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6608), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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(5043), 16, + anon_sym_as, + anon_sym_RBRACE, + 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, + [171541] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4742), 1, + ACTIONS(4747), 1, anon_sym_RBRACE, - ACTIONS(6356), 1, + ACTIONS(6411), 1, anon_sym_STAR, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6362), 1, - anon_sym_async, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6398), 1, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6429), 1, anon_sym_readonly, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, sym_number, sym_private_property_identifier, - ACTIONS(6366), 2, + ACTIONS(6431), 2, anon_sym_get, anon_sym_set, - STATE(3945), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -269851,7 +270850,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, + ACTIONS(4750), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -269867,38 +270866,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [170408] = 15, + [171617] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6608), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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(5043), 16, + anon_sym_as, + anon_sym_RBRACE, + 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, + [171683] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4742), 1, + ACTIONS(4747), 1, anon_sym_RBRACE, - ACTIONS(6356), 1, + ACTIONS(6411), 1, anon_sym_STAR, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, sym_number, sym_private_property_identifier, - ACTIONS(6404), 2, + ACTIONS(6419), 2, anon_sym_get, anon_sym_set, - STATE(4512), 3, + STATE(4484), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -269906,7 +270959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -269924,509 +270977,419 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [170480] = 26, + [171755] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, anon_sym_as, - ACTIONS(6316), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6322), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(6324), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6330), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6338), 1, + ACTIONS(6328), 1, + anon_sym_STAR_STAR, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4969), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6326), 2, + ACTIONS(5086), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6334), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6320), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6336), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [170574] = 26, + [171849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4981), 1, + ACTIONS(5212), 1, + sym_regex_flags, + ACTIONS(5208), 18, + anon_sym_STAR, anon_sym_as, - ACTIONS(4985), 1, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5640), 1, anon_sym_in, - ACTIONS(5642), 1, anon_sym_LT, - ACTIONS(5646), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5648), 1, - anon_sym_AMP_AMP, - ACTIONS(5654), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5656), 1, anon_sym_PIPE, - ACTIONS(5660), 1, - anon_sym_STAR_STAR, - ACTIONS(5664), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5650), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5658), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6632), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5638), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5644), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5652), 3, + anon_sym_instanceof, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5210), 21, + 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, - ACTIONS(5662), 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, - [170668] = 26, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [171899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(2051), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2055), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, - anon_sym_as, - ACTIONS(6316), 1, anon_sym_in, - ACTIONS(6318), 1, anon_sym_LT, - ACTIONS(6322), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6324), 1, - anon_sym_AMP_AMP, - ACTIONS(6330), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6332), 1, anon_sym_PIPE, - ACTIONS(6338), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4971), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6326), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6334), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6312), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6320), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(2057), 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(6336), 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, - [170762] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [171949] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4729), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6419), 2, + anon_sym_get, + anon_sym_set, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [172021] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6584), 1, - anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6611), 1, anon_sym_LT, - ACTIONS(6590), 1, - anon_sym_QMARK, - ACTIONS(6592), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, - anon_sym_AMP, - ACTIONS(6600), 1, - anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_STAR_STAR, - ACTIONS(6608), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4973), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(5088), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6588), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(5090), 18, + 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, - ACTIONS(6606), 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, - [170856] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [172085] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(2191), 1, + sym__automatic_semicolon, + ACTIONS(2183), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2187), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6584), 1, anon_sym_in, - ACTIONS(6586), 1, anon_sym_LT, - ACTIONS(6590), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6592), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6600), 1, anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_STAR_STAR, - ACTIONS(6608), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4971), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6602), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6582), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6588), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(2189), 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6606), 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, - [170950] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [172137] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(6479), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(6487), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4969), 2, + ACTIONS(5056), 2, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6594), 2, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [171044] = 26, + [172231] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(2211), 1, + sym__automatic_semicolon, + ACTIONS(2203), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2207), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6584), 1, anon_sym_in, - ACTIONS(6586), 1, anon_sym_LT, - ACTIONS(6590), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6592), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6600), 1, anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_STAR_STAR, - ACTIONS(6608), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4963), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6602), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6582), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6588), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6606), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [171138] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6634), 1, - sym_regex_flags, - ACTIONS(5200), 18, - anon_sym_STAR, + ACTIONS(2209), 23, 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_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_extends, - ACTIONS(5202), 21, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -270442,238 +271405,508 @@ 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, - [171188] = 26, + [172283] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(6194), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(6306), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6310), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(6314), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(6316), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(6322), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(6324), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(6328), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(6332), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6614), 1, + anon_sym_SEMI, + ACTIONS(6616), 1, + sym__automatic_semicolon, + STATE(5086), 1, sym_type_arguments, - ACTIONS(4961), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(5015), 2, + ACTIONS(5050), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6594), 2, + ACTIONS(6318), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(6326), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6304), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6312), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6320), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(6330), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [171282] = 26, + [172379] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4729), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6429), 1, + anon_sym_readonly, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [172455] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4719), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6433), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [172529] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(3650), 1, + anon_sym_DASH, + ACTIONS(4754), 1, + anon_sym_LBRACK, + ACTIONS(6375), 1, + anon_sym_STAR, + ACTIONS(6379), 1, + anon_sym_async, + ACTIONS(6383), 1, + anon_sym_static, + ACTIONS(6385), 1, + anon_sym_readonly, + ACTIONS(6389), 1, + anon_sym_declare, + ACTIONS(6391), 1, + anon_sym_abstract, + ACTIONS(6618), 1, + anon_sym_RBRACE, + STATE(3773), 1, + sym_method_definition, + STATE(3819), 1, + sym_accessibility_modifier, + ACTIONS(6381), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6387), 2, + anon_sym_get, + anon_sym_set, + STATE(3095), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3905), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5385), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4750), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [172615] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4729), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6433), 1, + anon_sym_LBRACK, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [172689] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(6479), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(6487), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4953), 2, + ACTIONS(5086), 2, anon_sym_RBRACE, anon_sym_RBRACK, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6594), 2, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [171376] = 23, + [172783] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6584), 1, - anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6620), 1, anon_sym_LT, - ACTIONS(6592), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, - anon_sym_AMP, - ACTIONS(6600), 1, - anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(5088), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6588), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4911), 4, + ACTIONS(5090), 18, anon_sym_as, anon_sym_RBRACE, anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - ACTIONS(6606), 5, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [171464] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [172847] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4719), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6636), 1, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6429), 1, + anon_sym_readonly, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [172923] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4423), 1, + anon_sym_EQ, + ACTIONS(3842), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -270684,10 +271917,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 16, + ACTIONS(3846), 25, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + 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, @@ -270701,70 +271938,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [171530] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [172973] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6604), 1, - anon_sym_STAR_STAR, - ACTIONS(6636), 1, + ACTIONS(5151), 1, + anon_sym_as, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5644), 1, + anon_sym_in, + ACTIONS(5646), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(5650), 1, + anon_sym_QMARK, + ACTIONS(5652), 1, + anon_sym_AMP_AMP, + ACTIONS(5658), 1, + anon_sym_AMP, + ACTIONS(5660), 1, + anon_sym_PIPE, + ACTIONS(5664), 1, + anon_sym_STAR_STAR, + ACTIONS(5668), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5723), 1, + anon_sym_COMMA, + ACTIONS(6623), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(5654), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5662), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(5642), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6596), 3, + ACTIONS(5648), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5656), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 10, + ACTIONS(5666), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [173069] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(4959), 1, + anon_sym_LBRACK, + ACTIONS(4963), 1, + anon_sym_DOT, + ACTIONS(5048), 1, + anon_sym_QMARK_DOT, + ACTIONS(5679), 1, + anon_sym_LT, + STATE(5086), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2579), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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(4911), 12, + ACTIONS(5043), 16, anon_sym_as, + anon_sym_COMMA, anon_sym_RBRACE, - 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, - [171602] = 4, + [173135] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 1, - anon_sym_EQ, - ACTIONS(1986), 14, + ACTIONS(6625), 1, + sym_regex_flags, + ACTIONS(5208), 18, anon_sym_STAR, + anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -270778,12 +272088,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 25, - sym__automatic_semicolon, - anon_sym_as, + anon_sym_instanceof, + anon_sym_extends, + ACTIONS(5210), 21, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -270799,142 +272108,261 @@ 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, - [171652] = 21, + anon_sym_LBRACE_PIPE, + [173185] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4719), 1, + anon_sym_RBRACE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6419), 2, + anon_sym_get, + anon_sym_set, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [173257] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6584), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6592), 1, + ACTIONS(6353), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(6361), 1, anon_sym_AMP, - ACTIONS(6604), 1, + ACTIONS(6363), 1, + anon_sym_PIPE, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6371), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5056), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6602), 2, + ACTIONS(6357), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6582), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 6, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [171736] = 19, + [173351] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6584), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6345), 1, + anon_sym_as, + ACTIONS(6347), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6349), 1, anon_sym_LT, - ACTIONS(6604), 1, + ACTIONS(6353), 1, + anon_sym_QMARK, + ACTIONS(6355), 1, + anon_sym_AMP_AMP, + ACTIONS(6361), 1, + anon_sym_AMP, + ACTIONS(6363), 1, + anon_sym_PIPE, + ACTIONS(6367), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6371), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5086), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6602), 2, + ACTIONS(6357), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6365), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6343), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6351), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6359), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6606), 5, + ACTIONS(6369), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 7, + [173445] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4887), 1, + anon_sym_extends, + ACTIONS(4899), 1, + anon_sym_LBRACK, + ACTIONS(6627), 1, + anon_sym_EQ, + ACTIONS(6632), 1, + anon_sym_RPAREN, + ACTIONS(6636), 1, + anon_sym_QMARK, + ACTIONS(4902), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6629), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3842), 11, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3846), 20, anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - [171816] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [173507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6627), 1, - anon_sym_EQ, - ACTIONS(5164), 14, + ACTIONS(2107), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -270948,12 +272376,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 25, - sym__automatic_semicolon, + ACTIONS(2105), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -270974,13 +272400,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [171866] = 4, + anon_sym_LBRACE_PIPE, + [173554] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_EQ, - ACTIONS(5046), 14, + ACTIONS(5316), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -270994,12 +272420,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 25, - sym__automatic_semicolon, + ACTIONS(5318), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -271020,153 +272444,241 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [171916] = 16, + anon_sym_LBRACE_PIPE, + [173601] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6586), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5958), 1, + anon_sym_RBRACE, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, + anon_sym_in, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(6604), 1, + ACTIONS(6469), 1, + anon_sym_QMARK, + ACTIONS(6471), 1, + anon_sym_AMP_AMP, + ACTIONS(6477), 1, + anon_sym_AMP, + ACTIONS(6479), 1, + anon_sym_PIPE, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6602), 2, + ACTIONS(6473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, - anon_sym_BANG, - anon_sym_in, + ACTIONS(6467), 3, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 12, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(6475), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6485), 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, - [171990] = 18, + [173694] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6586), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6643), 1, + anon_sym_COLON, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6604), 1, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6602), 2, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6606), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 7, + [173787] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2022), 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(2020), 24, anon_sym_as, - anon_sym_RBRACE, - 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, - [172068] = 13, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [173834] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5224), 1, + anon_sym_COMMA, + ACTIONS(4905), 2, anon_sym_LBRACK, - ACTIONS(4835), 1, + anon_sym_extends, + ACTIONS(4908), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 11, + 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(3846), 22, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(6604), 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(6636), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 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(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + anon_sym_BQUOTE, + [173887] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4953), 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, @@ -271177,99 +272689,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 15, + ACTIONS(4955), 24, anon_sym_as, - anon_sym_RBRACE, - 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, - [172136] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [173934] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(4680), 1, + anon_sym_EQ, + ACTIONS(3842), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6584), 1, anon_sym_in, - ACTIONS(6586), 1, anon_sym_LT, - ACTIONS(6590), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6592), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6600), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3846), 24, + 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, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5021), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(6594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6582), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [173983] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_QMARK_DOT, + ACTIONS(4987), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4989), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2055), 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, - ACTIONS(6588), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(2057), 19, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6606), 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, - [172230] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [174038] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_AMP, - ACTIONS(6492), 1, - anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(2225), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -271277,17 +272820,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(5895), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2227), 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, @@ -271308,409 +272850,370 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [172282] = 26, + anon_sym_LBRACE_PIPE, + [174085] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4729), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [174152] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5107), 1, + anon_sym_COLON, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5019), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(6594), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [172376] = 26, + [174245] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5109), 1, + anon_sym_COLON, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5017), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(6594), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [172470] = 26, + [174338] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4899), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 12, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6584), 1, anon_sym_in, - ACTIONS(6586), 1, anon_sym_LT, - ACTIONS(6590), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6592), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, - anon_sym_AMP, - ACTIONS(6600), 1, - anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_STAR_STAR, - ACTIONS(6608), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(4949), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6602), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6582), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6588), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(3846), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6606), 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, - [172564] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [174389] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5111), 1, + anon_sym_COLON, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4983), 2, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6594), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [172658] = 15, + [174482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4751), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, + ACTIONS(6625), 1, + sym_regex_flags, + ACTIONS(5208), 17, anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6404), 2, - anon_sym_get, - anon_sym_set, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + 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_PIPE_RBRACE, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [172730] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 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, + anon_sym_instanceof, + ACTIONS(5210), 21, anon_sym_COMMA, - ACTIONS(4751), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6362), 1, - anon_sym_async, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [172806] = 6, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [174531] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, + ACTIONS(4905), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4908), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6492), 1, anon_sym_PIPE, - ACTIONS(6494), 1, - anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(3842), 12, 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, @@ -271718,14 +273221,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5150), 25, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3846), 21, 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, @@ -271744,75 +273242,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [172860] = 16, + anon_sym_LBRACE_PIPE, + [174582] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4751), 1, - anon_sym_RBRACE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6364), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6366), 2, - anon_sym_get, - anon_sym_set, - STATE(3945), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, anon_sym_LT, + ACTIONS(6649), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [172934] = 6, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6669), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [174675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, + ACTIONS(6671), 1, anon_sym_AMP, - ACTIONS(6492), 1, + ACTIONS(6673), 1, anon_sym_PIPE, - ACTIONS(6494), 1, + ACTIONS(6675), 1, anon_sym_extends, - ACTIONS(5796), 12, + ACTIONS(5218), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -271824,13 +273333,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5798), 25, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5220), 23, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -271850,40 +273357,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [172988] = 10, + [174728] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(2956), 1, - anon_sym_extends, - ACTIONS(5058), 1, + ACTIONS(4887), 1, + anon_sym_COMMA, + ACTIONS(4899), 2, anon_sym_LBRACK, - ACTIONS(6075), 1, - anon_sym_RPAREN, - ACTIONS(6560), 1, - anon_sym_QMARK, - ACTIONS(5061), 2, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5549), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(1986), 11, + ACTIONS(3842), 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_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 20, + ACTIONS(3846), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271902,265 +273404,259 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [173050] = 26, + [174781] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5117), 1, + anon_sym_COLON, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6316), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6322), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6324), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6330), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6332), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6338), 1, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5284), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6326), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6334), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6320), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6336), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [173144] = 22, + [174874] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(6408), 1, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5119), 1, + anon_sym_COLON, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6639), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3305), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [173230] = 10, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [174967] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5052), 1, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5360), 1, - anon_sym_extends, - ACTIONS(6071), 1, - anon_sym_RPAREN, - ACTIONS(6557), 1, - anon_sym_QMARK, - ACTIONS(5055), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5572), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(5046), 11, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6677), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(5050), 20, + ACTIONS(5123), 14, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [173292] = 26, + [175034] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6310), 1, - anon_sym_STAR_STAR, - ACTIONS(6314), 1, - anon_sym_as, - ACTIONS(6316), 1, - anon_sym_in, - ACTIONS(6318), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6322), 1, - anon_sym_QMARK, - ACTIONS(6324), 1, - anon_sym_AMP_AMP, - ACTIONS(6330), 1, - anon_sym_AMP, - ACTIONS(6332), 1, - anon_sym_PIPE, - ACTIONS(6338), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5235), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6326), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6334), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6312), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6320), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6328), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6336), 5, + ACTIONS(5121), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [173386] = 4, + ACTIONS(5123), 6, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [175111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6490), 1, - anon_sym_AMP, - ACTIONS(5779), 13, + ACTIONS(5249), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -272168,18 +273664,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(5781), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5251), 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, @@ -272200,82 +273694,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [173436] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(3652), 1, - anon_sym_DASH, - ACTIONS(4768), 1, - anon_sym_LBRACK, - ACTIONS(6408), 1, - anon_sym_STAR, - ACTIONS(6412), 1, - anon_sym_async, - ACTIONS(6416), 1, - anon_sym_static, - ACTIONS(6418), 1, - anon_sym_readonly, - ACTIONS(6422), 1, - anon_sym_declare, - ACTIONS(6424), 1, - anon_sym_abstract, - ACTIONS(6641), 1, - anon_sym_RBRACE, - STATE(3796), 1, - sym_method_definition, - STATE(3820), 1, - sym_accessibility_modifier, - ACTIONS(6414), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6420), 2, - anon_sym_get, - anon_sym_set, - STATE(3166), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3904), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5343), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4760), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [173522] = 6, + anon_sym_LBRACE_PIPE, + [175158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(6557), 1, - anon_sym_in, - ACTIONS(6612), 1, - anon_sym_of, - ACTIONS(5046), 13, + ACTIONS(2299), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -272287,12 +273714,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 24, - sym__automatic_semicolon, + ACTIONS(2301), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -272312,64 +273737,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [173576] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4754), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [173643] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [175205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5265), 15, + ACTIONS(2207), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -272385,7 +273758,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5267), 24, + ACTIONS(2209), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -272410,12 +273783,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [173690] = 3, + [175252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 15, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6684), 1, + anon_sym_extends, + ACTIONS(5269), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -272423,14 +273801,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(5036), 24, + ACTIONS(5271), 24, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -272452,217 +273829,282 @@ 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, - [173737] = 3, + anon_sym_implements, + [175305] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 8, 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(4967), 24, + ACTIONS(5123), 11, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [173784] = 26, + [175378] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4983), 1, - anon_sym_COLON, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(5121), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [173877] = 26, + ACTIONS(5123), 6, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [175457] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4949), 1, - anon_sym_COLON, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(5121), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(5123), 5, + anon_sym_as, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [173970] = 6, + [175540] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, - anon_sym_AMP, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_extends, - ACTIONS(5348), 13, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6677), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5121), 10, 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(5350), 23, + ACTIONS(5123), 11, anon_sym_as, - anon_sym_COMMA, + 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, + [175611] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_RPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, + ACTIONS(6677), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5121), 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(5123), 15, + anon_sym_as, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -272676,239 +274118,275 @@ 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, - [174023] = 26, + [175676] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5017), 1, - anon_sym_COLON, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5121), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(5123), 3, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [174116] = 4, + [175763] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6634), 1, - sym_regex_flags, - ACTIONS(5200), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5132), 1, + anon_sym_COLON, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, anon_sym_in, + ACTIONS(6645), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, anon_sym_AMP, + ACTIONS(6659), 1, anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(5202), 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(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6665), 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, - [174165] = 26, + anon_sym_instanceof, + [175856] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5134), 1, + anon_sym_COLON, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - ACTIONS(6677), 1, - anon_sym_COLON, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [174258] = 6, + [175949] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(5348), 12, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, anon_sym_in, + ACTIONS(6645), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6686), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 24, - anon_sym_as, - anon_sym_LBRACE, - 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, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6665), 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, - [174311] = 3, + [176042] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2130), 15, + ACTIONS(2187), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -272924,7 +274402,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2132), 24, + ACTIONS(2189), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -272949,30 +274427,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [174358] = 3, + [176089] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4802), 15, + ACTIONS(6408), 1, + anon_sym_EQ, + ACTIONS(4911), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4914), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 11, 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(4806), 24, + ACTIONS(2006), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -272991,32 +274474,35 @@ 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, - [174405] = 3, + [176142] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5182), 15, + ACTIONS(6334), 1, + anon_sym_EQ, + ACTIONS(4923), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4926), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 11, 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(5184), 24, + ACTIONS(4921), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273035,12 +274521,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, - [174452] = 3, + [176195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2158), 15, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(4987), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -273056,12 +274542,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2156), 24, + ACTIONS(4989), 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, @@ -273081,269 +274566,223 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [174499] = 26, + [176244] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5019), 1, + ACTIONS(4897), 1, anon_sym_COLON, - ACTIONS(5751), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [174592] = 26, + [176337] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5021), 1, + ACTIONS(5025), 1, anon_sym_COLON, - ACTIONS(5751), 1, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [174685] = 13, + [176430] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5021), 1, + anon_sym_COLON, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6685), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, - anon_sym_STAR, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, anon_sym_AMP, + ACTIONS(6659), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4911), 14, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [174752] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6663), 2, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4913), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4911), 6, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [174829] = 7, + [176523] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5912), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(6270), 1, + ACTIONS(6148), 1, anon_sym_QMARK_DOT, - ACTIONS(5194), 3, + ACTIONS(4987), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5196), 3, + ACTIONS(4989), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2056), 12, + ACTIONS(2055), 12, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -273356,7 +274795,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 19, + ACTIONS(2057), 19, anon_sym_as, anon_sym_LPAREN, anon_sym_AMP_AMP, @@ -273376,97 +274815,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [174884] = 26, + [176578] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4719), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [176645] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, ACTIONS(6688), 1, anon_sym_COLON, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [174977] = 3, + [176738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 15, + ACTIONS(4887), 1, + anon_sym_extends, + ACTIONS(4899), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4902), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 12, 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(2950), 24, + ACTIONS(3846), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273485,14 +274982,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, - [175024] = 3, + [176791] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4747), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [176858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 15, + ACTIONS(6690), 1, + anon_sym_AMP, + ACTIONS(6692), 1, + anon_sym_PIPE, + ACTIONS(6694), 1, + anon_sym_extends, + ACTIONS(5936), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -273500,16 +275055,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(5245), 24, + ACTIONS(5938), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -273529,270 +275084,153 @@ 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, - [175071] = 16, + [176911] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6057), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 8, 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(4911), 11, + ACTIONS(6059), 25, anon_sym_as, - anon_sym_COLON, + 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, - [175144] = 19, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [176962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6645), 1, + ACTIONS(4941), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 4, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4911), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4943), 24, anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [175223] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4911), 5, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_QMARK_QMARK, - ACTIONS(6667), 5, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [175306] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6685), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [177009] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6696), 1, + anon_sym_AMP, + ACTIONS(6698), 1, + anon_sym_PIPE, + ACTIONS(6700), 1, + anon_sym_extends, + ACTIONS(5269), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4913), 10, + 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(4911), 11, + ACTIONS(5271), 23, anon_sym_as, - anon_sym_COLON, + 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, - [175377] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6685), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(4913), 13, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [177062] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6395), 1, + anon_sym_is, + ACTIONS(4885), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -273803,9 +275241,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4911), 15, + ACTIONS(4887), 24, anon_sym_as, - anon_sym_COLON, + 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, anon_sym_GT_GT_GT, @@ -273819,210 +275262,125 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [175442] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [177111] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(6645), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5202), 1, + anon_sym_COLON, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6653), 1, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - STATE(5082), 1, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(4913), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(4911), 3, - anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [175529] = 26, + [177204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4953), 1, - anon_sym_COLON, - ACTIONS(4985), 1, + ACTIONS(2040), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6661), 1, anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [175622] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(2042), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4961), 1, - anon_sym_COLON, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6667), 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, - [175715] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [177251] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_AMP, - ACTIONS(5779), 14, + ACTIONS(2293), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274032,12 +275390,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(5781), 24, + ACTIONS(2291), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274062,123 +275421,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [175764] = 26, + [177298] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - ACTIONS(6692), 1, + ACTIONS(6702), 1, anon_sym_COLON, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [175857] = 3, + [177391] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 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, + ACTIONS(6680), 1, anon_sym_AMP, + ACTIONS(6682), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5115), 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, + ACTIONS(6684), 1, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [175904] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5101), 15, + ACTIONS(5218), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -274186,14 +275506,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(5103), 24, + ACTIONS(5220), 24, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -274215,14 +275534,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, - [175951] = 4, + anon_sym_implements, + [177444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, - anon_sym_LBRACK, - ACTIONS(5237), 15, + ACTIONS(2177), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274238,10 +275554,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5239), 23, + ACTIONS(2179), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -274262,211 +275579,168 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176000] = 26, + [177491] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4963), 1, - anon_sym_COLON, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + ACTIONS(6704), 1, + anon_sym_COLON, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [176093] = 26, + [177584] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4905), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4969), 1, - anon_sym_COLON, - ACTIONS(4985), 1, + ACTIONS(5224), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4908), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(3846), 22, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6667), 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, - [176186] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [177637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4971), 1, - anon_sym_COLON, - ACTIONS(4985), 1, + ACTIONS(2077), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6661), 1, anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(2079), 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(6667), 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, - [176279] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [177684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2142), 15, + ACTIONS(2167), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274482,7 +275756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2144), 24, + ACTIONS(2169), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274507,10 +275781,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176326] = 3, + [177731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5336), 15, + ACTIONS(5352), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274526,7 +275800,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5338), 24, + ACTIONS(5354), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274551,18 +275825,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176373] = 5, + [177778] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5170), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3844), 12, + ACTIONS(2197), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -274570,15 +275838,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(3848), 22, + ACTIONS(2199), 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, @@ -274597,140 +275867,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [176424] = 13, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [177825] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4748), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(2004), 1, anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, + ACTIONS(6408), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [176491] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, + ACTIONS(5474), 3, anon_sym_COMMA, - ACTIONS(4742), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [176558] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6690), 1, - anon_sym_AMP, - ACTIONS(6696), 1, - anon_sym_PIPE, - ACTIONS(6698), 1, - anon_sym_extends, - ACTIONS(5796), 13, + ACTIONS(2002), 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(5798), 23, + ACTIONS(2006), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -274751,11 +275916,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [176611] = 3, + [177878] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 15, + ACTIONS(2117), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274771,7 +275935,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 24, + ACTIONS(2119), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274796,13 +275960,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176658] = 4, + [177925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4699), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(4983), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -274816,13 +275979,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, + ACTIONS(4985), 24, 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, @@ -274841,10 +276003,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [176707] = 3, + anon_sym_LBRACE_PIPE, + [177972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5286), 15, + ACTIONS(4991), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274860,7 +276023,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5288), 24, + ACTIONS(4993), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274885,144 +276048,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176754] = 26, + [178019] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5224), 1, + anon_sym_extends, + ACTIONS(4905), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(4908), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 12, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6700), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [176847] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(3846), 21, + anon_sym_as, anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4973), 1, - anon_sym_COLON, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6667), 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, - [176940] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [178072] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 15, + ACTIONS(2157), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275038,7 +276114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 24, + ACTIONS(2159), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275063,13 +276139,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176987] = 4, + [178119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4651), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(2215), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275083,11 +276158,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, + ACTIONS(2213), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -275108,36 +276182,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [177036] = 14, + anon_sym_LBRACE_PIPE, + [178166] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_COMMA, - ACTIONS(4789), 1, + ACTIONS(4803), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6702), 1, + ACTIONS(6706), 1, anon_sym_STAR, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6704), 2, + ACTIONS(6708), 2, sym_number, sym_private_property_identifier, - ACTIONS(6706), 2, + ACTIONS(6710), 2, anon_sym_get, anon_sym_set, - STATE(4443), 3, + STATE(4563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -275145,7 +276220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -275163,10 +276238,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [177105] = 3, + [178235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 15, + ACTIONS(4995), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275182,7 +276257,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5044), 24, + ACTIONS(4997), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275207,84 +276282,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177152] = 3, + [178282] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 15, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(4800), 1, + anon_sym_COMMA, + ACTIONS(4803), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6706), 1, anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(6712), 1, + anon_sym_async, + ACTIONS(6716), 1, + anon_sym_readonly, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6714), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6718), 2, + anon_sym_get, + anon_sym_set, + STATE(3944), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [178355] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, anon_sym_in, + ACTIONS(6645), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, anon_sym_AMP, + ACTIONS(6659), 1, anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6720), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 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(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6665), 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, - [177199] = 16, + [178448] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4786), 1, + ACTIONS(4800), 1, anon_sym_COMMA, - ACTIONS(4789), 1, + ACTIONS(4803), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6396), 1, + ACTIONS(6433), 1, anon_sym_LBRACK, - ACTIONS(6702), 1, + ACTIONS(6706), 1, anon_sym_STAR, - ACTIONS(6708), 1, - anon_sym_async, ACTIONS(6712), 1, - anon_sym_readonly, - STATE(5365), 1, + anon_sym_async, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6710), 2, + ACTIONS(6714), 2, sym_number, sym_private_property_identifier, - ACTIONS(6714), 2, + ACTIONS(6718), 2, anon_sym_get, anon_sym_set, - STATE(3940), 3, + STATE(3944), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -275292,12 +276445,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -275308,63 +276462,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [177272] = 6, + [178519] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_AMP, - ACTIONS(6696), 1, - anon_sym_PIPE, - ACTIONS(6698), 1, - anon_sym_extends, - ACTIONS(5348), 13, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, anon_sym_in, + ACTIONS(6645), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6722), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 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(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6665), 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, - [177325] = 6, + [178612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_AMP, - ACTIONS(6696), 1, - anon_sym_PIPE, - ACTIONS(6698), 1, - anon_sym_extends, - ACTIONS(5038), 13, + ACTIONS(5297), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275374,11 +276542,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(5040), 23, + ACTIONS(5299), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275401,11 +276571,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, - [177378] = 3, + [178659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 15, + ACTIONS(2061), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275421,7 +276592,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5138), 24, + ACTIONS(2059), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275446,10 +276617,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177425] = 3, + [178706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 15, + ACTIONS(4774), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275465,7 +276636,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 24, + ACTIONS(4778), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275490,96 +276661,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177472] = 13, + [178753] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4751), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [177539] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(4835), 1, anon_sym_QMARK_DOT, - ACTIONS(6716), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5225), 13, + ACTIONS(4987), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4989), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(2055), 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(5227), 17, + ACTIONS(2057), 20, anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -275596,13 +276708,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [177602] = 4, + anon_sym_BQUOTE, + [178808] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, - anon_sym_AMP, - ACTIONS(5960), 13, + ACTIONS(5326), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275610,17 +276722,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(5962), 25, + ACTIONS(5328), 24, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -275641,10 +276752,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [177651] = 3, + anon_sym_LBRACE_PIPE, + [178855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(5356), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275660,7 +276772,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 24, + ACTIONS(5358), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275685,10 +276797,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177698] = 3, + [178902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(5332), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275704,7 +276816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 24, + ACTIONS(5334), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275729,10 +276841,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177745] = 3, + [178949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(4929), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275748,7 +276860,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 24, + ACTIONS(4931), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275773,10 +276885,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177792] = 3, + [178996] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6724), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [179089] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5138), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275792,7 +276971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5142), 24, + ACTIONS(5140), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275817,30 +276996,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177839] = 3, + [179136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(4999), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5001), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3842), 12, 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(5134), 24, + ACTIONS(3846), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -275859,12 +277041,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, - [177886] = 3, + [179187] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 15, + ACTIONS(5313), 1, + anon_sym_DOT, + ACTIONS(5309), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275880,12 +277063,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5146), 24, + ACTIONS(5311), 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, @@ -275905,17 +277087,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177933] = 6, + [179236] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(5956), 12, + ACTIONS(6726), 1, + anon_sym_LBRACK, + ACTIONS(5336), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275923,17 +277102,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(5958), 24, + ACTIONS(5338), 23, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -275952,152 +277130,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [177986] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [179285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(4937), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5235), 1, - anon_sym_COLON, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6661), 1, anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [178079] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4939), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(5284), 1, - anon_sym_COLON, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6667), 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, - [178172] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [179332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6680), 1, anon_sym_AMP, - ACTIONS(6673), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(6684), 1, anon_sym_extends, - ACTIONS(5038), 13, + ACTIONS(5936), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276109,11 +277198,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 23, + ACTIONS(5938), 24, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276133,14 +277222,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [178225] = 4, + anon_sym_implements, + [179385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(5779), 14, + ACTIONS(6698), 1, + anon_sym_PIPE, + ACTIONS(6700), 1, + anon_sym_extends, + ACTIONS(5936), 13, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276148,16 +277242,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5781), 24, + ACTIONS(5938), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276177,11 +277269,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [178274] = 3, + anon_sym_LBRACE_PIPE, + [179438] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 15, + ACTIONS(4945), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276197,7 +277289,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5150), 24, + ACTIONS(4947), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276222,12 +277314,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178321] = 3, + [179485] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 15, + ACTIONS(6334), 1, + anon_sym_EQ, + ACTIONS(4917), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276241,10 +277334,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2968), 24, + ACTIONS(4921), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276265,11 +277359,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [178368] = 3, + [179534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 15, + ACTIONS(2026), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276285,7 +277378,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 24, + ACTIONS(2024), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276310,10 +277403,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178415] = 3, + [179581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 15, + ACTIONS(4949), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276329,7 +277422,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5176), 24, + ACTIONS(4951), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276354,68 +277447,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178462] = 15, + [179628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(4786), 1, - anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6448), 1, anon_sym_EQ, - ACTIONS(6360), 1, - anon_sym_LBRACK, - ACTIONS(6702), 1, + ACTIONS(5184), 14, anon_sym_STAR, - ACTIONS(6708), 1, - anon_sym_async, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6710), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6714), 2, - anon_sym_get, - anon_sym_set, - STATE(3940), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - 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(4760), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [178533] = 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(5188), 24, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [179677] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 15, + ACTIONS(6408), 1, + anon_sym_EQ, + ACTIONS(2002), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276429,10 +277512,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5180), 24, + ACTIONS(2006), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276453,19 +277537,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [178580] = 6, + [179726] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6690), 1, anon_sym_AMP, - ACTIONS(6673), 1, + ACTIONS(6692), 1, anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_extends, - ACTIONS(5148), 13, + ACTIONS(6057), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276477,11 +277557,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5150), 23, + ACTIONS(6059), 25, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276501,16 +277582,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [178633] = 5, + anon_sym_extends, + [179777] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(6690), 1, anon_sym_AMP, - ACTIONS(6673), 1, + ACTIONS(6692), 1, anon_sym_PIPE, - ACTIONS(5893), 13, + ACTIONS(6694), 1, + anon_sym_extends, + ACTIONS(5269), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276522,11 +277605,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5895), 24, + ACTIONS(5271), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [179830] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 1, + anon_sym_AMP, + ACTIONS(5996), 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_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5998), 25, + anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276547,18 +277675,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [178684] = 6, + [179879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, + ACTIONS(5001), 2, anon_sym_AMP, - ACTIONS(6673), 1, anon_sym_PIPE, - ACTIONS(6675), 1, + ACTIONS(4999), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5796), 13, + ACTIONS(3842), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276570,11 +277698,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5798), 23, + ACTIONS(3846), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [179930] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6690), 1, + anon_sym_AMP, + ACTIONS(6692), 1, + anon_sym_PIPE, + ACTIONS(6694), 1, + anon_sym_extends, + ACTIONS(5305), 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(5307), 24, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276594,12 +277768,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [178737] = 3, + [179983] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2192), 15, + ACTIONS(4699), 1, + anon_sym_EQ, + ACTIONS(3842), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276613,12 +277788,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2190), 24, + ACTIONS(3846), 24, 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, @@ -276637,13 +277813,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [178784] = 3, + [180032] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 15, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4738), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [180099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5186), 1, + anon_sym_EQ, + ACTIONS(6451), 1, + anon_sym_COLON, + ACTIONS(5471), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5184), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276657,9 +277892,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2960), 24, + ACTIONS(5188), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -276680,18 +277914,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, - [178831] = 6, + [180152] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5907), 1, - anon_sym_LBRACK, - ACTIONS(5912), 1, - anon_sym_DOT, - ACTIONS(6270), 1, - anon_sym_QMARK_DOT, - ACTIONS(2056), 15, + ACTIONS(5340), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276707,10 +277933,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 21, + ACTIONS(5342), 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, @@ -276729,12 +277958,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178884] = 3, + [180199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 15, + ACTIONS(6599), 1, + anon_sym_is, + ACTIONS(4885), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276748,10 +277978,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2964), 24, + ACTIONS(4887), 24, + 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, @@ -276772,11 +278003,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [178931] = 3, + [180248] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3844), 15, + ACTIONS(5011), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276792,7 +278022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 24, + ACTIONS(5013), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276817,14 +278047,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178978] = 4, + [180295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, - anon_sym_AMP, - ACTIONS(5960), 14, + ACTIONS(2289), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276832,16 +278060,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(5962), 24, + ACTIONS(2287), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276862,10 +278090,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [179027] = 3, + anon_sym_LBRACE_PIPE, + [180342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2243), 15, + ACTIONS(5015), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276881,7 +278110,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2245), 24, + ACTIONS(5017), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276906,10 +278135,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179074] = 3, + [180389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2062), 15, + ACTIONS(5019), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276925,7 +278154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2060), 24, + ACTIONS(5021), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276950,144 +278179,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179121] = 26, + [180436] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5235), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6661), 1, anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6719), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(5237), 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(6667), 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, - [179214] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [180483] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(2960), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5901), 1, - anon_sym_RBRACE, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6584), 1, anon_sym_in, - ACTIONS(6586), 1, anon_sym_LT, - ACTIONS(6590), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6592), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6600), 1, anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_STAR_STAR, - ACTIONS(6608), 1, - anon_sym_QMARK_QMARK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6602), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6582), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6588), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(2958), 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(6606), 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, - [179307] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [180530] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 15, + ACTIONS(5320), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277103,7 +278286,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2070), 24, + ACTIONS(5322), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277128,10 +278311,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179354] = 3, + [180577] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2014), 15, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4741), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [180644] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5257), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277147,7 +278384,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2016), 24, + ACTIONS(5259), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277172,18 +278409,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179401] = 6, + [180691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6671), 1, - anon_sym_AMP, - ACTIONS(6673), 1, - anon_sym_PIPE, - ACTIONS(6675), 1, - anon_sym_extends, - ACTIONS(5956), 13, + ACTIONS(5037), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -277191,15 +278422,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(5958), 23, + ACTIONS(5039), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -277219,12 +278451,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [179454] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [180738] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2196), 15, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4726), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [180805] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5212), 1, + sym_regex_flags, + ACTIONS(5208), 17, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -277238,8 +278528,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2194), 24, - anon_sym_as, + anon_sym_instanceof, + anon_sym_implements, + ACTIONS(5210), 21, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -277257,18 +278549,21 @@ 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, - [179501] = 3, + [180854] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2166), 15, + ACTIONS(6671), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE, + ACTIONS(6675), 1, + anon_sym_extends, + ACTIONS(5936), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -277276,16 +278571,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(2164), 24, + ACTIONS(5938), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -277305,12 +278599,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, - [179548] = 3, + [180907] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 15, + ACTIONS(6696), 1, + anon_sym_AMP, + ACTIONS(6698), 1, + anon_sym_PIPE, + ACTIONS(6057), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277320,13 +278616,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(5223), 24, + ACTIONS(6059), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277351,22 +278645,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179595] = 7, + [180958] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4837), 1, - anon_sym_QMARK_DOT, - ACTIONS(5194), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5196), 3, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2056), 12, + ACTIONS(5305), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -277374,15 +278658,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(2058), 20, + ACTIONS(5307), 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, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -277399,10 +278687,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [179650] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [181005] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 15, + ACTIONS(5023), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277418,7 +278708,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2305), 24, + ACTIONS(5025), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277443,87 +278733,166 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179697] = 26, + [181052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5003), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6661), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5005), 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, - ACTIONS(6669), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6721), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [181099] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5344), 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, - ACTIONS(6649), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(5346), 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(6667), 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, - [179790] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [181146] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5204), 1, - sym_regex_flags, - ACTIONS(5200), 17, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4744), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [181213] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6627), 1, + anon_sym_EQ, + ACTIONS(6636), 1, + anon_sym_QMARK, + ACTIONS(6629), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3842), 13, 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_GT_GT, anon_sym_AMP, anon_sym_PIPE, @@ -277531,11 +278900,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_implements, - ACTIONS(5202), 21, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3846), 21, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -277552,85 +278918,78 @@ 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, - [179839] = 26, + [181266] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6728), 1, anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6723), 1, - anon_sym_COLON, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(5041), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(5043), 15, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6667), 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, - [179932] = 3, + [181331] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5374), 15, + ACTIONS(4831), 1, + anon_sym_LT, + ACTIONS(4883), 1, + anon_sym_DOT, + ACTIONS(6731), 1, + anon_sym_is, + STATE(2354), 1, + sym_type_arguments, + ACTIONS(4881), 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, @@ -277641,12 +279000,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5376), 24, + ACTIONS(3916), 22, 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, @@ -277665,13 +279023,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [179979] = 3, + [181386] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5253), 15, + ACTIONS(6671), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE, + ACTIONS(6057), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -277679,16 +279040,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(5255), 24, + ACTIONS(6059), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -277709,16 +279069,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [180026] = 3, + [181437] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5217), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6728), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5041), 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, @@ -277729,13 +279106,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4971), 24, + ACTIONS(5043), 15, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -277749,23 +279122,24 @@ 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, - [180073] = 3, + [181502] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5348), 15, + ACTIONS(5186), 1, + anon_sym_EQ, + ACTIONS(6448), 1, + anon_sym_QMARK, + ACTIONS(5471), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5184), 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, @@ -277773,9 +279147,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 24, + ACTIONS(5188), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -277796,14 +279169,80 @@ 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, - [180120] = 3, + [181555] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5056), 1, + anon_sym_COLON, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [181648] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2078), 15, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(5996), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -277811,14 +279250,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(2076), 24, + ACTIONS(5998), 25, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -277840,23 +279279,25 @@ 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_LBRACE_PIPE, - [180167] = 6, + [181697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, + ACTIONS(4899), 1, + anon_sym_LBRACK, + ACTIONS(4887), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4902), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6727), 1, anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_extends, - ACTIONS(5038), 12, + ACTIONS(3842), 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, @@ -277864,12 +279305,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 24, + ACTIONS(3846), 22, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -277888,14 +279328,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [180220] = 4, + [181750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, - anon_sym_AMP, - ACTIONS(5779), 13, + ACTIONS(5301), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -277903,14 +279341,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(5781), 25, + ACTIONS(5303), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -277932,32 +279370,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [180269] = 3, + anon_sym_LBRACE_PIPE, + [181797] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 15, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(4923), 1, + anon_sym_LBRACK, + ACTIONS(5362), 1, + anon_sym_extends, + ACTIONS(6093), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4926), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4917), 11, 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(5126), 24, + ACTIONS(4921), 20, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -277976,12 +279421,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, - [180316] = 3, + [181854] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 15, + ACTIONS(5348), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277997,7 +279440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5088), 24, + ACTIONS(5350), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278022,79 +279465,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [180363] = 26, + [181901] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5086), 1, + anon_sym_COLON, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - ACTIONS(6731), 1, - anon_sym_COLON, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [180456] = 3, + [181994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 15, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6684), 1, + anon_sym_extends, + ACTIONS(5803), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278102,14 +279550,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(5354), 24, + ACTIONS(5805), 24, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -278131,35 +279578,39 @@ 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, - [180503] = 4, + anon_sym_implements, + [182047] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6352), 1, - anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(2954), 1, + anon_sym_extends, + ACTIONS(4911), 1, + anon_sym_LBRACK, + ACTIONS(6097), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4914), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(2002), 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(4889), 24, + ACTIONS(2006), 20, 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, @@ -278177,16 +279628,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [180552] = 3, + [182104] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2120), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(6733), 1, + anon_sym_LT, + STATE(4916), 1, + sym_type_arguments, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(5088), 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, @@ -278197,13 +279662,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2122), 24, + ACTIONS(5090), 17, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -278219,15 +279680,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, - [180599] = 3, + [182167] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 15, + ACTIONS(6671), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE, + ACTIONS(6675), 1, + anon_sym_extends, + ACTIONS(5269), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278235,16 +279699,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(4969), 24, + ACTIONS(5271), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -278264,18 +279727,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, - [180646] = 6, + [182220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_AMP, - ACTIONS(6696), 1, - anon_sym_PIPE, - ACTIONS(6698), 1, - anon_sym_extends, - ACTIONS(5148), 13, + ACTIONS(4895), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278285,11 +279740,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(5150), 23, + ACTIONS(4897), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278312,13 +279769,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, - [180699] = 3, + [182267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5105), 15, + ACTIONS(6671), 1, + anon_sym_AMP, + ACTIONS(5996), 14, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278326,16 +279786,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(5107), 24, + ACTIONS(5998), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -278356,11 +279816,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [180746] = 3, + [182316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 15, + ACTIONS(5007), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278376,7 +279835,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 24, + ACTIONS(5009), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278401,10 +279860,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [180793] = 3, + [182363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4905), 15, + ACTIONS(6696), 1, + anon_sym_AMP, + ACTIONS(5996), 14, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278414,13 +279875,12 @@ 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(4907), 24, + ACTIONS(5998), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278445,17 +279905,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [180840] = 6, + [182412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, + ACTIONS(6671), 1, anon_sym_AMP, - ACTIONS(6681), 1, + ACTIONS(6673), 1, anon_sym_PIPE, - ACTIONS(6683), 1, + ACTIONS(6675), 1, anon_sym_extends, - ACTIONS(5796), 12, + ACTIONS(5305), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278467,12 +279928,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5798), 24, + ACTIONS(5307), 23, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -278492,10 +279952,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [180893] = 3, + [182465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5356), 15, + ACTIONS(5027), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278511,7 +279971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5021), 24, + ACTIONS(5029), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278536,86 +279996,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [180940] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4745), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [181007] = 5, + [182512] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 3, - anon_sym_COMMA, + ACTIONS(6726), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5172), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(5229), 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(3848), 21, + ACTIONS(5231), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -278635,17 +280039,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, - [181058] = 6, + [182561] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, + ACTIONS(6690), 1, anon_sym_AMP, - ACTIONS(6727), 1, + ACTIONS(6692), 1, anon_sym_PIPE, - ACTIONS(6729), 1, + ACTIONS(6694), 1, anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(5803), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278658,11 +280063,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5150), 24, + ACTIONS(5805), 24, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -278682,16 +280088,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [181111] = 5, + [182614] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6727), 1, + ACTIONS(6698), 1, anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(6700), 1, + anon_sym_extends, + ACTIONS(5305), 13, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278703,9 +280111,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5895), 25, + ACTIONS(5307), 23, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -278727,14 +280134,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, - [181162] = 4, + anon_sym_LBRACE_PIPE, + [182667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5094), 1, - anon_sym_DOT, - ACTIONS(5090), 15, + ACTIONS(5033), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278750,11 +280154,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5092), 23, + ACTIONS(5035), 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, @@ -278774,12 +280179,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181211] = 3, + [182714] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5247), 15, + ACTIONS(6690), 1, + anon_sym_AMP, + ACTIONS(5797), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278787,16 +280193,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(4963), 24, + ACTIONS(5799), 25, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -278817,15 +280224,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [181258] = 5, + [182763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_AMP, ACTIONS(6696), 1, + anon_sym_AMP, + ACTIONS(6698), 1, anon_sym_PIPE, - ACTIONS(5893), 13, + ACTIONS(6700), 1, + anon_sym_extends, + ACTIONS(5803), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278839,7 +280247,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5895), 24, + ACTIONS(5805), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278862,18 +280270,84 @@ 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, - [181309] = 6, + [182816] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6736), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [182909] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, + ACTIONS(6680), 1, anon_sym_AMP, - ACTIONS(6727), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6729), 1, + ACTIONS(6684), 1, anon_sym_extends, - ACTIONS(5796), 12, + ACTIONS(5305), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -278886,7 +280360,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5798), 24, + ACTIONS(5307), 24, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -278911,10 +280385,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [181362] = 3, + [182962] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5294), 15, + ACTIONS(5330), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278930,7 +280404,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5296), 24, + ACTIONS(5109), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278955,10 +280429,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181409] = 3, + [183009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 15, + ACTIONS(5095), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278974,7 +280448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5111), 24, + ACTIONS(5097), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278999,77 +280473,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181456] = 26, + [183056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(2055), 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(2057), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4831), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 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_extends, + anon_sym_LBRACE_PIPE, + [183103] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5285), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6661), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5287), 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, - ACTIONS(6669), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6733), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [183150] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5749), 1, + anon_sym_LBRACK, + ACTIONS(5755), 1, + anon_sym_DOT, + ACTIONS(6148), 1, + anon_sym_QMARK_DOT, + ACTIONS(2055), 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, - ACTIONS(6649), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(2057), 21, + 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, - ACTIONS(6667), 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, - [181549] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [183203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 15, + ACTIONS(2237), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279085,7 +280627,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5076), 24, + ACTIONS(2239), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279110,10 +280652,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181596] = 3, + [183250] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 15, + ACTIONS(5099), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279129,7 +280671,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 24, + ACTIONS(5101), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279154,35 +280696,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181643] = 6, + [183297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 1, - anon_sym_EQ, - ACTIONS(5058), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5061), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(5293), 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(1990), 21, + ACTIONS(5295), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -279201,10 +280738,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [181696] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [183344] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 15, + ACTIONS(5103), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279220,7 +280759,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 24, + ACTIONS(5105), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279245,19 +280784,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181743] = 6, + [183391] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, - anon_sym_extends, - ACTIONS(5068), 2, - anon_sym_RPAREN, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5071), 2, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, anon_sym_AMP, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6738), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [183484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3842), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -279265,15 +280864,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(3848), 22, + ACTIONS(3846), 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, @@ -279292,13 +280893,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [181796] = 4, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [183531] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_EQ, - ACTIONS(5046), 14, + ACTIONS(5113), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -279312,11 +280914,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 24, + ACTIONS(5115), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -279337,64 +280938,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [181845] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4729), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [181912] = 3, + anon_sym_LBRACE_PIPE, + [183578] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2267), 15, + ACTIONS(2964), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279410,7 +280958,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2269), 24, + ACTIONS(2962), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279435,10 +280983,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181959] = 3, + [183625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 15, + ACTIONS(5281), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279454,7 +281002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 24, + ACTIONS(5283), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279479,10 +281027,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182006] = 3, + [183672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 15, + ACTIONS(5136), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279498,7 +281046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2160), 24, + ACTIONS(5132), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279523,13 +281071,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182053] = 4, + [183719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6627), 1, - anon_sym_EQ, - ACTIONS(5164), 14, + ACTIONS(5190), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -279543,11 +281090,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 24, + ACTIONS(5192), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -279568,77 +281114,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [182102] = 26, + anon_sym_LBRACE_PIPE, + [183766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(4885), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6661), 1, anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6735), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(4887), 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(6667), 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, - [182195] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [183813] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4947), 15, + ACTIONS(5277), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279654,7 +281178,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4949), 24, + ACTIONS(5279), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279679,10 +281203,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182242] = 3, + [183860] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5249), 15, + ACTIONS(5194), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279698,7 +281222,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5251), 24, + ACTIONS(5196), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279723,19 +281247,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182289] = 4, + [183907] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4732), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [183974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6560), 1, + ACTIONS(4919), 1, anon_sym_EQ, - ACTIONS(1986), 14, + ACTIONS(6334), 1, + anon_sym_QMARK, + ACTIONS(5420), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4917), 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, @@ -279743,11 +281326,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1990), 24, + ACTIONS(4921), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -279767,86 +281348,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [182338] = 26, + [184027] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - ACTIONS(6737), 1, + ACTIONS(6740), 1, anon_sym_COLON, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [182431] = 3, + [184120] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5257), 15, + ACTIONS(6742), 1, + anon_sym_LPAREN, + ACTIONS(6745), 1, + anon_sym_COLON, + ACTIONS(6747), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3842), 12, 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, @@ -279854,10 +281438,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5259), 24, + ACTIONS(3846), 23, + 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, @@ -279877,12 +281462,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, - [182478] = 3, + [184173] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 15, + ACTIONS(5273), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279898,7 +281481,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5360), 24, + ACTIONS(5275), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -279923,17 +281506,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182525] = 6, + [184220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, - anon_sym_extends, - ACTIONS(6694), 1, - anon_sym_LBRACK, - ACTIONS(5237), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5362), 13, + ACTIONS(5269), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279943,14 +281519,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(5364), 22, + ACTIONS(5271), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -279969,11 +281548,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, - [182578] = 3, + [184267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 15, + ACTIONS(5001), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -279989,7 +281569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5368), 24, + ACTIONS(4999), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280014,56 +281594,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182625] = 3, + [184314] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5269), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, anon_sym_in, + ACTIONS(6645), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, anon_sym_AMP, + ACTIONS(6659), 1, anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6750), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5271), 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(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6665), 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, - [182672] = 4, + [184407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_AMP, - ACTIONS(5960), 14, + ACTIONS(2968), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280073,12 +281674,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(5962), 24, + ACTIONS(2966), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280103,60 +281705,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182721] = 3, + [184454] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, anon_sym_in, + ACTIONS(6645), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, anon_sym_AMP, + ACTIONS(6659), 1, anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6752), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5300), 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(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6665), 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, - [182768] = 6, + [184547] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, + ACTIONS(5224), 1, + anon_sym_extends, + ACTIONS(4905), 2, + anon_sym_RPAREN, + anon_sym_LBRACK, + ACTIONS(4908), 2, anon_sym_AMP, - ACTIONS(6727), 1, anon_sym_PIPE, - ACTIONS(6729), 1, - anon_sym_extends, - ACTIONS(5956), 12, + ACTIONS(3842), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280169,12 +281796,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5958), 24, + ACTIONS(3846), 22, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -280193,56 +281819,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [182821] = 4, + [184600] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6443), 1, - anon_sym_is, - ACTIONS(4887), 14, - anon_sym_STAR, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, anon_sym_BANG, + ACTIONS(6161), 1, + anon_sym_as, + ACTIONS(6463), 1, anon_sym_in, + ACTIONS(6465), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6469), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6471), 1, + anon_sym_AMP_AMP, + ACTIONS(6477), 1, anon_sym_AMP, + ACTIONS(6479), 1, anon_sym_PIPE, + ACTIONS(6483), 1, + anon_sym_STAR_STAR, + ACTIONS(6487), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6754), 1, + anon_sym_RBRACK, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6473), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6461), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6467), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 24, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6485), 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, - [182870] = 3, + [184693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 15, + ACTIONS(5265), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280258,7 +281905,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5170), 24, + ACTIONS(5267), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280283,91 +281930,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182917] = 26, + [184740] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(6161), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6463), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6465), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6469), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6471), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6477), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6479), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6483), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6487), 1, anon_sym_QMARK_QMARK, - ACTIONS(6739), 1, - anon_sym_COLON, - STATE(5082), 1, + ACTIONS(6756), 1, + anon_sym_RBRACK, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6473), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6481), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6461), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6467), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6475), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6485), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [183010] = 7, + [184833] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, + ACTIONS(6758), 1, + anon_sym_LPAREN, + ACTIONS(6761), 1, + anon_sym_COLON, + ACTIONS(6763), 2, anon_sym_LT, - ACTIONS(4885), 1, - anon_sym_DOT, - ACTIONS(6741), 1, - anon_sym_is, - STATE(2359), 1, - sym_type_arguments, - ACTIONS(4883), 13, + anon_sym_QMARK, + ACTIONS(5289), 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, @@ -280375,11 +282020,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3908), 22, + ACTIONS(5291), 23, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_EQ_GT, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -280397,11 +282044,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [183065] = 3, + [184886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2283), 15, + ACTIONS(2067), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280417,7 +282063,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2285), 24, + ACTIONS(2065), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280442,24 +282088,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183112] = 6, + [184933] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, - anon_sym_extends, - ACTIONS(5068), 2, - anon_sym_COMMA, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(5071), 3, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6766), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [185026] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6696), 1, anon_sym_AMP, + ACTIONS(6698), 1, anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(6700), 1, + anon_sym_extends, + ACTIONS(5218), 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, @@ -280467,9 +282178,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 21, + ACTIONS(5220), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -280489,24 +282202,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [183165] = 6, + [185079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, + ACTIONS(4658), 1, anon_sym_EQ, - ACTIONS(6627), 1, - anon_sym_QMARK, - ACTIONS(5552), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5164), 13, + ACTIONS(3842), 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, @@ -280514,9 +282222,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 21, + ACTIONS(3846), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -280536,16 +282246,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [183218] = 6, + anon_sym_extends, + [185128] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - anon_sym_AMP, - ACTIONS(6696), 1, - anon_sym_PIPE, - ACTIONS(6698), 1, - anon_sym_extends, - ACTIONS(5956), 13, + ACTIONS(5218), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280555,11 +282260,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(5958), 23, + ACTIONS(5220), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280582,11 +282289,146 @@ 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, - [183271] = 3, + [185175] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2257), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6768), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [185268] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6770), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [185361] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5239), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280602,7 +282444,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2259), 24, + ACTIONS(5119), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280627,22 +282469,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183318] = 6, + [185408] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6743), 1, - anon_sym_LPAREN, - ACTIONS(6746), 1, - anon_sym_COLON, - ACTIONS(6748), 2, + ACTIONS(6671), 1, + anon_sym_AMP, + ACTIONS(6673), 1, + anon_sym_PIPE, + ACTIONS(6675), 1, + anon_sym_extends, + ACTIONS(5803), 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, - ACTIONS(3844), 12, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5805), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [185461] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5204), 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, @@ -280650,11 +282535,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 23, - sym__automatic_semicolon, + ACTIONS(5206), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -280674,64 +282558,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [183371] = 13, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [185508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4757), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6671), 1, + anon_sym_AMP, + ACTIONS(5797), 14, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - 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(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [183438] = 3, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5799), 24, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [185557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 15, + ACTIONS(5198), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280747,7 +282624,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2207), 24, + ACTIONS(5200), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280772,10 +282649,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183485] = 3, + [185604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 15, + ACTIONS(5222), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280791,7 +282668,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2249), 24, + ACTIONS(5224), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280816,10 +282693,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183532] = 3, + [185651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 15, + ACTIONS(5241), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280835,7 +282712,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2956), 24, + ACTIONS(5243), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280860,10 +282737,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183579] = 3, + [185698] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 15, + ACTIONS(5245), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280879,7 +282756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 24, + ACTIONS(5247), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280904,10 +282781,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183626] = 3, + [185745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 15, + ACTIONS(2956), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -280923,7 +282800,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5282), 24, + ACTIONS(2954), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -280948,13 +282825,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183673] = 4, + [185792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, - anon_sym_AMP, - ACTIONS(5960), 13, + ACTIONS(5360), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -280962,14 +282838,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(5962), 25, + ACTIONS(5362), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -280991,14 +282867,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, - [183722] = 3, + anon_sym_LBRACE_PIPE, + [185839] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 15, + ACTIONS(6597), 1, + anon_sym_is, + ACTIONS(4885), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -281012,11 +282889,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 24, + ACTIONS(4887), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -281036,13 +282914,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [183769] = 3, + [185888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5302), 15, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(5797), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -281050,14 +282928,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(5304), 24, + ACTIONS(5799), 25, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -281079,12 +282957,66 @@ 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_LBRACE_PIPE, - [183816] = 3, + [185937] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4735), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [186004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281100,7 +283032,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5380), 24, + ACTIONS(4969), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281125,77 +283057,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183863] = 26, + [186051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6696), 1, anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6751), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [183956] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5344), 15, + ACTIONS(5797), 14, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281205,13 +283072,12 @@ 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(5346), 24, + ACTIONS(5799), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281236,10 +283102,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184003] = 3, + [186100] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5340), 15, + ACTIONS(5289), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281255,7 +283121,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5342), 24, + ACTIONS(5291), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281280,10 +283146,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184050] = 3, + [186147] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2217), 15, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(4829), 1, + anon_sym_LBRACK, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(5145), 1, + anon_sym_QMARK_DOT, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, + anon_sym_LT, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6772), 1, + anon_sym_COLON, + STATE(4916), 1, + sym_type_arguments, + ACTIONS(5147), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2351), 2, + sym_template_string, + sym_arguments, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [186240] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281299,7 +283232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2219), 24, + ACTIONS(4969), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281324,10 +283257,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184097] = 3, + [186287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5160), 15, + ACTIONS(2311), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281343,7 +283276,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 24, + ACTIONS(2309), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281368,15 +283301,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184144] = 5, + [186334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(2944), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -281384,16 +283314,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(5895), 25, + ACTIONS(2942), 24, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -281414,104 +283344,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [184195] = 26, + anon_sym_LBRACE_PIPE, + [186381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(5253), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6661), 1, anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6753), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(5255), 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(6667), 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, - [184288] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [186428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5052), 1, - anon_sym_LBRACK, - ACTIONS(5360), 1, - anon_sym_extends, - ACTIONS(6071), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5055), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(5128), 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(5050), 20, + ACTIONS(5130), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -281530,10 +283431,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [184345] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [186475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 15, + ACTIONS(4933), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281549,7 +283452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 24, + ACTIONS(4935), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281574,17 +283477,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184392] = 6, + [186522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, - anon_sym_AMP, - ACTIONS(6681), 1, - anon_sym_PIPE, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(5261), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -281592,16 +283490,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(5150), 24, + ACTIONS(5263), 24, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -281621,10 +283519,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [184445] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [186569] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5152), 15, + ACTIONS(4975), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281640,7 +283540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 24, + ACTIONS(4977), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281665,10 +283565,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184492] = 3, + [186616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5318), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281684,7 +283584,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5320), 24, + ACTIONS(4969), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281709,77 +283609,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184539] = 26, + [186663] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - ACTIONS(6755), 1, + ACTIONS(6774), 1, anon_sym_COLON, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [184632] = 3, + [186756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 15, + ACTIONS(4979), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281795,7 +283695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5292), 24, + ACTIONS(4981), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281820,57 +283720,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184679] = 6, + [186803] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(6557), 1, - anon_sym_QMARK, - ACTIONS(5572), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(5046), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5050), 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, - [184732] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5261), 15, + ACTIONS(2219), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281886,7 +283739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5263), 24, + ACTIONS(2217), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281911,10 +283764,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184779] = 3, + [186850] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2229), 15, + ACTIONS(5368), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281930,7 +283783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2231), 24, + ACTIONS(5370), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281955,10 +283808,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184826] = 3, + [186897] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 15, + ACTIONS(5231), 1, + anon_sym_extends, + ACTIONS(6726), 1, + anon_sym_LBRACK, + ACTIONS(5229), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5364), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -281968,17 +283828,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(4977), 24, + ACTIONS(5366), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -281997,12 +283854,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, - [184873] = 3, + [186950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2184), 15, + ACTIONS(5214), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -282018,7 +283874,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2186), 24, + ACTIONS(5216), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -282043,23 +283899,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184920] = 6, + [186997] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 1, - anon_sym_LBRACK, - ACTIONS(4889), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5081), 3, - anon_sym_GT, + ACTIONS(6690), 1, anon_sym_AMP, + ACTIONS(6692), 1, anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(6694), 1, + anon_sym_extends, + ACTIONS(5218), 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, @@ -282067,11 +283921,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 22, - sym__automatic_semicolon, + ACTIONS(5220), 24, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282090,10 +283946,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [184973] = 3, + [187050] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 15, + ACTIONS(4971), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -282109,7 +283965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5066), 24, + ACTIONS(4973), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -282134,10 +283990,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [185020] = 3, + [187097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 15, + ACTIONS(4967), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -282153,7 +284009,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5032), 24, + ACTIONS(4969), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -282178,104 +284034,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [185067] = 26, + [187144] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(620), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4827), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4829), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4833), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5145), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5153), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - ACTIONS(6757), 1, + ACTIONS(6776), 1, anon_sym_COLON, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [185160] = 8, + [187237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(2956), 1, - anon_sym_extends, - ACTIONS(5058), 1, - anon_sym_LBRACK, - ACTIONS(6075), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5061), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1986), 11, + ACTIONS(4987), 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(1990), 20, + ACTIONS(4989), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282294,125 +284143,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185217] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4739), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [185284] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4736), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [185351] = 6, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [187284] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5166), 1, - anon_sym_EQ, - ACTIONS(6630), 1, - anon_sym_COLON, - ACTIONS(5552), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5164), 14, + ACTIONS(6731), 1, + anon_sym_is, + ACTIONS(4885), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282427,11 +284165,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5168), 21, + ACTIONS(4887), 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, @@ -282449,33 +284188,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185404] = 6, + anon_sym_extends, + [187332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6759), 1, - anon_sym_LPAREN, - ACTIONS(6762), 1, - anon_sym_COLON, - ACTIONS(6764), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(5261), 12, + ACTIONS(6778), 1, + anon_sym_AMP, + ACTIONS(6780), 1, + anon_sym_PIPE, + ACTIONS(6782), 1, + anon_sym_extends, + ACTIONS(5269), 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(5263), 23, + ACTIONS(5271), 23, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -282496,12 +284235,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185457] = 3, + [187384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5322), 15, + ACTIONS(6784), 1, + anon_sym_AMP, + ACTIONS(5996), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -282509,17 +284249,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(4953), 24, + ACTIONS(5998), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282539,58 +284279,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [185504] = 4, + [187432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, - anon_sym_LBRACK, - ACTIONS(5370), 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, + ACTIONS(6778), 1, anon_sym_AMP, + ACTIONS(6780), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5372), 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_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(6782), 1, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [185553] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6479), 1, - anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(5218), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282599,13 +284297,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(4889), 24, + ACTIONS(5220), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -282629,35 +284325,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [185602] = 6, + [187484] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, - anon_sym_extends, - ACTIONS(5078), 2, - anon_sym_COMMA, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, anon_sym_LBRACK, - ACTIONS(5081), 3, - anon_sym_GT, + ACTIONS(6788), 1, + anon_sym_COMMA, + ACTIONS(6790), 1, + anon_sym_RBRACE, + STATE(5171), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6792), 2, + sym_number, + sym_private_property_identifier, + STATE(5166), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5961), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(6786), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [187552] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6778), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(5797), 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_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 21, + ACTIONS(5799), 24, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282676,13 +284422,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [185655] = 3, + anon_sym_extends, + [187600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5328), 15, + ACTIONS(6778), 1, + anon_sym_AMP, + ACTIONS(6780), 1, + anon_sym_PIPE, + ACTIONS(6782), 1, + anon_sym_extends, + ACTIONS(5803), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -282690,16 +284441,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(5330), 24, + ACTIONS(5805), 23, + 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, @@ -282719,14 +284469,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, - [185702] = 3, + [187652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5332), 15, + ACTIONS(6794), 1, + sym_identifier, + ACTIONS(4774), 16, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -282740,10 +284490,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5334), 24, - anon_sym_as, - anon_sym_COMMA, + anon_sym_instanceof, + ACTIONS(4778), 21, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -282759,29 +284510,183 @@ 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, - [185749] = 6, + [187700] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6433), 1, + anon_sym_LBRACK, + ACTIONS(6706), 1, + anon_sym_STAR, + ACTIONS(6712), 1, + anon_sym_async, + ACTIONS(4806), 2, anon_sym_COMMA, - ACTIONS(5078), 2, + anon_sym_RBRACE, + ACTIONS(6714), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6718), 2, + anon_sym_get, + anon_sym_set, + STATE(3944), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [187766] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5081), 3, - anon_sym_GT, + ACTIONS(6706), 1, + anon_sym_STAR, + ACTIONS(6712), 1, + anon_sym_async, + ACTIONS(6716), 1, + anon_sym_readonly, + ACTIONS(4806), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6714), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6718), 2, + anon_sym_get, + anon_sym_set, + STATE(3944), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [187834] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6706), 1, + anon_sym_STAR, + ACTIONS(4806), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6708), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6710), 2, + anon_sym_get, + anon_sym_set, + STATE(4563), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [187898] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6784), 1, anon_sym_AMP, + ACTIONS(6796), 1, anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(6798), 1, + anon_sym_extends, + ACTIONS(5305), 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, @@ -282789,11 +284694,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 22, - sym__automatic_semicolon, + ACTIONS(5307), 23, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -282812,79 +284718,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185802] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6767), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [185895] = 3, + [187950] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5314), 15, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(5474), 1, + anon_sym_RBRACK, + ACTIONS(6406), 1, + anon_sym_COMMA, + ACTIONS(2002), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -282898,9 +284742,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5316), 24, + ACTIONS(2006), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -282921,48 +284764,36 @@ 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, - [185942] = 12, + [188002] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6769), 1, - anon_sym_LT, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(5117), 13, + ACTIONS(6800), 1, + anon_sym_AMP, + ACTIONS(6802), 1, + anon_sym_PIPE, + ACTIONS(6804), 1, + anon_sym_extends, + ACTIONS(5803), 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(5119), 15, + ACTIONS(5805), 23, anon_sym_as, - anon_sym_COLON, + 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, anon_sym_GT_GT_GT, @@ -282976,12 +284807,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [186007] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [188054] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, + ACTIONS(6800), 1, anon_sym_AMP, - ACTIONS(5779), 13, + ACTIONS(5797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282995,14 +284829,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5781), 25, + ACTIONS(5799), 24, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -283021,83 +284854,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [186056] = 26, + [188102] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, + ACTIONS(6800), 1, + anon_sym_AMP, + ACTIONS(6802), 1, + anon_sym_PIPE, + ACTIONS(6804), 1, + anon_sym_extends, + ACTIONS(5218), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6772), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(5220), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6667), 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, - [186149] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [188154] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6679), 1, + ACTIONS(5224), 1, + anon_sym_extends, + ACTIONS(4908), 2, anon_sym_AMP, - ACTIONS(6681), 1, anon_sym_PIPE, - ACTIONS(6683), 1, - anon_sym_extends, - ACTIONS(5038), 12, + ACTIONS(4905), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3842), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283110,13 +284925,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 24, + ACTIONS(3846), 20, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283135,37 +284946,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186202] = 6, + [188206] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6557), 1, - anon_sym_EQ, - ACTIONS(5052), 3, + ACTIONS(4833), 1, + anon_sym_DOT, + ACTIONS(4835), 1, + anon_sym_QMARK_DOT, + ACTIONS(4987), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4989), 4, anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5055), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 11, + ACTIONS(2055), 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_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 21, + ACTIONS(2057), 18, anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -283182,12 +284993,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186255] = 3, + [188260] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5310), 15, + ACTIONS(5186), 1, + anon_sym_EQ, + ACTIONS(5471), 1, + anon_sym_RBRACK, + ACTIONS(6451), 1, + anon_sym_COMMA, + ACTIONS(5184), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -283201,9 +285017,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5312), 24, + ACTIONS(5188), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -283224,26 +285039,23 @@ 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, - [186302] = 6, + [188312] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6449), 1, + ACTIONS(4919), 1, anon_sym_EQ, - ACTIONS(6458), 1, - anon_sym_QMARK, - ACTIONS(6451), 3, + ACTIONS(5420), 1, + anon_sym_RBRACK, + ACTIONS(6421), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3844), 13, + ACTIONS(4917), 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, @@ -283251,7 +285063,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 21, + ACTIONS(4921), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -283273,102 +285085,256 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186355] = 26, + [188364] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(818), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5425), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5430), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5432), 1, anon_sym_QMARK_DOT, - ACTIONS(5751), 1, + ACTIONS(5438), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6645), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6647), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - ACTIONS(6774), 1, - anon_sym_COLON, - STATE(5082), 1, + STATE(4925), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(3022), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [186448] = 6, + [188454] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6806), 1, + anon_sym_STAR, + ACTIONS(6808), 1, + anon_sym_async, + ACTIONS(6814), 1, + anon_sym_abstract, + ACTIONS(6810), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6812), 2, + anon_sym_get, + anon_sym_set, + STATE(3907), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 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(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [188518] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6818), 1, + anon_sym_static, + ACTIONS(6820), 1, + anon_sym_readonly, + ACTIONS(6822), 1, + anon_sym_abstract, + STATE(3826), 1, + sym_accessibility_modifier, + ACTIONS(6816), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4766), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4093), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 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(4750), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [188584] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(6433), 1, anon_sym_LBRACK, - ACTIONS(5223), 2, + ACTIONS(6824), 1, + anon_sym_STAR, + ACTIONS(6826), 1, + anon_sym_async, + ACTIONS(6832), 1, + anon_sym_abstract, + ACTIONS(6828), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6830), 2, + anon_sym_get, + anon_sym_set, + STATE(3908), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 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(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [188648] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5224), 1, anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, + ACTIONS(4905), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4908), 3, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(3842), 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_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 22, - sym__automatic_semicolon, + ACTIONS(3846), 20, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283387,23 +285353,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186501] = 6, + [188700] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, - anon_sym_COMMA, - ACTIONS(5068), 2, - anon_sym_LBRACK, + ACTIONS(4887), 1, anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, + ACTIONS(4902), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3844), 11, + ACTIONS(4899), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3842), 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, @@ -283411,11 +285378,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 22, - sym__automatic_semicolon, + ACTIONS(3846), 20, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283434,23 +285399,180 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186554] = 5, + [188752] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5068), 3, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(4800), 1, anon_sym_COMMA, + ACTIONS(4803), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5071), 3, - anon_sym_GT, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6708), 2, + sym_number, + sym_private_property_identifier, + STATE(4563), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [188816] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6433), 1, + anon_sym_LBRACK, + ACTIONS(4811), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [188882] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_LBRACK, + ACTIONS(6788), 1, + anon_sym_COMMA, + ACTIONS(6836), 1, + anon_sym_RBRACE, + STATE(5156), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6792), 2, + sym_number, + sym_private_property_identifier, + STATE(5136), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5961), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(6834), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [188950] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6784), 1, anon_sym_AMP, + ACTIONS(6796), 1, anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(6798), 1, + anon_sym_extends, + ACTIONS(5218), 12, 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, @@ -283458,9 +285580,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 21, + ACTIONS(5220), 23, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283479,35 +285604,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [186605] = 6, + [189002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6725), 1, + ACTIONS(5001), 3, + anon_sym_QMARK, anon_sym_AMP, - ACTIONS(6727), 1, anon_sym_PIPE, - ACTIONS(6729), 1, + ACTIONS(4999), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5348), 12, + ACTIONS(3842), 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_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 24, + ACTIONS(3846), 20, 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, @@ -283526,15 +285649,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [186658] = 4, + [189052] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(5912), 1, - anon_sym_DOT, - ACTIONS(5194), 15, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, + anon_sym_async, + ACTIONS(6429), 1, + anon_sym_readonly, + ACTIONS(4811), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6427), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6431), 2, + anon_sym_get, + anon_sym_set, + STATE(3924), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [189120] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6784), 1, + anon_sym_AMP, + ACTIONS(5797), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -283542,17 +285717,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(5196), 23, + ACTIONS(5799), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -283571,13 +285747,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [186707] = 3, + [189168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5306), 15, + ACTIONS(6838), 1, + sym_identifier, + ACTIONS(4774), 16, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -283591,10 +285768,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 24, - anon_sym_as, - anon_sym_COMMA, + anon_sym_instanceof, + ACTIONS(4778), 21, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -283610,29 +285788,76 @@ 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, - [186754] = 5, + [189216] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5078), 3, - anon_sym_COMMA, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6411), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5081), 3, - anon_sym_GT, + ACTIONS(4811), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6417), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6419), 2, + anon_sym_get, + anon_sym_set, + STATE(4484), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [189280] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6784), 1, anon_sym_AMP, + ACTIONS(6796), 1, anon_sym_PIPE, - ACTIONS(3844), 12, + ACTIONS(6798), 1, + anon_sym_extends, + ACTIONS(5803), 12, 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, @@ -283640,9 +285865,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3848), 21, + ACTIONS(5805), 23, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -283661,95 +285889,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [186805] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6776), 1, - anon_sym_COLON, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [186898] = 7, + [189332] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4837), 1, - anon_sym_QMARK_DOT, - ACTIONS(5194), 3, - anon_sym_GT, + ACTIONS(6784), 1, anon_sym_AMP, + ACTIONS(6796), 1, anon_sym_PIPE, - ACTIONS(5196), 3, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(6798), 1, anon_sym_extends, - ACTIONS(2056), 12, + ACTIONS(5936), 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, @@ -283757,10 +285911,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2058), 19, + ACTIONS(5938), 23, anon_sym_as, + 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, @@ -283777,12 +285935,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186953] = 3, + [189384] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 15, + ACTIONS(6778), 1, + anon_sym_AMP, + ACTIONS(6780), 1, + anon_sym_PIPE, + ACTIONS(6057), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -283790,16 +285951,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(5326), 24, + ACTIONS(6059), 24, + 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, @@ -283820,13 +285980,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [187000] = 4, + [189434] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4704), 1, - anon_sym_EQ, - ACTIONS(3844), 14, + ACTIONS(6784), 1, + anon_sym_AMP, + ACTIONS(6796), 1, + anon_sym_PIPE, + ACTIONS(6798), 1, + anon_sym_extends, + ACTIONS(5269), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283835,19 +285998,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(3848), 24, + ACTIONS(5271), 23, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -283865,114 +286026,164 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [187049] = 26, + [189486] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(4959), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(4963), 1, anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, + ACTIONS(5048), 1, anon_sym_QMARK_DOT, - ACTIONS(6191), 1, + ACTIONS(5058), 1, + anon_sym_BANG, + ACTIONS(5850), 1, anon_sym_as, - ACTIONS(6584), 1, + ACTIONS(6641), 1, anon_sym_in, - ACTIONS(6586), 1, + ACTIONS(6645), 1, anon_sym_LT, - ACTIONS(6590), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6592), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6600), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6608), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - ACTIONS(6778), 1, - anon_sym_RBRACK, - STATE(5082), 1, + STATE(5086), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6594), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6602), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2579), 2, sym_template_string, sym_arguments, - ACTIONS(6582), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6588), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6596), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6606), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [187142] = 12, + [189576] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(882), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(5743), 1, + anon_sym_BANG, + ACTIONS(5745), 1, anon_sym_LPAREN, - ACTIONS(4831), 1, + ACTIONS(5749), 1, anon_sym_LBRACK, - ACTIONS(4835), 1, + ACTIONS(5755), 1, anon_sym_DOT, - ACTIONS(4993), 1, + ACTIONS(5757), 1, anon_sym_QMARK_DOT, - ACTIONS(6769), 1, + ACTIONS(5850), 1, + anon_sym_as, + ACTIONS(6641), 1, + anon_sym_in, + ACTIONS(6645), 1, anon_sym_LT, - STATE(5082), 1, + ACTIONS(6649), 1, + anon_sym_QMARK, + ACTIONS(6651), 1, + anon_sym_AMP_AMP, + ACTIONS(6657), 1, + anon_sym_AMP, + ACTIONS(6659), 1, + anon_sym_PIPE, + ACTIONS(6663), 1, + anon_sym_STAR_STAR, + ACTIONS(6667), 1, + anon_sym_QMARK_QMARK, + STATE(5020), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2299), 2, + ACTIONS(6653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3448), 2, sym_template_string, sym_arguments, - ACTIONS(5117), 13, + ACTIONS(6639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [189666] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6784), 1, + anon_sym_AMP, + ACTIONS(6796), 1, + anon_sym_PIPE, + ACTIONS(6057), 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(5119), 15, + ACTIONS(6059), 24, anon_sym_as, - anon_sym_COLON, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -283986,176 +286197,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [187207] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [189716] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(6191), 1, - anon_sym_as, - ACTIONS(6584), 1, - anon_sym_in, - ACTIONS(6586), 1, - anon_sym_LT, - ACTIONS(6590), 1, - anon_sym_QMARK, - ACTIONS(6592), 1, - anon_sym_AMP_AMP, - ACTIONS(6598), 1, + ACTIONS(5001), 2, anon_sym_AMP, - ACTIONS(6600), 1, anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_STAR_STAR, - ACTIONS(6608), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6780), 1, - anon_sym_RBRACK, - STATE(5082), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2299), 2, - sym_template_string, - sym_arguments, - ACTIONS(6582), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6588), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6606), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [187300] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1988), 1, - anon_sym_EQ, - ACTIONS(6560), 1, - anon_sym_QMARK, - ACTIONS(5549), 3, + ACTIONS(4999), 4, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1986), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(1990), 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, - [187353] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5166), 1, - anon_sym_EQ, - ACTIONS(5552), 1, anon_sym_RBRACK, - ACTIONS(6630), 1, - anon_sym_COMMA, - ACTIONS(5164), 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(5168), 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, - [187405] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6782), 1, - anon_sym_AMP, - ACTIONS(6784), 1, - anon_sym_PIPE, - ACTIONS(6786), 1, anon_sym_extends, - ACTIONS(5956), 12, + ACTIONS(3842), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284168,56 +286225,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5958), 23, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [187457] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - anon_sym_extends, - ACTIONS(5078), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5081), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3848), 20, + ACTIONS(3846), 20, anon_sym_as, anon_sym_LPAREN, anon_sym_DOT, @@ -284238,358 +286246,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [187509] = 4, + [189766] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 1, - anon_sym_AMP, - ACTIONS(5960), 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5962), 24, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(620), 1, anon_sym_BQUOTE, - anon_sym_extends, - [187557] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 1, - anon_sym_extends, - ACTIONS(5071), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5068), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3844), 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(3848), 20, - anon_sym_as, + ACTIONS(4827), 1, anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [187609] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5172), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5170), 4, - anon_sym_COMMA, + ACTIONS(4829), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3844), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3848), 20, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(4833), 1, anon_sym_DOT, + ACTIONS(5145), 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, - [187659] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4889), 1, - anon_sym_extends, - ACTIONS(5081), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5078), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3844), 12, - anon_sym_STAR, + ACTIONS(5153), 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(3848), 20, + ACTIONS(5850), 1, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [187711] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6782), 1, - anon_sym_AMP, - ACTIONS(6784), 1, - anon_sym_PIPE, - ACTIONS(6786), 1, - anon_sym_extends, - ACTIONS(5348), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(6641), 1, 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(5350), 23, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [187763] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(620), 1, - anon_sym_BQUOTE, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(4831), 1, - anon_sym_LBRACK, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4985), 1, - anon_sym_BANG, - ACTIONS(4993), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, anon_sym_LT, - ACTIONS(6651), 1, + ACTIONS(6649), 1, anon_sym_QMARK, - ACTIONS(6653), 1, + ACTIONS(6651), 1, anon_sym_AMP_AMP, - ACTIONS(6659), 1, + ACTIONS(6657), 1, anon_sym_AMP, - ACTIONS(6661), 1, + ACTIONS(6659), 1, anon_sym_PIPE, - ACTIONS(6665), 1, + ACTIONS(6663), 1, anon_sym_STAR_STAR, - ACTIONS(6669), 1, + ACTIONS(6667), 1, anon_sym_QMARK_QMARK, - STATE(5082), 1, + STATE(4916), 1, sym_type_arguments, - ACTIONS(5015), 2, + ACTIONS(5147), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6655), 2, + ACTIONS(6653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6663), 2, + ACTIONS(6661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2299), 2, + STATE(2351), 2, sym_template_string, sym_arguments, - ACTIONS(6643), 3, + ACTIONS(6639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6649), 3, + ACTIONS(6647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6657), 3, + ACTIONS(6655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6667), 5, + ACTIONS(6665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [187853] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(4786), 1, - anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6704), 2, - sym_number, - sym_private_property_identifier, - STATE(4443), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [187917] = 4, + [189856] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6788), 1, - sym_identifier, - ACTIONS(4802), 16, + ACTIONS(6778), 1, + anon_sym_AMP, + ACTIONS(6780), 1, + anon_sym_PIPE, + ACTIONS(6782), 1, + anon_sym_extends, + ACTIONS(5305), 12, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -284597,15 +286329,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, - anon_sym_instanceof, - ACTIONS(4806), 21, + ACTIONS(5307), 23, sym__automatic_semicolon, + anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -284623,19 +286353,20 @@ 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, - [187965] = 6, + [189908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(6800), 1, anon_sym_AMP, - ACTIONS(6792), 1, + ACTIONS(6802), 1, anon_sym_PIPE, - ACTIONS(6794), 1, + ACTIONS(6804), 1, anon_sym_extends, - ACTIONS(5038), 12, + ACTIONS(5936), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284648,7 +286379,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 23, + ACTIONS(5938), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -284672,16 +286403,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [188017] = 6, + [189960] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 1, + ACTIONS(6778), 1, anon_sym_AMP, - ACTIONS(6784), 1, - anon_sym_PIPE, - ACTIONS(6786), 1, - anon_sym_extends, - ACTIONS(5038), 12, + ACTIONS(5996), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284690,11 +286417,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 23, + ACTIONS(5998), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -284718,12 +286446,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [188069] = 4, + anon_sym_extends, + [190008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 1, + ACTIONS(6778), 1, anon_sym_AMP, - ACTIONS(5779), 13, + ACTIONS(6780), 1, + anon_sym_PIPE, + ACTIONS(6782), 1, + anon_sym_extends, + ACTIONS(5936), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284732,12 +286465,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5781), 24, + ACTIONS(5938), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -284761,13 +286493,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [188117] = 4, + [190060] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(6800), 1, anon_sym_AMP, - ACTIONS(5779), 13, + ACTIONS(5996), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284781,7 +286512,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5781), 24, + ACTIONS(5998), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -284806,35 +286537,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [188165] = 6, + [190108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(4887), 1, + anon_sym_extends, + ACTIONS(4899), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(4902), 3, + anon_sym_QMARK, anon_sym_AMP, - ACTIONS(6792), 1, anon_sym_PIPE, - ACTIONS(6794), 1, - anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(3842), 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_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5150), 23, + ACTIONS(3846), 20, 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, @@ -284852,16 +286583,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [188217] = 6, + [190160] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 1, + ACTIONS(6800), 1, anon_sym_AMP, - ACTIONS(6784), 1, + ACTIONS(6802), 1, anon_sym_PIPE, - ACTIONS(6786), 1, + ACTIONS(6804), 1, anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(5305), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284874,13 +286605,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5150), 23, - sym__automatic_semicolon, + ACTIONS(5307), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -284898,14 +286629,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [188269] = 5, + [190212] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(6800), 1, anon_sym_AMP, - ACTIONS(6792), 1, + ACTIONS(6802), 1, anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(6057), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284918,7 +286649,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5895), 24, + ACTIONS(6059), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -284943,16 +286674,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [188319] = 6, + [190262] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(6800), 1, anon_sym_AMP, - ACTIONS(6792), 1, + ACTIONS(6802), 1, anon_sym_PIPE, - ACTIONS(6794), 1, + ACTIONS(6804), 1, anon_sym_extends, - ACTIONS(5796), 12, + ACTIONS(5269), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -284965,7 +286696,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5798), 23, + ACTIONS(5271), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -284989,14 +286720,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [188371] = 5, + [190314] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6782), 1, + ACTIONS(6840), 1, anon_sym_AMP, - ACTIONS(6784), 1, - anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(5996), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -285005,64 +286734,17 @@ static uint16_t ts_small_parse_table[] = { 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(5895), 24, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [188421] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6798), 1, anon_sym_PIPE, - ACTIONS(6800), 1, - anon_sym_extends, - ACTIONS(5348), 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(5350), 23, + ACTIONS(5998), 23, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, 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, @@ -285080,260 +286762,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [188473] = 25, + anon_sym_extends, + [190361] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5386), 1, - anon_sym_BANG, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(5392), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6842), 1, + anon_sym_RPAREN, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(5398), 1, - anon_sym_DOT, - ACTIONS(5400), 1, - anon_sym_QMARK_DOT, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, - anon_sym_LT, - ACTIONS(6651), 1, - anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5055), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2916), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [188563] = 6, + ACTIONS(6846), 1, + sym_this, + ACTIONS(6848), 1, + anon_sym_readonly, + STATE(3764), 1, + aux_sym_export_statement_repeat1, + STATE(3829), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4371), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2978), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5688), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [190434] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6798), 1, - anon_sym_PIPE, - ACTIONS(6800), 1, - anon_sym_extends, - ACTIONS(5956), 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(5958), 23, - anon_sym_as, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4741), 1, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [188615] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6782), 1, - anon_sym_AMP, - ACTIONS(6784), 1, - anon_sym_PIPE, - ACTIONS(6786), 1, - anon_sym_extends, - ACTIONS(5796), 12, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(3018), 6, 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(5798), 23, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [188667] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6804), 1, - anon_sym_static, - ACTIONS(6806), 1, - anon_sym_readonly, - ACTIONS(6808), 1, - anon_sym_abstract, - STATE(3834), 1, - sym_accessibility_modifier, - ACTIONS(6802), 2, sym_number, sym_private_property_identifier, - ACTIONS(4780), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4178), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 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(4760), 14, + anon_sym_PIPE_RBRACE, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188733] = 14, + [190491] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, - anon_sym_LBRACK, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(6814), 1, + ACTIONS(2646), 1, anon_sym_RBRACE, - STATE(5141), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 1, + anon_sym_STAR, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6816), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(5148), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5968), 3, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(6810), 19, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285344,46 +286922,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188801] = 13, + [190562] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6360), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6702), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6708), 1, - anon_sym_async, - ACTIONS(4820), 2, - anon_sym_COMMA, + ACTIONS(6852), 1, anon_sym_RBRACE, - ACTIONS(6710), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(6714), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(3940), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -285397,41 +286976,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188867] = 14, + [190631] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(6820), 1, - anon_sym_RBRACE, - STATE(5267), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6816), 2, + ACTIONS(6854), 1, + anon_sym_STAR, + ACTIONS(6856), 2, sym_number, sym_private_property_identifier, - STATE(5283), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5968), 3, + ACTIONS(6858), 2, + anon_sym_get, + anon_sym_set, + STATE(4423), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(6818), 19, + ACTIONS(4722), 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(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285439,8 +287015,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285451,32 +287025,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188935] = 5, + [190690] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6798), 1, - anon_sym_PIPE, - ACTIONS(5893), 12, + ACTIONS(2004), 1, + anon_sym_EQ, + ACTIONS(6406), 1, + anon_sym_of, + ACTIONS(6408), 1, + anon_sym_in, + ACTIONS(2002), 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(5895), 24, + ACTIONS(2006), 21, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -285495,91 +287070,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [188985] = 4, + [190741] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(5960), 13, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2646), 1, + anon_sym_RBRACE, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5962), 24, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, + ACTIONS(2946), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [190814] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 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_extends, - [189033] = 13, + ACTIONS(6846), 1, + sym_this, + ACTIONS(6848), 1, + anon_sym_readonly, + ACTIONS(6860), 1, + anon_sym_RPAREN, + STATE(3764), 1, + aux_sym_export_statement_repeat1, + STATE(3829), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4371), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2978), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5688), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [190887] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6360), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6362), 1, - anon_sym_async, - ACTIONS(4816), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6364), 2, + ACTIONS(6862), 1, + anon_sym_STAR, + ACTIONS(6864), 2, sym_number, sym_private_property_identifier, - ACTIONS(6366), 2, + ACTIONS(6866), 2, anon_sym_get, anon_sym_set, - STATE(3945), 3, + STATE(4417), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 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(4760), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -285593,34 +287231,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189099] = 6, + [190946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6798), 1, - anon_sym_PIPE, - ACTIONS(6800), 1, - anon_sym_extends, - ACTIONS(5148), 12, + ACTIONS(5186), 1, + anon_sym_EQ, + ACTIONS(6448), 1, + anon_sym_in, + ACTIONS(6451), 1, + anon_sym_of, + ACTIONS(5184), 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(5150), 23, + ACTIONS(5188), 21, anon_sym_as, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -285639,94 +287276,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [189151] = 4, + [190997] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6822), 1, - sym_identifier, - ACTIONS(4802), 16, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6868), 1, 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_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(4806), 21, + ACTIONS(6870), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6872), 2, + anon_sym_get, + anon_sym_set, + STATE(4439), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 9, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, 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, - [189199] = 14, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [191056] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6702), 1, + ACTIONS(6854), 1, anon_sym_STAR, - ACTIONS(6708), 1, + ACTIONS(6874), 1, anon_sym_async, - ACTIONS(6712), 1, - anon_sym_readonly, - ACTIONS(4820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6710), 2, + ACTIONS(6876), 2, sym_number, sym_private_property_identifier, - ACTIONS(6714), 2, + ACTIONS(6878), 2, anon_sym_get, anon_sym_set, - STATE(3940), 3, + STATE(3941), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 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(4760), 15, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285737,33 +287375,126 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189267] = 12, + [191117] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, + ACTIONS(2646), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6702), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(4820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6704), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(6706), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4443), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [191186] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4919), 1, + anon_sym_EQ, + ACTIONS(6334), 1, + anon_sym_in, + ACTIONS(6421), 1, + anon_sym_of, + ACTIONS(4917), 13, + 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(4921), 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, + [191237] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4729), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -285771,7 +287502,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285779,6 +287510,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285789,32 +287522,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189331] = 12, + [191294] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4726), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2106), 1, anon_sym_SQUOTE, - ACTIONS(6360), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(3016), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [191351] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(6824), 1, - anon_sym_STAR, - ACTIONS(6826), 1, + ACTIONS(6846), 1, + sym_this, + ACTIONS(6848), 1, + anon_sym_readonly, + ACTIONS(6880), 1, + anon_sym_RPAREN, + STATE(3764), 1, + aux_sym_export_statement_repeat1, + STATE(3829), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4371), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2978), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5688), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, anon_sym_async, - ACTIONS(6832), 1, - anon_sym_abstract, - ACTIONS(6828), 2, + 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, + [191424] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6806), 1, + anon_sym_STAR, + ACTIONS(6882), 2, sym_number, sym_private_property_identifier, - ACTIONS(6830), 2, + ACTIONS(6884), 2, anon_sym_get, anon_sym_set, - STATE(3906), 3, + STATE(4551), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -285824,10 +287657,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4760), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -285841,50 +287675,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189395] = 14, + [191483] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6356), 1, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6806), 1, anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6362), 1, + ACTIONS(6808), 1, anon_sym_async, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, - anon_sym_readonly, - ACTIONS(4816), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6364), 2, + ACTIONS(6810), 2, sym_number, sym_private_property_identifier, - ACTIONS(6366), 2, + ACTIONS(6812), 2, anon_sym_get, anon_sym_set, - STATE(3945), 3, + STATE(3907), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 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(4760), 15, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285895,91 +287725,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189463] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6790), 1, - anon_sym_AMP, - ACTIONS(6792), 1, - anon_sym_PIPE, - ACTIONS(6794), 1, - anon_sym_extends, - ACTIONS(5956), 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(5958), 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [189515] = 12, + [191544] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6356), 1, - anon_sym_STAR, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(4816), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6402), 2, + ACTIONS(6886), 1, + anon_sym_STAR, + ACTIONS(6888), 1, + anon_sym_async, + ACTIONS(6890), 2, sym_number, sym_private_property_identifier, - ACTIONS(6404), 2, + ACTIONS(6892), 2, anon_sym_get, anon_sym_set, - STATE(4512), 3, + STATE(3940), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 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(2944), 17, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -285993,78 +287775,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189579] = 6, + [191605] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(3844), 1, anon_sym_EQ, - ACTIONS(5572), 1, - anon_sym_RBRACK, - ACTIONS(6612), 1, - anon_sym_COMMA, - ACTIONS(5046), 14, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4651), 1, 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(5050), 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, - [189631] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6790), 1, - anon_sym_AMP, - ACTIONS(5960), 13, + ACTIONS(4654), 1, + anon_sym_of, + ACTIONS(3842), 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(5962), 24, + ACTIONS(3846), 21, 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, @@ -286082,63 +287820,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [189679] = 6, + [191656] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 1, - anon_sym_extends, - ACTIONS(5068), 3, - anon_sym_COMMA, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5071), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3844), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3848), 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, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [189731] = 6, + ACTIONS(6846), 1, + sym_this, + ACTIONS(6848), 1, + anon_sym_readonly, + ACTIONS(6894), 1, + anon_sym_RPAREN, + STATE(3764), 1, + aux_sym_export_statement_repeat1, + STATE(3829), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4371), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2978), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5198), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [191729] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6790), 1, + ACTIONS(6840), 1, anon_sym_AMP, - ACTIONS(6792), 1, + ACTIONS(6896), 1, anon_sym_PIPE, - ACTIONS(6794), 1, + ACTIONS(6898), 1, anon_sym_extends, - ACTIONS(5348), 12, + ACTIONS(5218), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286151,9 +287898,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5350), 23, + ACTIONS(5220), 22, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -286175,78 +287921,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [189783] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6798), 1, - anon_sym_PIPE, - ACTIONS(6800), 1, - anon_sym_extends, - ACTIONS(5796), 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(5798), 23, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [189835] = 12, + [191780] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6834), 1, + ACTIONS(6868), 1, anon_sym_STAR, - ACTIONS(6836), 1, + ACTIONS(6900), 1, anon_sym_async, - ACTIONS(6842), 1, - anon_sym_abstract, - ACTIONS(6838), 2, + ACTIONS(6902), 2, sym_number, sym_private_property_identifier, - ACTIONS(6840), 2, + ACTIONS(6904), 2, anon_sym_get, anon_sym_set, - STATE(3902), 3, + STATE(3906), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -286256,7 +287954,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4760), 16, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286273,454 +287971,216 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189899] = 4, + [191841] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(5779), 13, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5781), 24, - anon_sym_as, + ACTIONS(6906), 1, anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [189947] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6796), 1, - anon_sym_AMP, - ACTIONS(6798), 1, - anon_sym_PIPE, - ACTIONS(6800), 1, - anon_sym_extends, - ACTIONS(5038), 12, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + anon_sym_COLON, 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(5040), 23, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [189999] = 7, + ACTIONS(2946), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [191912] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(4837), 1, - anon_sym_QMARK_DOT, - ACTIONS(5194), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5196), 4, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2624), 1, + anon_sym_RBRACE, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2056), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2058), 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, - [190053] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6741), 1, - anon_sym_is, - ACTIONS(4887), 14, + ACTIONS(6850), 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(4889), 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [190101] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(5905), 1, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2906), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - ACTIONS(5907), 1, - anon_sym_LBRACK, - ACTIONS(5912), 1, - anon_sym_DOT, - ACTIONS(5914), 1, - anon_sym_QMARK_DOT, - ACTIONS(5920), 1, - anon_sym_BANG, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6651), 1, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(4978), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3412), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [190191] = 5, + ACTIONS(2946), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [191983] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5170), 4, + ACTIONS(117), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(3844), 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(3848), 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, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [190241] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1988), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2624), 1, + anon_sym_RBRACE, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(5549), 1, - anon_sym_RBRACK, - ACTIONS(6610), 1, - anon_sym_COMMA, - ACTIONS(1986), 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(1990), 21, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(6415), 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, - [190293] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, + ACTIONS(6850), 1, + anon_sym_STAR, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2906), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - ACTIONS(4919), 1, - anon_sym_LBRACK, - ACTIONS(4925), 1, - anon_sym_DOT, - ACTIONS(4927), 1, - anon_sym_QMARK_DOT, - ACTIONS(4955), 1, - anon_sym_BANG, - ACTIONS(5751), 1, - anon_sym_as, - ACTIONS(6645), 1, - anon_sym_in, - ACTIONS(6647), 1, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6651), 1, anon_sym_QMARK, - ACTIONS(6653), 1, - anon_sym_AMP_AMP, - ACTIONS(6659), 1, - anon_sym_AMP, - ACTIONS(6661), 1, - anon_sym_PIPE, - ACTIONS(6665), 1, - anon_sym_STAR_STAR, - ACTIONS(6669), 1, - anon_sym_QMARK_QMARK, - STATE(5014), 1, - sym_type_arguments, - ACTIONS(5015), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6655), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6663), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2443), 2, - sym_template_string, - sym_arguments, - ACTIONS(6643), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6649), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6657), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6667), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [190383] = 17, + ACTIONS(2946), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [192056] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, + ACTIONS(2624), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6846), 1, - anon_sym_RBRACE, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5157), 1, aux_sym_object_repeat1, - ACTIONS(2908), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 15, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -286731,28 +288191,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190456] = 10, + [192125] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6848), 1, + ACTIONS(6908), 1, anon_sym_STAR, - ACTIONS(6850), 2, + ACTIONS(6910), 2, sym_number, sym_private_property_identifier, - ACTIONS(6852), 2, + ACTIONS(6912), 2, anon_sym_get, anon_sym_set, - STATE(4418), 3, + STATE(4505), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -286762,7 +288222,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286780,42 +288240,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190515] = 10, + [192184] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6824), 1, + ACTIONS(6908), 1, anon_sym_STAR, - ACTIONS(6854), 2, + ACTIONS(6914), 1, + anon_sym_async, + ACTIONS(6916), 2, sym_number, sym_private_property_identifier, - ACTIONS(6856), 2, + ACTIONS(6918), 2, anon_sym_get, anon_sym_set, - STATE(4544), 3, + STATE(3912), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 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(2944), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -286829,57 +288290,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190574] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6858), 1, - anon_sym_AMP, - ACTIONS(6860), 1, - anon_sym_PIPE, - ACTIONS(6862), 1, - anon_sym_extends, - ACTIONS(5348), 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(5350), 22, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [190625] = 4, + [192245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6858), 1, + ACTIONS(6840), 1, anon_sym_AMP, - ACTIONS(5779), 13, + ACTIONS(5797), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -286893,7 +288309,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5781), 23, + ACTIONS(5799), 23, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -286917,44 +288333,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [190672] = 9, + [192292] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(4739), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2592), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, + ACTIONS(6415), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6850), 1, + anon_sym_STAR, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -286965,222 +288388,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190729] = 4, + [192363] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6858), 1, - anon_sym_AMP, - ACTIONS(5960), 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5962), 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [190776] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6858), 1, - anon_sym_AMP, - ACTIONS(6860), 1, - anon_sym_PIPE, - ACTIONS(6862), 1, - anon_sym_extends, - ACTIONS(5148), 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(5150), 22, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [190827] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6858), 1, - anon_sym_AMP, - ACTIONS(6860), 1, - anon_sym_PIPE, - ACTIONS(6862), 1, - anon_sym_extends, - ACTIONS(5956), 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(5958), 22, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [190878] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6858), 1, - anon_sym_AMP, - ACTIONS(6860), 1, - anon_sym_PIPE, - ACTIONS(6862), 1, - anon_sym_extends, - ACTIONS(5038), 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(5040), 22, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [190929] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(4754), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2592), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, + ACTIONS(6415), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6850), 1, + anon_sym_STAR, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -287191,92 +288444,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190986] = 9, + [192436] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(4748), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1746), 1, anon_sym_DQUOTE, + ACTIONS(1748), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, + ACTIONS(2948), 1, anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(2952), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [191043] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4736), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5365), 1, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(6906), 1, + anon_sym_RBRACE, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -287287,92 +288500,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191100] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6858), 1, - anon_sym_AMP, - ACTIONS(6860), 1, - anon_sym_PIPE, - ACTIONS(5893), 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(5895), 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [191149] = 16, + [192509] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6864), 1, + ACTIONS(6906), 1, anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -287386,51 +288554,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191220] = 16, + [192578] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2660), 1, + ACTIONS(4747), 1, anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -287441,52 +288602,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191291] = 17, + [192635] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6864), 1, + ACTIONS(6920), 1, anon_sym_RBRACE, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 15, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -287497,87 +288657,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191364] = 4, + [192706] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, + ACTIONS(1748), 1, anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(4732), 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(3006), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, + ACTIONS(2948), 1, anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(2952), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [191411] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4757), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, + ACTIONS(6415), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(6920), 1, + anon_sym_RBRACE, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -287588,35 +288713,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191468] = 9, + [192779] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(4751), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(6920), 1, + anon_sym_RBRACE, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287624,8 +288757,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -287636,47 +288767,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191525] = 17, + [192848] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2660), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6806), 1, anon_sym_STAR, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(6808), 1, + anon_sym_async, + ACTIONS(6922), 1, + anon_sym_readonly, + ACTIONS(6810), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(6812), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(3907), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 15, + ACTIONS(4750), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287692,35 +288818,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191598] = 9, + [192911] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4729), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1746), 1, anon_sym_DQUOTE, + ACTIONS(1748), 1, anon_sym_SQUOTE, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(5380), 1, + anon_sym_LBRACK, + ACTIONS(4668), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6792), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + STATE(5633), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5844), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(5961), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(6924), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287740,28 +288869,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191655] = 10, + [192974] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6866), 1, + ACTIONS(6886), 1, anon_sym_STAR, - ACTIONS(6868), 2, + ACTIONS(6926), 2, sym_number, sym_private_property_identifier, - ACTIONS(6870), 2, + ACTIONS(6928), 2, anon_sym_get, anon_sym_set, - STATE(4485), 3, + STATE(4564), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -287771,7 +288900,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287789,34 +288918,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191714] = 6, + [193033] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(6557), 1, - anon_sym_in, - ACTIONS(6612), 1, - anon_sym_of, - ACTIONS(5046), 13, + ACTIONS(6840), 1, + anon_sym_AMP, + ACTIONS(6896), 1, + anon_sym_PIPE, + ACTIONS(6898), 1, + anon_sym_extends, + ACTIONS(5803), 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(5050), 21, + ACTIONS(5805), 22, 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, @@ -287834,47 +288963,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [191765] = 17, + [193084] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2656), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6862), 1, anon_sym_STAR, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6930), 1, + anon_sym_async, + ACTIONS(6934), 1, + anon_sym_readonly, + ACTIONS(6932), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(6936), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(3936), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287890,43 +289014,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191838] = 15, + [193147] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2660), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6706), 1, anon_sym_STAR, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(6708), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(6710), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287944,102 +289063,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191907] = 17, + [193206] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(688), 1, - anon_sym_RPAREN, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4744), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(3018), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(6874), 1, - sym_this, - ACTIONS(6876), 1, - anon_sym_readonly, - STATE(3763), 1, - aux_sym_export_statement_repeat1, - STATE(3833), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4318), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2980), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5176), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [191980] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6878), 1, - anon_sym_STAR, - ACTIONS(6880), 1, - anon_sym_async, - ACTIONS(6882), 2, sym_number, sym_private_property_identifier, - ACTIONS(6884), 2, - anon_sym_get, - anon_sym_set, - STATE(3895), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 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(4760), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288050,129 +289111,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192041] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6858), 1, - anon_sym_AMP, - ACTIONS(6860), 1, - anon_sym_PIPE, - ACTIONS(6862), 1, - anon_sym_extends, - ACTIONS(5796), 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(5798), 22, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [192092] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(6874), 1, - sym_this, - ACTIONS(6876), 1, - anon_sym_readonly, - ACTIONS(6886), 1, - anon_sym_RPAREN, - STATE(3763), 1, - aux_sym_export_statement_repeat1, - STATE(3833), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4318), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2980), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5286), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [192165] = 10, + [193263] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6888), 1, + ACTIONS(6706), 1, anon_sym_STAR, - ACTIONS(6890), 2, + ACTIONS(6712), 1, + anon_sym_async, + ACTIONS(6716), 1, + anon_sym_readonly, + ACTIONS(6714), 2, sym_number, sym_private_property_identifier, - ACTIONS(6892), 2, + ACTIONS(6718), 2, anon_sym_get, anon_sym_set, - STATE(4482), 3, + STATE(3944), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -288182,14 +289146,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + ACTIONS(4750), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288200,38 +289162,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192224] = 10, + [193326] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4732), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1764), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6894), 1, - anon_sym_STAR, - ACTIONS(6896), 2, sym_number, sym_private_property_identifier, - ACTIONS(6898), 2, - anon_sym_get, - anon_sym_set, - STATE(4477), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288239,6 +289198,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288249,47 +289210,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192283] = 12, + [193383] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6824), 1, + ACTIONS(6862), 1, anon_sym_STAR, - ACTIONS(6826), 1, + ACTIONS(6930), 1, anon_sym_async, - ACTIONS(6900), 1, - anon_sym_readonly, - ACTIONS(6828), 2, + ACTIONS(6932), 2, sym_number, sym_private_property_identifier, - ACTIONS(6830), 2, + ACTIONS(6936), 2, anon_sym_get, anon_sym_set, - STATE(3906), 3, + STATE(3936), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 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(4760), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288300,30 +289260,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192346] = 11, + [193444] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6433), 1, anon_sym_LBRACK, - ACTIONS(6894), 1, + ACTIONS(6706), 1, anon_sym_STAR, - ACTIONS(6902), 1, + ACTIONS(6712), 1, anon_sym_async, - ACTIONS(6904), 2, + ACTIONS(6714), 2, sym_number, sym_private_property_identifier, - ACTIONS(6906), 2, + ACTIONS(6718), 2, anon_sym_get, anon_sym_set, - STATE(3918), 3, + STATE(3944), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -288333,7 +289293,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288350,51 +289310,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192407] = 16, + [193505] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - ACTIONS(6846), 1, + ACTIONS(4806), 2, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(6708), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, + STATE(4563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288405,52 +289359,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192478] = 17, + [193564] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2523), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - STATE(5365), 1, + ACTIONS(6938), 1, + anon_sym_RBRACE, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 15, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288461,50 +289414,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192551] = 15, + [193635] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6908), 1, + ACTIONS(6938), 1, anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288515,43 +289470,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192620] = 15, + [193708] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6940), 1, anon_sym_STAR, - ACTIONS(6846), 1, - anon_sym_RBRACE, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(6942), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(6944), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4487), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288569,104 +289519,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192689] = 17, + [193767] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(6874), 1, - sym_this, - ACTIONS(6876), 1, - anon_sym_readonly, - ACTIONS(6910), 1, - anon_sym_RPAREN, - STATE(3763), 1, - aux_sym_export_statement_repeat1, - STATE(3833), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4318), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2980), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5590), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [192762] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(6874), 1, + ACTIONS(6846), 1, sym_this, - ACTIONS(6876), 1, + ACTIONS(6848), 1, anon_sym_readonly, - ACTIONS(6912), 1, + ACTIONS(6946), 1, anon_sym_RPAREN, - STATE(3763), 1, + STATE(3764), 1, aux_sym_export_statement_repeat1, - STATE(3833), 1, + STATE(3829), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4318), 2, + STATE(4371), 2, sym_pattern, sym__parameter_name, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5590), 3, + STATE(5688), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4319), 4, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 14, + ACTIONS(1706), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288681,48 +289575,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192835] = 16, + [193840] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, + ACTIONS(2692), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6908), 1, - anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -288736,42 +289629,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192906] = 12, + [193909] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6866), 1, - anon_sym_STAR, - ACTIONS(6914), 1, + ACTIONS(2692), 1, + anon_sym_RBRACE, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(6918), 1, + ACTIONS(2952), 1, anon_sym_readonly, - ACTIONS(6916), 2, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 1, + anon_sym_STAR, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(6920), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(3919), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288787,42 +289685,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192969] = 10, + [193982] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(2692), 1, + anon_sym_RBRACE, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6922), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6924), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(6926), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4471), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -288836,46 +289740,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193028] = 11, + [194053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6840), 1, + anon_sym_AMP, + ACTIONS(6896), 1, + anon_sym_PIPE, + ACTIONS(6898), 1, + anon_sym_extends, + ACTIONS(5305), 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(5307), 22, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(6866), 1, + 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, + [194104] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4735), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3018), 6, anon_sym_STAR, - ACTIONS(6914), 1, - anon_sym_async, - ACTIONS(6916), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6920), 2, - anon_sym_get, - anon_sym_set, - STATE(3919), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288886,148 +289833,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193089] = 12, + [194161] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(6834), 1, - anon_sym_STAR, - ACTIONS(6836), 1, - anon_sym_async, - ACTIONS(6928), 1, + ACTIONS(6846), 1, + sym_this, + ACTIONS(6848), 1, anon_sym_readonly, - ACTIONS(6838), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6840), 2, - anon_sym_get, - anon_sym_set, - STATE(3902), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 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(4760), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [193152] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6930), 1, - anon_sym_STAR, - ACTIONS(6932), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6934), 2, - anon_sym_get, - anon_sym_set, - STATE(4542), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 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(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [193211] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(6874), 1, - sym_this, - ACTIONS(6876), 1, - anon_sym_readonly, - ACTIONS(6936), 1, + ACTIONS(6948), 1, anon_sym_RPAREN, - STATE(3763), 1, + STATE(3764), 1, aux_sym_export_statement_repeat1, - STATE(3833), 1, + STATE(3829), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4318), 2, + STATE(4371), 2, sym_pattern, sym__parameter_name, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5590), 3, + STATE(5221), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4319), 4, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 14, + ACTIONS(1706), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289042,88 +289889,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193284] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5166), 1, - anon_sym_EQ, - ACTIONS(6627), 1, - anon_sym_in, - ACTIONS(6630), 1, - anon_sym_of, - ACTIONS(5164), 13, - 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(5168), 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, - [193335] = 11, + [194234] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6834), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6836), 1, - anon_sym_async, - ACTIONS(6838), 2, + ACTIONS(6938), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(6840), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(3902), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4760), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -289137,38 +289943,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193396] = 10, + [194303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1764), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6702), 1, - anon_sym_STAR, - ACTIONS(6704), 2, sym_number, sym_private_property_identifier, - ACTIONS(6706), 2, - anon_sym_get, - anon_sym_set, - STATE(4443), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 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(2944), 17, + ACTIONS(3016), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289176,6 +289973,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289186,47 +289985,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193455] = 15, + anon_sym_abstract, + [194350] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2523), 1, + ACTIONS(2626), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -289240,50 +290041,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193524] = 15, + [194421] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2680), 1, + ACTIONS(2626), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289294,47 +290097,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193593] = 17, + [194494] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2680), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6824), 1, anon_sym_STAR, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6826), 1, + anon_sym_async, + ACTIONS(6950), 1, + anon_sym_readonly, + ACTIONS(6828), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(6830), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(3908), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 15, + ACTIONS(4750), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289350,48 +290148,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193666] = 16, + [194557] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2680), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6824), 1, anon_sym_STAR, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6952), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(6954), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4499), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -289405,36 +290197,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193737] = 10, + [194616] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, + ACTIONS(2626), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(4816), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6402), 2, + ACTIONS(6850), 1, + anon_sym_STAR, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4512), 3, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289442,8 +290241,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289454,139 +290251,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193796] = 6, + [194685] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3872), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2716), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(4663), 1, - anon_sym_in, - ACTIONS(4666), 1, - anon_sym_of, - ACTIONS(3844), 13, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 1, anon_sym_STAR, - anon_sym_BANG, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, + anon_sym_LPAREN, + 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(3848), 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, - [193847] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(6874), 1, - sym_this, - ACTIONS(6876), 1, - anon_sym_readonly, - ACTIONS(6938), 1, - anon_sym_RPAREN, - STATE(3763), 1, - aux_sym_export_statement_repeat1, - STATE(3833), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4318), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2980), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5246), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 14, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193920] = 12, + [194754] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(5428), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(4678), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6816), 2, + ACTIONS(6956), 1, + anon_sym_STAR, + ACTIONS(6958), 2, sym_number, sym_private_property_identifier, - STATE(5621), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5859), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(5968), 3, + ACTIONS(6960), 2, + anon_sym_get, + anon_sym_set, + STATE(4424), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(6940), 19, + ACTIONS(4722), 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(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289594,8 +290344,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289606,48 +290354,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193983] = 17, + [194813] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, + ACTIONS(688), 1, + anon_sym_RPAREN, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(6874), 1, + ACTIONS(6846), 1, sym_this, - ACTIONS(6876), 1, + ACTIONS(6848), 1, anon_sym_readonly, - ACTIONS(6942), 1, - anon_sym_RPAREN, - STATE(3763), 1, + STATE(3764), 1, aux_sym_export_statement_repeat1, - STATE(3833), 1, + STATE(3829), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4318), 2, + STATE(4371), 2, sym_pattern, sym__parameter_name, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5590), 3, + STATE(5208), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4319), 4, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 14, + ACTIONS(1706), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289662,50 +290410,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194056] = 15, + [194886] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2714), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289716,52 +290466,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194125] = 17, + [194959] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2714), 1, + ACTIONS(4738), 1, anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289772,96 +290514,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194198] = 6, + [195016] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1988), 1, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4719), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6560), 1, - anon_sym_in, - ACTIONS(6610), 1, - anon_sym_of, - ACTIONS(1986), 13, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(3018), 6, 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(1990), 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, - [194249] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, anon_sym_SQUOTE, - ACTIONS(2704), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289872,32 +290562,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194320] = 12, + [195073] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6702), 1, + ACTIONS(6908), 1, anon_sym_STAR, - ACTIONS(6708), 1, + ACTIONS(6914), 1, anon_sym_async, - ACTIONS(6712), 1, + ACTIONS(6962), 1, anon_sym_readonly, - ACTIONS(6710), 2, + ACTIONS(6916), 2, sym_number, sym_private_property_identifier, - ACTIONS(6714), 2, + ACTIONS(6918), 2, anon_sym_get, anon_sym_set, - STATE(3940), 3, + STATE(3912), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -289907,7 +290597,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, + ACTIONS(4750), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289923,52 +290613,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194383] = 17, + [195136] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2704), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 15, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289979,47 +290668,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194456] = 15, + [195207] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2704), 1, + ACTIONS(2455), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -290033,51 +290723,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194525] = 16, + [195278] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2714), 1, + ACTIONS(2455), 1, anon_sym_RBRACE, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(6358), 1, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290088,43 +290779,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194596] = 15, + [195351] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, + ACTIONS(2455), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6944), 1, - anon_sym_RBRACE, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290142,52 +290833,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194665] = 17, + [195420] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6944), 1, + ACTIONS(6852), 1, anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 15, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290198,155 +290888,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194738] = 15, + [195491] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2656), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2944), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, sym_identifier, - anon_sym_static, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, + anon_sym_LBRACK, + ACTIONS(6846), 1, + sym_this, + ACTIONS(6848), 1, anon_sym_readonly, - anon_sym_declare, + ACTIONS(6964), 1, + anon_sym_RPAREN, + STATE(3764), 1, + aux_sym_export_statement_repeat1, + STATE(3829), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4371), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2978), 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, - [194807] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6888), 1, - anon_sym_STAR, - ACTIONS(6946), 1, - anon_sym_async, - ACTIONS(6948), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6950), 2, - anon_sym_get, - anon_sym_set, - STATE(3923), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 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(4760), 16, + STATE(5688), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - sym_identifier, + anon_sym_async, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194868] = 16, + [195564] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(6358), 1, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(6944), 1, + ACTIONS(6852), 1, anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290357,95 +291000,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194939] = 10, + [195637] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(4820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6704), 2, - sym_number, - sym_private_property_identifier, - STATE(4443), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, + ACTIONS(6846), 1, + sym_this, + ACTIONS(6848), 1, + anon_sym_readonly, + ACTIONS(6966), 1, + anon_sym_RPAREN, + STATE(3764), 1, + aux_sym_export_statement_repeat1, + STATE(3829), 1, + sym_accessibility_modifier, + STATE(3864), 1, + sym_decorator, + STATE(4371), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2978), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5688), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194998] = 11, + [195710] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6360), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6702), 1, - anon_sym_STAR, - ACTIONS(6708), 1, - anon_sym_async, - ACTIONS(6710), 2, + ACTIONS(4811), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6417), 2, sym_number, sym_private_property_identifier, - ACTIONS(6714), 2, - anon_sym_get, - anon_sym_set, - STATE(3940), 3, + STATE(4484), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 16, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290456,28 +291105,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195059] = 10, + [195769] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6840), 1, + anon_sym_AMP, + ACTIONS(6896), 1, + anon_sym_PIPE, + ACTIONS(6898), 1, + anon_sym_extends, + ACTIONS(5269), 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(5271), 22, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [195820] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6878), 1, + ACTIONS(6968), 1, anon_sym_STAR, - ACTIONS(6952), 2, + ACTIONS(6970), 2, sym_number, sym_private_property_identifier, - ACTIONS(6954), 2, + ACTIONS(6972), 2, anon_sym_get, anon_sym_set, - STATE(4514), 3, + STATE(4494), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -290487,7 +291181,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290505,154 +291199,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195118] = 16, + [195879] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6840), 1, + anon_sym_AMP, + ACTIONS(6896), 1, + anon_sym_PIPE, + ACTIONS(6898), 1, + anon_sym_extends, + ACTIONS(5936), 12, anon_sym_STAR, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 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(2944), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [195189] = 17, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5938), 22, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [195930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6840), 1, + anon_sym_AMP, + ACTIONS(6896), 1, + anon_sym_PIPE, + ACTIONS(6057), 12, anon_sym_STAR, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 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(2944), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [195262] = 15, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6059), 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [195979] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2710), 1, + ACTIONS(2592), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290670,48 +291342,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195331] = 17, + [196048] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(6874), 1, + ACTIONS(6846), 1, sym_this, - ACTIONS(6876), 1, + ACTIONS(6848), 1, anon_sym_readonly, - ACTIONS(6956), 1, - anon_sym_RPAREN, - STATE(3763), 1, + STATE(3764), 1, aux_sym_export_statement_repeat1, - STATE(3833), 1, + STATE(3829), 1, sym_accessibility_modifier, STATE(3864), 1, sym_decorator, - STATE(4318), 2, + STATE(4371), 2, sym_pattern, sym__parameter_name, - ACTIONS(2980), 3, + ACTIONS(2978), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5590), 3, + STATE(5688), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4319), 4, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 14, + ACTIONS(1706), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290726,38 +291396,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195404] = 10, + [196118] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6834), 1, - anon_sym_STAR, - ACTIONS(6958), 2, + ACTIONS(6938), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(6960), 2, - anon_sym_get, - anon_sym_set, - STATE(4447), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290765,6 +291435,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290775,51 +291447,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195463] = 16, + [196182] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(4800), 1, anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2523), 1, + ACTIONS(4803), 1, anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290830,43 +291493,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195534] = 15, + [196236] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - ACTIONS(6864), 1, - anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6958), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, + STATE(4424), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290874,6 +291527,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290884,35 +291539,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195603] = 9, + [196290] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(4742), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2716), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, + ACTIONS(6415), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290932,51 +291590,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195660] = 16, + [196354] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2656), 1, - anon_sym_RBRACE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6970), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, + STATE(4494), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 16, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290987,35 +291636,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195731] = 9, + [196408] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4745), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1746), 1, anon_sym_DQUOTE, + ACTIONS(1748), 1, anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6856), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, + STATE(4423), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 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(3006), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291035,101 +291682,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195788] = 17, + [196462] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2455), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6874), 1, - sym_this, - ACTIONS(6876), 1, - anon_sym_readonly, - ACTIONS(6962), 1, - anon_sym_RPAREN, - STATE(3763), 1, - aux_sym_export_statement_repeat1, - STATE(3833), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4318), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2980), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5590), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 14, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2906), 2, + sym_number, + sym_private_property_identifier, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195861] = 10, + [196526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6964), 1, + ACTIONS(4951), 13, anon_sym_STAR, - ACTIONS(6966), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6968), 2, - anon_sym_get, - anon_sym_set, - STATE(4543), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 17, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(4949), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -291140,52 +291772,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195920] = 17, + anon_sym_abstract, + anon_sym_implements, + [196570] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - ACTIONS(6908), 1, - anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6882), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - STATE(4467), 3, + STATE(4551), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 15, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -291196,46 +291820,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195993] = 11, + [196624] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6964), 1, - anon_sym_STAR, - ACTIONS(6970), 1, - anon_sym_async, - ACTIONS(6972), 2, + ACTIONS(6974), 2, sym_number, sym_private_property_identifier, - ACTIONS(6974), 2, - anon_sym_get, - anon_sym_set, - STATE(3915), 3, + STATE(4577), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 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(4760), 16, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -291246,32 +291866,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196054] = 12, + [196678] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6964), 1, - anon_sym_STAR, - ACTIONS(6970), 1, - anon_sym_async, - ACTIONS(6976), 1, - anon_sym_readonly, - ACTIONS(6972), 2, + ACTIONS(6910), 2, sym_number, sym_private_property_identifier, - ACTIONS(6974), 2, - anon_sym_get, - anon_sym_set, - STATE(3915), 3, + STATE(4505), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -291281,12 +291892,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4760), 15, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -291297,33 +291912,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196117] = 8, + [196732] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6932), 2, + ACTIONS(6864), 2, sym_number, sym_private_property_identifier, - STATE(4542), 3, + STATE(4417), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 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(2944), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291343,33 +291958,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196171] = 8, + [196786] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6890), 2, + ACTIONS(6952), 2, sym_number, sym_private_property_identifier, - STATE(4482), 3, + STATE(4499), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 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(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291389,33 +292004,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196225] = 8, + [196840] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6868), 2, + ACTIONS(6852), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4485), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291435,33 +292055,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196279] = 8, + [196904] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, - anon_sym_COMMA, - ACTIONS(4789), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1746), 1, anon_sym_DQUOTE, + ACTIONS(1748), 1, anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6976), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, + STATE(4571), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 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(3006), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291481,33 +292101,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196333] = 8, + [196958] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6978), 2, + ACTIONS(6906), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4538), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291527,38 +292152,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196387] = 13, + [197022] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, + ACTIONS(2624), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6908), 1, - anon_sym_RBRACE, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291578,20 +292203,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196451] = 6, + [197086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6984), 1, - anon_sym_LPAREN, - ACTIONS(6986), 1, - anon_sym_DOT, - STATE(3760), 1, - sym_arguments, - ACTIONS(6982), 11, + ACTIONS(5206), 13, anon_sym_STAR, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_LT, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_DQUOTE, @@ -291599,7 +292220,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6980), 22, + ACTIONS(5204), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291622,33 +292243,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [196501] = 8, + anon_sym_implements, + [197130] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(2626), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6704), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4443), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291668,38 +292295,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196555] = 13, + [197194] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2680), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6926), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4564), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291719,23 +292341,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196619] = 8, + [197248] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6988), 2, + ACTIONS(6978), 2, sym_number, sym_private_property_identifier, - STATE(4145), 3, + STATE(4084), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -291745,7 +292367,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4760), 19, + ACTIONS(4750), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291765,38 +292387,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196673] = 13, + [197302] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, + ACTIONS(2692), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6846), 1, - anon_sym_RBRACE, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5384), 1, aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291816,33 +292438,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196737] = 8, + [197366] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(2592), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6924), 2, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4471), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291862,38 +292489,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196791] = 8, + [197430] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(6984), 1, + anon_sym_LPAREN, + ACTIONS(6986), 1, + anon_sym_DOT, + STATE(3751), 1, + sym_arguments, + ACTIONS(6982), 11, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1764), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6850), 2, sym_number, sym_private_property_identifier, - STATE(4418), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 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(2944), 19, + anon_sym_AT, + ACTIONS(6980), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -291908,38 +292532,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196845] = 13, + anon_sym_abstract, + [197480] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2523), 1, + ACTIONS(2646), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291959,38 +292584,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196909] = 13, + [197544] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2714), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6708), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292010,97 +292630,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196973] = 16, + [197598] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, + ACTIONS(5009), 13, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(6874), 1, - sym_this, - ACTIONS(6876), 1, - anon_sym_readonly, - STATE(3763), 1, - aux_sym_export_statement_repeat1, - STATE(3833), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4318), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2980), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5590), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [197043] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2704), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2944), 19, + anon_sym_AT, + ACTIONS(5007), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -292115,23 +292669,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197107] = 8, + anon_sym_abstract, + anon_sym_implements, + [197642] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6966), 2, + ACTIONS(6942), 2, sym_number, sym_private_property_identifier, - STATE(4543), 3, + STATE(4487), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -292141,7 +292697,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292161,23 +292717,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197161] = 8, + [197696] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6990), 2, + ACTIONS(6988), 2, sym_number, sym_private_property_identifier, - STATE(4420), 3, + STATE(4153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, + ACTIONS(4722), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -292187,7 +292743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(4750), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292207,38 +292763,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197215] = 13, + [197750] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6944), 1, - anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(6870), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4439), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 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(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292258,38 +292809,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197279] = 13, + [197804] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2710), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - STATE(5340), 1, + ACTIONS(6920), 1, + anon_sym_RBRACE, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292309,89 +292860,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197343] = 13, + [197868] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2660), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(2908), 2, + ACTIONS(6814), 1, + anon_sym_abstract, + ACTIONS(6978), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4084), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [197407] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6358), 1, + ACTIONS(4722), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6864), 1, - anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, - sym_number, - sym_private_property_identifier, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(4750), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292411,134 +292906,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197471] = 8, + [197923] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6992), 2, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 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(4760), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(2950), 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, - [197525] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6896), 2, - sym_number, - sym_private_property_identifier, - STATE(4477), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, + ACTIONS(6990), 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(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [197579] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6854), 2, - sym_number, - sym_private_property_identifier, - STATE(4544), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4722), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292549,130 +292956,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197633] = 8, + [197986] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6958), 2, - sym_number, - sym_private_property_identifier, - STATE(4447), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 9, - sym__automatic_semicolon, + ACTIONS(6413), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [197687] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6952), 2, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4514), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 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(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(2950), 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, - [197741] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, + ACTIONS(6990), 2, anon_sym_COMMA, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2656), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, - anon_sym_LBRACK, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2908), 2, - sym_number, - sym_private_property_identifier, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292680,8 +292995,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292692,33 +293005,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197805] = 9, + [198047] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(4806), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2106), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6842), 1, - anon_sym_abstract, - ACTIONS(6988), 2, sym_number, sym_private_property_identifier, - STATE(4145), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 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(4760), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292738,25 +293048,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197860] = 9, + [198096] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6994), 1, + ACTIONS(6993), 1, anon_sym_abstract, - ACTIONS(6992), 2, + ACTIONS(6988), 2, sym_number, sym_private_property_identifier, - STATE(4081), 3, + STATE(4153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -292764,50 +293074,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4760), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [197915] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(4816), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + ACTIONS(4750), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292827,10 +293094,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197964] = 3, + [198151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6998), 12, + ACTIONS(6997), 12, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -292843,7 +293110,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6996), 23, + ACTIONS(6995), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292867,91 +293134,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198007] = 12, + [198194] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(2361), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - ACTIONS(2908), 2, + ACTIONS(7003), 1, + anon_sym_async, + ACTIONS(7007), 1, + anon_sym_static, + ACTIONS(7009), 1, + anon_sym_readonly, + STATE(3834), 1, + sym_accessibility_modifier, + ACTIONS(7001), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(7005), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(7011), 2, anon_sym_get, anon_sym_set, - ACTIONS(7000), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4467), 3, + ACTIONS(7013), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4382), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2944), 17, + STATE(5631), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6999), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198068] = 14, + [198265] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(2954), 1, + ACTIONS(2952), 1, anon_sym_readonly, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - ACTIONS(7000), 2, + ACTIONS(6990), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 15, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292967,22 +293239,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198133] = 6, + [198330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(4820), 2, + ACTIONS(4811), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -292990,7 +293262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293010,136 +293282,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198182] = 13, + [198379] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - ACTIONS(2908), 2, + ACTIONS(7015), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(7000), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4467), 3, + STATE(4187), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, - anon_sym_LPAREN, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + ACTIONS(4750), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [198245] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2361), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(7007), 1, anon_sym_async, - ACTIONS(7011), 1, + sym_identifier, anon_sym_static, - ACTIONS(7013), 1, anon_sym_readonly, - STATE(3832), 1, - sym_accessibility_modifier, - ACTIONS(7005), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(7009), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(7015), 2, anon_sym_get, anon_sym_set, - ACTIONS(7017), 3, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4397), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5580), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(7003), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198316] = 9, + [198431] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2704), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + ACTIONS(6906), 1, + anon_sym_RBRACE, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293159,32 +293371,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198370] = 9, + [198485] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2714), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + ACTIONS(6938), 1, + anon_sym_RBRACE, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293204,77 +293416,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198424] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(7019), 1, - anon_sym_readonly, - ACTIONS(6992), 2, - sym_number, - sym_private_property_identifier, - STATE(4081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4760), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [198478] = 9, + [198539] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2660), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, + ACTIONS(6920), 1, + anon_sym_RBRACE, + STATE(5157), 1, aux_sym_object_repeat1, - ACTIONS(4732), 4, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293294,32 +293461,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198532] = 9, + [198593] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6944), 1, + ACTIONS(2624), 1, anon_sym_RBRACE, - STATE(5151), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293339,25 +293506,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198586] = 9, + [198647] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(7021), 1, + ACTIONS(7017), 1, anon_sym_readonly, - ACTIONS(6988), 2, + ACTIONS(6978), 2, sym_number, sym_private_property_identifier, - STATE(4145), 3, + STATE(4084), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -293365,7 +293532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4760), 18, + ACTIONS(4750), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293384,32 +293551,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198640] = 9, + [198701] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6908), 1, + ACTIONS(2646), 1, anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293429,32 +293596,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198694] = 9, + [198755] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6864), 1, + ACTIONS(6852), 1, anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293474,32 +293641,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198748] = 9, + [198809] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2523), 1, + ACTIONS(2592), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5244), 1, aux_sym_object_repeat1, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293519,77 +293686,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198802] = 9, + [198863] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6846), 1, - anon_sym_RBRACE, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1746), 1, anon_sym_DQUOTE, + ACTIONS(1748), 1, anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(2950), 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, - [198856] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, + ACTIONS(7019), 2, anon_sym_COMMA, - ACTIONS(2680), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293597,8 +293723,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293609,41 +293733,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198910] = 9, + [198921] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(2952), 1, + anon_sym_readonly, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(2906), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(7019), 2, anon_sym_COMMA, - ACTIONS(2710), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293654,42 +293782,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198964] = 10, + [198983] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6400), 1, + ACTIONS(2948), 1, + anon_sym_async, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(2908), 2, + ACTIONS(6850), 1, + anon_sym_STAR, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(7000), 2, + ACTIONS(2950), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(7019), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293700,45 +293830,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199020] = 13, + [199043] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(2954), 1, - anon_sym_readonly, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - ACTIONS(2908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(7023), 2, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(2692), 1, anon_sym_RBRACE, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 15, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293749,44 +293875,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199082] = 12, + [199097] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(2946), 1, - anon_sym_async, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - ACTIONS(2908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(7023), 2, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(2455), 1, anon_sym_RBRACE, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 16, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293797,36 +293920,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199142] = 11, + [199151] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6844), 1, - anon_sym_STAR, - ACTIONS(2908), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2948), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(7023), 2, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(2716), 1, anon_sym_RBRACE, - STATE(4467), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 17, + ACTIONS(3018), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293834,6 +293953,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -293844,32 +293965,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199200] = 9, + [199205] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2656), 1, + ACTIONS(2626), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(3018), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293889,23 +294010,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199254] = 8, + [199259] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(7025), 2, + ACTIONS(7021), 1, + anon_sym_readonly, + ACTIONS(6988), 2, sym_number, sym_private_property_identifier, - STATE(4106), 3, + STATE(4153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -293913,14 +294036,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4760), 19, + ACTIONS(4750), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -293933,37 +294055,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199306] = 10, + [199313] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(7027), 1, - sym_this, - STATE(4767), 1, - sym_pattern, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(3098), 5, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6413), 1, anon_sym_EQ, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(2906), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6990), 2, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + STATE(4504), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4722), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(1722), 18, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -293978,107 +294101,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199361] = 22, + [199369] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2914), 1, + ACTIONS(2912), 1, anon_sym_type, - ACTIONS(2916), 1, - anon_sym_namespace, - ACTIONS(2918), 1, - anon_sym_import, - ACTIONS(2920), 1, - anon_sym_var, - ACTIONS(2922), 1, - anon_sym_let, - ACTIONS(2924), 1, - anon_sym_const, - ACTIONS(2926), 1, - anon_sym_class, - ACTIONS(2928), 1, - anon_sym_async, - ACTIONS(2930), 1, - anon_sym_function, - ACTIONS(2932), 1, - anon_sym_declare, - ACTIONS(2936), 1, - anon_sym_abstract, - ACTIONS(2940), 1, - anon_sym_interface, - ACTIONS(2942), 1, - anon_sym_enum, - ACTIONS(4734), 1, - anon_sym_module, - ACTIONS(7029), 1, - anon_sym_default, - STATE(3864), 1, - sym_decorator, - STATE(4600), 1, - aux_sym_export_statement_repeat1, - STATE(4605), 1, - sym_declaration, - STATE(4634), 1, - sym_internal_module, - STATE(4656), 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, - [199440] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, ACTIONS(2914), 1, - anon_sym_type, - ACTIONS(2916), 1, anon_sym_namespace, - ACTIONS(2918), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2920), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2924), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2926), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2928), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2930), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2932), 1, + ACTIONS(2930), 1, anon_sym_declare, ACTIONS(2934), 1, - anon_sym_module, - ACTIONS(2936), 1, anon_sym_abstract, ACTIONS(2938), 1, - anon_sym_global, - ACTIONS(2940), 1, anon_sym_interface, - ACTIONS(2942), 1, + ACTIONS(2940), 1, anon_sym_enum, + ACTIONS(4724), 1, + anon_sym_module, + ACTIONS(7023), 1, + anon_sym_default, STATE(3864), 1, sym_decorator, - STATE(4600), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(4611), 1, + STATE(4649), 1, sym_declaration, - STATE(4634), 1, + STATE(4696), 1, sym_internal_module, - STATE(4656), 13, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -294092,165 +294158,31 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [199519] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(7031), 1, - anon_sym_class, - ACTIONS(7033), 1, - sym_this, - ACTIONS(7035), 1, - anon_sym_readonly, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3829), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4837), 1, - sym_pattern, - ACTIONS(2980), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [199586] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(7037), 1, - sym_this, - STATE(4763), 1, - sym_pattern, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(3098), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1722), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [199641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5107), 11, - 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, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5105), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [199682] = 9, + [199448] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(7023), 2, + ACTIONS(7019), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294270,10 +294202,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199735] = 3, + [199501] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2457), 1, + anon_sym_import, + ACTIONS(2459), 1, + anon_sym_var, + ACTIONS(2461), 1, + anon_sym_let, + ACTIONS(2463), 1, + anon_sym_const, + ACTIONS(2474), 1, + anon_sym_class, + ACTIONS(2476), 1, + anon_sym_async, + ACTIONS(2478), 1, + anon_sym_function, + ACTIONS(2484), 1, + anon_sym_abstract, + ACTIONS(2486), 1, + anon_sym_interface, + ACTIONS(2488), 1, + anon_sym_enum, + ACTIONS(2846), 1, + anon_sym_type, + ACTIONS(2876), 1, + anon_sym_namespace, + ACTIONS(2880), 1, + anon_sym_declare, + ACTIONS(2882), 1, + anon_sym_module, + ACTIONS(7025), 1, + anon_sym_default, + STATE(1154), 1, + sym_declaration, + STATE(1210), 1, + sym_internal_module, + STATE(3864), 1, + sym_decorator, + STATE(4788), 1, + aux_sym_export_statement_repeat1, + STATE(1149), 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, + [199580] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5342), 11, + ACTIONS(7029), 11, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -294285,7 +294274,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5340), 22, + ACTIONS(7027), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294308,55 +294297,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [199776] = 10, + [199621] = 16, ACTIONS(3), 1, sym_comment, + ACTIONS(93), 1, + anon_sym_AT, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(7039), 1, + ACTIONS(7031), 1, + anon_sym_class, + ACTIONS(7033), 1, sym_this, - STATE(4770), 1, + ACTIONS(7035), 1, + anon_sym_readonly, + STATE(3825), 1, + sym_accessibility_modifier, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + STATE(4633), 1, sym_pattern, - STATE(4319), 4, + ACTIONS(2978), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(3098), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1722), 18, + ACTIONS(1706), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199831] = 3, + [199688] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5184), 11, + ACTIONS(6982), 11, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -294368,7 +294363,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5182), 22, + ACTIONS(6980), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -294391,50 +294386,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [199872] = 22, + [199729] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2519), 1, + ACTIONS(2912), 1, + anon_sym_type, + ACTIONS(2914), 1, anon_sym_namespace, - ACTIONS(2525), 1, + ACTIONS(2916), 1, anon_sym_import, - ACTIONS(2527), 1, + ACTIONS(2918), 1, anon_sym_var, - ACTIONS(2529), 1, + ACTIONS(2920), 1, anon_sym_let, - ACTIONS(2531), 1, + ACTIONS(2922), 1, anon_sym_const, - ACTIONS(2542), 1, + ACTIONS(2924), 1, anon_sym_class, - ACTIONS(2544), 1, + ACTIONS(2926), 1, anon_sym_async, - ACTIONS(2546), 1, + ACTIONS(2928), 1, anon_sym_function, - ACTIONS(2548), 1, + ACTIONS(2930), 1, anon_sym_declare, - ACTIONS(2550), 1, + ACTIONS(2932), 1, anon_sym_module, - ACTIONS(2552), 1, + ACTIONS(2934), 1, anon_sym_abstract, - ACTIONS(2554), 1, + ACTIONS(2936), 1, + anon_sym_global, + ACTIONS(2938), 1, anon_sym_interface, - ACTIONS(2556), 1, + ACTIONS(2940), 1, anon_sym_enum, - ACTIONS(2844), 1, - anon_sym_type, - ACTIONS(7041), 1, - anon_sym_default, - STATE(1176), 1, - sym_internal_module, - STATE(1191), 1, - sym_declaration, STATE(3864), 1, sym_decorator, - STATE(4650), 1, + STATE(4598), 1, aux_sym_export_statement_repeat1, - STATE(1086), 13, + STATE(4647), 1, + sym_declaration, + STATE(4696), 1, + sym_internal_module, + STATE(4698), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -294448,95 +294443,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [199951] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3038), 1, - sym_this, - ACTIONS(6872), 1, - anon_sym_LBRACK, - STATE(4593), 1, - sym_pattern, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(3098), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(1722), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [200006] = 22, + [199808] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2525), 1, + ACTIONS(2451), 1, + anon_sym_namespace, + ACTIONS(2457), 1, anon_sym_import, - ACTIONS(2527), 1, + ACTIONS(2459), 1, anon_sym_var, - ACTIONS(2529), 1, + ACTIONS(2461), 1, anon_sym_let, - ACTIONS(2531), 1, + ACTIONS(2463), 1, anon_sym_const, - ACTIONS(2542), 1, + ACTIONS(2474), 1, anon_sym_class, - ACTIONS(2544), 1, + ACTIONS(2476), 1, anon_sym_async, - ACTIONS(2546), 1, + ACTIONS(2478), 1, anon_sym_function, - ACTIONS(2552), 1, + ACTIONS(2480), 1, + anon_sym_declare, + ACTIONS(2484), 1, anon_sym_abstract, - ACTIONS(2554), 1, + ACTIONS(2486), 1, anon_sym_interface, - ACTIONS(2556), 1, + ACTIONS(2488), 1, anon_sym_enum, - ACTIONS(2844), 1, + ACTIONS(2846), 1, anon_sym_type, ACTIONS(2850), 1, - anon_sym_global, - ACTIONS(2878), 1, - anon_sym_namespace, - ACTIONS(2882), 1, - anon_sym_declare, - ACTIONS(2912), 1, anon_sym_module, - STATE(1102), 1, + ACTIONS(2852), 1, + anon_sym_global, + STATE(1072), 1, sym_declaration, - STATE(1176), 1, + STATE(1210), 1, sym_internal_module, STATE(3864), 1, sym_decorator, - STATE(4650), 1, + STATE(4788), 1, aux_sym_export_statement_repeat1, - STATE(1086), 13, + STATE(1149), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -294550,88 +294500,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [200085] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6982), 11, - 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, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6980), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [200126] = 22, + [199887] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2525), 1, + ACTIONS(2451), 1, + anon_sym_namespace, + ACTIONS(2457), 1, anon_sym_import, - ACTIONS(2527), 1, + ACTIONS(2459), 1, anon_sym_var, - ACTIONS(2529), 1, + ACTIONS(2461), 1, anon_sym_let, - ACTIONS(2531), 1, + ACTIONS(2463), 1, anon_sym_const, - ACTIONS(2542), 1, + ACTIONS(2474), 1, anon_sym_class, - ACTIONS(2544), 1, + ACTIONS(2476), 1, anon_sym_async, - ACTIONS(2546), 1, + ACTIONS(2478), 1, anon_sym_function, - ACTIONS(2552), 1, + ACTIONS(2480), 1, + anon_sym_declare, + ACTIONS(2482), 1, + anon_sym_module, + ACTIONS(2484), 1, anon_sym_abstract, - ACTIONS(2554), 1, + ACTIONS(2486), 1, anon_sym_interface, - ACTIONS(2556), 1, + ACTIONS(2488), 1, anon_sym_enum, - ACTIONS(2844), 1, + ACTIONS(2846), 1, anon_sym_type, - ACTIONS(2878), 1, - anon_sym_namespace, - ACTIONS(2882), 1, - anon_sym_declare, - ACTIONS(2884), 1, - anon_sym_module, - ACTIONS(7043), 1, + ACTIONS(7037), 1, anon_sym_default, - STATE(1176), 1, - sym_internal_module, - STATE(1191), 1, + STATE(1154), 1, sym_declaration, + STATE(1210), 1, + sym_internal_module, STATE(3864), 1, sym_decorator, - STATE(4650), 1, + STATE(4788), 1, aux_sym_export_statement_repeat1, - STATE(1086), 13, + STATE(1149), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -294645,88 +294557,50 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [200205] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7047), 11, - 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, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7045), 22, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_class, - anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - anon_sym_abstract, - [200246] = 22, + [199966] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2519), 1, + ACTIONS(2451), 1, anon_sym_namespace, - ACTIONS(2525), 1, + ACTIONS(2457), 1, anon_sym_import, - ACTIONS(2527), 1, + ACTIONS(2459), 1, anon_sym_var, - ACTIONS(2529), 1, + ACTIONS(2461), 1, anon_sym_let, - ACTIONS(2531), 1, + ACTIONS(2463), 1, anon_sym_const, - ACTIONS(2542), 1, + ACTIONS(2474), 1, anon_sym_class, - ACTIONS(2544), 1, + ACTIONS(2476), 1, anon_sym_async, - ACTIONS(2546), 1, + ACTIONS(2478), 1, anon_sym_function, - ACTIONS(2548), 1, + ACTIONS(2480), 1, anon_sym_declare, - ACTIONS(2550), 1, + ACTIONS(2482), 1, anon_sym_module, - ACTIONS(2552), 1, + ACTIONS(2484), 1, anon_sym_abstract, - ACTIONS(2554), 1, + ACTIONS(2486), 1, anon_sym_interface, - ACTIONS(2556), 1, + ACTIONS(2488), 1, anon_sym_enum, - ACTIONS(2844), 1, + ACTIONS(2846), 1, anon_sym_type, - ACTIONS(7049), 1, + ACTIONS(7039), 1, anon_sym_default, - STATE(1176), 1, - sym_internal_module, - STATE(1191), 1, + STATE(1154), 1, sym_declaration, + STATE(1210), 1, + sym_internal_module, STATE(3864), 1, sym_decorator, - STATE(4650), 1, + STATE(4788), 1, aux_sym_export_statement_repeat1, - STATE(1086), 13, + STATE(1149), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -294740,50 +294614,95 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [200325] = 22, + [200045] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3036), 1, + sym_this, + ACTIONS(6844), 1, + anon_sym_LBRACK, + STATE(4639), 1, + sym_pattern, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(3103), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1706), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [200100] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2519), 1, - anon_sym_namespace, - ACTIONS(2525), 1, + ACTIONS(2457), 1, anon_sym_import, - ACTIONS(2527), 1, + ACTIONS(2459), 1, anon_sym_var, - ACTIONS(2529), 1, + ACTIONS(2461), 1, anon_sym_let, - ACTIONS(2531), 1, + ACTIONS(2463), 1, anon_sym_const, - ACTIONS(2542), 1, + ACTIONS(2474), 1, anon_sym_class, - ACTIONS(2544), 1, + ACTIONS(2476), 1, anon_sym_async, - ACTIONS(2546), 1, + ACTIONS(2478), 1, anon_sym_function, - ACTIONS(2548), 1, - anon_sym_declare, - ACTIONS(2552), 1, + ACTIONS(2484), 1, anon_sym_abstract, - ACTIONS(2554), 1, + ACTIONS(2486), 1, anon_sym_interface, - ACTIONS(2556), 1, + ACTIONS(2488), 1, anon_sym_enum, - ACTIONS(2844), 1, + ACTIONS(2846), 1, anon_sym_type, - ACTIONS(2848), 1, - anon_sym_module, - ACTIONS(2850), 1, + ACTIONS(2852), 1, anon_sym_global, - STATE(1102), 1, + ACTIONS(2876), 1, + anon_sym_namespace, + ACTIONS(2880), 1, + anon_sym_declare, + ACTIONS(2910), 1, + anon_sym_module, + STATE(1072), 1, sym_declaration, - STATE(1176), 1, + STATE(1210), 1, sym_internal_module, STATE(3864), 1, sym_decorator, - STATE(4650), 1, + STATE(4788), 1, aux_sym_export_statement_repeat1, - STATE(1086), 13, + STATE(1149), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -294797,81 +294716,37 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [200404] = 15, + [200179] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(7033), 1, + ACTIONS(7041), 1, sym_this, - ACTIONS(7035), 1, - anon_sym_readonly, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3829), 1, - sym_accessibility_modifier, - STATE(3864), 1, - sym_decorator, - STATE(4837), 1, + STATE(4819), 1, sym_pattern, - ACTIONS(2980), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4319), 4, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [200468] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, + ACTIONS(3103), 5, anon_sym_EQ, - ACTIONS(7000), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4732), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(3008), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(3006), 19, + ACTIONS(1706), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -294886,39 +294761,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200514] = 10, + [200234] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(7051), 1, - anon_sym_STAR, - ACTIONS(7053), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(7055), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4732), 3, - anon_sym_LPAREN, - anon_sym_LT, + ACTIONS(7043), 1, + sym_this, + STATE(4656), 1, + sym_pattern, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(3103), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_QMARK, - STATE(4511), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 17, + ACTIONS(1706), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -294929,27 +294806,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200567] = 3, + [200289] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - anon_sym_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7057), 20, + ACTIONS(7045), 1, + sym_this, + STATE(4832), 1, + sym_pattern, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(3103), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(1706), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -294964,23 +294851,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [200606] = 3, + [200344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2164), 11, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6990), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3018), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(2166), 20, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295000,47 +294891,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [200645] = 3, + [200390] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 11, - 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, - sym_private_property_identifier, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(7061), 20, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, + anon_sym_LBRACK, + ACTIONS(7033), 1, + sym_this, + ACTIONS(7035), 1, + anon_sym_readonly, + STATE(3825), 1, + sym_accessibility_modifier, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + STATE(4633), 1, + sym_pattern, + ACTIONS(2978), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [200684] = 3, + [200454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 11, + ACTIONS(7049), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295052,7 +294955,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7065), 20, + ACTIONS(7047), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295073,40 +294976,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [200723] = 11, + [200493] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, ACTIONS(7051), 1, - anon_sym_STAR, - ACTIONS(7069), 1, - anon_sym_async, + anon_sym_EQ_GT, ACTIONS(7053), 2, sym_number, sym_private_property_identifier, - ACTIONS(7055), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4511), 3, + STATE(4466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 16, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -295117,10 +295018,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200778] = 3, + [200544] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7073), 11, + ACTIONS(7057), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295132,7 +295033,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7071), 20, + ACTIONS(7055), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295153,10 +295054,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [200817] = 3, + [200583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 11, + ACTIONS(7061), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295168,7 +295069,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7075), 20, + ACTIONS(7059), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295189,37 +295090,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [200856] = 12, + [200622] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(2329), 1, - anon_sym_RBRACK, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(7065), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - STATE(4939), 1, - sym_pattern, - STATE(5234), 1, - aux_sym_array_pattern_repeat1, - STATE(5326), 1, - sym_assignment_pattern, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 18, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(7063), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -295234,25 +295125,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200913] = 5, + anon_sym_abstract, + [200661] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3008), 6, + ACTIONS(7069), 11, + 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, sym_private_property_identifier, - ACTIONS(3006), 19, + anon_sym_AT, + ACTIONS(7067), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295272,7 +295161,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200956] = 3, + anon_sym_abstract, + [200700] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7073), 11, @@ -295308,10 +295198,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [200995] = 3, + [200739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 11, + ACTIONS(2059), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295323,7 +295213,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7057), 20, + ACTIONS(2061), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295344,15 +295234,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201034] = 4, + [200778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7079), 1, + ACTIONS(7079), 2, sym__automatic_semicolon, - ACTIONS(2060), 10, + anon_sym_SEMI, + ACTIONS(7077), 9, anon_sym_STAR, anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH, anon_sym_DQUOTE, @@ -295360,7 +295250,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2062), 20, + ACTIONS(7075), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295381,7 +295271,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201075] = 3, + [200819] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7083), 11, @@ -295417,10 +295307,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201114] = 3, + [200858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2060), 11, + ACTIONS(7073), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295432,7 +295322,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2062), 20, + ACTIONS(7071), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295453,7 +295343,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201153] = 3, + [200897] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7087), 11, @@ -295489,7 +295379,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201192] = 3, + [200936] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7091), 11, @@ -295525,38 +295415,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201231] = 9, + [200975] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, ACTIONS(7093), 1, - anon_sym_EQ_GT, - ACTIONS(7095), 2, + anon_sym_STAR, + ACTIONS(7095), 1, + anon_sym_async, + ACTIONS(7097), 1, + anon_sym_readonly, + ACTIONS(7053), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(7099), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4433), 3, + STATE(4466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -295567,10 +295460,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201282] = 3, + [201032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 11, + ACTIONS(7065), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295582,7 +295475,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7097), 20, + ACTIONS(7063), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295603,37 +295496,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201321] = 11, + [201071] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, ACTIONS(7101), 1, anon_sym_STAR, - ACTIONS(7103), 1, - anon_sym_async, - ACTIONS(7095), 2, + ACTIONS(7103), 2, sym_number, sym_private_property_identifier, ACTIONS(7105), 2, anon_sym_get, anon_sym_set, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4433), 3, + STATE(4483), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 16, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -295647,41 +295539,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201376] = 12, + [201124] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(7109), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1764), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(7101), 1, - anon_sym_STAR, - ACTIONS(7103), 1, - anon_sym_async, - ACTIONS(7107), 1, - anon_sym_readonly, - ACTIONS(7095), 2, sym_number, sym_private_property_identifier, - ACTIONS(7105), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4732), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 15, + anon_sym_AT, + ACTIONS(7107), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -295692,33 +295574,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201433] = 12, + anon_sym_abstract, + [201163] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2325), 1, + ACTIONS(2326), 1, anon_sym_COMMA, - ACTIONS(3028), 1, + ACTIONS(2330), 1, + anon_sym_RBRACK, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(7109), 1, - anon_sym_RBRACK, - STATE(5023), 1, + STATE(4959), 1, sym_pattern, - STATE(5212), 1, - aux_sym_array_pattern_repeat1, - STATE(5232), 1, + STATE(5182), 1, sym_assignment_pattern, - STATE(4319), 4, + STATE(5333), 1, + aux_sym_array_pattern_repeat1, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 18, + ACTIONS(1706), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295737,10 +295620,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201490] = 3, + [201220] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7113), 11, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(7111), 1, + anon_sym_STAR, + ACTIONS(7113), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(7115), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4722), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4453), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [201273] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7109), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295752,7 +295678,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7111), 20, + ACTIONS(7107), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295773,10 +295699,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201529] = 3, + [201312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 11, + ACTIONS(2020), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295788,7 +295714,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7081), 20, + ACTIONS(2022), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295809,10 +295735,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201568] = 3, + [201351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7113), 11, + ACTIONS(7087), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295824,7 +295750,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7111), 20, + ACTIONS(7085), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295845,32 +295771,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201607] = 10, + [201390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(7119), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1764), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(7101), 1, - anon_sym_STAR, - ACTIONS(7095), 2, sym_number, sym_private_property_identifier, - ACTIONS(7105), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4732), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4433), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 17, + anon_sym_AT, + ACTIONS(7117), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295878,6 +295794,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -295888,36 +295806,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201660] = 10, + anon_sym_abstract, + [201429] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7115), 1, + ACTIONS(7101), 1, anon_sym_STAR, - ACTIONS(7117), 2, + ACTIONS(7121), 1, + anon_sym_async, + ACTIONS(7103), 2, sym_number, sym_private_property_identifier, - ACTIONS(7119), 2, + ACTIONS(7105), 2, anon_sym_get, anon_sym_set, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4497), 3, + STATE(4483), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 17, + ACTIONS(2946), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -295931,10 +295851,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201713] = 3, + [201484] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 11, + ACTIONS(7061), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295946,7 +295866,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7089), 20, + ACTIONS(7059), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -295967,10 +295887,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201752] = 3, + [201523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7123), 11, + ACTIONS(7125), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -295982,7 +295902,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7121), 20, + ACTIONS(7123), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296003,12 +295923,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201791] = 4, + [201562] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7125), 1, + ACTIONS(7127), 1, sym__automatic_semicolon, - ACTIONS(1982), 10, + ACTIONS(2020), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -296019,7 +295939,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1984), 20, + ACTIONS(2022), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296040,10 +295960,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201832] = 3, + [201603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7129), 11, + ACTIONS(7057), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -296055,7 +295975,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7127), 20, + ACTIONS(7055), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296076,23 +295996,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201871] = 4, + [201642] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(7133), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1746), 1, anon_sym_DQUOTE, + ACTIONS(1748), 1, anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(7093), 1, + anon_sym_STAR, + ACTIONS(7053), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7131), 20, + ACTIONS(7099), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4722), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4466), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296100,8 +296029,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -296112,23 +296039,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [201912] = 3, + [201695] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 11, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(7019), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3018), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7075), 20, + ACTIONS(3016), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296148,28 +296077,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [201951] = 8, + [201738] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6932), 2, + ACTIONS(7093), 1, + anon_sym_STAR, + ACTIONS(7095), 1, + anon_sym_async, + ACTIONS(7053), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(7099), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4542), 3, + STATE(4466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [201793] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7129), 1, + sym__automatic_semicolon, + ACTIONS(1998), 10, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(2000), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296189,30 +296157,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201999] = 10, + anon_sym_abstract, + [201834] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(2326), 1, + anon_sym_COMMA, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - STATE(5146), 1, + ACTIONS(7131), 1, + anon_sym_RBRACK, + STATE(5032), 1, sym_pattern, - STATE(5622), 1, + STATE(5204), 1, sym_assignment_pattern, - ACTIONS(7137), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4319), 4, + STATE(5252), 1, + aux_sym_array_pattern_repeat1, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 18, + ACTIONS(1706), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296231,27 +296203,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202051] = 8, + [201891] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7117), 2, + ACTIONS(6870), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4497), 3, + STATE(4439), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296271,27 +296243,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202099] = 8, + [201939] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6868), 2, + ACTIONS(6958), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4485), 3, + STATE(4424), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296311,27 +296283,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202147] = 8, + [201987] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6966), 2, + ACTIONS(7113), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4543), 3, + STATE(4453), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296351,27 +296323,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202195] = 8, + [202035] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7139), 2, + ACTIONS(6864), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4470), 3, + STATE(4417), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296391,27 +296363,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202243] = 8, + [202083] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6890), 2, + ACTIONS(7133), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4482), 3, + STATE(4444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296431,27 +296403,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202291] = 8, + [202131] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7141), 2, + ACTIONS(6856), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4564), 3, + STATE(4423), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296471,27 +296443,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202339] = 8, + [202179] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6896), 2, + ACTIONS(7053), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4477), 3, + STATE(4466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296511,32 +296483,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202387] = 8, + [202227] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(6952), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4732), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4514), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(7135), 1, + anon_sym_COMMA, + ACTIONS(7137), 1, + anon_sym_RBRACK, + STATE(5315), 1, + sym_pattern, + STATE(5503), 1, + sym_assignment_pattern, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -296551,27 +296526,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202435] = 8, + [202281] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7143), 2, + ACTIONS(7140), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4481), 3, + STATE(4570), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296591,35 +296566,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202483] = 11, + [202329] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6882), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4722), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4551), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [202377] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7137), 1, - anon_sym_COMMA, - ACTIONS(7145), 1, - anon_sym_RBRACK, - STATE(5146), 1, - sym_pattern, - STATE(5622), 1, - sym_assignment_pattern, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 18, + ACTIONS(7142), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4722), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4503), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -296634,27 +296646,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202537] = 8, + [202425] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7053), 2, + ACTIONS(6942), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4511), 3, + STATE(4487), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296674,27 +296686,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202585] = 8, + [202473] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, + anon_sym_LBRACK, + ACTIONS(7135), 1, + anon_sym_COMMA, + ACTIONS(7144), 1, + anon_sym_RBRACK, + STATE(5315), 1, + sym_pattern, + STATE(5503), 1, + sym_assignment_pattern, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [202527] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6924), 2, + ACTIONS(6926), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4471), 3, + STATE(4564), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296714,27 +296769,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202633] = 8, + [202575] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7095), 2, + ACTIONS(7147), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4433), 3, + STATE(4426), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296754,27 +296809,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202681] = 8, + [202623] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6850), 2, + ACTIONS(6910), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4418), 3, + STATE(4505), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296794,27 +296849,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202729] = 8, + [202671] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7148), 2, + ACTIONS(7103), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4426), 3, + STATE(4483), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296834,27 +296889,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202777] = 8, + [202719] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6958), 2, + ACTIONS(6970), 2, sym_number, sym_private_property_identifier, - ACTIONS(4732), 3, + ACTIONS(4722), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4447), 3, + STATE(4494), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296874,31 +296929,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202825] = 11, + [202767] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(7137), 1, - anon_sym_COMMA, - ACTIONS(7150), 1, - anon_sym_RBRACK, - STATE(5146), 1, + STATE(5315), 1, sym_pattern, - STATE(5622), 1, + STATE(5503), 1, sym_assignment_pattern, - STATE(4319), 4, + ACTIONS(7135), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 18, + ACTIONS(1706), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296917,27 +296971,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202879] = 9, + [202819] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7153), 1, + ACTIONS(7149), 1, anon_sym_RBRACE, - STATE(5478), 1, + STATE(5598), 1, sym_enum_assignment, - ACTIONS(7155), 2, + ACTIONS(7151), 2, sym_number, sym_private_property_identifier, - STATE(4971), 3, + STATE(5054), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296957,27 +297011,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202928] = 9, + [202868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(6550), 9, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1764), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(7157), 1, - anon_sym_RBRACE, - STATE(5304), 1, - sym_enum_assignment, - ACTIONS(7159), 2, sym_number, sym_private_property_identifier, - STATE(4628), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 19, + anon_sym_AT, + ACTIONS(7153), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -296997,27 +297044,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202977] = 9, + anon_sym_abstract, + [202905] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6824), 1, + anon_sym_STAR, + ACTIONS(6826), 1, + anon_sym_async, + ACTIONS(7155), 1, + anon_sym_static, + ACTIONS(7157), 1, + anon_sym_readonly, + ACTIONS(7159), 1, + anon_sym_abstract, + ACTIONS(6828), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6830), 2, + anon_sym_get, + anon_sym_set, + STATE(3908), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4750), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [202962] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, anon_sym_LBRACK, ACTIONS(7161), 1, anon_sym_RBRACE, - STATE(5478), 1, + STATE(5146), 1, sym_enum_assignment, - ACTIONS(7155), 2, + ACTIONS(7163), 2, sym_number, sym_private_property_identifier, - STATE(4971), 3, + STATE(4816), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297037,40 +297129,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203026] = 13, + [203011] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6824), 1, - anon_sym_STAR, - ACTIONS(6826), 1, - anon_sym_async, - ACTIONS(7163), 1, - anon_sym_static, ACTIONS(7165), 1, - anon_sym_readonly, - ACTIONS(7167), 1, - anon_sym_abstract, - ACTIONS(6828), 2, + anon_sym_RBRACE, + STATE(5598), 1, + sym_enum_assignment, + ACTIONS(7151), 2, sym_number, sym_private_property_identifier, - ACTIONS(6830), 2, - anon_sym_get, - anon_sym_set, - STATE(3906), 3, + STATE(5054), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4760), 14, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297081,27 +297169,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203083] = 9, + [203060] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7169), 1, + ACTIONS(7167), 1, anon_sym_RBRACE, - STATE(5478), 1, + STATE(5598), 1, sym_enum_assignment, - ACTIONS(7155), 2, + ACTIONS(7151), 2, sym_number, sym_private_property_identifier, - STATE(4971), 3, + STATE(5054), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297121,20 +297209,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203132] = 3, + [203109] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6508), 9, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1746), 1, anon_sym_DQUOTE, + ACTIONS(1748), 1, anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(7169), 1, + anon_sym_RBRACE, + STATE(5200), 1, + sym_enum_assignment, + ACTIONS(7171), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7171), 20, + STATE(4858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297154,28 +297249,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [203169] = 9, + [203158] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, ACTIONS(7173), 1, anon_sym_RBRACE, - STATE(5279), 1, + STATE(5598), 1, sym_enum_assignment, - ACTIONS(7175), 2, + ACTIONS(7151), 2, sym_number, sym_private_property_identifier, - STATE(4846), 3, + STATE(5054), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297195,34 +297289,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203218] = 9, + [203207] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, + anon_sym_LBRACK, + ACTIONS(7175), 1, + sym_this, + ACTIONS(7177), 1, + anon_sym_readonly, + STATE(4835), 1, + sym_pattern, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [203257] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(7177), 1, - anon_sym_RBRACE, - STATE(5478), 1, - sym_enum_assignment, - ACTIONS(7155), 2, + ACTIONS(7179), 1, + anon_sym_static, + ACTIONS(7181), 1, + anon_sym_readonly, + ACTIONS(7183), 1, + anon_sym_abstract, + ACTIONS(6978), 2, sym_number, sym_private_property_identifier, - STATE(4971), 3, + STATE(4084), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(4750), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -297235,20 +297369,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203267] = 4, + [203307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3008), 3, + ACTIONS(3018), 3, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(3098), 5, + ACTIONS(3103), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(3006), 20, + ACTIONS(3016), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297269,34 +297403,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203305] = 12, + [203345] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6702), 1, + ACTIONS(6411), 1, anon_sym_STAR, - ACTIONS(6708), 1, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6425), 1, anon_sym_async, - ACTIONS(6712), 1, + ACTIONS(6429), 1, anon_sym_readonly, - ACTIONS(7179), 1, + ACTIONS(7185), 1, anon_sym_static, - ACTIONS(6710), 2, + ACTIONS(6427), 2, sym_number, sym_private_property_identifier, - ACTIONS(6714), 2, + ACTIONS(6431), 2, anon_sym_get, anon_sym_set, - STATE(3940), 3, + STATE(3924), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4760), 14, + ACTIONS(4750), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297311,36 +297445,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203359] = 10, + [203399] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(696), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(3026), 1, + sym_identifier, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(3036), 1, + sym_this, + ACTIONS(6844), 1, anon_sym_LBRACK, - ACTIONS(7021), 1, + ACTIONS(7187), 1, anon_sym_readonly, - ACTIONS(7181), 1, - anon_sym_STAR, - ACTIONS(7183), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(7185), 2, - anon_sym_get, - anon_sym_set, - STATE(3899), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4760), 16, + STATE(4639), 1, + sym_pattern, + STATE(4402), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1706), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297351,20 +297485,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203409] = 6, + [203449] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7191), 1, + ACTIONS(7193), 1, anon_sym_AT, - STATE(3828), 1, + STATE(3830), 1, aux_sym_export_statement_repeat1, STATE(3864), 1, sym_decorator, - ACTIONS(7189), 3, + ACTIONS(7191), 3, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(7187), 22, + ACTIONS(7189), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297387,36 +297521,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [203451] = 10, + [203491] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(7194), 1, - sym_this, - ACTIONS(7196), 1, + ACTIONS(7017), 1, anon_sym_readonly, - STATE(4753), 1, - sym_pattern, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 17, + ACTIONS(7196), 1, + anon_sym_STAR, + ACTIONS(7198), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(7200), 2, + anon_sym_get, + anon_sym_set, + STATE(3904), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297427,34 +297561,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203501] = 8, + [203541] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - STATE(5478), 1, - sym_enum_assignment, - ACTIONS(7155), 2, + ACTIONS(7202), 1, + anon_sym_STAR, + ACTIONS(7206), 1, + anon_sym_readonly, + ACTIONS(7204), 2, sym_number, sym_private_property_identifier, - STATE(4971), 3, + ACTIONS(7208), 2, + anon_sym_get, + anon_sym_set, + STATE(3903), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(4750), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297465,34 +297601,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203547] = 12, + [203591] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6356), 1, + ACTIONS(6423), 1, + anon_sym_LBRACK, + ACTIONS(6706), 1, anon_sym_STAR, - ACTIONS(6362), 1, + ACTIONS(6712), 1, anon_sym_async, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(6398), 1, + ACTIONS(6716), 1, anon_sym_readonly, - ACTIONS(7198), 1, + ACTIONS(7210), 1, anon_sym_static, - ACTIONS(6364), 2, + ACTIONS(6714), 2, sym_number, sym_private_property_identifier, - ACTIONS(6366), 2, + ACTIONS(6718), 2, anon_sym_get, anon_sym_set, - STATE(3945), 3, + STATE(3944), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4760), 14, + ACTIONS(4750), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297507,34 +297643,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203601] = 12, + [203645] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(2946), 1, + ACTIONS(2948), 1, anon_sym_async, - ACTIONS(2954), 1, + ACTIONS(2952), 1, anon_sym_readonly, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6844), 1, + ACTIONS(6850), 1, anon_sym_STAR, - ACTIONS(7200), 1, + ACTIONS(7212), 1, anon_sym_static, - ACTIONS(2908), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - ACTIONS(2948), 2, + ACTIONS(2950), 2, anon_sym_get, anon_sym_set, - STATE(4467), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 14, + ACTIONS(2946), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297549,34 +297685,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203655] = 10, + [203699] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, - sym_identifier, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(3038), 1, - sym_this, - ACTIONS(6872), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7202), 1, + STATE(5598), 1, + sym_enum_assignment, + ACTIONS(7151), 2, + sym_number, + sym_private_property_identifier, + STATE(5054), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_readonly, - STATE(4593), 1, - sym_pattern, - STATE(4319), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1722), 17, + 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, + [203745] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6882), 2, + sym_number, + sym_private_property_identifier, + STATE(4551), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -297589,34 +297759,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203705] = 10, + [203788] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7204), 1, + ACTIONS(6910), 2, + sym_number, + sym_private_property_identifier, + STATE(4505), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, anon_sym_static, - ACTIONS(7206), 1, anon_sym_readonly, - ACTIONS(7208), 1, - anon_sym_abstract, - ACTIONS(6988), 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, + [203831] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(7113), 2, sym_number, sym_private_property_identifier, - STATE(4145), 3, + STATE(4453), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4760), 17, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -297629,36 +297831,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203755] = 10, + [203874] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7210), 1, - anon_sym_STAR, - ACTIONS(7214), 1, + ACTIONS(6864), 2, + sym_number, + sym_private_property_identifier, + STATE(4417), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_readonly, - ACTIONS(7212), 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, + [203917] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6970), 2, sym_number, sym_private_property_identifier, - ACTIONS(7216), 2, + STATE(4494), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2946), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3897), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [203960] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6870), 2, + sym_number, + sym_private_property_identifier, + STATE(4439), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4760), 16, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -297669,23 +297939,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203805] = 7, + [204003] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6952), 2, + ACTIONS(7140), 2, sym_number, sym_private_property_identifier, - STATE(4514), 3, + STATE(4570), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297705,23 +297975,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203848] = 7, + [204046] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7117), 2, + ACTIONS(6942), 2, sym_number, sym_private_property_identifier, - STATE(4497), 3, + STATE(4487), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297741,23 +298011,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203891] = 7, + [204089] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6966), 2, + ACTIONS(7142), 2, sym_number, sym_private_property_identifier, - STATE(4543), 3, + STATE(4503), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297777,23 +298047,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203934] = 7, + [204132] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6978), 2, + ACTIONS(2906), 2, sym_number, sym_private_property_identifier, - STATE(4538), 3, + STATE(4504), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297813,23 +298083,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [203977] = 7, + [204175] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7025), 2, + ACTIONS(6952), 2, sym_number, sym_private_property_identifier, - STATE(4106), 3, + STATE(4499), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4760), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297849,23 +298119,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204020] = 7, + [204218] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(2908), 2, + ACTIONS(7133), 2, sym_number, sym_private_property_identifier, - STATE(4467), 3, + STATE(4444), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297885,23 +298155,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204063] = 7, + [204261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(7139), 2, + ACTIONS(7015), 2, sym_number, sym_private_property_identifier, - STATE(4470), 3, + STATE(4187), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(4750), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297921,23 +298191,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204106] = 7, + [204304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6932), 2, + ACTIONS(6978), 2, sym_number, sym_private_property_identifier, - STATE(4542), 3, + STATE(4084), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(4750), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297957,23 +298227,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204149] = 7, + [204347] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7053), 2, + ACTIONS(6926), 2, sym_number, sym_private_property_identifier, - STATE(4511), 3, + STATE(4564), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -297993,66 +298263,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204192] = 7, + [204390] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6402), 2, - sym_number, - sym_private_property_identifier, - STATE(4512), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(7017), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [204235] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(7095), 2, + ACTIONS(6978), 2, sym_number, sym_private_property_identifier, - STATE(4433), 3, + STATE(4084), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(4750), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -298065,23 +298300,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204278] = 7, + [204435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6890), 2, + ACTIONS(6856), 2, sym_number, sym_private_property_identifier, - STATE(4482), 3, + STATE(4423), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298101,23 +298336,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204321] = 7, + [204478] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(6990), 2, + ACTIONS(6988), 2, sym_number, sym_private_property_identifier, - STATE(4420), 3, + STATE(4153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(4750), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298137,23 +298372,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204364] = 7, + [204521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7141), 2, + ACTIONS(6974), 2, sym_number, sym_private_property_identifier, - STATE(4564), 3, + STATE(4577), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298173,65 +298408,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204407] = 8, + [204564] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(696), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(3028), 1, + ACTIONS(3026), 1, sym_identifier, - ACTIONS(3030), 1, + ACTIONS(3028), 1, anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(6844), 1, anon_sym_LBRACK, - STATE(5651), 1, + STATE(5645), 1, sym_pattern, - STATE(4319), 4, + STATE(4402), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1722), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [204452] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6868), 2, - sym_number, - sym_private_property_identifier, - STATE(4485), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(1706), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -298246,133 +298445,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204495] = 8, + [204609] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(7019), 1, - anon_sym_readonly, - ACTIONS(6992), 2, - sym_number, - sym_private_property_identifier, - STATE(4081), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4760), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [204540] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(6396), 1, - anon_sym_LBRACK, - ACTIONS(7021), 1, - anon_sym_readonly, - ACTIONS(6988), 2, - sym_number, - sym_private_property_identifier, - STATE(4145), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4760), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [204585] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6854), 2, - sym_number, - sym_private_property_identifier, - STATE(4544), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [204628] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6704), 2, + ACTIONS(6417), 2, sym_number, sym_private_property_identifier, - STATE(4443), 3, + STATE(4484), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298392,23 +298481,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204671] = 7, + [204652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(7148), 2, + ACTIONS(6976), 2, sym_number, sym_private_property_identifier, - STATE(4426), 3, + STATE(4571), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298428,23 +298517,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204714] = 7, + [204695] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6896), 2, + ACTIONS(7103), 2, sym_number, sym_private_property_identifier, - STATE(4477), 3, + STATE(4483), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298464,23 +298553,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204757] = 7, + [204738] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6992), 2, + ACTIONS(6708), 2, sym_number, sym_private_property_identifier, - STATE(4081), 3, + STATE(4563), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4760), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298500,23 +298589,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204800] = 7, + [204781] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, ACTIONS(6958), 2, sym_number, sym_private_property_identifier, - STATE(4447), 3, + STATE(4424), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298536,23 +298625,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204843] = 7, + [204824] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6850), 2, + ACTIONS(7147), 2, sym_number, sym_private_property_identifier, - STATE(4418), 3, + STATE(4426), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298572,23 +298661,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204886] = 7, + [204867] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(6396), 1, + ACTIONS(6415), 1, anon_sym_LBRACK, - ACTIONS(6988), 2, + ACTIONS(7053), 2, sym_number, sym_private_property_identifier, - STATE(4145), 3, + STATE(4466), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4760), 19, + ACTIONS(2946), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298608,66 +298697,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [204929] = 7, + [204910] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(6400), 1, + ACTIONS(6423), 1, anon_sym_LBRACK, - ACTIONS(7143), 2, - sym_number, - sym_private_property_identifier, - STATE(4481), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2944), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, + ACTIONS(7021), 1, anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [204972] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(6400), 1, - anon_sym_LBRACK, - ACTIONS(6924), 2, + ACTIONS(6988), 2, sym_number, sym_private_property_identifier, - STATE(4471), 3, + STATE(4153), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2944), 19, + ACTIONS(4750), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -298680,15 +298734,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [205015] = 3, + [204955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7220), 4, + ACTIONS(7216), 4, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_AT, - ACTIONS(7218), 22, + ACTIONS(7214), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298711,14 +298765,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [205049] = 4, + [204989] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7222), 1, + ACTIONS(7218), 1, sym_identifier, - STATE(5886), 1, + STATE(6084), 1, sym_mapped_type_clause, - ACTIONS(7224), 18, + ACTIONS(7220), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -298737,188 +298791,187 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [205079] = 18, + [205019] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7228), 1, + ACTIONS(7224), 1, anon_sym_EQ, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7228), 1, anon_sym_COMMA, - ACTIONS(7234), 1, + ACTIONS(7230), 1, anon_sym_COLON, - ACTIONS(7236), 1, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(7238), 1, + ACTIONS(7234), 1, anon_sym_GT, - ACTIONS(7241), 1, + ACTIONS(7237), 1, anon_sym_SLASH, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(7247), 1, + ACTIONS(7243), 1, anon_sym_extends, - STATE(4086), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4089), 1, + STATE(4079), 1, sym_type_arguments, - STATE(4440), 1, + STATE(4134), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(5069), 1, + STATE(4939), 1, sym_constraint, - STATE(5596), 1, + STATE(5445), 1, sym_default_type, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [205135] = 18, + [205075] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7228), 1, + ACTIONS(7224), 1, anon_sym_EQ, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7228), 1, anon_sym_COMMA, - ACTIONS(7234), 1, + ACTIONS(7230), 1, anon_sym_COLON, - ACTIONS(7236), 1, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(7238), 1, + ACTIONS(7234), 1, anon_sym_GT, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(7247), 1, + ACTIONS(7243), 1, anon_sym_extends, - ACTIONS(7249), 1, + ACTIONS(7245), 1, anon_sym_SLASH, - STATE(4092), 1, - sym_type_arguments, - STATE(4109), 1, + STATE(4091), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4145), 1, + sym_type_arguments, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(5069), 1, + STATE(4939), 1, sym_constraint, - STATE(5596), 1, + STATE(5445), 1, sym_default_type, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [205191] = 18, + [205131] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7228), 1, + ACTIONS(7224), 1, anon_sym_EQ, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7228), 1, anon_sym_COMMA, - ACTIONS(7234), 1, + ACTIONS(7230), 1, anon_sym_COLON, - ACTIONS(7236), 1, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(7238), 1, + ACTIONS(7234), 1, anon_sym_GT, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(7247), 1, + ACTIONS(7243), 1, anon_sym_extends, - ACTIONS(7251), 1, + ACTIONS(7247), 1, anon_sym_SLASH, - STATE(4171), 1, - sym_type_arguments, - STATE(4172), 1, + STATE(4102), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4107), 1, + sym_type_arguments, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(5069), 1, + STATE(4939), 1, sym_constraint, - STATE(5596), 1, + STATE(5445), 1, sym_default_type, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [205247] = 18, + [205187] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7228), 1, + ACTIONS(7224), 1, anon_sym_EQ, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7232), 1, + ACTIONS(7228), 1, anon_sym_COMMA, - ACTIONS(7234), 1, + ACTIONS(7230), 1, anon_sym_COLON, - ACTIONS(7236), 1, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(7238), 1, + ACTIONS(7234), 1, anon_sym_GT, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(7247), 1, + ACTIONS(7243), 1, anon_sym_extends, - ACTIONS(7253), 1, + ACTIONS(7249), 1, anon_sym_SLASH, - STATE(4131), 1, + STATE(4119), 1, sym_type_arguments, - STATE(4132), 1, + STATE(4120), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(5069), 1, + STATE(4939), 1, sym_constraint, - STATE(5596), 1, + STATE(5445), 1, sym_default_type, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [205303] = 6, + [205243] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_EQ, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, + ACTIONS(2213), 1, anon_sym_DOT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 12, + ACTIONS(5309), 1, + anon_sym_EQ, + ACTIONS(5311), 15, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_implements, anon_sym_extends, - [205333] = 3, + [205270] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 1, + ACTIONS(2107), 1, anon_sym_PIPE, - ACTIONS(2160), 15, + ACTIONS(2105), 15, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -298934,34 +298987,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205357] = 4, + [205294] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_DOT, - ACTIONS(5090), 1, + ACTIONS(4881), 1, anon_sym_EQ, - ACTIONS(5092), 14, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_implements, anon_sym_extends, - [205383] = 3, + [205324] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2251), 1, + ACTIONS(2026), 1, anon_sym_PIPE, - ACTIONS(2249), 15, + ACTIONS(2024), 15, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -298977,7 +299032,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205407] = 2, + [205348] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7255), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [205369] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7257), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [205390] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7259), 15, @@ -298996,7 +299089,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205428] = 2, + [205411] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7261), 15, @@ -299015,7 +299108,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205449] = 2, + [205432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7263), 15, @@ -299034,7 +299127,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205470] = 2, + [205453] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4885), 1, + anon_sym_EQ, + ACTIONS(7251), 1, + anon_sym_LT, + STATE(3889), 1, + sym_type_arguments, + ACTIONS(4887), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, + [205480] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7265), 15, @@ -299053,7 +299168,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205491] = 2, + [205501] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7267), 15, @@ -299072,7 +299187,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205512] = 2, + [205522] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7269), 15, @@ -299091,7 +299206,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205533] = 2, + [205543] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7271), 15, @@ -299110,7 +299225,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205554] = 2, + [205564] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5128), 1, + anon_sym_EQ, + ACTIONS(5130), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_implements, + anon_sym_extends, + [205587] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7273), 15, @@ -299129,7 +299264,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205575] = 2, + [205608] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7275), 15, @@ -299148,7 +299283,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205596] = 2, + [205629] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7277), 15, @@ -299167,18 +299302,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205617] = 5, + [205650] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5356), 1, anon_sym_EQ, - ACTIONS(7255), 1, - anon_sym_LT, - STATE(3903), 1, - sym_type_arguments, - ACTIONS(4889), 12, + ACTIONS(5358), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_implements, + anon_sym_extends, + [205673] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5332), 1, + anon_sym_EQ, + ACTIONS(5334), 14, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -299188,8 +299340,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_implements, anon_sym_extends, - [205644] = 2, + [205696] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7279), 15, @@ -299208,7 +299361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205665] = 2, + [205717] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7281), 15, @@ -299227,7 +299380,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205686] = 2, + [205738] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7283), 15, @@ -299246,7 +299399,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205707] = 2, + [205759] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4933), 1, + anon_sym_EQ, + ACTIONS(4935), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_implements, + anon_sym_extends, + [205782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7285), 15, @@ -299265,7 +299438,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205728] = 2, + [205803] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7287), 15, @@ -299284,7 +299457,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205749] = 2, + [205824] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4979), 1, + anon_sym_EQ, + ACTIONS(4981), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_implements, + anon_sym_extends, + [205847] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7289), 15, @@ -299303,7 +299496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205770] = 2, + [205868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7291), 15, @@ -299322,7 +299515,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205791] = 2, + [205889] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(7293), 15, @@ -299341,175 +299534,256 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [205812] = 2, + [205910] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [205833] = 2, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(7295), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_DOT, + ACTIONS(7299), 1, + anon_sym_is, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3916), 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, + [205940] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7297), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [205854] = 13, + ACTIONS(4881), 1, + anon_sym_extends, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7305), 1, + anon_sym_GT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(7301), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(7303), 2, + anon_sym_LBRACE, + sym_jsx_identifier, + ACTIONS(3916), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + [205974] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(7295), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7297), 1, + anon_sym_DOT, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3916), 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, + [206002] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(7303), 1, + ACTIONS(7312), 1, anon_sym_BANG, - ACTIONS(7305), 1, + ACTIONS(7314), 1, anon_sym_COLON, - ACTIONS(7307), 1, + ACTIONS(7316), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4772), 1, + STATE(4608), 1, sym_type_annotation, - STATE(4801), 1, + STATE(5357), 1, sym__call_signature, - STATE(5182), 1, + STATE(5363), 1, sym__initializer, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7301), 3, + ACTIONS(7310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205896] = 3, + [206044] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5374), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(5376), 13, - anon_sym_LBRACE, + ACTIONS(7314), 1, + anon_sym_COLON, + ACTIONS(7320), 1, + anon_sym_BANG, + ACTIONS(7322), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4703), 1, + sym_type_annotation, + STATE(5141), 1, + sym__initializer, + STATE(5149), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7318), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + [206086] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(7326), 1, + anon_sym_BANG, + ACTIONS(7328), 1, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_implements, - anon_sym_extends, - [205918] = 13, + STATE(4059), 1, + sym_formal_parameters, + STATE(4873), 1, + sym__call_signature, + STATE(4893), 1, + sym_type_annotation, + STATE(5282), 1, + sym__initializer, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7324), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206128] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7314), 1, anon_sym_COLON, - ACTIONS(7311), 1, + ACTIONS(7332), 1, anon_sym_BANG, - ACTIONS(7313), 1, + ACTIONS(7334), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4828), 1, + STATE(4892), 1, sym_type_annotation, - STATE(5208), 1, + STATE(4895), 1, sym__call_signature, - STATE(5209), 1, + STATE(5361), 1, sym__initializer, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7309), 3, + ACTIONS(7330), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205960] = 3, + [206170] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(5292), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7314), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(7320), 1, + anon_sym_BANG, + ACTIONS(7336), 1, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_implements, - anon_sym_extends, - [205982] = 13, + STATE(4059), 1, + sym_formal_parameters, + STATE(4695), 1, + sym__call_signature, + STATE(4703), 1, + sym_type_annotation, + STATE(5185), 1, + sym__initializer, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7318), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [206212] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - ACTIONS(7317), 1, + ACTIONS(7312), 1, anon_sym_BANG, - ACTIONS(7319), 1, + ACTIONS(7314), 1, + anon_sym_COLON, + ACTIONS(7338), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4752), 1, + STATE(4608), 1, sym_type_annotation, - STATE(5178), 1, + STATE(4610), 1, sym__call_signature, - STATE(5180), 1, + STATE(5345), 1, sym__initializer, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7315), 3, + ACTIONS(7310), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [206024] = 3, + [206254] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, + ACTIONS(5316), 1, anon_sym_EQ, - ACTIONS(5066), 13, + ACTIONS(5318), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299521,65 +299795,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_implements, anon_sym_extends, - [206046] = 6, + [206275] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(7321), 1, - anon_sym_LT, - ACTIONS(7323), 1, - anon_sym_DOT, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3908), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 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, - [206074] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(7317), 1, - anon_sym_BANG, - ACTIONS(7325), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4752), 1, - sym_type_annotation, - STATE(4757), 1, - sym__call_signature, - STATE(5139), 1, - sym__initializer, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7315), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [206116] = 3, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7344), 1, + anon_sym_SLASH, + STATE(4164), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4171), 1, + sym_type_arguments, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [206316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 1, + ACTIONS(5340), 1, anon_sym_EQ, - ACTIONS(5354), 13, + ACTIONS(5342), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299591,95 +299841,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_implements, anon_sym_extends, - [206138] = 13, + [206337] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7348), 1, anon_sym_COLON, - ACTIONS(7329), 1, - anon_sym_BANG, - ACTIONS(7331), 1, + ACTIONS(7350), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4606), 1, - sym_type_annotation, - STATE(4609), 1, + STATE(4911), 1, sym__call_signature, - STATE(5331), 1, - sym__initializer, - STATE(5492), 1, + STATE(4913), 1, + sym_type_annotation, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7327), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [206180] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(7321), 1, - anon_sym_LT, - ACTIONS(7323), 1, - anon_sym_DOT, - ACTIONS(7333), 1, - anon_sym_is, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3908), 9, + ACTIONS(7346), 5, 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, - [206210] = 13, + [206372] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7354), 1, anon_sym_COLON, - ACTIONS(7311), 1, - anon_sym_BANG, - ACTIONS(7335), 1, + ACTIONS(7356), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4827), 1, + STATE(4594), 1, sym__call_signature, - STATE(4828), 1, + STATE(4613), 1, sym_type_annotation, - STATE(5184), 1, - sym__initializer, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7309), 3, + ACTIONS(7352), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [206252] = 3, + anon_sym_PIPE_RBRACE, + [206407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(5301), 1, anon_sym_EQ, - ACTIONS(4977), 13, + ACTIONS(5303), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299691,44 +299909,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_implements, anon_sym_extends, - [206274] = 9, + [206428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, + ACTIONS(2213), 1, + anon_sym_DOT, + ACTIONS(5309), 1, + anon_sym_PIPE, + ACTIONS(5311), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_AMP, anon_sym_extends, - ACTIONS(7255), 1, + anon_sym_PIPE_RBRACE, + [206451] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4885), 1, + anon_sym_PIPE, + ACTIONS(7295), 1, anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7341), 1, - anon_sym_GT, - STATE(3896), 1, + STATE(3994), 1, sym_type_arguments, - ACTIONS(7337), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(7339), 2, - anon_sym_LBRACE, - sym_jsx_identifier, - ACTIONS(3908), 5, + ACTIONS(4887), 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, - [206308] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [206476] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(5336), 1, anon_sym_EQ, - ACTIONS(5138), 12, + ACTIONS(7358), 1, + anon_sym_LBRACK, + ACTIONS(5338), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -299736,12 +299968,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206329] = 3, + [206499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(5320), 1, anon_sym_EQ, - ACTIONS(2305), 12, + ACTIONS(5322), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299754,12 +299986,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206350] = 3, + [206520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 1, + ACTIONS(5265), 1, anon_sym_EQ, - ACTIONS(5360), 12, + ACTIONS(5267), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299772,12 +300004,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206371] = 3, + [206541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 1, + ACTIONS(5222), 1, anon_sym_EQ, - ACTIONS(5223), 12, + ACTIONS(5224), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299790,12 +300022,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206392] = 3, + [206562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, + ACTIONS(4885), 1, anon_sym_EQ, - ACTIONS(5099), 12, + ACTIONS(4887), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299808,57 +300040,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206413] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4887), 1, - anon_sym_PIPE, - ACTIONS(7321), 1, - anon_sym_LT, - STATE(4002), 1, - sym_type_arguments, - ACTIONS(4889), 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, - [206438] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7348), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4891), 1, - sym__call_signature, - STATE(4893), 1, - sym_type_annotation, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7344), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206473] = 3, + [206583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, + ACTIONS(5368), 1, anon_sym_EQ, - ACTIONS(5111), 12, + ACTIONS(5370), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299871,12 +300058,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206494] = 3, + [206604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(5293), 1, anon_sym_EQ, - ACTIONS(5196), 12, + ACTIONS(5295), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -299889,209 +300076,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206515] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7352), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4338), 1, - sym__call_signature, - STATE(4824), 1, - sym_type_annotation, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7350), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206550] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7354), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4350), 1, - sym__call_signature, - STATE(4893), 1, - sym_type_annotation, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7344), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2190), 1, - anon_sym_DOT, - ACTIONS(5090), 1, - anon_sym_PIPE, - ACTIONS(5092), 11, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [206608] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(7358), 1, - anon_sym_GT, - ACTIONS(7360), 1, - anon_sym_SLASH, - STATE(4098), 1, - sym_type_arguments, - STATE(4099), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [206649] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7364), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4850), 1, - sym__call_signature, - STATE(4853), 1, - sym_type_annotation, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7362), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206684] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7366), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4824), 1, - sym_type_annotation, - STATE(4825), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7350), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206719] = 10, + [206625] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7368), 1, + ACTIONS(7348), 1, anon_sym_COLON, - ACTIONS(7370), 1, + ACTIONS(7362), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4410), 1, + STATE(4397), 1, sym__call_signature, - STATE(4853), 1, + STATE(4814), 1, sym_type_annotation, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7362), 5, + ACTIONS(7360), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [206754] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4315), 1, - anon_sym_COLON, - ACTIONS(4693), 1, - anon_sym_EQ, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7375), 1, - anon_sym_QMARK, - STATE(3896), 1, - sym_type_arguments, - STATE(5660), 1, - sym_type_annotation, - ACTIONS(7372), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3908), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [206789] = 3, + [206660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 1, + ACTIONS(5305), 1, anon_sym_EQ, - ACTIONS(5150), 12, + ACTIONS(5307), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300104,17 +300119,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206810] = 3, + [206681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, + ACTIONS(5229), 1, anon_sym_EQ, - ACTIONS(5211), 12, + ACTIONS(7358), 1, + anon_sym_LBRACK, + ACTIONS(5231), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -300122,12 +300138,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206831] = 3, + [206704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, + ACTIONS(5235), 1, anon_sym_EQ, - ACTIONS(5040), 12, + ACTIONS(5237), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300140,12 +300156,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206852] = 3, + [206725] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, + ACTIONS(5281), 1, anon_sym_EQ, - ACTIONS(5130), 12, + ACTIONS(5283), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300158,12 +300174,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206873] = 3, + [206746] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, + ACTIONS(5277), 1, anon_sym_EQ, - ACTIONS(5115), 12, + ACTIONS(5279), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300176,12 +300192,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206894] = 3, + [206767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, + ACTIONS(5273), 1, anon_sym_EQ, - ACTIONS(5176), 12, + ACTIONS(5275), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300194,55 +300210,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206915] = 3, + [206788] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(4266), 1, + anon_sym_COLON, + ACTIONS(4691), 1, anon_sym_EQ, - ACTIONS(4889), 12, - anon_sym_LBRACE, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7367), 1, + anon_sym_QMARK, + STATE(3888), 1, + sym_type_arguments, + STATE(5395), 1, + sym_type_annotation, + ACTIONS(7364), 2, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3916), 4, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206936] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7364), 1, - anon_sym_QMARK, - ACTIONS(7378), 1, - anon_sym_COLON, - STATE(4063), 1, - sym_formal_parameters, - STATE(4850), 1, - sym__call_signature, - STATE(4853), 1, - sym_type_annotation, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7362), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206971] = 3, + [206823] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5360), 1, anon_sym_EQ, - ACTIONS(5036), 12, + ACTIONS(5362), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300255,18 +300253,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206992] = 5, + [206844] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5362), 1, + ACTIONS(5364), 1, anon_sym_EQ, - ACTIONS(7380), 1, + ACTIONS(7358), 1, anon_sym_LBRACK, - ACTIONS(5239), 3, + ACTIONS(5231), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(5364), 8, + ACTIONS(5366), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300275,12 +300273,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [207017] = 3, + [206869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 1, + ACTIONS(5269), 1, anon_sym_EQ, - ACTIONS(4967), 12, + ACTIONS(5271), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300293,18 +300291,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207038] = 4, + [206890] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7370), 1, + anon_sym_COLON, + ACTIONS(7372), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4339), 1, + sym__call_signature, + STATE(4613), 1, + sym_type_annotation, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7352), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206925] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7374), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4261), 1, + sym__call_signature, + STATE(4913), 1, + sym_type_annotation, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7346), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [206960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5237), 1, + ACTIONS(5214), 1, anon_sym_EQ, - ACTIONS(7380), 1, - anon_sym_LBRACK, - ACTIONS(5239), 11, + ACTIONS(5216), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -300312,18 +300359,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207061] = 4, + [206981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5370), 1, + ACTIONS(4987), 1, anon_sym_EQ, - ACTIONS(7380), 1, - anon_sym_LBRACK, - ACTIONS(5372), 11, + ACTIONS(4989), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -300331,65 +300377,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207084] = 13, + [207002] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(7356), 1, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(7358), 1, + ACTIONS(7342), 1, anon_sym_GT, - ACTIONS(7382), 1, + ACTIONS(7376), 1, anon_sym_SLASH, - STATE(4160), 1, - sym_type_arguments, - STATE(4161), 1, + STATE(4143), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4144), 1, + sym_type_arguments, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [207125] = 10, + [207043] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7348), 1, anon_sym_COLON, - ACTIONS(7386), 1, + ACTIONS(7380), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4645), 1, + STATE(4848), 1, sym_type_annotation, - STATE(4646), 1, + STATE(4850), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7378), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [207078] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7382), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4289), 1, + sym__call_signature, + STATE(4848), 1, + sym_type_annotation, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7378), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [207113] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7356), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4594), 1, + sym__call_signature, + STATE(4613), 1, + sym_type_annotation, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7384), 5, + ACTIONS(7352), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [207160] = 3, + [207148] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 1, + ACTIONS(2311), 1, anon_sym_EQ, - ACTIONS(5368), 12, + ACTIONS(2309), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300402,12 +300498,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207181] = 3, + [207169] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7384), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4810), 1, + sym__call_signature, + STATE(4814), 1, + sym_type_annotation, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7360), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [207204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 1, + ACTIONS(5001), 1, anon_sym_EQ, - ACTIONS(5245), 12, + ACTIONS(4999), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300420,12 +300541,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207202] = 3, + [207225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, + ACTIONS(5261), 1, anon_sym_EQ, - ACTIONS(5180), 12, + ACTIONS(5263), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -300438,101 +300559,277 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207223] = 3, + [207246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, + ACTIONS(7295), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_DOT, + ACTIONS(7386), 1, + anon_sym_is, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3916), 8, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(5380), 12, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207244] = 10, + [207272] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7249), 1, + anon_sym_SLASH, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4119), 1, + sym_type_arguments, + STATE(4128), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [207310] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7232), 1, + anon_sym_LT, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7376), 1, + anon_sym_SLASH, + STATE(4136), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4144), 1, + sym_type_arguments, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [207348] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7232), 1, + anon_sym_LT, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7344), 1, + anon_sym_SLASH, + STATE(4163), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4171), 1, + sym_type_arguments, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [207386] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, + anon_sym_COMMA, + ACTIONS(4741), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 7, + sym__automatic_semicolon, anon_sym_LPAREN, - ACTIONS(7346), 1, + anon_sym_SEMI, anon_sym_COLON, - ACTIONS(7388), 1, + anon_sym_LT, anon_sym_QMARK, - STATE(4063), 1, + anon_sym_PIPE_RBRACE, + [207414] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7348), 1, + anon_sym_COLON, + STATE(4059), 1, sym_formal_parameters, - STATE(4385), 1, + STATE(4304), 1, sym__call_signature, - STATE(4645), 1, + STATE(4890), 1, sym_type_annotation, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7384), 5, + ACTIONS(7388), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [207279] = 3, + [207446] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, - anon_sym_EQ, - ACTIONS(5170), 12, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7364), 1, anon_sym_RPAREN, - anon_sym_COLON, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 4, 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, - [207300] = 6, + ACTIONS(4691), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [207474] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7390), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7392), 1, - anon_sym_DOT, - ACTIONS(7394), 1, - anon_sym_is, - STATE(4197), 1, - sym_type_arguments, - ACTIONS(3908), 8, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7348), 1, + anon_sym_COLON, + STATE(4059), 1, + sym_formal_parameters, + STATE(4722), 1, + sym_type_annotation, + STATE(4723), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7390), 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, - [207326] = 7, + anon_sym_PIPE_RBRACE, + [207506] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + STATE(4059), 1, + sym_formal_parameters, + STATE(4707), 1, + sym_type_annotation, + STATE(4710), 1, + sym__call_signature, + STATE(5176), 1, + sym__initializer, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7392), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207542] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + STATE(4059), 1, + sym_formal_parameters, + STATE(4906), 1, + sym_type_annotation, + STATE(4907), 1, + sym__call_signature, + STATE(5375), 1, + sym__initializer, + STATE(5618), 1, + sym_type_parameters, + ACTIONS(7394), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207578] = 7, ACTIONS(3), 1, sym_comment, + ACTIONS(4716), 1, + anon_sym_COMMA, ACTIONS(4726), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [207606] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4751), 1, + ACTIONS(4729), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -300540,20 +300837,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [207354] = 7, + [207634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(7396), 1, + anon_sym_LT, + ACTIONS(7398), 1, + anon_sym_DOT, + ACTIONS(7400), 1, + anon_sym_is, + STATE(4202), 1, + sym_type_arguments, + ACTIONS(3916), 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, + [207660] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4748), 1, + ACTIONS(4735), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -300561,286 +300878,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [207382] = 11, + [207688] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7348), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4749), 1, + STATE(4822), 1, sym__call_signature, - STATE(4750), 1, + STATE(4823), 1, sym_type_annotation, - STATE(5144), 1, - sym__initializer, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7396), 3, + ACTIONS(7402), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [207418] = 9, + anon_sym_PIPE_RBRACE, + [207720] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7348), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4640), 1, - sym_type_annotation, - STATE(4641), 1, + STATE(4290), 1, sym__call_signature, - STATE(5492), 1, + STATE(4851), 1, + sym_type_annotation, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7398), 5, + ACTIONS(7404), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [207450] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, - anon_sym_COMMA, - ACTIONS(4745), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [207478] = 12, + [207752] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(7243), 1, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(7358), 1, + ACTIONS(7342), 1, anon_sym_GT, - ACTIONS(7360), 1, - anon_sym_SLASH, - STATE(4098), 1, + STATE(4079), 1, sym_type_arguments, - STATE(4101), 1, + STATE(4133), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [207516] = 8, + [207790] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 1, - anon_sym_COLON, - ACTIONS(7255), 1, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(7295), 1, anon_sym_LT, - ACTIONS(7257), 1, + ACTIONS(7297), 1, anon_sym_DOT, - ACTIONS(7375), 1, - anon_sym_QMARK, - STATE(3896), 1, - sym_type_arguments, - STATE(5660), 1, - sym_type_annotation, - ACTIONS(3908), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [207546] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7251), 1, - anon_sym_SLASH, - ACTIONS(7358), 1, - anon_sym_GT, - STATE(4171), 1, - sym_type_arguments, - STATE(4173), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [207584] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7241), 1, - anon_sym_SLASH, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7358), 1, - anon_sym_GT, - STATE(4084), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4089), 1, + STATE(4022), 1, sym_type_arguments, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [207622] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4726), 1, + ACTIONS(7364), 2, anon_sym_COMMA, - ACTIONS(4729), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 7, + ACTIONS(3916), 6, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [207650] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(4063), 1, - sym_formal_parameters, - STATE(4835), 1, - sym_type_annotation, - STATE(4836), 1, - sym__call_signature, - STATE(5236), 1, - sym__initializer, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7400), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [207686] = 11, + [207818] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7348), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4719), 1, + STATE(4851), 1, sym_type_annotation, - STATE(4720), 1, + STATE(4852), 1, sym__call_signature, - STATE(5166), 1, - sym__initializer, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7402), 3, + ACTIONS(7404), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [207722] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7358), 1, - anon_sym_GT, - ACTIONS(7382), 1, - anon_sym_SLASH, - STATE(4160), 1, - sym_type_arguments, - STATE(4162), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [207760] = 7, + anon_sym_PIPE_RBRACE, + [207850] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4736), 1, + ACTIONS(4738), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5244), 1, aux_sym_object_repeat1, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -300848,136 +301015,164 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [207788] = 9, + [207878] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7348), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4332), 1, + STATE(4395), 1, sym__call_signature, - STATE(4732), 1, + STATE(4823), 1, sym_type_annotation, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7404), 5, + ACTIONS(7402), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [207820] = 11, + [207910] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(4266), 1, + anon_sym_COLON, + ACTIONS(7251), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7367), 1, + anon_sym_QMARK, + STATE(3888), 1, + sym_type_arguments, + STATE(5395), 1, + sym_type_annotation, + ACTIONS(3916), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [207940] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4862), 1, - sym_type_annotation, - STATE(4863), 1, + STATE(4596), 1, sym__call_signature, - STATE(5306), 1, + STATE(4597), 1, + sym_type_annotation, + STATE(5368), 1, sym__initializer, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, ACTIONS(7406), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207856] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - anon_sym_LT, - ACTIONS(7323), 1, - anon_sym_DOT, - ACTIONS(7408), 1, - anon_sym_is, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3908), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [207882] = 11, + [207976] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4719), 1, + STATE(4707), 1, sym_type_annotation, - STATE(5298), 1, - sym__call_signature, - STATE(5316), 1, + STATE(5164), 1, sym__initializer, - STATE(5492), 1, + STATE(5165), 1, + sym__call_signature, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7402), 3, + ACTIONS(7392), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207918] = 9, + [208012] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7232), 1, + anon_sym_LT, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7245), 1, + anon_sym_SLASH, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4145), 1, + sym_type_arguments, + STATE(4188), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [208050] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7348), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4339), 1, + STATE(4285), 1, sym__call_signature, - STATE(4838), 1, + STATE(4722), 1, sym_type_annotation, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7410), 5, + ACTIONS(7390), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [207950] = 7, + [208082] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4757), 1, + ACTIONS(4744), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5384), 1, aux_sym_object_repeat1, - ACTIONS(4732), 7, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -300985,20 +301180,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [207978] = 7, + [208110] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4742), 1, + ACTIONS(4747), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 7, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -301006,20 +301201,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [208006] = 7, + [208138] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4754), 1, + ACTIONS(4732), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5340), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 7, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -301027,254 +301222,119 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [208034] = 9, + [208166] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_COLON, - STATE(4063), 1, - sym_formal_parameters, - STATE(4349), 1, - sym__call_signature, - STATE(4722), 1, - sym_type_annotation, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7412), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208066] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7372), 1, - anon_sym_RPAREN, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4693), 4, + ACTIONS(7308), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [208094] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4722), 1, - sym_type_annotation, - STATE(4898), 1, + STATE(4864), 1, sym__call_signature, - STATE(5492), 1, + STATE(4866), 1, + sym_type_annotation, + STATE(5227), 1, + sym__initializer, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7412), 5, + ACTIONS(7408), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208126] = 9, + [208202] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4732), 1, + STATE(4906), 1, sym_type_annotation, - STATE(4736), 1, + STATE(5349), 1, + sym__initializer, + STATE(5350), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7404), 5, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208158] = 12, + [208238] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7236), 1, + ACTIONS(7232), 1, anon_sym_LT, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(7253), 1, + ACTIONS(7247), 1, anon_sym_SLASH, - ACTIONS(7358), 1, + ACTIONS(7342), 1, anon_sym_GT, - STATE(4131), 1, - sym_type_arguments, - STATE(4133), 1, + STATE(4101), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4107), 1, + sym_type_arguments, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [208196] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7346), 1, - anon_sym_COLON, - STATE(4063), 1, - sym_formal_parameters, - STATE(4838), 1, - sym_type_annotation, - STATE(4839), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7410), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208228] = 9, + [208276] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7346), 1, + ACTIONS(7348), 1, anon_sym_COLON, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4384), 1, + STATE(4591), 1, sym__call_signature, - STATE(4640), 1, + STATE(4890), 1, sym_type_annotation, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - ACTIONS(7398), 5, + ACTIONS(7388), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [208260] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7249), 1, - anon_sym_SLASH, - ACTIONS(7358), 1, - anon_sym_GT, - STATE(4092), 1, - sym_type_arguments, - STATE(4107), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [208298] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4883), 1, - anon_sym_PIPE, - ACTIONS(7321), 1, - anon_sym_LT, - ACTIONS(7323), 1, - anon_sym_DOT, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(7372), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3908), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [208326] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(4063), 1, - sym_formal_parameters, - STATE(4750), 1, - sym_type_annotation, - STATE(5168), 1, - sym__call_signature, - STATE(5169), 1, - sym__initializer, - STATE(5492), 1, - sym_type_parameters, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208362] = 7, + [208308] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4726), 1, + ACTIONS(4716), 1, anon_sym_COMMA, - ACTIONS(4739), 1, + ACTIONS(4719), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 7, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -301282,30 +301342,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [208390] = 5, + [208336] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7390), 1, - anon_sym_LT, - ACTIONS(7392), 1, - anon_sym_DOT, - STATE(4197), 1, - sym_type_arguments, - ACTIONS(3908), 8, + ACTIONS(5301), 1, + anon_sym_PIPE, + ACTIONS(5303), 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, - [208413] = 3, + anon_sym_PIPE_RBRACE, + [208355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5109), 1, + ACTIONS(2968), 1, anon_sym_PIPE, - ACTIONS(5111), 10, + ACTIONS(2966), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301316,12 +301374,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208432] = 3, + [208374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 1, + ACTIONS(5281), 1, anon_sym_PIPE, - ACTIONS(5360), 10, + ACTIONS(5283), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301332,12 +301390,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208451] = 3, + [208393] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(5265), 1, anon_sym_PIPE, - ACTIONS(5292), 10, + ACTIONS(5267), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301348,12 +301406,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208470] = 3, + [208412] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5172), 1, + ACTIONS(5261), 1, anon_sym_PIPE, - ACTIONS(5170), 10, + ACTIONS(5263), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301364,12 +301422,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208489] = 3, + [208431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(2964), 1, anon_sym_PIPE, - ACTIONS(4977), 10, + ACTIONS(2962), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301380,12 +301438,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208508] = 3, + [208450] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5097), 1, + ACTIONS(5235), 1, anon_sym_PIPE, - ACTIONS(5099), 10, + ACTIONS(5237), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301396,12 +301454,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208527] = 3, + [208469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2966), 1, + ACTIONS(5277), 1, anon_sym_PIPE, - ACTIONS(2964), 10, + ACTIONS(5279), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301412,28 +301470,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208546] = 3, + [208488] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4800), 1, + anon_sym_COMMA, + ACTIONS(4803), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [208513] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5366), 1, + ACTIONS(5229), 1, anon_sym_PIPE, - ACTIONS(5368), 10, + ACTIONS(7410), 1, + anon_sym_LBRACK, + ACTIONS(5231), 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, - [208565] = 3, + [208534] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, + ACTIONS(5269), 1, anon_sym_PIPE, - ACTIONS(2950), 10, + ACTIONS(5271), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301444,50 +301522,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208584] = 6, + [208553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7414), 1, - anon_sym_is, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(4885), 1, anon_sym_PIPE, - anon_sym_extends, - [208609] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7416), 1, - anon_sym_is, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 7, + ACTIONS(4887), 10, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [208634] = 3, + anon_sym_PIPE_RBRACE, + [208572] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5113), 1, + ACTIONS(2944), 1, anon_sym_PIPE, - ACTIONS(5115), 10, + ACTIONS(2942), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301498,12 +301554,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208653] = 3, + [208591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 1, + ACTIONS(5332), 1, anon_sym_PIPE, - ACTIONS(5130), 10, + ACTIONS(5334), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301514,27 +301570,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208672] = 2, + [208610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 11, + ACTIONS(4979), 1, + anon_sym_PIPE, + ACTIONS(4981), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [208689] = 3, + [208629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 1, + ACTIONS(5273), 1, anon_sym_PIPE, - ACTIONS(5138), 10, + ACTIONS(5275), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301545,31 +301602,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208708] = 6, + [208648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7418), 1, - anon_sym_is, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 7, + ACTIONS(5316), 1, + anon_sym_PIPE, + ACTIONS(5318), 10, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [208733] = 3, + anon_sym_PIPE_RBRACE, + [208667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5374), 1, + ACTIONS(2956), 1, anon_sym_PIPE, - ACTIONS(5376), 10, + ACTIONS(2954), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301580,64 +301634,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208752] = 2, + [208686] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 11, + ACTIONS(5320), 1, + anon_sym_PIPE, + ACTIONS(5322), 10, sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_BANG, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [208769] = 5, + [208705] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5237), 1, + ACTIONS(5214), 1, anon_sym_PIPE, - ACTIONS(7420), 1, - anon_sym_LBRACK, - ACTIONS(5239), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5364), 7, + ACTIONS(5216), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208792] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7422), 1, - anon_sym_is, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 7, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [208817] = 3, + anon_sym_PIPE_RBRACE, + [208724] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 1, + ACTIONS(2311), 1, anon_sym_PIPE, - ACTIONS(5354), 10, + ACTIONS(2309), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301648,12 +301682,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208836] = 3, + [208743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2962), 1, + ACTIONS(5222), 1, anon_sym_PIPE, - ACTIONS(2960), 10, + ACTIONS(5224), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301664,29 +301698,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208855] = 4, + [208762] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5370), 1, + ACTIONS(5229), 1, anon_sym_PIPE, - ACTIONS(7420), 1, + ACTIONS(7410), 1, anon_sym_LBRACK, - ACTIONS(5372), 9, + ACTIONS(5231), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5366), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [208785] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7412), 1, + anon_sym_is, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [208876] = 3, + [208810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 1, + ACTIONS(4987), 1, anon_sym_PIPE, - ACTIONS(2956), 10, + ACTIONS(4989), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301697,12 +301751,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208895] = 3, + [208829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, + ACTIONS(2960), 1, anon_sym_PIPE, - ACTIONS(5040), 10, + ACTIONS(2958), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301713,12 +301767,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208914] = 3, + [208848] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4965), 1, + ACTIONS(5360), 1, anon_sym_PIPE, - ACTIONS(4967), 10, + ACTIONS(5362), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301729,28 +301783,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208933] = 3, + [208867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, - anon_sym_PIPE, - ACTIONS(5036), 10, + ACTIONS(4722), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [208952] = 3, + [208884] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 1, + ACTIONS(4933), 1, anon_sym_PIPE, - ACTIONS(5066), 10, + ACTIONS(4935), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301761,15 +301814,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208971] = 4, + [208903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5293), 1, anon_sym_PIPE, - ACTIONS(7333), 1, - anon_sym_is, - ACTIONS(4889), 9, + ACTIONS(5295), 10, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -301778,101 +301830,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [208992] = 6, + [208922] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4786), 1, + ACTIONS(5305), 1, + anon_sym_PIPE, + ACTIONS(5307), 10, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(4789), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [209017] = 6, + [208941] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, + ACTIONS(7251), 1, anon_sym_LT, - ACTIONS(7257), 1, + ACTIONS(7253), 1, anon_sym_DOT, - ACTIONS(7424), 1, + ACTIONS(7414), 1, anon_sym_is, - STATE(3896), 1, + STATE(3888), 1, sym_type_arguments, - ACTIONS(3908), 7, - anon_sym_COMMA, + ACTIONS(3916), 7, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209042] = 3, + [208966] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5378), 1, - anon_sym_PIPE, - ACTIONS(5380), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7416), 1, + anon_sym_is, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 7, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [209061] = 3, + [208991] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 1, - anon_sym_PIPE, - ACTIONS(5245), 10, + ACTIONS(7396), 1, + anon_sym_LT, + ACTIONS(7398), 1, + anon_sym_DOT, + STATE(4202), 1, + sym_type_arguments, + ACTIONS(3916), 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, - [209080] = 4, + [209014] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5237), 1, + ACTIONS(5128), 1, anon_sym_PIPE, - ACTIONS(7420), 1, - anon_sym_LBRACK, - ACTIONS(5239), 9, + ACTIONS(5130), 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, - [209101] = 3, + [209033] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5148), 1, + ACTIONS(4885), 1, anon_sym_PIPE, - ACTIONS(5150), 10, + ACTIONS(7299), 1, + anon_sym_is, + ACTIONS(4887), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -301881,80 +301935,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [209120] = 7, + [209054] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, + ACTIONS(7251), 1, anon_sym_LT, - ACTIONS(7257), 1, + ACTIONS(7253), 1, anon_sym_DOT, - STATE(3896), 1, + ACTIONS(7418), 1, + anon_sym_is, + STATE(3888), 1, sym_type_arguments, - ACTIONS(4535), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(7426), 2, + ACTIONS(3916), 7, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3908), 4, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209147] = 3, + [209079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, - anon_sym_PIPE, - ACTIONS(5196), 10, + ACTIONS(6761), 11, sym__automatic_semicolon, anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_BANG, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [209166] = 3, + [209096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5336), 1, anon_sym_PIPE, - ACTIONS(4889), 10, + ACTIONS(7410), 1, + anon_sym_LBRACK, + ACTIONS(5338), 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, - [209185] = 3, + [209117] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, - anon_sym_PIPE, - ACTIONS(5211), 10, - sym__automatic_semicolon, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(4499), 2, anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(7420), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(3916), 4, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [209204] = 3, + [209144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, + ACTIONS(5340), 1, anon_sym_PIPE, - ACTIONS(2305), 10, + ACTIONS(5342), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301965,12 +302022,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [209223] = 3, + [209163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2970), 1, + ACTIONS(5356), 1, anon_sym_PIPE, - ACTIONS(2968), 10, + ACTIONS(5358), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301981,12 +302038,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [209242] = 3, + [209182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 1, + ACTIONS(5001), 1, anon_sym_PIPE, - ACTIONS(5223), 10, + ACTIONS(4999), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -301997,28 +302054,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [209261] = 3, + [209201] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5174), 1, - anon_sym_PIPE, - ACTIONS(5176), 10, - sym__automatic_semicolon, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7423), 1, + anon_sym_is, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 7, anon_sym_EQ, - anon_sym_LBRACE, 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, - [209280] = 3, + [209226] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5178), 1, + ACTIONS(5368), 1, anon_sym_PIPE, - ACTIONS(5180), 10, + ACTIONS(5370), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -302029,220 +302089,374 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [209299] = 10, + [209245] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7356), 1, + ACTIONS(7249), 1, + anon_sym_SLASH, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(7358), 1, + ACTIONS(7342), 1, anon_sym_GT, - ACTIONS(7360), 1, - anon_sym_SLASH, - STATE(4097), 1, + STATE(4113), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [209331] = 10, + [209277] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(5797), 1, + anon_sym_PIPE, + ACTIONS(7425), 1, + anon_sym_AMP, + ACTIONS(5799), 8, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [209297] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7356), 1, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(7358), 1, + ACTIONS(7342), 1, anon_sym_GT, - ACTIONS(7382), 1, + ACTIONS(7376), 1, anon_sym_SLASH, - STATE(4159), 1, + STATE(4165), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [209363] = 10, + [209329] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7241), 1, - anon_sym_SLASH, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7356), 1, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(7358), 1, + ACTIONS(7342), 1, anon_sym_GT, - STATE(4090), 1, + ACTIONS(7344), 1, + anon_sym_SLASH, + STATE(4173), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [209395] = 7, + [209361] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7427), 1, + sym_identifier, ACTIONS(7429), 1, anon_sym_LBRACE, ACTIONS(7431), 1, + anon_sym_implements, + ACTIONS(7433), 1, + anon_sym_extends, + STATE(2333), 1, + sym_class_body, + STATE(4387), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5573), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [209395] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, anon_sym_LT, + ACTIONS(7431), 1, + anon_sym_implements, ACTIONS(7433), 1, - sym_jsx_text, + anon_sym_extends, ACTIONS(7435), 1, - sym_comment, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(5253), 1, - sym_jsx_closing_element, - STATE(4114), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [209421] = 4, + sym_identifier, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(2930), 1, + sym_class_body, + STATE(4361), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5431), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [209429] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(4816), 2, + ACTIONS(7425), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_extends, + ACTIONS(5271), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [209441] = 11, + [209451] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7437), 1, - sym_identifier, - ACTIONS(7439), 1, - anon_sym_LBRACE, - ACTIONS(7441), 1, + ACTIONS(7431), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7433), 1, anon_sym_extends, - STATE(2932), 1, + ACTIONS(7443), 1, + sym_identifier, + ACTIONS(7445), 1, + anon_sym_LBRACE, + STATE(2565), 1, sym_class_body, - STATE(4383), 1, + STATE(4269), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5607), 1, + STATE(5625), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [209475] = 5, + [209485] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_AMP, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, ACTIONS(7447), 1, + anon_sym_is, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(7449), 1, anon_sym_extends, - ACTIONS(5798), 7, + [209509] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7431), 1, + anon_sym_implements, + ACTIONS(7433), 1, + anon_sym_extends, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7449), 1, + sym_identifier, + STATE(2565), 1, + sym_class_body, + STATE(4269), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5625), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [209543] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7396), 1, + anon_sym_LT, + STATE(4212), 1, + sym_type_arguments, + ACTIONS(4887), 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, - [209497] = 7, - ACTIONS(7429), 1, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [209563] = 7, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7431), 1, + ACTIONS(7453), 1, anon_sym_LT, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7451), 1, + ACTIONS(7455), 1, sym_jsx_text, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(5266), 1, + ACTIONS(7457), 1, + sym_comment, + STATE(2258), 1, sym_jsx_closing_element, - STATE(4029), 5, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4141), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [209523] = 11, + [209589] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7441), 1, + ACTIONS(7431), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7433), 1, anon_sym_extends, - ACTIONS(7453), 1, - sym_identifier, - ACTIONS(7455), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(2322), 1, + ACTIONS(7459), 1, + sym_identifier, + STATE(2433), 1, sym_class_body, - STATE(4301), 1, + STATE(4322), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5514), 1, + STATE(5581), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [209557] = 9, + [209623] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_DOT, + ACTIONS(5311), 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, + [209641] = 7, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7461), 1, + anon_sym_LT, + ACTIONS(7463), 1, + sym_jsx_text, + STATE(3371), 1, + sym_jsx_closing_element, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4069), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [209667] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7425), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_extends, + ACTIONS(5938), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [209689] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, + ACTIONS(2267), 1, anon_sym_DQUOTE, - ACTIONS(2106), 1, + ACTIONS(2269), 1, anon_sym_SQUOTE, - ACTIONS(4804), 1, + ACTIONS(4776), 1, anon_sym_LBRACE, - ACTIONS(7457), 1, + ACTIONS(7465), 1, sym_identifier, - ACTIONS(7459), 1, + ACTIONS(7467), 1, anon_sym_STAR, - STATE(5613), 1, + STATE(5580), 1, sym_import_clause, - STATE(5494), 2, + STATE(5578), 2, sym_string, sym_import_require_clause, - STATE(5748), 2, + STATE(5970), 2, sym_namespace_import, sym_named_imports, - [209587] = 5, + [209719] = 7, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7469), 1, + anon_sym_LT, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4704), 1, + sym_jsx_closing_element, + STATE(4141), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [209745] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7425), 1, anon_sym_AMP, - ACTIONS(7447), 1, + ACTIONS(7439), 1, anon_sym_PIPE, - ACTIONS(7449), 1, + ACTIONS(7441), 1, anon_sym_extends, - ACTIONS(5150), 7, + ACTIONS(5307), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -302250,14 +302464,54 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [209609] = 4, + [209767] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4139), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [209799] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 1, + anon_sym_LT, + ACTIONS(7297), 1, + anon_sym_DOT, + ACTIONS(7471), 1, + anon_sym_is, + STATE(4022), 1, + sym_type_arguments, + ACTIONS(3916), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7447), 1, anon_sym_PIPE, - ACTIONS(5895), 8, + anon_sym_extends, + [209823] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5996), 1, + anon_sym_PIPE, + ACTIONS(7425), 1, + anon_sym_AMP, + ACTIONS(5998), 8, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -302266,2996 +302520,2714 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [209629] = 7, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7433), 1, - sym_jsx_text, - ACTIONS(7435), 1, + [209843] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7461), 1, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7473), 1, anon_sym_LT, - STATE(2334), 1, - sym_jsx_closing_element, - STATE(4033), 1, + ACTIONS(7475), 1, + anon_sym_DQUOTE, + ACTIONS(7477), 1, + anon_sym_SQUOTE, + STATE(4071), 1, sym_jsx_opening_element, - STATE(4114), 5, + STATE(4646), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [209655] = 10, + sym_string, + [209869] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7251), 1, + ACTIONS(7247), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(7358), 1, + ACTIONS(7342), 1, anon_sym_GT, - STATE(4170), 1, + STATE(4109), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [209687] = 11, + [209901] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7441), 1, + ACTIONS(7431), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7433), 1, anon_sym_extends, - ACTIONS(7463), 1, - sym_identifier, - ACTIONS(7465), 1, + ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(2435), 1, + ACTIONS(7479), 1, + sym_identifier, + STATE(3025), 1, sym_class_body, - STATE(4373), 1, + STATE(4266), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5441), 1, + STATE(5409), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [209721] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5779), 1, - anon_sym_PIPE, - ACTIONS(7445), 1, - anon_sym_AMP, - ACTIONS(5781), 8, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [209741] = 11, + [209935] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7441), 1, + ACTIONS(7431), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7433), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - ACTIONS(7467), 1, + ACTIONS(7481), 1, sym_identifier, - STATE(2470), 1, + STATE(2565), 1, sym_class_body, - STATE(4344), 1, + STATE(4269), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5602), 1, + STATE(5625), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [209775] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7445), 1, - anon_sym_AMP, - ACTIONS(7447), 1, - anon_sym_PIPE, - ACTIONS(7449), 1, - anon_sym_extends, - ACTIONS(5040), 7, - sym__automatic_semicolon, + [209969] = 7, + ACTIONS(7451), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE_RBRACE, - [209797] = 4, - ACTIONS(3), 1, + ACTIONS(7457), 1, sym_comment, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(4820), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4732), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(7483), 1, anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [209817] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - ACTIONS(7471), 1, - anon_sym_BANG, - STATE(4590), 1, - sym_type_annotation, - STATE(5351), 1, - sym__initializer, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7469), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [209845] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7441), 1, - anon_sym_implements, - ACTIONS(7443), 1, - anon_sym_extends, - ACTIONS(7475), 1, - sym_identifier, - ACTIONS(7477), 1, - anon_sym_LBRACE, - STATE(3484), 1, - sym_class_body, - STATE(4277), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5407), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [209879] = 7, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7479), 1, - anon_sym_LT, - ACTIONS(7481), 1, + ACTIONS(7485), 1, sym_jsx_text, - STATE(2429), 1, + STATE(2582), 1, sym_jsx_closing_element, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4059), 5, + STATE(4066), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [209905] = 7, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7433), 1, - sym_jsx_text, - ACTIONS(7435), 1, + [209995] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7483), 1, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7473), 1, anon_sym_LT, - STATE(3540), 1, - sym_jsx_closing_element, - STATE(4033), 1, + ACTIONS(7475), 1, + anon_sym_DQUOTE, + ACTIONS(7477), 1, + anon_sym_SQUOTE, + STATE(4071), 1, sym_jsx_opening_element, - STATE(4114), 5, + STATE(4645), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [209931] = 4, + sym_string, + [210021] = 11, ACTIONS(3), 1, sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7431), 1, + anon_sym_implements, + ACTIONS(7433), 1, + anon_sym_extends, ACTIONS(7487), 1, - anon_sym_COLON, - STATE(4521), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(7485), 6, - sym__automatic_semicolon, + sym_identifier, + ACTIONS(7489), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [209951] = 4, + STATE(3479), 1, + sym_class_body, + STATE(4394), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5545), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [210055] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7390), 1, + ACTIONS(4499), 1, + anon_sym_COLON, + ACTIONS(7251), 1, anon_sym_LT, - STATE(4198), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + STATE(3888), 1, sym_type_arguments, - ACTIONS(4889), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(3916), 6, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209971] = 3, + [210079] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 1, - anon_sym_DOT, - ACTIONS(5092), 9, + ACTIONS(7425), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_extends, + ACTIONS(5805), 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_LT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [209989] = 11, + anon_sym_PIPE_RBRACE, + [210101] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7441), 1, + ACTIONS(7431), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7433), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - ACTIONS(7489), 1, + ACTIONS(7491), 1, sym_identifier, - STATE(2435), 1, + STATE(2433), 1, sym_class_body, - STATE(4373), 1, + STATE(4322), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5441), 1, + STATE(5581), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [210023] = 7, - ACTIONS(7429), 1, + [210135] = 7, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7435), 1, + ACTIONS(7457), 1, sym_comment, - ACTIONS(7461), 1, + ACTIONS(7493), 1, anon_sym_LT, - ACTIONS(7491), 1, + ACTIONS(7495), 1, sym_jsx_text, - STATE(2212), 1, - sym_jsx_closing_element, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4038), 5, + STATE(5161), 1, + sym_jsx_closing_element, + STATE(4063), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [210049] = 11, + [210161] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7441), 1, - anon_sym_implements, - ACTIONS(7443), 1, - anon_sym_extends, - ACTIONS(7455), 1, + ACTIONS(7499), 1, + anon_sym_COLON, + STATE(4467), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(7497), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7493), 1, - sym_identifier, - STATE(2324), 1, - sym_class_body, - STATE(4381), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5691), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [210083] = 11, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7441), 1, - anon_sym_implements, - ACTIONS(7443), 1, - anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7499), 1, + anon_sym_COLON, + STATE(4548), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(7501), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7495), 1, - sym_identifier, - STATE(2470), 1, - sym_class_body, - STATE(4344), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5602), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [210117] = 10, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210201] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7253), 1, + ACTIONS(7245), 1, anon_sym_SLASH, - ACTIONS(7356), 1, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(7358), 1, + ACTIONS(7342), 1, anon_sym_GT, - STATE(4117), 1, + STATE(4148), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [210149] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - anon_sym_LT, - ACTIONS(7323), 1, - anon_sym_DOT, - ACTIONS(7497), 1, - anon_sym_is, - STATE(3998), 1, - sym_type_arguments, - ACTIONS(3908), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [210173] = 5, + [210233] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_AMP, - ACTIONS(7447), 1, - anon_sym_PIPE, - ACTIONS(7449), 1, - anon_sym_extends, - ACTIONS(5958), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(4806), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [210195] = 7, - ACTIONS(7429), 1, + [210253] = 7, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7433), 1, + ACTIONS(7455), 1, sym_jsx_text, - ACTIONS(7435), 1, + ACTIONS(7457), 1, sym_comment, - ACTIONS(7479), 1, + ACTIONS(7493), 1, anon_sym_LT, - STATE(2473), 1, - sym_jsx_closing_element, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4114), 5, + STATE(5179), 1, + sym_jsx_closing_element, + STATE(4141), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [210221] = 7, - ACTIONS(7429), 1, + [210279] = 7, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7499), 1, + ACTIONS(7453), 1, anon_sym_LT, - ACTIONS(7501), 1, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7503), 1, sym_jsx_text, - STATE(2831), 1, + STATE(2352), 1, sym_jsx_closing_element, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4064), 5, + STATE(4037), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [210247] = 7, + [210305] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7503), 1, + ACTIONS(2970), 1, anon_sym_LT, + ACTIONS(7431), 1, + anon_sym_implements, + ACTIONS(7433), 1, + anon_sym_extends, + ACTIONS(7445), 1, + anon_sym_LBRACE, ACTIONS(7505), 1, - anon_sym_DQUOTE, - ACTIONS(7507), 1, - anon_sym_SQUOTE, - STATE(4068), 1, + sym_identifier, + STATE(2433), 1, + sym_class_body, + STATE(4322), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5581), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [210339] = 7, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7483), 1, + anon_sym_LT, + STATE(2462), 1, + sym_jsx_closing_element, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4587), 5, + STATE(4141), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - sym_string, - [210273] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7509), 1, - anon_sym_is, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [210297] = 4, + aux_sym_jsx_element_repeat1, + [210365] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7487), 1, - anon_sym_COLON, - STATE(4459), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(7511), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(4811), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4722), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [210317] = 7, - ACTIONS(7429), 1, - anon_sym_LBRACE, + [210385] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7431), 1, + anon_sym_implements, ACTIONS(7433), 1, + anon_sym_extends, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7507), 1, + sym_identifier, + STATE(2433), 1, + sym_class_body, + STATE(4322), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5581), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [210419] = 7, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7455), 1, sym_jsx_text, - ACTIONS(7435), 1, + ACTIONS(7457), 1, sym_comment, - ACTIONS(7499), 1, + ACTIONS(7461), 1, anon_sym_LT, - STATE(2878), 1, + STATE(3395), 1, sym_jsx_closing_element, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4114), 5, + STATE(4141), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [210343] = 7, + [210445] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7230), 1, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + ACTIONS(7511), 1, + anon_sym_BANG, + STATE(4643), 1, + sym_type_annotation, + STATE(5270), 1, + sym__initializer, + ACTIONS(7513), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [210473] = 7, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7503), 1, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7469), 1, anon_sym_LT, - ACTIONS(7505), 1, - anon_sym_DQUOTE, - ACTIONS(7507), 1, - anon_sym_SQUOTE, - STATE(4068), 1, + ACTIONS(7515), 1, + sym_jsx_text, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4798), 5, + STATE(4661), 1, + sym_jsx_closing_element, + STATE(4043), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, - sym_string, - [210369] = 7, - ACTIONS(7429), 1, + aux_sym_jsx_element_repeat1, + [210499] = 7, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7435), 1, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, sym_comment, - ACTIONS(7483), 1, + ACTIONS(7517), 1, anon_sym_LT, - ACTIONS(7513), 1, - sym_jsx_text, - STATE(3442), 1, + STATE(2964), 1, sym_jsx_closing_element, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4048), 5, + STATE(4141), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [210395] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7441), 1, - anon_sym_implements, - ACTIONS(7443), 1, - anon_sym_extends, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7515), 1, - sym_identifier, - STATE(2470), 1, - sym_class_body, - STATE(4344), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5602), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [210429] = 7, - ACTIONS(7429), 1, + [210525] = 7, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7435), 1, + ACTIONS(7457), 1, sym_comment, ACTIONS(7517), 1, anon_sym_LT, ACTIONS(7519), 1, sym_jsx_text, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4775), 1, + STATE(2940), 1, sym_jsx_closing_element, - STATE(4077), 5, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4072), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [210455] = 11, + [210551] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7439), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - ACTIONS(7441), 1, + ACTIONS(7431), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7433), 1, anon_sym_extends, ACTIONS(7521), 1, sym_identifier, - STATE(2797), 1, + STATE(2238), 1, sym_class_body, - STATE(4404), 1, + STATE(4308), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5671), 1, + STATE(5643), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [210489] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5960), 1, - anon_sym_PIPE, - ACTIONS(7445), 1, - anon_sym_AMP, - ACTIONS(5962), 8, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [210509] = 11, + [210585] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7441), 1, + ACTIONS(7431), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7433), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, ACTIONS(7523), 1, sym_identifier, - STATE(2435), 1, + STATE(2565), 1, sym_class_body, - STATE(4373), 1, + STATE(4269), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5441), 1, + STATE(5625), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [210543] = 11, + [210619] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7441), 1, + ACTIONS(7431), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7433), 1, anon_sym_extends, - ACTIONS(7465), 1, + ACTIONS(7489), 1, anon_sym_LBRACE, ACTIONS(7525), 1, sym_identifier, - STATE(2435), 1, - sym_class_body, - STATE(4373), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5441), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [210577] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7441), 1, - anon_sym_implements, - ACTIONS(7443), 1, - anon_sym_extends, - ACTIONS(7477), 1, - anon_sym_LBRACE, - ACTIONS(7527), 1, - sym_identifier, - STATE(3439), 1, + STATE(3386), 1, sym_class_body, STATE(4298), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5465), 1, + STATE(5602), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [210611] = 6, + [210653] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 1, - anon_sym_COLON, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7425), 1, anon_sym_AMP, + ACTIONS(7439), 1, anon_sym_PIPE, + ACTIONS(6059), 8, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, - [210635] = 10, + anon_sym_PIPE_RBRACE, + [210673] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7249), 1, + ACTIONS(7527), 1, + anon_sym_GT, + ACTIONS(7529), 1, anon_sym_SLASH, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(7358), 1, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [210702] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7531), 1, anon_sym_GT, - STATE(4164), 1, + ACTIONS(7533), 1, + anon_sym_SLASH, + STATE(4114), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [210667] = 11, + [210731] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7441), 1, + ACTIONS(7535), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7443), 1, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7529), 1, - sym_identifier, - STATE(2470), 1, - sym_class_body, - STATE(4344), 1, + STATE(4369), 1, sym_type_parameters, - STATE(5359), 1, + STATE(4880), 1, + sym_class_body, + STATE(5283), 1, sym_extends_clause, - STATE(5602), 1, + STATE(5699), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [210701] = 7, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7433), 1, - sym_jsx_text, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7517), 1, - anon_sym_LT, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4833), 1, - sym_jsx_closing_element, - STATE(4114), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [210727] = 4, + [210762] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7533), 1, - anon_sym_RPAREN, - ACTIONS(4889), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(7531), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [210746] = 2, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7342), 1, + anon_sym_GT, + ACTIONS(7376), 1, + anon_sym_SLASH, + STATE(4137), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [210791] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 9, - anon_sym_EQ, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(2646), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [210761] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7394), 1, - anon_sym_is, - ACTIONS(4889), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + [210816] = 6, + ACTIONS(7451), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [210778] = 7, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7541), 1, + anon_sym_LT, + ACTIONS(7543), 1, + sym_jsx_text, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4158), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [210839] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(4772), 1, + STATE(4703), 1, sym_type_annotation, - STATE(5132), 1, + STATE(5172), 1, sym__initializer, - ACTIONS(7303), 2, + ACTIONS(7320), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(7301), 3, + ACTIONS(7318), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [210803] = 2, + [210864] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 9, + ACTIONS(7545), 1, + anon_sym_RPAREN, + ACTIONS(2954), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(6406), 4, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK, - [210818] = 9, + [210883] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7538), 1, + ACTIONS(7527), 1, anon_sym_GT, - ACTIONS(7540), 1, + ACTIONS(7548), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [210847] = 9, + [210912] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2483), 1, + sym_class_body, + STATE(4379), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5661), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [210943] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7542), 1, + ACTIONS(7527), 1, anon_sym_GT, - ACTIONS(7544), 1, + ACTIONS(7550), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [210876] = 7, + [210972] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6846), 1, + ACTIONS(6852), 1, anon_sym_RBRACE, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - STATE(5366), 1, + STATE(5319), 1, aux_sym_object_repeat1, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [210901] = 9, + [210997] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + ACTIONS(7552), 1, + anon_sym_LBRACE, + STATE(194), 1, + sym_class_body, + STATE(4393), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5393), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [211028] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7546), 1, + ACTIONS(7554), 1, anon_sym_GT, - ACTIONS(7548), 1, + ACTIONS(7556), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [210930] = 6, - ACTIONS(7429), 1, + [211057] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + ACTIONS(7558), 1, anon_sym_LBRACE, - ACTIONS(7435), 1, + STATE(1199), 1, + sym_class_body, + STATE(4410), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5405), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [211088] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 1, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + STATE(4608), 1, + sym_type_annotation, + STATE(5356), 1, + sym__initializer, + ACTIONS(7312), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7310), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [211113] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7552), 1, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(3086), 1, + sym_class_body, + STATE(4273), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5632), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [211144] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2559), 1, + sym_class_body, + STATE(4368), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5457), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [211175] = 6, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7560), 1, + anon_sym_LT, + ACTIONS(7562), 1, sym_jsx_text, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4147), 5, + STATE(4168), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [210953] = 7, + [211198] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2710), 1, + ACTIONS(2624), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - STATE(5340), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [210978] = 9, + [211223] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7554), 1, + ACTIONS(7564), 1, anon_sym_GT, - ACTIONS(7556), 1, + ACTIONS(7566), 1, anon_sym_SLASH, - STATE(4108), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211007] = 9, + [211252] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7429), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7558), 1, - anon_sym_GT, - ACTIONS(7560), 1, - anon_sym_SLASH, - STATE(4195), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [211036] = 9, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2229), 1, + sym_class_body, + STATE(4332), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5659), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [211283] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(3236), 1, + sym_class_body, + STATE(4348), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5571), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [211314] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7249), 1, - anon_sym_SLASH, - ACTIONS(7358), 1, + ACTIONS(7568), 1, anon_sym_GT, - STATE(4105), 1, + ACTIONS(7570), 1, + anon_sym_SLASH, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211065] = 9, + [211343] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, ACTIONS(7554), 1, anon_sym_GT, - ACTIONS(7562), 1, + ACTIONS(7572), 1, anon_sym_SLASH, - STATE(4194), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211094] = 7, + [211372] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2660), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(2970), 1, anon_sym_LT, - anon_sym_QMARK, - [211119] = 7, + ACTIONS(7535), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(4351), 1, + sym_type_parameters, + STATE(4843), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5663), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [211403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2704), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, + ACTIONS(7386), 1, + anon_sym_is, + ACTIONS(4887), 8, + sym__automatic_semicolon, anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [211420] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, anon_sym_LT, - anon_sym_QMARK, - [211144] = 7, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(3258), 1, + sym_class_body, + STATE(4355), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5490), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [211451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(6406), 9, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(2680), 1, anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5183), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, - anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [211169] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7358), 1, - anon_sym_GT, - ACTIONS(7360), 1, - anon_sym_SLASH, - STATE(4102), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [211198] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7558), 1, - anon_sym_GT, - ACTIONS(7564), 1, - anon_sym_SLASH, - STATE(4195), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [211227] = 9, + [211466] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7554), 1, - anon_sym_GT, - ACTIONS(7566), 1, - anon_sym_SLASH, - STATE(4104), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [211256] = 9, - ACTIONS(3), 1, - sym_comment, ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7546), 1, + ACTIONS(7531), 1, anon_sym_GT, - ACTIONS(7568), 1, + ACTIONS(7574), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4122), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211285] = 7, + [211495] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6358), 1, + ACTIONS(6413), 1, anon_sym_EQ, - ACTIONS(6944), 1, + ACTIONS(6920), 1, anon_sym_RBRACE, - STATE(5151), 1, + STATE(5157), 1, aux_sym_object_repeat1, - STATE(5365), 1, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [211310] = 9, + [211520] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7542), 1, + ACTIONS(7576), 1, anon_sym_GT, - ACTIONS(7570), 1, + ACTIONS(7578), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211339] = 9, + [211549] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7538), 1, - anon_sym_GT, - ACTIONS(7572), 1, + ACTIONS(7249), 1, anon_sym_SLASH, - STATE(4195), 1, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4131), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211368] = 10, + [211578] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7580), 1, + anon_sym_RPAREN, + ACTIONS(5362), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(6421), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [211597] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7465), 1, + ACTIONS(7489), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(3175), 1, + STATE(3366), 1, sym_class_body, - STATE(4342), 1, + STATE(4333), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5605), 1, + STATE(5474), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [211399] = 9, + [211628] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7578), 1, + ACTIONS(7576), 1, anon_sym_GT, - ACTIONS(7580), 1, + ACTIONS(7583), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211428] = 9, + [211657] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7538), 1, + ACTIONS(7527), 1, anon_sym_GT, - ACTIONS(7582), 1, + ACTIONS(7585), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211457] = 7, + [211686] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7587), 1, + sym_identifier, + ACTIONS(7590), 1, + anon_sym_LBRACE, + ACTIONS(7593), 1, + anon_sym_GT, + ACTIONS(7595), 1, + anon_sym_SLASH, + ACTIONS(7597), 1, + sym_jsx_identifier, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [211715] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6421), 9, anon_sym_EQ, - ACTIONS(7305), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4854), 1, - sym_type_annotation, - STATE(5319), 1, - sym__initializer, - ACTIONS(7586), 2, - anon_sym_BANG, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7584), 3, - sym__automatic_semicolon, + [211730] = 6, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7600), 1, + anon_sym_LT, + ACTIONS(7602), 1, + sym_jsx_text, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4142), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [211753] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2311), 1, + anon_sym_PIPE, + ACTIONS(7604), 2, anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2309), 6, + sym__automatic_semicolon, anon_sym_SEMI, - [211482] = 9, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [211772] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7542), 1, + ACTIONS(7531), 1, anon_sym_GT, - ACTIONS(7588), 1, + ACTIONS(7607), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4147), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211511] = 9, + [211801] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7578), 1, + ACTIONS(7554), 1, anon_sym_GT, - ACTIONS(7590), 1, + ACTIONS(7609), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211540] = 9, + [211830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7546), 1, + ACTIONS(7564), 1, anon_sym_GT, - ACTIONS(7592), 1, + ACTIONS(7611), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211569] = 9, + [211859] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7241), 1, - anon_sym_SLASH, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7358), 1, + ACTIONS(7527), 1, anon_sym_GT, - STATE(4083), 1, + ACTIONS(7613), 1, + anon_sym_SLASH, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211598] = 10, + [211888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(6406), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(7545), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2954), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4262), 1, - sym_type_parameters, - STATE(4615), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5680), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [211629] = 6, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7433), 1, - sym_jsx_text, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7596), 1, - anon_sym_LT, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4114), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [211652] = 6, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7435), 1, + [211907] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 1, - anon_sym_LT, - ACTIONS(7600), 1, - sym_jsx_text, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4112), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [211675] = 6, - ACTIONS(7435), 1, + ACTIONS(7617), 1, + anon_sym_RPAREN, + ACTIONS(4887), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(7615), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [211926] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(7602), 1, - anon_sym_LBRACE, - ACTIONS(7605), 1, - anon_sym_LT, - ACTIONS(7608), 1, - sym_jsx_text, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4114), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [211698] = 10, + ACTIONS(6451), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [211941] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(2956), 1, + anon_sym_PIPE, + ACTIONS(7545), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2954), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, anon_sym_extends, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(1203), 1, - sym_class_body, - STATE(4293), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5460), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [211729] = 10, + anon_sym_PIPE_RBRACE, + [211960] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(1052), 1, - sym_class_body, - STATE(4364), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5636), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [211760] = 9, + ACTIONS(7620), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [211975] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7558), 1, + ACTIONS(7568), 1, anon_sym_GT, - ACTIONS(7613), 1, + ACTIONS(7622), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [211789] = 6, + [212004] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7615), 1, - anon_sym_is, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 5, + ACTIONS(5360), 1, + anon_sym_PIPE, + ACTIONS(7580), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5362), 6, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_EQ_GT, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [211812] = 6, + anon_sym_PIPE_RBRACE, + [212023] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7617), 1, - anon_sym_is, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [211835] = 6, - ACTIONS(7429), 1, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7433), 1, - sym_jsx_text, - ACTIONS(7435), 1, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7564), 1, + anon_sym_GT, + ACTIONS(7624), 1, + anon_sym_SLASH, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [212052] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(7619), 1, - anon_sym_LT, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4114), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7564), 1, + anon_sym_GT, + ACTIONS(7626), 1, + anon_sym_SLASH, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [211858] = 6, - ACTIONS(7429), 1, + sym_jsx_attribute, + [212081] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7628), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [212096] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7435), 1, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7568), 1, + anon_sym_GT, + ACTIONS(7630), 1, + anon_sym_SLASH, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [212125] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(7621), 1, - anon_sym_LT, - ACTIONS(7623), 1, - sym_jsx_text, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4120), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, + anon_sym_LBRACE, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7554), 1, + anon_sym_GT, + ACTIONS(7632), 1, + anon_sym_SLASH, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [211881] = 10, + sym_jsx_attribute, + [212154] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(7625), 1, + ACTIONS(7558), 1, anon_sym_LBRACE, - STATE(191), 1, + STATE(1139), 1, sym_class_body, - STATE(4311), 1, + STATE(4267), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5519), 1, + STATE(5551), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [211912] = 6, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7433), 1, - sym_jsx_text, - ACTIONS(7435), 1, + [212185] = 9, + ACTIONS(3), 1, sym_comment, - ACTIONS(7627), 1, - anon_sym_LT, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4114), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [211935] = 6, - ACTIONS(7429), 1, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7629), 1, - anon_sym_LT, - ACTIONS(7631), 1, - sym_jsx_text, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4123), 5, - sym_jsx_element, - sym_jsx_fragment, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7568), 1, + anon_sym_GT, + ACTIONS(7634), 1, + anon_sym_SLASH, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [211958] = 10, + sym_jsx_attribute, + [212214] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7594), 1, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, anon_sym_LBRACE, - STATE(4407), 1, - sym_type_parameters, - STATE(4830), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5683), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [211989] = 4, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7564), 1, + anon_sym_GT, + ACTIONS(7636), 1, + anon_sym_SLASH, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [212243] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 2, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(6413), 1, anon_sym_EQ, + ACTIONS(6938), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, + anon_sym_LPAREN, anon_sym_COLON, - ACTIONS(7633), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2956), 5, - anon_sym_LBRACK, + anon_sym_LT, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [212008] = 9, + [212268] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7253), 1, - anon_sym_SLASH, - ACTIONS(7358), 1, + ACTIONS(7576), 1, anon_sym_GT, - STATE(4134), 1, + ACTIONS(7638), 1, + anon_sym_SLASH, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212037] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6612), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(7636), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5360), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [212056] = 7, + [212297] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6908), 1, + ACTIONS(2716), 1, anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [212081] = 6, - ACTIONS(7429), 1, + [212322] = 6, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7640), 1, anon_sym_LBRACE, - ACTIONS(7433), 1, + ACTIONS(7643), 1, + anon_sym_LT, + ACTIONS(7646), 1, sym_jsx_text, - ACTIONS(7435), 1, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4141), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [212345] = 6, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, sym_comment, - ACTIONS(7639), 1, + ACTIONS(7649), 1, anon_sym_LT, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4114), 5, + STATE(4141), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [212104] = 9, + [212368] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, ACTIONS(7554), 1, anon_sym_GT, - ACTIONS(7641), 1, + ACTIONS(7651), 1, anon_sym_SLASH, - STATE(4137), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212133] = 9, + [212397] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7546), 1, + ACTIONS(7531), 1, anon_sym_GT, - ACTIONS(7643), 1, + ACTIONS(7653), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4086), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212162] = 9, + [212426] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7542), 1, + ACTIONS(7531), 1, anon_sym_GT, - ACTIONS(7645), 1, + ACTIONS(7655), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4078), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212191] = 9, + [212455] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7538), 1, - anon_sym_GT, - ACTIONS(7647), 1, + ACTIONS(7247), 1, anon_sym_SLASH, - STATE(4195), 1, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4098), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212220] = 6, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7649), 1, - anon_sym_LT, - ACTIONS(7651), 1, - sym_jsx_text, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4130), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [212243] = 4, + [212484] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7636), 1, - anon_sym_RPAREN, - ACTIONS(5360), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(6612), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [212262] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7578), 1, + ACTIONS(7527), 1, anon_sym_GT, - ACTIONS(7653), 1, + ACTIONS(7657), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212291] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7633), 1, - anon_sym_RPAREN, - ACTIONS(2956), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(6610), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [212310] = 10, + [212513] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7439), 1, + ACTIONS(7222), 1, + sym_identifier, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, + ACTIONS(7239), 1, + sym_jsx_identifier, ACTIONS(7576), 1, - anon_sym_extends, - STATE(2987), 1, - sym_class_body, - STATE(4382), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5690), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [212341] = 10, + anon_sym_GT, + ACTIONS(7659), 1, + anon_sym_SLASH, + STATE(4115), 1, + aux_sym__jsx_start_opening_element_repeat1, + STATE(4520), 1, + sym_jsx_namespace_name, + STATE(4607), 2, + sym_jsx_expression, + sym_jsx_attribute, + [212542] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7465), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(2477), 1, - sym_class_body, - STATE(4394), 1, + STATE(4399), 1, sym_type_parameters, - STATE(5359), 1, + STATE(4714), 1, + sym_class_body, + STATE(5283), 1, sym_extends_clause, - STATE(5643), 1, + STATE(5687), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [212372] = 10, + [212573] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(7251), 1, anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7661), 1, + anon_sym_is, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(197), 1, - sym_class_body, - STATE(4376), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5438), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [212403] = 10, + [212596] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(2455), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5157), 1, + aux_sym_object_repeat1, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(1063), 1, - sym_class_body, - STATE(4321), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5538), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [212434] = 10, + anon_sym_QMARK, + [212621] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7465), 1, + ACTIONS(7489), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(3188), 1, + STATE(3473), 1, sym_class_body, - STATE(4396), 1, + STATE(4400), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5661), 1, + STATE(5544), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [212465] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - ACTIONS(7257), 1, - anon_sym_DOT, - ACTIONS(7655), 1, - anon_sym_is, - STATE(3896), 1, - sym_type_arguments, - ACTIONS(3908), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [212488] = 7, + [212652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(4752), 1, + STATE(4892), 1, sym_type_annotation, - STATE(5162), 1, + STATE(5366), 1, sym__initializer, - ACTIONS(7317), 2, + ACTIONS(7332), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(7315), 3, + ACTIONS(7330), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [212513] = 10, + [212677] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7439), 1, + ACTIONS(7437), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(2816), 1, + STATE(2820), 1, sym_class_body, - STATE(4405), 1, + STATE(4353), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5675), 1, + STATE(5507), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [212544] = 6, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7433), 1, - sym_jsx_text, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7657), 1, - anon_sym_LT, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4114), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [212567] = 7, + [212708] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6864), 1, + ACTIONS(2592), 1, anon_sym_RBRACE, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, + STATE(5244), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [212592] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4395), 1, - sym_type_parameters, - STATE(4910), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5641), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [212623] = 10, + [212733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7455), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7665), 1, + anon_sym_RPAREN, + ACTIONS(4887), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(2254), 1, - sym_class_body, - STATE(4315), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5627), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [212654] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7659), 9, + ACTIONS(7663), 4, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK, - [212669] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7455), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(2311), 1, - sym_class_body, - STATE(4415), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5657), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [212700] = 4, + [212752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2307), 1, - anon_sym_PIPE, - ACTIONS(7661), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2305), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(7604), 1, + anon_sym_RPAREN, + ACTIONS(2309), 4, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [212719] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4359), 1, - sym_type_parameters, - STATE(4734), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5576), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [212750] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(2606), 1, - sym_class_body, - STATE(4357), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5560), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [212781] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6610), 9, + ACTIONS(3103), 4, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, anon_sym_COLON, - anon_sym_RBRACK, anon_sym_QMARK, - [212796] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, + [212771] = 6, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7358), 1, - anon_sym_GT, - ACTIONS(7382), 1, - anon_sym_SLASH, - STATE(4165), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7668), 1, + anon_sym_LT, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4141), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [212825] = 2, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [212794] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 9, - anon_sym_EQ, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6906), 1, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, + anon_sym_LPAREN, anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LT, anon_sym_QMARK, - [212840] = 9, + [212819] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7558), 1, - anon_sym_GT, - ACTIONS(7664), 1, - anon_sym_SLASH, - STATE(4195), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [212869] = 9, - ACTIONS(3), 1, - sym_comment, ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7237), 1, + anon_sym_SLASH, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7554), 1, + ACTIONS(7342), 1, anon_sym_GT, - ACTIONS(7666), 1, - anon_sym_SLASH, - STATE(4166), 1, + STATE(4130), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212898] = 9, + [212848] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7546), 1, + ACTIONS(7564), 1, anon_sym_GT, - ACTIONS(7668), 1, + ACTIONS(7670), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212927] = 9, + [212877] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7542), 1, - anon_sym_GT, - ACTIONS(7670), 1, + ACTIONS(7245), 1, anon_sym_SLASH, - STATE(4195), 1, + ACTIONS(7342), 1, + anon_sym_GT, + STATE(4121), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [212956] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(4590), 1, - sym_type_annotation, - STATE(5135), 1, - sym__initializer, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7469), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [212981] = 9, + [212906] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7558), 1, + ACTIONS(7568), 1, anon_sym_GT, ACTIONS(7672), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [213010] = 9, + [212935] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7538), 1, + ACTIONS(7554), 1, anon_sym_GT, ACTIONS(7674), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [213039] = 9, + [212964] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7578), 1, + ACTIONS(7576), 1, anon_sym_GT, ACTIONS(7676), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [213068] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7678), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [213083] = 3, + [212993] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7408), 1, + ACTIONS(7251), 1, + anon_sym_LT, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7678), 1, anon_sym_is, - ACTIONS(4889), 8, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [213100] = 9, + [213016] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7535), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7251), 1, - anon_sym_SLASH, - ACTIONS(7358), 1, - anon_sym_GT, - STATE(4174), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [213129] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(4327), 1, + sym_type_parameters, + STATE(4657), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5655), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [213047] = 6, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7558), 1, - anon_sym_GT, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, + sym_comment, ACTIONS(7680), 1, - anon_sym_SLASH, - STATE(4195), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, + anon_sym_LT, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4141), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [213158] = 9, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [213070] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(2626), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5319), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [213095] = 6, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7554), 1, - anon_sym_GT, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, + sym_comment, ACTIONS(7682), 1, - anon_sym_SLASH, - STATE(4175), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, + anon_sym_LT, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4141), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [213187] = 9, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [213118] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7546), 1, + ACTIONS(7531), 1, anon_sym_GT, ACTIONS(7684), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4088), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [213216] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, + [213147] = 6, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7542), 1, - anon_sym_GT, - ACTIONS(7686), 1, - anon_sym_SLASH, - STATE(4195), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, - sym_jsx_expression, - sym_jsx_attribute, - [213245] = 9, - ACTIONS(3), 1, + ACTIONS(7457), 1, sym_comment, - ACTIONS(7226), 1, - sym_identifier, - ACTIONS(7230), 1, - anon_sym_LBRACE, - ACTIONS(7243), 1, - sym_jsx_identifier, - ACTIONS(7538), 1, - anon_sym_GT, + ACTIONS(7686), 1, + anon_sym_LT, ACTIONS(7688), 1, - anon_sym_SLASH, - STATE(4195), 1, - aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, - sym_jsx_namespace_name, - STATE(4595), 2, + sym_jsx_text, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4177), 5, + sym_jsx_element, + sym_jsx_fragment, sym_jsx_expression, - sym_jsx_attribute, - [213274] = 9, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [213170] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7578), 1, + ACTIONS(7576), 1, anon_sym_GT, ACTIONS(7690), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [213303] = 4, + [213199] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2958), 1, - anon_sym_PIPE, - ACTIONS(7633), 2, + ACTIONS(6421), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(7580), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2956), 6, - sym__automatic_semicolon, - anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(5362), 5, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [213322] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(1210), 1, - sym_class_body, - STATE(4345), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5612), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [213353] = 7, + [213218] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7692), 9, anon_sym_EQ, - ACTIONS(7305), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4828), 1, - sym_type_annotation, - STATE(5201), 1, - sym__initializer, - ACTIONS(7311), 2, - anon_sym_BANG, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7309), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [213378] = 4, + [213233] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5358), 1, - anon_sym_PIPE, - ACTIONS(7636), 2, + ACTIONS(7694), 9, + anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5360), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [213397] = 10, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [213248] = 6, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(7696), 1, anon_sym_LT, - ACTIONS(7477), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(3396), 1, - sym_class_body, - STATE(4369), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5506), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [213428] = 10, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4141), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [213271] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7465), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(3124), 1, + STATE(1055), 1, sym_class_body, - STATE(4306), 1, + STATE(4331), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5496), 1, + STATE(5510), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [213459] = 4, + [213302] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7661), 1, - anon_sym_RPAREN, - ACTIONS(2305), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(3098), 4, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(2692), 1, + anon_sym_RBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + STATE(5384), 1, + aux_sym_object_repeat1, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [213327] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7698), 9, anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK, - [213478] = 10, + [213342] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(7251), 1, anon_sym_LT, - ACTIONS(7477), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7253), 1, + anon_sym_DOT, + ACTIONS(7700), 1, + anon_sym_is, + STATE(3888), 1, + sym_type_arguments, + ACTIONS(3916), 5, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(3470), 1, - sym_class_body, - STATE(4278), 1, - sym_type_parameters, - STATE(5359), 1, - sym_extends_clause, - STATE(5419), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [213509] = 6, - ACTIONS(7429), 1, + [213365] = 6, + ACTIONS(7451), 1, anon_sym_LBRACE, - ACTIONS(7435), 1, + ACTIONS(7457), 1, sym_comment, - ACTIONS(7692), 1, + ACTIONS(7702), 1, anon_sym_LT, - ACTIONS(7694), 1, - sym_jsx_text, - STATE(4033), 1, - sym_jsx_opening_element, - STATE(4185), 5, - sym_jsx_element, - sym_jsx_fragment, - sym_jsx_expression, - sym_jsx_self_closing_element, - aux_sym_jsx_element_repeat1, - [213532] = 6, - ACTIONS(7429), 1, - anon_sym_LBRACE, - ACTIONS(7433), 1, + ACTIONS(7704), 1, sym_jsx_text, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(7696), 1, - anon_sym_LT, - STATE(4033), 1, + STATE(4058), 1, sym_jsx_opening_element, - STATE(4114), 5, + STATE(4186), 5, sym_jsx_element, sym_jsx_fragment, sym_jsx_expression, sym_jsx_self_closing_element, aux_sym_jsx_element_repeat1, - [213555] = 10, + [213388] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7465), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(3211), 1, + STATE(1054), 1, sym_class_body, - STATE(4270), 1, + STATE(4262), 1, sym_type_parameters, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5401), 1, + STATE(5605), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [213586] = 2, + [213419] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7698), 9, - anon_sym_EQ, + ACTIONS(7425), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_extends, + ACTIONS(7706), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [213601] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [213440] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7700), 9, + ACTIONS(7308), 1, anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7314), 1, + anon_sym_COLON, + STATE(4643), 1, + sym_type_annotation, + STATE(5281), 1, + sym__initializer, + ACTIONS(7513), 2, anon_sym_in, anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [213616] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2714), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [213641] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, + ACTIONS(7509), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(2523), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - STATE(5366), 1, - aux_sym_object_repeat1, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [213666] = 7, - ACTIONS(3), 1, + anon_sym_SEMI, + [213465] = 6, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7455), 1, + sym_jsx_text, + ACTIONS(7457), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2656), 1, - anon_sym_RBRACE, - ACTIONS(6358), 1, - anon_sym_EQ, - STATE(5151), 1, - aux_sym_object_repeat1, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(7708), 1, anon_sym_LT, - anon_sym_QMARK, - [213691] = 4, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4141), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [213488] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7704), 1, - anon_sym_RPAREN, - ACTIONS(4889), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(7702), 4, + ACTIONS(7308), 1, anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(7314), 1, anon_sym_COLON, + STATE(4865), 1, + sym_type_annotation, + STATE(5239), 1, + sym__initializer, + ACTIONS(7712), 2, + anon_sym_BANG, anon_sym_QMARK, - [213710] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7445), 1, - anon_sym_AMP, - ACTIONS(7447), 1, - anon_sym_PIPE, - ACTIONS(7449), 1, - anon_sym_extends, - ACTIONS(7707), 6, + ACTIONS(7710), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213731] = 9, + [213513] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7226), 1, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7230), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7243), 1, + ACTIONS(7239), 1, sym_jsx_identifier, - ACTIONS(7578), 1, + ACTIONS(7568), 1, anon_sym_GT, - ACTIONS(7709), 1, + ACTIONS(7714), 1, anon_sym_SLASH, - STATE(4195), 1, + STATE(4115), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [213760] = 9, + [213542] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + ACTIONS(7552), 1, + anon_sym_LBRACE, + STATE(184), 1, + sym_class_body, + STATE(4302), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5527), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [213573] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7711), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7429), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2200), 1, + sym_class_body, + STATE(4404), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5694), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [213604] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7222), 1, sym_identifier, - ACTIONS(7714), 1, + ACTIONS(7226), 1, anon_sym_LBRACE, - ACTIONS(7717), 1, + ACTIONS(7239), 1, + sym_jsx_identifier, + ACTIONS(7342), 1, anon_sym_GT, - ACTIONS(7719), 1, + ACTIONS(7344), 1, anon_sym_SLASH, - ACTIONS(7721), 1, - sym_jsx_identifier, - STATE(4195), 1, + STATE(4161), 1, aux_sym__jsx_start_opening_element_repeat1, - STATE(4440), 1, + STATE(4520), 1, sym_jsx_namespace_name, - STATE(4595), 2, + STATE(4607), 2, sym_jsx_expression, sym_jsx_attribute, - [213789] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7724), 1, - sym_identifier, - ACTIONS(7726), 1, - anon_sym_LBRACE, - ACTIONS(7728), 1, - anon_sym_LBRACK, - ACTIONS(7730), 1, - anon_sym_enum, - STATE(5013), 1, - sym_variable_declarator, - STATE(4414), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [213813] = 2, + [213633] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5376), 8, + ACTIONS(7400), 1, + anon_sym_is, + ACTIONS(4887), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305264,151 +305236,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [213827] = 2, + [213650] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5354), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7445), 1, anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, anon_sym_extends, - [213841] = 3, + STATE(3246), 1, + sym_class_body, + STATE(4389), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5710), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [213681] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, - anon_sym_AMP, - ACTIONS(5962), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7437), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, anon_sym_extends, - [213857] = 5, + STATE(2928), 1, + sym_class_body, + STATE(4360), 1, + sym_type_parameters, + STATE(5283), 1, + sym_extends_clause, + STATE(5432), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [213712] = 6, + ACTIONS(7451), 1, + anon_sym_LBRACE, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(7716), 1, + anon_sym_LT, + ACTIONS(7718), 1, + sym_jsx_text, + STATE(4058), 1, + sym_jsx_opening_element, + STATE(4170), 5, + sym_jsx_element, + sym_jsx_fragment, + sym_jsx_expression, + sym_jsx_self_closing_element, + aux_sym_jsx_element_repeat1, + [213735] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, + ACTIONS(7720), 1, anon_sym_AMP, - ACTIONS(7734), 1, + ACTIONS(7722), 1, anon_sym_PIPE, - ACTIONS(7736), 1, + ACTIONS(7724), 1, anon_sym_extends, - ACTIONS(5958), 5, + ACTIONS(5307), 5, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - [213877] = 5, + [213755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, - anon_sym_AMP, - ACTIONS(7740), 1, - anon_sym_PIPE, - ACTIONS(7742), 1, - anon_sym_extends, - ACTIONS(5798), 5, + ACTIONS(7726), 1, + anon_sym_LBRACK, + ACTIONS(5338), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [213897] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, anon_sym_AMP, - ACTIONS(7734), 1, anon_sym_PIPE, - ACTIONS(7736), 1, anon_sym_extends, - ACTIONS(5040), 5, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - [213917] = 3, + [213771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, - anon_sym_AMP, - ACTIONS(5781), 7, + ACTIONS(2962), 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, - [213933] = 5, + [213785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, - anon_sym_AMP, - ACTIONS(7734), 1, - anon_sym_PIPE, - ACTIONS(7736), 1, - anon_sym_extends, - ACTIONS(5150), 5, + ACTIONS(5283), 8, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - [213953] = 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [213799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, - anon_sym_LBRACE, - ACTIONS(7746), 1, - anon_sym_DOT, - STATE(4805), 1, - sym_statement_block, - ACTIONS(1998), 5, + ACTIONS(5279), 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, - [213973] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 1, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7734), 1, anon_sym_PIPE, - ACTIONS(5895), 6, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_extends, - [213991] = 4, + [213813] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, - anon_sym_AMP, - ACTIONS(7740), 1, - anon_sym_PIPE, - ACTIONS(5895), 6, + ACTIONS(2954), 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, - [214009] = 2, + [213827] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2960), 8, + ACTIONS(5358), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305417,10 +305383,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214023] = 2, + [213841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5180), 8, + ACTIONS(4989), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305429,10 +305395,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214037] = 2, + [213855] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2160), 8, + ACTIONS(7728), 1, + sym_identifier, + ACTIONS(7730), 1, + anon_sym_LBRACE, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(7734), 1, + anon_sym_enum, + STATE(5052), 1, + sym_variable_declarator, + STATE(4388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [213879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5362), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305441,10 +305424,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214051] = 2, + [213893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5176), 8, + ACTIONS(4935), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305453,24 +305436,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214065] = 2, + [213907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2968), 8, + ACTIONS(7736), 1, + anon_sym_COLON, + STATE(5004), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(7497), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, + [213925] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7726), 1, anon_sym_LBRACK, + ACTIONS(5231), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214079] = 3, + ACTIONS(5366), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [213943] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(7412), 1, anon_sym_is, - ACTIONS(4889), 7, + ACTIONS(4887), 7, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, @@ -305478,10 +305477,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214095] = 2, + [213959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5066), 8, + ACTIONS(5370), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305490,35 +305489,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214109] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2192), 3, - anon_sym_while, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2190), 5, - anon_sym_LBRACE, - anon_sym_LT, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_DOT, - [214125] = 2, + [213973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 8, + ACTIONS(7720), 1, + anon_sym_AMP, + ACTIONS(5799), 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, - [214139] = 2, + [213989] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5138), 8, + ACTIONS(5334), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305527,10 +305514,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214153] = 2, + [214003] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5130), 8, + ACTIONS(2024), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305539,22 +305526,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214167] = 2, + [214017] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5115), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7728), 1, + sym_identifier, + ACTIONS(7730), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(7732), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [214181] = 2, + ACTIONS(7738), 1, + anon_sym_enum, + STATE(4995), 1, + sym_variable_declarator, + STATE(4388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [214041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2950), 8, + ACTIONS(5295), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305563,42 +305555,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214195] = 7, + [214055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - ACTIONS(7471), 1, - anon_sym_BANG, - STATE(4590), 1, - sym_type_annotation, - STATE(5351), 1, - sym__initializer, - ACTIONS(7469), 3, + ACTIONS(7425), 1, + anon_sym_AMP, + ACTIONS(7439), 1, + anon_sym_PIPE, + ACTIONS(7441), 1, + anon_sym_extends, + ACTIONS(7740), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [214219] = 5, + anon_sym_PIPE_RBRACE, + [214075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, + ACTIONS(7425), 1, anon_sym_AMP, - ACTIONS(7740), 1, + ACTIONS(7439), 1, anon_sym_PIPE, - ACTIONS(7742), 1, + ACTIONS(7441), 1, anon_sym_extends, - ACTIONS(5150), 5, + ACTIONS(7742), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [214095] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4999), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - [214239] = 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [214109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4977), 8, + ACTIONS(5237), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305607,48 +305609,53 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214253] = 3, + [214123] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7416), 1, - anon_sym_is, - ACTIONS(4889), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, + ACTIONS(7744), 1, anon_sym_AMP, + ACTIONS(7746), 1, anon_sym_PIPE, + ACTIONS(7748), 1, anon_sym_extends, - [214269] = 2, + ACTIONS(5307), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [214143] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4967), 8, + ACTIONS(7720), 1, + anon_sym_AMP, + ACTIONS(5998), 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, - [214283] = 3, + [214159] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, + ACTIONS(7720), 1, anon_sym_AMP, - ACTIONS(5781), 7, + ACTIONS(7722), 1, + anon_sym_PIPE, + ACTIONS(7724), 1, + anon_sym_extends, + ACTIONS(5271), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [214299] = 2, + [214179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5036), 8, + ACTIONS(5303), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305657,36 +305664,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214313] = 3, + [214193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7422), 1, - anon_sym_is, - ACTIONS(4889), 7, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, + ACTIONS(7744), 1, anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [214329] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7424), 1, - anon_sym_is, - ACTIONS(4889), 7, + ACTIONS(5998), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214345] = 2, + [214209] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 8, + ACTIONS(5307), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305695,37 +305689,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214359] = 5, + [214223] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, + ACTIONS(7744), 1, anon_sym_AMP, - ACTIONS(7740), 1, + ACTIONS(7746), 1, anon_sym_PIPE, - ACTIONS(7742), 1, + ACTIONS(7748), 1, anon_sym_extends, - ACTIONS(5040), 5, + ACTIONS(5271), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [214379] = 2, + [214243] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5099), 8, + ACTIONS(7720), 1, + anon_sym_AMP, + ACTIONS(7722), 1, + anon_sym_PIPE, + ACTIONS(7724), 1, + anon_sym_extends, + ACTIONS(5805), 5, 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, - [214393] = 2, + [214263] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5111), 8, + ACTIONS(5342), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305734,10 +305731,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214407] = 2, + [214277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2964), 8, + ACTIONS(5271), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305746,10 +305743,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214421] = 2, + [214291] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 8, + ACTIONS(4981), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305758,23 +305755,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214435] = 3, + [214305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, + ACTIONS(7744), 1, + anon_sym_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(6059), 6, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5372), 7, + anon_sym_extends, + [214323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2966), 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, - [214451] = 2, + [214337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5380), 8, + ACTIONS(5267), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305783,117 +305793,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214465] = 5, + [214351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, + ACTIONS(7423), 1, + anon_sym_is, + ACTIONS(4887), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, - ACTIONS(7740), 1, anon_sym_PIPE, - ACTIONS(7742), 1, anon_sym_extends, - ACTIONS(5958), 5, + [214367] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5263), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - [214485] = 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [214381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7738), 1, - anon_sym_AMP, - ACTIONS(5962), 7, + ACTIONS(2942), 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, - [214501] = 7, + [214395] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7724), 1, - sym_identifier, - ACTIONS(7726), 1, - anon_sym_LBRACE, - ACTIONS(7728), 1, + ACTIONS(3103), 1, + anon_sym_EQ, + ACTIONS(7604), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2309), 5, anon_sym_LBRACK, - ACTIONS(7750), 1, - anon_sym_enum, - STATE(4957), 1, - sym_variable_declarator, - STATE(4414), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [214525] = 2, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [214413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2249), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7416), 1, + anon_sym_is, + ACTIONS(4887), 7, anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214539] = 2, + [214429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5368), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7414), 1, + anon_sym_is, + ACTIONS(4887), 7, anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214553] = 4, + [214445] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - anon_sym_LBRACK, - ACTIONS(5239), 3, + ACTIONS(7720), 1, anon_sym_AMP, + ACTIONS(7722), 1, anon_sym_PIPE, - anon_sym_extends, - ACTIONS(5364), 4, + ACTIONS(6059), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [214571] = 2, + anon_sym_LBRACK, + anon_sym_extends, + [214463] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5360), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7750), 1, anon_sym_LBRACE, + ACTIONS(7752), 1, + anon_sym_DOT, + STATE(4708), 1, + sym_statement_block, + ACTIONS(1974), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_PIPE_RBRACE, + [214483] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7744), 1, anon_sym_AMP, + ACTIONS(5799), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [214585] = 2, + [214499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 8, + ACTIONS(7726), 1, + anon_sym_LBRACK, + ACTIONS(5231), 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, - [214599] = 2, + [214515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2956), 8, + ACTIONS(5318), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305902,38 +305937,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214613] = 3, + [214529] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7418), 1, - anon_sym_is, - ACTIONS(4889), 7, + ACTIONS(5322), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214629] = 5, + [214543] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, + ACTIONS(7744), 1, anon_sym_AMP, - ACTIONS(7734), 1, + ACTIONS(7746), 1, anon_sym_PIPE, - ACTIONS(7736), 1, + ACTIONS(7748), 1, anon_sym_extends, - ACTIONS(5798), 5, + ACTIONS(5805), 5, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [214649] = 2, + [214563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5245), 8, + ACTIONS(2958), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305942,10 +305976,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214663] = 2, + [214577] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 8, + ACTIONS(4887), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305954,22 +305988,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214677] = 2, + [214591] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 8, + ACTIONS(7720), 1, + anon_sym_AMP, + ACTIONS(7722), 1, + anon_sym_PIPE, + ACTIONS(7724), 1, + anon_sym_extends, + ACTIONS(5938), 5, 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, - [214691] = 2, + [214611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 8, + ACTIONS(5216), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305978,10 +306015,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214705] = 2, + [214625] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + ACTIONS(7511), 1, + anon_sym_BANG, + STATE(4643), 1, + sym_type_annotation, + STATE(5270), 1, + sym__initializer, + ACTIONS(7509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2305), 8, + ACTIONS(2105), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -305990,52 +306044,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214719] = 4, + [214663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7752), 1, - anon_sym_COLON, - STATE(4969), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(7511), 4, + ACTIONS(2215), 3, + anon_sym_while, + anon_sym_SLASH, + sym_identifier, + ACTIONS(2213), 5, + anon_sym_LBRACE, + anon_sym_LT, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_DOT, + [214679] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2309), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [214737] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [214693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7752), 1, - anon_sym_COLON, - STATE(4959), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(7485), 4, + ACTIONS(5224), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [214755] = 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [214707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3098), 1, - anon_sym_EQ, - ACTIONS(7661), 2, + ACTIONS(7418), 1, + anon_sym_is, + ACTIONS(4887), 7, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2305), 5, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214773] = 2, + [214723] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7744), 1, + anon_sym_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7748), 1, + anon_sym_extends, + ACTIONS(5938), 5, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + [214743] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5211), 8, + ACTIONS(5275), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -306044,53 +306121,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [214787] = 3, + [214757] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7748), 1, - anon_sym_LBRACK, - ACTIONS(5239), 7, + ACTIONS(7736), 1, + anon_sym_COLON, + STATE(5013), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(7501), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [214803] = 5, + [214775] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, + ACTIONS(5130), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7447), 1, anon_sym_PIPE, - ACTIONS(7449), 1, anon_sym_extends, + [214789] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5524), 1, + sym_statement_block, ACTIONS(7754), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [214823] = 5, + [214806] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7445), 1, - anon_sym_AMP, - ACTIONS(7447), 1, - anon_sym_PIPE, - ACTIONS(7449), 1, + ACTIONS(7535), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, anon_sym_extends, + STATE(1057), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5518), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [214831] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_COLON, + STATE(4805), 1, + sym_type_annotation, ACTIONS(7756), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [214843] = 8, + [214848] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7758), 1, sym_identifier, @@ -306098,537 +306201,434 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5614), 1, + STATE(5638), 1, sym__call_signature, - [214868] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4909), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5653), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [214893] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6610), 1, - anon_sym_COLON, - ACTIONS(2956), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [214908] = 4, + [214873] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7764), 1, anon_sym_AMP, ACTIONS(7766), 1, anon_sym_PIPE, - ACTIONS(5895), 5, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - [214925] = 4, - ACTIONS(3), 1, - sym_comment, ACTIONS(7768), 1, - anon_sym_AMP, - ACTIONS(7770), 1, - anon_sym_PIPE, - ACTIONS(5895), 5, + anon_sym_extends, + ACTIONS(5307), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - anon_sym_extends, - [214942] = 3, + [214892] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_AMP, - ACTIONS(5962), 6, + ACTIONS(7437), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, anon_sym_extends, - [214957] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7700), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [214970] = 5, + STATE(2954), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5397), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [214917] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, - anon_sym_AMP, - ACTIONS(7770), 1, - anon_sym_PIPE, - ACTIONS(7772), 1, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(5150), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [214989] = 8, + ACTIONS(7558), 1, + anon_sym_LBRACE, + STATE(1195), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5399), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [214942] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7774), 1, + ACTIONS(7770), 1, sym_identifier, - ACTIONS(7776), 1, + ACTIONS(7772), 1, anon_sym_STAR, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5515), 1, + STATE(5638), 1, sym__call_signature, - [215014] = 8, + [214967] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(3243), 1, + STATE(2428), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5444), 1, + STATE(5430), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [215039] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6612), 1, - anon_sym_COLON, - ACTIONS(5360), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [215054] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(7780), 1, - anon_sym_EQ, - ACTIONS(7778), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(7782), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [215073] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7764), 1, - anon_sym_AMP, - ACTIONS(7766), 1, - anon_sym_PIPE, - ACTIONS(7784), 1, - anon_sym_extends, - ACTIONS(5958), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - [215092] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7764), 1, - anon_sym_AMP, - ACTIONS(7766), 1, - anon_sym_PIPE, - ACTIONS(7784), 1, - anon_sym_extends, - ACTIONS(5798), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - [215111] = 8, + [214992] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7786), 1, + ACTIONS(7774), 1, sym_identifier, - ACTIONS(7788), 1, + ACTIONS(7776), 1, anon_sym_STAR, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5428), 1, + STATE(5540), 1, sym__call_signature, - [215136] = 5, + [215017] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 1, + ACTIONS(4979), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4981), 5, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_BQUOTE, + [215032] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7720), 1, anon_sym_AMP, - ACTIONS(7734), 1, + ACTIONS(7722), 1, anon_sym_PIPE, - ACTIONS(7736), 1, + ACTIONS(7724), 1, anon_sym_extends, - ACTIONS(7707), 4, + ACTIONS(7706), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [215155] = 8, + [215051] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(3496), 1, + STATE(3256), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5498), 1, + STATE(5667), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [215180] = 8, + [215076] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(3474), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5499), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [215205] = 3, + ACTIONS(7620), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [215089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, - anon_sym_AMP, - ACTIONS(5781), 6, + ACTIONS(7628), 7, + sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_extends, - [215220] = 8, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [215102] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7694), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [215115] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7790), 1, + ACTIONS(7778), 1, sym_identifier, - ACTIONS(7792), 1, + ACTIONS(7780), 1, anon_sym_STAR, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5470), 1, + STATE(5441), 1, sym__call_signature, - [215245] = 5, + [215140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(7782), 1, anon_sym_AMP, - ACTIONS(7770), 1, + ACTIONS(7784), 1, anon_sym_PIPE, - ACTIONS(7772), 1, + ACTIONS(7786), 1, anon_sym_extends, - ACTIONS(5040), 4, + ACTIONS(5271), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + [215159] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7764), 1, + anon_sym_AMP, + ACTIONS(5799), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - [215264] = 8, + anon_sym_PIPE, + anon_sym_extends, + [215174] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(7794), 1, - sym_identifier, - ACTIONS(7796), 1, - anon_sym_DOT, - STATE(1056), 1, - sym_string, - STATE(1103), 1, - sym__module, - STATE(5102), 1, - sym_nested_identifier, - [215289] = 3, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5642), 1, + sym_statement_block, + ACTIONS(7788), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5064), 2, + ACTIONS(5128), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(5066), 5, + ACTIONS(5130), 5, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_GT, sym_jsx_identifier, anon_sym_BQUOTE, - [215304] = 2, + [215206] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 7, - sym__automatic_semicolon, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(7790), 1, + sym_identifier, + ACTIONS(7792), 1, + anon_sym_DOT, + STATE(1066), 1, + sym_string, + STATE(1153), 1, + sym__module, + STATE(5074), 1, + sym_nested_identifier, + [215231] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3142), 1, anon_sym_LBRACE, + STATE(5669), 1, + sym_statement_block, + ACTIONS(7794), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [215317] = 6, + [215248] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(4835), 1, - sym_type_annotation, - STATE(5216), 1, - sym__initializer, - ACTIONS(7400), 3, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5652), 1, + sym_statement_block, + ACTIONS(7796), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215338] = 2, + anon_sym_PIPE_RBRACE, + [215265] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7659), 7, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5480), 1, + sym_statement_block, + ACTIONS(7798), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [215351] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5905), 1, - anon_sym_LPAREN, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7800), 1, - sym_identifier, - ACTIONS(7802), 1, - anon_sym_LBRACK, - ACTIONS(7804), 1, - sym_private_property_identifier, - STATE(3518), 1, - sym_arguments, - STATE(5400), 1, - sym_type_arguments, - [215376] = 5, + anon_sym_PIPE_RBRACE, + [215282] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_AMP, - ACTIONS(7766), 1, - anon_sym_PIPE, - ACTIONS(7784), 1, - anon_sym_extends, - ACTIONS(5150), 4, + ACTIONS(3142), 1, anon_sym_LBRACE, + STATE(5617), 1, + sym_statement_block, + ACTIONS(7800), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - [215395] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215299] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7536), 7, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5608), 1, + sym_statement_block, + ACTIONS(7798), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [215408] = 6, + anon_sym_PIPE_RBRACE, + [215316] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7726), 1, - anon_sym_LBRACE, - ACTIONS(7728), 1, - anon_sym_LBRACK, - ACTIONS(7806), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(7802), 1, sym_identifier, - STATE(4957), 1, - sym_variable_declarator, - STATE(4163), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [215429] = 2, + ACTIONS(7804), 1, + anon_sym_STAR, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5636), 1, + sym__call_signature, + [215341] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 7, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5466), 1, + sym_statement_block, + ACTIONS(7806), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [215442] = 2, + anon_sym_PIPE_RBRACE, + [215358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7808), 7, - sym__automatic_semicolon, + ACTIONS(3142), 1, anon_sym_LBRACE, + STATE(5493), 1, + sym_statement_block, + ACTIONS(7808), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [215455] = 8, + [215375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7611), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(1194), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5639), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [215480] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3098), 7, - anon_sym_EQ, + STATE(5561), 1, + sym_statement_block, + ACTIONS(7806), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [215493] = 3, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7509), 1, - anon_sym_is, - ACTIONS(4889), 6, + ACTIONS(7764), 1, + anon_sym_AMP, + ACTIONS(7766), 1, + anon_sym_PIPE, + ACTIONS(6059), 5, + anon_sym_EQ, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [215508] = 2, + [215409] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6610), 7, - sym__automatic_semicolon, + ACTIONS(7764), 1, + anon_sym_AMP, + ACTIONS(7766), 1, + anon_sym_PIPE, + ACTIONS(7768), 1, + anon_sym_extends, + ACTIONS(5805), 4, anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [215521] = 2, + anon_sym_LBRACK, + anon_sym_GT, + [215428] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7698), 7, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5554), 1, + sym_statement_block, + ACTIONS(7808), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [215534] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7477), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(3536), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5389), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [215559] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(5962), 6, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [215574] = 5, + anon_sym_PIPE_RBRACE, + [215445] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7810), 1, @@ -306637,1255 +306637,990 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(7814), 1, anon_sym_extends, - ACTIONS(5958), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - [215593] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(2327), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5611), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [215618] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4535), 7, - anon_sym_EQ, + ACTIONS(5938), 4, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [215631] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(7816), 1, - sym_identifier, - ACTIONS(7818), 1, - anon_sym_DOT, - STATE(4205), 1, - sym_nested_identifier, - STATE(4379), 1, - sym_string, - STATE(4608), 1, - sym__module, - [215656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5290), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5292), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_BQUOTE, - [215671] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(7820), 1, - anon_sym_LT, - ACTIONS(7822), 1, - anon_sym_extends, - STATE(4804), 1, - sym_object_type, - STATE(4867), 1, - sym_type_parameters, - STATE(5332), 1, - sym_extends_clause, - [215696] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(3195), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5379), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [215721] = 4, + [215464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(4887), 1, + STATE(4597), 1, sym_type_annotation, - ACTIONS(7824), 5, + STATE(5365), 1, + sym__initializer, + ACTIONS(7406), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [215738] = 8, + [215485] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7826), 1, + ACTIONS(7816), 1, sym_identifier, - ACTIONS(7828), 1, + ACTIONS(7818), 1, anon_sym_STAR, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5458), 1, + STATE(5441), 1, sym__call_signature, - [215763] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1918), 1, - anon_sym_LBRACE, - ACTIONS(7820), 1, - anon_sym_LT, - ACTIONS(7822), 1, - anon_sym_extends, - STATE(1162), 1, - sym_object_type, - STATE(4659), 1, - sym_type_parameters, - STATE(5260), 1, - sym_extends_clause, - [215788] = 2, + [215510] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7830), 7, - sym__automatic_semicolon, + ACTIONS(7489), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [215801] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(167), 1, + STATE(3529), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5619), 1, + STATE(5558), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [215826] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(7832), 1, - sym_identifier, - ACTIONS(7834), 1, - anon_sym_STAR, - STATE(4597), 1, - sym_formal_parameters, - STATE(5388), 1, - sym__call_signature, - STATE(5414), 1, - sym_type_parameters, - [215851] = 3, + [215535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_is, - ACTIONS(7836), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6990), 2, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [215866] = 6, + ACTIONS(4722), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [215552] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(4862), 1, - sym_type_annotation, - STATE(5321), 1, - sym__initializer, - ACTIONS(7406), 3, + ACTIONS(7471), 1, + anon_sym_is, + ACTIONS(4887), 6, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [215887] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(2202), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5566), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [215912] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4829), 1, - anon_sym_LPAREN, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7838), 1, - sym_identifier, - ACTIONS(7840), 1, anon_sym_LBRACK, - ACTIONS(7842), 1, - sym_private_property_identifier, - STATE(2336), 1, - sym_arguments, - STATE(5654), 1, - sym_type_arguments, - [215937] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7738), 1, anon_sym_AMP, - ACTIONS(7740), 1, anon_sym_PIPE, - ACTIONS(7742), 1, anon_sym_extends, - ACTIONS(7707), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [215956] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7844), 1, - anon_sym_EQ, - ACTIONS(7848), 1, - anon_sym_COLON, - ACTIONS(7850), 1, - anon_sym_QMARK, - STATE(4947), 1, - sym_type_annotation, - STATE(5437), 1, - sym__initializer, - ACTIONS(7846), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [215979] = 2, + [215567] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4693), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, + ACTIONS(7340), 1, anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [215992] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, + ACTIONS(7822), 1, anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(4719), 1, - sym_type_annotation, - STATE(5185), 1, - sym__initializer, - ACTIONS(7402), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [216013] = 8, + ACTIONS(7820), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(7824), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [215586] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(7594), 1, + ACTIONS(7552), 1, anon_sym_LBRACE, - STATE(1066), 1, + STATE(185), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5606), 1, + STATE(5403), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [216038] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5410), 1, - sym_statement_block, - ACTIONS(7852), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [216055] = 2, + [215611] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6762), 7, + ACTIONS(7224), 1, anon_sym_EQ, + STATE(4939), 1, + sym_constraint, + STATE(5445), 1, + sym_default_type, + ACTIONS(7228), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_GT, + ACTIONS(7826), 2, anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [216068] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7726), 1, - anon_sym_LBRACE, - ACTIONS(7728), 1, - anon_sym_LBRACK, - ACTIONS(7854), 1, - sym_identifier, - STATE(4966), 1, - sym_variable_declarator, - STATE(4414), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [216089] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7726), 1, - anon_sym_LBRACE, - ACTIONS(7728), 1, - anon_sym_LBRACK, - ACTIONS(7854), 1, - sym_identifier, - STATE(4957), 1, - sym_variable_declarator, - STATE(4414), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [216110] = 4, + anon_sym_extends, + [215632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(5450), 1, + STATE(5513), 1, sym_statement_block, - ACTIONS(7856), 5, + ACTIONS(7828), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216127] = 8, + [215649] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(7796), 1, - anon_sym_DOT, - ACTIONS(7858), 1, - sym_identifier, - STATE(1050), 1, - sym_nested_identifier, - STATE(1056), 1, - sym_string, - STATE(1103), 1, - sym__module, - [216152] = 5, + ACTIONS(4499), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [215662] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7830), 1, anon_sym_AMP, - ACTIONS(7862), 1, + ACTIONS(7832), 1, anon_sym_PIPE, - ACTIONS(7864), 1, - anon_sym_extends, - ACTIONS(5040), 4, + ACTIONS(6059), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - [216171] = 3, + anon_sym_extends, + [215679] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7830), 1, anon_sym_AMP, - ACTIONS(5781), 6, + ACTIONS(7832), 1, + anon_sym_PIPE, + ACTIONS(7834), 1, + anon_sym_extends, + ACTIONS(5271), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [216186] = 4, + [215698] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - STATE(5422), 1, - sym_statement_block, - ACTIONS(7866), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [216203] = 5, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2205), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5709), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [215723] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(7770), 1, + ACTIONS(7766), 1, anon_sym_PIPE, - ACTIONS(7772), 1, + ACTIONS(7768), 1, anon_sym_extends, - ACTIONS(5798), 4, + ACTIONS(5938), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - [216222] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5383), 1, - sym_statement_block, - ACTIONS(7868), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [216239] = 5, + [215742] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7830), 1, anon_sym_AMP, - ACTIONS(7862), 1, + ACTIONS(7832), 1, anon_sym_PIPE, - ACTIONS(7864), 1, + ACTIONS(7834), 1, anon_sym_extends, - ACTIONS(5150), 4, + ACTIONS(5805), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - [216258] = 4, + [215761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7830), 1, anon_sym_AMP, - ACTIONS(7862), 1, - anon_sym_PIPE, - ACTIONS(5895), 5, + ACTIONS(5998), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_extends, - [216275] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5431), 1, - sym_statement_block, - ACTIONS(7870), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [216292] = 4, + [215776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(5436), 1, + STATE(5419), 1, sym_statement_block, - ACTIONS(7868), 5, + ACTIONS(7754), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216309] = 2, + [215793] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2190), 7, - sym__automatic_semicolon, + ACTIONS(7782), 1, + anon_sym_AMP, + ACTIONS(5799), 6, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_PIPE_RBRACE, - [216322] = 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [215808] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(5391), 1, + STATE(5410), 1, sym_statement_block, - ACTIONS(7872), 5, + ACTIONS(7828), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216339] = 4, + [215825] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(7782), 1, + anon_sym_AMP, + ACTIONS(7784), 1, + anon_sym_PIPE, + ACTIONS(7786), 1, + anon_sym_extends, + ACTIONS(5307), 4, anon_sym_LBRACE, - STATE(5397), 1, - sym_statement_block, - ACTIONS(7874), 5, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [216356] = 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + [215844] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5462), 1, - sym_statement_block, - ACTIONS(7872), 5, + ACTIONS(7299), 1, + anon_sym_is, + ACTIONS(7836), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216373] = 4, + [215859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5464), 1, - sym_statement_block, - ACTIONS(7874), 5, + ACTIONS(7348), 1, + anon_sym_COLON, + STATE(4900), 1, + sym_type_annotation, + ACTIONS(7838), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216390] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(3248), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5380), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [216415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(7000), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [216432] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(2573), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5530), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [216457] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(1133), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5466), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [216482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4975), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(4977), 5, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_GT, - sym_jsx_identifier, - anon_sym_BQUOTE, - [216497] = 5, + [215876] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7830), 1, anon_sym_AMP, - ACTIONS(7862), 1, + ACTIONS(7832), 1, anon_sym_PIPE, - ACTIONS(7864), 1, + ACTIONS(7834), 1, anon_sym_extends, - ACTIONS(5958), 4, + ACTIONS(5307), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - [216516] = 2, + [215895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7876), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(7764), 1, + anon_sym_AMP, + ACTIONS(5998), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [216529] = 4, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_extends, + [215910] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5482), 1, - sym_statement_block, - ACTIONS(7878), 5, + ACTIONS(7840), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [216546] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, anon_sym_LBRACE, - STATE(5485), 1, - sym_statement_block, - ACTIONS(7880), 5, - sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [216563] = 3, + [215923] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7830), 1, anon_sym_AMP, - ACTIONS(5962), 6, + ACTIONS(5799), 6, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [216578] = 5, + [215938] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 1, - anon_sym_AMP, - ACTIONS(7884), 1, - anon_sym_PIPE, - ACTIONS(7886), 1, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(5040), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [216597] = 4, + STATE(2555), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5526), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [215963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(7750), 1, anon_sym_LBRACE, - STATE(5598), 1, + STATE(4708), 1, sym_statement_block, - ACTIONS(7880), 5, + ACTIONS(1974), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216614] = 4, + [215980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5603), 1, - sym_statement_block, - ACTIONS(7878), 5, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + STATE(4757), 1, + sym_type_annotation, + STATE(5134), 1, + sym__initializer, + ACTIONS(7842), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [216631] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(5040), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - [216650] = 3, + [216001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7782), 1, anon_sym_AMP, - ACTIONS(5781), 6, + ACTIONS(5998), 6, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_extends, - [216665] = 8, + [216016] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(7844), 1, + sym_identifier, + ACTIONS(7846), 1, + anon_sym_STAR, + STATE(4595), 1, + sym_formal_parameters, + STATE(5404), 1, + sym__call_signature, + STATE(5424), 1, + sym_type_parameters, + [216041] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7535), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(2515), 1, + STATE(4709), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5582), 1, + STATE(5707), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [216690] = 3, + [216066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 1, - anon_sym_AMP, - ACTIONS(5781), 6, + ACTIONS(7447), 1, + anon_sym_is, + ACTIONS(4887), 6, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [216705] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4670), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5553), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [216730] = 6, + [216081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7726), 1, + ACTIONS(7848), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7728), 1, - anon_sym_LBRACK, - ACTIONS(7854), 1, - sym_identifier, - STATE(5136), 1, - sym_variable_declarator, - STATE(4414), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [216751] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7882), 1, - anon_sym_AMP, - ACTIONS(7884), 1, - anon_sym_PIPE, - ACTIONS(7886), 1, - anon_sym_extends, - ACTIONS(5150), 4, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [216770] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [216094] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7888), 1, - anon_sym_COLON, - ACTIONS(7890), 1, - anon_sym_QMARK, - STATE(4597), 1, + ACTIONS(7850), 1, + sym_identifier, + ACTIONS(7852), 1, + anon_sym_STAR, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5523), 1, + STATE(5577), 1, sym__call_signature, - [216795] = 4, + [216119] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 1, - anon_sym_AMP, - ACTIONS(7884), 1, - anon_sym_PIPE, - ACTIONS(5895), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(7535), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, anon_sym_extends, - [216812] = 8, + STATE(1062), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5408), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [216144] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7574), 1, + ACTIONS(7429), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(1060), 1, + STATE(2202), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5536), 1, + STATE(5697), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [216837] = 5, + [216169] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(5798), 4, + ACTIONS(7489), 1, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - [216856] = 5, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(3344), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5453), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [216194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(5150), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, + ACTIONS(6761), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [216207] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4957), 1, + anon_sym_LPAREN, + ACTIONS(7232), 1, + anon_sym_LT, + ACTIONS(7854), 1, + sym_identifier, + ACTIONS(7856), 1, anon_sym_LBRACK, - [216875] = 8, + ACTIONS(7858), 1, + sym_private_property_identifier, + STATE(2578), 1, + sym_arguments, + STATE(5548), 1, + sym_type_arguments, + [216232] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(7792), 1, + anon_sym_DOT, + ACTIONS(7860), 1, + sym_identifier, + STATE(1047), 1, + sym_nested_identifier, + STATE(1066), 1, + sym_string, + STATE(1153), 1, + sym__module, + [216257] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7892), 1, + ACTIONS(7862), 1, sym_identifier, - ACTIONS(7894), 1, + ACTIONS(7864), 1, anon_sym_STAR, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5470), 1, + STATE(5441), 1, sym__call_signature, - [216900] = 8, + [216282] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5423), 1, + anon_sym_LPAREN, + ACTIONS(7232), 1, + anon_sym_LT, + ACTIONS(7866), 1, + sym_identifier, + ACTIONS(7868), 1, + anon_sym_LBRACK, + ACTIONS(7870), 1, + sym_private_property_identifier, + STATE(2934), 1, + sym_arguments, + STATE(5423), 1, + sym_type_arguments, + [216307] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5648), 1, + sym_statement_block, + ACTIONS(7872), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216324] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5745), 1, + anon_sym_LPAREN, + ACTIONS(7232), 1, + anon_sym_LT, + ACTIONS(7874), 1, + sym_identifier, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(7878), 1, + sym_private_property_identifier, + STATE(3483), 1, + sym_arguments, + STATE(5547), 1, + sym_type_arguments, + [216349] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7896), 1, + ACTIONS(7880), 1, sym_identifier, - ACTIONS(7898), 1, + ACTIONS(7882), 1, anon_sym_STAR, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5470), 1, + STATE(5638), 1, sym__call_signature, - [216925] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7477), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(3423), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5546), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [216950] = 5, + [216374] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 1, - anon_sym_AMP, ACTIONS(7884), 1, - anon_sym_PIPE, - ACTIONS(7886), 1, - anon_sym_extends, - ACTIONS(5958), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [216969] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(5781), 6, + ACTIONS(5799), 6, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_PIPE, anon_sym_extends, - [216984] = 3, + [216389] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(5962), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(7886), 1, anon_sym_PIPE, + ACTIONS(7888), 1, anon_sym_extends, - [216999] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(2415), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5456), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [217024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(5895), 5, + ACTIONS(5805), 4, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, - anon_sym_extends, - [217041] = 8, + [216408] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7900), 1, + ACTIONS(7890), 1, sym_identifier, - ACTIONS(7902), 1, + ACTIONS(7892), 1, anon_sym_STAR, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5623), 1, + STATE(5638), 1, sym__call_signature, - [217066] = 8, + [216433] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7782), 1, + anon_sym_AMP, + ACTIONS(7784), 1, + anon_sym_PIPE, + ACTIONS(7786), 1, anon_sym_extends, - ACTIONS(7625), 1, + ACTIONS(5938), 4, anon_sym_LBRACE, - STATE(193), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5399), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [217091] = 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + [216452] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, + ACTIONS(7764), 1, + anon_sym_AMP, + ACTIONS(7766), 1, + anon_sym_PIPE, + ACTIONS(7768), 1, + anon_sym_extends, + ACTIONS(5271), 4, anon_sym_EQ, - STATE(5069), 1, - sym_constraint, - STATE(5596), 1, - sym_default_type, - ACTIONS(7232), 2, anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_GT, - ACTIONS(7904), 2, - anon_sym_COLON, - anon_sym_extends, - [217112] = 8, + [216471] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1918), 1, + anon_sym_LBRACE, + ACTIONS(7894), 1, anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(7906), 1, - sym_identifier, - ACTIONS(7908), 1, - anon_sym_STAR, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, + ACTIONS(7896), 1, + anon_sym_extends, + STATE(1151), 1, + sym_object_type, + STATE(4624), 1, sym_type_parameters, - STATE(5428), 1, - sym__call_signature, - [217137] = 4, + STATE(5321), 1, + sym_extends_clause, + [216496] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(4805), 1, - sym_statement_block, - ACTIONS(1998), 5, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(3103), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5533), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [216521] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + STATE(4707), 1, + sym_type_annotation, + STATE(5180), 1, + sym__initializer, + ACTIONS(7392), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [217154] = 5, + [216542] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_AMP, - ACTIONS(7766), 1, - anon_sym_PIPE, - ACTIONS(7784), 1, - anon_sym_extends, - ACTIONS(5040), 4, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4827), 1, + anon_sym_LPAREN, + ACTIONS(7232), 1, + anon_sym_LT, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(7900), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - [217173] = 8, + ACTIONS(7902), 1, + sym_private_property_identifier, + STATE(2270), 1, + sym_arguments, + STATE(5640), 1, + sym_type_arguments, + [216567] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(2261), 1, + STATE(4795), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5656), 1, + STATE(5644), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [217198] = 8, + [216592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(4933), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4935), 5, anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, - anon_sym_extends, - STATE(2885), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5649), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [217223] = 8, + anon_sym_LPAREN, + anon_sym_GT, + sym_jsx_identifier, + anon_sym_BQUOTE, + [216607] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7437), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(2882), 1, + STATE(2813), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5662), 1, + STATE(5530), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [217248] = 4, + [216632] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5547), 1, - sym_statement_block, - ACTIONS(7910), 5, + ACTIONS(7904), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [217265] = 4, + [216645] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(5558), 1, - sym_statement_block, - ACTIONS(7912), 5, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(3269), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5455), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [216670] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7730), 1, + anon_sym_LBRACE, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(7906), 1, + sym_identifier, + STATE(4995), 1, + sym_variable_declarator, + STATE(4388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [216691] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(7908), 1, + sym_identifier, + ACTIONS(7910), 1, + anon_sym_STAR, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5557), 1, + sym__call_signature, + [216716] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6406), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [217282] = 4, + anon_sym_COLON, + [216729] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(5938), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + [216748] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(5541), 1, - sym_statement_block, - ACTIONS(7912), 5, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2822), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5504), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [216773] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7437), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2835), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5502), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [216798] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7912), 7, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_COLON, anon_sym_PIPE_RBRACE, - [217299] = 2, + [216811] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6630), 7, + ACTIONS(6451), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -307893,249 +307628,423 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [217312] = 8, + [216824] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, + ACTIONS(7744), 1, + anon_sym_AMP, + ACTIONS(7746), 1, + anon_sym_PIPE, + ACTIONS(7748), 1, + anon_sym_extends, + ACTIONS(7706), 4, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + [216843] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(5307), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + [216862] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(5998), 6, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [216877] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7830), 1, + anon_sym_AMP, + ACTIONS(7832), 1, + anon_sym_PIPE, + ACTIONS(7834), 1, + anon_sym_extends, + ACTIONS(5938), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + [216896] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2573), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5438), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [216921] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7535), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(4834), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5651), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [216946] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, ACTIONS(7914), 1, sym_identifier, ACTIONS(7916), 1, - anon_sym_STAR, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5664), 1, - sym__call_signature, - [217337] = 8, + anon_sym_DOT, + STATE(4241), 1, + sym_nested_identifier, + STATE(4323), 1, + sym_string, + STATE(4644), 1, + sym__module, + [216971] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, ACTIONS(7918), 1, - sym_identifier, - ACTIONS(7920), 1, - anon_sym_STAR, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5470), 1, - sym__call_signature, - [217362] = 6, + anon_sym_EQ, + ACTIONS(7922), 1, + anon_sym_COLON, + ACTIONS(7924), 1, + anon_sym_QMARK, + STATE(4986), 1, + sym_type_annotation, + STATE(5521), 1, + sym__initializer, + ACTIONS(7920), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [216994] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7726), 1, + ACTIONS(7730), 1, anon_sym_LBRACE, - ACTIONS(7728), 1, + ACTIONS(7732), 1, anon_sym_LBRACK, - ACTIONS(7806), 1, + ACTIONS(7926), 1, sym_identifier, - STATE(4966), 1, + STATE(4995), 1, sym_variable_declarator, - STATE(4163), 3, + STATE(4185), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [217383] = 6, + [217015] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7692), 7, + sym__automatic_semicolon, anon_sym_EQ, - ACTIONS(7305), 1, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, anon_sym_COLON, - STATE(4750), 1, + [217028] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3103), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [217041] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + STATE(4866), 1, sym_type_annotation, - STATE(5140), 1, + STATE(5254), 1, sym__initializer, - ACTIONS(7396), 3, + ACTIONS(7408), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [217404] = 3, + [217062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7497), 1, - anon_sym_is, - ACTIONS(4889), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7884), 1, anon_sym_AMP, + ACTIONS(7886), 1, anon_sym_PIPE, + ACTIONS(7888), 1, anon_sym_extends, - [217419] = 8, + ACTIONS(5271), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + [217081] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5388), 1, - anon_sym_LPAREN, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7922), 1, - sym_identifier, - ACTIONS(7924), 1, - anon_sym_LBRACK, - ACTIONS(7926), 1, - sym_private_property_identifier, - STATE(2794), 1, - sym_arguments, - STATE(5667), 1, - sym_type_arguments, - [217444] = 8, + ACTIONS(2213), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_PIPE_RBRACE, + [217094] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2247), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7894), 1, + anon_sym_LT, + ACTIONS(7896), 1, anon_sym_extends, - STATE(2582), 1, - sym_class_body, - STATE(5359), 1, + STATE(4601), 1, + sym_object_type, + STATE(4868), 1, + sym_type_parameters, + STATE(5264), 1, sym_extends_clause, - STATE(5552), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [217469] = 8, + [217119] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7574), 1, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4725), 1, + STATE(2557), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5568), 1, + STATE(5464), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [217494] = 8, + [217144] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7810), 1, + anon_sym_AMP, + ACTIONS(7812), 1, + anon_sym_PIPE, + ACTIONS(7814), 1, anon_sym_extends, - STATE(3087), 1, - sym_class_body, - STATE(5359), 1, - sym_extends_clause, - STATE(5578), 1, - sym_class_heritage, - STATE(6079), 1, - sym_implements_clause, - [217519] = 8, + ACTIONS(5307), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [217163] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7810), 1, + anon_sym_AMP, + ACTIONS(5998), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_extends, + [217178] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7890), 1, - anon_sym_QMARK, ACTIONS(7928), 1, anon_sym_COLON, - STATE(4597), 1, + ACTIONS(7930), 1, + anon_sym_QMARK, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5523), 1, + STATE(5606), 1, sym__call_signature, - [217544] = 5, + [217203] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(7932), 1, + sym_identifier, + ACTIONS(7934), 1, + anon_sym_STAR, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5596), 1, + sym__call_signature, + [217228] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7862), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7864), 1, - anon_sym_extends, - ACTIONS(5798), 4, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(6059), 5, + anon_sym_LBRACE, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - [217563] = 6, + anon_sym_extends, + [217245] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7726), 1, + ACTIONS(7782), 1, + anon_sym_AMP, + ACTIONS(7784), 1, + anon_sym_PIPE, + ACTIONS(7786), 1, + anon_sym_extends, + ACTIONS(5805), 4, anon_sym_LBRACE, - ACTIONS(7728), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(7854), 1, - sym_identifier, - STATE(5013), 1, - sym_variable_declarator, - STATE(4414), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [217584] = 6, + anon_sym_RBRACK, + [217264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7726), 1, + ACTIONS(7782), 1, + anon_sym_AMP, + ACTIONS(7784), 1, + anon_sym_PIPE, + ACTIONS(6059), 5, anon_sym_LBRACE, - ACTIONS(7728), 1, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(7854), 1, - sym_identifier, - STATE(5010), 1, - sym_variable_declarator, - STATE(4414), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [217605] = 8, + anon_sym_RBRACK, + anon_sym_extends, + [217281] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7429), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2317), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5635), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [217306] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7308), 1, + anon_sym_EQ, + ACTIONS(7314), 1, + anon_sym_COLON, + STATE(4643), 1, + sym_type_annotation, + STATE(5281), 1, + sym__initializer, + ACTIONS(7509), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [217327] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(7445), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(3288), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5666), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [217352] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(7930), 1, + ACTIONS(7936), 1, sym_identifier, - ACTIONS(7932), 1, + ACTIONS(7938), 1, anon_sym_STAR, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5428), 1, + STATE(5441), 1, sym__call_signature, - [217630] = 8, + [217377] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(7934), 1, + ACTIONS(7730), 1, + anon_sym_LBRACE, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(7906), 1, sym_identifier, - ACTIONS(7936), 1, - anon_sym_STAR, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5428), 1, - sym__call_signature, - [217655] = 2, + STATE(5002), 1, + sym_variable_declarator, + STATE(4388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [217398] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7678), 7, + ACTIONS(7698), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -308143,19580 +308052,19842 @@ static uint16_t ts_small_parse_table[] = { anon_sym_of, anon_sym_SEMI, anon_sym_COLON, - [217668] = 8, + [217411] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(3025), 1, + ACTIONS(7552), 1, + anon_sym_LBRACE, + STATE(183), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5678), 1, + STATE(5674), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [217693] = 8, + [217436] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7489), 1, anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(3001), 1, + STATE(3375), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5681), 1, + STATE(5489), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [217718] = 4, + [217461] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5472), 1, + sym_statement_block, + ACTIONS(7940), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [217478] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(7930), 1, + anon_sym_QMARK, + ACTIONS(7942), 1, anon_sym_COLON, - STATE(4703), 1, - sym_type_annotation, - ACTIONS(7938), 5, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5606), 1, + sym__call_signature, + [217503] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5534), 1, + sym_statement_block, + ACTIONS(7944), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217735] = 8, + [217520] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7574), 1, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5498), 1, + sym_statement_block, + ACTIONS(7944), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [217537] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7535), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - ACTIONS(7594), 1, + STATE(4902), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5678), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [217562] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7489), 1, anon_sym_LBRACE, - STATE(4756), 1, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(3370), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5589), 1, + STATE(5394), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [217760] = 8, + [217587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, - anon_sym_LPAREN, - ACTIONS(7236), 1, - anon_sym_LT, - ACTIONS(7940), 1, + ACTIONS(7730), 1, + anon_sym_LBRACE, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(7906), 1, sym_identifier, - ACTIONS(7942), 1, + STATE(5130), 1, + sym_variable_declarator, + STATE(4388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [217608] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4691), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [217621] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7810), 1, + anon_sym_AMP, + ACTIONS(5799), 6, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(7944), 1, - sym_private_property_identifier, - STATE(2465), 1, - sym_arguments, - STATE(5556), 1, - sym_type_arguments, - [217785] = 5, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_extends, + [217636] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 1, + ACTIONS(7429), 1, + anon_sym_LBRACE, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(7539), 1, + anon_sym_extends, + STATE(2184), 1, + sym_class_body, + STATE(5283), 1, + sym_extends_clause, + STATE(5646), 1, + sym_class_heritage, + STATE(5851), 1, + sym_implements_clause, + [217661] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7810), 1, anon_sym_AMP, - ACTIONS(7884), 1, + ACTIONS(7812), 1, anon_sym_PIPE, - ACTIONS(7886), 1, + ACTIONS(7814), 1, anon_sym_extends, - ACTIONS(5798), 4, + ACTIONS(5805), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, - [217804] = 4, + [217680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5645), 1, - sym_statement_block, - ACTIONS(7946), 5, + ACTIONS(6421), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [217821] = 6, + anon_sym_COLON, + [217693] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - ACTIONS(7305), 1, + ACTIONS(7314), 1, anon_sym_COLON, - STATE(4803), 1, + STATE(4906), 1, sym_type_annotation, - STATE(5128), 1, + STATE(5388), 1, sym__initializer, - ACTIONS(7948), 3, + ACTIONS(7394), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [217842] = 5, + [217714] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, + ACTIONS(7810), 1, anon_sym_AMP, - ACTIONS(7770), 1, + ACTIONS(7812), 1, anon_sym_PIPE, - ACTIONS(7772), 1, + ACTIONS(7814), 1, anon_sym_extends, - ACTIONS(5958), 4, - anon_sym_EQ, + ACTIONS(5271), 4, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_GT, - [217861] = 3, + anon_sym_RBRACK, + anon_sym_QMARK, + [217733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, - anon_sym_AMP, - ACTIONS(5962), 6, - anon_sym_EQ, + ACTIONS(6406), 1, + anon_sym_COLON, + ACTIONS(2954), 6, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_GT, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [217876] = 6, + [217748] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - ACTIONS(7305), 1, - anon_sym_COLON, - STATE(4590), 1, - sym_type_annotation, - STATE(5135), 1, - sym__initializer, - ACTIONS(7469), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [217897] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - ACTIONS(7574), 1, + ACTIONS(7537), 1, anon_sym_implements, - ACTIONS(7576), 1, + ACTIONS(7539), 1, anon_sym_extends, - STATE(2256), 1, + ACTIONS(7558), 1, + anon_sym_LBRACE, + STATE(1117), 1, sym_class_body, - STATE(5359), 1, + STATE(5283), 1, sym_extends_clause, - STATE(5631), 1, + STATE(5552), 1, sym_class_heritage, - STATE(6079), 1, + STATE(5851), 1, sym_implements_clause, - [217922] = 7, + [217773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, - sym_identifier, - ACTIONS(7952), 1, - anon_sym_GT, - ACTIONS(7954), 1, - anon_sym_SLASH, - ACTIONS(7956), 1, - sym_jsx_identifier, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [217944] = 7, + ACTIONS(7810), 1, + anon_sym_AMP, + ACTIONS(7812), 1, + anon_sym_PIPE, + ACTIONS(6059), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_extends, + [217790] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(7730), 1, + anon_sym_LBRACE, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(7906), 1, sym_identifier, - ACTIONS(7952), 1, - anon_sym_GT, - ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(7958), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [217966] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7960), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4746), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [217988] = 5, + STATE(5052), 1, + sym_variable_declarator, + STATE(4388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [217811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, + ACTIONS(6421), 1, anon_sym_COLON, - ACTIONS(7962), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7964), 1, - anon_sym_QMARK_COLON, - STATE(4693), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [218006] = 7, + ACTIONS(5362), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [217826] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7966), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(5167), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [218028] = 4, + ACTIONS(7730), 1, + anon_sym_LBRACE, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(7926), 1, + sym_identifier, + STATE(5002), 1, + sym_variable_declarator, + STATE(4185), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [217847] = 6, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, - aux_sym_object_type_repeat1, - ACTIONS(4863), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7968), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [218044] = 4, + ACTIONS(7730), 1, + anon_sym_LBRACE, + ACTIONS(7732), 1, + anon_sym_LBRACK, + ACTIONS(7906), 1, + sym_identifier, + STATE(5059), 1, + sym_variable_declarator, + STATE(4388), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [217868] = 4, ACTIONS(3), 1, sym_comment, - STATE(4456), 1, + STATE(4515), 1, aux_sym_object_type_repeat1, - ACTIONS(7972), 2, + ACTIONS(4853), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7970), 3, + ACTIONS(7946), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [218060] = 7, + [217884] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(7974), 1, - sym_identifier, - STATE(4597), 1, + ACTIONS(7948), 1, + anon_sym_QMARK, + STATE(4059), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5429), 1, + STATE(4312), 1, sym__call_signature, - [218082] = 5, + STATE(5618), 1, + sym_type_parameters, + [217906] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE, - ACTIONS(7980), 1, - anon_sym_extends, - ACTIONS(5958), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - [218100] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7962), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7964), 1, - anon_sym_QMARK_COLON, - STATE(4700), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [218118] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(7982), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4784), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [218140] = 4, + ACTIONS(7950), 1, + sym_identifier, + STATE(5242), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [217924] = 2, ACTIONS(3), 1, sym_comment, - STATE(4454), 1, - aux_sym_object_type_repeat1, - ACTIONS(7986), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7984), 3, + ACTIONS(3216), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, anon_sym_SEMI, - [218156] = 7, + anon_sym_PIPE_RBRACE, + [217936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7988), 1, - anon_sym_COMMA, - ACTIONS(7990), 1, - anon_sym_GT, - ACTIONS(7992), 1, + ACTIONS(7952), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(7954), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(7956), 1, anon_sym_extends, - STATE(5336), 1, - aux_sym_implements_clause_repeat1, - [218178] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7023), 2, + ACTIONS(5938), 3, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4732), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [218192] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8000), 1, - anon_sym_BQUOTE, - ACTIONS(8002), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7998), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4569), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [218210] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8002), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8004), 1, - anon_sym_BQUOTE, - ACTIONS(7998), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4569), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [218228] = 5, + anon_sym_LBRACK, + anon_sym_GT, + [217954] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8006), 1, + ACTIONS(7958), 1, anon_sym_default, - ACTIONS(8008), 1, + ACTIONS(7960), 1, anon_sym_RBRACE, - ACTIONS(8010), 1, + ACTIONS(7962), 1, anon_sym_case, - STATE(4445), 3, + STATE(4430), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [218246] = 7, + [217972] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(8012), 1, - anon_sym_QMARK, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5542), 1, - sym__call_signature, - [218268] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7346), 1, + ACTIONS(7348), 1, anon_sym_COLON, - ACTIONS(7962), 1, - anon_sym_DASH_QMARK_COLON, ACTIONS(7964), 1, - anon_sym_QMARK_COLON, - STATE(4812), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [218286] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7962), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7964), 1, + ACTIONS(7966), 1, anon_sym_QMARK_COLON, - STATE(4851), 3, + STATE(4711), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [218304] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7950), 1, - sym_identifier, - ACTIONS(7952), 1, - anon_sym_GT, - ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(8014), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [218326] = 7, + [217990] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, - sym_identifier, - ACTIONS(7952), 1, - anon_sym_GT, - ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(8016), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [218348] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(8018), 1, - sym_identifier, - STATE(4597), 1, + ACTIONS(7968), 1, + anon_sym_QMARK, + STATE(4059), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5688), 1, + STATE(4291), 1, sym__call_signature, - [218370] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8020), 1, - anon_sym_export, - ACTIONS(8022), 1, - anon_sym_class, - ACTIONS(8024), 1, - anon_sym_abstract, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [218392] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8028), 1, - anon_sym_EQ, - ACTIONS(8026), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(8030), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [218408] = 5, + STATE(5618), 1, + sym_type_parameters, + [218012] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8002), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8034), 1, - anon_sym_BQUOTE, - ACTIONS(8032), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4430), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [218426] = 5, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(7970), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4286), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [218034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7860), 1, + ACTIONS(7952), 1, anon_sym_AMP, - ACTIONS(7862), 1, + ACTIONS(5998), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_PIPE, - ACTIONS(7864), 1, anon_sym_extends, - ACTIONS(7707), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - [218444] = 7, + [218048] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(8036), 1, + ACTIONS(7972), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4706), 1, + STATE(4283), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - [218466] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(8038), 1, - sym_identifier, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5563), 1, - sym__call_signature, - [218488] = 5, + [218070] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8006), 1, - anon_sym_default, - ACTIONS(8010), 1, - anon_sym_case, - ACTIONS(8040), 1, - anon_sym_RBRACE, - STATE(4476), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [218506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7655), 1, - anon_sym_is, - ACTIONS(4889), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7952), 1, anon_sym_AMP, + ACTIONS(7954), 1, anon_sym_PIPE, + ACTIONS(7956), 1, anon_sym_extends, - [218520] = 7, + ACTIONS(5307), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [218088] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(8042), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4796), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [218542] = 7, + ACTIONS(7976), 1, + anon_sym_BQUOTE, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7974), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4440), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [218106] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(7982), 1, anon_sym_GT, - ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(8044), 1, + ACTIONS(7984), 1, anon_sym_SLASH, - STATE(3953), 1, + ACTIONS(7986), 1, + sym_jsx_identifier, + STATE(3950), 1, sym_nested_identifier, - STATE(4096), 1, + STATE(4191), 1, sym_jsx_namespace_name, - [218564] = 7, + [218128] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, - anon_sym_COMMA, - ACTIONS(6038), 1, - anon_sym_LBRACE, - ACTIONS(6066), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(8046), 1, - anon_sym_LT, - STATE(4976), 1, - aux_sym_extends_clause_repeat1, - STATE(5124), 1, - sym_type_arguments, - [218586] = 7, + ACTIONS(7988), 1, + anon_sym_default, + ACTIONS(7991), 1, + anon_sym_RBRACE, + ACTIONS(7993), 1, + anon_sym_case, + STATE(4430), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [218146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(8048), 1, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, + anon_sym_LBRACK, + ACTIONS(7996), 1, sym_identifier, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5628), 1, - sym__call_signature, - [218608] = 5, + STATE(4305), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [218164] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, + ACTIONS(7348), 1, anon_sym_COLON, - ACTIONS(7962), 1, - anon_sym_DASH_QMARK_COLON, ACTIONS(7964), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7966), 1, anon_sym_QMARK_COLON, - STATE(4800), 3, + STATE(4872), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [218626] = 3, + [218182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_AMP, - ACTIONS(5962), 5, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(3028), 1, + anon_sym_LBRACE, + ACTIONS(6844), 1, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [218640] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4492), 1, - aux_sym_object_type_repeat1, - ACTIONS(4857), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8050), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [218656] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4585), 1, - aux_sym_object_type_repeat1, - ACTIONS(4857), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8050), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [218672] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4462), 1, - aux_sym_object_type_repeat1, - ACTIONS(4879), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8052), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [218688] = 4, + ACTIONS(7998), 1, + sym_identifier, + STATE(5446), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [218200] = 4, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, + STATE(4521), 1, aux_sym_object_type_repeat1, - ACTIONS(4879), 2, + ACTIONS(4853), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8052), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [218704] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8054), 1, - sym_identifier, - ACTIONS(8056), 1, - anon_sym_GT, - ACTIONS(8058), 1, - sym_jsx_identifier, - STATE(3977), 1, - sym_nested_identifier, - STATE(4091), 1, - sym_jsx_namespace_name, - STATE(5186), 1, - sym_type_parameter, - [218726] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8060), 1, - sym_identifier, - ACTIONS(8062), 1, - anon_sym_GT, - ACTIONS(8064), 1, - sym_jsx_identifier, - STATE(3974), 1, - sym_nested_identifier, - STATE(4127), 1, - sym_jsx_namespace_name, - STATE(5186), 1, - sym_type_parameter, - [218748] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8066), 6, + ACTIONS(7946), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218760] = 7, + [218216] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, - sym_identifier, ACTIONS(7952), 1, - anon_sym_GT, - ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(8068), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [218782] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(7954), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(7956), 1, anon_sym_extends, - ACTIONS(5040), 3, + ACTIONS(8000), 1, anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(8002), 1, anon_sym_GT, - [218800] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4585), 1, - aux_sym_object_type_repeat1, - ACTIONS(4847), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8070), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [218816] = 7, + STATE(5150), 1, + aux_sym_implements_clause_repeat1, + [218238] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(7982), 1, anon_sym_GT, - ACTIONS(7956), 1, + ACTIONS(7986), 1, sym_jsx_identifier, - ACTIONS(8072), 1, + ACTIONS(8004), 1, anon_sym_SLASH, - STATE(3953), 1, + STATE(3950), 1, sym_nested_identifier, - STATE(4096), 1, + STATE(4191), 1, sym_jsx_namespace_name, - [218838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(5781), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_extends, - [218852] = 7, + [218260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(7994), 1, - anon_sym_PIPE, - ACTIONS(7996), 1, - anon_sym_extends, - ACTIONS(8074), 1, + ACTIONS(8006), 1, + anon_sym_EQ, + ACTIONS(4691), 5, anon_sym_COMMA, - ACTIONS(8076), 1, - anon_sym_GT, - STATE(5355), 1, - aux_sym_implements_clause_repeat1, - [218874] = 7, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [218274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8022), 1, - anon_sym_class, - ACTIONS(8024), 1, - anon_sym_abstract, - ACTIONS(8078), 1, - anon_sym_export, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [218896] = 7, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(7914), 1, + sym_identifier, + STATE(4241), 1, + sym_nested_identifier, + STATE(4323), 1, + sym_string, + STATE(4644), 1, + sym__module, + [218296] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(8080), 1, + ACTIONS(8009), 1, anon_sym_QMARK, - STATE(4597), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5659), 1, + STATE(4901), 1, sym__call_signature, - [218918] = 5, + STATE(5618), 1, + sym_type_parameters, + [218318] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(8082), 1, - sym_identifier, - STATE(5585), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [218936] = 7, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8013), 1, + anon_sym_BQUOTE, + ACTIONS(8011), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4578), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [218336] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(7952), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(7954), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(7956), 1, anon_sym_extends, - ACTIONS(8084), 1, + ACTIONS(8015), 1, anon_sym_COMMA, - ACTIONS(8086), 1, + ACTIONS(8017), 1, anon_sym_GT, - STATE(5265), 1, + STATE(5310), 1, aux_sym_implements_clause_repeat1, - [218958] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(8088), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4326), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [218980] = 7, + [218358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(8090), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4335), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [219002] = 7, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(8021), 1, + anon_sym_PIPE, + ACTIONS(6059), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + [218374] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8092), 1, + ACTIONS(8023), 1, sym_identifier, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5563), 1, + STATE(5572), 1, sym__call_signature, - [219024] = 7, + [218396] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, - sym_identifier, - ACTIONS(7952), 1, - anon_sym_GT, - ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(8094), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [219046] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7962), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7964), 1, - anon_sym_QMARK_COLON, - STATE(4888), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [219064] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8002), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8098), 1, - anon_sym_BQUOTE, - ACTIONS(8096), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4431), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [219082] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8100), 1, - anon_sym_default, - ACTIONS(8103), 1, - anon_sym_RBRACE, - ACTIONS(8105), 1, - anon_sym_case, - STATE(4476), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [219100] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(8108), 1, + ACTIONS(8025), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4340), 1, + STATE(4701), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - [219122] = 7, + [218418] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(8110), 1, + ACTIONS(8027), 1, sym_identifier, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5563), 1, - sym__call_signature, - [219144] = 5, + ACTIONS(8031), 1, + anon_sym_COMMA, + ACTIONS(8033), 1, + anon_sym_RBRACE, + STATE(5330), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [218438] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, - anon_sym_LBRACK, - ACTIONS(8112), 1, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + ACTIONS(7914), 1, sym_identifier, - STATE(5301), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [219162] = 5, + STATE(4241), 1, + sym_nested_identifier, + STATE(4323), 1, + sym_string, + STATE(4715), 1, + sym__module, + [218460] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(8019), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(8021), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(8035), 1, anon_sym_extends, - ACTIONS(5798), 3, - anon_sym_COMMA, + ACTIONS(5271), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, - [219180] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(8114), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4665), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [219202] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(8116), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4842), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [219224] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(8118), 1, - sym_identifier, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5429), 1, - sym__call_signature, - [219246] = 6, + [218478] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8124), 1, + ACTIONS(7019), 2, anon_sym_COMMA, - ACTIONS(8126), 1, anon_sym_RBRACE, - STATE(5118), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [219266] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(4722), 4, anon_sym_LPAREN, - ACTIONS(8128), 1, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4353), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [219288] = 7, + [218492] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(7982), 1, anon_sym_GT, - ACTIONS(7956), 1, + ACTIONS(7986), 1, sym_jsx_identifier, - ACTIONS(8130), 1, + ACTIONS(8037), 1, anon_sym_SLASH, - STATE(3953), 1, + STATE(3950), 1, sym_nested_identifier, - STATE(4096), 1, + STATE(4191), 1, sym_jsx_namespace_name, - [219310] = 2, + [218514] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3394), 6, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(7958), 1, + anon_sym_default, + ACTIONS(7962), 1, + anon_sym_case, + ACTIONS(8039), 1, anon_sym_RBRACE, - anon_sym_from, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [219322] = 3, + STATE(4421), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [218532] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7337), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(7339), 4, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [219336] = 2, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8041), 1, + anon_sym_export, + ACTIONS(8043), 1, + anon_sym_class, + ACTIONS(8045), 1, + anon_sym_abstract, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [218554] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 6, - anon_sym_EQ, - anon_sym_COMMA, + STATE(4511), 1, + aux_sym_object_type_repeat1, + ACTIONS(8049), 2, anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_PIPE_RBRACE, + ACTIONS(8047), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [218570] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(8051), 1, anon_sym_QMARK, - [219348] = 2, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5563), 1, + sym__call_signature, + [218592] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3390), 6, + STATE(4515), 1, + aux_sym_object_type_repeat1, + ACTIONS(4845), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8053), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [219360] = 7, + [218608] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8132), 1, - sym_identifier, - ACTIONS(8134), 1, - anon_sym_GT, - ACTIONS(8136), 1, - sym_jsx_identifier, - STATE(3955), 1, - sym_nested_identifier, - STATE(4169), 1, - sym_jsx_namespace_name, - STATE(5186), 1, - sym_type_parameter, - [219382] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4585), 1, + STATE(4515), 1, aux_sym_object_type_repeat1, ACTIONS(4843), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8138), 3, + ACTIONS(8055), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [219398] = 5, + [218624] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(7830), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(7832), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(7834), 1, anon_sym_extends, - ACTIONS(5150), 3, + ACTIONS(7706), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_RPAREN, + [218642] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8045), 1, + anon_sym_abstract, + ACTIONS(8057), 1, + anon_sym_export, + ACTIONS(8059), 1, + anon_sym_class, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [218664] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, anon_sym_GT, - [219416] = 2, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8061), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [218686] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3518), 6, + ACTIONS(3232), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [219428] = 7, + [218698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + STATE(4454), 1, + aux_sym_object_type_repeat1, + ACTIONS(4843), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8055), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [218714] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(7982), 1, anon_sym_GT, - ACTIONS(7956), 1, + ACTIONS(7986), 1, sym_jsx_identifier, - ACTIONS(8140), 1, + ACTIONS(8063), 1, anon_sym_SLASH, - STATE(3953), 1, + STATE(3950), 1, sym_nested_identifier, - STATE(4096), 1, + STATE(4191), 1, sym_jsx_namespace_name, - [219450] = 7, + [218736] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(7982), 1, anon_sym_GT, - ACTIONS(7956), 1, + ACTIONS(7986), 1, sym_jsx_identifier, - ACTIONS(8142), 1, + ACTIONS(8065), 1, anon_sym_SLASH, - STATE(3953), 1, + STATE(3950), 1, sym_nested_identifier, - STATE(4096), 1, + STATE(4191), 1, sym_jsx_namespace_name, - [219472] = 7, + [218758] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(8144), 1, - anon_sym_QMARK, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5461), 1, - sym__call_signature, - [219494] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3030), 1, - anon_sym_LBRACE, - ACTIONS(6872), 1, + ACTIONS(7678), 1, + anon_sym_is, + ACTIONS(4887), 5, anon_sym_LBRACK, - ACTIONS(8146), 1, - sym_identifier, - STATE(4302), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [219512] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, + anon_sym_RBRACK, anon_sym_AMP, - ACTIONS(7994), 1, anon_sym_PIPE, - ACTIONS(7996), 1, anon_sym_extends, - ACTIONS(8148), 1, - anon_sym_COMMA, - ACTIONS(8150), 1, - anon_sym_GT, - STATE(5130), 1, - aux_sym_implements_clause_repeat1, - [219534] = 5, + [218772] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8002), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8154), 1, - anon_sym_BQUOTE, - ACTIONS(8152), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4547), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [219552] = 4, + ACTIONS(7918), 1, + anon_sym_EQ, + ACTIONS(7922), 1, + anon_sym_COLON, + STATE(5080), 1, + sym_type_annotation, + STATE(5684), 1, + sym__initializer, + ACTIONS(8067), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [218792] = 4, ACTIONS(3), 1, sym_comment, - STATE(4540), 1, + STATE(4472), 1, aux_sym_object_type_repeat1, - ACTIONS(4863), 2, + ACTIONS(8071), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7968), 3, + ACTIONS(8069), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [219568] = 3, + [218808] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7617), 1, - anon_sym_is, - ACTIONS(4889), 5, - anon_sym_LBRACK, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(8073), 1, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [219582] = 7, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5488), 1, + sym__call_signature, + [218830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_AMP, - ACTIONS(7766), 1, - anon_sym_PIPE, - ACTIONS(7784), 1, - anon_sym_extends, - ACTIONS(8156), 1, + ACTIONS(8075), 6, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(8158), 1, anon_sym_COMMA, - STATE(5354), 1, - aux_sym_implements_clause_repeat1, - [219604] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(7994), 1, - anon_sym_PIPE, - ACTIONS(7996), 1, - anon_sym_extends, - ACTIONS(8160), 1, - anon_sym_COMMA, - ACTIONS(8162), 1, - anon_sym_GT, - STATE(5242), 1, - aux_sym_implements_clause_repeat1, - [219626] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7615), 1, - anon_sym_is, - ACTIONS(4889), 5, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [219640] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4531), 1, - aux_sym_object_type_repeat1, - ACTIONS(8166), 2, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8164), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [219656] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8168), 1, - anon_sym_EQ, - ACTIONS(4693), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [219670] = 4, + anon_sym_PIPE_RBRACE, + [218842] = 4, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, + STATE(4475), 1, aux_sym_object_type_repeat1, - ACTIONS(4861), 2, + ACTIONS(4859), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8171), 3, + ACTIONS(8077), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [219686] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(7994), 1, - anon_sym_PIPE, - ACTIONS(7996), 1, - anon_sym_extends, - ACTIONS(5958), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [219704] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(5962), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_extends, - [219718] = 7, + [218858] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8173), 1, - anon_sym_QMARK, - STATE(4597), 1, + ACTIONS(8079), 1, + sym_identifier, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5591), 1, + STATE(5556), 1, sym__call_signature, - [219740] = 7, + [218880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(8175), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4386), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [219762] = 7, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7964), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7966), 1, + anon_sym_QMARK_COLON, + STATE(4713), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [218898] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(7982), 1, anon_sym_GT, - ACTIONS(7956), 1, + ACTIONS(7986), 1, sym_jsx_identifier, - ACTIONS(8177), 1, + ACTIONS(8081), 1, anon_sym_SLASH, - STATE(3953), 1, + STATE(3950), 1, sym_nested_identifier, - STATE(4096), 1, + STATE(4191), 1, sym_jsx_namespace_name, - [219784] = 7, + [218920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - ACTIONS(8179), 1, - anon_sym_QMARK, - STATE(4063), 1, - sym_formal_parameters, - STATE(4695), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [219806] = 7, + STATE(4515), 1, + aux_sym_object_type_repeat1, + ACTIONS(4859), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8077), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [218936] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, + anon_sym_GT, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8083), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [218958] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7301), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(7303), 4, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [218972] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4515), 1, + aux_sym_object_type_repeat1, + ACTIONS(4865), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8085), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [218988] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4455), 1, + aux_sym_object_type_repeat1, + ACTIONS(8089), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8087), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219004] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, - sym_identifier, ACTIONS(7952), 1, - anon_sym_GT, + anon_sym_AMP, + ACTIONS(7954), 1, + anon_sym_PIPE, ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(8181), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [219828] = 4, + anon_sym_extends, + ACTIONS(5805), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [219022] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(7952), 1, anon_sym_AMP, - ACTIONS(7994), 1, - anon_sym_PIPE, - ACTIONS(5895), 4, + ACTIONS(5799), 5, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, + anon_sym_PIPE, anon_sym_extends, - [219844] = 7, + [219036] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8091), 1, + sym_identifier, + ACTIONS(8093), 1, + anon_sym_GT, + ACTIONS(8095), 1, + sym_jsx_identifier, + STATE(3963), 1, + sym_nested_identifier, + STATE(4160), 1, + sym_jsx_namespace_name, + STATE(5323), 1, + sym_type_parameter, + [219058] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8183), 1, + ACTIONS(8097), 1, sym_identifier, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5686), 1, + STATE(5452), 1, sym__call_signature, - [219866] = 4, + [219080] = 4, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, + STATE(4416), 1, aux_sym_object_type_repeat1, - ACTIONS(4853), 2, + ACTIONS(8101), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8185), 3, + ACTIONS(8099), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [219882] = 7, + [219096] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(7982), 1, anon_sym_GT, - ACTIONS(7956), 1, + ACTIONS(7986), 1, sym_jsx_identifier, - ACTIONS(8187), 1, + ACTIONS(8103), 1, anon_sym_SLASH, - STATE(3953), 1, + STATE(3950), 1, sym_nested_identifier, - STATE(4096), 1, + STATE(4191), 1, sym_jsx_namespace_name, - [219904] = 7, + [219118] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8189), 1, - sym_identifier, - STATE(4597), 1, + ACTIONS(8105), 1, + anon_sym_QMARK, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5425), 1, sym__call_signature, - [219926] = 2, + [219140] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [219938] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(8107), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4398), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [219162] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8193), 6, + ACTIONS(3524), 6, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_from, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [219950] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4585), 1, - aux_sym_object_type_repeat1, - ACTIONS(4855), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8195), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [219966] = 2, + [219174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 6, + ACTIONS(3520), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [219978] = 4, + [219186] = 7, ACTIONS(3), 1, sym_comment, - STATE(4518), 1, - aux_sym_object_type_repeat1, - ACTIONS(4855), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8195), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [219994] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(8109), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4725), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [219208] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [220006] = 5, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(8111), 1, + sym_identifier, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5452), 1, + sym__call_signature, + [219230] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7768), 1, - anon_sym_AMP, - ACTIONS(7770), 1, - anon_sym_PIPE, - ACTIONS(7772), 1, - anon_sym_extends, - ACTIONS(8197), 3, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, anon_sym_GT, - [220024] = 4, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8113), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [219252] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, + anon_sym_GT, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8115), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [219274] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8019), 1, anon_sym_AMP, - ACTIONS(7978), 1, + ACTIONS(8021), 1, anon_sym_PIPE, - ACTIONS(5895), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(8035), 1, anon_sym_extends, - [220040] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7836), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [220052] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4537), 1, - aux_sym_object_type_repeat1, - ACTIONS(4865), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8199), 3, + ACTIONS(5805), 3, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [220068] = 4, + anon_sym_LBRACK, + [219292] = 5, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, - aux_sym_object_type_repeat1, - ACTIONS(4865), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8199), 3, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(8021), 1, + anon_sym_PIPE, + ACTIONS(8035), 1, + anon_sym_extends, + ACTIONS(5307), 3, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [220084] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7950), 1, - sym_identifier, - ACTIONS(7952), 1, - anon_sym_GT, - ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(8201), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [220106] = 7, + anon_sym_LBRACK, + [219310] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8203), 1, + ACTIONS(8117), 1, sym_identifier, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5386), 1, - sym__call_signature, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - [220128] = 4, + STATE(5572), 1, + sym__call_signature, + [219332] = 7, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, - aux_sym_object_type_repeat1, - ACTIONS(4875), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8205), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [220144] = 5, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(8119), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4870), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [219354] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7962), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7964), 1, - anon_sym_QMARK_COLON, - STATE(4755), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [220162] = 7, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(8121), 1, + sym_identifier, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5685), 1, + sym__call_signature, + [219376] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(7952), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(7954), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(7956), 1, anon_sym_extends, - ACTIONS(8207), 1, + ACTIONS(8123), 1, anon_sym_COMMA, - ACTIONS(8209), 1, + ACTIONS(8125), 1, anon_sym_GT, - STATE(5263), 1, + STATE(5209), 1, aux_sym_implements_clause_repeat1, - [220184] = 4, + [219398] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(5799), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [219412] = 4, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, + STATE(4515), 1, aux_sym_object_type_repeat1, - ACTIONS(4877), 2, + ACTIONS(4817), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8211), 3, + ACTIONS(8127), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [220200] = 7, + [219428] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(8213), 1, + ACTIONS(8129), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(5293), 1, + STATE(4611), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - [220222] = 4, + [219450] = 4, ACTIONS(3), 1, sym_comment, - STATE(4508), 1, + STATE(4524), 1, aux_sym_object_type_repeat1, - ACTIONS(4875), 2, + ACTIONS(4863), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8205), 3, + ACTIONS(8131), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [220238] = 4, + [219466] = 7, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, - aux_sym_object_type_repeat1, - ACTIONS(4859), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8215), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [220254] = 6, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(8133), 1, + sym_identifier, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5515), 1, + sym__call_signature, + [219488] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 1, - anon_sym_COMMA, - ACTIONS(7255), 1, - anon_sym_LT, - STATE(3903), 1, - sym_type_arguments, - STATE(4952), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6066), 2, - anon_sym_LBRACE, - anon_sym_implements, - [220274] = 7, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, + anon_sym_GT, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8135), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [219510] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(8217), 1, + ACTIONS(8137), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4875), 1, + STATE(4734), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - [220296] = 7, + [219532] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8219), 1, + ACTIONS(8139), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(4881), 1, - sym__call_signature, - STATE(5492), 1, + STATE(5424), 1, sym_type_parameters, - [220318] = 7, + STATE(5614), 1, + sym__call_signature, + [219554] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(8221), 1, + ACTIONS(8141), 1, anon_sym_QMARK, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4817), 1, + STATE(4894), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - [220340] = 7, + [219576] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8024), 1, - anon_sym_abstract, - ACTIONS(8223), 1, - anon_sym_export, - ACTIONS(8225), 1, - anon_sym_class, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [220362] = 5, + ACTIONS(3388), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [219588] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8002), 1, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7964), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7966), 1, + anon_sym_QMARK_COLON, + STATE(4770), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [219606] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8027), 1, + sym_identifier, + ACTIONS(8143), 1, + anon_sym_COMMA, + ACTIONS(8145), 1, + anon_sym_RBRACE, + STATE(5147), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [219626] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8229), 1, + ACTIONS(8147), 1, anon_sym_BQUOTE, - ACTIONS(8227), 2, + ACTIONS(8011), 2, sym__template_chars, sym_escape_sequence, - STATE(4565), 2, + STATE(4578), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [220380] = 5, + [219644] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8002), 1, + ACTIONS(7978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8231), 1, + ACTIONS(8149), 1, anon_sym_BQUOTE, - ACTIONS(7998), 2, + ACTIONS(8011), 2, sym__template_chars, sym_escape_sequence, - STATE(4569), 2, + STATE(4578), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [220398] = 4, + [219662] = 4, ACTIONS(3), 1, sym_comment, - STATE(4523), 1, + STATE(4515), 1, aux_sym_object_type_repeat1, - ACTIONS(8235), 2, + ACTIONS(4863), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8233), 3, + ACTIONS(8131), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [220414] = 7, + [219678] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(7782), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(7784), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(7786), 1, + anon_sym_extends, + ACTIONS(8151), 1, + anon_sym_LBRACE, + ACTIONS(8153), 1, + anon_sym_COMMA, + STATE(5259), 1, + aux_sym_implements_clause_repeat1, + [219700] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(8155), 1, + sym_identifier, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5572), 1, + sym__call_signature, + [219722] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3388), 6, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [219734] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4515), 1, + aux_sym_object_type_repeat1, + ACTIONS(8160), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8157), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219750] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7954), 1, + anon_sym_PIPE, + ACTIONS(7956), 1, anon_sym_extends, - ACTIONS(8237), 1, + ACTIONS(8162), 1, anon_sym_COMMA, - ACTIONS(8239), 1, + ACTIONS(8164), 1, anon_sym_GT, - STATE(5133), 1, + STATE(5135), 1, aux_sym_implements_clause_repeat1, - [220436] = 7, + [219772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7964), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7966), 1, + anon_sym_QMARK_COLON, + STATE(4787), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [219790] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7700), 1, + anon_sym_is, + ACTIONS(4887), 5, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [219804] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(7858), 1, + ACTIONS(7860), 1, sym_identifier, - STATE(1050), 1, + STATE(1047), 1, sym_nested_identifier, - STATE(1056), 1, + STATE(1066), 1, sym_string, - STATE(1111), 1, + STATE(1163), 1, sym__module, - [220458] = 7, + [219826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(8168), 1, + anon_sym_EQ, + ACTIONS(8166), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(8170), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(7956), 1, sym_jsx_identifier, - ACTIONS(8241), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [220480] = 5, + [219842] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7962), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7964), 1, - anon_sym_QMARK_COLON, - STATE(4880), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [220498] = 7, + STATE(4515), 1, + aux_sym_object_type_repeat1, + ACTIONS(4841), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8172), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(7952), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(7954), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(7956), 1, anon_sym_extends, - ACTIONS(8243), 1, + ACTIONS(5271), 3, anon_sym_COMMA, - ACTIONS(8245), 1, + anon_sym_LBRACK, anon_sym_GT, - STATE(5295), 1, - aux_sym_implements_clause_repeat1, - [220520] = 4, + [219876] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(8174), 1, + sym_identifier, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5452), 1, + sym__call_signature, + [219898] = 4, ACTIONS(3), 1, sym_comment, - STATE(4584), 1, + STATE(4515), 1, aux_sym_object_type_repeat1, - ACTIONS(8249), 2, + ACTIONS(4861), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8247), 3, + ACTIONS(8176), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [220536] = 7, + [219914] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, + ACTIONS(7952), 1, anon_sym_AMP, - ACTIONS(7994), 1, + ACTIONS(7954), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(7956), 1, anon_sym_extends, - ACTIONS(8251), 1, + ACTIONS(8178), 1, anon_sym_COMMA, - ACTIONS(8253), 1, + ACTIONS(8180), 1, anon_sym_GT, - STATE(5280), 1, + STATE(5286), 1, aux_sym_implements_clause_repeat1, - [220558] = 7, + [219936] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(8182), 1, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(8184), 1, anon_sym_GT, - ACTIONS(7956), 1, + ACTIONS(8186), 1, sym_jsx_identifier, - ACTIONS(8255), 1, - anon_sym_SLASH, - STATE(3953), 1, + STATE(3948), 1, sym_nested_identifier, - STATE(4096), 1, + STATE(4110), 1, sym_jsx_namespace_name, - [220580] = 5, + STATE(5323), 1, + sym_type_parameter, + [219958] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE, - ACTIONS(7980), 1, - anon_sym_extends, - ACTIONS(5150), 3, + STATE(4533), 1, + aux_sym_object_type_repeat1, + ACTIONS(8190), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8188), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [220598] = 7, + [219974] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(7858), 1, + ACTIONS(7980), 1, sym_identifier, - STATE(1050), 1, + ACTIONS(7982), 1, + anon_sym_GT, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8192), 1, + anon_sym_SLASH, + STATE(3950), 1, sym_nested_identifier, - STATE(1056), 1, - sym_string, - STATE(1103), 1, - sym__module, - [220620] = 5, + STATE(4191), 1, + sym_jsx_namespace_name, + [219996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7346), 1, - anon_sym_COLON, - ACTIONS(7962), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7964), 1, - anon_sym_QMARK_COLON, - STATE(4885), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [220638] = 7, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, + anon_sym_GT, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8194), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [220018] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8257), 1, + ACTIONS(8196), 1, sym_identifier, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5620), 1, + STATE(5637), 1, sym__call_signature, - [220660] = 6, + [220040] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8259), 1, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7954), 1, + anon_sym_PIPE, + ACTIONS(6059), 4, anon_sym_COMMA, - ACTIONS(8261), 1, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_extends, + [220056] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4540), 1, + aux_sym_object_type_repeat1, + ACTIONS(4851), 2, anon_sym_RBRACE, - STATE(5348), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [220680] = 7, + anon_sym_PIPE_RBRACE, + ACTIONS(8198), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [220072] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4515), 1, + aux_sym_object_type_repeat1, + ACTIONS(4851), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8198), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [220088] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8263), 1, + ACTIONS(8200), 1, sym_identifier, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5429), 1, + STATE(5452), 1, sym__call_signature, - [220702] = 7, + [220110] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(7816), 1, + ACTIONS(7980), 1, sym_identifier, - STATE(4205), 1, + ACTIONS(7982), 1, + anon_sym_GT, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8202), 1, + anon_sym_SLASH, + STATE(3950), 1, sym_nested_identifier, - STATE(4379), 1, - sym_string, - STATE(4608), 1, - sym__module, - [220724] = 7, + STATE(4191), 1, + sym_jsx_namespace_name, + [220132] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - ACTIONS(8265), 1, - anon_sym_QMARK, - STATE(4597), 1, + ACTIONS(8204), 1, + sym_identifier, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5430), 1, + STATE(5487), 1, sym__call_signature, - [220746] = 5, + [220154] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8002), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(7790), 1, + sym_identifier, + STATE(1066), 1, + sym_string, + STATE(1153), 1, + sym__module, + STATE(5074), 1, + sym_nested_identifier, + [220176] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7980), 1, + sym_identifier, + ACTIONS(7982), 1, + anon_sym_GT, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8206), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [220198] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7978), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(8267), 1, + ACTIONS(8210), 1, anon_sym_BQUOTE, - ACTIONS(7998), 2, + ACTIONS(8208), 2, sym__template_chars, sym_escape_sequence, - STATE(4569), 2, + STATE(4556), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [220764] = 2, + [220216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3266), 6, + STATE(4515), 1, + aux_sym_object_type_repeat1, + ACTIONS(4821), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8212), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [220776] = 7, + [220232] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - ACTIONS(8269), 1, + ACTIONS(1746), 1, + anon_sym_DQUOTE, + ACTIONS(1748), 1, + anon_sym_SQUOTE, + ACTIONS(7790), 1, sym_identifier, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5429), 1, - sym__call_signature, - [220798] = 6, + STATE(1066), 1, + sym_string, + STATE(1163), 1, + sym__module, + STATE(5074), 1, + sym_nested_identifier, + [220254] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8271), 1, + ACTIONS(6025), 1, + anon_sym_LBRACE, + ACTIONS(6027), 1, anon_sym_COMMA, - ACTIONS(8273), 1, - anon_sym_RBRACE, - STATE(5213), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [220818] = 5, + ACTIONS(6055), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(8214), 1, + anon_sym_LPAREN, + STATE(4662), 1, + sym_arguments, + STATE(5047), 1, + aux_sym_extends_clause_repeat1, + [220276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8278), 1, - anon_sym_BQUOTE, - ACTIONS(8280), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(8275), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4569), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [220836] = 5, + ACTIONS(8216), 1, + anon_sym_LBRACE, + ACTIONS(8220), 1, + anon_sym_LT, + STATE(5073), 1, + sym_type_arguments, + ACTIONS(8218), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [220294] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE, ACTIONS(7980), 1, - anon_sym_extends, - ACTIONS(5040), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - [220854] = 4, + sym_identifier, + ACTIONS(7982), 1, + anon_sym_GT, + ACTIONS(7986), 1, + sym_jsx_identifier, + ACTIONS(8222), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [220316] = 2, ACTIONS(3), 1, sym_comment, - STATE(4534), 1, - aux_sym_object_type_repeat1, - ACTIONS(8285), 2, + ACTIONS(4722), 6, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(8283), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [220328] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [220870] = 6, + anon_sym_PIPE_RBRACE, + [220340] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7844), 1, - anon_sym_EQ, - ACTIONS(7848), 1, - anon_sym_COLON, - STATE(5088), 1, - sym_type_annotation, - STATE(5586), 1, - sym__initializer, - ACTIONS(8287), 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + ACTIONS(8226), 1, + sym_identifier, + STATE(4595), 1, + sym_formal_parameters, + STATE(5413), 1, + sym__call_signature, + STATE(5424), 1, + sym_type_parameters, + [220362] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8228), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - [220890] = 7, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [220374] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, - sym_identifier, ACTIONS(7952), 1, - anon_sym_GT, + anon_sym_AMP, + ACTIONS(7954), 1, + anon_sym_PIPE, ACTIONS(7956), 1, - sym_jsx_identifier, - ACTIONS(8289), 1, - anon_sym_SLASH, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [220912] = 7, + anon_sym_extends, + ACTIONS(8230), 1, + anon_sym_COMMA, + ACTIONS(8232), 1, + anon_sym_GT, + STATE(5339), 1, + aux_sym_implements_clause_repeat1, + [220396] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(5998), 5, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [220410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - ACTIONS(8291), 1, - sym_identifier, - STATE(4597), 1, + ACTIONS(8234), 1, + anon_sym_QMARK, + STATE(4059), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5563), 1, + STATE(4689), 1, sym__call_signature, - [220934] = 7, + STATE(5618), 1, + sym_type_parameters, + [220432] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - ACTIONS(7794), 1, + ACTIONS(7860), 1, sym_identifier, - STATE(1056), 1, + STATE(1047), 1, + sym_nested_identifier, + STATE(1066), 1, sym_string, - STATE(1103), 1, + STATE(1153), 1, sym__module, - STATE(5102), 1, - sym_nested_identifier, - [220956] = 4, + [220454] = 4, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, + STATE(4515), 1, aux_sym_object_type_repeat1, - ACTIONS(4869), 2, + ACTIONS(4837), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8293), 3, + ACTIONS(8236), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [220972] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1762), 1, - anon_sym_DQUOTE, - ACTIONS(1764), 1, - anon_sym_SQUOTE, - ACTIONS(7794), 1, - sym_identifier, - STATE(1056), 1, - sym_string, - STATE(1111), 1, - sym__module, - STATE(5102), 1, - sym_nested_identifier, - [220994] = 7, + [220470] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8295), 1, + ACTIONS(8238), 1, sym_identifier, - ACTIONS(8297), 1, + ACTIONS(8240), 1, anon_sym_GT, - ACTIONS(8299), 1, + ACTIONS(8242), 1, sym_jsx_identifier, - STATE(3956), 1, + STATE(3978), 1, sym_nested_identifier, - STATE(4110), 1, + STATE(4146), 1, sym_jsx_namespace_name, - STATE(5186), 1, + STATE(5323), 1, sym_type_parameter, - [221016] = 5, + [220492] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_AMP, ACTIONS(7978), 1, - anon_sym_PIPE, - ACTIONS(7980), 1, - anon_sym_extends, - ACTIONS(5798), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - [221034] = 7, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8246), 1, + anon_sym_BQUOTE, + ACTIONS(8244), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4510), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [220510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - ACTIONS(7816), 1, - sym_identifier, - STATE(4205), 1, - sym_nested_identifier, - STATE(4379), 1, - sym_string, - STATE(4785), 1, - sym__module, - [221056] = 4, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8248), 1, + anon_sym_BQUOTE, + ACTIONS(8011), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4578), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [220528] = 4, ACTIONS(3), 1, sym_comment, - STATE(4421), 1, + STATE(4553), 1, aux_sym_object_type_repeat1, - ACTIONS(8303), 2, + ACTIONS(8252), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8301), 3, + ACTIONS(8250), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [221072] = 3, + [220544] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, + ACTIONS(7764), 1, anon_sym_AMP, - ACTIONS(5781), 5, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7766), 1, anon_sym_PIPE, + ACTIONS(7768), 1, anon_sym_extends, - [221086] = 6, + ACTIONS(8254), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [220562] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7882), 1, + ACTIONS(7952), 1, anon_sym_AMP, - ACTIONS(7884), 1, + ACTIONS(7954), 1, anon_sym_PIPE, - ACTIONS(7886), 1, + ACTIONS(7956), 1, anon_sym_extends, - ACTIONS(8307), 1, - anon_sym_QMARK, - ACTIONS(8305), 2, + ACTIONS(8256), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [221106] = 4, + ACTIONS(8258), 1, + anon_sym_GT, + STATE(5348), 1, + aux_sym_implements_clause_repeat1, + [220584] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8260), 1, + sym_identifier, + ACTIONS(8262), 1, + anon_sym_GT, + ACTIONS(8264), 1, + sym_jsx_identifier, + STATE(3971), 1, + sym_nested_identifier, + STATE(4162), 1, + sym_jsx_namespace_name, + STATE(5323), 1, + sym_type_parameter, + [220606] = 4, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, + STATE(4515), 1, aux_sym_object_type_repeat1, - ACTIONS(4839), 2, + ACTIONS(4857), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8309), 3, + ACTIONS(8266), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [221122] = 4, + [220622] = 4, ACTIONS(3), 1, sym_comment, - STATE(4585), 1, + STATE(4498), 1, aux_sym_object_type_repeat1, - ACTIONS(8314), 2, + ACTIONS(4837), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8311), 3, + ACTIONS(8236), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [221138] = 4, + [220638] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(8268), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4769), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [220660] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(8270), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(4853), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [220682] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7954), 1, + anon_sym_PIPE, + ACTIONS(7956), 1, + anon_sym_extends, + ACTIONS(8272), 1, + anon_sym_COMMA, + ACTIONS(8274), 1, + anon_sym_GT, + STATE(5184), 1, + aux_sym_implements_clause_repeat1, + [220704] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8027), 1, + sym_identifier, + ACTIONS(8276), 1, + anon_sym_COMMA, + ACTIONS(8278), 1, + anon_sym_RBRACE, + STATE(5117), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [220724] = 4, ACTIONS(3), 1, sym_comment, - STATE(4576), 1, + STATE(4515), 1, aux_sym_object_type_repeat1, - ACTIONS(4839), 2, + ACTIONS(4869), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(8309), 3, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [221154] = 3, + [220740] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(8316), 2, - anon_sym_SLASH, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(8318), 3, - anon_sym_LBRACE, + ACTIONS(7982), 1, anon_sym_GT, + ACTIONS(7986), 1, sym_jsx_identifier, - [221167] = 6, + ACTIONS(8282), 1, + anon_sym_SLASH, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [220762] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7964), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7966), 1, + anon_sym_QMARK_COLON, + STATE(4687), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [220780] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + ACTIONS(8284), 1, + anon_sym_QMARK, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5540), 1, + STATE(5619), 1, + sym__call_signature, + [220802] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(8286), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(5353), 1, sym__call_signature, - [221186] = 2, + STATE(5618), 1, + sym_type_parameters, + [220824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8320), 5, + STATE(4561), 1, + aux_sym_object_type_repeat1, + ACTIONS(4869), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8280), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221197] = 4, + [220840] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5147), 1, - sym__initializer, - ACTIONS(8322), 3, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8043), 1, + anon_sym_class, + ACTIONS(8045), 1, + anon_sym_abstract, + ACTIONS(8288), 1, + anon_sym_export, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [220862] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2213), 1, + anon_sym_DOT, + ACTIONS(5309), 1, + anon_sym_LBRACE, + ACTIONS(5311), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [220878] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7978), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8292), 1, + anon_sym_BQUOTE, + ACTIONS(8290), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4509), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [220896] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7810), 1, + anon_sym_AMP, + ACTIONS(7812), 1, + anon_sym_PIPE, + ACTIONS(7814), 1, + anon_sym_extends, + ACTIONS(8296), 1, + anon_sym_QMARK, + ACTIONS(8294), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [220916] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + ACTIONS(8298), 1, + anon_sym_QMARK, + STATE(4059), 1, + sym_formal_parameters, + STATE(5128), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [220938] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8303), 1, + anon_sym_BQUOTE, + ACTIONS(8305), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(8300), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4578), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [220956] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(8021), 1, + anon_sym_PIPE, + ACTIONS(8035), 1, + anon_sym_extends, + ACTIONS(5938), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, + [220974] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7661), 1, + anon_sym_is, + ACTIONS(4887), 5, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [220988] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4567), 1, + aux_sym_object_type_repeat1, + ACTIONS(8310), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(8308), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [221212] = 6, + [221004] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + ACTIONS(8312), 1, + sym_identifier, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5434), 1, + STATE(5572), 1, sym__call_signature, - [221231] = 6, + [221026] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(8324), 1, + ACTIONS(7836), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [221038] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7964), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7966), 1, + anon_sym_QMARK_COLON, + STATE(4885), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [221056] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7954), 1, + anon_sym_PIPE, + ACTIONS(7956), 1, + anon_sym_extends, + ACTIONS(8314), 1, + anon_sym_COMMA, + ACTIONS(8316), 1, + anon_sym_GT, + STATE(5322), 1, + aux_sym_implements_clause_repeat1, + [221078] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6065), 1, + anon_sym_COMMA, + ACTIONS(6984), 1, anon_sym_LPAREN, - STATE(4254), 1, - sym_formal_parameters, - STATE(4616), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - [221250] = 2, + STATE(4889), 1, + sym_arguments, + STATE(4918), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6055), 2, + anon_sym_LBRACE, + anon_sym_implements, + [221098] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7702), 5, - anon_sym_EQ, + ACTIONS(7251), 1, + anon_sym_LT, + STATE(3889), 1, + sym_type_arguments, + ACTIONS(8218), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_LPAREN, + anon_sym_implements, + [221114] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7964), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7966), 1, + anon_sym_QMARK_COLON, + STATE(4884), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [221132] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7348), 1, + anon_sym_COLON, + ACTIONS(7964), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7966), 1, + anon_sym_QMARK_COLON, + STATE(4879), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [221150] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7840), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_QMARK, - [221261] = 2, + [221161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 5, + ACTIONS(7828), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221272] = 3, + [221172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8326), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(8328), 3, + ACTIONS(8318), 5, + anon_sym_EQ, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [221285] = 3, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [221183] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5044), 3, + ACTIONS(7848), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [221298] = 4, + anon_sym_SEMI, + anon_sym_COLON, + [221194] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7511), 1, + ACTIONS(7872), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [221205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7497), 1, anon_sym_LBRACE, - ACTIONS(8330), 1, + ACTIONS(8320), 1, anon_sym_COLON, - STATE(5435), 3, + STATE(5691), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [221313] = 6, + [221220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(8324), 1, - anon_sym_LPAREN, - STATE(4254), 1, - sym_formal_parameters, - STATE(4859), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - [221332] = 2, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3770), 1, + sym_statement_block, + ACTIONS(7940), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [221235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 5, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5158), 1, + sym__initializer, + ACTIONS(8324), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221343] = 6, + [221250] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(8332), 1, + ACTIONS(8326), 1, anon_sym_class, - ACTIONS(8334), 1, + ACTIONS(8328), 1, anon_sym_abstract, - STATE(3828), 1, + STATE(3830), 1, aux_sym_export_statement_repeat1, STATE(3864), 1, sym_decorator, - [221362] = 6, + [221269] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3440), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [221280] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(8330), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4207), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5642), 1, + STATE(4878), 1, sym__call_signature, - [221381] = 2, + STATE(5525), 1, + sym_type_parameters, + [221299] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3396), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [221310] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3358), 5, + ACTIONS(3400), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221392] = 6, + [221321] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8332), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + anon_sym_PIPE, + ACTIONS(6059), 3, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + [221336] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5446), 1, + STATE(5559), 1, sym__call_signature, - [221411] = 3, + [221355] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8332), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + anon_sym_PIPE, + ACTIONS(8336), 1, + anon_sym_extends, + ACTIONS(5271), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + [221372] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(8338), 1, + anon_sym_SEMI, + ACTIONS(8340), 1, + sym__automatic_semicolon, + ACTIONS(8342), 1, + sym__function_signature_automatic_semicolon, + STATE(171), 1, + sym_statement_block, + [221391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 2, + ACTIONS(8344), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(5032), 3, + ACTIONS(8346), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [221424] = 2, + [221404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3466), 5, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5173), 1, + sym__initializer, + ACTIONS(8348), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221435] = 4, + [221419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5239), 1, - sym__initializer, - ACTIONS(8336), 3, + ACTIONS(8332), 1, + anon_sym_AMP, + ACTIONS(5998), 4, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_PIPE, + anon_sym_extends, + [221432] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3775), 1, + sym_statement_block, + ACTIONS(7944), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [221450] = 2, + [221447] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 5, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3771), 1, + sym_statement_block, + ACTIONS(7944), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221461] = 2, + [221462] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8352), 1, + anon_sym_EQ_GT, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [221477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3230), 5, + ACTIONS(8355), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221472] = 4, + [221488] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8332), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + anon_sym_PIPE, + ACTIONS(8336), 1, + anon_sym_extends, + ACTIONS(5307), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + [221505] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8357), 5, + anon_sym_EQ, anon_sym_LBRACE, - STATE(3768), 1, - sym_statement_block, - ACTIONS(7946), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [221487] = 5, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [221516] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, + ACTIONS(7782), 1, anon_sym_AMP, - ACTIONS(7978), 1, + ACTIONS(7784), 1, anon_sym_PIPE, - ACTIONS(7980), 1, + ACTIONS(7786), 1, anon_sym_extends, - ACTIONS(8340), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [221504] = 2, + ACTIONS(8359), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [221533] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3226), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221515] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4683), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [221552] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221526] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5465), 1, + sym__call_signature, + [221571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3438), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221537] = 2, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8361), 1, + anon_sym_EQ_GT, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [221586] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8364), 1, + anon_sym_EQ_GT, + STATE(5593), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [221601] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 5, + ACTIONS(3260), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221548] = 2, + [221612] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2279), 5, - sym__automatic_semicolon, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5491), 1, + sym__call_signature, + [221631] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7782), 1, + anon_sym_AMP, + ACTIONS(7784), 1, + anon_sym_PIPE, + ACTIONS(7786), 1, + anon_sym_extends, + ACTIONS(8367), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221559] = 6, + [221648] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1918), 1, anon_sym_LBRACE, - ACTIONS(8342), 1, - anon_sym_SEMI, - ACTIONS(8344), 1, - sym__automatic_semicolon, - ACTIONS(8346), 1, - sym__function_signature_automatic_semicolon, - STATE(178), 1, - sym_statement_block, - [221578] = 2, + ACTIONS(7896), 1, + anon_sym_extends, + STATE(1135), 1, + sym_object_type, + STATE(5203), 1, + sym_extends_clause, + [221667] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221589] = 4, + ACTIONS(8369), 1, + anon_sym_AMP, + ACTIONS(8371), 1, + anon_sym_PIPE, + ACTIONS(8373), 1, + anon_sym_extends, + ACTIONS(5307), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [221684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7485), 1, + ACTIONS(8369), 1, + anon_sym_AMP, + ACTIONS(5998), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [221697] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6984), 1, + anon_sym_LPAREN, + STATE(4889), 1, + sym_arguments, + ACTIONS(6134), 3, anon_sym_LBRACE, - ACTIONS(8330), 1, + anon_sym_COMMA, + anon_sym_implements, + [221712] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8350), 1, anon_sym_COLON, - STATE(5595), 3, + ACTIONS(8375), 1, + anon_sym_EQ_GT, + STATE(5593), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [221604] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8022), 1, - anon_sym_class, - ACTIONS(8024), 1, - anon_sym_abstract, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [221623] = 6, + [221727] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(8324), 1, - anon_sym_LPAREN, - STATE(4254), 1, - sym_formal_parameters, - STATE(4882), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - [221642] = 2, + ACTIONS(8369), 1, + anon_sym_AMP, + ACTIONS(8371), 1, + anon_sym_PIPE, + ACTIONS(8373), 1, + anon_sym_extends, + ACTIONS(5271), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [221744] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221653] = 6, + ACTIONS(8369), 1, + anon_sym_AMP, + ACTIONS(8371), 1, + anon_sym_PIPE, + ACTIONS(6059), 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + [221759] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - ACTIONS(8348), 1, + ACTIONS(8378), 1, anon_sym_SEMI, - ACTIONS(8350), 1, + ACTIONS(8380), 1, sym__automatic_semicolon, - ACTIONS(8352), 1, + ACTIONS(8382), 1, sym__function_signature_automatic_semicolon, - STATE(194), 1, + STATE(3117), 1, sym_statement_block, - [221672] = 2, + [221778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3202), 5, + ACTIONS(3256), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221683] = 2, + [221789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3182), 5, - sym__automatic_semicolon, + ACTIONS(8384), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221694] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5695), 1, - sym__call_signature, - [221713] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [221800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221724] = 4, + ACTIONS(8386), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(8388), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [221813] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8350), 1, anon_sym_COLON, - ACTIONS(8356), 1, + ACTIONS(8390), 1, anon_sym_EQ_GT, - STATE(5435), 3, + STATE(5593), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [221739] = 6, + [221828] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7844), 1, + ACTIONS(8332), 1, + anon_sym_AMP, + ACTIONS(8334), 1, + anon_sym_PIPE, + ACTIONS(8336), 1, + anon_sym_extends, + ACTIONS(5938), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + [221845] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8384), 5, anon_sym_EQ, - ACTIONS(8359), 1, anon_sym_COMMA, - ACTIONS(8361), 1, - anon_sym_RBRACE, - STATE(5369), 1, - aux_sym_enum_body_repeat1, - STATE(5637), 1, - sym__initializer, - [221758] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [221856] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(8350), 1, anon_sym_COLON, - [221769] = 6, + ACTIONS(8393), 1, + anon_sym_EQ_GT, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [221871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5411), 1, - sym__call_signature, - STATE(5414), 1, - sym_type_parameters, - [221788] = 2, + ACTIONS(7615), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [221882] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 5, + ACTIONS(3512), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221799] = 2, + [221893] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 5, + ACTIONS(3200), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221810] = 2, + [221904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3218), 5, + ACTIONS(3188), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221821] = 2, + [221915] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 5, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5131), 1, + sym__initializer, + ACTIONS(8396), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221832] = 2, + [221930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3522), 5, + ACTIONS(3404), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221843] = 4, + [221941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8363), 1, - anon_sym_EQ_GT, - STATE(5435), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [221858] = 2, + ACTIONS(8398), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(8400), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [221954] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8402), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(8404), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [221967] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 5, + ACTIONS(3180), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221869] = 6, + [221978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - ACTIONS(8366), 1, + ACTIONS(8406), 1, anon_sym_SEMI, - ACTIONS(8368), 1, + ACTIONS(8408), 1, sym__automatic_semicolon, - ACTIONS(8370), 1, + ACTIONS(8410), 1, sym__function_signature_automatic_semicolon, - STATE(3171), 1, + STATE(3187), 1, sym_statement_block, - [221888] = 2, + [221997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7876), 5, + ACTIONS(3408), 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, + [222008] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4722), 1, anon_sym_COLON, - [221899] = 2, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6788), 1, + anon_sym_COMMA, + ACTIONS(8412), 1, + anon_sym_RBRACE, + STATE(5316), 1, + aux_sym_object_pattern_repeat1, + [222027] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3412), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8372), 5, + ACTIONS(3412), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221910] = 2, + [222049] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5671), 1, + sym__call_signature, + [222068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7910), 5, + ACTIONS(3416), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221921] = 2, + [222079] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8314), 5, + ACTIONS(3420), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221932] = 4, + [222090] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8414), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(8374), 1, - anon_sym_EQ_GT, - STATE(5595), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [221947] = 6, + anon_sym_QMARK, + [222101] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2233), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222112] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5412), 1, - sym__call_signature, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - [221966] = 2, + STATE(5560), 1, + sym__call_signature, + [222131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8377), 5, + ACTIONS(3412), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [221977] = 2, + [222142] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8027), 1, + sym_identifier, + ACTIONS(8416), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [221988] = 5, + STATE(5520), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [222159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_extends, - ACTIONS(5040), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [222005] = 3, + ACTIONS(5352), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5354), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222172] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(5781), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [222018] = 4, + ACTIONS(8220), 1, + anon_sym_LT, + ACTIONS(8418), 1, + anon_sym_LBRACE, + STATE(5342), 1, + sym_type_arguments, + ACTIONS(8420), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [222189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8414), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(8385), 1, - anon_sym_EQ_GT, - STATE(5595), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [222033] = 6, + anon_sym_QMARK, + [222200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8024), 1, - anon_sym_abstract, - ACTIONS(8388), 1, - anon_sym_class, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [222052] = 4, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5647), 1, + sym__call_signature, + [222219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 1, - anon_sym_COLON, - STATE(5660), 1, - sym_type_annotation, - ACTIONS(4693), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - [222067] = 4, + ACTIONS(5037), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(5039), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8390), 1, - anon_sym_EQ_GT, - STATE(5435), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [222082] = 6, + ACTIONS(4975), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4977), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222245] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4967), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4969), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222258] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4971), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4973), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222271] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(8324), 1, + ACTIONS(8330), 1, anon_sym_LPAREN, - STATE(4254), 1, + STATE(4207), 1, sym_formal_parameters, - STATE(4849), 1, + STATE(4793), 1, sym__call_signature, - STATE(5493), 1, + STATE(5525), 1, sym_type_parameters, - [222101] = 4, + [222290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8393), 1, - anon_sym_EQ_GT, - STATE(5595), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [222116] = 5, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5517), 1, + sym__call_signature, + [222309] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7750), 1, + anon_sym_LBRACE, + ACTIONS(8338), 1, + anon_sym_SEMI, + ACTIONS(8340), 1, + sym__automatic_semicolon, + ACTIONS(8342), 1, + sym__function_signature_automatic_semicolon, + STATE(1056), 1, + sym_statement_block, + [222328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(8019), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(8021), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(8035), 1, anon_sym_extends, - ACTIONS(5150), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [222133] = 2, + ACTIONS(8422), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [222345] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2052), 5, + ACTIONS(3412), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222144] = 4, + [222356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE, - ACTIONS(5895), 3, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - [222159] = 6, + ACTIONS(4967), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4969), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222369] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5684), 1, + STATE(5501), 1, sym__call_signature, - [222178] = 6, + [222388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1918), 1, + ACTIONS(4967), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4969), 3, anon_sym_LBRACE, - ACTIONS(7822), 1, - anon_sym_extends, - STATE(1206), 1, - sym_object_type, - STATE(5307), 1, - sym_extends_clause, - [222197] = 6, + anon_sym_GT, + sym_jsx_identifier, + [222401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7950), 1, + ACTIONS(4967), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(7952), 1, + ACTIONS(4969), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(7956), 1, sym_jsx_identifier, - STATE(3953), 1, - sym_nested_identifier, - STATE(4096), 1, - sym_jsx_namespace_name, - [222216] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7511), 1, - anon_sym_EQ_GT, - ACTIONS(8354), 1, - anon_sym_COLON, - STATE(5435), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [222231] = 2, + [222414] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 5, + ACTIONS(3412), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222242] = 2, + [222425] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8396), 5, - anon_sym_EQ, + ACTIONS(7912), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [222253] = 2, + anon_sym_SEMI, + anon_sym_COLON, + [222436] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7852), 5, + ACTIONS(3452), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222264] = 2, + [222447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7856), 5, + ACTIONS(3456), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222275] = 6, + [222458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5647), 1, - sym__call_signature, - [222294] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4732), 1, - anon_sym_COLON, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(8398), 1, - anon_sym_RBRACE, - STATE(5163), 1, - aux_sym_object_pattern_repeat1, - [222313] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8400), 1, - anon_sym_EQ_GT, - STATE(5435), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [222328] = 2, + ACTIONS(4945), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4947), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 5, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3792), 1, + sym_statement_block, + ACTIONS(7828), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [222339] = 2, + [222486] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3310), 5, + ACTIONS(3460), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222350] = 5, + [222497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8403), 1, - anon_sym_RBRACE, - STATE(5534), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [222367] = 5, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(5805), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + [222514] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(5799), 4, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(7814), 1, anon_sym_extends, - ACTIONS(7707), 2, - anon_sym_LBRACE, - anon_sym_RPAREN, - [222384] = 6, + [222527] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8430), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222538] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5609), 1, + STATE(4896), 1, sym__call_signature, - [222403] = 6, + STATE(5618), 1, + sym_type_parameters, + [222557] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, + ACTIONS(8322), 1, anon_sym_LBRACE, - ACTIONS(8342), 1, + STATE(3779), 1, + sym_statement_block, + ACTIONS(7754), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(8344), 1, + [222572] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4937), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4939), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222585] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7904), 5, sym__automatic_semicolon, - ACTIONS(8346), 1, sym__function_signature_automatic_semicolon, - STATE(1070), 1, - sym_statement_block, - [222422] = 6, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_COLON, + [222596] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(8324), 1, - anon_sym_LPAREN, - STATE(4254), 1, - sym_formal_parameters, - STATE(4831), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - [222441] = 6, + ACTIONS(3384), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - STATE(4063), 1, - sym_formal_parameters, - STATE(4664), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [222460] = 4, + ACTIONS(3412), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222618] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(3384), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222629] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8322), 1, anon_sym_LBRACE, - STATE(3792), 1, + STATE(3769), 1, sym_statement_block, - ACTIONS(7874), 3, + ACTIONS(7754), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222475] = 6, + [222644] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5630), 1, - sym__call_signature, - [222494] = 6, + ACTIONS(2051), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222655] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5629), 1, + STATE(4699), 1, sym__call_signature, - [222513] = 6, + STATE(5618), 1, + sym_type_parameters, + [222674] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8024), 1, - anon_sym_abstract, - ACTIONS(8225), 1, - anon_sym_class, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [222532] = 2, + ACTIONS(2051), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222685] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7866), 5, + ACTIONS(7788), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222543] = 5, + [222696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, - anon_sym_AMP, - ACTIONS(8407), 1, - anon_sym_PIPE, - ACTIONS(8409), 1, - anon_sym_extends, - ACTIONS(5040), 2, - anon_sym_LBRACK, - anon_sym_EQ_GT, - [222560] = 3, + ACTIONS(4929), 2, + anon_sym_SLASH, + sym_identifier, + ACTIONS(4931), 3, + anon_sym_LBRACE, + anon_sym_GT, + sym_jsx_identifier, + [222709] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, - anon_sym_AMP, - ACTIONS(5781), 4, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_extends, - [222573] = 6, + ACTIONS(7794), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5599), 1, - sym__call_signature, - [222592] = 5, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3781), 1, + sym_statement_block, + ACTIONS(7798), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222735] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_extends, - ACTIONS(5958), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [222609] = 3, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5370), 1, + sym__initializer, + ACTIONS(8432), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 2, + ACTIONS(5138), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(5134), 3, + ACTIONS(5140), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [222622] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(5962), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [222635] = 2, + [222763] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3322), 5, + ACTIONS(7796), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222646] = 5, + [222774] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(7994), 1, - anon_sym_PIPE, - ACTIONS(7996), 1, - anon_sym_extends, - ACTIONS(8411), 2, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3777), 1, + sym_statement_block, + ACTIONS(7788), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [222663] = 4, + anon_sym_SEMI, + [222789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3793), 1, - sym_statement_block, - ACTIONS(7852), 3, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5367), 1, + sym__initializer, + ACTIONS(8434), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222678] = 2, + [222804] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 5, + ACTIONS(2287), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222689] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8413), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [222700] = 2, + [222815] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8415), 5, + ACTIONS(2163), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222711] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - STATE(4063), 1, - sym_formal_parameters, - STATE(4902), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [222730] = 4, + [222826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8322), 1, anon_sym_LBRACE, - STATE(3787), 1, + STATE(3767), 1, sym_statement_block, - ACTIONS(7872), 3, + ACTIONS(7828), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222745] = 2, + [222841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 5, + ACTIONS(8436), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222756] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5592), 1, - sym__call_signature, - [222775] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(8419), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, - anon_sym_extends, - ACTIONS(5958), 2, - anon_sym_LBRACK, - anon_sym_QMARK, - [222792] = 3, + [222852] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(5962), 4, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_PIPE, - anon_sym_extends, - [222805] = 2, + ACTIONS(3384), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8423), 5, + ACTIONS(8438), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222816] = 6, + [222874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(8324), 1, - anon_sym_LPAREN, - STATE(4254), 1, - sym_formal_parameters, - STATE(4906), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - [222835] = 4, + ACTIONS(3356), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222885] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8425), 1, - anon_sym_EQ_GT, - STATE(5435), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [222850] = 2, + ACTIONS(2291), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [222896] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7824), 5, + ACTIONS(3348), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222861] = 3, + [222907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5134), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [222874] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(5364), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [222926] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4280), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [222945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 5, + ACTIONS(3340), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222885] = 2, + [222956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 5, + ACTIONS(3336), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222896] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8428), 1, - anon_sym_EQ_GT, - STATE(5595), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [222911] = 6, + [222967] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4858), 1, + STATE(4284), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - [222930] = 3, + [222986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6617), 1, + ACTIONS(8440), 5, sym__automatic_semicolon, - ACTIONS(2010), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222943] = 5, + [222997] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE, - ACTIONS(7980), 1, - anon_sym_extends, - ACTIONS(8431), 2, + ACTIONS(7798), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [222960] = 5, + anon_sym_PIPE_RBRACE, + [223008] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, - anon_sym_AMP, - ACTIONS(8407), 1, - anon_sym_PIPE, - ACTIONS(8409), 1, - anon_sym_extends, - ACTIONS(5150), 2, - anon_sym_LBRACK, - anon_sym_EQ_GT, - [222977] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4287), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [223027] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 5, + ACTIONS(7800), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [222988] = 3, + [223038] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8433), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(8435), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [223001] = 4, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4705), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [223057] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, - anon_sym_AMP, - ACTIONS(8407), 1, - anon_sym_PIPE, - ACTIONS(5895), 3, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_extends, - [223016] = 6, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4294), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [223076] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(8330), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4207), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5588), 1, + STATE(4648), 1, sym__call_signature, - [223035] = 6, + STATE(5525), 1, + sym_type_parameters, + [223095] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8437), 1, + ACTIONS(2107), 2, + anon_sym_SLASH, sym_identifier, - ACTIONS(8439), 1, + ACTIONS(2105), 3, + anon_sym_LBRACE, anon_sym_GT, - ACTIONS(8441), 1, sym_jsx_identifier, - STATE(3960), 1, - sym_nested_identifier, - STATE(4157), 1, - sym_jsx_namespace_name, - [223054] = 2, + [223108] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 5, + ACTIONS(7798), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223065] = 6, + [223119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(8324), 1, - anon_sym_LPAREN, - STATE(4254), 1, - sym_formal_parameters, - STATE(4793), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - [223084] = 4, + ACTIONS(6518), 1, + sym__automatic_semicolon, + ACTIONS(2113), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [223132] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5329), 1, - sym__initializer, - ACTIONS(8443), 3, + ACTIONS(8027), 1, + sym_identifier, + ACTIONS(8442), 1, + anon_sym_RBRACE, + STATE(5451), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [223149] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(8021), 1, + anon_sym_PIPE, + ACTIONS(8035), 1, + anon_sym_extends, + ACTIONS(8444), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [223099] = 4, + [223166] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8322), 1, anon_sym_LBRACE, - STATE(3781), 1, + STATE(3787), 1, sym_statement_block, - ACTIONS(7874), 3, + ACTIONS(7794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223114] = 4, + [223181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8350), 1, anon_sym_COLON, - ACTIONS(8445), 1, + ACTIONS(8446), 1, anon_sym_EQ_GT, - STATE(5435), 3, + STATE(5593), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [223129] = 2, + [223196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8448), 5, + ACTIONS(6494), 1, sym__automatic_semicolon, + ACTIONS(2295), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223140] = 3, + [223209] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5134), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [223153] = 2, + ACTIONS(7497), 1, + anon_sym_EQ_GT, + ACTIONS(8350), 1, + anon_sym_COLON, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [223224] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3506), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223164] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4706), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [223243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2116), 5, + ACTIONS(6435), 1, sym__automatic_semicolon, + ACTIONS(2221), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223175] = 6, + [223256] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5567), 1, + STATE(5458), 1, sym__call_signature, - [223194] = 6, + [223275] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5116), 1, - sym__call_signature, - STATE(5492), 1, + STATE(5424), 1, sym_type_parameters, - [223213] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2126), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223224] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5140), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5142), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [223237] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2213), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223248] = 6, + STATE(5429), 1, + sym__call_signature, + [223294] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(4354), 1, + STATE(4314), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - [223267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8450), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223278] = 3, + [223313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 2, + ACTIONS(2026), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(5134), 3, + ACTIONS(2024), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [223291] = 2, + [223326] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3526), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223302] = 6, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5462), 1, + sym__call_signature, + [223345] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(8334), 1, + ACTIONS(8328), 1, anon_sym_abstract, - ACTIONS(8452), 1, + ACTIONS(8449), 1, anon_sym_class, - STATE(3828), 1, + STATE(3830), 1, aux_sym_export_statement_repeat1, STATE(3864), 1, sym_decorator, - [223321] = 2, + [223364] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223332] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5649), 1, + sym__call_signature, + [223383] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223343] = 6, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(8330), 1, + anon_sym_LPAREN, + STATE(4207), 1, + sym_formal_parameters, + STATE(4671), 1, + sym__call_signature, + STATE(5525), 1, + sym_type_parameters, + [223402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5420), 1, + STATE(5543), 1, sym__call_signature, - [223362] = 4, + [223421] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8451), 1, + sym_identifier, + ACTIONS(8453), 1, + anon_sym_GT, + ACTIONS(8455), 1, + sym_jsx_identifier, + STATE(3949), 1, + sym_nested_identifier, + STATE(4081), 1, + sym_jsx_namespace_name, + [223440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8350), 1, anon_sym_COLON, - ACTIONS(8454), 1, + ACTIONS(8457), 1, anon_sym_EQ_GT, - STATE(5595), 3, + STATE(5593), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [223377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6551), 1, - sym__automatic_semicolon, - ACTIONS(2138), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223390] = 3, + [223455] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6549), 1, - sym__automatic_semicolon, - ACTIONS(2180), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223403] = 2, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8460), 1, + anon_sym_EQ_GT, + STATE(5593), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [223470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223414] = 5, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8463), 1, + anon_sym_EQ_GT, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [223485] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, + ACTIONS(8027), 1, sym_identifier, - ACTIONS(8457), 1, + ACTIONS(8466), 1, anon_sym_RBRACE, - STATE(5571), 1, + STATE(5451), 1, sym__import_export_specifier, - ACTIONS(8122), 2, + ACTIONS(8029), 2, anon_sym_type, anon_sym_typeof, - [223431] = 3, + [223502] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5682), 1, + sym__call_signature, + [223521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 2, + ACTIONS(8468), 2, anon_sym_SLASH, sym_identifier, - ACTIONS(5146), 3, + ACTIONS(8470), 3, anon_sym_LBRACE, anon_sym_GT, sym_jsx_identifier, - [223444] = 6, + [223534] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - STATE(4063), 1, - sym_formal_parameters, - STATE(4341), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [223463] = 2, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7954), 1, + anon_sym_PIPE, + ACTIONS(7956), 1, + anon_sym_extends, + ACTIONS(8367), 2, + anon_sym_COMMA, + anon_sym_GT, + [223551] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7870), 5, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5175), 1, + sym__initializer, + ACTIONS(8472), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [223474] = 2, + [223566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3534), 5, + ACTIONS(7400), 1, + anon_sym_is, + ACTIONS(7836), 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, - [223485] = 2, + [223579] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(5938), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + [223596] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4888), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [223615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3486), 5, + ACTIONS(3280), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223496] = 4, + [223626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3766), 1, - sym_statement_block, - ACTIONS(7878), 3, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(8021), 1, + anon_sym_PIPE, + ACTIONS(8035), 1, + anon_sym_extends, + ACTIONS(8474), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [223511] = 4, + [223643] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5157), 1, - sym__initializer, - ACTIONS(8459), 3, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5416), 1, + sym__call_signature, + STATE(5424), 1, + sym_type_parameters, + [223662] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3192), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [223526] = 2, + anon_sym_PIPE_RBRACE, + [223673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 5, + ACTIONS(6503), 1, sym__automatic_semicolon, + ACTIONS(2073), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223537] = 4, + [223686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5275), 1, - sym__initializer, - ACTIONS(8461), 3, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(7750), 1, + anon_sym_LBRACE, + ACTIONS(8378), 1, anon_sym_SEMI, - [223552] = 2, + ACTIONS(8380), 1, + sym__automatic_semicolon, + ACTIONS(8382), 1, + sym__function_signature_automatic_semicolon, + STATE(4739), 1, + sym_statement_block, + [223705] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [223563] = 6, + ACTIONS(8027), 1, + sym_identifier, + ACTIONS(8476), 1, + anon_sym_RBRACE, + STATE(5520), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [223722] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(8330), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4207), 1, sym_formal_parameters, - STATE(4681), 1, + STATE(4631), 1, sym__call_signature, - STATE(5492), 1, + STATE(5525), 1, sym_type_parameters, - [223582] = 2, + [223741] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8465), 5, + ACTIONS(7944), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223593] = 2, + [223752] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3478), 5, + ACTIONS(8478), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223604] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3797), 1, - sym_statement_block, - ACTIONS(7880), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [223619] = 6, + [223763] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(8324), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4254), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(4638), 1, - sym__call_signature, - STATE(5493), 1, + STATE(5424), 1, sym_type_parameters, - [223638] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8463), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [223649] = 2, + STATE(5481), 1, + sym__call_signature, + [223782] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3470), 5, + ACTIONS(3208), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223660] = 6, + [223793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5486), 1, + STATE(5695), 1, sym__call_signature, - [223679] = 6, + [223812] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(8021), 1, + anon_sym_PIPE, + ACTIONS(8035), 1, + anon_sym_extends, + ACTIONS(8480), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [223829] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(4336), 1, - sym__call_signature, - STATE(5492), 1, + STATE(5424), 1, sym_type_parameters, - [223698] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8463), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [223709] = 4, + STATE(5696), 1, + sym__call_signature, + [223848] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8350), 1, anon_sym_COLON, - ACTIONS(8467), 1, + ACTIONS(8482), 1, anon_sym_EQ_GT, - STATE(5595), 3, + STATE(5691), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [223724] = 2, + [223863] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8463), 5, - anon_sym_EQ, + ACTIONS(3220), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [223735] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8470), 1, - anon_sym_EQ_GT, - STATE(5435), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [223750] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [223874] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8473), 5, - anon_sym_EQ, + ACTIONS(3272), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [223761] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [223885] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8475), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [223772] = 2, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(8330), 1, + anon_sym_LPAREN, + STATE(4207), 1, + sym_formal_parameters, + STATE(4766), 1, + sym__call_signature, + STATE(5525), 1, + sym_type_parameters, + [223904] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 5, + ACTIONS(3228), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223783] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8475), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [223794] = 5, + [223915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, + ACTIONS(7782), 1, anon_sym_AMP, - ACTIONS(7766), 1, - anon_sym_PIPE, ACTIONS(7784), 1, + anon_sym_PIPE, + ACTIONS(7786), 1, anon_sym_extends, - ACTIONS(7707), 2, + ACTIONS(7706), 2, anon_sym_COMMA, anon_sym_RBRACK, - [223811] = 4, + [223932] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5320), 1, - sym__initializer, - ACTIONS(8477), 3, + ACTIONS(3324), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [223826] = 6, + anon_sym_PIPE_RBRACE, + [223943] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5502), 1, + STATE(5479), 1, sym__call_signature, - [223845] = 6, + [223962] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5503), 1, + STATE(5478), 1, sym__call_signature, - [223864] = 3, + [223981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5074), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5076), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [223877] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7976), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7978), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7980), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8479), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [223894] = 6, + ACTIONS(7706), 2, + anon_sym_LBRACE, + anon_sym_RPAREN, + [223998] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - STATE(4063), 1, - sym_formal_parameters, - STATE(4848), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [223913] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8045), 1, + anon_sym_abstract, + ACTIONS(8059), 1, + anon_sym_class, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [224017] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(8419), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, - anon_sym_extends, - ACTIONS(5798), 2, - anon_sym_LBRACK, - anon_sym_QMARK, - [223930] = 2, + ACTIONS(8485), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [224028] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8045), 1, + anon_sym_abstract, + ACTIONS(8487), 1, + anon_sym_class, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [224047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3462), 5, + ACTIONS(2153), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223941] = 3, + [224058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, + ACTIONS(8332), 1, anon_sym_AMP, - ACTIONS(5962), 4, + ACTIONS(5799), 4, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_extends, - [223954] = 5, + [224071] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, + ACTIONS(8332), 1, anon_sym_AMP, - ACTIONS(8407), 1, + ACTIONS(8334), 1, anon_sym_PIPE, - ACTIONS(8409), 1, + ACTIONS(8336), 1, anon_sym_extends, - ACTIONS(5958), 2, + ACTIONS(5805), 2, anon_sym_LBRACK, anon_sym_EQ_GT, - [223971] = 2, + [224088] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7868), 5, + ACTIONS(2193), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [223982] = 6, + [224099] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7750), 1, + anon_sym_LBRACE, + ACTIONS(8489), 1, + anon_sym_SEMI, + ACTIONS(8491), 1, + sym__automatic_semicolon, + ACTIONS(8493), 1, + sym__function_signature_automatic_semicolon, + STATE(1065), 1, + sym_statement_block, + [224118] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(4322), 1, + STATE(5407), 1, sym__call_signature, - STATE(5492), 1, + STATE(5424), 1, sym_type_parameters, - [224001] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3795), 1, - sym_statement_block, - ACTIONS(7856), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224016] = 2, + [224137] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2156), 5, + ACTIONS(3284), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224027] = 6, + [224148] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5543), 1, + STATE(5460), 1, sym__call_signature, - [224046] = 4, + [224167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8350), 1, anon_sym_COLON, - ACTIONS(8481), 1, + ACTIONS(8495), 1, anon_sym_EQ_GT, - STATE(5435), 3, + STATE(5691), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [224061] = 4, + [224182] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8350), 1, anon_sym_COLON, - ACTIONS(8484), 1, + ACTIONS(8498), 1, anon_sym_EQ_GT, - STATE(5595), 3, + STATE(5593), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [224076] = 2, + [224197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 5, + ACTIONS(3288), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224087] = 6, + [224208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - STATE(4063), 1, - sym_formal_parameters, - STATE(4690), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [224106] = 6, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8501), 1, + anon_sym_EQ_GT, + STATE(5593), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [224223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5545), 1, + STATE(5454), 1, sym__call_signature, - [224125] = 5, + [224242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7992), 1, - anon_sym_AMP, - ACTIONS(7994), 1, - anon_sym_PIPE, - ACTIONS(7996), 1, - anon_sym_extends, - ACTIONS(8487), 2, + ACTIONS(3312), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [224142] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - ACTIONS(8489), 1, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(8491), 1, - sym__automatic_semicolon, - ACTIONS(8493), 1, - sym__function_signature_automatic_semicolon, - STATE(3072), 1, - sym_statement_block, - [224161] = 2, + anon_sym_PIPE_RBRACE, + [224253] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 5, + ACTIONS(3316), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224172] = 2, + [224264] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8504), 1, + anon_sym_EQ_GT, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [224279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 5, + ACTIONS(7838), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224183] = 4, + [224290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3772), 1, - sym_statement_block, - ACTIONS(7880), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224198] = 4, + ACTIONS(8027), 1, + sym_identifier, + ACTIONS(8507), 1, + anon_sym_RBRACE, + STATE(5520), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [224307] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, + ACTIONS(8350), 1, anon_sym_COLON, - ACTIONS(8495), 1, + ACTIONS(8509), 1, anon_sym_EQ_GT, - STATE(5595), 3, + STATE(5593), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [224213] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8498), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(8500), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [224226] = 6, + [224322] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(4677), 1, - sym__call_signature, - STATE(5492), 1, + STATE(5424), 1, sym_type_parameters, - [224245] = 2, + STATE(5686), 1, + sym__call_signature, + [224341] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8502), 5, + ACTIONS(3328), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224256] = 4, + [224352] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3789), 1, - sym_statement_block, - ACTIONS(7872), 3, + ACTIONS(7944), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [224271] = 5, + anon_sym_PIPE_RBRACE, + [224363] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6300), 1, - anon_sym_LBRACE, - ACTIONS(8046), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(5124), 1, - sym_type_arguments, - ACTIONS(6187), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [224288] = 4, + ACTIONS(8330), 1, + anon_sym_LPAREN, + STATE(4207), 1, + sym_formal_parameters, + STATE(4818), 1, + sym__call_signature, + STATE(5525), 1, + sym_type_parameters, + [224382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5198), 1, - sym__initializer, - ACTIONS(8504), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224303] = 2, + ACTIONS(7501), 1, + anon_sym_EQ_GT, + ACTIONS(8350), 1, + anon_sym_COLON, + STATE(5593), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [224397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 5, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8512), 1, + anon_sym_EQ_GT, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [224412] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8515), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224314] = 2, + [224423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 5, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3790), 1, + sym_statement_block, + ACTIONS(7796), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [224325] = 2, + [224438] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3234), 5, - sym__automatic_semicolon, + ACTIONS(7918), 1, + anon_sym_EQ, + ACTIONS(8517), 1, anon_sym_COMMA, + ACTIONS(8519), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [224336] = 4, + STATE(5148), 1, + aux_sym_enum_body_repeat1, + STATE(5401), 1, + sym__initializer, + [224457] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(5895), 3, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(8373), 1, anon_sym_extends, - [224351] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8506), 1, - anon_sym_RBRACE, - STATE(5571), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [224368] = 4, + ACTIONS(5938), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [224474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(3776), 1, + ACTIONS(8489), 1, + anon_sym_SEMI, + ACTIONS(8491), 1, + sym__automatic_semicolon, + ACTIONS(8493), 1, + sym__function_signature_automatic_semicolon, + STATE(3217), 1, sym_statement_block, - ACTIONS(7878), 3, + [224493] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8521), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [224504] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8160), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [224383] = 5, + anon_sym_PIPE_RBRACE, + [224515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(8419), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, - anon_sym_extends, - ACTIONS(5150), 2, - anon_sym_LBRACK, - anon_sym_QMARK, - [224400] = 2, + ACTIONS(3248), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [224526] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8508), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [224411] = 2, + ACTIONS(7940), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [224537] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8510), 5, + ACTIONS(8523), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224422] = 3, + [224548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(5781), 4, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(6059), 3, anon_sym_LBRACK, anon_sym_QMARK, - anon_sym_PIPE, anon_sym_extends, - [224435] = 5, + [224563] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(5040), 2, + ACTIONS(5271), 2, anon_sym_LBRACK, anon_sym_QMARK, - [224452] = 6, + [224580] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(4809), 1, - sym__call_signature, - STATE(5492), 1, + STATE(5424), 1, sym_type_parameters, - [224471] = 6, + STATE(5660), 1, + sym__call_signature, + [224599] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, - anon_sym_COLON, - ACTIONS(6358), 1, + ACTIONS(8525), 5, anon_sym_EQ, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(8512), 1, - anon_sym_RBRACE, - STATE(5365), 1, - aux_sym_object_pattern_repeat1, - [224490] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3778), 1, - sym_statement_block, - ACTIONS(7912), 3, - sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [224505] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [224610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - STATE(4063), 1, - sym_formal_parameters, - STATE(4330), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [224524] = 4, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(5998), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_extends, + [224623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3783), 1, - sym_statement_block, - ACTIONS(7866), 3, + ACTIONS(3480), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [224539] = 3, + anon_sym_PIPE_RBRACE, + [224634] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5265), 2, - anon_sym_SLASH, + ACTIONS(7980), 1, sym_identifier, - ACTIONS(5267), 3, - anon_sym_LBRACE, + ACTIONS(7982), 1, anon_sym_GT, + ACTIONS(7986), 1, sym_jsx_identifier, - [224552] = 5, + STATE(3950), 1, + sym_nested_identifier, + STATE(4191), 1, + sym_jsx_namespace_name, + [224653] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7978), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(7980), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8514), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [224569] = 6, + ACTIONS(5307), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + [224670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5559), 1, - sym__call_signature, - [224588] = 6, + ACTIONS(8525), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [224681] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5557), 1, - sym__call_signature, - [224607] = 2, + ACTIONS(8525), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [224692] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8516), 5, + ACTIONS(2183), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224618] = 2, + [224703] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 5, + ACTIONS(8525), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [224714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3240), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224629] = 2, + [224725] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 5, + ACTIONS(2203), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224640] = 4, + [224736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3788), 1, - sym_statement_block, - ACTIONS(7912), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224655] = 4, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(8330), 1, + anon_sym_LPAREN, + STATE(4207), 1, + sym_formal_parameters, + STATE(4847), 1, + sym__call_signature, + STATE(5525), 1, + sym_type_parameters, + [224755] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5154), 1, - sym__initializer, - ACTIONS(8518), 3, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8527), 1, + anon_sym_EQ_GT, + STATE(5593), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [224770] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(8021), 1, + anon_sym_PIPE, + ACTIONS(8035), 1, + anon_sym_extends, + ACTIONS(8530), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [224670] = 3, + [224787] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6343), 1, + ACTIONS(2036), 5, sym__automatic_semicolon, - ACTIONS(2263), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224683] = 2, + [224798] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8043), 1, + anon_sym_class, + ACTIONS(8045), 1, + anon_sym_abstract, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [224817] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3498), 5, + ACTIONS(3508), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224694] = 6, + [224828] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, - anon_sym_LBRACE, - ACTIONS(8366), 1, - anon_sym_SEMI, - ACTIONS(8368), 1, - sym__automatic_semicolon, - ACTIONS(8370), 1, - sym__function_signature_automatic_semicolon, - STATE(4741), 1, - sym_statement_block, - [224713] = 5, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8532), 1, + anon_sym_EQ_GT, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [224843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8520), 1, - anon_sym_RBRACE, - STATE(5534), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [224730] = 3, + ACTIONS(4266), 1, + anon_sym_COLON, + STATE(5395), 1, + sym_type_annotation, + ACTIONS(4691), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [224858] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5324), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5326), 3, + ACTIONS(7501), 1, anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [224743] = 2, + ACTIONS(8320), 1, + anon_sym_COLON, + STATE(5593), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [224873] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7830), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7750), 1, anon_sym_LBRACE, + ACTIONS(8406), 1, anon_sym_SEMI, - anon_sym_COLON, - [224754] = 4, + ACTIONS(8408), 1, + sym__automatic_semicolon, + ACTIONS(8410), 1, + sym__function_signature_automatic_semicolon, + STATE(4765), 1, + sym_statement_block, + [224892] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5170), 1, - sym__initializer, - ACTIONS(8522), 3, + ACTIONS(8535), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [224769] = 4, + anon_sym_PIPE_RBRACE, + [224903] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3780), 1, - sym_statement_block, - ACTIONS(7910), 3, + ACTIONS(8019), 1, + anon_sym_AMP, + ACTIONS(8021), 1, + anon_sym_PIPE, + ACTIONS(8035), 1, + anon_sym_extends, + ACTIONS(8537), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [224784] = 2, + [224920] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8524), 5, - anon_sym_EQ, + ACTIONS(7806), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [224795] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [224931] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8526), 5, + ACTIONS(8539), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224806] = 2, + [224942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7874), 5, + ACTIONS(7808), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224817] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5463), 1, - sym__call_signature, - [224836] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8528), 1, - anon_sym_EQ_GT, - STATE(5595), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [224851] = 2, + [224953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7872), 5, + ACTIONS(7806), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224862] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8531), 1, - anon_sym_EQ_GT, - STATE(5435), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [224877] = 6, + [224964] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(8330), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4207), 1, sym_formal_parameters, - STATE(4782), 1, + STATE(4869), 1, sym__call_signature, - STATE(5492), 1, + STATE(5525), 1, sym_type_parameters, - [224896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3426), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [224907] = 6, + [224983] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7844), 1, - anon_sym_EQ, - ACTIONS(8534), 1, + ACTIONS(7952), 1, + anon_sym_AMP, + ACTIONS(7954), 1, + anon_sym_PIPE, + ACTIONS(7956), 1, + anon_sym_extends, + ACTIONS(8541), 2, anon_sym_COMMA, - ACTIONS(8536), 1, - anon_sym_RBRACE, - STATE(5129), 1, - aux_sym_enum_body_repeat1, - STATE(5637), 1, - sym__initializer, - [224926] = 6, + anon_sym_GT, + [225000] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - STATE(4063), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(5297), 1, + STATE(4730), 1, sym__call_signature, - STATE(5492), 1, + STATE(5618), 1, sym_type_parameters, - [224945] = 2, + [225019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7874), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(8027), 1, + sym_identifier, + ACTIONS(8543), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [224956] = 6, + STATE(5520), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [225036] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - ACTIONS(8342), 1, - anon_sym_SEMI, - ACTIONS(8344), 1, - sym__automatic_semicolon, - ACTIONS(8346), 1, - sym__function_signature_automatic_semicolon, - STATE(3067), 1, - sym_statement_block, - [224975] = 2, + ACTIONS(7918), 1, + anon_sym_EQ, + ACTIONS(8545), 1, + anon_sym_COMMA, + ACTIONS(8547), 1, + anon_sym_RBRACE, + STATE(5191), 1, + aux_sym_enum_body_repeat1, + STATE(5401), 1, + sym__initializer, + [225055] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7946), 5, + ACTIONS(7808), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224986] = 2, + [225066] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8538), 5, + ACTIONS(3528), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [224997] = 2, + [225077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3502), 5, + ACTIONS(3528), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225008] = 2, + [225088] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8350), 1, + anon_sym_COLON, + ACTIONS(8549), 1, + anon_sym_EQ_GT, + STATE(5691), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [225103] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8552), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [225114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8540), 5, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3784), 1, + sym_statement_block, + ACTIONS(7798), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [225019] = 4, + [225129] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7308), 1, anon_sym_EQ, - STATE(5109), 1, + STATE(5139), 1, sym__initializer, - ACTIONS(8542), 3, + ACTIONS(8554), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225034] = 2, + [225144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3510), 5, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5274), 1, + sym__initializer, + ACTIONS(8556), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [225045] = 3, + [225159] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5101), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(5103), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [225058] = 5, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(8330), 1, + anon_sym_LPAREN, + STATE(4207), 1, + sym_formal_parameters, + STATE(4606), 1, + sym__call_signature, + STATE(5525), 1, + sym_type_parameters, + [225178] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8405), 1, - anon_sym_AMP, - ACTIONS(8407), 1, - anon_sym_PIPE, - ACTIONS(8409), 1, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2247), 1, + anon_sym_LBRACE, + ACTIONS(7896), 1, anon_sym_extends, - ACTIONS(5798), 2, - anon_sym_LBRACK, - anon_sym_EQ_GT, - [225075] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7878), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [225086] = 6, + STATE(4719), 1, + sym_object_type, + STATE(5153), 1, + sym_extends_clause, + [225197] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - ACTIONS(8348), 1, + ACTIONS(8338), 1, anon_sym_SEMI, - ACTIONS(8350), 1, + ACTIONS(8340), 1, sym__automatic_semicolon, - ACTIONS(8352), 1, + ACTIONS(8342), 1, sym__function_signature_automatic_semicolon, - STATE(3232), 1, + STATE(3066), 1, sym_statement_block, - [225105] = 2, + [225216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3514), 5, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3774), 1, + sym_statement_block, + ACTIONS(7800), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [225116] = 6, + [225231] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4059), 1, sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5650), 1, + STATE(4815), 1, sym__call_signature, - [225135] = 4, + STATE(5618), 1, + sym_type_parameters, + [225250] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_EQ, - STATE(5152), 1, - sym__initializer, - ACTIONS(8544), 3, + ACTIONS(8558), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [225150] = 4, + anon_sym_PIPE_RBRACE, + [225261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8322), 1, anon_sym_LBRACE, - STATE(3771), 1, + STATE(3765), 1, sym_statement_block, - ACTIONS(7868), 3, + ACTIONS(7872), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225165] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8546), 1, - anon_sym_EQ_GT, - STATE(5595), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [225180] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(8324), 1, - anon_sym_LPAREN, - STATE(4254), 1, - sym_formal_parameters, - STATE(4622), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - [225199] = 6, + [225276] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5685), 1, + STATE(5616), 1, sym__call_signature, - [225218] = 6, + [225295] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, - anon_sym_LBRACE, - ACTIONS(7822), 1, + ACTIONS(8369), 1, + anon_sym_AMP, + ACTIONS(8371), 1, + anon_sym_PIPE, + ACTIONS(8373), 1, anon_sym_extends, - STATE(4855), 1, - sym_object_type, - STATE(5290), 1, - sym_extends_clause, - [225237] = 5, + ACTIONS(5805), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [225312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8549), 1, - anon_sym_RBRACE, - STATE(5534), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [225254] = 6, + ACTIONS(8369), 1, + anon_sym_AMP, + ACTIONS(5799), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [225325] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5682), 1, + STATE(5528), 1, sym__call_signature, - [225273] = 2, + [225344] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1978), 1, + anon_sym_LBRACE, + ACTIONS(8489), 1, + anon_sym_SEMI, + ACTIONS(8491), 1, + sym__automatic_semicolon, + ACTIONS(8493), 1, + sym__function_signature_automatic_semicolon, + STATE(192), 1, + sym_statement_block, + [225363] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3286), 5, + ACTIONS(8560), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225284] = 2, + [225374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7808), 5, + ACTIONS(2173), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [225295] = 4, + anon_sym_PIPE_RBRACE, + [225385] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8354), 1, - anon_sym_COLON, - ACTIONS(8551), 1, - anon_sym_EQ_GT, - STATE(5435), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [225310] = 6, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5506), 1, + sym__call_signature, + [225404] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5391), 1, + sym__call_signature, + STATE(5424), 1, sym_type_parameters, - STATE(5537), 1, + [225423] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4595), 1, + sym_formal_parameters, + STATE(5424), 1, + sym_type_parameters, + STATE(5505), 1, sym__call_signature, - [225329] = 2, + [225442] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3350), 5, + ACTIONS(8562), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225340] = 4, + [225453] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, - anon_sym_LBRACE, - STATE(3769), 1, - sym_statement_block, - ACTIONS(7870), 3, + ACTIONS(8564), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [225355] = 5, + anon_sym_PIPE_RBRACE, + [225464] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_extends, - ACTIONS(5798), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [225372] = 6, + ACTIONS(4722), 1, + anon_sym_COLON, + ACTIONS(6413), 1, + anon_sym_EQ, + ACTIONS(6788), 1, + anon_sym_COMMA, + ACTIONS(8566), 1, + anon_sym_RBRACE, + STATE(5159), 1, + aux_sym_object_pattern_repeat1, + [225483] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5632), 1, + STATE(5653), 1, sym__call_signature, - [225391] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8554), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(8556), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [225404] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7394), 1, - anon_sym_is, - ACTIONS(7836), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [225417] = 2, + [225502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8558), 5, + ACTIONS(7828), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225428] = 2, + [225513] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7251), 1, + anon_sym_LT, + STATE(5311), 1, + sym_type_arguments, + ACTIONS(8420), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [225528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 5, + ACTIONS(8568), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225439] = 6, + [225539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, - anon_sym_LBRACE, - ACTIONS(8489), 1, - anon_sym_SEMI, - ACTIONS(8491), 1, - sym__automatic_semicolon, - ACTIONS(8493), 1, - sym__function_signature_automatic_semicolon, - STATE(4829), 1, - sym_statement_block, - [225458] = 3, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4859), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [225558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2162), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2160), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [225471] = 2, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5241), 1, + sym__initializer, + ACTIONS(8570), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3410), 5, + ACTIONS(7308), 1, + anon_sym_EQ, + STATE(5371), 1, + sym__initializer, + ACTIONS(8572), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [225482] = 2, + [225588] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8560), 5, + ACTIONS(7754), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225493] = 5, + [225599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_AMP, - ACTIONS(7766), 1, - anon_sym_PIPE, - ACTIONS(7784), 1, - anon_sym_extends, - ACTIONS(8562), 2, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3768), 1, + sym_statement_block, + ACTIONS(7806), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [225510] = 2, + anon_sym_SEMI, + [225614] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8564), 5, + ACTIONS(8322), 1, + anon_sym_LBRACE, + STATE(3786), 1, + sym_statement_block, + ACTIONS(7808), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [225521] = 2, + [225629] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8566), 5, + ACTIONS(3504), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225532] = 2, + [225640] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(4702), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [225659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3402), 5, + ACTIONS(3500), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225543] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7976), 1, - anon_sym_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE, - ACTIONS(7980), 1, - anon_sym_extends, - ACTIONS(8568), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [225560] = 2, + [225670] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7880), 5, + ACTIONS(8574), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225571] = 5, + [225681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7764), 1, - anon_sym_AMP, - ACTIONS(7766), 1, - anon_sym_PIPE, - ACTIONS(7784), 1, - anon_sym_extends, - ACTIONS(8487), 2, + ACTIONS(8322), 1, anon_sym_LBRACE, + STATE(3789), 1, + sym_statement_block, + ACTIONS(7806), 3, + sym__automatic_semicolon, anon_sym_COMMA, - [225588] = 2, + anon_sym_SEMI, + [225696] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8570), 5, + ACTIONS(3496), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225599] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8120), 1, - sym_identifier, - ACTIONS(8572), 1, - anon_sym_RBRACE, - STATE(5534), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [225616] = 4, + [225707] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, + ACTIONS(2970), 1, anon_sym_LT, - STATE(3903), 1, - sym_type_arguments, - ACTIONS(6187), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [225631] = 2, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4059), 1, + sym_formal_parameters, + STATE(5224), 1, + sym__call_signature, + STATE(5618), 1, + sym_type_parameters, + [225726] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2225), 5, + ACTIONS(3492), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225642] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7485), 1, - anon_sym_EQ_GT, - ACTIONS(8354), 1, - anon_sym_COLON, - STATE(5595), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [225657] = 2, + [225737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7878), 5, + ACTIONS(3484), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225668] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2251), 2, - anon_sym_SLASH, - sym_identifier, - ACTIONS(2249), 3, - anon_sym_LBRACE, - anon_sym_GT, - sym_jsx_identifier, - [225681] = 2, + [225748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8524), 5, + ACTIONS(7308), 1, anon_sym_EQ, + STATE(5190), 1, + sym__initializer, + ACTIONS(8576), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [225692] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2190), 1, - anon_sym_DOT, - ACTIONS(5090), 1, - anon_sym_LBRACE, - ACTIONS(5092), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [225707] = 4, + anon_sym_SEMI, + [225763] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8338), 1, + ACTIONS(8322), 1, anon_sym_LBRACE, - STATE(3775), 1, + STATE(3776), 1, sym_statement_block, - ACTIONS(7868), 3, + ACTIONS(7808), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225722] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4597), 1, - sym_formal_parameters, - STATE(5414), 1, - sym_type_parameters, - STATE(5677), 1, - sym__call_signature, - [225741] = 6, + [225778] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(8324), 1, - anon_sym_LPAREN, - STATE(4254), 1, - sym_formal_parameters, - STATE(4674), 1, - sym__call_signature, - STATE(5493), 1, - sym_type_parameters, - [225760] = 6, + ACTIONS(3484), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [225789] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4597), 1, + STATE(4595), 1, sym_formal_parameters, - STATE(5414), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5415), 1, + STATE(5436), 1, sym__call_signature, - [225779] = 6, + [225808] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, - anon_sym_LBRACE, - ACTIONS(8348), 1, - anon_sym_SEMI, - ACTIONS(8350), 1, + ACTIONS(3488), 5, sym__automatic_semicolon, - ACTIONS(8352), 1, - sym__function_signature_automatic_semicolon, - STATE(1061), 1, - sym_statement_block, - [225798] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(3642), 1, - anon_sym_LPAREN, - STATE(4063), 1, - sym_formal_parameters, - STATE(4819), 1, - sym__call_signature, - STATE(5492), 1, - sym_type_parameters, - [225817] = 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [225819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7976), 1, - anon_sym_AMP, - ACTIONS(7978), 1, - anon_sym_PIPE, - ACTIONS(7980), 1, - anon_sym_extends, - ACTIONS(8574), 2, + ACTIONS(7754), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [225834] = 2, + anon_sym_PIPE_RBRACE, + [225830] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2253), 5, + ACTIONS(3484), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225845] = 2, + [225841] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2239), 5, + ACTIONS(8578), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225856] = 2, + [225852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6296), 1, + anon_sym_LBRACE, + ACTIONS(8214), 1, + anon_sym_LPAREN, + STATE(4662), 1, + sym_arguments, + ACTIONS(6134), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [225869] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 5, + ACTIONS(8580), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [225867] = 5, + [225880] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8576), 1, - anon_sym_COLON, - [225883] = 5, + ACTIONS(620), 1, + anon_sym_BQUOTE, + ACTIONS(4827), 1, + anon_sym_LPAREN, + STATE(2271), 2, + sym_template_string, + sym_arguments, + [225894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(8419), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, - anon_sym_extends, - ACTIONS(8578), 1, - anon_sym_QMARK, - [225899] = 5, + ACTIONS(8582), 1, + anon_sym_COMMA, + STATE(4917), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8585), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [225908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8580), 1, - anon_sym_RPAREN, - [225915] = 5, + ACTIONS(6065), 1, + anon_sym_COMMA, + STATE(4974), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(8587), 2, + anon_sym_LBRACE, + anon_sym_implements, + [225922] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8589), 1, + anon_sym_DQUOTE, + STATE(4958), 1, + aux_sym_string_repeat1, + ACTIONS(8591), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [225936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8582), 1, - anon_sym_COLON, - [225931] = 5, + ACTIONS(8593), 1, + anon_sym_QMARK, + [225952] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8589), 1, + anon_sym_SQUOTE, + STATE(4960), 1, + aux_sym_string_repeat2, + ACTIONS(8595), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [225966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8584), 1, + ACTIONS(8597), 1, anon_sym_QMARK, - [225947] = 3, + [225982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8586), 1, - anon_sym_EQ_GT, - ACTIONS(4732), 3, - anon_sym_LPAREN, - anon_sym_LT, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(8599), 1, anon_sym_QMARK, - [225959] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8588), 1, - anon_sym_export, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [225975] = 4, - ACTIONS(7435), 1, + [225998] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8590), 1, - anon_sym_DQUOTE, - STATE(4997), 1, - aux_sym_string_repeat1, - ACTIONS(8592), 2, - sym_unescaped_double_string_fragment, + ACTIONS(8601), 1, + anon_sym_SQUOTE, + STATE(4960), 1, + aux_sym_string_repeat2, + ACTIONS(8595), 2, + sym_unescaped_single_string_fragment, sym_escape_sequence, - [225989] = 2, + [226012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4535), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_RBRACK, - [225999] = 2, + ACTIONS(818), 1, + anon_sym_BQUOTE, + ACTIONS(5423), 1, + anon_sym_LPAREN, + STATE(2935), 2, + sym_template_string, + sym_arguments, + [226026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7836), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [226009] = 4, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5597), 1, + sym_type_parameters, + STATE(5866), 1, + sym_formal_parameters, + [226042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8596), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [226023] = 5, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(8603), 1, + anon_sym_QMARK, + [226058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5635), 1, + STATE(5414), 1, sym_type_parameters, - STATE(5896), 1, + STATE(5753), 1, sym_formal_parameters, - [226039] = 5, + [226074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8598), 1, - anon_sym_class, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [226055] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8600), 1, - anon_sym_DQUOTE, - STATE(4931), 1, - aux_sym_string_repeat1, - ACTIONS(8602), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [226069] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8600), 1, - anon_sym_SQUOTE, - STATE(4932), 1, - aux_sym_string_repeat2, - ACTIONS(8604), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [226083] = 4, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8605), 1, + anon_sym_COLON, + [226090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8606), 1, + ACTIONS(6065), 1, anon_sym_COMMA, - STATE(4927), 1, + STATE(4918), 1, aux_sym_extends_clause_repeat1, - ACTIONS(6187), 2, + ACTIONS(6055), 2, anon_sym_LBRACE, anon_sym_implements, - [226097] = 5, + [226104] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(3642), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4406), 1, - sym_formal_parameters, - STATE(5679), 1, + STATE(5421), 1, sym_type_parameters, - [226113] = 5, + STATE(5884), 1, + sym_formal_parameters, + [226120] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6025), 1, + anon_sym_LBRACE, + ACTIONS(6027), 1, + anon_sym_COMMA, + ACTIONS(6055), 1, + anon_sym_LBRACE_PIPE, + STATE(5047), 1, + aux_sym_extends_clause_repeat1, + [226136] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8609), 1, + ACTIONS(8607), 1, anon_sym_RBRACK, - [226129] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5652), 1, - sym_type_parameters, - STATE(6139), 1, - sym_formal_parameters, - [226145] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8611), 1, - anon_sym_DQUOTE, - STATE(4997), 1, - aux_sym_string_repeat1, - ACTIONS(8592), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [226159] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8611), 1, - anon_sym_SQUOTE, - STATE(5001), 1, - aux_sym_string_repeat2, - ACTIONS(8613), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [226173] = 5, + [226152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8615), 1, - anon_sym_COLON, - [226189] = 4, - ACTIONS(7435), 1, + ACTIONS(8609), 1, + anon_sym_RBRACK, + [226168] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8617), 1, + ACTIONS(8611), 1, anon_sym_SQUOTE, - STATE(4985), 1, + STATE(4924), 1, aux_sym_string_repeat2, - ACTIONS(8619), 2, + ACTIONS(8613), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [226203] = 4, - ACTIONS(7435), 1, + [226182] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8617), 1, + ACTIONS(8611), 1, anon_sym_DQUOTE, - STATE(4981), 1, + STATE(4989), 1, aux_sym_string_repeat1, - ACTIONS(8621), 2, + ACTIONS(8615), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [226217] = 5, + [226196] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5395), 1, + STATE(5433), 1, sym_type_parameters, - STATE(5816), 1, + STATE(5853), 1, sym_formal_parameters, - [226233] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(8419), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, - anon_sym_extends, - ACTIONS(8623), 1, - anon_sym_QMARK, - [226249] = 5, - ACTIONS(3), 1, + [226212] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5471), 1, - sym_type_parameters, - STATE(5788), 1, - sym_formal_parameters, - [226265] = 5, + ACTIONS(8617), 1, + anon_sym_SQUOTE, + STATE(4921), 1, + aux_sym_string_repeat2, + ACTIONS(8619), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [226226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(8625), 1, + ACTIONS(7224), 1, anon_sym_EQ, - ACTIONS(8627), 1, - anon_sym_RBRACK, - STATE(5315), 1, - aux_sym_array_pattern_repeat1, - [226281] = 5, + STATE(5641), 1, + sym_default_type, + ACTIONS(8621), 2, + anon_sym_COMMA, + anon_sym_GT, + [226240] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8629), 1, - anon_sym_QMARK, - [226297] = 5, + ACTIONS(8623), 1, + anon_sym_COLON, + [226256] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8631), 1, + ACTIONS(8625), 1, + anon_sym_QMARK, + [226272] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5725), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - [226313] = 5, + anon_sym_RBRACK, + [226282] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5403), 1, + STATE(5447), 1, sym_type_parameters, - STATE(6066), 1, + STATE(5903), 1, sym_formal_parameters, - [226329] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8633), 1, - anon_sym_DQUOTE, - STATE(5031), 1, - aux_sym_string_repeat1, - ACTIONS(8635), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [226343] = 5, + [226298] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(8637), 1, + ACTIONS(8627), 1, anon_sym_class, - STATE(3828), 1, + STATE(3830), 1, aux_sym_export_statement_repeat1, STATE(3864), 1, sym_decorator, - [226359] = 5, + [226314] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8639), 1, - anon_sym_COLON, - [226375] = 2, - ACTIONS(3), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5477), 1, + sym_type_parameters, + STATE(6014), 1, + sym_formal_parameters, + [226330] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8193), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [226385] = 4, - ACTIONS(3), 1, + ACTIONS(8629), 1, + anon_sym_SQUOTE, + STATE(4960), 1, + aux_sym_string_repeat2, + ACTIONS(8595), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [226344] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(7844), 1, - anon_sym_EQ, - STATE(5584), 1, - sym__initializer, - ACTIONS(8641), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [226399] = 5, + ACTIONS(8629), 1, + anon_sym_DQUOTE, + STATE(4958), 1, + aux_sym_string_repeat1, + ACTIONS(8591), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [226358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8643), 1, + ACTIONS(8631), 1, anon_sym_RBRACK, - [226415] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5416), 1, - sym_type_parameters, - STATE(6051), 1, - sym_formal_parameters, - [226431] = 5, + [226374] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5432), 1, + STATE(5600), 1, sym_type_parameters, - STATE(5937), 1, + STATE(5852), 1, sym_formal_parameters, - [226447] = 4, + [226390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 1, - anon_sym_COMMA, - STATE(4927), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(8645), 2, - anon_sym_LBRACE, - anon_sym_implements, - [226461] = 4, - ACTIONS(3), 1, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8633), 1, + anon_sym_RPAREN, + [226406] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(4427), 1, - anon_sym_COMMA, - STATE(4927), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(8647), 2, - anon_sym_LBRACE, - anon_sym_implements, - [226475] = 5, - ACTIONS(3), 1, + ACTIONS(8635), 1, + anon_sym_SQUOTE, + STATE(4946), 1, + aux_sym_string_repeat2, + ACTIONS(8637), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [226420] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5669), 1, - sym_type_parameters, - STATE(5735), 1, - sym_formal_parameters, - [226491] = 5, + ACTIONS(8635), 1, + anon_sym_DQUOTE, + STATE(4947), 1, + aux_sym_string_repeat1, + ACTIONS(8639), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [226434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8649), 1, + ACTIONS(8641), 1, anon_sym_QMARK, - [226507] = 5, + [226450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8651), 1, - anon_sym_QMARK, - [226523] = 5, + ACTIONS(8643), 1, + anon_sym_COLON, + [226466] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5658), 1, - sym_type_parameters, - STATE(5726), 1, - sym_formal_parameters, - [226539] = 4, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8645), 1, + anon_sym_export, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [226482] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, + ACTIONS(6134), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6296), 1, + anon_sym_LBRACE, + ACTIONS(8647), 1, anon_sym_COMMA, - STATE(5051), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8653), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [226553] = 5, + STATE(4956), 1, + aux_sym_extends_clause_repeat1, + [226498] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4639), 1, - anon_sym_COMMA, - ACTIONS(6038), 1, - anon_sym_LBRACE, - ACTIONS(6066), 1, - anon_sym_LBRACE_PIPE, - STATE(4976), 1, - aux_sym_extends_clause_repeat1, - [226569] = 2, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8650), 1, + anon_sym_RPAREN, + [226514] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8652), 1, + anon_sym_DQUOTE, + STATE(4958), 1, + aux_sym_string_repeat1, + ACTIONS(8654), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [226528] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [226579] = 5, + ACTIONS(2326), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, + anon_sym_EQ, + ACTIONS(8659), 1, + anon_sym_RBRACK, + STATE(5329), 1, + aux_sym_array_pattern_repeat1, + [226544] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8661), 1, + anon_sym_SQUOTE, + STATE(4960), 1, + aux_sym_string_repeat2, + ACTIONS(8663), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [226558] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5423), 1, - sym_type_parameters, - STATE(5775), 1, - sym_formal_parameters, - [226595] = 5, + ACTIONS(8666), 1, + anon_sym_COMMA, + STATE(4961), 1, + aux_sym_array_repeat1, + ACTIONS(6260), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [226572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8655), 1, - anon_sym_RBRACK, - [226611] = 5, + ACTIONS(8669), 1, + anon_sym_COLON, + [226588] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8671), 1, + anon_sym_SQUOTE, + STATE(4960), 1, + aux_sym_string_repeat2, + ACTIONS(8595), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [226602] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8671), 1, + anon_sym_DQUOTE, + STATE(4958), 1, + aux_sym_string_repeat1, + ACTIONS(8591), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [226616] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8657), 1, + ACTIONS(8673), 1, anon_sym_QMARK, - [226627] = 5, + [226632] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8675), 1, + anon_sym_SQUOTE, + STATE(4963), 1, + aux_sym_string_repeat2, + ACTIONS(8677), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [226646] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8675), 1, + anon_sym_DQUOTE, + STATE(4964), 1, + aux_sym_string_repeat1, + ACTIONS(8679), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [226660] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8659), 1, + ACTIONS(8681), 1, anon_sym_QMARK, - [226643] = 5, + [226676] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5672), 1, + STATE(5620), 1, sym_type_parameters, - STATE(5985), 1, + STATE(6114), 1, sym_formal_parameters, - [226659] = 5, + [226692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8661), 1, + ACTIONS(8683), 1, anon_sym_RBRACK, - [226675] = 4, + [226708] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, - anon_sym_COMMA, - STATE(4922), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8663), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [226689] = 5, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(8685), 1, + anon_sym_QMARK, + [226724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5474), 1, + STATE(5611), 1, sym_type_parameters, - STATE(6015), 1, + STATE(5712), 1, sym_formal_parameters, - [226705] = 5, + [226740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - STATE(5655), 1, - sym_type_parameters, - STATE(5706), 1, + STATE(4263), 1, sym_formal_parameters, - [226721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8066), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [226731] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5479), 1, + STATE(5449), 1, sym_type_parameters, - STATE(6010), 1, - sym_formal_parameters, - [226747] = 4, + [226756] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7844), 1, - anon_sym_EQ, - STATE(5637), 1, - sym__initializer, - ACTIONS(8665), 2, + ACTIONS(8687), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [226761] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8667), 1, - sym_identifier, - ACTIONS(8669), 1, - sym_jsx_identifier, - STATE(5665), 1, - sym_nested_identifier, - STATE(5755), 1, - sym_jsx_namespace_name, - [226777] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8671), 1, - anon_sym_COLON, - [226793] = 5, + STATE(4974), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6134), 2, + anon_sym_LBRACE, + anon_sym_implements, + [226770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8673), 1, + ACTIONS(8690), 1, anon_sym_COLON, - [226809] = 5, + [226786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8675), 1, + ACTIONS(8692), 1, anon_sym_COLON, - [226825] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4639), 1, - anon_sym_COMMA, - ACTIONS(8647), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(8677), 1, - anon_sym_LBRACE, - STATE(5096), 1, - aux_sym_extends_clause_repeat1, - [226841] = 4, + [226802] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4732), 1, - anon_sym_COLON, - ACTIONS(6358), 1, - anon_sym_EQ, - ACTIONS(8679), 2, + ACTIONS(8694), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [226855] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1130), 1, - anon_sym_BQUOTE, - ACTIONS(5905), 1, - anon_sym_LPAREN, - STATE(3519), 2, - sym_template_string, - sym_arguments, - [226869] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8681), 1, - anon_sym_SQUOTE, - STATE(5019), 1, - aux_sym_string_repeat2, - ACTIONS(8683), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [226883] = 5, + STATE(4917), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8696), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5467), 1, + STATE(5564), 1, sym_type_parameters, - STATE(6117), 1, + STATE(6034), 1, sym_formal_parameters, - [226899] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8685), 1, - anon_sym_DQUOTE, - STATE(4997), 1, - aux_sym_string_repeat1, - ACTIONS(8592), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [226913] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8687), 1, - anon_sym_COLON, - [226929] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8681), 1, - anon_sym_DQUOTE, - STATE(4919), 1, - aux_sym_string_repeat1, - ACTIONS(8689), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [226943] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8691), 1, - anon_sym_SQUOTE, - STATE(5001), 1, - aux_sym_string_repeat2, - ACTIONS(8613), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [226957] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8685), 1, - anon_sym_SQUOTE, - STATE(5001), 1, - aux_sym_string_repeat2, - ACTIONS(8613), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [226971] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8120), 1, - sym_identifier, - STATE(5534), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [226985] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8691), 1, - anon_sym_DQUOTE, - STATE(4997), 1, - aux_sym_string_repeat1, - ACTIONS(8592), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [226999] = 5, + [226832] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8693), 1, - anon_sym_RPAREN, - [227015] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8695), 1, - anon_sym_COLON, - [227031] = 5, + ACTIONS(8698), 1, + anon_sym_QMARK, + [226848] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8697), 1, - anon_sym_RPAREN, - [227047] = 2, + ACTIONS(8700), 1, + anon_sym_QMARK, + [226864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8699), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [227057] = 5, + ACTIONS(8702), 1, + sym_identifier, + ACTIONS(8704), 1, + sym_jsx_identifier, + STATE(5497), 1, + sym_nested_identifier, + STATE(6013), 1, + sym_jsx_namespace_name, + [226880] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8701), 1, - anon_sym_COLON, - [227073] = 5, + ACTIONS(8706), 1, + anon_sym_QMARK, + [226896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5508), 1, + sym_type_parameters, + STATE(5740), 1, + sym_formal_parameters, + [226912] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8703), 1, - anon_sym_COLON, - [227089] = 5, + ACTIONS(8708), 1, + anon_sym_QMARK, + [226928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8705), 1, + ACTIONS(8710), 1, + anon_sym_RBRACK, + [226944] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_EQ, + STATE(5627), 1, + sym__initializer, + ACTIONS(8712), 2, + anon_sym_COMMA, anon_sym_RPAREN, - [227105] = 5, + [226958] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8707), 1, + ACTIONS(8714), 1, anon_sym_RBRACK, - [227121] = 4, + [226974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 1, - anon_sym_from, - STATE(5569), 1, - sym__from_clause, - ACTIONS(8711), 2, + ACTIONS(8694), 1, + anon_sym_COMMA, + STATE(4917), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8716), 2, sym__automatic_semicolon, anon_sym_SEMI, - [227135] = 4, - ACTIONS(7435), 1, + [226988] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8713), 1, + ACTIONS(8601), 1, anon_sym_DQUOTE, - STATE(4997), 1, + STATE(4958), 1, aux_sym_string_repeat1, - ACTIONS(8715), 2, + ACTIONS(8591), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [227149] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8709), 1, - anon_sym_from, - STATE(5528), 1, - sym__from_clause, - ACTIONS(8718), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [227163] = 5, + [227002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5408), 1, - sym_type_parameters, - STATE(5723), 1, - sym_formal_parameters, - [227179] = 5, + ACTIONS(8369), 1, + anon_sym_AMP, + ACTIONS(8371), 1, + anon_sym_PIPE, + ACTIONS(8373), 1, + anon_sym_extends, + ACTIONS(8718), 1, + anon_sym_RBRACK, + [227018] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5468), 1, - sym_type_parameters, - STATE(5986), 1, - sym_formal_parameters, - [227195] = 4, - ACTIONS(7435), 1, - sym_comment, + ACTIONS(8369), 1, + anon_sym_AMP, + ACTIONS(8371), 1, + anon_sym_PIPE, + ACTIONS(8373), 1, + anon_sym_extends, ACTIONS(8720), 1, - anon_sym_SQUOTE, - STATE(5001), 1, - aux_sym_string_repeat2, - ACTIONS(8722), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [227209] = 5, + anon_sym_RBRACK, + [227034] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8725), 1, - anon_sym_QMARK, - [227225] = 5, + ACTIONS(8722), 1, + anon_sym_COLON, + [227050] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8027), 1, + sym_identifier, + STATE(5520), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [227064] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8727), 1, + ACTIONS(8724), 1, anon_sym_QMARK, - [227241] = 4, + [227080] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8729), 1, + ACTIONS(8694), 1, anon_sym_COMMA, - STATE(5004), 1, - aux_sym_array_repeat1, - ACTIONS(6182), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [227255] = 5, + STATE(4977), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8726), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [227094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8732), 1, - anon_sym_COLON, - [227271] = 4, - ACTIONS(7435), 1, + ACTIONS(8728), 1, + anon_sym_RPAREN, + [227110] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8730), 1, + anon_sym_DQUOTE, + STATE(5006), 1, + aux_sym_string_repeat1, + ACTIONS(8732), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [227124] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8734), 1, + ACTIONS(8730), 1, anon_sym_SQUOTE, - STATE(4984), 1, + STATE(5008), 1, aux_sym_string_repeat2, - ACTIONS(8736), 2, + ACTIONS(8734), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [227285] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5604), 1, - sym_type_parameters, - STATE(5741), 1, - sym_formal_parameters, - [227301] = 5, + [227138] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8738), 1, + ACTIONS(8736), 1, anon_sym_COLON, - [227317] = 5, + [227154] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8694), 1, + anon_sym_COMMA, + STATE(4917), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8738), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [227168] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(8419), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, - anon_sym_extends, ACTIONS(8740), 1, - anon_sym_QMARK, - [227333] = 4, + sym_identifier, + ACTIONS(8742), 1, + sym_jsx_identifier, + STATE(5537), 1, + sym_nested_identifier, + STATE(5983), 1, + sym_jsx_namespace_name, + [227184] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, + ACTIONS(8694), 1, anon_sym_COMMA, - STATE(5064), 1, + STATE(5000), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8742), 2, + ACTIONS(8744), 2, sym__automatic_semicolon, anon_sym_SEMI, - [227347] = 5, + [227198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8744), 1, + ACTIONS(8746), 1, anon_sym_QMARK, - [227363] = 4, - ACTIONS(7435), 1, + [227214] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8075), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [227224] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8224), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [227234] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8734), 1, + ACTIONS(8748), 1, anon_sym_DQUOTE, - STATE(4987), 1, + STATE(4958), 1, aux_sym_string_repeat1, - ACTIONS(8746), 2, + ACTIONS(8591), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [227377] = 4, + [227248] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, - anon_sym_COMMA, - STATE(5052), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8748), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [227391] = 4, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8750), 1, + anon_sym_RPAREN, + [227264] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8748), 1, + anon_sym_SQUOTE, + STATE(4960), 1, + aux_sym_string_repeat2, + ACTIONS(8595), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [227278] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4915), 1, - anon_sym_LPAREN, - STATE(2464), 2, - sym_template_string, - sym_arguments, - [227405] = 5, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(8752), 1, + anon_sym_QMARK, + [227294] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8754), 1, + anon_sym_COLON, + [227310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5509), 1, + STATE(5628), 1, sym_type_parameters, - STATE(5890), 1, + STATE(5861), 1, sym_formal_parameters, - [227421] = 5, + [227326] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(8750), 1, + ACTIONS(8756), 1, anon_sym_class, - STATE(3828), 1, + STATE(3830), 1, aux_sym_export_statement_repeat1, STATE(3864), 1, sym_decorator, - [227437] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8752), 1, - anon_sym_DQUOTE, - STATE(5036), 1, - aux_sym_string_repeat1, - ACTIONS(8754), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [227451] = 5, + [227342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8756), 1, - anon_sym_COLON, - [227467] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8590), 1, - anon_sym_SQUOTE, - STATE(5001), 1, - aux_sym_string_repeat2, - ACTIONS(8613), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [227481] = 5, + ACTIONS(8228), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [227352] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7706), 1, + anon_sym_EQ_GT, + ACTIONS(8332), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8334), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8336), 1, anon_sym_extends, - ACTIONS(8758), 1, - anon_sym_COLON, - [227497] = 5, + [227368] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8760), 1, - anon_sym_RPAREN, - [227513] = 4, - ACTIONS(7435), 1, + ACTIONS(4776), 1, + anon_sym_LBRACE, + ACTIONS(7467), 1, + anon_sym_STAR, + STATE(5759), 2, + sym_namespace_import, + sym_named_imports, + [227382] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8752), 1, + ACTIONS(8758), 1, anon_sym_SQUOTE, - STATE(5043), 1, + STATE(4960), 1, aux_sym_string_repeat2, - ACTIONS(8762), 2, + ACTIONS(8595), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [227527] = 5, - ACTIONS(3), 1, + [227396] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(8625), 1, - anon_sym_EQ, - ACTIONS(8764), 1, - anon_sym_RBRACK, - STATE(5224), 1, - aux_sym_array_pattern_repeat1, - [227543] = 5, + ACTIONS(8758), 1, + anon_sym_DQUOTE, + STATE(4958), 1, + aux_sym_string_repeat1, + ACTIONS(8591), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [227410] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8766), 1, - sym_identifier, - ACTIONS(8768), 1, - sym_jsx_identifier, - STATE(5670), 1, - sym_nested_identifier, - STATE(5711), 1, - sym_jsx_namespace_name, - [227559] = 4, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5568), 1, + sym_type_parameters, + STATE(5869), 1, + sym_formal_parameters, + [227426] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4427), 1, + ACTIONS(4499), 4, + anon_sym_EQ, anon_sym_COMMA, - STATE(4952), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6066), 2, - anon_sym_LBRACE, - anon_sym_implements, - [227573] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + [227436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8770), 1, - anon_sym_COLON, - [227589] = 5, + ACTIONS(882), 1, + anon_sym_BQUOTE, + ACTIONS(5745), 1, + anon_sym_LPAREN, + STATE(3486), 2, + sym_template_string, + sym_arguments, + [227450] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8772), 1, + ACTIONS(8760), 1, anon_sym_QMARK, - [227605] = 4, - ACTIONS(7435), 1, + [227466] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8774), 1, + ACTIONS(8762), 1, anon_sym_SQUOTE, - STATE(5001), 1, + STATE(4960), 1, aux_sym_string_repeat2, - ACTIONS(8613), 2, + ACTIONS(8595), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [227619] = 4, - ACTIONS(7435), 1, + [227480] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8774), 1, + ACTIONS(8762), 1, anon_sym_DQUOTE, - STATE(4997), 1, + STATE(4958), 1, aux_sym_string_repeat1, - ACTIONS(8592), 2, + ACTIONS(8591), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [227633] = 5, + [227494] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8764), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, + [227504] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8776), 1, - anon_sym_RBRACK, - [227649] = 4, - ACTIONS(7435), 1, + ACTIONS(8766), 1, + anon_sym_COLON, + [227520] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8778), 1, - anon_sym_DQUOTE, - STATE(4997), 1, - aux_sym_string_repeat1, - ACTIONS(8592), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [227663] = 5, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(8768), 1, + anon_sym_QMARK, + [227536] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5517), 1, + STATE(5434), 1, sym_type_parameters, - STATE(6037), 1, + STATE(5947), 1, sym_formal_parameters, - [227679] = 5, + [227552] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8780), 1, - anon_sym_QMARK, - [227695] = 4, - ACTIONS(7435), 1, + ACTIONS(8770), 1, + anon_sym_COLON, + [227568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8772), 1, + anon_sym_RPAREN, + [227584] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8027), 1, + sym_identifier, + STATE(5451), 1, + sym__import_export_specifier, + ACTIONS(8029), 2, + anon_sym_type, + anon_sym_typeof, + [227598] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8774), 1, + anon_sym_DQUOTE, + STATE(5037), 1, + aux_sym_string_repeat1, + ACTIONS(8776), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [227612] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(2326), 1, + anon_sym_COMMA, + ACTIONS(8657), 1, + anon_sym_EQ, ACTIONS(8778), 1, + anon_sym_RBRACK, + STATE(5284), 1, + aux_sym_array_pattern_repeat1, + [227628] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8774), 1, anon_sym_SQUOTE, - STATE(5001), 1, + STATE(5039), 1, aux_sym_string_repeat2, - ACTIONS(8613), 2, + ACTIONS(8780), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [227709] = 5, + [227642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8373), 1, anon_sym_extends, ACTIONS(8782), 1, - anon_sym_QMARK, - [227725] = 4, - ACTIONS(7435), 1, + anon_sym_RBRACK, + [227658] = 4, + ACTIONS(7457), 1, sym_comment, ACTIONS(8784), 1, + anon_sym_SQUOTE, + STATE(5022), 1, + aux_sym_string_repeat2, + ACTIONS(8786), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [227672] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8784), 1, + anon_sym_DQUOTE, + STATE(5023), 1, + aux_sym_string_repeat1, + ACTIONS(8788), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [227686] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8790), 1, anon_sym_DQUOTE, - STATE(4997), 1, + STATE(4958), 1, aux_sym_string_repeat1, - ACTIONS(8592), 2, + ACTIONS(8591), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [227739] = 5, + [227700] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8786), 1, + ACTIONS(8792), 1, anon_sym_COLON, - [227755] = 4, - ACTIONS(7435), 1, + [227716] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8788), 1, + ACTIONS(8790), 1, anon_sym_SQUOTE, - STATE(5028), 1, + STATE(4960), 1, aux_sym_string_repeat2, - ACTIONS(8790), 2, + ACTIONS(8595), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [227769] = 5, + [227730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8792), 1, + ACTIONS(4722), 1, anon_sym_COLON, - [227785] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8788), 1, - anon_sym_DQUOTE, - STATE(5029), 1, - aux_sym_string_repeat1, + ACTIONS(6413), 1, + anon_sym_EQ, ACTIONS(8794), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [227799] = 5, + anon_sym_COMMA, + anon_sym_RBRACE, + [227744] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8373), 1, anon_sym_extends, ACTIONS(8796), 1, - anon_sym_QMARK, - [227815] = 5, + anon_sym_RBRACK, + [227760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8373), 1, anon_sym_extends, ACTIONS(8798), 1, - anon_sym_RPAREN, - [227831] = 4, - ACTIONS(7435), 1, + anon_sym_RBRACK, + [227776] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8784), 1, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(8800), 1, + anon_sym_QMARK, + [227792] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8802), 1, anon_sym_SQUOTE, - STATE(5001), 1, + STATE(5016), 1, aux_sym_string_repeat2, - ACTIONS(8613), 2, + ACTIONS(8804), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [227845] = 5, + [227806] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8800), 1, - anon_sym_class, - STATE(3828), 1, - aux_sym_export_statement_repeat1, - STATE(3864), 1, - sym_decorator, - [227861] = 5, - ACTIONS(3), 1, + ACTIONS(8806), 1, + anon_sym_EQ_GT, + ACTIONS(4722), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [227818] = 4, + ACTIONS(7457), 1, sym_comment, ACTIONS(8802), 1, + anon_sym_DQUOTE, + STATE(5017), 1, + aux_sym_string_repeat1, + ACTIONS(8808), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [227832] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6027), 1, + anon_sym_COMMA, + ACTIONS(8587), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(8810), 1, + anon_sym_LBRACE, + STATE(4956), 1, + aux_sym_extends_clause_repeat1, + [227848] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8812), 1, sym_identifier, - ACTIONS(8804), 1, + ACTIONS(8814), 1, sym_jsx_identifier, - STATE(5497), 1, + STATE(5679), 1, sym_nested_identifier, - STATE(5998), 1, + STATE(5767), 1, sym_jsx_namespace_name, - [227877] = 5, + [227864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8806), 1, - anon_sym_QMARK, - [227893] = 5, + ACTIONS(8816), 1, + anon_sym_COLON, + [227880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(8419), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, - anon_sym_extends, - ACTIONS(8808), 1, + ACTIONS(7051), 1, + anon_sym_EQ_GT, + ACTIONS(4722), 3, + anon_sym_LPAREN, + anon_sym_LT, anon_sym_QMARK, - [227909] = 5, + [227892] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7707), 1, - anon_sym_EQ_GT, - ACTIONS(8405), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8407), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8409), 1, + ACTIONS(8428), 1, anon_sym_extends, - [227925] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5550), 1, - sym_type_parameters, - STATE(5972), 1, - sym_formal_parameters, - [227941] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5579), 1, - sym_type_parameters, - STATE(5844), 1, - sym_formal_parameters, - [227957] = 4, + ACTIONS(8818), 1, + anon_sym_QMARK, + [227908] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, + ACTIONS(8694), 1, anon_sym_COMMA, - STATE(5083), 1, + STATE(5066), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8810), 2, + ACTIONS(8820), 2, sym__automatic_semicolon, anon_sym_SEMI, - [227971] = 4, + [227922] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8812), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [227985] = 4, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8822), 1, + anon_sym_COLON, + [227938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8120), 1, - sym_identifier, - STATE(5571), 1, - sym__import_export_specifier, - ACTIONS(8122), 2, - anon_sym_type, - anon_sym_typeof, - [227999] = 5, + ACTIONS(7918), 1, + anon_sym_EQ, + STATE(5401), 1, + sym__initializer, + ACTIONS(8824), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [227952] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5443), 1, + STATE(5626), 1, sym_type_parameters, - STATE(6058), 1, + STATE(6099), 1, sym_formal_parameters, - [228015] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1298), 1, - anon_sym_BQUOTE, - ACTIONS(5388), 1, - anon_sym_LPAREN, - STATE(2799), 2, - sym_template_string, - sym_arguments, - [228029] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4639), 1, - anon_sym_COMMA, - ACTIONS(8645), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(8814), 1, - anon_sym_LBRACE, - STATE(5096), 1, - aux_sym_extends_clause_repeat1, - [228045] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - ACTIONS(8816), 1, - anon_sym_COLON, - [228061] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8417), 1, - anon_sym_AMP, - ACTIONS(8419), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, - anon_sym_extends, - ACTIONS(8818), 1, - anon_sym_QMARK, - [228077] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_SQUOTE, - STATE(5001), 1, - aux_sym_string_repeat2, - ACTIONS(8613), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [228091] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8820), 1, - anon_sym_DQUOTE, - STATE(4997), 1, - aux_sym_string_repeat1, - ACTIONS(8592), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [228105] = 5, + [227968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8822), 1, + ACTIONS(8826), 1, anon_sym_QMARK, - [228121] = 5, + [227984] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8824), 1, - anon_sym_COLON, - [228137] = 5, + ACTIONS(8828), 1, + anon_sym_RBRACK, + [228000] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8826), 1, + ACTIONS(8830), 1, anon_sym_COLON, - [228153] = 4, + [228016] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8594), 1, + ACTIONS(8694), 1, anon_sym_COMMA, - STATE(5083), 1, + STATE(4988), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8828), 2, + ACTIONS(8832), 2, sym__automatic_semicolon, anon_sym_SEMI, - [228167] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7093), 1, - anon_sym_EQ_GT, - ACTIONS(4732), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [228179] = 4, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(8830), 1, - anon_sym_SQUOTE, - STATE(5001), 1, - aux_sym_string_repeat2, - ACTIONS(8613), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [228193] = 5, + [228030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8832), 1, - anon_sym_QMARK, - [228209] = 5, + ACTIONS(8834), 1, + anon_sym_RBRACK, + [228046] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8834), 1, - anon_sym_RPAREN, - [228225] = 4, + ACTIONS(8836), 1, + anon_sym_QMARK, + [228062] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7228), 1, - anon_sym_EQ, - STATE(5525), 1, - sym_default_type, - ACTIONS(8836), 2, - anon_sym_COMMA, - anon_sym_GT, - [228239] = 5, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5658), 1, + sym_type_parameters, + STATE(6007), 1, + sym_formal_parameters, + [228078] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7888), 1, anon_sym_extends, ACTIONS(8838), 1, - anon_sym_QMARK, - [228255] = 5, + anon_sym_COLON, + [228094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(8428), 1, anon_sym_extends, ACTIONS(8840), 1, - anon_sym_RBRACK, - [228271] = 5, + anon_sym_QMARK, + [228110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(7888), 1, anon_sym_extends, ACTIONS(8842), 1, - anon_sym_RBRACK, - [228287] = 5, + anon_sym_RPAREN, + [228126] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8694), 1, + anon_sym_COMMA, + STATE(4917), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8844), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [228140] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5443), 1, + sym_type_parameters, + STATE(6068), 1, + sym_formal_parameters, + [228156] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8844), 1, - anon_sym_RBRACK, - [228303] = 4, - ACTIONS(7435), 1, + ACTIONS(8846), 1, + anon_sym_COLON, + [228172] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5676), 1, + sym_type_parameters, + STATE(5716), 1, + sym_formal_parameters, + [228188] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5356), 1, + anon_sym_LBRACE, + ACTIONS(5358), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [228200] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8848), 1, + anon_sym_class, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [228216] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8850), 1, anon_sym_DQUOTE, - STATE(4997), 1, + STATE(5090), 1, aux_sym_string_repeat1, - ACTIONS(8592), 2, + ACTIONS(8852), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [228317] = 4, + [228230] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4804), 1, + ACTIONS(5332), 1, anon_sym_LBRACE, - ACTIONS(7459), 1, - anon_sym_STAR, - STATE(5815), 2, - sym_namespace_import, - sym_named_imports, - [228331] = 5, + ACTIONS(5334), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [228242] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_extends, - ACTIONS(8846), 1, - anon_sym_RBRACK, - [228347] = 5, + ACTIONS(1974), 1, + anon_sym_while, + ACTIONS(3142), 1, + anon_sym_LBRACE, + ACTIONS(7241), 1, + anon_sym_DOT, + STATE(1091), 1, + sym_statement_block, + [228258] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_extends, - ACTIONS(8848), 1, - anon_sym_RBRACK, - [228363] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8854), 1, + anon_sym_class, + STATE(3830), 1, + aux_sym_export_statement_repeat1, + STATE(3864), 1, + sym_decorator, + [228274] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8850), 1, + ACTIONS(8856), 1, anon_sym_COLON, - [228379] = 5, + [228290] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8852), 1, - anon_sym_QMARK, - [228395] = 5, + ACTIONS(8858), 1, + anon_sym_COLON, + [228306] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5681), 1, + sym_type_parameters, + STATE(5724), 1, + sym_formal_parameters, + [228322] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5204), 1, + anon_sym_LBRACE, + ACTIONS(5206), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [228334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7918), 1, + anon_sym_EQ, + STATE(5442), 1, + sym__initializer, + ACTIONS(8860), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [228348] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5007), 1, + anon_sym_LBRACE, + ACTIONS(5009), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [228360] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5561), 1, + STATE(5484), 1, sym_type_parameters, - STATE(6042), 1, + STATE(5758), 1, sym_formal_parameters, - [228411] = 5, + [228376] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8862), 1, + anon_sym_from, + STATE(5609), 1, + sym__from_clause, + ACTIONS(8864), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [228390] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4949), 1, + anon_sym_LBRACE, + ACTIONS(4951), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [228402] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8854), 1, + ACTIONS(8866), 1, anon_sym_QMARK, - [228427] = 4, + [228418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(620), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4829), 1, + ACTIONS(4957), 1, anon_sym_LPAREN, - STATE(2337), 2, + STATE(2581), 2, sym_template_string, sym_arguments, - [228441] = 4, + [228432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8856), 1, - anon_sym_COMMA, - STATE(5083), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8859), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [228455] = 5, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5468), 1, + sym_type_parameters, + STATE(5798), 1, + sym_formal_parameters, + [228448] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8868), 1, + anon_sym_COLON, + [228464] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(8424), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(8426), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(8428), 1, anon_sym_extends, - ACTIONS(8861), 1, + ACTIONS(8870), 1, anon_sym_QMARK, - [228471] = 4, - ACTIONS(7435), 1, + [228480] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8863), 1, + ACTIONS(8872), 1, anon_sym_DQUOTE, - STATE(5060), 1, + STATE(4958), 1, aux_sym_string_repeat1, - ACTIONS(8865), 2, + ACTIONS(8591), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [228485] = 4, - ACTIONS(7435), 1, + [228494] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8424), 1, + anon_sym_AMP, + ACTIONS(8426), 1, + anon_sym_PIPE, + ACTIONS(8428), 1, + anon_sym_extends, + ACTIONS(8874), 1, + anon_sym_QMARK, + [228510] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8876), 1, + anon_sym_COLON, + [228526] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8863), 1, + ACTIONS(8872), 1, anon_sym_SQUOTE, - STATE(5059), 1, + STATE(4960), 1, aux_sym_string_repeat2, - ACTIONS(8867), 2, + ACTIONS(8595), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [228499] = 5, + [228540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(8369), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(8371), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(8373), 1, anon_sym_extends, - ACTIONS(8869), 1, - anon_sym_COLON, - [228515] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7844), 1, - anon_sym_EQ, - STATE(5593), 1, - sym__initializer, - ACTIONS(8871), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [228529] = 5, + ACTIONS(8878), 1, + anon_sym_RBRACK, + [228556] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8873), 1, - sym_identifier, - ACTIONS(8875), 1, - sym_jsx_identifier, - STATE(5490), 1, - sym_nested_identifier, - STATE(6004), 1, - sym_jsx_namespace_name, - [228545] = 5, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5473), 1, + sym_type_parameters, + STATE(6025), 1, + sym_formal_parameters, + [228572] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8877), 1, - sym_identifier, - ACTIONS(8879), 1, - sym_jsx_identifier, - STATE(5507), 1, - sym_nested_identifier, - STATE(5967), 1, - sym_jsx_namespace_name, - [228561] = 4, - ACTIONS(7435), 1, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5516), 1, + sym_type_parameters, + STATE(5997), 1, + sym_formal_parameters, + [228588] = 4, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8633), 1, + ACTIONS(8850), 1, anon_sym_SQUOTE, - STATE(5034), 1, + STATE(5093), 1, aux_sym_string_repeat2, - ACTIONS(8881), 2, + ACTIONS(8880), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [228575] = 5, + [228602] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8417), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8419), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8883), 1, - anon_sym_QMARK, - [228591] = 5, + ACTIONS(8882), 1, + anon_sym_COLON, + [228618] = 4, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(8617), 1, + anon_sym_DQUOTE, + STATE(4919), 1, + aux_sym_string_repeat1, + ACTIONS(8884), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [228632] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(8381), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8383), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8885), 1, - anon_sym_RBRACK, - [228607] = 5, + ACTIONS(8886), 1, + anon_sym_RPAREN, + [228648] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(4979), 1, + anon_sym_LBRACE, + ACTIONS(4981), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [228660] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5689), 1, + sym_type_parameters, + STATE(5773), 1, + sym_formal_parameters, + [228676] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8887), 1, + ACTIONS(8888), 1, anon_sym_COLON, - [228623] = 5, + [228692] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, + ACTIONS(7888), 1, anon_sym_extends, - ACTIONS(8889), 1, + ACTIONS(8890), 1, anon_sym_COLON, - [228639] = 5, + [228708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6187), 1, + ACTIONS(4933), 1, + anon_sym_LBRACE, + ACTIONS(4935), 3, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACE_PIPE, - ACTIONS(6300), 1, + [228720] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5128), 1, anon_sym_LBRACE, - ACTIONS(8891), 1, + ACTIONS(5130), 3, anon_sym_COMMA, - STATE(5096), 1, - aux_sym_extends_clause_repeat1, - [228655] = 2, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [228732] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - [228665] = 4, - ACTIONS(7435), 1, + ACTIONS(8862), 1, + anon_sym_from, + STATE(5657), 1, + sym__from_clause, + ACTIONS(8892), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [228746] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, ACTIONS(8894), 1, - anon_sym_SQUOTE, - STATE(5066), 1, - aux_sym_string_repeat2, - ACTIONS(8896), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [228679] = 4, - ACTIONS(7435), 1, + anon_sym_COLON, + [228762] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7836), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [228772] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5708), 1, + sym_type_parameters, + STATE(6033), 1, + sym_formal_parameters, + [228788] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + ACTIONS(8896), 1, + anon_sym_COLON, + [228804] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8898), 1, + sym_identifier, + ACTIONS(8900), 1, + sym_jsx_identifier, + STATE(5705), 1, + sym_nested_identifier, + STATE(5713), 1, + sym_jsx_namespace_name, + [228820] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2970), 1, + anon_sym_LT, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5482), 1, + sym_type_parameters, + STATE(6020), 1, + sym_formal_parameters, + [228836] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8902), 1, + sym_identifier, + ACTIONS(8904), 1, + sym_jsx_identifier, + STATE(5622), 1, + sym_nested_identifier, + STATE(5858), 1, + sym_jsx_namespace_name, + [228852] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8906), 1, + sym_identifier, + ACTIONS(8908), 1, + sym_jsx_identifier, + STATE(5492), 1, + sym_nested_identifier, + STATE(6023), 1, + sym_jsx_namespace_name, + [228868] = 3, + ACTIONS(3), 1, + sym_comment, + STATE(5109), 1, + sym_type_predicate, + ACTIONS(8910), 2, + sym_identifier, + sym_this, + [228879] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8912), 1, + anon_sym_COMMA, + ACTIONS(8914), 1, + anon_sym_RBRACE, + STATE(5144), 1, + aux_sym_named_imports_repeat1, + [228892] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8894), 1, - anon_sym_DQUOTE, - STATE(5074), 1, - aux_sym_string_repeat1, - ACTIONS(8898), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [228693] = 5, + ACTIONS(7904), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [228901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5597), 1, - sym_type_parameters, - STATE(5733), 1, - sym_formal_parameters, - [228709] = 5, + ACTIONS(3158), 1, + anon_sym_while, + ACTIONS(8916), 1, + anon_sym_else, + STATE(1177), 1, + sym_else_clause, + [228914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_extends, - ACTIONS(8900), 1, - anon_sym_RBRACK, - [228725] = 5, + ACTIONS(8918), 1, + anon_sym_COMMA, + ACTIONS(8921), 1, + anon_sym_RBRACE, + STATE(5120), 1, + aux_sym_export_clause_repeat1, + [228927] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1998), 1, - anon_sym_while, - ACTIONS(3152), 1, - anon_sym_LBRACE, - ACTIONS(7245), 1, - anon_sym_DOT, - STATE(1121), 1, - sym_statement_block, - [228741] = 5, + ACTIONS(2267), 1, + anon_sym_DQUOTE, + ACTIONS(2269), 1, + anon_sym_SQUOTE, + STATE(5592), 1, + sym_string, + [228940] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8379), 1, - anon_sym_AMP, - ACTIONS(8381), 1, - anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_extends, - ACTIONS(8902), 1, - anon_sym_RBRACK, - [228757] = 5, + ACTIONS(8923), 1, + anon_sym_LPAREN, + ACTIONS(8925), 1, + anon_sym_await, + STATE(60), 1, + sym__for_header, + [228953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8904), 1, - sym_identifier, - ACTIONS(8906), 1, - sym_jsx_identifier, - STATE(5551), 1, - sym_nested_identifier, - STATE(5906), 1, - sym_jsx_namespace_name, - [228773] = 5, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(8927), 1, + anon_sym_GT, + [228966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5564), 1, + ACTIONS(8929), 1, + anon_sym_EQ, + STATE(5803), 1, sym_type_parameters, - STATE(5902), 1, - sym_formal_parameters, - [228789] = 4, + [228979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, - anon_sym_COMMA, - ACTIONS(8910), 1, - anon_sym_RBRACE, - STATE(5235), 1, - aux_sym_object_repeat1, - [228802] = 4, + STATE(5535), 1, + sym_type_predicate, + ACTIONS(8931), 2, + sym_identifier, + sym_this, + [228990] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - ACTIONS(8912), 1, - anon_sym_LPAREN, - STATE(1055), 1, - sym_statement_block, - [228815] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(6227), 1, + anon_sym_RPAREN, + STATE(4961), 1, + aux_sym_array_repeat1, + [229003] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(8914), 1, - anon_sym_RBRACE, - STATE(5188), 1, - aux_sym_object_repeat1, - [228828] = 2, + ACTIONS(6227), 1, + anon_sym_RPAREN, + STATE(5145), 1, + aux_sym_array_repeat1, + [229016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8916), 3, + ACTIONS(8933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228837] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6300), 1, - anon_sym_LBRACE, - ACTIONS(6187), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [228848] = 4, + [229025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3626), 1, + ACTIONS(3616), 1, anon_sym_RBRACK, - ACTIONS(8918), 1, + ACTIONS(8935), 1, anon_sym_COMMA, - STATE(5226), 1, + STATE(5280), 1, aux_sym_tuple_type_repeat1, - [228861] = 4, + [229038] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6912), 1, - anon_sym_RPAREN, - ACTIONS(8920), 1, + ACTIONS(8585), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5120), 1, - aux_sym_formal_parameters_repeat1, - [228874] = 4, + anon_sym_SEMI, + [229047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8487), 1, - anon_sym_GT, - ACTIONS(8922), 1, + ACTIONS(8937), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [228887] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5042), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [228896] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7830), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [228905] = 2, + anon_sym_SEMI, + [229056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8925), 3, + ACTIONS(8939), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [228914] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5265), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [228923] = 4, + [229065] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8927), 1, + ACTIONS(8941), 1, anon_sym_COMMA, - ACTIONS(8929), 1, + ACTIONS(8943), 1, anon_sym_RBRACE, - STATE(5159), 1, - aux_sym_named_imports_repeat1, - [228936] = 4, + STATE(5120), 1, + aux_sym_export_clause_repeat1, + [229078] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(8945), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8931), 1, - anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_array_repeat1, - [228949] = 4, + anon_sym_SEMI, + [229087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8933), 1, + ACTIONS(4507), 1, + anon_sym_GT, + ACTIONS(8947), 1, anon_sym_COMMA, - ACTIONS(8936), 1, - anon_sym_RPAREN, - STATE(5120), 1, - aux_sym_formal_parameters_repeat1, - [228962] = 4, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [229100] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6698), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [228975] = 2, + ACTIONS(6788), 1, + anon_sym_COMMA, + ACTIONS(8949), 1, + anon_sym_RBRACE, + STATE(5216), 1, + aux_sym_object_pattern_repeat1, + [229113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7808), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [228984] = 4, + ACTIONS(8367), 1, + anon_sym_GT, + ACTIONS(8951), 1, + anon_sym_COMMA, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [229126] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 1, - anon_sym_LPAREN, - ACTIONS(8940), 1, - anon_sym_await, - STATE(47), 1, - sym__for_header, - [228997] = 3, + ACTIONS(8954), 1, + anon_sym_COMMA, + ACTIONS(8956), 1, + anon_sym_RBRACE, + STATE(5223), 1, + aux_sym_object_repeat1, + [229139] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5352), 1, - anon_sym_LBRACE, - ACTIONS(5354), 2, + ACTIONS(8958), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [229008] = 4, + anon_sym_SEMI, + [229148] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(6298), 1, - anon_sym_RBRACK, - STATE(5191), 1, + ACTIONS(8960), 1, + anon_sym_RPAREN, + STATE(4961), 1, aux_sym_array_repeat1, - [229021] = 4, + [229161] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3624), 1, - anon_sym_RBRACK, - ACTIONS(8942), 1, + ACTIONS(8962), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5226), 1, - aux_sym_tuple_type_repeat1, - [229034] = 4, + anon_sym_SEMI, + [229170] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(8964), 1, + anon_sym_as, + ACTIONS(8966), 2, anon_sym_COMMA, - ACTIONS(6298), 1, - anon_sym_RBRACK, - STATE(5004), 1, - aux_sym_array_repeat1, - [229047] = 2, + anon_sym_RBRACE, + [229181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8944), 3, + ACTIONS(7752), 1, + anon_sym_DOT, + ACTIONS(8968), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [229056] = 4, + [229192] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7161), 1, + ACTIONS(8970), 1, + anon_sym_COMMA, + ACTIONS(8972), 1, anon_sym_RBRACE, - ACTIONS(8946), 1, + STATE(5163), 1, + aux_sym_named_imports_repeat1, + [229205] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(8974), 1, + anon_sym_RPAREN, + STATE(4961), 1, + aux_sym_array_repeat1, + [229218] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8517), 1, anon_sym_COMMA, - STATE(5334), 1, + ACTIONS(8519), 1, + anon_sym_RBRACE, + STATE(5148), 1, aux_sym_enum_body_repeat1, - [229069] = 4, + [229231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 1, - anon_sym_GT, - ACTIONS(8948), 1, + ACTIONS(8976), 1, anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [229082] = 4, + ACTIONS(8978), 1, + anon_sym_RBRACE, + STATE(5231), 1, + aux_sym_export_clause_repeat1, + [229244] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(7173), 1, + anon_sym_RBRACE, + ACTIONS(8980), 1, anon_sym_COMMA, - ACTIONS(8950), 1, - anon_sym_RBRACK, - STATE(5004), 1, - aux_sym_array_repeat1, - [229095] = 2, + STATE(5192), 1, + aux_sym_enum_body_repeat1, + [229257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8952), 3, + ACTIONS(8933), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229104] = 4, + [229266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4617), 1, + ACTIONS(4439), 1, anon_sym_GT, - ACTIONS(8954), 1, + ACTIONS(8982), 1, anon_sym_COMMA, - STATE(5113), 1, + STATE(5137), 1, aux_sym_implements_clause_repeat1, - [229117] = 4, + [229279] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(8956), 1, - anon_sym_GT, - [229130] = 2, + ACTIONS(8984), 1, + anon_sym_COMMA, + ACTIONS(8987), 1, + anon_sym_RPAREN, + STATE(5151), 1, + aux_sym_formal_parameters_repeat1, + [229292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8958), 3, - sym__automatic_semicolon, + ACTIONS(8954), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229139] = 2, + ACTIONS(8956), 1, + anon_sym_RBRACE, + STATE(5230), 1, + aux_sym_object_repeat1, + [229305] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8859), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [229148] = 4, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2247), 1, + anon_sym_LBRACE, + STATE(4899), 1, + sym_object_type, + [229318] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, + ACTIONS(8989), 1, sym_identifier, - ACTIONS(7840), 1, - anon_sym_LBRACK, - ACTIONS(7842), 1, - sym_private_property_identifier, - [229161] = 4, + ACTIONS(8991), 1, + anon_sym_LBRACE, + STATE(1077), 1, + sym_export_clause, + [229331] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8960), 1, - sym_identifier, - ACTIONS(8962), 1, - anon_sym_require, - STATE(5158), 1, - sym_nested_identifier, - [229174] = 2, + ACTIONS(8862), 1, + anon_sym_from, + ACTIONS(8993), 1, + anon_sym_as, + STATE(5702), 1, + sym__from_clause, + [229344] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8964), 3, - sym__automatic_semicolon, + ACTIONS(6788), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229183] = 2, + ACTIONS(8949), 1, + anon_sym_RBRACE, + STATE(5232), 1, + aux_sym_object_pattern_repeat1, + [229357] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8954), 1, + anon_sym_COMMA, + ACTIONS(8995), 1, + anon_sym_RBRACE, + STATE(5230), 1, + aux_sym_object_repeat1, + [229370] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8966), 3, + ACTIONS(8997), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229192] = 4, + [229379] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, + ACTIONS(6788), 1, anon_sym_COMMA, - ACTIONS(8968), 1, + ACTIONS(8999), 1, anon_sym_RBRACE, - STATE(5214), 1, + STATE(5232), 1, aux_sym_object_pattern_repeat1, - [229205] = 4, + [229392] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, - anon_sym_COMMA, - ACTIONS(8910), 1, - anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [229218] = 2, - ACTIONS(7435), 1, + ACTIONS(2453), 1, + anon_sym_LBRACE, + ACTIONS(9001), 1, + sym_identifier, + STATE(4641), 1, + sym_export_clause, + [229405] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8970), 3, + ACTIONS(5352), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [229227] = 2, + [229414] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8966), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [229236] = 4, + ACTIONS(3158), 1, + anon_sym_while, + ACTIONS(9003), 1, + anon_sym_else, + STATE(1177), 1, + sym_else_clause, + [229427] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(9005), 1, anon_sym_COMMA, - ACTIONS(6296), 1, - anon_sym_RPAREN, - STATE(5271), 1, - aux_sym_array_repeat1, - [229249] = 3, + ACTIONS(9008), 1, + anon_sym_RBRACE, + STATE(5163), 1, + aux_sym_named_imports_repeat1, + [229440] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8625), 1, - anon_sym_EQ, - ACTIONS(8972), 2, + ACTIONS(9010), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [229260] = 2, + anon_sym_SEMI, + [229449] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8974), 3, + ACTIONS(9012), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229269] = 4, + [229458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, + ACTIONS(6788), 1, anon_sym_COMMA, - ACTIONS(8968), 1, + ACTIONS(9014), 1, anon_sym_RBRACE, - STATE(5249), 1, + STATE(5314), 1, aux_sym_object_pattern_repeat1, - [229282] = 4, + [229471] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8954), 1, + anon_sym_COMMA, + ACTIONS(9016), 1, + anon_sym_RBRACE, + STATE(5306), 1, + aux_sym_object_repeat1, + [229484] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1762), 1, + ACTIONS(1746), 1, anon_sym_DQUOTE, - ACTIONS(1764), 1, + ACTIONS(1748), 1, anon_sym_SQUOTE, - STATE(5862), 1, + STATE(6090), 1, sym_string, - [229295] = 4, + [229497] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(4971), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [229506] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8976), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(8979), 1, + ACTIONS(9016), 1, anon_sym_RBRACE, - STATE(5150), 1, - aux_sym_named_imports_repeat1, - [229308] = 4, + STATE(5230), 1, + aux_sym_object_repeat1, + [229519] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(6788), 1, anon_sym_COMMA, - ACTIONS(8981), 1, + ACTIONS(9014), 1, anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [229321] = 2, + STATE(5232), 1, + aux_sym_object_pattern_repeat1, + [229532] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8983), 3, + ACTIONS(8962), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229330] = 2, + [229541] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8985), 3, + ACTIONS(9018), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229339] = 2, + [229550] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(9020), 1, + anon_sym_GT, + [229563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8987), 3, + ACTIONS(9022), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229348] = 2, - ACTIONS(7435), 1, + [229572] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9010), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [229581] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(5101), 3, + ACTIONS(8468), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [229357] = 3, + [229590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5290), 1, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(9024), 1, + anon_sym_GT, + [229603] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(5138), 3, anon_sym_LBRACE, - ACTIONS(5292), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [229368] = 2, + anon_sym_LT, + sym_jsx_text, + [229612] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8989), 3, + ACTIONS(9010), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229377] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7746), 1, - anon_sym_DOT, - ACTIONS(8991), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [229388] = 4, + [229621] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8993), 1, + ACTIONS(9026), 1, anon_sym_COMMA, - ACTIONS(8995), 1, - anon_sym_RBRACE, - STATE(5150), 1, - aux_sym_named_imports_repeat1, - [229401] = 4, + ACTIONS(9028), 1, + anon_sym_RBRACK, + STATE(5129), 1, + aux_sym_tuple_type_repeat1, + [229634] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8997), 1, + ACTIONS(2326), 1, anon_sym_COMMA, - ACTIONS(8999), 1, + ACTIONS(8659), 1, anon_sym_RBRACK, - STATE(5126), 1, - aux_sym_tuple_type_repeat1, - [229414] = 4, + STATE(5329), 1, + aux_sym_array_pattern_repeat1, + [229647] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9001), 1, + ACTIONS(7854), 1, + sym_identifier, + ACTIONS(7856), 1, + anon_sym_LBRACK, + ACTIONS(7858), 1, + sym_private_property_identifier, + [229660] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4609), 1, + anon_sym_GT, + ACTIONS(9030), 1, anon_sym_COMMA, - ACTIONS(9003), 1, - anon_sym_RBRACK, - STATE(5165), 1, - aux_sym_tuple_type_repeat1, - [229427] = 2, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [229673] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8964), 3, + ACTIONS(8962), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229436] = 4, + [229682] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(9005), 1, - anon_sym_RBRACE, - STATE(5214), 1, - aux_sym_object_pattern_repeat1, - [229449] = 4, + ACTIONS(9032), 1, + sym_identifier, + ACTIONS(9034), 1, + anon_sym_GT, + STATE(5639), 1, + sym_type_parameter, + [229695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7736), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [229462] = 4, + ACTIONS(7752), 1, + anon_sym_DOT, + ACTIONS(9036), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [229706] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7840), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [229715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3614), 1, + ACTIONS(3610), 1, anon_sym_RBRACK, - ACTIONS(9007), 1, + ACTIONS(9038), 1, anon_sym_COMMA, - STATE(5226), 1, + STATE(5280), 1, aux_sym_tuple_type_repeat1, - [229475] = 2, + [229728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9009), 3, + ACTIONS(9040), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229484] = 2, + [229737] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 3, - sym__automatic_semicolon, + ACTIONS(7167), 1, + anon_sym_RBRACE, + ACTIONS(9042), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229493] = 2, + STATE(5192), 1, + aux_sym_enum_body_repeat1, + [229750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9013), 3, - sym__automatic_semicolon, + ACTIONS(8824), 1, + anon_sym_RBRACE, + ACTIONS(9044), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229502] = 2, + STATE(5192), 1, + aux_sym_enum_body_repeat1, + [229763] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(9047), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [229772] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8966), 3, - sym__automatic_semicolon, + ACTIONS(3622), 1, + anon_sym_RBRACK, + ACTIONS(9049), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229511] = 2, + STATE(5280), 1, + aux_sym_tuple_type_repeat1, + [229785] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9015), 3, - sym__automatic_semicolon, + ACTIONS(9051), 1, + anon_sym_EQ, + ACTIONS(9053), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229520] = 4, + ACTIONS(9055), 1, + anon_sym_from, + [229798] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(6113), 1, - anon_sym_RBRACK, - STATE(5004), 1, + ACTIONS(9057), 1, + anon_sym_RPAREN, + STATE(4961), 1, aux_sym_array_repeat1, - [229533] = 4, + [229811] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9059), 1, + anon_sym_LBRACE, + ACTIONS(8552), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [229822] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, + ACTIONS(9061), 1, anon_sym_COMMA, - ACTIONS(9017), 1, - anon_sym_RBRACE, - STATE(5214), 1, - aux_sym_object_pattern_repeat1, - [229546] = 4, + ACTIONS(9063), 1, + anon_sym_RPAREN, + STATE(5291), 1, + aux_sym_formal_parameters_repeat1, + [229835] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9065), 1, + sym_identifier, + STATE(3713), 1, + sym_decorator_member_expression, + STATE(3753), 1, + sym_decorator_call_expression, + [229848] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8545), 1, anon_sym_COMMA, - ACTIONS(9019), 1, + ACTIONS(8547), 1, anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [229559] = 4, + STATE(5191), 1, + aux_sym_enum_body_repeat1, + [229861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5804), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [229572] = 4, + ACTIONS(9067), 1, + anon_sym_EQ, + ACTIONS(4499), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [229872] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(9069), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [229881] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7980), 1, - anon_sym_extends, - [229585] = 4, + ACTIONS(640), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1918), 1, + anon_sym_LBRACE, + STATE(1196), 1, + sym_object_type, + [229894] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9021), 1, + ACTIONS(2326), 1, anon_sym_COMMA, - ACTIONS(9023), 1, - anon_sym_RPAREN, - STATE(5112), 1, - aux_sym_formal_parameters_repeat1, - [229598] = 3, + ACTIONS(8778), 1, + anon_sym_RBRACK, + STATE(5284), 1, + aux_sym_array_pattern_repeat1, + [229907] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(9047), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [229916] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(9047), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [229925] = 4, ACTIONS(3), 1, sym_comment, - STATE(5539), 1, - sym_type_predicate, - ACTIONS(9025), 2, - sym_identifier, - sym_this, - [229609] = 2, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(9071), 1, + anon_sym_GT, + [229938] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9011), 3, - sym__automatic_semicolon, + ACTIONS(9073), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229618] = 4, + ACTIONS(9075), 1, + anon_sym_RPAREN, + STATE(5293), 1, + aux_sym_formal_parameters_repeat1, + [229951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7922), 1, - sym_identifier, - ACTIONS(7924), 1, - anon_sym_LBRACK, - ACTIONS(7926), 1, - sym_private_property_identifier, - [229631] = 2, + ACTIONS(4563), 1, + anon_sym_GT, + ACTIONS(9077), 1, + anon_sym_COMMA, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [229964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8964), 3, - sym__automatic_semicolon, + ACTIONS(2357), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229640] = 2, - ACTIONS(7435), 1, + ACTIONS(9079), 1, + anon_sym_RPAREN, + STATE(4961), 1, + aux_sym_array_repeat1, + [229977] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(9027), 3, + ACTIONS(5037), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [229649] = 2, - ACTIONS(3), 1, + [229986] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(8952), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [229658] = 4, + ACTIONS(9047), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [229995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(9029), 1, + ACTIONS(9081), 1, anon_sym_RBRACE, - STATE(5219), 1, + STATE(5247), 1, aux_sym_object_repeat1, - [229671] = 2, + [230008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 3, - sym__automatic_semicolon, + ACTIONS(2357), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229680] = 2, + ACTIONS(6283), 1, + anon_sym_RBRACK, + STATE(5285), 1, + aux_sym_array_repeat1, + [230021] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9009), 3, - sym__automatic_semicolon, + ACTIONS(9083), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229689] = 4, + ACTIONS(9085), 1, + anon_sym_RBRACK, + STATE(5194), 1, + aux_sym_tuple_type_repeat1, + [230034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9033), 1, + ACTIONS(6788), 1, anon_sym_COMMA, - ACTIONS(9035), 1, - anon_sym_GT, - STATE(5207), 1, - aux_sym_type_parameters_repeat1, - [229702] = 3, + ACTIONS(9087), 1, + anon_sym_RBRACE, + STATE(5232), 1, + aux_sym_object_pattern_repeat1, + [230047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4975), 1, + ACTIONS(9089), 1, anon_sym_LBRACE, - ACTIONS(4977), 2, - anon_sym_COMMA, + ACTIONS(8357), 2, + anon_sym_extends, anon_sym_LBRACE_PIPE, - [229713] = 4, + [230058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(9037), 1, + ACTIONS(9081), 1, anon_sym_RBRACE, - STATE(5219), 1, + STATE(5230), 1, aux_sym_object_repeat1, - [229726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5064), 1, - anon_sym_LBRACE, - ACTIONS(5066), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [229737] = 4, + [230071] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(9039), 1, + ACTIONS(9032), 1, + sym_identifier, + ACTIONS(9091), 1, anon_sym_GT, - [229750] = 4, + STATE(5639), 1, + sym_type_parameter, + [230084] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(9093), 1, anon_sym_COMMA, - ACTIONS(9041), 1, - anon_sym_RBRACK, - STATE(5004), 1, - aux_sym_array_repeat1, - [229763] = 4, + ACTIONS(9096), 1, + anon_sym_GT, + STATE(5220), 1, + aux_sym_type_parameters_repeat1, + [230097] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6942), 1, - anon_sym_RPAREN, - ACTIONS(9043), 1, + ACTIONS(9098), 1, anon_sym_COMMA, - STATE(5120), 1, + ACTIONS(9100), 1, + anon_sym_RPAREN, + STATE(5250), 1, aux_sym_formal_parameters_repeat1, - [229776] = 4, + [230110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9045), 1, + ACTIONS(9102), 1, sym_identifier, - STATE(3695), 1, - sym_decorator_member_expression, - STATE(3758), 1, - sym_decorator_call_expression, - [229789] = 4, + ACTIONS(9104), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [230121] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(6180), 1, - anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_array_repeat1, - [229802] = 4, + ACTIONS(9106), 1, + anon_sym_RBRACE, + STATE(5230), 1, + aux_sym_object_repeat1, + [230134] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9108), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230143] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6683), 1, + ACTIONS(5809), 1, anon_sym_extends, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - [229815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(6180), 1, - anon_sym_RPAREN, - STATE(5119), 1, - aux_sym_array_repeat1, - [229828] = 4, + [230156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9047), 1, + ACTIONS(9110), 1, sym_identifier, - ACTIONS(9049), 1, - anon_sym_GT, - STATE(5511), 1, - sym_type_parameter, - [229841] = 2, + ACTIONS(9112), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [230167] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9051), 3, + ACTIONS(9114), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229850] = 4, + [230176] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(4945), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [230185] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9053), 1, - anon_sym_LPAREN, - ACTIONS(9055), 1, - anon_sym_await, - STATE(46), 1, - sym__for_header, - [229863] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(6274), 1, + anon_sym_RBRACK, + STATE(4961), 1, + aux_sym_array_repeat1, + [230198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 1, - anon_sym_from, - ACTIONS(9057), 1, - anon_sym_as, - STATE(5562), 1, - sym__from_clause, - [229876] = 2, + ACTIONS(9116), 1, + anon_sym_COMMA, + ACTIONS(9119), 1, + anon_sym_RBRACE, + STATE(5230), 1, + aux_sym_object_repeat1, + [230211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 3, - sym__automatic_semicolon, + ACTIONS(9121), 1, anon_sym_COMMA, - anon_sym_SEMI, - [229885] = 3, + ACTIONS(9123), 1, + anon_sym_RBRACE, + STATE(5120), 1, + aux_sym_export_clause_repeat1, + [230224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 1, - anon_sym_EQ, - ACTIONS(4666), 2, - anon_sym_in, - anon_sym_of, - [229896] = 4, + ACTIONS(9125), 1, + anon_sym_COMMA, + ACTIONS(9128), 1, + anon_sym_RBRACE, + STATE(5232), 1, + aux_sym_object_pattern_repeat1, + [230237] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(6294), 1, + ACTIONS(6298), 1, anon_sym_RPAREN, - STATE(5335), 1, + STATE(4961), 1, aux_sym_array_repeat1, - [229909] = 4, + [230250] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(9061), 1, + ACTIONS(6283), 1, anon_sym_RBRACK, - STATE(5004), 1, + STATE(4961), 1, aux_sym_array_repeat1, - [229922] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6786), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [229935] = 4, + [230263] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(6294), 1, + ACTIONS(6298), 1, anon_sym_RPAREN, - STATE(5004), 1, + STATE(5140), 1, aux_sym_array_repeat1, - [229948] = 4, + [230276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9049), 1, - anon_sym_GT, - ACTIONS(9063), 1, + ACTIONS(9130), 1, + anon_sym_as, + ACTIONS(9132), 2, anon_sym_COMMA, - STATE(5248), 1, - aux_sym_type_parameters_repeat1, - [229961] = 2, + anon_sym_RBRACE, + [230287] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(4975), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [230296] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(8035), 1, + anon_sym_extends, + [230309] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9065), 3, + ACTIONS(9134), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229970] = 2, + [230318] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7874), 1, + sym_identifier, + ACTIONS(7876), 1, + anon_sym_LBRACK, + ACTIONS(7878), 1, + sym_private_property_identifier, + [230331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9031), 3, + ACTIONS(9136), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [229979] = 3, + [230340] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9067), 1, + ACTIONS(5962), 1, + anon_sym_COLON, + ACTIONS(9138), 1, + anon_sym_RPAREN, + STATE(6087), 1, + sym_type_annotation, + [230353] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(4967), 3, anon_sym_LBRACE, - ACTIONS(8396), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [229990] = 4, + anon_sym_LT, + sym_jsx_text, + [230362] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9069), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(9071), 1, - anon_sym_GT, - STATE(5254), 1, - aux_sym_type_parameters_repeat1, - [230003] = 4, + ACTIONS(9140), 1, + anon_sym_RBRACE, + STATE(5230), 1, + aux_sym_object_repeat1, + [230375] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(9053), 1, anon_sym_COMMA, - ACTIONS(8764), 1, - anon_sym_RBRACK, - STATE(5273), 1, - aux_sym_array_pattern_repeat1, - [230016] = 4, + ACTIONS(9055), 1, + anon_sym_from, + ACTIONS(9142), 1, + anon_sym_EQ, + [230388] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9073), 1, + ACTIONS(9067), 1, + anon_sym_EQ, + ACTIONS(4691), 2, anon_sym_COMMA, - ACTIONS(9075), 1, anon_sym_RBRACE, - STATE(5252), 1, - aux_sym_export_clause_repeat1, - [230029] = 4, + [230399] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9077), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(9080), 1, + ACTIONS(9144), 1, anon_sym_RBRACE, - STATE(5214), 1, - aux_sym_object_pattern_repeat1, - [230042] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7449), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [230055] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9082), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [230064] = 4, + STATE(5230), 1, + aux_sym_object_repeat1, + [230412] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(6280), 1, + ACTIONS(6231), 1, anon_sym_RPAREN, - STATE(5004), 1, + STATE(4961), 1, aux_sym_array_repeat1, - [230077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6729), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [230090] = 4, + [230425] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(9087), 1, - anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [230103] = 4, + ACTIONS(6231), 1, + anon_sym_RPAREN, + STATE(5210), 1, + aux_sym_array_repeat1, + [230438] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9089), 1, + ACTIONS(6860), 1, + anon_sym_RPAREN, + ACTIONS(9146), 1, anon_sym_COMMA, - ACTIONS(9092), 1, - anon_sym_RBRACE, - STATE(5220), 1, - aux_sym_export_clause_repeat1, - [230116] = 4, + STATE(5151), 1, + aux_sym_formal_parameters_repeat1, + [230451] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(6280), 1, - anon_sym_RPAREN, - STATE(5299), 1, + ACTIONS(9148), 1, + anon_sym_RBRACK, + STATE(4961), 1, aux_sym_array_repeat1, - [230129] = 4, + [230464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(2326), 1, anon_sym_COMMA, - ACTIONS(6275), 1, + ACTIONS(8778), 1, anon_sym_RBRACK, - STATE(5004), 1, - aux_sym_array_repeat1, - [230142] = 3, + STATE(5340), 1, + aux_sym_array_pattern_repeat1, + [230477] = 4, ACTIONS(3), 1, sym_comment, - STATE(5539), 1, - sym_type_predicate, - ACTIONS(9094), 2, - sym_identifier, - sym_this, - [230153] = 4, + ACTIONS(9150), 1, + anon_sym_COMMA, + ACTIONS(9152), 1, + anon_sym_RBRACK, + STATE(5189), 1, + aux_sym_tuple_type_repeat1, + [230490] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(9114), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9096), 1, - anon_sym_RBRACK, - STATE(5273), 1, - aux_sym_array_pattern_repeat1, - [230166] = 4, + anon_sym_SEMI, + [230499] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7742), 1, - anon_sym_extends, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - [230179] = 4, - ACTIONS(3), 1, + ACTIONS(8373), 1, + anon_sym_extends, + [230512] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(9098), 1, - anon_sym_COMMA, - ACTIONS(9101), 1, - anon_sym_RBRACK, - STATE(5226), 1, - aux_sym_tuple_type_repeat1, - [230192] = 2, + ACTIONS(4967), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [230521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7798), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [230201] = 4, + ACTIONS(9154), 1, + sym_identifier, + ACTIONS(9156), 1, + anon_sym_require, + STATE(5143), 1, + sym_nested_identifier, + [230534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3630), 1, - anon_sym_RBRACK, - ACTIONS(9103), 1, + ACTIONS(9158), 1, anon_sym_COMMA, - STATE(5226), 1, - aux_sym_tuple_type_repeat1, - [230214] = 4, + ACTIONS(9160), 1, + anon_sym_GT, + STATE(5265), 1, + aux_sym_type_parameters_repeat1, + [230547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6800), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [230227] = 4, + ACTIONS(8153), 1, + anon_sym_COMMA, + ACTIONS(9162), 1, + anon_sym_LBRACE, + STATE(5320), 1, + aux_sym_implements_clause_repeat1, + [230560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(6275), 1, - anon_sym_RBRACK, - STATE(5204), 1, - aux_sym_array_repeat1, - [230240] = 2, - ACTIONS(7435), 1, + STATE(5535), 1, + sym_type_predicate, + ACTIONS(9164), 2, + sym_identifier, + sym_this, + [230571] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(9105), 3, + ACTIONS(4967), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [230249] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2325), 1, - anon_sym_COMMA, - ACTIONS(8764), 1, - anon_sym_RBRACK, - STATE(5224), 1, - aux_sym_array_pattern_repeat1, - [230262] = 2, - ACTIONS(7435), 1, + [230580] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(5144), 3, + ACTIONS(4967), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [230271] = 4, + [230589] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9166), 1, + anon_sym_LPAREN, + ACTIONS(9168), 1, + anon_sym_await, + STATE(40), 1, + sym__for_header, + [230602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(764), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2247), 1, + anon_sym_LBRACE, + STATE(4716), 1, + sym_object_type, + [230615] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(9170), 1, anon_sym_COMMA, - ACTIONS(8627), 1, - anon_sym_RBRACK, - STATE(5273), 1, - aux_sym_array_pattern_repeat1, - [230284] = 4, + ACTIONS(9172), 1, + anon_sym_GT, + STATE(5220), 1, + aux_sym_type_parameters_repeat1, + [230628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9032), 1, + sym_identifier, + ACTIONS(9172), 1, + anon_sym_GT, + STATE(5639), 1, + sym_type_parameter, + [230641] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7748), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [230654] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(9107), 1, - anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [230297] = 2, + ACTIONS(6272), 1, + anon_sym_RPAREN, + STATE(5309), 1, + aux_sym_array_repeat1, + [230667] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(6272), 1, + anon_sym_RPAREN, + STATE(4961), 1, + aux_sym_array_repeat1, + [230680] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9082), 3, + ACTIONS(9174), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230306] = 2, - ACTIONS(7435), 1, + [230689] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230315] = 3, + ACTIONS(5944), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [230702] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9109), 1, - anon_sym_EQ, - ACTIONS(4535), 2, + ACTIONS(9176), 1, + anon_sym_LPAREN, + ACTIONS(9178), 1, + anon_sym_await, + STATE(36), 1, + sym__for_header, + [230715] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9180), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [230326] = 2, + ACTIONS(9182), 1, + anon_sym_RBRACK, + STATE(5294), 1, + aux_sym_tuple_type_repeat1, + [230728] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9111), 3, + ACTIONS(9184), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [230335] = 2, - ACTIONS(7435), 1, + [230737] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(9027), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230344] = 2, - ACTIONS(7435), 1, + ACTIONS(6694), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [230750] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6782), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [230763] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(9027), 3, + ACTIONS(8386), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [230353] = 4, + [230772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4625), 1, - anon_sym_GT, - ACTIONS(9113), 1, - anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [230366] = 4, + STATE(4583), 1, + sym_type_predicate, + ACTIONS(9186), 2, + sym_identifier, + sym_this, + [230783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, - anon_sym_COMMA, - ACTIONS(8914), 1, - anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [230379] = 4, + ACTIONS(7441), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [230796] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9047), 1, - sym_identifier, - ACTIONS(9115), 1, - anon_sym_GT, - STATE(5511), 1, - sym_type_parameter, - [230392] = 4, + ACTIONS(9188), 1, + anon_sym_COMMA, + ACTIONS(9191), 1, + anon_sym_RBRACK, + STATE(5280), 1, + aux_sym_tuple_type_repeat1, + [230809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9047), 1, - sym_identifier, - ACTIONS(9117), 1, - anon_sym_GT, - STATE(5511), 1, - sym_type_parameter, - [230405] = 4, + ACTIONS(9174), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [230818] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9119), 1, + ACTIONS(9193), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9121), 1, - anon_sym_RPAREN, - STATE(5192), 1, - aux_sym_formal_parameters_repeat1, - [230418] = 3, + anon_sym_SEMI, + [230827] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9123), 1, + ACTIONS(7537), 1, + anon_sym_implements, + ACTIONS(9195), 1, anon_sym_LBRACE, - ACTIONS(8413), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [230429] = 4, + STATE(6100), 1, + sym_implements_clause, + [230840] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9125), 1, + ACTIONS(2326), 1, anon_sym_COMMA, - ACTIONS(9128), 1, + ACTIONS(9197), 1, + anon_sym_RBRACK, + STATE(5340), 1, + aux_sym_array_pattern_repeat1, + [230853] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(9199), 1, + anon_sym_RBRACK, + STATE(4961), 1, + aux_sym_array_repeat1, + [230866] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4400), 1, anon_sym_GT, - STATE(5248), 1, - aux_sym_type_parameters_repeat1, - [230442] = 4, + ACTIONS(9201), 1, + anon_sym_COMMA, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [230879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(9130), 1, - anon_sym_RBRACE, - STATE(5214), 1, - aux_sym_object_pattern_repeat1, - [230455] = 4, + ACTIONS(9203), 1, + anon_sym_EQ, + ACTIONS(4654), 2, + anon_sym_in, + anon_sym_of, + [230890] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(6684), 1, + anon_sym_extends, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(8383), 1, - anon_sym_extends, - [230468] = 4, + [230903] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(9132), 1, - anon_sym_GT, - [230481] = 4, + ACTIONS(7724), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [230916] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9134), 1, + ACTIONS(9205), 1, anon_sym_COMMA, - ACTIONS(9136), 1, - anon_sym_RBRACE, - STATE(5220), 1, - aux_sym_export_clause_repeat1, - [230494] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5324), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230503] = 4, + ACTIONS(9207), 1, + anon_sym_RBRACK, + STATE(5335), 1, + aux_sym_tuple_type_repeat1, + [230929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9115), 1, - anon_sym_GT, - ACTIONS(9138), 1, + ACTIONS(6964), 1, + anon_sym_RPAREN, + ACTIONS(9209), 1, anon_sym_COMMA, - STATE(5248), 1, - aux_sym_type_parameters_repeat1, - [230516] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5030), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230525] = 2, + STATE(5151), 1, + aux_sym_formal_parameters_repeat1, + [230942] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7876), 3, + ACTIONS(7848), 3, anon_sym_LBRACE, anon_sym_COLON, anon_sym_EQ_GT, - [230534] = 3, + [230951] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5374), 1, - anon_sym_LBRACE, - ACTIONS(5376), 2, + ACTIONS(6946), 1, + anon_sym_RPAREN, + ACTIONS(9211), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [230545] = 2, - ACTIONS(7435), 1, + STATE(5151), 1, + aux_sym_formal_parameters_repeat1, + [230964] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8554), 3, + ACTIONS(3620), 1, + anon_sym_RBRACK, + ACTIONS(9213), 1, + anon_sym_COMMA, + STATE(5280), 1, + aux_sym_tuple_type_repeat1, + [230977] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3624), 1, + anon_sym_RBRACK, + ACTIONS(9215), 1, + anon_sym_COMMA, + STATE(5280), 1, + aux_sym_tuple_type_repeat1, + [230990] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(9217), 3, anon_sym_LBRACE, anon_sym_LT, sym_jsx_text, - [230554] = 4, + [230999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6862), 1, + ACTIONS(6798), 1, anon_sym_extends, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - [230567] = 4, + [231012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1918), 1, - anon_sym_LBRACE, - STATE(1204), 1, - sym_object_type, - [230580] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5132), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230589] = 4, + ACTIONS(6700), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [231025] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9140), 1, - anon_sym_COMMA, - ACTIONS(9142), 1, - anon_sym_RBRACK, - STATE(5302), 1, - aux_sym_tuple_type_repeat1, - [230602] = 4, + ACTIONS(6898), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [231038] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4503), 1, - anon_sym_GT, - ACTIONS(9144), 1, - anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [230615] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5140), 3, + ACTIONS(3142), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230624] = 4, + ACTIONS(9219), 1, + anon_sym_LPAREN, + STATE(1071), 1, + sym_statement_block, + [231051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4495), 1, - anon_sym_GT, - ACTIONS(9146), 1, - anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [230637] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5074), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230646] = 4, + ACTIONS(6534), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [231064] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(9148), 1, - anon_sym_RBRACE, - STATE(5214), 1, - aux_sym_object_pattern_repeat1, - [230659] = 4, + ACTIONS(6274), 1, + anon_sym_RBRACK, + STATE(5251), 1, + aux_sym_array_repeat1, + [231077] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8862), 1, + anon_sym_from, + ACTIONS(8993), 1, + anon_sym_as, + STATE(5607), 1, + sym__from_clause, + [231090] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6475), 1, + ACTIONS(6675), 1, anon_sym_extends, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - [230672] = 2, - ACTIONS(7435), 1, + [231103] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(8433), 3, + ACTIONS(7912), 3, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230681] = 4, + anon_sym_COLON, + anon_sym_EQ_GT, + [231112] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, - anon_sym_LT, - ACTIONS(9150), 1, - anon_sym_EQ, - STATE(5806), 1, - sym_type_parameters, - [230694] = 4, + ACTIONS(8954), 1, + anon_sym_COMMA, + ACTIONS(9221), 1, + anon_sym_RBRACE, + STATE(5230), 1, + aux_sym_object_repeat1, + [231125] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(9152), 1, + ACTIONS(6233), 1, anon_sym_RPAREN, - STATE(5004), 1, + STATE(4961), 1, aux_sym_array_repeat1, - [230707] = 4, + [231138] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(9154), 1, - anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [230720] = 4, + ACTIONS(6233), 1, + anon_sym_RPAREN, + STATE(5196), 1, + aux_sym_array_repeat1, + [231151] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8972), 1, - anon_sym_RBRACK, - ACTIONS(9156), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - STATE(5273), 1, - aux_sym_array_pattern_repeat1, - [230733] = 4, + ACTIONS(9223), 1, + anon_sym_RPAREN, + STATE(4961), 1, + aux_sym_array_repeat1, + [231164] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6675), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [230746] = 2, + ACTIONS(4569), 1, + anon_sym_GT, + ACTIONS(9225), 1, + anon_sym_COMMA, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [231177] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9159), 3, - sym__automatic_semicolon, + ACTIONS(9227), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - [230755] = 4, + anon_sym_implements, + [231186] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [230768] = 4, + ACTIONS(6260), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + [231195] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(7356), 1, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(9161), 1, + ACTIONS(9229), 1, anon_sym_GT, - [230781] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(9163), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230790] = 4, + [231208] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, + ACTIONS(6788), 1, anon_sym_COMMA, - ACTIONS(8536), 1, + ACTIONS(9231), 1, anon_sym_RBRACE, - STATE(5129), 1, - aux_sym_enum_body_repeat1, - [230803] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4545), 1, - anon_sym_GT, - ACTIONS(9165), 1, - anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [230816] = 4, + STATE(5232), 1, + aux_sym_object_pattern_repeat1, + [231221] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(8657), 1, + anon_sym_EQ, + ACTIONS(9233), 2, anon_sym_COMMA, - ACTIONS(9167), 1, - anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_array_repeat1, - [230829] = 4, + anon_sym_RBRACK, + [231232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(6788), 1, anon_sym_COMMA, - ACTIONS(9154), 1, + ACTIONS(9235), 1, anon_sym_RBRACE, - STATE(5173), 1, - aux_sym_object_repeat1, - [230842] = 4, + STATE(5232), 1, + aux_sym_object_pattern_repeat1, + [231245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, - anon_sym_COMMA, - ACTIONS(9148), 1, - anon_sym_RBRACE, - STATE(5172), 1, - aux_sym_object_pattern_repeat1, - [230855] = 4, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(9237), 1, + anon_sym_GT, + [231258] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(6134), 3, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(9169), 1, - anon_sym_RBRACE, - STATE(5345), 1, - aux_sym_object_repeat1, - [230868] = 4, + anon_sym_implements, + [231267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(9169), 1, + ACTIONS(9239), 1, anon_sym_RBRACE, - STATE(5219), 1, + STATE(5230), 1, aux_sym_object_repeat1, - [230881] = 4, + [231280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9171), 1, - anon_sym_COMMA, - ACTIONS(9173), 1, - anon_sym_RPAREN, - STATE(5352), 1, - aux_sym_formal_parameters_repeat1, - [230894] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5132), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230903] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5132), 3, - anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230912] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(5132), 3, + ACTIONS(8367), 1, anon_sym_LBRACE, - anon_sym_LT, - sym_jsx_text, - [230921] = 4, + ACTIONS(9241), 1, + anon_sym_COMMA, + STATE(5320), 1, + aux_sym_implements_clause_repeat1, + [231293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 1, + ACTIONS(640), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, + ACTIONS(1918), 1, anon_sym_LBRACE, - STATE(4751), 1, + STATE(1137), 1, sym_object_type, - [230934] = 4, + [231306] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(4611), 1, + anon_sym_GT, + ACTIONS(9244), 1, anon_sym_COMMA, - ACTIONS(6219), 1, - anon_sym_RBRACK, - STATE(5353), 1, - aux_sym_array_repeat1, - [230947] = 4, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [231319] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(9246), 1, anon_sym_COMMA, - ACTIONS(6219), 1, - anon_sym_RBRACK, - STATE(5004), 1, - aux_sym_array_repeat1, - [230960] = 2, + ACTIONS(9248), 1, + anon_sym_GT, + STATE(5380), 1, + aux_sym_type_parameters_repeat1, + [231332] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9175), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [230969] = 4, + ACTIONS(6441), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [231345] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6794), 1, + ACTIONS(6804), 1, anon_sym_extends, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - [230982] = 4, + [231358] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4613), 1, - anon_sym_GT, - ACTIONS(9177), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [230995] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(9179), 1, - anon_sym_GT, - [231008] = 2, + ACTIONS(9250), 1, + anon_sym_RPAREN, + STATE(4961), 1, + aux_sym_array_repeat1, + [231371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9181), 3, - sym__automatic_semicolon, + ACTIONS(3618), 1, + anon_sym_RBRACK, + ACTIONS(9252), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231017] = 2, + STATE(5280), 1, + aux_sym_tuple_type_repeat1, + [231384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8925), 3, - sym__automatic_semicolon, + ACTIONS(2357), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231026] = 4, + ACTIONS(9254), 1, + anon_sym_RBRACK, + STATE(4961), 1, + aux_sym_array_repeat1, + [231397] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(2326), 1, anon_sym_COMMA, - ACTIONS(9183), 1, - anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_array_repeat1, - [231039] = 3, + ACTIONS(9256), 1, + anon_sym_RBRACK, + STATE(5340), 1, + aux_sym_array_pattern_repeat1, + [231410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9185), 1, - anon_sym_as, - ACTIONS(9187), 2, + ACTIONS(9258), 1, anon_sym_COMMA, + ACTIONS(9260), 1, anon_sym_RBRACE, - [231050] = 4, + STATE(5133), 1, + aux_sym_export_clause_repeat1, + [231423] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5787), 1, - anon_sym_COLON, - ACTIONS(9189), 1, - anon_sym_RPAREN, - STATE(5870), 1, - sym_type_annotation, - [231063] = 4, + ACTIONS(6157), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [231436] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3608), 1, - anon_sym_RBRACK, - ACTIONS(9191), 1, + ACTIONS(9262), 1, anon_sym_COMMA, - STATE(5226), 1, + ACTIONS(9264), 1, + anon_sym_RBRACK, + STATE(5295), 1, aux_sym_tuple_type_repeat1, - [231076] = 4, + [231449] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9193), 1, + ACTIONS(2326), 1, anon_sym_COMMA, - ACTIONS(9195), 1, + ACTIONS(8659), 1, anon_sym_RBRACK, - STATE(5228), 1, - aux_sym_tuple_type_repeat1, - [231089] = 4, + STATE(5340), 1, + aux_sym_array_pattern_repeat1, + [231462] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8359), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(8361), 1, - anon_sym_RBRACE, - STATE(5369), 1, - aux_sym_enum_body_repeat1, - [231102] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3168), 1, - anon_sym_while, - ACTIONS(9197), 1, - anon_sym_else, - STATE(1113), 1, - sym_else_clause, - [231115] = 2, + ACTIONS(6294), 1, + anon_sym_RBRACK, + STATE(4961), 1, + aux_sym_array_repeat1, + [231475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9199), 3, - sym__automatic_semicolon, + ACTIONS(3606), 1, + anon_sym_RBRACK, + ACTIONS(9266), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231124] = 4, + STATE(5280), 1, + aux_sym_tuple_type_repeat1, + [231488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(640), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1918), 1, + ACTIONS(6296), 1, anon_sym_LBRACE, - STATE(1195), 1, - sym_object_type, - [231137] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9109), 1, - anon_sym_EQ, - ACTIONS(4693), 2, + ACTIONS(6134), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [231148] = 4, + anon_sym_LBRACE_PIPE, + [231499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9201), 1, - anon_sym_COMMA, - ACTIONS(9203), 1, - anon_sym_RBRACK, - STATE(5111), 1, - aux_sym_tuple_type_repeat1, - [231161] = 4, + ACTIONS(9268), 1, + anon_sym_EQ, + ACTIONS(4654), 2, + anon_sym_in, + anon_sym_of, + [231510] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 1, - anon_sym_from, - ACTIONS(9057), 1, - anon_sym_as, - STATE(5439), 1, - sym__from_clause, - [231174] = 3, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7956), 1, + anon_sym_extends, + [231523] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9205), 1, - anon_sym_as, - ACTIONS(9207), 2, + ACTIONS(4392), 1, + anon_sym_GT, + ACTIONS(9270), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [231185] = 4, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [231536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9209), 1, - anon_sym_EQ, - ACTIONS(9211), 1, + ACTIONS(9233), 1, + anon_sym_RBRACK, + ACTIONS(9272), 1, anon_sym_COMMA, - ACTIONS(9213), 1, - anon_sym_from, - [231198] = 3, + STATE(5340), 1, + aux_sym_array_pattern_repeat1, + [231549] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9215), 1, - sym_identifier, - ACTIONS(9217), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [231209] = 4, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(8336), 1, + anon_sym_extends, + [231562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2521), 1, + ACTIONS(9275), 1, anon_sym_LBRACE, - ACTIONS(9219), 1, - sym_identifier, - STATE(4599), 1, - sym_export_clause, - [231222] = 4, + ACTIONS(9227), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [231573] = 2, + ACTIONS(7457), 1, + sym_comment, + ACTIONS(9277), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [231582] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(9221), 1, + ACTIONS(6294), 1, anon_sym_RBRACK, - STATE(5273), 1, - aux_sym_array_pattern_repeat1, - [231235] = 2, + STATE(5328), 1, + aux_sym_array_repeat1, + [231595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9009), 3, + ACTIONS(9279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231244] = 4, - ACTIONS(3), 1, + [231604] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(9211), 1, - anon_sym_COMMA, - ACTIONS(9213), 1, - anon_sym_from, - ACTIONS(9223), 1, - anon_sym_EQ, - [231257] = 4, + ACTIONS(4929), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [231613] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6178), 1, + ACTIONS(7768), 1, anon_sym_extends, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - [231270] = 2, + [231626] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9225), 3, - sym__automatic_semicolon, + ACTIONS(4388), 1, + anon_sym_GT, + ACTIONS(9281), 1, anon_sym_COMMA, - anon_sym_SEMI, - [231279] = 2, + STATE(5137), 1, + aux_sym_implements_clause_repeat1, + [231639] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9227), 3, + ACTIONS(9283), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231288] = 2, + [231648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9199), 3, + ACTIONS(9285), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231297] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9229), 1, - sym_identifier, - ACTIONS(9231), 1, - anon_sym_LBRACE, - STATE(1147), 1, - sym_export_clause, - [231310] = 4, + [231657] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7800), 1, - sym_identifier, - ACTIONS(7802), 1, - anon_sym_LBRACK, - ACTIONS(7804), 1, - sym_private_property_identifier, - [231323] = 4, + ACTIONS(7814), 1, + anon_sym_extends, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + [231670] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7996), 1, + ACTIONS(8428), 1, anon_sym_extends, - [231336] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9047), 1, - sym_identifier, - ACTIONS(9233), 1, - anon_sym_GT, - STATE(5511), 1, - sym_type_parameter, - [231349] = 4, + [231683] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2325), 1, + ACTIONS(9287), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8627), 1, - anon_sym_RBRACK, - STATE(5315), 1, - aux_sym_array_pattern_repeat1, - [231362] = 4, + anon_sym_SEMI, + [231692] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9235), 1, - anon_sym_LPAREN, - ACTIONS(9237), 1, - anon_sym_await, - STATE(43), 1, - sym__for_header, - [231375] = 3, - ACTIONS(3), 1, + ACTIONS(7884), 1, + anon_sym_AMP, + ACTIONS(7886), 1, + anon_sym_PIPE, + ACTIONS(7888), 1, + anon_sym_extends, + [231705] = 2, + ACTIONS(7457), 1, sym_comment, - ACTIONS(9239), 1, - sym_identifier, - ACTIONS(9241), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [231386] = 2, + ACTIONS(4937), 3, + anon_sym_LBRACE, + anon_sym_LT, + sym_jsx_text, + [231714] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9243), 3, + ACTIONS(9279), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231395] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(6113), 1, - anon_sym_RBRACK, - STATE(5131), 1, - aux_sym_array_repeat1, - [231408] = 2, + [231723] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9245), 3, + ACTIONS(9289), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231417] = 4, + [231732] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(764), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2084), 1, + ACTIONS(9291), 1, anon_sym_LBRACE, - STATE(4852), 1, - sym_object_type, - [231430] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3168), 1, - anon_sym_while, - ACTIONS(9247), 1, - anon_sym_else, - STATE(1113), 1, - sym_else_clause, - [231443] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8665), 1, - anon_sym_RBRACE, - ACTIONS(9249), 1, - anon_sym_COMMA, - STATE(5334), 1, - aux_sym_enum_body_repeat1, - [231456] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(9252), 1, - anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_array_repeat1, - [231469] = 4, + ACTIONS(8318), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [231743] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4563), 1, - anon_sym_GT, - ACTIONS(9254), 1, + ACTIONS(9293), 1, anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [231482] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7746), 1, - anon_sym_DOT, - ACTIONS(9256), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [231493] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(9258), 1, - anon_sym_GT, - [231506] = 3, + ACTIONS(9295), 1, + anon_sym_RBRACK, + STATE(5327), 1, + aux_sym_tuple_type_repeat1, + [231756] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9260), 1, + ACTIONS(9297), 1, anon_sym_EQ, - ACTIONS(4693), 2, + ACTIONS(4691), 2, anon_sym_COMMA, anon_sym_RBRACK, - [231517] = 4, + [231767] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9300), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9263), 1, - anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [231530] = 4, + anon_sym_SEMI, + [231776] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2972), 1, + ACTIONS(2970), 1, anon_sym_LT, - ACTIONS(9265), 1, + ACTIONS(9302), 1, anon_sym_EQ, - STATE(6075), 1, + STATE(6058), 1, sym_type_parameters, - [231543] = 4, + [231789] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9267), 1, + ACTIONS(9279), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9269), 1, - anon_sym_RBRACE, - STATE(5220), 1, - aux_sym_export_clause_repeat1, - [231556] = 2, + anon_sym_SEMI, + [231798] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7135), 3, + ACTIONS(9285), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231565] = 3, + [231807] = 2, ACTIONS(3), 1, sym_comment, - STATE(4921), 1, - sym_type_predicate, - ACTIONS(9271), 2, - sym_identifier, - sym_this, - [231576] = 4, + ACTIONS(9304), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [231816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(9300), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(9273), 1, - anon_sym_RBRACE, - STATE(5219), 1, - aux_sym_object_repeat1, - [231589] = 4, + anon_sym_SEMI, + [231825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(8409), 1, - anon_sym_extends, - [231602] = 4, + ACTIONS(9306), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [231834] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3606), 1, - anon_sym_RBRACK, - ACTIONS(9275), 1, + ACTIONS(9304), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5226), 1, - aux_sym_tuple_type_repeat1, - [231615] = 4, + anon_sym_SEMI, + [231843] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(9277), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(9279), 1, + ACTIONS(9308), 1, anon_sym_RBRACE, - STATE(5342), 1, - aux_sym_export_clause_repeat1, - [231628] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5791), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [231641] = 4, + STATE(5381), 1, + aux_sym_object_repeat1, + [231856] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3628), 1, - anon_sym_RBRACK, - ACTIONS(9281), 1, + ACTIONS(9310), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5226), 1, - aux_sym_tuple_type_repeat1, - [231654] = 2, + anon_sym_SEMI, + [231865] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8958), 3, + ACTIONS(9312), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [231663] = 4, + [231874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6936), 1, - anon_sym_RPAREN, - ACTIONS(9283), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - STATE(5120), 1, - aux_sym_formal_parameters_repeat1, - [231676] = 4, + ACTIONS(9308), 1, + anon_sym_RBRACE, + STATE(5230), 1, + aux_sym_object_repeat1, + [231887] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(2357), 1, anon_sym_COMMA, - ACTIONS(9285), 1, - anon_sym_RBRACK, - STATE(5004), 1, + ACTIONS(6256), 1, + anon_sym_RPAREN, + STATE(4961), 1, aux_sym_array_repeat1, - [231689] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8158), 1, - anon_sym_COMMA, - ACTIONS(9287), 1, - anon_sym_LBRACE, - STATE(5360), 1, - aux_sym_implements_clause_repeat1, - [231702] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4629), 1, - anon_sym_GT, - ACTIONS(9289), 1, - anon_sym_COMMA, - STATE(5113), 1, - aux_sym_implements_clause_repeat1, - [231715] = 3, + [231900] = 4, ACTIONS(3), 1, sym_comment, - STATE(4529), 1, - sym_type_predicate, - ACTIONS(9291), 2, + ACTIONS(9032), 1, sym_identifier, - sym_this, - [231726] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9293), 1, - anon_sym_LBRACE, - ACTIONS(8508), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [231737] = 4, + ACTIONS(9314), 1, + anon_sym_GT, + STATE(5639), 1, + sym_type_parameter, + [231913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7772), 1, - anon_sym_extends, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - [231750] = 4, + ACTIONS(9283), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [231922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7574), 1, - anon_sym_implements, - ACTIONS(9295), 1, - anon_sym_LBRACE, - STATE(6044), 1, - sym_implements_clause, - [231763] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(6262), 1, + anon_sym_RBRACK, + STATE(5383), 1, + aux_sym_array_repeat1, + [231935] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8487), 1, - anon_sym_LBRACE, - ACTIONS(9297), 1, + ACTIONS(2357), 1, anon_sym_COMMA, - STATE(5360), 1, - aux_sym_implements_clause_repeat1, - [231776] = 4, + ACTIONS(6262), 1, + anon_sym_RBRACK, + STATE(4961), 1, + aux_sym_array_repeat1, + [231948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7886), 1, - anon_sym_extends, - [231789] = 4, + ACTIONS(2357), 1, + anon_sym_COMMA, + ACTIONS(6256), 1, + anon_sym_RPAREN, + STATE(5326), 1, + aux_sym_array_repeat1, + [231961] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(8421), 1, + ACTIONS(7834), 1, anon_sym_extends, - [231802] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - ACTIONS(7814), 1, - anon_sym_extends, - [231815] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9300), 1, - anon_sym_COMMA, - ACTIONS(9302), 1, - anon_sym_RBRACK, - STATE(5350), 1, - aux_sym_tuple_type_repeat1, - [231828] = 4, + [231974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6812), 1, + ACTIONS(9314), 1, + anon_sym_GT, + ACTIONS(9316), 1, anon_sym_COMMA, - ACTIONS(9304), 1, - anon_sym_RBRACE, - STATE(5214), 1, - aux_sym_object_pattern_repeat1, - [231841] = 4, + STATE(5220), 1, + aux_sym_type_parameters_repeat1, + [231987] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8908), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - ACTIONS(9306), 1, + ACTIONS(9318), 1, anon_sym_RBRACE, - STATE(5219), 1, + STATE(5230), 1, aux_sym_object_repeat1, - [231854] = 2, + [232000] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6187), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - [231863] = 2, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(7900), 1, + anon_sym_LBRACK, + ACTIONS(7902), 1, + sym_private_property_identifier, + [232013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6182), 3, + ACTIONS(2357), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(9320), 1, anon_sym_RBRACK, - [231872] = 4, + STATE(4961), 1, + aux_sym_array_repeat1, + [232026] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7153), 1, - anon_sym_RBRACE, - ACTIONS(9308), 1, + ACTIONS(8954), 1, anon_sym_COMMA, - STATE(5334), 1, - aux_sym_enum_body_repeat1, - [231885] = 4, + ACTIONS(9322), 1, + anon_sym_RBRACE, + STATE(5230), 1, + aux_sym_object_repeat1, + [232039] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, + ACTIONS(7079), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6296), 1, - anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_array_repeat1, - [231898] = 4, + anon_sym_SEMI, + [232048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7784), 1, + ACTIONS(7786), 1, anon_sym_extends, - ACTIONS(7810), 1, + ACTIONS(7884), 1, anon_sym_AMP, - ACTIONS(7812), 1, + ACTIONS(7886), 1, anon_sym_PIPE, - [231911] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9310), 1, - anon_sym_COMMA, - ACTIONS(9312), 1, - anon_sym_RBRACK, - STATE(5347), 1, - aux_sym_tuple_type_repeat1, - [231924] = 4, + [232061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7940), 1, + ACTIONS(7866), 1, sym_identifier, - ACTIONS(7942), 1, + ACTIONS(7868), 1, anon_sym_LBRACK, - ACTIONS(7944), 1, + ACTIONS(7870), 1, sym_private_property_identifier, - [231937] = 4, + [232074] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7810), 1, - anon_sym_AMP, - ACTIONS(7812), 1, - anon_sym_PIPE, - ACTIONS(7864), 1, - anon_sym_extends, - [231950] = 4, + ACTIONS(9283), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [232083] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2104), 1, - anon_sym_DQUOTE, - ACTIONS(2106), 1, - anon_sym_SQUOTE, - STATE(5616), 1, - sym_string, - [231963] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5886), 1, + sym_formal_parameters, + [232093] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ, - ACTIONS(4666), 2, - anon_sym_in, - anon_sym_of, - [231974] = 4, + ACTIONS(8862), 1, + anon_sym_from, + STATE(5610), 1, + sym__from_clause, + [232103] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(6256), 1, - anon_sym_RPAREN, - STATE(5004), 1, - aux_sym_array_repeat1, - [231987] = 4, + ACTIONS(1978), 1, + anon_sym_LBRACE, + STATE(179), 1, + sym_statement_block, + [232113] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2357), 1, - anon_sym_COMMA, - ACTIONS(6256), 1, - anon_sym_RPAREN, - STATE(5281), 1, - aux_sym_array_repeat1, - [232000] = 3, + ACTIONS(9032), 1, + sym_identifier, + STATE(5639), 1, + sym_type_parameter, + [232123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7552), 1, anon_sym_LBRACE, - STATE(3239), 1, + STATE(186), 1, sym_class_body, - [232010] = 3, + [232133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7489), 1, anon_sym_LBRACE, - STATE(3158), 1, + STATE(3362), 1, sym_class_body, - [232020] = 3, + [232143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 1, - anon_sym_from, - STATE(5572), 1, - sym__from_clause, - [232030] = 3, + ACTIONS(9324), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [232151] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9326), 1, + anon_sym_LPAREN, + STATE(49), 1, + sym_parenthesized_expression, + [232161] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(2876), 1, + sym_class_body, + [232171] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9328), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [232179] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7558), 1, + anon_sym_LBRACE, + STATE(1129), 1, + sym_class_body, + [232189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7940), 1, + ACTIONS(7866), 1, sym_identifier, - ACTIONS(7944), 1, + ACTIONS(7870), 1, sym_private_property_identifier, - [232040] = 2, + [232199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7073), 2, + ACTIONS(9330), 2, anon_sym_COMMA, anon_sym_RBRACE, - [232048] = 3, + [232207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 1, - anon_sym_LPAREN, - STATE(51), 1, - sym__for_header, - [232058] = 3, + ACTIONS(4266), 1, + anon_sym_COLON, + STATE(5529), 1, + sym_type_annotation, + [232217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7255), 1, - anon_sym_LT, - STATE(3903), 1, - sym_type_arguments, - [232068] = 3, + ACTIONS(7552), 1, + anon_sym_LBRACE, + STATE(182), 1, + sym_class_body, + [232227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9318), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - STATE(3383), 1, + STATE(2953), 1, sym_statement_block, - [232078] = 3, + [232237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9320), 1, - anon_sym_LPAREN, - STATE(5573), 1, - sym_parenthesized_expression, - [232088] = 3, + ACTIONS(7558), 1, + anon_sym_LBRACE, + STATE(1119), 1, + sym_class_body, + [232247] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9318), 1, + ACTIONS(9332), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [232255] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7750), 1, anon_sym_LBRACE, - STATE(3428), 1, + STATE(1060), 1, sym_statement_block, - [232098] = 3, + [232265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(3455), 1, + STATE(1061), 1, sym_class_body, - [232108] = 3, + [232275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4315), 1, - anon_sym_COLON, - STATE(5660), 1, - sym_type_annotation, - [232118] = 2, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(2955), 1, + sym_class_body, + [232285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7113), 2, + ACTIONS(7057), 2, anon_sym_COMMA, anon_sym_RBRACE, - [232126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_statement_block, - [232136] = 3, + [232293] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5720), 1, + STATE(5950), 1, sym_formal_parameters, - [232146] = 3, + [232303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, + ACTIONS(9326), 1, + anon_sym_LPAREN, + STATE(5574), 1, + sym_parenthesized_expression, + [232313] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5969), 1, anon_sym_LBRACE, - STATE(1165), 1, - sym_enum_body, - [232156] = 3, + STATE(2866), 1, + sym_statement_block, + [232323] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5825), 1, + STATE(5750), 1, sym_formal_parameters, - [232166] = 3, + [232333] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5823), 1, + STATE(5751), 1, sym_formal_parameters, - [232176] = 2, + [232343] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [232184] = 3, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5554), 1, + sym_statement_block, + [232353] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4841), 1, + STATE(5920), 1, sym_formal_parameters, - [232194] = 3, + [232363] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, - anon_sym_LBRACE, - STATE(186), 1, - sym_class_body, - [232204] = 3, + ACTIONS(9326), 1, + anon_sym_LPAREN, + STATE(56), 1, + sym_parenthesized_expression, + [232373] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5905), 1, - anon_sym_LPAREN, - STATE(3490), 1, - sym_arguments, - [232214] = 3, + ACTIONS(7065), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [232381] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(3244), 1, - sym_class_body, - [232224] = 2, + STATE(1019), 1, + sym_statement_block, + [232391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6147), 2, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5887), 1, + sym_formal_parameters, + [232401] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3542), 2, sym__automatic_semicolon, anon_sym_SEMI, - [232232] = 3, + [232409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, + ACTIONS(5423), 1, anon_sym_LPAREN, - STATE(6073), 1, - sym_formal_parameters, - [232242] = 3, + STATE(2845), 1, + sym_arguments, + [232419] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6071), 1, + STATE(4846), 1, sym_formal_parameters, - [232252] = 3, + [232429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(1143), 1, + STATE(5561), 1, sym_statement_block, - [232262] = 3, + [232439] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9324), 1, - sym_identifier, - STATE(5337), 1, - sym_nested_identifier, - [232272] = 3, + ACTIONS(3550), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, - anon_sym_LBRACE, - STATE(3494), 1, - sym_class_body, - [232282] = 3, + ACTIONS(9334), 1, + sym_identifier, + ACTIONS(9336), 1, + anon_sym_STAR, + [232457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, + ACTIONS(9326), 1, anon_sym_LPAREN, - STATE(5842), 1, - sym_formal_parameters, - [232292] = 3, + STATE(51), 1, + sym_parenthesized_expression, + [232467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4764), 1, - sym_formal_parameters, - [232302] = 2, + ACTIONS(4877), 1, + anon_sym_LBRACE, + STATE(2538), 1, + sym_statement_block, + [232477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7123), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [232310] = 3, + ACTIONS(7445), 1, + anon_sym_LBRACE, + STATE(2530), 1, + sym_class_body, + [232487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, + ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(4740), 1, - sym_statement_block, - [232320] = 3, + STATE(2836), 1, + sym_class_body, + [232497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, + ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(4709), 1, - sym_statement_block, - [232330] = 3, + STATE(2829), 1, + sym_class_body, + [232507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(35), 1, - sym_parenthesized_expression, - [232340] = 3, + STATE(5862), 1, + sym_formal_parameters, + [232517] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4618), 1, + STATE(5954), 1, sym_formal_parameters, - [232350] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5410), 1, - sym_statement_block, - [232360] = 3, + [232527] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6013), 1, + STATE(5952), 1, sym_formal_parameters, - [232370] = 3, + [232537] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9328), 1, - sym_identifier, - ACTIONS(9330), 1, - anon_sym_STAR, - [232380] = 3, + ACTIONS(5969), 1, + anon_sym_LBRACE, + STATE(2821), 1, + sym_statement_block, + [232547] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(6054), 1, - sym_formal_parameters, - [232390] = 3, + ACTIONS(9338), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(3502), 1, + STATE(2525), 1, sym_class_body, - [232400] = 3, + [232565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9318), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(3449), 1, + STATE(1069), 1, sym_statement_block, - [232410] = 2, + [232575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3540), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [232418] = 2, + ACTIONS(9340), 1, + anon_sym_in, + ACTIONS(9342), 1, + anon_sym_COLON, + [232585] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, + anon_sym_LBRACE, + STATE(2533), 1, + sym_statement_block, + [232595] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7099), 2, + ACTIONS(9344), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [232426] = 3, + anon_sym_RPAREN, + [232603] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5771), 1, + STATE(6070), 1, sym_formal_parameters, - [232436] = 3, + [232613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(62), 1, - sym_parenthesized_expression, - [232446] = 3, + STATE(6069), 1, + sym_formal_parameters, + [232623] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, - anon_sym_LBRACE, - STATE(1114), 1, - sym_enum_body, - [232456] = 3, + ACTIONS(8621), 2, + anon_sym_COMMA, + anon_sym_GT, + [232631] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7513), 2, + anon_sym_in, + anon_sym_of, + [232639] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5774), 1, + STATE(5897), 1, sym_formal_parameters, - [232466] = 3, + [232649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(60), 1, - sym_parenthesized_expression, - [232476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - STATE(2441), 1, - sym_statement_block, - [232486] = 3, + STATE(5902), 1, + sym_formal_parameters, + [232659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - STATE(2554), 1, - sym_statement_block, - [232496] = 3, + ACTIONS(3640), 1, + anon_sym_LPAREN, + STATE(4317), 1, + sym_formal_parameters, + [232669] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5450), 1, - sym_statement_block, - [232506] = 2, + ACTIONS(9346), 1, + sym_identifier, + ACTIONS(9348), 1, + anon_sym_STAR, + [232679] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7067), 2, + ACTIONS(9350), 2, anon_sym_COMMA, anon_sym_RBRACE, - [232514] = 3, + [232687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5944), 1, - sym_formal_parameters, - [232524] = 3, + ACTIONS(4877), 1, + anon_sym_LBRACE, + STATE(2558), 1, + sym_statement_block, + [232697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5942), 1, - sym_formal_parameters, - [232534] = 3, + ACTIONS(7489), 1, + anon_sym_LBRACE, + STATE(3378), 1, + sym_class_body, + [232707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(9352), 1, anon_sym_LBRACE, - STATE(5422), 1, + STATE(3374), 1, sym_statement_block, - [232544] = 2, + [232717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8066), 2, + ACTIONS(7445), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [232552] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7073), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [232560] = 2, + STATE(3216), 1, + sym_class_body, + [232727] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9332), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [232568] = 3, + ACTIONS(6258), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [232735] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(188), 1, + STATE(2572), 1, sym_class_body, - [232578] = 3, + [232745] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9334), 1, - anon_sym_SEMI, - ACTIONS(9336), 1, - sym__automatic_semicolon, - [232588] = 3, + ACTIONS(4877), 1, + anon_sym_LBRACE, + STATE(2551), 1, + sym_statement_block, + [232755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9338), 1, + ACTIONS(4511), 1, + sym_jsx_identifier, + ACTIONS(9354), 1, sym_identifier, - ACTIONS(9340), 1, - anon_sym_STAR, - [232598] = 3, + [232765] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(2411), 1, - sym_class_body, - [232608] = 3, + STATE(3213), 1, + sym_statement_block, + [232775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9047), 1, - sym_identifier, - STATE(5186), 1, - sym_type_parameter, - [232618] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4812), 1, + sym_formal_parameters, + [232785] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4877), 1, + anon_sym_LBRACE, + STATE(2561), 1, + sym_statement_block, + [232795] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6060), 1, + STATE(6039), 1, sym_formal_parameters, - [232628] = 3, + [232805] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(3156), 1, + STATE(2540), 1, sym_class_body, - [232638] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7321), 1, - anon_sym_LT, - STATE(4002), 1, - sym_type_arguments, - [232648] = 3, + [232815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(7750), 1, anon_sym_LBRACE, - STATE(170), 1, + STATE(4736), 1, sym_statement_block, - [232658] = 3, + [232825] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7800), 1, - sym_identifier, - ACTIONS(7804), 1, - sym_private_property_identifier, - [232668] = 3, + ACTIONS(7061), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [232833] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6059), 1, + STATE(4750), 1, sym_formal_parameters, - [232678] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3552), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [232686] = 2, + [232843] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7129), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [232694] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5804), 1, + sym_formal_parameters, + [232853] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6116), 1, + STATE(5802), 1, sym_formal_parameters, - [232704] = 3, + [232863] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9342), 1, + ACTIONS(9356), 1, anon_sym_LT, - STATE(2872), 1, + STATE(2347), 1, sym_type_arguments, - [232714] = 3, + [232873] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6115), 1, + STATE(4751), 1, sym_formal_parameters, - [232724] = 3, + [232883] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9344), 1, - sym_identifier, - ACTIONS(9346), 1, - anon_sym_STAR, - [232734] = 3, + ACTIONS(7069), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [232891] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(1057), 1, - sym_statement_block, - [232744] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(6027), 1, + sym_formal_parameters, + [232901] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7489), 1, anon_sym_LBRACE, - STATE(2559), 1, + STATE(3333), 1, sym_class_body, - [232754] = 3, + [232911] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4707), 1, + STATE(6026), 1, sym_formal_parameters, - [232764] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9318), 1, - anon_sym_LBRACE, - STATE(3528), 1, - sym_statement_block, - [232774] = 2, + [232921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9348), 2, + ACTIONS(4633), 2, sym__automatic_semicolon, anon_sym_SEMI, - [232782] = 3, + [232929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, - anon_sym_LBRACE, - STATE(1192), 1, - sym_class_body, - [232792] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(6135), 1, + sym_formal_parameters, + [232939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(9352), 1, anon_sym_LBRACE, - STATE(5431), 1, + STATE(3332), 1, sym_statement_block, - [232802] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7113), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [232810] = 3, + [232949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(9352), 1, anon_sym_LBRACE, - STATE(5436), 1, + STATE(3316), 1, sym_statement_block, - [232820] = 2, + [232959] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 2, + ACTIONS(7109), 2, anon_sym_COMMA, anon_sym_RBRACE, - [232828] = 3, + [232967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, - anon_sym_LBRACE, - STATE(3464), 1, - sym_class_body, - [232838] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7611), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(1142), 1, - sym_class_body, - [232848] = 3, + STATE(3170), 1, + sym_statement_block, + [232977] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6109), 1, + STATE(6022), 1, sym_formal_parameters, - [232858] = 3, + [232987] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6003), 1, + STATE(6021), 1, sym_formal_parameters, - [232868] = 3, + [232997] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5995), 1, + STATE(5748), 1, sym_formal_parameters, - [232878] = 3, + [233007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - STATE(2561), 1, - sym_statement_block, - [232888] = 3, + ACTIONS(9326), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym_parenthesized_expression, + [233017] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5794), 1, + STATE(4735), 1, sym_formal_parameters, - [232898] = 3, + [233027] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, - sym_jsx_identifier, - ACTIONS(9350), 1, - sym_identifier, - [232908] = 3, + ACTIONS(5969), 1, + anon_sym_LBRACE, + STATE(2786), 1, + sym_statement_block, + [233037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5792), 1, - sym_formal_parameters, - [232918] = 3, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5419), 1, + sym_statement_block, + [233047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(6017), 1, - sym_formal_parameters, - [232928] = 3, + ACTIONS(7489), 1, + anon_sym_LBRACE, + STATE(3358), 1, + sym_class_body, + [233057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9318), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(3418), 1, - sym_statement_block, - [232938] = 3, + STATE(3191), 1, + sym_class_body, + [233067] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4739), 1, - sym_formal_parameters, - [232948] = 3, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(4731), 1, + sym_statement_block, + [233077] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(6016), 1, - sym_formal_parameters, - [232958] = 2, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(9229), 1, + anon_sym_GT, + [233087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8665), 2, + ACTIONS(7087), 2, anon_sym_COMMA, anon_sym_RBRACE, - [232966] = 3, + [233095] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(6012), 1, + STATE(6005), 1, sym_formal_parameters, - [232976] = 3, + [233105] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 1, + ACTIONS(8862), 1, + anon_sym_from, + STATE(5656), 1, + sym__from_clause, + [233115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7340), 1, anon_sym_COLON, - ACTIONS(9132), 1, + ACTIONS(9237), 1, anon_sym_GT, - [232986] = 3, + [233125] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(6011), 1, - sym_formal_parameters, - [232996] = 2, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(9237), 1, + anon_sym_GT, + [233135] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 2, + ACTIONS(7073), 2, anon_sym_COMMA, anon_sym_RBRACE, - [233004] = 2, + [233143] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9101), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [233012] = 3, + ACTIONS(5725), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, - anon_sym_LPAREN, - STATE(48), 1, - sym_parenthesized_expression, - [233022] = 2, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(9229), 1, + anon_sym_GT, + [233161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [233030] = 3, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5410), 1, + sym_statement_block, + [233171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(7437), 1, anon_sym_LBRACE, - STATE(3173), 1, - sym_statement_block, - [233040] = 2, + STATE(2807), 1, + sym_class_body, + [233181] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9352), 2, + ACTIONS(9233), 2, anon_sym_COMMA, anon_sym_RBRACK, - [233048] = 3, + [233189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(9161), 1, - anon_sym_GT, - [233058] = 3, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(2808), 1, + sym_class_body, + [233199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 1, - anon_sym_from, - STATE(5587), 1, - sym__from_clause, - [233068] = 3, + ACTIONS(5969), 1, + anon_sym_LBRACE, + STATE(2809), 1, + sym_statement_block, + [233209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(9161), 1, - anon_sym_GT, - [233078] = 3, + ACTIONS(5969), 1, + anon_sym_LBRACE, + STATE(2811), 1, + sym_statement_block, + [233219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4864), 1, - sym_formal_parameters, - [233088] = 3, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(2812), 1, + sym_class_body, + [233229] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4049), 1, + STATE(5805), 1, sym_formal_parameters, - [233098] = 3, + [233239] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8324), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4255), 1, + STATE(5745), 1, sym_formal_parameters, - [233108] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9354), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [233116] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7346), 1, - anon_sym_COLON, - STATE(5153), 1, - sym_type_annotation, - [233126] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - STATE(3186), 1, - sym_class_body, - [233136] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(9179), 1, - anon_sym_GT, - [233146] = 3, + [233249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(3419), 1, + STATE(1063), 1, sym_class_body, - [233156] = 3, + [233259] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(3489), 1, - sym_class_body, - [233166] = 3, + STATE(1201), 1, + sym_statement_block, + [233269] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(9179), 1, - anon_sym_GT, - [233176] = 2, + ACTIONS(9358), 1, + sym_identifier, + STATE(5187), 1, + sym_nested_identifier, + [233279] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6163), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [233184] = 3, + ACTIONS(7057), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [233287] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9318), 1, - anon_sym_LBRACE, - STATE(3504), 1, - sym_statement_block, - [233194] = 3, + ACTIONS(9360), 1, + anon_sym_LPAREN, + STATE(5698), 1, + sym_parenthesized_expression, + [233297] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9318), 1, + ACTIONS(9352), 1, anon_sym_LBRACE, - STATE(3346), 1, + STATE(3313), 1, sym_statement_block, - [233204] = 3, + [233307] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4897), 1, + STATE(6043), 1, sym_formal_parameters, - [233214] = 3, + [233317] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9356), 1, - anon_sym_LT, - STATE(3421), 1, - sym_type_arguments, - [233224] = 3, + ACTIONS(7750), 1, + anon_sym_LBRACE, + STATE(1064), 1, + sym_statement_block, + [233327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(3318), 1, + STATE(1067), 1, sym_class_body, - [233234] = 3, + [233337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(9132), 1, - anon_sym_GT, - [233244] = 2, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4800), 1, + sym_formal_parameters, + [233347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5679), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [233252] = 3, + ACTIONS(9362), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [233355] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5913), 1, - sym_formal_parameters, - [233262] = 3, + ACTIONS(9364), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [233363] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9366), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [233371] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5885), 1, + STATE(5755), 1, sym_formal_parameters, - [233272] = 2, + [233381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9128), 2, + ACTIONS(7065), 2, anon_sym_COMMA, - anon_sym_GT, - [233280] = 3, + anon_sym_RBRACE, + [233389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9047), 1, - sym_identifier, - STATE(5211), 1, - sym_type_parameter, - [233290] = 3, + ACTIONS(8330), 1, + anon_sym_LPAREN, + STATE(4259), 1, + sym_formal_parameters, + [233399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7615), 1, - anon_sym_is, - ACTIONS(7836), 1, - anon_sym_EQ_GT, - [233300] = 3, + ACTIONS(7445), 1, + anon_sym_LBRACE, + STATE(2514), 1, + sym_class_body, + [233409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(7552), 1, anon_sym_LBRACE, - STATE(2323), 1, + STATE(187), 1, sym_class_body, - [233310] = 3, + [233419] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - STATE(2328), 1, + STATE(2814), 1, sym_statement_block, - [233320] = 3, + [233429] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4649), 1, - sym_formal_parameters, - [233330] = 3, + ACTIONS(9368), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [233437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(6021), 1, - sym_formal_parameters, - [233340] = 3, + ACTIONS(7437), 1, + anon_sym_LBRACE, + STATE(2816), 1, + sym_class_body, + [233447] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4643), 1, + STATE(4839), 1, sym_formal_parameters, - [233350] = 3, + [233457] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7295), 1, + anon_sym_LT, + STATE(3994), 1, + sym_type_arguments, + [233467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(168), 1, + STATE(3252), 1, sym_class_body, - [233360] = 3, + [233477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(6034), 1, - sym_formal_parameters, - [233370] = 3, + ACTIONS(7073), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [233485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9358), 1, - sym_identifier, - ACTIONS(9360), 1, - anon_sym_STAR, - [233380] = 3, + ACTIONS(7836), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [233493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9362), 1, - anon_sym_SEMI, - ACTIONS(9364), 1, - sym__automatic_semicolon, - [233390] = 3, + ACTIONS(7700), 1, + anon_sym_is, + ACTIONS(7836), 1, + anon_sym_EQ_GT, + [233503] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5645), 1, - sym_statement_block, - [233400] = 2, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(9020), 1, + anon_sym_GT, + [233513] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6168), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [233408] = 2, + ACTIONS(9370), 1, + anon_sym_LBRACE, + STATE(1174), 1, + sym_enum_body, + [233523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9366), 2, - anon_sym_COMMA, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(9020), 1, anon_sym_GT, - [233416] = 3, + [233533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, + ACTIONS(5969), 1, anon_sym_LBRACE, - STATE(4874), 1, + STATE(2871), 1, sym_statement_block, - [233426] = 2, + [233543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [233434] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4635), 1, + sym_formal_parameters, + [233553] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9368), 1, - anon_sym_SEMI, - ACTIONS(9370), 1, - sym__automatic_semicolon, - [233444] = 3, + ACTIONS(9191), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [233561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9372), 1, + ACTIONS(9352), 1, anon_sym_LBRACE, - STATE(4845), 1, - sym_enum_body, - [233454] = 3, + STATE(3369), 1, + sym_statement_block, + [233571] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7489), 1, anon_sym_LBRACE, - STATE(2542), 1, + STATE(3372), 1, sym_class_body, - [233464] = 2, + [233581] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9374), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [233472] = 3, + ACTIONS(7489), 1, + anon_sym_LBRACE, + STATE(3376), 1, + sym_class_body, + [233591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(1064), 1, - sym_statement_block, - [233482] = 2, + ACTIONS(8862), 1, + anon_sym_from, + STATE(5566), 1, + sym__from_clause, + [233601] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9376), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [233490] = 2, + ACTIONS(5745), 1, + anon_sym_LPAREN, + STATE(3381), 1, + sym_arguments, + [233611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9378), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [233498] = 2, + ACTIONS(4957), 1, + anon_sym_LPAREN, + STATE(2544), 1, + sym_arguments, + [233621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9380), 2, + ACTIONS(9372), 2, sym__automatic_semicolon, anon_sym_SEMI, - [233506] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(1067), 1, - sym_class_body, - [233516] = 3, + [233629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, - anon_sym_LBRACE, - STATE(1069), 1, - sym_statement_block, - [233526] = 3, + ACTIONS(7348), 1, + anon_sym_COLON, + STATE(5132), 1, + sym_type_annotation, + [233639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, + ACTIONS(7558), 1, anon_sym_LBRACE, - STATE(1068), 1, + STATE(1193), 1, sym_class_body, - [233536] = 2, + [233649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7836), 2, + ACTIONS(7558), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [233544] = 3, + STATE(1075), 1, + sym_class_body, + [233659] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5603), 1, - sym_statement_block, - [233554] = 2, + ACTIONS(9374), 1, + anon_sym_LPAREN, + STATE(43), 1, + sym__for_header, + [233669] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7083), 2, + ACTIONS(7087), 2, anon_sym_COMMA, anon_sym_RBRACE, - [233562] = 3, + [233677] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9376), 1, + sym_identifier, + ACTIONS(9378), 1, + anon_sym_STAR, + [233687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(9352), 1, anon_sym_LBRACE, - STATE(5598), 1, + STATE(3420), 1, sym_statement_block, - [233572] = 3, + [233697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(9352), 1, anon_sym_LBRACE, - STATE(3236), 1, + STATE(3434), 1, sym_statement_block, - [233582] = 3, + [233707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(4654), 1, - sym_formal_parameters, - [233592] = 3, + ACTIONS(7489), 1, + anon_sym_LBRACE, + STATE(3459), 1, + sym_class_body, + [233717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9318), 1, + ACTIONS(1978), 1, anon_sym_LBRACE, - STATE(3401), 1, + STATE(202), 1, sym_statement_block, - [233602] = 3, + [233727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7477), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(3400), 1, - sym_class_body, - [233612] = 2, + STATE(5608), 1, + sym_statement_block, + [233737] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7087), 2, + ACTIONS(7061), 2, anon_sym_COMMA, anon_sym_RBRACE, - [233620] = 3, + [233745] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5954), 1, + STATE(4628), 1, sym_formal_parameters, - [233630] = 3, + [233755] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7838), 1, - sym_identifier, - ACTIONS(7842), 1, - sym_private_property_identifier, - [233640] = 3, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5617), 1, + sym_statement_block, + [233765] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5970), 1, + STATE(6018), 1, sym_formal_parameters, - [233650] = 3, + [233775] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(8956), 1, - anon_sym_GT, - [233660] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4620), 1, + sym_formal_parameters, + [233785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - STATE(2541), 1, - sym_class_body, - [233670] = 3, + ACTIONS(9380), 1, + anon_sym_SEMI, + ACTIONS(9382), 1, + sym__automatic_semicolon, + [233795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4594), 1, - sym_class_body, - [233680] = 3, + ACTIONS(9032), 1, + sym_identifier, + STATE(5258), 1, + sym_type_parameter, + [233805] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5971), 1, + STATE(5831), 1, sym_formal_parameters, - [233690] = 3, + [233815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(8956), 1, - anon_sym_GT, - [233700] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(6031), 1, + sym_formal_parameters, + [233825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4915), 1, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(2571), 1, - sym_arguments, - [233710] = 3, + STATE(5867), 1, + sym_formal_parameters, + [233835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(2537), 1, - sym_statement_block, - [233720] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7083), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [233728] = 3, + STATE(3099), 1, + sym_class_body, + [233845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(2535), 1, + STATE(2465), 1, sym_statement_block, - [233738] = 3, + [233855] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - STATE(2532), 1, + STATE(2318), 1, sym_class_body, - [233748] = 3, + [233865] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5912), 1, - sym_formal_parameters, - [233758] = 3, + ACTIONS(9384), 1, + anon_sym_LBRACE, + STATE(1097), 1, + sym_switch_body, + [233875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9382), 1, - anon_sym_SEMI, - ACTIONS(9384), 1, - sym__automatic_semicolon, - [233768] = 3, + ACTIONS(8224), 2, + anon_sym_LBRACE, + anon_sym_EQ_GT, + [233883] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(9374), 1, + anon_sym_LPAREN, + STATE(54), 1, + sym__for_header, + [233893] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(2564), 1, + STATE(2316), 1, sym_statement_block, - [233778] = 3, + [233903] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5910), 1, - sym_formal_parameters, - [233788] = 3, + ACTIONS(9386), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233911] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9047), 1, - sym_identifier, - STATE(5511), 1, - sym_type_parameter, - [233798] = 3, + ACTIONS(9388), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [233919] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(8862), 1, + anon_sym_from, + STATE(5675), 1, + sym__from_clause, + [233929] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(2183), 1, + STATE(2545), 1, sym_class_body, - [233808] = 3, + [233939] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(2184), 1, + STATE(1052), 1, sym_statement_block, - [233818] = 3, + [233949] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, + ACTIONS(7750), 1, anon_sym_LBRACE, - STATE(4669), 1, - sym_class_body, - [233828] = 3, + STATE(4599), 1, + sym_statement_block, + [233959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9386), 1, - anon_sym_SEMI, - ACTIONS(9388), 1, - sym__automatic_semicolon, - [233838] = 3, + ACTIONS(9390), 1, + anon_sym_LBRACE, + STATE(4602), 1, + sym_enum_body, + [233969] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, + ACTIONS(9326), 1, anon_sym_LPAREN, - STATE(5903), 1, - sym_formal_parameters, - [233848] = 2, + STATE(61), 1, + sym_parenthesized_expression, + [233979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9390), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [233856] = 3, + ACTIONS(9326), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, + [233989] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9392), 1, - anon_sym_SEMI, - ACTIONS(9394), 1, + ACTIONS(9326), 1, + anon_sym_LPAREN, + STATE(44), 1, + sym_parenthesized_expression, + [233999] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9392), 2, sym__automatic_semicolon, - [233866] = 2, + anon_sym_SEMI, + [234007] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9396), 2, + ACTIONS(7874), 1, + sym_identifier, + ACTIONS(7878), 1, + sym_private_property_identifier, + [234017] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9394), 2, sym__automatic_semicolon, anon_sym_SEMI, - [233874] = 3, + [234025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7390), 1, - anon_sym_LT, - STATE(4198), 1, - sym_type_arguments, - [233884] = 3, + ACTIONS(6290), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, - anon_sym_LPAREN, - STATE(58), 1, - sym_parenthesized_expression, - [233894] = 3, + ACTIONS(9396), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, + ACTIONS(8228), 2, anon_sym_LBRACE, - STATE(4688), 1, - sym_class_body, - [233904] = 3, + anon_sym_EQ_GT, + [234049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, - anon_sym_LPAREN, - STATE(5648), 1, - sym_parenthesized_expression, - [233914] = 3, + ACTIONS(7898), 1, + sym_identifier, + ACTIONS(7902), 1, + sym_private_property_identifier, + [234059] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(6292), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234067] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9352), 1, anon_sym_LBRACE, - STATE(3103), 1, - sym_class_body, - [233924] = 3, + STATE(3331), 1, + sym_statement_block, + [234077] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5848), 1, + STATE(6137), 1, sym_formal_parameters, - [233934] = 2, + [234087] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9087), 2, + ACTIONS(8824), 2, anon_sym_COMMA, anon_sym_RBRACE, - [233942] = 3, + [234095] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4266), 1, + anon_sym_COLON, + STATE(5395), 1, + sym_type_annotation, + [234105] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5847), 1, + STATE(5857), 1, sym_formal_parameters, - [233952] = 3, + [234115] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5854), 1, + sym_formal_parameters, + [234125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7489), 1, anon_sym_LBRACE, - STATE(2453), 1, + STATE(3426), 1, sym_class_body, - [233962] = 3, + [234135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7251), 1, + anon_sym_LT, + STATE(3889), 1, + sym_type_arguments, + [234145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9398), 1, + sym_identifier, + STATE(5143), 1, + sym_nested_identifier, + [234155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9372), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(4637), 1, - sym_enum_body, - [233972] = 2, + STATE(1058), 1, + sym_class_body, + [234165] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9398), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [233980] = 2, + ACTIONS(3142), 1, + anon_sym_LBRACE, + STATE(5648), 1, + sym_statement_block, + [234175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7473), 2, - anon_sym_in, - anon_sym_of, - [233988] = 2, + ACTIONS(9400), 1, + anon_sym_SEMI, + ACTIONS(9402), 1, + sym__automatic_semicolon, + [234185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9400), 2, + ACTIONS(7109), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [233996] = 3, + anon_sym_RBRACE, + [234193] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9402), 1, - anon_sym_SEMI, ACTIONS(9404), 1, + anon_sym_SEMI, + ACTIONS(9406), 1, sym__automatic_semicolon, - [234006] = 3, + [234203] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - STATE(2454), 1, - sym_statement_block, - [234016] = 3, + ACTIONS(9408), 1, + anon_sym_SEMI, + ACTIONS(9410), 1, + sym__automatic_semicolon, + [234213] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4696), 1, - sym_class_body, - [234026] = 2, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5741), 1, + sym_formal_parameters, + [234223] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8936), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [234034] = 3, + ACTIONS(7396), 1, + anon_sym_LT, + STATE(4212), 1, + sym_type_arguments, + [234233] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5462), 1, - sym_statement_block, - [234044] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(6112), 1, + sym_formal_parameters, + [234243] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(3099), 1, + STATE(5498), 1, sym_statement_block, - [234054] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9406), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [234062] = 2, + [234253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8193), 2, - anon_sym_LBRACE, - anon_sym_EQ_GT, - [234070] = 2, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5732), 1, + sym_formal_parameters, + [234263] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8191), 2, + ACTIONS(3142), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [234078] = 2, + STATE(5652), 1, + sym_statement_block, + [234273] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8836), 2, + ACTIONS(7083), 2, anon_sym_COMMA, - anon_sym_GT, - [234086] = 3, + anon_sym_RBRACE, + [234281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, + ACTIONS(3640), 1, anon_sym_LPAREN, - STATE(5761), 1, + STATE(4060), 1, sym_formal_parameters, - [234096] = 2, + [234291] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7077), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [234104] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(5464), 1, + STATE(5669), 1, sym_statement_block, - [234114] = 3, + [234301] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5746), 1, + STATE(6111), 1, sym_formal_parameters, - [234124] = 3, + [234311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym_parenthesized_expression, - [234134] = 3, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(9071), 1, + anon_sym_GT, + [234321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(9071), 1, + anon_sym_GT, + [234331] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9390), 1, anon_sym_LBRACE, - STATE(2572), 1, - sym_class_body, - [234144] = 2, + STATE(4684), 1, + sym_enum_body, + [234341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7059), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [234152] = 3, + ACTIONS(9032), 1, + sym_identifier, + STATE(5323), 1, + sym_type_parameter, + [234351] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7445), 1, + anon_sym_LBRACE, + STATE(2429), 1, + sym_class_body, + [234361] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5732), 1, + STATE(6095), 1, sym_formal_parameters, - [234162] = 3, + [234371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - STATE(3249), 1, - sym_class_body, - [234172] = 3, + ACTIONS(9412), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [234379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(1065), 1, - sym_class_body, - [234182] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5855), 1, + sym_formal_parameters, + [234389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, - anon_sym_LBRACE, - STATE(2884), 1, - sym_class_body, - [234192] = 3, + ACTIONS(9414), 1, + anon_sym_LT, + STATE(2839), 1, + sym_type_arguments, + [234399] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5739), 1, + STATE(6096), 1, sym_formal_parameters, - [234202] = 3, + [234409] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7744), 1, + ACTIONS(9119), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [234417] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(1054), 1, - sym_statement_block, - [234212] = 2, + STATE(3254), 1, + sym_class_body, + [234427] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9408), 2, + ACTIONS(9128), 2, anon_sym_COMMA, anon_sym_RBRACE, - [234220] = 3, + [234435] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - STATE(2296), 1, - sym_class_body, - [234230] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5859), 1, + sym_formal_parameters, + [234445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - STATE(1136), 1, + STATE(2217), 1, sym_class_body, - [234240] = 3, + [234455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 1, - anon_sym_from, - STATE(5625), 1, - sym__from_clause, - [234250] = 3, + ACTIONS(4873), 1, + anon_sym_LBRACE, + STATE(2210), 1, + sym_statement_block, + [234465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(2174), 1, + STATE(2214), 1, sym_statement_block, - [234260] = 3, + [234475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(1014), 1, + STATE(2427), 1, sym_statement_block, - [234270] = 2, + [234485] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9410), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [234278] = 2, + ACTIONS(9096), 2, + anon_sym_COMMA, + anon_sym_GT, + [234493] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9412), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [234286] = 3, + ACTIONS(4827), 1, + anon_sym_LPAREN, + STATE(2208), 1, + sym_arguments, + [234503] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_parenthesized_expression, - [234296] = 3, + ACTIONS(9416), 2, + anon_sym_COMMA, + anon_sym_GT, + [234511] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7091), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [234519] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7625), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - STATE(163), 1, + STATE(2207), 1, sym_class_body, - [234306] = 3, + [234529] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(2283), 1, - sym_statement_block, - [234316] = 2, + STATE(4764), 1, + sym_class_body, + [234539] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9080), 2, + ACTIONS(9418), 2, anon_sym_COMMA, anon_sym_RBRACE, - [234324] = 2, + [234547] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8972), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [234332] = 3, + ACTIONS(7429), 1, + anon_sym_LBRACE, + STATE(2178), 1, + sym_class_body, + [234557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(2879), 1, + STATE(5472), 1, sym_statement_block, - [234342] = 2, + [234567] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9414), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [234350] = 3, + ACTIONS(7049), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [234575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9416), 1, - anon_sym_SEMI, - ACTIONS(9418), 1, - sym__automatic_semicolon, - [234360] = 3, + ACTIONS(4873), 1, + anon_sym_LBRACE, + STATE(2179), 1, + sym_statement_block, + [234585] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9420), 1, - sym_identifier, - STATE(5158), 1, - sym_nested_identifier, - [234370] = 3, + ACTIONS(9420), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(2203), 1, + STATE(4789), 1, sym_class_body, - [234380] = 3, + [234603] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, - anon_sym_LBRACE, - STATE(3061), 1, - sym_statement_block, - [234390] = 3, + ACTIONS(7125), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [234611] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(2204), 1, + STATE(5642), 1, sym_statement_block, - [234400] = 3, + [234621] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(2206), 1, - sym_statement_block, - [234410] = 3, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(4807), 1, + sym_formal_parameters, + [234631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(2208), 1, + STATE(4792), 1, sym_class_body, - [234420] = 3, + [234641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, - anon_sym_LBRACE, - STATE(2603), 1, - sym_statement_block, - [234430] = 3, + ACTIONS(9422), 1, + anon_sym_SEMI, + ACTIONS(9424), 1, + sym__automatic_semicolon, + [234651] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7922), 1, - sym_identifier, - ACTIONS(7926), 1, - sym_private_property_identifier, - [234440] = 3, + ACTIONS(9426), 1, + anon_sym_SEMI, + ACTIONS(9428), 1, + sym__automatic_semicolon, + [234661] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4797), 1, + STATE(6001), 1, sym_formal_parameters, - [234450] = 3, + [234671] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5878), 1, - sym_formal_parameters, - [234460] = 3, + ACTIONS(7429), 1, + anon_sym_LBRACE, + STATE(2203), 1, + sym_class_body, + [234681] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(1051), 1, - sym_class_body, - [234470] = 2, + STATE(2201), 1, + sym_statement_block, + [234691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9422), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [234478] = 3, + ACTIONS(7445), 1, + anon_sym_LBRACE, + STATE(2556), 1, + sym_class_body, + [234701] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4788), 1, + STATE(4798), 1, sym_formal_parameters, - [234488] = 3, + [234711] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7611), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(1141), 1, + STATE(4799), 1, sym_class_body, - [234498] = 3, + [234721] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5889), 1, + STATE(6004), 1, sym_formal_parameters, - [234508] = 3, + [234731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, + ACTIONS(3142), 1, anon_sym_LBRACE, - STATE(4728), 1, - sym_class_body, - [234518] = 3, + STATE(1168), 1, + sym_statement_block, + [234741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2002), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(156), 1, - sym_statement_block, - [234528] = 3, + STATE(3210), 1, + sym_class_body, + [234751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7465), 1, + ACTIONS(7445), 1, anon_sym_LBRACE, - STATE(2579), 1, + STATE(3111), 1, sym_class_body, - [234538] = 3, + [234761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9424), 1, - anon_sym_in, - ACTIONS(9426), 1, - anon_sym_COLON, - [234548] = 2, + ACTIONS(9430), 1, + sym_identifier, + ACTIONS(9432), 1, + anon_sym_STAR, + [234771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7063), 2, + ACTIONS(7119), 2, anon_sym_COMMA, anon_sym_RBRACE, - [234556] = 3, + [234779] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 1, - anon_sym_LPAREN, - STATE(36), 1, - sym__for_header, - [234566] = 3, + ACTIONS(9434), 1, + anon_sym_LT, + STATE(2598), 1, + sym_type_arguments, + [234789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3152), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(5547), 1, + STATE(2416), 1, sym_statement_block, - [234576] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9428), 1, - anon_sym_LBRACE, - STATE(1078), 1, - sym_switch_body, - [234586] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7439), 1, - anon_sym_LBRACE, - STATE(2839), 1, - sym_class_body, - [234596] = 3, + [234799] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(9370), 1, anon_sym_LBRACE, - STATE(2851), 1, - sym_statement_block, - [234606] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9430), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [234614] = 3, + STATE(1152), 1, + sym_enum_body, + [234809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5709), 1, - sym_formal_parameters, - [234624] = 3, + ACTIONS(7854), 1, + sym_identifier, + ACTIONS(7858), 1, + sym_private_property_identifier, + [234819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, + ACTIONS(7552), 1, anon_sym_LBRACE, - STATE(4730), 1, + STATE(163), 1, sym_class_body, - [234634] = 3, + [234829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4829), 1, - anon_sym_LPAREN, - STATE(2263), 1, - sym_arguments, - [234644] = 3, + ACTIONS(9436), 1, + anon_sym_SEMI, + ACTIONS(9438), 1, + sym__automatic_semicolon, + [234839] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5708), 1, + STATE(5718), 1, sym_formal_parameters, - [234654] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - STATE(2222), 1, - sym_class_body, - [234664] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - STATE(2257), 1, - sym_class_body, - [234674] = 3, + [234849] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5728), 1, + STATE(5717), 1, sym_formal_parameters, - [234684] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3152), 1, - anon_sym_LBRACE, - STATE(5541), 1, - sym_statement_block, - [234694] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9432), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [234702] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7465), 1, - anon_sym_LBRACE, - STATE(3084), 1, - sym_class_body, - [234712] = 3, + [234859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(3027), 1, + STATE(4803), 1, sym_class_body, - [234722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9434), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [234730] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5999), 1, - anon_sym_LBRACE, - STATE(3051), 1, - sym_statement_block, - [234740] = 3, + [234869] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7245), 1, + ACTIONS(7241), 1, anon_sym_DOT, - ACTIONS(9258), 1, + ACTIONS(9024), 1, anon_sym_GT, - [234750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7762), 1, - anon_sym_LPAREN, - STATE(5736), 1, - sym_formal_parameters, - [234760] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5388), 1, - anon_sym_LPAREN, - STATE(3039), 1, - sym_arguments, - [234770] = 3, + [234879] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7422), 1, - anon_sym_is, - ACTIONS(7836), 1, - anon_sym_LBRACE, - [234780] = 3, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(9024), 1, + anon_sym_GT, + [234889] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5737), 1, + STATE(5720), 1, sym_formal_parameters, - [234790] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7245), 1, - anon_sym_DOT, - ACTIONS(9039), 1, - anon_sym_GT, - [234800] = 3, + [234899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(3031), 1, - sym_class_body, - [234810] = 3, + STATE(3167), 1, + sym_statement_block, + [234909] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5983), 1, + STATE(5723), 1, sym_formal_parameters, - [234820] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(9039), 1, - anon_sym_GT, - [234830] = 3, + [234919] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9326), 1, - anon_sym_LPAREN, - STATE(42), 1, - sym_parenthesized_expression, - [234840] = 3, + ACTIONS(9440), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [234927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(3013), 1, - sym_class_body, - [234850] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9326), 1, - anon_sym_LPAREN, - STATE(41), 1, - sym_parenthesized_expression, - [234860] = 3, + STATE(2192), 1, + sym_statement_block, + [234937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(4877), 1, anon_sym_LBRACE, - STATE(2910), 1, + STATE(3218), 1, sym_statement_block, - [234870] = 3, + [234947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(2908), 1, + STATE(4904), 1, sym_class_body, - [234880] = 3, + [234957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3642), 1, + ACTIONS(8987), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [234965] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(4307), 1, + STATE(5768), 1, sym_formal_parameters, - [234890] = 3, + [234975] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, - anon_sym_LBRACE, - STATE(4896), 1, - sym_class_body, - [234900] = 3, + ACTIONS(9442), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [234983] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7439), 1, + ACTIONS(8075), 2, anon_sym_LBRACE, - STATE(2901), 1, - sym_class_body, - [234910] = 3, + anon_sym_EQ_GT, + [234991] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, - anon_sym_LBRACE, - STATE(2899), 1, - sym_statement_block, - [234920] = 3, + ACTIONS(9444), 1, + anon_sym_LT, + STATE(3392), 1, + sym_type_arguments, + [235001] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7762), 1, + anon_sym_LPAREN, + STATE(5772), 1, + sym_formal_parameters, + [235011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - STATE(4760), 1, + STATE(2185), 1, sym_class_body, - [234930] = 3, + [235021] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4897), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(3065), 1, + STATE(2186), 1, sym_statement_block, - [234940] = 3, + [235031] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(4873), 1, anon_sym_LBRACE, - STATE(2892), 1, + STATE(2187), 1, sym_statement_block, - [234950] = 3, + [235041] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4893), 1, + ACTIONS(7429), 1, anon_sym_LBRACE, - STATE(2243), 1, - sym_statement_block, - [234960] = 2, + STATE(2188), 1, + sym_class_body, + [235051] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9436), 2, + ACTIONS(9446), 2, sym__automatic_semicolon, anon_sym_SEMI, - [234968] = 3, + [235059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5999), 1, + ACTIONS(7535), 1, anon_sym_LBRACE, - STATE(2949), 1, - sym_statement_block, - [234978] = 3, + STATE(4837), 1, + sym_class_body, + [235069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9316), 1, + ACTIONS(9374), 1, anon_sym_LPAREN, - STATE(40), 1, + STATE(46), 1, sym__for_header, - [234988] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7439), 1, - anon_sym_LBRACE, - STATE(2890), 1, - sym_class_body, - [234998] = 3, + [235079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7455), 1, - anon_sym_LBRACE, - STATE(2262), 1, - sym_class_body, - [235008] = 2, + ACTIONS(7340), 1, + anon_sym_COLON, + ACTIONS(8927), 1, + anon_sym_GT, + [235089] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9438), 2, - sym__automatic_semicolon, + ACTIONS(9448), 1, anon_sym_SEMI, - [235016] = 3, + ACTIONS(9450), 1, + sym__automatic_semicolon, + [235099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7762), 1, + ACTIONS(9326), 1, anon_sym_LPAREN, - STATE(5707), 1, - sym_formal_parameters, - [235026] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4315), 1, - anon_sym_COLON, - STATE(5487), 1, - sym_type_annotation, - [235036] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4893), 1, - anon_sym_LBRACE, - STATE(2255), 1, - sym_statement_block, - [235046] = 3, + STATE(52), 1, + sym_parenthesized_expression, + [235109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9440), 1, - anon_sym_LT, - STATE(2351), 1, - sym_type_arguments, - [235056] = 3, + ACTIONS(9326), 1, + anon_sym_LPAREN, + STATE(59), 1, + sym_parenthesized_expression, + [235119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7356), 1, - anon_sym_COLON, - ACTIONS(9258), 1, + ACTIONS(7241), 1, + anon_sym_DOT, + ACTIONS(8927), 1, anon_sym_GT, - [235066] = 3, + [235129] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5984), 1, + STATE(6029), 1, sym_formal_parameters, - [235076] = 3, + [235139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7535), 1, + anon_sym_LBRACE, + STATE(4841), 1, + sym_class_body, + [235149] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7762), 1, anon_sym_LPAREN, - STATE(5727), 1, + STATE(5990), 1, sym_formal_parameters, - [235086] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9442), 1, - anon_sym_LT, - STATE(2497), 1, - sym_type_arguments, - [235096] = 3, + [235159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8709), 1, - anon_sym_from, - STATE(5522), 1, - sym__from_clause, - [235106] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9444), 1, - anon_sym_GT, - [235113] = 2, + ACTIONS(7429), 1, + anon_sym_LBRACE, + STATE(2189), 1, + sym_class_body, + [235169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9446), 1, - anon_sym_EQ_GT, - [235120] = 2, + ACTIONS(7445), 1, + anon_sym_LBRACE, + STATE(3290), 1, + sym_class_body, + [235179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9448), 1, - sym_identifier, - [235127] = 2, + ACTIONS(7414), 1, + anon_sym_is, + ACTIONS(7836), 1, + anon_sym_LBRACE, + [235189] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9450), 1, + ACTIONS(9452), 1, anon_sym_EQ_GT, - [235134] = 2, + [235196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9452), 1, - anon_sym_EQ_GT, - [235141] = 2, + ACTIONS(8927), 1, + anon_sym_GT, + [235203] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9454), 1, anon_sym_EQ_GT, - [235148] = 2, + [235210] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9456), 1, anon_sym_EQ_GT, - [235155] = 2, + [235217] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9458), 1, anon_sym_EQ_GT, - [235162] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6467), 1, - anon_sym_RBRACK, - [235169] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9039), 1, - anon_sym_GT, - [235176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9057), 1, - anon_sym_as, - [235183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6569), 1, - anon_sym_RBRACK, - [235190] = 2, + [235224] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9460), 1, - sym_identifier, - [235197] = 2, + anon_sym_EQ_GT, + [235231] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9462), 1, - anon_sym_GT, - [235204] = 2, + anon_sym_EQ_GT, + [235238] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9464), 1, - anon_sym_GT, - [235211] = 2, + anon_sym_EQ_GT, + [235245] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9466), 1, - anon_sym_GT, - [235218] = 2, + anon_sym_EQ_GT, + [235252] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9468), 1, - anon_sym_GT, - [235225] = 2, + anon_sym_DOT, + [235259] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9470), 1, anon_sym_GT, - [235232] = 2, + [235266] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9472), 1, anon_sym_EQ_GT, - [235239] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6465), 1, - anon_sym_RBRACE, - [235246] = 2, + [235273] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9474), 1, - sym_identifier, - [235253] = 2, + anon_sym_EQ_GT, + [235280] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9476), 1, anon_sym_EQ_GT, - [235260] = 2, + [235287] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9478), 1, anon_sym_GT, - [235267] = 2, + [235294] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9480), 1, - anon_sym_EQ_GT, - [235274] = 2, + sym_identifier, + [235301] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9482), 1, - anon_sym_EQ_GT, - [235281] = 2, + sym_identifier, + [235308] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9484), 1, - anon_sym_EQ_GT, - [235288] = 2, + anon_sym_class, + [235315] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9486), 1, - anon_sym_EQ_GT, - [235295] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9302), 1, - anon_sym_RBRACK, - [235302] = 2, + anon_sym_GT, + [235322] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9203), 1, + ACTIONS(6514), 1, anon_sym_RBRACK, - [235309] = 2, + [235329] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9488), 1, anon_sym_EQ_GT, - [235316] = 2, + [235336] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9490), 1, - anon_sym_EQ_GT, - [235323] = 2, + anon_sym_GT, + [235343] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9492), 1, - anon_sym_EQ_GT, - [235330] = 2, + sym_number, + [235350] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9494), 1, - anon_sym_EQ_GT, - [235337] = 2, + anon_sym_GT, + [235357] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9496), 1, - anon_sym_EQ_GT, - [235344] = 2, + anon_sym_GT, + [235364] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9498), 1, - anon_sym_EQ_GT, - [235351] = 2, + anon_sym_GT, + [235371] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9152), 1, + anon_sym_RBRACK, + [235378] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9028), 1, + anon_sym_RBRACK, + [235385] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9500), 1, anon_sym_EQ_GT, - [235358] = 2, + [235392] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9502), 1, - sym_identifier, - [235365] = 2, + anon_sym_EQ_GT, + [235399] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9504), 1, - anon_sym_EQ_GT, - [235372] = 2, + anon_sym_COLON, + [235406] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9506), 1, - anon_sym_GT, - [235379] = 2, + sym_identifier, + [235413] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6509), 1, + anon_sym_RPAREN, + [235420] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9508), 1, anon_sym_EQ_GT, - [235386] = 2, + [235427] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9510), 1, anon_sym_GT, - [235393] = 2, - ACTIONS(3), 1, + [235434] = 2, + ACTIONS(7457), 1, sym_comment, ACTIONS(9512), 1, - anon_sym_GT, - [235400] = 2, + sym_regex_pattern, + [235441] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9514), 1, - anon_sym_GT, - [235407] = 2, + anon_sym_EQ_GT, + [235448] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9516), 1, - anon_sym_GT, - [235414] = 2, + anon_sym_EQ, + [235455] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9518), 1, anon_sym_EQ_GT, - [235421] = 2, + [235462] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9520), 1, - anon_sym_GT, - [235428] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9213), 1, - anon_sym_from, - [235435] = 2, + anon_sym_EQ_GT, + [235469] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6484), 1, - anon_sym_RBRACK, - [235442] = 2, - ACTIONS(7435), 1, - sym_comment, ACTIONS(9522), 1, - sym_regex_pattern, - [235449] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6486), 1, anon_sym_RPAREN, - [235456] = 2, + [235476] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9524), 1, anon_sym_EQ_GT, - [235463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4885), 1, - anon_sym_DOT, - [235470] = 2, + [235483] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9526), 1, - anon_sym_EQ, - [235477] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9258), 1, - anon_sym_GT, - [235484] = 2, + sym_identifier, + [235490] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9528), 1, anon_sym_EQ_GT, - [235491] = 2, + [235497] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9530), 1, - sym_identifier, - [235498] = 2, + anon_sym_EQ_GT, + [235504] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9532), 1, - anon_sym_EQ_GT, - [235505] = 2, + sym_identifier, + [235511] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9534), 1, - anon_sym_GT, - [235512] = 2, + anon_sym_EQ_GT, + [235518] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9536), 1, - sym_number, - [235519] = 2, + anon_sym_from, + [235525] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9538), 1, - anon_sym_EQ_GT, - [235526] = 2, + anon_sym_LPAREN, + [235532] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9540), 1, - anon_sym_GT, - [235533] = 2, + sym_identifier, + [235539] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9542), 1, - anon_sym_EQ_GT, - [235540] = 2, + sym_identifier, + [235546] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9544), 1, - anon_sym_EQ_GT, - [235547] = 2, + anon_sym_RBRACE, + [235553] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9546), 1, - anon_sym_EQ_GT, - [235554] = 2, - ACTIONS(7435), 1, + anon_sym_from, + [235560] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9548), 1, - sym_regex_pattern, - [235561] = 2, + anon_sym_from, + [235567] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9550), 1, - anon_sym_EQ, - [235568] = 2, + anon_sym_require, + [235574] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9024), 1, + anon_sym_GT, + [235581] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9552), 1, anon_sym_EQ_GT, - [235575] = 2, + [235588] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9554), 1, - anon_sym_RBRACK, - [235582] = 2, + anon_sym_EQ, + [235595] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9556), 1, - anon_sym_EQ_GT, - [235589] = 2, + anon_sym_GT, + [235602] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9558), 1, - anon_sym_EQ_GT, - [235596] = 2, + anon_sym_GT, + [235609] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9560), 1, anon_sym_EQ_GT, - [235603] = 2, + [235616] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9562), 1, anon_sym_EQ_GT, - [235610] = 2, + [235623] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9564), 1, - anon_sym_EQ_GT, - [235617] = 2, + sym_identifier, + [235630] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9566), 1, anon_sym_EQ_GT, - [235624] = 2, + [235637] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9568), 1, sym_identifier, - [235631] = 2, + [235644] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9570), 1, - anon_sym_EQ_GT, - [235638] = 2, + anon_sym_EQ, + [235651] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9572), 1, - anon_sym_EQ, - [235645] = 2, + anon_sym_EQ_GT, + [235658] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9574), 1, - anon_sym_RPAREN, - [235652] = 2, + anon_sym_EQ_GT, + [235665] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9576), 1, anon_sym_EQ_GT, - [235659] = 2, + [235672] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9578), 1, - anon_sym_EQ, - [235666] = 2, + anon_sym_GT, + [235679] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9580), 1, anon_sym_EQ_GT, - [235673] = 2, + [235686] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9582), 1, - anon_sym_class, - [235680] = 2, + anon_sym_EQ_GT, + [235693] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9584), 1, - sym_identifier, - [235687] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6441), 1, - anon_sym_RBRACK, - [235694] = 2, + anon_sym_GT, + [235700] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9586), 1, - anon_sym_RPAREN, - [235701] = 2, + anon_sym_GT, + [235707] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9588), 1, anon_sym_GT, - [235708] = 2, + [235714] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8989), 1, + sym_identifier, + [235721] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9590), 1, - anon_sym_EQ_GT, - [235715] = 2, + anon_sym_GT, + [235728] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9592), 1, anon_sym_EQ_GT, - [235722] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5897), 1, - anon_sym_RPAREN, - [235729] = 2, + [235735] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9594), 1, anon_sym_EQ_GT, - [235736] = 2, + [235742] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9596), 1, - anon_sym_EQ_GT, - [235743] = 2, + anon_sym_SLASH2, + [235749] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9598), 1, - anon_sym_EQ_GT, - [235750] = 2, + anon_sym_GT, + [235756] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5986), 1, + anon_sym_RPAREN, + [235763] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9600), 1, anon_sym_EQ_GT, - [235757] = 2, + [235770] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9602), 1, anon_sym_EQ_GT, - [235764] = 2, + [235777] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9604), 1, anon_sym_EQ_GT, - [235771] = 2, + [235784] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9606), 1, - anon_sym_EQ_GT, - [235778] = 2, + anon_sym_GT, + [235791] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9608), 1, - anon_sym_target, - [235785] = 2, + anon_sym_EQ_GT, + [235798] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9610), 1, - sym_identifier, - [235792] = 2, + anon_sym_EQ_GT, + [235805] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9612), 1, - anon_sym_SLASH2, - [235799] = 2, + anon_sym_EQ_GT, + [235812] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9614), 1, - anon_sym_EQ_GT, - [235806] = 2, + sym_identifier, + [235819] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9616), 1, anon_sym_EQ_GT, - [235813] = 2, + [235826] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9618), 1, - anon_sym_EQ_GT, - [235820] = 2, + anon_sym_EQ, + [235833] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9620), 1, - anon_sym_from, - [235827] = 2, + anon_sym_EQ_GT, + [235840] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9622), 1, anon_sym_EQ_GT, - [235834] = 2, + [235847] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9624), 1, - anon_sym_EQ, - [235841] = 2, + sym_identifier, + [235854] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9626), 1, - anon_sym_from, - [235848] = 2, + anon_sym_EQ, + [235861] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9628), 1, - sym_identifier, - [235855] = 2, + anon_sym_GT, + [235868] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9630), 1, - sym_identifier, - [235862] = 2, + anon_sym_EQ_GT, + [235875] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9632), 1, - anon_sym_GT, - [235869] = 2, + anon_sym_EQ_GT, + [235882] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9634), 1, - sym_identifier, - [235876] = 2, + anon_sym_GT, + [235889] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9636), 1, - anon_sym_EQ, - [235883] = 2, + anon_sym_EQ_GT, + [235896] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9638), 1, - anon_sym_EQ_GT, - [235890] = 2, + anon_sym_GT, + [235903] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6457), 1, + anon_sym_RBRACE, + [235910] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9640), 1, - anon_sym_LPAREN, - [235897] = 2, + anon_sym_EQ_GT, + [235917] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9642), 1, - anon_sym_from, - [235904] = 2, + anon_sym_GT, + [235924] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9644), 1, - anon_sym_EQ_GT, - [235911] = 2, + anon_sym_GT, + [235931] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6446), 1, + anon_sym_RBRACK, + [235938] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9646), 1, - anon_sym_from, - [235918] = 2, + anon_sym_EQ_GT, + [235945] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9648), 1, - anon_sym_GT, - [235925] = 2, + anon_sym_RBRACK, + [235952] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9650), 1, - sym_number, - [235932] = 2, + anon_sym_target, + [235959] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9652), 1, - anon_sym_GT, - [235939] = 2, + anon_sym_EQ, + [235966] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9654), 1, - sym_identifier, - [235946] = 2, + anon_sym_GT, + [235973] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9656), 1, - anon_sym_EQ_GT, - [235953] = 2, + anon_sym_LBRACK, + [235980] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9658), 1, - anon_sym_EQ_GT, - [235960] = 2, + anon_sym_SLASH2, + [235987] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9660), 1, - anon_sym_EQ, - [235967] = 2, + anon_sym_EQ_GT, + [235994] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9662), 1, + ACTIONS(8806), 1, anon_sym_EQ_GT, - [235974] = 2, - ACTIONS(7435), 1, + [236001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9662), 1, + sym_identifier, + [236008] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9664), 1, - sym_regex_pattern, - [235981] = 2, + sym_number, + [236015] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9666), 1, - anon_sym_EQ_GT, - [235988] = 2, + sym_identifier, + [236022] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9668), 1, anon_sym_EQ_GT, - [235995] = 2, + [236029] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9670), 1, anon_sym_EQ_GT, - [236002] = 2, + [236036] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7398), 1, + anon_sym_DOT, + [236043] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9672), 1, - anon_sym_GT, - [236009] = 2, + anon_sym_EQ, + [236050] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7051), 1, + anon_sym_EQ_GT, + [236057] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9674), 1, anon_sym_EQ_GT, - [236016] = 2, + [236064] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9676), 1, - sym_identifier, - [236023] = 2, + anon_sym_EQ_GT, + [236071] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9678), 1, anon_sym_EQ_GT, - [236030] = 2, + [236078] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9680), 1, - sym_identifier, - [236037] = 2, + anon_sym_EQ_GT, + [236085] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9682), 1, - sym_number, - [236044] = 2, + sym_identifier, + [236092] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9684), 1, - anon_sym_EQ_GT, - [236051] = 2, + sym_number, + [236099] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9686), 1, - anon_sym_SLASH2, - [236058] = 2, + sym_identifier, + [236106] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9688), 1, - anon_sym_COLON, - [236065] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5785), 1, - anon_sym_RPAREN, - [236072] = 2, + anon_sym_EQ_GT, + [236113] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9690), 1, - anon_sym_DOT, - [236079] = 2, + anon_sym_EQ, + [236120] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9692), 1, anon_sym_EQ_GT, - [236086] = 2, + [236127] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9694), 1, - anon_sym_EQ_GT, - [236093] = 2, + anon_sym_GT, + [236134] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9696), 1, anon_sym_GT, - [236100] = 2, + [236141] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9698), 1, - anon_sym_EQ_GT, - [236107] = 2, + anon_sym_GT, + [236148] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9182), 1, + anon_sym_RBRACK, + [236155] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9700), 1, - anon_sym_require, - [236114] = 2, + sym_identifier, + [236162] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9195), 1, + anon_sym_LBRACE, + [236169] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9702), 1, - anon_sym_GT, - [236121] = 2, + anon_sym_EQ_GT, + [236176] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9704), 1, anon_sym_EQ_GT, - [236128] = 2, + [236183] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9706), 1, anon_sym_EQ_GT, - [236135] = 2, + [236190] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9708), 1, - sym_identifier, - [236142] = 2, + anon_sym_EQ_GT, + [236197] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9710), 1, - anon_sym_EQ_GT, - [236149] = 2, + anon_sym_RPAREN, + [236204] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9712), 1, - anon_sym_RPAREN, - [236156] = 2, + anon_sym_EQ_GT, + [236211] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9071), 1, + anon_sym_GT, + [236218] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9714), 1, - sym_identifier, - [236163] = 2, + anon_sym_EQ_GT, + [236225] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9716), 1, - anon_sym_EQ, - [236170] = 2, + anon_sym_EQ_GT, + [236232] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9718), 1, - anon_sym_EQ, - [236177] = 2, + anon_sym_EQ_GT, + [236239] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9720), 1, - anon_sym_RBRACE, - [236184] = 2, + anon_sym_EQ_GT, + [236246] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9722), 1, - anon_sym_GT, - [236191] = 2, + anon_sym_EQ, + [236253] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9724), 1, - anon_sym_EQ_GT, - [236198] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6348), 1, - anon_sym_RPAREN, - [236205] = 2, + anon_sym_SLASH2, + [236260] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9726), 1, anon_sym_EQ, - [236212] = 2, + [236267] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9728), 1, - anon_sym_GT, - [236219] = 2, + anon_sym_EQ_GT, + [236274] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9730), 1, - anon_sym_from, - [236226] = 2, + anon_sym_EQ_GT, + [236281] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9732), 1, - anon_sym_RPAREN, - [236233] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6350), 1, - anon_sym_RPAREN, - [236240] = 2, + sym_identifier, + [236288] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9734), 1, - anon_sym_GT, - [236247] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6575), 1, - anon_sym_RPAREN, - [236254] = 2, + anon_sym_EQ_GT, + [236295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6354), 1, - anon_sym_RPAREN, - [236261] = 2, + ACTIONS(9085), 1, + anon_sym_RBRACK, + [236302] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9736), 1, - anon_sym_GT, - [236268] = 2, + sym_identifier, + [236309] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9738), 1, - anon_sym_GT, - [236275] = 2, + anon_sym_EQ_GT, + [236316] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9740), 1, anon_sym_GT, - [236282] = 2, + [236323] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4883), 1, + anon_sym_DOT, + [236330] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9742), 1, - anon_sym_RPAREN, - [236289] = 2, + anon_sym_GT, + [236337] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6406), 1, - anon_sym_COLON, - [236296] = 2, + ACTIONS(5960), 1, + anon_sym_RPAREN, + [236344] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9744), 1, - ts_builtin_sym_end, - [236303] = 2, + sym_identifier, + [236351] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9746), 1, - anon_sym_EQ, - [236310] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9003), 1, - anon_sym_RBRACK, - [236317] = 2, + anon_sym_RBRACE, + [236358] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9748), 1, - sym_identifier, - [236324] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5899), 1, - anon_sym_RPAREN, - [236331] = 2, + anon_sym_SLASH2, + [236365] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9750), 1, - anon_sym_EQ, - [236338] = 2, + anon_sym_GT, + [236372] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9752), 1, - anon_sym_EQ_GT, - [236345] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9754), 1, - anon_sym_from, - [236352] = 2, + sym_identifier, + [236379] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9754), 1, - anon_sym_from, - [236359] = 2, + anon_sym_EQ_GT, + [236386] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9756), 1, - anon_sym_EQ_GT, - [236366] = 2, + anon_sym_EQ, + [236393] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9758), 1, - anon_sym_COLON, - [236373] = 2, + anon_sym_EQ_GT, + [236400] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9760), 1, - anon_sym_EQ_GT, - [236380] = 2, + sym_identifier, + [236407] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9762), 1, - anon_sym_RBRACE, - [236387] = 2, + anon_sym_EQ_GT, + [236414] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9764), 1, anon_sym_EQ_GT, - [236394] = 2, + [236421] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9766), 1, - anon_sym_RBRACK, - [236401] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_RBRACE, - [236408] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6266), 1, - anon_sym_DOT, - [236415] = 2, + anon_sym_SLASH2, + [236428] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9768), 1, anon_sym_EQ_GT, - [236422] = 2, + [236435] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(9295), 1, + anon_sym_RBRACK, + [236442] = 2, + ACTIONS(7457), 1, + sym_comment, ACTIONS(9770), 1, - anon_sym_EQ_GT, - [236429] = 2, + sym_regex_pattern, + [236449] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9772), 1, - anon_sym_EQ, - [236436] = 2, + anon_sym_SLASH2, + [236456] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9774), 1, sym_identifier, - [236443] = 2, + [236463] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9776), 1, anon_sym_EQ_GT, - [236450] = 2, - ACTIONS(3), 1, + [236470] = 2, + ACTIONS(7457), 1, sym_comment, ACTIONS(9778), 1, - anon_sym_from, - [236457] = 2, - ACTIONS(7435), 1, + sym_regex_pattern, + [236477] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9780), 1, - sym_regex_pattern, - [236464] = 2, + anon_sym_EQ_GT, + [236484] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9782), 1, anon_sym_EQ_GT, - [236471] = 2, + [236491] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9784), 1, - anon_sym_EQ_GT, - [236478] = 2, + anon_sym_target, + [236498] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9786), 1, - anon_sym_EQ, - [236485] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7392), 1, - anon_sym_DOT, - [236492] = 2, + anon_sym_GT, + [236505] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9788), 1, - anon_sym_EQ_GT, - [236499] = 2, + anon_sym_from, + [236512] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9790), 1, - anon_sym_while, - [236506] = 2, + anon_sym_EQ, + [236519] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9792), 1, anon_sym_EQ_GT, - [236513] = 2, + [236526] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9794), 1, anon_sym_EQ_GT, - [236520] = 2, + [236533] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9796), 1, anon_sym_EQ_GT, - [236527] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7323), 1, - anon_sym_DOT, - [236534] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8956), 1, - anon_sym_GT, - [236541] = 2, + [236540] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9798), 1, - anon_sym_GT, - [236548] = 2, + sym_identifier, + [236547] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9800), 1, - anon_sym_GT, - [236555] = 2, + anon_sym_EQ_GT, + [236554] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9802), 1, - anon_sym_RPAREN, - [236562] = 2, + anon_sym_while, + [236561] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9804), 1, - anon_sym_EQ_GT, - [236569] = 2, + anon_sym_EQ, + [236568] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9806), 1, anon_sym_GT, - [236576] = 2, + [236575] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9808), 1, - anon_sym_EQ_GT, - [236583] = 2, + sym_identifier, + [236582] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9810), 1, anon_sym_EQ_GT, - [236590] = 2, + [236589] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9812), 1, sym_identifier, - [236597] = 2, + [236596] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9814), 1, anon_sym_EQ_GT, - [236604] = 2, + [236603] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9816), 1, anon_sym_EQ_GT, - [236611] = 2, - ACTIONS(3), 1, + [236610] = 2, + ACTIONS(7457), 1, sym_comment, ACTIONS(9818), 1, - anon_sym_EQ_GT, - [236618] = 2, - ACTIONS(3), 1, + sym_regex_pattern, + [236617] = 2, + ACTIONS(7457), 1, sym_comment, ACTIONS(9820), 1, - sym_identifier, - [236625] = 2, + sym_regex_pattern, + [236624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5964), 1, + anon_sym_RPAREN, + [236631] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9822), 1, - anon_sym_GT, - [236632] = 2, - ACTIONS(7435), 1, + sym_identifier, + [236638] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9824), 1, - sym_regex_pattern, - [236639] = 2, + sym_identifier, + [236645] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9826), 1, anon_sym_EQ_GT, - [236646] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9314), 1, - anon_sym_EQ, - [236653] = 2, + [236652] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9828), 1, - sym_identifier, - [236660] = 2, + anon_sym_RPAREN, + [236659] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9830), 1, - anon_sym_function, - [236667] = 2, + anon_sym_target, + [236666] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9832), 1, anon_sym_EQ_GT, - [236674] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5964), 1, - anon_sym_RPAREN, - [236681] = 2, + [236673] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9834), 1, - anon_sym_SLASH2, - [236688] = 2, + anon_sym_EQ_GT, + [236680] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9836), 1, anon_sym_EQ_GT, - [236695] = 2, + [236687] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9838), 1, - sym_identifier, - [236702] = 2, + anon_sym_EQ, + [236694] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9840), 1, anon_sym_EQ_GT, - [236709] = 2, + [236701] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9842), 1, anon_sym_EQ_GT, - [236716] = 2, - ACTIONS(7435), 1, + [236708] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9844), 1, - sym_regex_pattern, - [236723] = 2, + anon_sym_RBRACE, + [236715] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9846), 1, - sym_identifier, - [236730] = 2, + anon_sym_EQ_GT, + [236722] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9848), 1, - anon_sym_EQ_GT, - [236737] = 2, + anon_sym_GT, + [236729] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9850), 1, - anon_sym_GT, - [236744] = 2, + anon_sym_EQ_GT, + [236736] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9852), 1, sym_identifier, - [236751] = 2, + [236743] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9854), 1, - anon_sym_EQ_GT, - [236758] = 2, + anon_sym_function, + [236750] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9856), 1, - anon_sym_GT, - [236765] = 2, + sym_identifier, + [236757] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9858), 1, - anon_sym_EQ, - [236772] = 2, + anon_sym_EQ_GT, + [236764] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9860), 1, anon_sym_EQ_GT, - [236779] = 2, + [236771] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9862), 1, - sym_identifier, - [236786] = 2, + anon_sym_from, + [236778] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9864), 1, - anon_sym_EQ_GT, - [236793] = 2, + sym_identifier, + [236785] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9866), 1, - anon_sym_GT, - [236800] = 2, + ACTIONS(6238), 1, + anon_sym_DOT, + [236792] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9868), 1, + ACTIONS(9866), 1, anon_sym_EQ_GT, - [236807] = 2, + [236799] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9870), 1, - anon_sym_RPAREN, - [236814] = 2, + ACTIONS(9868), 1, + sym_number, + [236806] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6469), 1, - anon_sym_RBRACK, - [236821] = 2, + ACTIONS(9870), 1, + sym_identifier, + [236813] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9872), 1, anon_sym_GT, - [236828] = 2, + [236820] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9874), 1, - anon_sym_target, - [236835] = 2, + anon_sym_RPAREN, + [236827] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9876), 1, - anon_sym_GT, - [236842] = 2, + sym_identifier, + [236834] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9878), 1, anon_sym_EQ_GT, - [236849] = 2, + [236841] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9880), 1, - anon_sym_EQ_GT, - [236856] = 2, + sym_identifier, + [236848] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9882), 1, - anon_sym_EQ_GT, - [236863] = 2, + sym_identifier, + [236855] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9884), 1, - anon_sym_EQ, - [236870] = 2, + anon_sym_EQ_GT, + [236862] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9886), 1, anon_sym_EQ_GT, - [236877] = 2, + [236869] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9888), 1, - anon_sym_GT, - [236884] = 2, + anon_sym_EQ_GT, + [236876] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9890), 1, - anon_sym_SLASH2, - [236891] = 2, + anon_sym_EQ_GT, + [236883] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9892), 1, - sym_number, - [236898] = 2, + anon_sym_EQ_GT, + [236890] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9894), 1, - sym_identifier, - [236905] = 2, + sym_number, + [236897] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9896), 1, - anon_sym_EQ_GT, - [236912] = 2, + anon_sym_SLASH2, + [236904] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9898), 1, - anon_sym_GT, - [236919] = 2, + sym_identifier, + [236911] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9900), 1, - anon_sym_GT, - [236926] = 2, + anon_sym_EQ_GT, + [236918] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9902), 1, - anon_sym_GT, - [236933] = 2, + anon_sym_EQ_GT, + [236925] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9904), 1, - anon_sym_EQ, - [236940] = 2, + anon_sym_EQ_GT, + [236932] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9906), 1, - anon_sym_GT, - [236947] = 2, + anon_sym_COLON, + [236939] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9908), 1, - anon_sym_GT, - [236954] = 2, + anon_sym_SLASH2, + [236946] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9910), 1, - anon_sym_GT, - [236961] = 2, + ACTIONS(5977), 1, + anon_sym_RPAREN, + [236953] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9132), 1, - anon_sym_GT, - [236968] = 2, + ACTIONS(9910), 1, + anon_sym_EQ_GT, + [236960] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9912), 1, anon_sym_COLON, - [236975] = 2, + [236967] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6505), 1, + anon_sym_RBRACK, + [236974] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6032), 1, + ACTIONS(5973), 1, anon_sym_RPAREN, - [236982] = 2, + [236981] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9914), 1, anon_sym_EQ_GT, - [236989] = 2, + [236988] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6453), 1, + anon_sym_RBRACE, + [236995] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9055), 1, + anon_sym_from, + [237002] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9916), 1, - anon_sym_EQ_GT, - [236996] = 2, + anon_sym_EQ, + [237009] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9918), 1, anon_sym_EQ_GT, - [237003] = 2, + [237016] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9142), 1, - anon_sym_RBRACK, - [237010] = 2, + ACTIONS(9920), 1, + sym_identifier, + [237023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9920), 1, - anon_sym_EQ_GT, - [237017] = 2, + ACTIONS(7297), 1, + anon_sym_DOT, + [237030] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9922), 1, - anon_sym_EQ_GT, - [237024] = 2, + anon_sym_GT, + [237037] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9924), 1, anon_sym_EQ_GT, - [237031] = 2, + [237044] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9926), 1, - anon_sym_EQ_GT, - [237038] = 2, + sym_identifier, + [237051] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8993), 1, + anon_sym_as, + [237058] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6623), 1, + anon_sym_RBRACK, + [237065] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9928), 1, - anon_sym_EQ, - [237045] = 2, + sym_identifier, + [237072] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9930), 1, - sym_identifier, - [237052] = 2, + anon_sym_GT, + [237079] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9932), 1, - anon_sym_EQ_GT, - [237059] = 2, + anon_sym_GT, + [237086] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9020), 1, + anon_sym_GT, + [237093] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9934), 1, - sym_identifier, - [237066] = 2, + anon_sym_GT, + [237100] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9936), 1, - anon_sym_RBRACK, - [237073] = 2, + anon_sym_GT, + [237107] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9938), 1, - anon_sym_EQ_GT, - [237080] = 2, + anon_sym_GT, + [237114] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9207), 1, + anon_sym_RBRACK, + [237121] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9940), 1, - anon_sym_EQ_GT, - [237087] = 2, + anon_sym_RPAREN, + [237128] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5372), 1, + anon_sym_DOT, + [237135] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9942), 1, anon_sym_EQ_GT, - [237094] = 2, + [237142] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6341), 1, + anon_sym_RBRACK, + [237149] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9268), 1, + anon_sym_EQ, + [237156] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9944), 1, anon_sym_EQ_GT, - [237101] = 2, + [237163] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9946), 1, - sym_identifier, - [237108] = 2, + anon_sym_EQ_GT, + [237170] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9948), 1, anon_sym_EQ_GT, - [237115] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6496), 1, - anon_sym_RBRACE, - [237122] = 2, + [237177] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9950), 1, - anon_sym_EQ_GT, - [237129] = 2, + anon_sym_EQ, + [237184] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9952), 1, anon_sym_EQ_GT, - [237136] = 2, + [237191] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9954), 1, - anon_sym_EQ, - [237143] = 2, + sym_identifier, + [237198] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9956), 1, sym_identifier, - [237150] = 2, + [237205] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9958), 1, anon_sym_EQ_GT, - [237157] = 2, + [237212] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9960), 1, anon_sym_EQ_GT, - [237164] = 2, + [237219] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9962), 1, - anon_sym_LBRACK, - [237171] = 2, + anon_sym_EQ_GT, + [237226] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9964), 1, anon_sym_EQ_GT, - [237178] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9179), 1, - anon_sym_GT, - [237185] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6447), 1, - anon_sym_RBRACK, - [237192] = 2, + [237233] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9966), 1, anon_sym_EQ_GT, - [237199] = 2, + [237240] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9968), 1, - anon_sym_GT, - [237206] = 2, - ACTIONS(3), 1, + anon_sym_EQ_GT, + [237247] = 2, + ACTIONS(7457), 1, sym_comment, ACTIONS(9970), 1, - anon_sym_GT, - [237213] = 2, + sym_regex_pattern, + [237254] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9972), 1, anon_sym_EQ_GT, - [237220] = 2, + [237261] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9161), 1, + ACTIONS(9974), 1, anon_sym_GT, - [237227] = 2, + [237268] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9059), 1, - anon_sym_EQ, - [237234] = 2, + ACTIONS(9976), 1, + sym_identifier, + [237275] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9974), 1, - anon_sym_EQ_GT, - [237241] = 2, + ACTIONS(9978), 1, + anon_sym_GT, + [237282] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9976), 1, - anon_sym_RBRACE, - [237248] = 2, + ACTIONS(9980), 1, + anon_sym_GT, + [237289] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9978), 1, - sym_identifier, - [237255] = 2, + ACTIONS(6489), 1, + anon_sym_RBRACK, + [237296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9980), 1, - anon_sym_EQ_GT, - [237262] = 2, + ACTIONS(9237), 1, + anon_sym_GT, + [237303] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9982), 1, anon_sym_EQ_GT, - [237269] = 2, + [237310] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6337), 1, + anon_sym_RBRACK, + [237317] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9984), 1, - anon_sym_EQ_GT, - [237276] = 2, + sym_identifier, + [237324] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9986), 1, anon_sym_EQ_GT, - [237283] = 2, + [237331] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9988), 1, anon_sym_EQ_GT, - [237290] = 2, + [237338] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9990), 1, anon_sym_EQ_GT, - [237297] = 2, + [237345] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9992), 1, anon_sym_EQ_GT, - [237304] = 2, + [237352] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9994), 1, anon_sym_EQ_GT, - [237311] = 2, + [237359] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9996), 1, anon_sym_EQ_GT, - [237318] = 2, + [237366] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6488), 1, - anon_sym_RBRACK, - [237325] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6461), 1, - anon_sym_RBRACK, - [237332] = 2, + ACTIONS(9229), 1, + anon_sym_GT, + [237373] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9998), 1, anon_sym_EQ_GT, - [237339] = 2, + [237380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10000), 1, anon_sym_EQ_GT, - [237346] = 2, + [237387] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10002), 1, anon_sym_EQ_GT, - [237353] = 2, + [237394] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10004), 1, - anon_sym_readonly, - [237360] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5903), 1, - anon_sym_RPAREN, - [237367] = 2, + anon_sym_EQ_GT, + [237401] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10006), 1, - anon_sym_EQ_GT, - [237374] = 2, - ACTIONS(7435), 1, + sym_identifier, + [237408] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(10008), 1, - sym_regex_pattern, - [237381] = 2, + anon_sym_EQ_GT, + [237415] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10010), 1, - anon_sym_EQ_GT, - [237388] = 2, + anon_sym_COLON, + [237422] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10012), 1, anon_sym_EQ_GT, - [237395] = 2, + [237429] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10014), 1, - anon_sym_EQ_GT, - [237402] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9109), 1, - anon_sym_EQ, - [237409] = 2, + sym_identifier, + [237436] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10016), 1, anon_sym_EQ_GT, - [237416] = 2, + [237443] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10018), 1, - anon_sym_SLASH2, - [237423] = 2, + anon_sym_EQ_GT, + [237450] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10020), 1, - anon_sym_COLON, - [237430] = 2, + ACTIONS(6373), 1, + anon_sym_RBRACE, + [237457] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10022), 1, - anon_sym_EQ_GT, - [237437] = 2, + ACTIONS(10020), 1, + anon_sym_GT, + [237464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5683), 1, - anon_sym_DOT, - [237444] = 2, + ACTIONS(10022), 1, + anon_sym_function, + [237471] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10024), 1, - anon_sym_SLASH2, - [237451] = 2, + anon_sym_GT, + [237478] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10026), 1, anon_sym_EQ_GT, - [237458] = 2, + [237485] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10028), 1, sym_identifier, - [237465] = 2, + [237492] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10030), 1, - anon_sym_EQ_GT, - [237472] = 2, + sym_identifier, + [237499] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9264), 1, + anon_sym_RBRACK, + [237506] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10032), 1, anon_sym_EQ_GT, - [237479] = 2, + [237513] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10034), 1, - sym_identifier, - [237486] = 2, + anon_sym_EQ_GT, + [237520] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10036), 1, - anon_sym_EQ_GT, - [237493] = 2, + anon_sym_GT, + [237527] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10038), 1, anon_sym_EQ_GT, - [237500] = 2, + [237534] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10040), 1, - anon_sym_LBRACE, - [237507] = 2, + sym_identifier, + [237541] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10042), 1, - anon_sym_COLON, - [237514] = 2, + anon_sym_namespace, + [237548] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10044), 1, - sym_identifier, - [237521] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(10046), 1, anon_sym_EQ_GT, - [237528] = 2, + [237555] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9195), 1, - anon_sym_RBRACK, - [237535] = 2, + ACTIONS(6604), 1, + anon_sym_RPAREN, + [237562] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8999), 1, - anon_sym_RBRACK, - [237542] = 2, + ACTIONS(10046), 1, + anon_sym_EQ_GT, + [237569] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10048), 1, - anon_sym_SLASH2, - [237549] = 2, + anon_sym_EQ_GT, + [237576] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10050), 1, - anon_sym_EQ_GT, - [237556] = 2, + anon_sym_GT, + [237583] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10052), 1, - anon_sym_EQ_GT, - [237563] = 2, - ACTIONS(3), 1, + anon_sym_GT, + [237590] = 2, + ACTIONS(7457), 1, sym_comment, ACTIONS(10054), 1, - sym_identifier, - [237570] = 2, + sym_regex_pattern, + [237597] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9203), 1, + anon_sym_EQ, + [237604] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10056), 1, - anon_sym_EQ_GT, - [237577] = 2, + anon_sym_from, + [237611] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10058), 1, - anon_sym_target, - [237584] = 2, + anon_sym_EQ, + [237618] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10056), 1, + anon_sym_from, + [237625] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10060), 1, - anon_sym_function, - [237591] = 2, + anon_sym_EQ_GT, + [237632] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10062), 1, - anon_sym_EQ_GT, - [237598] = 2, + anon_sym_EQ, + [237639] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6595), 1, + anon_sym_COLON, + [237646] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(6593), 1, + anon_sym_RPAREN, + [237653] = 2, + ACTIONS(7457), 1, + sym_comment, ACTIONS(10064), 1, - anon_sym_EQ_GT, - [237605] = 2, + sym_regex_pattern, + [237660] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6591), 1, + anon_sym_RPAREN, + [237667] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6542), 1, + anon_sym_RPAREN, + [237674] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10066), 1, anon_sym_EQ_GT, - [237612] = 2, + [237681] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10068), 1, anon_sym_EQ_GT, - [237619] = 2, + [237688] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10070), 1, - anon_sym_SLASH2, - [237626] = 2, + anon_sym_EQ_GT, + [237695] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10072), 1, - sym_identifier, - [237633] = 2, + anon_sym_EQ_GT, + [237702] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10074), 1, - sym_identifier, - [237640] = 2, + anon_sym_GT, + [237709] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10076), 1, - sym_identifier, - [237647] = 2, + anon_sym_EQ_GT, + [237716] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10078), 1, - anon_sym_EQ_GT, - [237654] = 2, + anon_sym_class, + [237723] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10080), 1, - anon_sym_EQ_GT, - [237661] = 2, + anon_sym_GT, + [237730] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10082), 1, - anon_sym_GT, - [237668] = 2, + anon_sym_EQ_GT, + [237737] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10084), 1, anon_sym_EQ_GT, - [237675] = 2, + [237744] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10086), 1, - sym_identifier, - [237682] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7257), 1, - anon_sym_DOT, - [237689] = 2, + ts_builtin_sym_end, + [237751] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10088), 1, - anon_sym_EQ_GT, - [237696] = 2, + sym_identifier, + [237758] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10090), 1, - sym_identifier, - [237703] = 2, + anon_sym_EQ, + [237765] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10092), 1, - anon_sym_EQ_GT, - [237710] = 2, + sym_identifier, + [237772] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10094), 1, - anon_sym_GT, - [237717] = 2, + anon_sym_EQ_GT, + [237779] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10096), 1, - anon_sym_EQ, - [237724] = 2, + anon_sym_class, + [237786] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10098), 1, - sym_identifier, - [237731] = 2, + anon_sym_GT, + [237793] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10100), 1, - sym_number, - [237738] = 2, + anon_sym_RBRACK, + [237800] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10102), 1, - sym_number, - [237745] = 2, + ACTIONS(9001), 1, + sym_identifier, + [237807] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9295), 1, - anon_sym_LBRACE, - [237752] = 2, + ACTIONS(10102), 1, + anon_sym_COLON, + [237814] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10104), 1, - anon_sym_SLASH2, - [237759] = 2, + anon_sym_RPAREN, + [237821] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10106), 1, - anon_sym_class, - [237766] = 2, + anon_sym_GT, + [237828] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6516), 1, + anon_sym_RPAREN, + [237835] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10108), 1, - anon_sym_EQ, - [237773] = 2, + anon_sym_RPAREN, + [237842] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10110), 1, - anon_sym_EQ_GT, - [237780] = 2, - ACTIONS(3), 1, + anon_sym_from, + [237849] = 2, + ACTIONS(7457), 1, sym_comment, ACTIONS(10112), 1, - anon_sym_GT, - [237787] = 2, + sym_regex_pattern, + [237856] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10114), 1, anon_sym_EQ_GT, - [237794] = 2, + [237863] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10116), 1, anon_sym_EQ_GT, - [237801] = 2, + [237870] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10118), 1, - anon_sym_class, - [237808] = 2, + anon_sym_EQ_GT, + [237877] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10120), 1, anon_sym_EQ_GT, - [237815] = 2, + [237884] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10122), 1, - anon_sym_GT, - [237822] = 2, - ACTIONS(7435), 1, - sym_comment, - ACTIONS(10124), 1, - sym_regex_pattern, - [237829] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7093), 1, anon_sym_EQ_GT, - [237836] = 2, + [237891] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8586), 1, - anon_sym_EQ_GT, - [237843] = 2, + ACTIONS(5633), 1, + anon_sym_DOT, + [237898] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(10126), 1, + ACTIONS(10124), 1, anon_sym_EQ_GT, - [237850] = 2, + [237905] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9219), 1, - sym_identifier, - [237857] = 2, + ACTIONS(10126), 1, + anon_sym_LBRACE, + [237912] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10128), 1, - anon_sym_target, - [237864] = 2, + anon_sym_EQ_GT, + [237919] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10130), 1, anon_sym_EQ_GT, - [237871] = 2, + [237926] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10132), 1, anon_sym_EQ_GT, - [237878] = 2, + [237933] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10134), 1, anon_sym_EQ_GT, - [237885] = 2, + [237940] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10136), 1, - sym_identifier, - [237892] = 2, + anon_sym_EQ_GT, + [237947] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10138), 1, - anon_sym_GT, - [237899] = 2, + anon_sym_EQ, + [237954] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10140), 1, - anon_sym_GT, - [237906] = 2, + anon_sym_EQ, + [237961] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10142), 1, - sym_identifier, - [237913] = 2, + anon_sym_namespace, + [237968] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10144), 1, - anon_sym_namespace, - [237920] = 2, - ACTIONS(7435), 1, + anon_sym_EQ, + [237975] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(10146), 1, - sym_regex_pattern, - [237927] = 2, + anon_sym_EQ_GT, + [237982] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10148), 1, - sym_identifier, - [237934] = 2, + anon_sym_EQ_GT, + [237989] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10150), 1, anon_sym_EQ_GT, - [237941] = 2, + [237996] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10152), 1, - anon_sym_EQ, - [237948] = 2, + anon_sym_EQ_GT, + [238003] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10154), 1, - anon_sym_GT, - [237955] = 2, + anon_sym_EQ_GT, + [238010] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10156), 1, anon_sym_EQ_GT, - [237962] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6463), 1, - anon_sym_RPAREN, - [237969] = 2, + [238017] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10158), 1, - sym_identifier, - [237976] = 2, + anon_sym_EQ_GT, + [238024] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10160), 1, - anon_sym_EQ, - [237983] = 2, + anon_sym_EQ_GT, + [238031] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10162), 1, - anon_sym_RPAREN, - [237990] = 2, + anon_sym_EQ_GT, + [238038] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10164), 1, - anon_sym_EQ_GT, - [237997] = 2, + anon_sym_EQ, + [238045] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6339), 1, + anon_sym_RBRACK, + [238052] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10166), 1, - anon_sym_EQ_GT, - [238004] = 2, + anon_sym_class, + [238059] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10168), 1, anon_sym_EQ_GT, - [238011] = 2, + [238066] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6061), 1, + anon_sym_RPAREN, + [238073] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10170), 1, - anon_sym_EQ_GT, - [238018] = 2, + anon_sym_GT, + [238080] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10172), 1, - anon_sym_class, - [238025] = 2, + sym_number, + [238087] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10174), 1, - sym_identifier, - [238032] = 2, + anon_sym_SLASH2, + [238094] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10176), 1, - anon_sym_GT, - [238039] = 2, + anon_sym_EQ_GT, + [238101] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10178), 1, - anon_sym_namespace, - [238046] = 2, + anon_sym_EQ_GT, + [238108] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10180), 1, - sym_identifier, - [238053] = 2, + anon_sym_readonly, + [238115] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10182), 1, - sym_identifier, - [238060] = 2, + anon_sym_EQ_GT, + [238122] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10184), 1, - sym_number, - [238067] = 2, + anon_sym_target, + [238129] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10186), 1, - anon_sym_EQ_GT, - [238074] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5501), 1, - anon_sym_DOT, - [238081] = 2, + anon_sym_GT, + [238136] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10188), 1, - sym_identifier, - [238088] = 2, + sym_number, + [238143] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10190), 1, sym_identifier, - [238095] = 2, + [238150] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10192), 1, - sym_identifier, - [238102] = 2, + anon_sym_EQ_GT, + [238157] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10194), 1, - anon_sym_EQ_GT, - [238109] = 2, + anon_sym_GT, + [238164] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10196), 1, - sym_identifier, - [238116] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9229), 1, - sym_identifier, - [238123] = 2, + anon_sym_EQ_GT, + [238171] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10198), 1, anon_sym_EQ_GT, - [238130] = 2, + [238178] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10200), 1, - anon_sym_EQ_GT, - [238137] = 2, + sym_identifier, + [238185] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10202), 1, - anon_sym_EQ_GT, - [238144] = 2, + sym_identifier, + [238192] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10204), 1, - anon_sym_EQ_GT, - [238151] = 2, + anon_sym_RPAREN, + [238199] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9312), 1, - anon_sym_RBRACK, - [238158] = 2, + ACTIONS(7253), 1, + anon_sym_DOT, + [238206] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10206), 1, - sym_identifier, - [238165] = 2, + anon_sym_RBRACK, + [238213] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(10208), 1, anon_sym_EQ_GT, + [238220] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10210), 1, + anon_sym_EQ_GT, + [238227] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10212), 1, + anon_sym_EQ_GT, + [238234] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9067), 1, + anon_sym_EQ, + [238241] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10214), 1, + anon_sym_EQ_GT, + [238248] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(10216), 1, + sym_identifier, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1264)] = 0, - [SMALL_STATE(1265)] = 89, - [SMALL_STATE(1266)] = 178, - [SMALL_STATE(1267)] = 267, - [SMALL_STATE(1268)] = 356, - [SMALL_STATE(1269)] = 445, - [SMALL_STATE(1270)] = 580, - [SMALL_STATE(1271)] = 669, - [SMALL_STATE(1272)] = 807, - [SMALL_STATE(1273)] = 895, - [SMALL_STATE(1274)] = 1033, - [SMALL_STATE(1275)] = 1121, - [SMALL_STATE(1276)] = 1209, - [SMALL_STATE(1277)] = 1301, - [SMALL_STATE(1278)] = 1439, - [SMALL_STATE(1279)] = 1527, - [SMALL_STATE(1280)] = 1615, - [SMALL_STATE(1281)] = 1753, - [SMALL_STATE(1282)] = 1891, - [SMALL_STATE(1283)] = 1979, - [SMALL_STATE(1284)] = 2117, - [SMALL_STATE(1285)] = 2255, - [SMALL_STATE(1286)] = 2393, - [SMALL_STATE(1287)] = 2483, - [SMALL_STATE(1288)] = 2621, - [SMALL_STATE(1289)] = 2759, - [SMALL_STATE(1290)] = 2847, - [SMALL_STATE(1291)] = 2985, - [SMALL_STATE(1292)] = 3075, - [SMALL_STATE(1293)] = 3163, - [SMALL_STATE(1294)] = 3301, - [SMALL_STATE(1295)] = 3439, - [SMALL_STATE(1296)] = 3577, - [SMALL_STATE(1297)] = 3715, - [SMALL_STATE(1298)] = 3853, - [SMALL_STATE(1299)] = 3943, - [SMALL_STATE(1300)] = 4081, - [SMALL_STATE(1301)] = 4219, - [SMALL_STATE(1302)] = 4307, - [SMALL_STATE(1303)] = 4397, - [SMALL_STATE(1304)] = 4485, - [SMALL_STATE(1305)] = 4573, - [SMALL_STATE(1306)] = 4663, - [SMALL_STATE(1307)] = 4801, - [SMALL_STATE(1308)] = 4939, - [SMALL_STATE(1309)] = 5027, - [SMALL_STATE(1310)] = 5115, - [SMALL_STATE(1311)] = 5203, - [SMALL_STATE(1312)] = 5293, - [SMALL_STATE(1313)] = 5381, - [SMALL_STATE(1314)] = 5469, - [SMALL_STATE(1315)] = 5560, - [SMALL_STATE(1316)] = 5629, - [SMALL_STATE(1317)] = 5698, - [SMALL_STATE(1318)] = 5785, - [SMALL_STATE(1319)] = 5854, - [SMALL_STATE(1320)] = 5923, - [SMALL_STATE(1321)] = 5992, - [SMALL_STATE(1322)] = 6061, - [SMALL_STATE(1323)] = 6154, - [SMALL_STATE(1324)] = 6241, - [SMALL_STATE(1325)] = 6328, - [SMALL_STATE(1326)] = 6415, - [SMALL_STATE(1327)] = 6502, - [SMALL_STATE(1328)] = 6589, - [SMALL_STATE(1329)] = 6658, - [SMALL_STATE(1330)] = 6745, - [SMALL_STATE(1331)] = 6832, - [SMALL_STATE(1332)] = 6919, - [SMALL_STATE(1333)] = 7006, - [SMALL_STATE(1334)] = 7092, - [SMALL_STATE(1335)] = 7180, - [SMALL_STATE(1336)] = 7266, - [SMALL_STATE(1337)] = 7350, - [SMALL_STATE(1338)] = 7440, - [SMALL_STATE(1339)] = 7524, - [SMALL_STATE(1340)] = 7612, - [SMALL_STATE(1341)] = 7740, - [SMALL_STATE(1342)] = 7820, - [SMALL_STATE(1343)] = 7908, - [SMALL_STATE(1344)] = 7994, - [SMALL_STATE(1345)] = 8082, - [SMALL_STATE(1346)] = 8170, - [SMALL_STATE(1347)] = 8258, - [SMALL_STATE(1348)] = 8330, - [SMALL_STATE(1349)] = 8418, - [SMALL_STATE(1350)] = 8504, - [SMALL_STATE(1351)] = 8592, - [SMALL_STATE(1352)] = 8678, - [SMALL_STATE(1353)] = 8764, - [SMALL_STATE(1354)] = 8844, - [SMALL_STATE(1355)] = 8930, - [SMALL_STATE(1356)] = 9016, - [SMALL_STATE(1357)] = 9104, - [SMALL_STATE(1358)] = 9190, - [SMALL_STATE(1359)] = 9270, - [SMALL_STATE(1360)] = 9358, - [SMALL_STATE(1361)] = 9438, - [SMALL_STATE(1362)] = 9524, - [SMALL_STATE(1363)] = 9612, - [SMALL_STATE(1364)] = 9692, - [SMALL_STATE(1365)] = 9778, - [SMALL_STATE(1366)] = 9861, - [SMALL_STATE(1367)] = 9946, - [SMALL_STATE(1368)] = 10025, - [SMALL_STATE(1369)] = 10092, - [SMALL_STATE(1370)] = 10165, - [SMALL_STATE(1371)] = 10238, - [SMALL_STATE(1372)] = 10317, - [SMALL_STATE(1373)] = 10402, - [SMALL_STATE(1374)] = 10487, - [SMALL_STATE(1375)] = 10554, - [SMALL_STATE(1376)] = 10641, - [SMALL_STATE(1377)] = 10726, - [SMALL_STATE(1378)] = 10793, - [SMALL_STATE(1379)] = 10878, - [SMALL_STATE(1380)] = 10955, - [SMALL_STATE(1381)] = 11040, - [SMALL_STATE(1382)] = 11119, - [SMALL_STATE(1383)] = 11192, - [SMALL_STATE(1384)] = 11259, - [SMALL_STATE(1385)] = 11338, - [SMALL_STATE(1386)] = 11423, - [SMALL_STATE(1387)] = 11500, - [SMALL_STATE(1388)] = 11585, - [SMALL_STATE(1389)] = 11670, - [SMALL_STATE(1390)] = 11759, - [SMALL_STATE(1391)] = 11844, - [SMALL_STATE(1392)] = 11929, - [SMALL_STATE(1393)] = 12002, - [SMALL_STATE(1394)] = 12087, - [SMALL_STATE(1395)] = 12214, - [SMALL_STATE(1396)] = 12293, - [SMALL_STATE(1397)] = 12378, - [SMALL_STATE(1398)] = 12463, - [SMALL_STATE(1399)] = 12590, - [SMALL_STATE(1400)] = 12675, - [SMALL_STATE(1401)] = 12760, - [SMALL_STATE(1402)] = 12833, - [SMALL_STATE(1403)] = 12900, - [SMALL_STATE(1404)] = 12973, - [SMALL_STATE(1405)] = 13040, - [SMALL_STATE(1406)] = 13125, - [SMALL_STATE(1407)] = 13192, - [SMALL_STATE(1408)] = 13319, - [SMALL_STATE(1409)] = 13392, - [SMALL_STATE(1410)] = 13477, - [SMALL_STATE(1411)] = 13562, - [SMALL_STATE(1412)] = 13635, - [SMALL_STATE(1413)] = 13707, - [SMALL_STATE(1414)] = 13835, - [SMALL_STATE(1415)] = 13963, - [SMALL_STATE(1416)] = 14093, - [SMALL_STATE(1417)] = 14165, - [SMALL_STATE(1418)] = 14237, - [SMALL_STATE(1419)] = 14365, - [SMALL_STATE(1420)] = 14493, - [SMALL_STATE(1421)] = 14621, - [SMALL_STATE(1422)] = 14749, - [SMALL_STATE(1423)] = 14879, - [SMALL_STATE(1424)] = 14963, - [SMALL_STATE(1425)] = 15033, - [SMALL_STATE(1426)] = 15161, - [SMALL_STATE(1427)] = 15289, - [SMALL_STATE(1428)] = 15365, - [SMALL_STATE(1429)] = 15493, - [SMALL_STATE(1430)] = 15571, - [SMALL_STATE(1431)] = 15643, - [SMALL_STATE(1432)] = 15727, - [SMALL_STATE(1433)] = 15851, - [SMALL_STATE(1434)] = 15923, - [SMALL_STATE(1435)] = 15995, - [SMALL_STATE(1436)] = 16073, - [SMALL_STATE(1437)] = 16151, - [SMALL_STATE(1438)] = 16277, - [SMALL_STATE(1439)] = 16405, - [SMALL_STATE(1440)] = 16475, - [SMALL_STATE(1441)] = 16553, - [SMALL_STATE(1442)] = 16681, - [SMALL_STATE(1443)] = 16805, + [SMALL_STATE(1265)] = 0, + [SMALL_STATE(1266)] = 89, + [SMALL_STATE(1267)] = 224, + [SMALL_STATE(1268)] = 313, + [SMALL_STATE(1269)] = 402, + [SMALL_STATE(1270)] = 491, + [SMALL_STATE(1271)] = 580, + [SMALL_STATE(1272)] = 669, + [SMALL_STATE(1273)] = 807, + [SMALL_STATE(1274)] = 895, + [SMALL_STATE(1275)] = 983, + [SMALL_STATE(1276)] = 1075, + [SMALL_STATE(1277)] = 1213, + [SMALL_STATE(1278)] = 1351, + [SMALL_STATE(1279)] = 1489, + [SMALL_STATE(1280)] = 1577, + [SMALL_STATE(1281)] = 1667, + [SMALL_STATE(1282)] = 1755, + [SMALL_STATE(1283)] = 1893, + [SMALL_STATE(1284)] = 1981, + [SMALL_STATE(1285)] = 2071, + [SMALL_STATE(1286)] = 2209, + [SMALL_STATE(1287)] = 2347, + [SMALL_STATE(1288)] = 2435, + [SMALL_STATE(1289)] = 2573, + [SMALL_STATE(1290)] = 2711, + [SMALL_STATE(1291)] = 2801, + [SMALL_STATE(1292)] = 2891, + [SMALL_STATE(1293)] = 3029, + [SMALL_STATE(1294)] = 3167, + [SMALL_STATE(1295)] = 3255, + [SMALL_STATE(1296)] = 3393, + [SMALL_STATE(1297)] = 3481, + [SMALL_STATE(1298)] = 3569, + [SMALL_STATE(1299)] = 3659, + [SMALL_STATE(1300)] = 3797, + [SMALL_STATE(1301)] = 3935, + [SMALL_STATE(1302)] = 4073, + [SMALL_STATE(1303)] = 4161, + [SMALL_STATE(1304)] = 4249, + [SMALL_STATE(1305)] = 4337, + [SMALL_STATE(1306)] = 4427, + [SMALL_STATE(1307)] = 4565, + [SMALL_STATE(1308)] = 4653, + [SMALL_STATE(1309)] = 4741, + [SMALL_STATE(1310)] = 4879, + [SMALL_STATE(1311)] = 5017, + [SMALL_STATE(1312)] = 5155, + [SMALL_STATE(1313)] = 5243, + [SMALL_STATE(1314)] = 5381, + [SMALL_STATE(1315)] = 5469, + [SMALL_STATE(1316)] = 5556, + [SMALL_STATE(1317)] = 5643, + [SMALL_STATE(1318)] = 5712, + [SMALL_STATE(1319)] = 5781, + [SMALL_STATE(1320)] = 5850, + [SMALL_STATE(1321)] = 5919, + [SMALL_STATE(1322)] = 6006, + [SMALL_STATE(1323)] = 6093, + [SMALL_STATE(1324)] = 6180, + [SMALL_STATE(1325)] = 6267, + [SMALL_STATE(1326)] = 6354, + [SMALL_STATE(1327)] = 6423, + [SMALL_STATE(1328)] = 6492, + [SMALL_STATE(1329)] = 6579, + [SMALL_STATE(1330)] = 6670, + [SMALL_STATE(1331)] = 6757, + [SMALL_STATE(1332)] = 6826, + [SMALL_STATE(1333)] = 6913, + [SMALL_STATE(1334)] = 7006, + [SMALL_STATE(1335)] = 7134, + [SMALL_STATE(1336)] = 7206, + [SMALL_STATE(1337)] = 7294, + [SMALL_STATE(1338)] = 7378, + [SMALL_STATE(1339)] = 7466, + [SMALL_STATE(1340)] = 7554, + [SMALL_STATE(1341)] = 7634, + [SMALL_STATE(1342)] = 7720, + [SMALL_STATE(1343)] = 7806, + [SMALL_STATE(1344)] = 7892, + [SMALL_STATE(1345)] = 7980, + [SMALL_STATE(1346)] = 8068, + [SMALL_STATE(1347)] = 8156, + [SMALL_STATE(1348)] = 8236, + [SMALL_STATE(1349)] = 8326, + [SMALL_STATE(1350)] = 8412, + [SMALL_STATE(1351)] = 8498, + [SMALL_STATE(1352)] = 8586, + [SMALL_STATE(1353)] = 8670, + [SMALL_STATE(1354)] = 8756, + [SMALL_STATE(1355)] = 8844, + [SMALL_STATE(1356)] = 8930, + [SMALL_STATE(1357)] = 9018, + [SMALL_STATE(1358)] = 9104, + [SMALL_STATE(1359)] = 9192, + [SMALL_STATE(1360)] = 9272, + [SMALL_STATE(1361)] = 9360, + [SMALL_STATE(1362)] = 9440, + [SMALL_STATE(1363)] = 9526, + [SMALL_STATE(1364)] = 9612, + [SMALL_STATE(1365)] = 9692, + [SMALL_STATE(1366)] = 9778, + [SMALL_STATE(1367)] = 9863, + [SMALL_STATE(1368)] = 9942, + [SMALL_STATE(1369)] = 10009, + [SMALL_STATE(1370)] = 10076, + [SMALL_STATE(1371)] = 10149, + [SMALL_STATE(1372)] = 10234, + [SMALL_STATE(1373)] = 10319, + [SMALL_STATE(1374)] = 10404, + [SMALL_STATE(1375)] = 10471, + [SMALL_STATE(1376)] = 10556, + [SMALL_STATE(1377)] = 10623, + [SMALL_STATE(1378)] = 10702, + [SMALL_STATE(1379)] = 10775, + [SMALL_STATE(1380)] = 10860, + [SMALL_STATE(1381)] = 10939, + [SMALL_STATE(1382)] = 11024, + [SMALL_STATE(1383)] = 11151, + [SMALL_STATE(1384)] = 11224, + [SMALL_STATE(1385)] = 11297, + [SMALL_STATE(1386)] = 11382, + [SMALL_STATE(1387)] = 11467, + [SMALL_STATE(1388)] = 11552, + [SMALL_STATE(1389)] = 11641, + [SMALL_STATE(1390)] = 11714, + [SMALL_STATE(1391)] = 11781, + [SMALL_STATE(1392)] = 11848, + [SMALL_STATE(1393)] = 11925, + [SMALL_STATE(1394)] = 12004, + [SMALL_STATE(1395)] = 12089, + [SMALL_STATE(1396)] = 12162, + [SMALL_STATE(1397)] = 12289, + [SMALL_STATE(1398)] = 12374, + [SMALL_STATE(1399)] = 12459, + [SMALL_STATE(1400)] = 12544, + [SMALL_STATE(1401)] = 12629, + [SMALL_STATE(1402)] = 12716, + [SMALL_STATE(1403)] = 12799, + [SMALL_STATE(1404)] = 12866, + [SMALL_STATE(1405)] = 12939, + [SMALL_STATE(1406)] = 13024, + [SMALL_STATE(1407)] = 13109, + [SMALL_STATE(1408)] = 13194, + [SMALL_STATE(1409)] = 13267, + [SMALL_STATE(1410)] = 13346, + [SMALL_STATE(1411)] = 13431, + [SMALL_STATE(1412)] = 13558, + [SMALL_STATE(1413)] = 13635, + [SMALL_STATE(1414)] = 13713, + [SMALL_STATE(1415)] = 13841, + [SMALL_STATE(1416)] = 13921, + [SMALL_STATE(1417)] = 13999, + [SMALL_STATE(1418)] = 14127, + [SMALL_STATE(1419)] = 14205, + [SMALL_STATE(1420)] = 14333, + [SMALL_STATE(1421)] = 14463, + [SMALL_STATE(1422)] = 14593, + [SMALL_STATE(1423)] = 14671, + [SMALL_STATE(1424)] = 14743, + [SMALL_STATE(1425)] = 14871, + [SMALL_STATE(1426)] = 14949, + [SMALL_STATE(1427)] = 15077, + [SMALL_STATE(1428)] = 15205, + [SMALL_STATE(1429)] = 15283, + [SMALL_STATE(1430)] = 15411, + [SMALL_STATE(1431)] = 15483, + [SMALL_STATE(1432)] = 15613, + [SMALL_STATE(1433)] = 15739, + [SMALL_STATE(1434)] = 15815, + [SMALL_STATE(1435)] = 15885, + [SMALL_STATE(1436)] = 16013, + [SMALL_STATE(1437)] = 16141, + [SMALL_STATE(1438)] = 16269, + [SMALL_STATE(1439)] = 16393, + [SMALL_STATE(1440)] = 16523, + [SMALL_STATE(1441)] = 16593, + [SMALL_STATE(1442)] = 16721, + [SMALL_STATE(1443)] = 16849, [SMALL_STATE(1444)] = 16933, - [SMALL_STATE(1445)] = 17011, - [SMALL_STATE(1446)] = 17139, - [SMALL_STATE(1447)] = 17269, - [SMALL_STATE(1448)] = 17397, - [SMALL_STATE(1449)] = 17477, - [SMALL_STATE(1450)] = 17605, - [SMALL_STATE(1451)] = 17697, - [SMALL_STATE(1452)] = 17825, - [SMALL_STATE(1453)] = 17903, - [SMALL_STATE(1454)] = 17981, - [SMALL_STATE(1455)] = 18109, - [SMALL_STATE(1456)] = 18239, - [SMALL_STATE(1457)] = 18309, - [SMALL_STATE(1458)] = 18381, - [SMALL_STATE(1459)] = 18506, - [SMALL_STATE(1460)] = 18631, - [SMALL_STATE(1461)] = 18756, - [SMALL_STATE(1462)] = 18827, - [SMALL_STATE(1463)] = 18952, - [SMALL_STATE(1464)] = 19017, - [SMALL_STATE(1465)] = 19142, - [SMALL_STATE(1466)] = 19225, - [SMALL_STATE(1467)] = 19302, - [SMALL_STATE(1468)] = 19367, - [SMALL_STATE(1469)] = 19492, - [SMALL_STATE(1470)] = 19617, - [SMALL_STATE(1471)] = 19700, - [SMALL_STATE(1472)] = 19825, - [SMALL_STATE(1473)] = 19896, - [SMALL_STATE(1474)] = 20021, - [SMALL_STATE(1475)] = 20098, - [SMALL_STATE(1476)] = 20223, - [SMALL_STATE(1477)] = 20348, - [SMALL_STATE(1478)] = 20419, - [SMALL_STATE(1479)] = 20544, - [SMALL_STATE(1480)] = 20627, - [SMALL_STATE(1481)] = 20710, - [SMALL_STATE(1482)] = 20787, - [SMALL_STATE(1483)] = 20912, - [SMALL_STATE(1484)] = 21037, - [SMALL_STATE(1485)] = 21162, - [SMALL_STATE(1486)] = 21231, - [SMALL_STATE(1487)] = 21300, - [SMALL_STATE(1488)] = 21371, - [SMALL_STATE(1489)] = 21496, - [SMALL_STATE(1490)] = 21621, - [SMALL_STATE(1491)] = 21704, - [SMALL_STATE(1492)] = 21775, - [SMALL_STATE(1493)] = 21852, - [SMALL_STATE(1494)] = 21933, - [SMALL_STATE(1495)] = 22058, - [SMALL_STATE(1496)] = 22123, - [SMALL_STATE(1497)] = 22248, - [SMALL_STATE(1498)] = 22373, - [SMALL_STATE(1499)] = 22450, - [SMALL_STATE(1500)] = 22525, - [SMALL_STATE(1501)] = 22650, - [SMALL_STATE(1502)] = 22775, - [SMALL_STATE(1503)] = 22900, - [SMALL_STATE(1504)] = 22965, - [SMALL_STATE(1505)] = 23090, - [SMALL_STATE(1506)] = 23215, - [SMALL_STATE(1507)] = 23340, - [SMALL_STATE(1508)] = 23423, - [SMALL_STATE(1509)] = 23548, - [SMALL_STATE(1510)] = 23673, - [SMALL_STATE(1511)] = 23798, - [SMALL_STATE(1512)] = 23923, - [SMALL_STATE(1513)] = 24048, - [SMALL_STATE(1514)] = 24113, - [SMALL_STATE(1515)] = 24178, - [SMALL_STATE(1516)] = 24249, - [SMALL_STATE(1517)] = 24374, - [SMALL_STATE(1518)] = 24499, - [SMALL_STATE(1519)] = 24624, - [SMALL_STATE(1520)] = 24701, - [SMALL_STATE(1521)] = 24826, - [SMALL_STATE(1522)] = 24951, - [SMALL_STATE(1523)] = 25076, - [SMALL_STATE(1524)] = 25157, - [SMALL_STATE(1525)] = 25282, - [SMALL_STATE(1526)] = 25359, - [SMALL_STATE(1527)] = 25424, - [SMALL_STATE(1528)] = 25501, - [SMALL_STATE(1529)] = 25626, - [SMALL_STATE(1530)] = 25703, - [SMALL_STATE(1531)] = 25792, - [SMALL_STATE(1532)] = 25879, - [SMALL_STATE(1533)] = 26004, - [SMALL_STATE(1534)] = 26075, - [SMALL_STATE(1535)] = 26200, - [SMALL_STATE(1536)] = 26269, - [SMALL_STATE(1537)] = 26394, - [SMALL_STATE(1538)] = 26519, - [SMALL_STATE(1539)] = 26644, - [SMALL_STATE(1540)] = 26713, - [SMALL_STATE(1541)] = 26838, - [SMALL_STATE(1542)] = 26963, - [SMALL_STATE(1543)] = 27088, - [SMALL_STATE(1544)] = 27165, - [SMALL_STATE(1545)] = 27242, - [SMALL_STATE(1546)] = 27319, - [SMALL_STATE(1547)] = 27444, - [SMALL_STATE(1548)] = 27569, - [SMALL_STATE(1549)] = 27694, - [SMALL_STATE(1550)] = 27819, - [SMALL_STATE(1551)] = 27944, - [SMALL_STATE(1552)] = 28069, - [SMALL_STATE(1553)] = 28194, - [SMALL_STATE(1554)] = 28271, - [SMALL_STATE(1555)] = 28396, - [SMALL_STATE(1556)] = 28521, - [SMALL_STATE(1557)] = 28592, - [SMALL_STATE(1558)] = 28717, - [SMALL_STATE(1559)] = 28842, - [SMALL_STATE(1560)] = 28967, - [SMALL_STATE(1561)] = 29092, - [SMALL_STATE(1562)] = 29169, - [SMALL_STATE(1563)] = 29294, - [SMALL_STATE(1564)] = 29375, - [SMALL_STATE(1565)] = 29500, - [SMALL_STATE(1566)] = 29625, - [SMALL_STATE(1567)] = 29750, - [SMALL_STATE(1568)] = 29875, - [SMALL_STATE(1569)] = 29946, - [SMALL_STATE(1570)] = 30017, - [SMALL_STATE(1571)] = 30142, - [SMALL_STATE(1572)] = 30267, - [SMALL_STATE(1573)] = 30392, - [SMALL_STATE(1574)] = 30517, - [SMALL_STATE(1575)] = 30642, - [SMALL_STATE(1576)] = 30767, - [SMALL_STATE(1577)] = 30892, - [SMALL_STATE(1578)] = 31017, - [SMALL_STATE(1579)] = 31142, - [SMALL_STATE(1580)] = 31267, - [SMALL_STATE(1581)] = 31342, - [SMALL_STATE(1582)] = 31467, - [SMALL_STATE(1583)] = 31552, - [SMALL_STATE(1584)] = 31621, - [SMALL_STATE(1585)] = 31696, - [SMALL_STATE(1586)] = 31773, - [SMALL_STATE(1587)] = 31850, - [SMALL_STATE(1588)] = 31933, - [SMALL_STATE(1589)] = 32058, - [SMALL_STATE(1590)] = 32135, - [SMALL_STATE(1591)] = 32260, - [SMALL_STATE(1592)] = 32382, - [SMALL_STATE(1593)] = 32504, - [SMALL_STATE(1594)] = 32626, - [SMALL_STATE(1595)] = 32748, - [SMALL_STATE(1596)] = 32870, - [SMALL_STATE(1597)] = 32992, - [SMALL_STATE(1598)] = 33114, - [SMALL_STATE(1599)] = 33236, - [SMALL_STATE(1600)] = 33308, - [SMALL_STATE(1601)] = 33430, - [SMALL_STATE(1602)] = 33552, - [SMALL_STATE(1603)] = 33674, - [SMALL_STATE(1604)] = 33796, - [SMALL_STATE(1605)] = 33918, - [SMALL_STATE(1606)] = 34040, - [SMALL_STATE(1607)] = 34110, - [SMALL_STATE(1608)] = 34232, - [SMALL_STATE(1609)] = 34354, - [SMALL_STATE(1610)] = 34476, - [SMALL_STATE(1611)] = 34598, - [SMALL_STATE(1612)] = 34720, - [SMALL_STATE(1613)] = 34842, - [SMALL_STATE(1614)] = 34964, - [SMALL_STATE(1615)] = 35086, - [SMALL_STATE(1616)] = 35208, - [SMALL_STATE(1617)] = 35330, - [SMALL_STATE(1618)] = 35452, - [SMALL_STATE(1619)] = 35522, - [SMALL_STATE(1620)] = 35594, - [SMALL_STATE(1621)] = 35666, - [SMALL_STATE(1622)] = 35788, - [SMALL_STATE(1623)] = 35910, - [SMALL_STATE(1624)] = 35986, - [SMALL_STATE(1625)] = 36056, - [SMALL_STATE(1626)] = 36128, - [SMALL_STATE(1627)] = 36250, - [SMALL_STATE(1628)] = 36372, - [SMALL_STATE(1629)] = 36494, - [SMALL_STATE(1630)] = 36564, - [SMALL_STATE(1631)] = 36636, - [SMALL_STATE(1632)] = 36758, - [SMALL_STATE(1633)] = 36880, - [SMALL_STATE(1634)] = 37002, - [SMALL_STATE(1635)] = 37124, - [SMALL_STATE(1636)] = 37204, - [SMALL_STATE(1637)] = 37326, - [SMALL_STATE(1638)] = 37448, - [SMALL_STATE(1639)] = 37518, - [SMALL_STATE(1640)] = 37640, - [SMALL_STATE(1641)] = 37762, - [SMALL_STATE(1642)] = 37884, - [SMALL_STATE(1643)] = 38006, - [SMALL_STATE(1644)] = 38128, - [SMALL_STATE(1645)] = 38250, - [SMALL_STATE(1646)] = 38372, - [SMALL_STATE(1647)] = 38494, - [SMALL_STATE(1648)] = 38616, - [SMALL_STATE(1649)] = 38738, - [SMALL_STATE(1650)] = 38860, - [SMALL_STATE(1651)] = 38982, - [SMALL_STATE(1652)] = 39104, - [SMALL_STATE(1653)] = 39226, - [SMALL_STATE(1654)] = 39348, - [SMALL_STATE(1655)] = 39470, - [SMALL_STATE(1656)] = 39592, - [SMALL_STATE(1657)] = 39714, - [SMALL_STATE(1658)] = 39836, - [SMALL_STATE(1659)] = 39958, - [SMALL_STATE(1660)] = 40080, - [SMALL_STATE(1661)] = 40202, - [SMALL_STATE(1662)] = 40272, - [SMALL_STATE(1663)] = 40394, - [SMALL_STATE(1664)] = 40516, - [SMALL_STATE(1665)] = 40638, - [SMALL_STATE(1666)] = 40760, - [SMALL_STATE(1667)] = 40882, - [SMALL_STATE(1668)] = 41004, - [SMALL_STATE(1669)] = 41126, - [SMALL_STATE(1670)] = 41248, - [SMALL_STATE(1671)] = 41370, - [SMALL_STATE(1672)] = 41492, - [SMALL_STATE(1673)] = 41614, - [SMALL_STATE(1674)] = 41736, - [SMALL_STATE(1675)] = 41858, - [SMALL_STATE(1676)] = 41980, - [SMALL_STATE(1677)] = 42102, - [SMALL_STATE(1678)] = 42224, - [SMALL_STATE(1679)] = 42346, - [SMALL_STATE(1680)] = 42468, - [SMALL_STATE(1681)] = 42538, - [SMALL_STATE(1682)] = 42660, - [SMALL_STATE(1683)] = 42782, - [SMALL_STATE(1684)] = 42854, - [SMALL_STATE(1685)] = 42976, - [SMALL_STATE(1686)] = 43098, - [SMALL_STATE(1687)] = 43170, - [SMALL_STATE(1688)] = 43292, - [SMALL_STATE(1689)] = 43414, - [SMALL_STATE(1690)] = 43536, - [SMALL_STATE(1691)] = 43658, - [SMALL_STATE(1692)] = 43780, - [SMALL_STATE(1693)] = 43902, - [SMALL_STATE(1694)] = 44024, - [SMALL_STATE(1695)] = 44146, - [SMALL_STATE(1696)] = 44268, - [SMALL_STATE(1697)] = 44342, - [SMALL_STATE(1698)] = 44464, - [SMALL_STATE(1699)] = 44586, - [SMALL_STATE(1700)] = 44708, - [SMALL_STATE(1701)] = 44830, - [SMALL_STATE(1702)] = 44952, - [SMALL_STATE(1703)] = 45074, - [SMALL_STATE(1704)] = 45196, - [SMALL_STATE(1705)] = 45318, - [SMALL_STATE(1706)] = 45440, - [SMALL_STATE(1707)] = 45562, - [SMALL_STATE(1708)] = 45684, - [SMALL_STATE(1709)] = 45806, - [SMALL_STATE(1710)] = 45928, - [SMALL_STATE(1711)] = 46050, - [SMALL_STATE(1712)] = 46172, - [SMALL_STATE(1713)] = 46244, - [SMALL_STATE(1714)] = 46366, - [SMALL_STATE(1715)] = 46488, - [SMALL_STATE(1716)] = 46610, - [SMALL_STATE(1717)] = 46732, - [SMALL_STATE(1718)] = 46854, - [SMALL_STATE(1719)] = 46976, - [SMALL_STATE(1720)] = 47098, - [SMALL_STATE(1721)] = 47220, - [SMALL_STATE(1722)] = 47342, - [SMALL_STATE(1723)] = 47464, - [SMALL_STATE(1724)] = 47540, - [SMALL_STATE(1725)] = 47662, - [SMALL_STATE(1726)] = 47784, - [SMALL_STATE(1727)] = 47906, - [SMALL_STATE(1728)] = 48028, - [SMALL_STATE(1729)] = 48150, - [SMALL_STATE(1730)] = 48272, - [SMALL_STATE(1731)] = 48394, - [SMALL_STATE(1732)] = 48516, - [SMALL_STATE(1733)] = 48590, - [SMALL_STATE(1734)] = 48712, - [SMALL_STATE(1735)] = 48782, - [SMALL_STATE(1736)] = 48904, - [SMALL_STATE(1737)] = 49026, - [SMALL_STATE(1738)] = 49148, - [SMALL_STATE(1739)] = 49270, - [SMALL_STATE(1740)] = 49392, - [SMALL_STATE(1741)] = 49514, - [SMALL_STATE(1742)] = 49636, - [SMALL_STATE(1743)] = 49758, - [SMALL_STATE(1744)] = 49880, - [SMALL_STATE(1745)] = 49950, - [SMALL_STATE(1746)] = 50020, - [SMALL_STATE(1747)] = 50142, - [SMALL_STATE(1748)] = 50264, - [SMALL_STATE(1749)] = 50386, - [SMALL_STATE(1750)] = 50508, - [SMALL_STATE(1751)] = 50630, - [SMALL_STATE(1752)] = 50700, - [SMALL_STATE(1753)] = 50822, - [SMALL_STATE(1754)] = 50944, - [SMALL_STATE(1755)] = 51014, - [SMALL_STATE(1756)] = 51136, - [SMALL_STATE(1757)] = 51258, - [SMALL_STATE(1758)] = 51334, - [SMALL_STATE(1759)] = 51456, - [SMALL_STATE(1760)] = 51578, - [SMALL_STATE(1761)] = 51700, - [SMALL_STATE(1762)] = 51822, - [SMALL_STATE(1763)] = 51944, - [SMALL_STATE(1764)] = 52066, - [SMALL_STATE(1765)] = 52188, - [SMALL_STATE(1766)] = 52310, - [SMALL_STATE(1767)] = 52432, - [SMALL_STATE(1768)] = 52554, - [SMALL_STATE(1769)] = 52676, - [SMALL_STATE(1770)] = 52750, - [SMALL_STATE(1771)] = 52872, - [SMALL_STATE(1772)] = 52994, - [SMALL_STATE(1773)] = 53116, - [SMALL_STATE(1774)] = 53238, - [SMALL_STATE(1775)] = 53360, - [SMALL_STATE(1776)] = 53482, - [SMALL_STATE(1777)] = 53558, - [SMALL_STATE(1778)] = 53634, - [SMALL_STATE(1779)] = 53756, - [SMALL_STATE(1780)] = 53878, - [SMALL_STATE(1781)] = 54000, - [SMALL_STATE(1782)] = 54122, - [SMALL_STATE(1783)] = 54244, - [SMALL_STATE(1784)] = 54366, - [SMALL_STATE(1785)] = 54488, - [SMALL_STATE(1786)] = 54610, - [SMALL_STATE(1787)] = 54732, - [SMALL_STATE(1788)] = 54854, - [SMALL_STATE(1789)] = 54976, - [SMALL_STATE(1790)] = 55098, - [SMALL_STATE(1791)] = 55220, - [SMALL_STATE(1792)] = 55342, - [SMALL_STATE(1793)] = 55464, - [SMALL_STATE(1794)] = 55586, - [SMALL_STATE(1795)] = 55708, - [SMALL_STATE(1796)] = 55830, - [SMALL_STATE(1797)] = 55952, - [SMALL_STATE(1798)] = 56074, - [SMALL_STATE(1799)] = 56196, - [SMALL_STATE(1800)] = 56318, - [SMALL_STATE(1801)] = 56440, - [SMALL_STATE(1802)] = 56562, - [SMALL_STATE(1803)] = 56684, - [SMALL_STATE(1804)] = 56806, - [SMALL_STATE(1805)] = 56928, - [SMALL_STATE(1806)] = 57050, + [SMALL_STATE(1445)] = 17061, + [SMALL_STATE(1446)] = 17133, + [SMALL_STATE(1447)] = 17203, + [SMALL_STATE(1448)] = 17275, + [SMALL_STATE(1449)] = 17367, + [SMALL_STATE(1450)] = 17445, + [SMALL_STATE(1451)] = 17517, + [SMALL_STATE(1452)] = 17645, + [SMALL_STATE(1453)] = 17773, + [SMALL_STATE(1454)] = 17901, + [SMALL_STATE(1455)] = 17973, + [SMALL_STATE(1456)] = 18045, + [SMALL_STATE(1457)] = 18129, + [SMALL_STATE(1458)] = 18257, + [SMALL_STATE(1459)] = 18381, + [SMALL_STATE(1460)] = 18506, + [SMALL_STATE(1461)] = 18631, + [SMALL_STATE(1462)] = 18696, + [SMALL_STATE(1463)] = 18821, + [SMALL_STATE(1464)] = 18886, + [SMALL_STATE(1465)] = 19011, + [SMALL_STATE(1466)] = 19076, + [SMALL_STATE(1467)] = 19201, + [SMALL_STATE(1468)] = 19326, + [SMALL_STATE(1469)] = 19451, + [SMALL_STATE(1470)] = 19516, + [SMALL_STATE(1471)] = 19641, + [SMALL_STATE(1472)] = 19766, + [SMALL_STATE(1473)] = 19891, + [SMALL_STATE(1474)] = 19966, + [SMALL_STATE(1475)] = 20091, + [SMALL_STATE(1476)] = 20166, + [SMALL_STATE(1477)] = 20235, + [SMALL_STATE(1478)] = 20318, + [SMALL_STATE(1479)] = 20383, + [SMALL_STATE(1480)] = 20508, + [SMALL_STATE(1481)] = 20633, + [SMALL_STATE(1482)] = 20704, + [SMALL_STATE(1483)] = 20781, + [SMALL_STATE(1484)] = 20858, + [SMALL_STATE(1485)] = 20935, + [SMALL_STATE(1486)] = 21012, + [SMALL_STATE(1487)] = 21137, + [SMALL_STATE(1488)] = 21262, + [SMALL_STATE(1489)] = 21339, + [SMALL_STATE(1490)] = 21404, + [SMALL_STATE(1491)] = 21529, + [SMALL_STATE(1492)] = 21654, + [SMALL_STATE(1493)] = 21725, + [SMALL_STATE(1494)] = 21796, + [SMALL_STATE(1495)] = 21873, + [SMALL_STATE(1496)] = 21998, + [SMALL_STATE(1497)] = 22079, + [SMALL_STATE(1498)] = 22156, + [SMALL_STATE(1499)] = 22225, + [SMALL_STATE(1500)] = 22350, + [SMALL_STATE(1501)] = 22421, + [SMALL_STATE(1502)] = 22546, + [SMALL_STATE(1503)] = 22617, + [SMALL_STATE(1504)] = 22700, + [SMALL_STATE(1505)] = 22825, + [SMALL_STATE(1506)] = 22950, + [SMALL_STATE(1507)] = 23027, + [SMALL_STATE(1508)] = 23152, + [SMALL_STATE(1509)] = 23277, + [SMALL_STATE(1510)] = 23358, + [SMALL_STATE(1511)] = 23433, + [SMALL_STATE(1512)] = 23510, + [SMALL_STATE(1513)] = 23635, + [SMALL_STATE(1514)] = 23760, + [SMALL_STATE(1515)] = 23885, + [SMALL_STATE(1516)] = 24010, + [SMALL_STATE(1517)] = 24079, + [SMALL_STATE(1518)] = 24162, + [SMALL_STATE(1519)] = 24287, + [SMALL_STATE(1520)] = 24358, + [SMALL_STATE(1521)] = 24483, + [SMALL_STATE(1522)] = 24566, + [SMALL_STATE(1523)] = 24691, + [SMALL_STATE(1524)] = 24774, + [SMALL_STATE(1525)] = 24845, + [SMALL_STATE(1526)] = 24922, + [SMALL_STATE(1527)] = 25047, + [SMALL_STATE(1528)] = 25172, + [SMALL_STATE(1529)] = 25297, + [SMALL_STATE(1530)] = 25422, + [SMALL_STATE(1531)] = 25499, + [SMALL_STATE(1532)] = 25624, + [SMALL_STATE(1533)] = 25711, + [SMALL_STATE(1534)] = 25836, + [SMALL_STATE(1535)] = 25961, + [SMALL_STATE(1536)] = 26086, + [SMALL_STATE(1537)] = 26211, + [SMALL_STATE(1538)] = 26336, + [SMALL_STATE(1539)] = 26461, + [SMALL_STATE(1540)] = 26532, + [SMALL_STATE(1541)] = 26601, + [SMALL_STATE(1542)] = 26726, + [SMALL_STATE(1543)] = 26851, + [SMALL_STATE(1544)] = 26976, + [SMALL_STATE(1545)] = 27101, + [SMALL_STATE(1546)] = 27226, + [SMALL_STATE(1547)] = 27351, + [SMALL_STATE(1548)] = 27476, + [SMALL_STATE(1549)] = 27553, + [SMALL_STATE(1550)] = 27678, + [SMALL_STATE(1551)] = 27755, + [SMALL_STATE(1552)] = 27836, + [SMALL_STATE(1553)] = 27961, + [SMALL_STATE(1554)] = 28086, + [SMALL_STATE(1555)] = 28211, + [SMALL_STATE(1556)] = 28336, + [SMALL_STATE(1557)] = 28461, + [SMALL_STATE(1558)] = 28532, + [SMALL_STATE(1559)] = 28657, + [SMALL_STATE(1560)] = 28782, + [SMALL_STATE(1561)] = 28907, + [SMALL_STATE(1562)] = 29032, + [SMALL_STATE(1563)] = 29157, + [SMALL_STATE(1564)] = 29282, + [SMALL_STATE(1565)] = 29359, + [SMALL_STATE(1566)] = 29430, + [SMALL_STATE(1567)] = 29555, + [SMALL_STATE(1568)] = 29680, + [SMALL_STATE(1569)] = 29763, + [SMALL_STATE(1570)] = 29888, + [SMALL_STATE(1571)] = 29965, + [SMALL_STATE(1572)] = 30090, + [SMALL_STATE(1573)] = 30215, + [SMALL_STATE(1574)] = 30340, + [SMALL_STATE(1575)] = 30465, + [SMALL_STATE(1576)] = 30542, + [SMALL_STATE(1577)] = 30667, + [SMALL_STATE(1578)] = 30792, + [SMALL_STATE(1579)] = 30861, + [SMALL_STATE(1580)] = 30986, + [SMALL_STATE(1581)] = 31075, + [SMALL_STATE(1582)] = 31200, + [SMALL_STATE(1583)] = 31325, + [SMALL_STATE(1584)] = 31450, + [SMALL_STATE(1585)] = 31575, + [SMALL_STATE(1586)] = 31700, + [SMALL_STATE(1587)] = 31777, + [SMALL_STATE(1588)] = 31902, + [SMALL_STATE(1589)] = 32027, + [SMALL_STATE(1590)] = 32092, + [SMALL_STATE(1591)] = 32214, + [SMALL_STATE(1592)] = 32336, + [SMALL_STATE(1593)] = 32458, + [SMALL_STATE(1594)] = 32580, + [SMALL_STATE(1595)] = 32702, + [SMALL_STATE(1596)] = 32824, + [SMALL_STATE(1597)] = 32946, + [SMALL_STATE(1598)] = 33068, + [SMALL_STATE(1599)] = 33190, + [SMALL_STATE(1600)] = 33312, + [SMALL_STATE(1601)] = 33384, + [SMALL_STATE(1602)] = 33506, + [SMALL_STATE(1603)] = 33628, + [SMALL_STATE(1604)] = 33750, + [SMALL_STATE(1605)] = 33872, + [SMALL_STATE(1606)] = 33994, + [SMALL_STATE(1607)] = 34116, + [SMALL_STATE(1608)] = 34238, + [SMALL_STATE(1609)] = 34360, + [SMALL_STATE(1610)] = 34482, + [SMALL_STATE(1611)] = 34604, + [SMALL_STATE(1612)] = 34726, + [SMALL_STATE(1613)] = 34848, + [SMALL_STATE(1614)] = 34970, + [SMALL_STATE(1615)] = 35042, + [SMALL_STATE(1616)] = 35164, + [SMALL_STATE(1617)] = 35286, + [SMALL_STATE(1618)] = 35408, + [SMALL_STATE(1619)] = 35530, + [SMALL_STATE(1620)] = 35652, + [SMALL_STATE(1621)] = 35774, + [SMALL_STATE(1622)] = 35896, + [SMALL_STATE(1623)] = 36018, + [SMALL_STATE(1624)] = 36140, + [SMALL_STATE(1625)] = 36262, + [SMALL_STATE(1626)] = 36384, + [SMALL_STATE(1627)] = 36506, + [SMALL_STATE(1628)] = 36628, + [SMALL_STATE(1629)] = 36750, + [SMALL_STATE(1630)] = 36872, + [SMALL_STATE(1631)] = 36994, + [SMALL_STATE(1632)] = 37116, + [SMALL_STATE(1633)] = 37238, + [SMALL_STATE(1634)] = 37360, + [SMALL_STATE(1635)] = 37482, + [SMALL_STATE(1636)] = 37564, + [SMALL_STATE(1637)] = 37636, + [SMALL_STATE(1638)] = 37758, + [SMALL_STATE(1639)] = 37828, + [SMALL_STATE(1640)] = 37950, + [SMALL_STATE(1641)] = 38072, + [SMALL_STATE(1642)] = 38194, + [SMALL_STATE(1643)] = 38316, + [SMALL_STATE(1644)] = 38438, + [SMALL_STATE(1645)] = 38560, + [SMALL_STATE(1646)] = 38682, + [SMALL_STATE(1647)] = 38804, + [SMALL_STATE(1648)] = 38926, + [SMALL_STATE(1649)] = 39048, + [SMALL_STATE(1650)] = 39170, + [SMALL_STATE(1651)] = 39292, + [SMALL_STATE(1652)] = 39414, + [SMALL_STATE(1653)] = 39536, + [SMALL_STATE(1654)] = 39658, + [SMALL_STATE(1655)] = 39780, + [SMALL_STATE(1656)] = 39902, + [SMALL_STATE(1657)] = 40024, + [SMALL_STATE(1658)] = 40146, + [SMALL_STATE(1659)] = 40268, + [SMALL_STATE(1660)] = 40390, + [SMALL_STATE(1661)] = 40470, + [SMALL_STATE(1662)] = 40592, + [SMALL_STATE(1663)] = 40714, + [SMALL_STATE(1664)] = 40784, + [SMALL_STATE(1665)] = 40906, + [SMALL_STATE(1666)] = 41028, + [SMALL_STATE(1667)] = 41150, + [SMALL_STATE(1668)] = 41272, + [SMALL_STATE(1669)] = 41342, + [SMALL_STATE(1670)] = 41464, + [SMALL_STATE(1671)] = 41586, + [SMALL_STATE(1672)] = 41708, + [SMALL_STATE(1673)] = 41830, + [SMALL_STATE(1674)] = 41952, + [SMALL_STATE(1675)] = 42022, + [SMALL_STATE(1676)] = 42144, + [SMALL_STATE(1677)] = 42266, + [SMALL_STATE(1678)] = 42388, + [SMALL_STATE(1679)] = 42510, + [SMALL_STATE(1680)] = 42632, + [SMALL_STATE(1681)] = 42754, + [SMALL_STATE(1682)] = 42822, + [SMALL_STATE(1683)] = 42944, + [SMALL_STATE(1684)] = 43014, + [SMALL_STATE(1685)] = 43136, + [SMALL_STATE(1686)] = 43258, + [SMALL_STATE(1687)] = 43380, + [SMALL_STATE(1688)] = 43502, + [SMALL_STATE(1689)] = 43624, + [SMALL_STATE(1690)] = 43746, + [SMALL_STATE(1691)] = 43868, + [SMALL_STATE(1692)] = 43990, + [SMALL_STATE(1693)] = 44112, + [SMALL_STATE(1694)] = 44182, + [SMALL_STATE(1695)] = 44304, + [SMALL_STATE(1696)] = 44426, + [SMALL_STATE(1697)] = 44548, + [SMALL_STATE(1698)] = 44624, + [SMALL_STATE(1699)] = 44746, + [SMALL_STATE(1700)] = 44868, + [SMALL_STATE(1701)] = 44990, + [SMALL_STATE(1702)] = 45112, + [SMALL_STATE(1703)] = 45234, + [SMALL_STATE(1704)] = 45356, + [SMALL_STATE(1705)] = 45478, + [SMALL_STATE(1706)] = 45600, + [SMALL_STATE(1707)] = 45722, + [SMALL_STATE(1708)] = 45844, + [SMALL_STATE(1709)] = 45966, + [SMALL_STATE(1710)] = 46088, + [SMALL_STATE(1711)] = 46210, + [SMALL_STATE(1712)] = 46332, + [SMALL_STATE(1713)] = 46454, + [SMALL_STATE(1714)] = 46576, + [SMALL_STATE(1715)] = 46698, + [SMALL_STATE(1716)] = 46820, + [SMALL_STATE(1717)] = 46942, + [SMALL_STATE(1718)] = 47064, + [SMALL_STATE(1719)] = 47186, + [SMALL_STATE(1720)] = 47308, + [SMALL_STATE(1721)] = 47430, + [SMALL_STATE(1722)] = 47552, + [SMALL_STATE(1723)] = 47674, + [SMALL_STATE(1724)] = 47796, + [SMALL_STATE(1725)] = 47918, + [SMALL_STATE(1726)] = 48040, + [SMALL_STATE(1727)] = 48162, + [SMALL_STATE(1728)] = 48284, + [SMALL_STATE(1729)] = 48406, + [SMALL_STATE(1730)] = 48476, + [SMALL_STATE(1731)] = 48598, + [SMALL_STATE(1732)] = 48720, + [SMALL_STATE(1733)] = 48842, + [SMALL_STATE(1734)] = 48964, + [SMALL_STATE(1735)] = 49086, + [SMALL_STATE(1736)] = 49208, + [SMALL_STATE(1737)] = 49330, + [SMALL_STATE(1738)] = 49452, + [SMALL_STATE(1739)] = 49522, + [SMALL_STATE(1740)] = 49644, + [SMALL_STATE(1741)] = 49766, + [SMALL_STATE(1742)] = 49888, + [SMALL_STATE(1743)] = 49970, + [SMALL_STATE(1744)] = 50092, + [SMALL_STATE(1745)] = 50214, + [SMALL_STATE(1746)] = 50336, + [SMALL_STATE(1747)] = 50458, + [SMALL_STATE(1748)] = 50528, + [SMALL_STATE(1749)] = 50650, + [SMALL_STATE(1750)] = 50772, + [SMALL_STATE(1751)] = 50842, + [SMALL_STATE(1752)] = 50916, + [SMALL_STATE(1753)] = 50986, + [SMALL_STATE(1754)] = 51108, + [SMALL_STATE(1755)] = 51230, + [SMALL_STATE(1756)] = 51352, + [SMALL_STATE(1757)] = 51474, + [SMALL_STATE(1758)] = 51596, + [SMALL_STATE(1759)] = 51718, + [SMALL_STATE(1760)] = 51840, + [SMALL_STATE(1761)] = 51962, + [SMALL_STATE(1762)] = 52084, + [SMALL_STATE(1763)] = 52206, + [SMALL_STATE(1764)] = 52328, + [SMALL_STATE(1765)] = 52450, + [SMALL_STATE(1766)] = 52572, + [SMALL_STATE(1767)] = 52694, + [SMALL_STATE(1768)] = 52816, + [SMALL_STATE(1769)] = 52938, + [SMALL_STATE(1770)] = 53060, + [SMALL_STATE(1771)] = 53182, + [SMALL_STATE(1772)] = 53304, + [SMALL_STATE(1773)] = 53426, + [SMALL_STATE(1774)] = 53548, + [SMALL_STATE(1775)] = 53670, + [SMALL_STATE(1776)] = 53792, + [SMALL_STATE(1777)] = 53914, + [SMALL_STATE(1778)] = 54036, + [SMALL_STATE(1779)] = 54112, + [SMALL_STATE(1780)] = 54234, + [SMALL_STATE(1781)] = 54312, + [SMALL_STATE(1782)] = 54434, + [SMALL_STATE(1783)] = 54504, + [SMALL_STATE(1784)] = 54626, + [SMALL_STATE(1785)] = 54748, + [SMALL_STATE(1786)] = 54870, + [SMALL_STATE(1787)] = 54992, + [SMALL_STATE(1788)] = 55114, + [SMALL_STATE(1789)] = 55236, + [SMALL_STATE(1790)] = 55358, + [SMALL_STATE(1791)] = 55480, + [SMALL_STATE(1792)] = 55602, + [SMALL_STATE(1793)] = 55672, + [SMALL_STATE(1794)] = 55794, + [SMALL_STATE(1795)] = 55864, + [SMALL_STATE(1796)] = 55986, + [SMALL_STATE(1797)] = 56108, + [SMALL_STATE(1798)] = 56230, + [SMALL_STATE(1799)] = 56352, + [SMALL_STATE(1800)] = 56422, + [SMALL_STATE(1801)] = 56544, + [SMALL_STATE(1802)] = 56614, + [SMALL_STATE(1803)] = 56736, + [SMALL_STATE(1804)] = 56858, + [SMALL_STATE(1805)] = 56980, + [SMALL_STATE(1806)] = 57102, [SMALL_STATE(1807)] = 57172, [SMALL_STATE(1808)] = 57294, [SMALL_STATE(1809)] = 57416, [SMALL_STATE(1810)] = 57538, - [SMALL_STATE(1811)] = 57660, - [SMALL_STATE(1812)] = 57742, - [SMALL_STATE(1813)] = 57864, - [SMALL_STATE(1814)] = 57940, - [SMALL_STATE(1815)] = 58062, - [SMALL_STATE(1816)] = 58184, - [SMALL_STATE(1817)] = 58306, - [SMALL_STATE(1818)] = 58428, - [SMALL_STATE(1819)] = 58550, - [SMALL_STATE(1820)] = 58672, - [SMALL_STATE(1821)] = 58794, - [SMALL_STATE(1822)] = 58916, - [SMALL_STATE(1823)] = 59038, - [SMALL_STATE(1824)] = 59160, - [SMALL_STATE(1825)] = 59282, - [SMALL_STATE(1826)] = 59404, - [SMALL_STATE(1827)] = 59526, - [SMALL_STATE(1828)] = 59648, - [SMALL_STATE(1829)] = 59724, - [SMALL_STATE(1830)] = 59846, - [SMALL_STATE(1831)] = 59968, - [SMALL_STATE(1832)] = 60090, - [SMALL_STATE(1833)] = 60212, - [SMALL_STATE(1834)] = 60334, - [SMALL_STATE(1835)] = 60456, - [SMALL_STATE(1836)] = 60578, - [SMALL_STATE(1837)] = 60700, - [SMALL_STATE(1838)] = 60822, - [SMALL_STATE(1839)] = 60944, - [SMALL_STATE(1840)] = 61066, - [SMALL_STATE(1841)] = 61188, - [SMALL_STATE(1842)] = 61310, - [SMALL_STATE(1843)] = 61432, - [SMALL_STATE(1844)] = 61508, - [SMALL_STATE(1845)] = 61630, - [SMALL_STATE(1846)] = 61700, - [SMALL_STATE(1847)] = 61822, - [SMALL_STATE(1848)] = 61944, - [SMALL_STATE(1849)] = 62066, - [SMALL_STATE(1850)] = 62188, - [SMALL_STATE(1851)] = 62256, - [SMALL_STATE(1852)] = 62326, - [SMALL_STATE(1853)] = 62448, - [SMALL_STATE(1854)] = 62570, - [SMALL_STATE(1855)] = 62692, - [SMALL_STATE(1856)] = 62814, - [SMALL_STATE(1857)] = 62936, - [SMALL_STATE(1858)] = 63058, - [SMALL_STATE(1859)] = 63180, - [SMALL_STATE(1860)] = 63302, - [SMALL_STATE(1861)] = 63382, - [SMALL_STATE(1862)] = 63504, - [SMALL_STATE(1863)] = 63574, - [SMALL_STATE(1864)] = 63696, - [SMALL_STATE(1865)] = 63818, - [SMALL_STATE(1866)] = 63940, - [SMALL_STATE(1867)] = 64062, - [SMALL_STATE(1868)] = 64184, - [SMALL_STATE(1869)] = 64306, - [SMALL_STATE(1870)] = 64428, - [SMALL_STATE(1871)] = 64550, - [SMALL_STATE(1872)] = 64672, - [SMALL_STATE(1873)] = 64794, - [SMALL_STATE(1874)] = 64916, - [SMALL_STATE(1875)] = 65038, - [SMALL_STATE(1876)] = 65160, - [SMALL_STATE(1877)] = 65282, - [SMALL_STATE(1878)] = 65404, - [SMALL_STATE(1879)] = 65486, - [SMALL_STATE(1880)] = 65608, - [SMALL_STATE(1881)] = 65730, - [SMALL_STATE(1882)] = 65852, - [SMALL_STATE(1883)] = 65974, - [SMALL_STATE(1884)] = 66096, - [SMALL_STATE(1885)] = 66218, - [SMALL_STATE(1886)] = 66340, - [SMALL_STATE(1887)] = 66462, - [SMALL_STATE(1888)] = 66584, - [SMALL_STATE(1889)] = 66706, - [SMALL_STATE(1890)] = 66828, - [SMALL_STATE(1891)] = 66950, - [SMALL_STATE(1892)] = 67072, - [SMALL_STATE(1893)] = 67194, - [SMALL_STATE(1894)] = 67316, - [SMALL_STATE(1895)] = 67438, - [SMALL_STATE(1896)] = 67560, - [SMALL_STATE(1897)] = 67682, - [SMALL_STATE(1898)] = 67758, - [SMALL_STATE(1899)] = 67880, - [SMALL_STATE(1900)] = 68002, - [SMALL_STATE(1901)] = 68124, - [SMALL_STATE(1902)] = 68246, - [SMALL_STATE(1903)] = 68368, - [SMALL_STATE(1904)] = 68442, - [SMALL_STATE(1905)] = 68564, - [SMALL_STATE(1906)] = 68686, - [SMALL_STATE(1907)] = 68808, - [SMALL_STATE(1908)] = 68930, - [SMALL_STATE(1909)] = 69052, - [SMALL_STATE(1910)] = 69174, - [SMALL_STATE(1911)] = 69296, - [SMALL_STATE(1912)] = 69418, - [SMALL_STATE(1913)] = 69540, - [SMALL_STATE(1914)] = 69662, - [SMALL_STATE(1915)] = 69784, - [SMALL_STATE(1916)] = 69906, - [SMALL_STATE(1917)] = 70028, - [SMALL_STATE(1918)] = 70150, - [SMALL_STATE(1919)] = 70272, - [SMALL_STATE(1920)] = 70394, - [SMALL_STATE(1921)] = 70516, - [SMALL_STATE(1922)] = 70638, - [SMALL_STATE(1923)] = 70760, - [SMALL_STATE(1924)] = 70882, - [SMALL_STATE(1925)] = 71004, - [SMALL_STATE(1926)] = 71126, - [SMALL_STATE(1927)] = 71248, - [SMALL_STATE(1928)] = 71370, - [SMALL_STATE(1929)] = 71492, - [SMALL_STATE(1930)] = 71614, - [SMALL_STATE(1931)] = 71736, - [SMALL_STATE(1932)] = 71858, - [SMALL_STATE(1933)] = 71980, - [SMALL_STATE(1934)] = 72102, - [SMALL_STATE(1935)] = 72224, - [SMALL_STATE(1936)] = 72294, - [SMALL_STATE(1937)] = 72364, - [SMALL_STATE(1938)] = 72434, - [SMALL_STATE(1939)] = 72556, - [SMALL_STATE(1940)] = 72634, - [SMALL_STATE(1941)] = 72756, - [SMALL_STATE(1942)] = 72878, - [SMALL_STATE(1943)] = 72948, - [SMALL_STATE(1944)] = 73070, - [SMALL_STATE(1945)] = 73192, - [SMALL_STATE(1946)] = 73268, - [SMALL_STATE(1947)] = 73390, - [SMALL_STATE(1948)] = 73512, - [SMALL_STATE(1949)] = 73582, - [SMALL_STATE(1950)] = 73704, - [SMALL_STATE(1951)] = 73826, - [SMALL_STATE(1952)] = 73948, - [SMALL_STATE(1953)] = 74070, - [SMALL_STATE(1954)] = 74192, - [SMALL_STATE(1955)] = 74314, - [SMALL_STATE(1956)] = 74436, - [SMALL_STATE(1957)] = 74558, - [SMALL_STATE(1958)] = 74680, - [SMALL_STATE(1959)] = 74802, - [SMALL_STATE(1960)] = 74924, - [SMALL_STATE(1961)] = 74994, - [SMALL_STATE(1962)] = 75116, - [SMALL_STATE(1963)] = 75238, - [SMALL_STATE(1964)] = 75360, - [SMALL_STATE(1965)] = 75482, - [SMALL_STATE(1966)] = 75604, - [SMALL_STATE(1967)] = 75726, - [SMALL_STATE(1968)] = 75848, - [SMALL_STATE(1969)] = 75970, - [SMALL_STATE(1970)] = 76092, - [SMALL_STATE(1971)] = 76214, - [SMALL_STATE(1972)] = 76336, - [SMALL_STATE(1973)] = 76412, - [SMALL_STATE(1974)] = 76534, - [SMALL_STATE(1975)] = 76656, - [SMALL_STATE(1976)] = 76778, - [SMALL_STATE(1977)] = 76848, - [SMALL_STATE(1978)] = 76970, - [SMALL_STATE(1979)] = 77092, - [SMALL_STATE(1980)] = 77162, - [SMALL_STATE(1981)] = 77284, - [SMALL_STATE(1982)] = 77406, - [SMALL_STATE(1983)] = 77528, - [SMALL_STATE(1984)] = 77650, - [SMALL_STATE(1985)] = 77772, - [SMALL_STATE(1986)] = 77842, - [SMALL_STATE(1987)] = 77964, - [SMALL_STATE(1988)] = 78086, - [SMALL_STATE(1989)] = 78208, - [SMALL_STATE(1990)] = 78330, - [SMALL_STATE(1991)] = 78452, - [SMALL_STATE(1992)] = 78574, - [SMALL_STATE(1993)] = 78696, - [SMALL_STATE(1994)] = 78766, - [SMALL_STATE(1995)] = 78888, - [SMALL_STATE(1996)] = 78958, - [SMALL_STATE(1997)] = 79080, - [SMALL_STATE(1998)] = 79202, - [SMALL_STATE(1999)] = 79324, - [SMALL_STATE(2000)] = 79446, - [SMALL_STATE(2001)] = 79568, - [SMALL_STATE(2002)] = 79690, - [SMALL_STATE(2003)] = 79812, - [SMALL_STATE(2004)] = 79934, - [SMALL_STATE(2005)] = 80056, - [SMALL_STATE(2006)] = 80178, - [SMALL_STATE(2007)] = 80300, - [SMALL_STATE(2008)] = 80422, - [SMALL_STATE(2009)] = 80544, - [SMALL_STATE(2010)] = 80666, - [SMALL_STATE(2011)] = 80788, - [SMALL_STATE(2012)] = 80910, - [SMALL_STATE(2013)] = 80986, - [SMALL_STATE(2014)] = 81060, - [SMALL_STATE(2015)] = 81182, - [SMALL_STATE(2016)] = 81304, - [SMALL_STATE(2017)] = 81426, - [SMALL_STATE(2018)] = 81548, - [SMALL_STATE(2019)] = 81670, - [SMALL_STATE(2020)] = 81738, - [SMALL_STATE(2021)] = 81860, - [SMALL_STATE(2022)] = 81929, - [SMALL_STATE(2023)] = 81998, - [SMALL_STATE(2024)] = 82117, - [SMALL_STATE(2025)] = 82186, - [SMALL_STATE(2026)] = 82255, - [SMALL_STATE(2027)] = 82324, - [SMALL_STATE(2028)] = 82399, - [SMALL_STATE(2029)] = 82476, - [SMALL_STATE(2030)] = 82545, - [SMALL_STATE(2031)] = 82614, - [SMALL_STATE(2032)] = 82683, - [SMALL_STATE(2033)] = 82762, - [SMALL_STATE(2034)] = 82837, - [SMALL_STATE(2035)] = 82918, - [SMALL_STATE(2036)] = 82987, - [SMALL_STATE(2037)] = 83056, - [SMALL_STATE(2038)] = 83123, - [SMALL_STATE(2039)] = 83190, - [SMALL_STATE(2040)] = 83259, - [SMALL_STATE(2041)] = 83328, - [SMALL_STATE(2042)] = 83401, - [SMALL_STATE(2043)] = 83470, - [SMALL_STATE(2044)] = 83533, - [SMALL_STATE(2045)] = 83608, - [SMALL_STATE(2046)] = 83677, - [SMALL_STATE(2047)] = 83746, - [SMALL_STATE(2048)] = 83865, - [SMALL_STATE(2049)] = 83934, - [SMALL_STATE(2050)] = 84001, - [SMALL_STATE(2051)] = 84078, - [SMALL_STATE(2052)] = 84141, - [SMALL_STATE(2053)] = 84210, - [SMALL_STATE(2054)] = 84283, - [SMALL_STATE(2055)] = 84354, - [SMALL_STATE(2056)] = 84421, - [SMALL_STATE(2057)] = 84484, - [SMALL_STATE(2058)] = 84559, - [SMALL_STATE(2059)] = 84626, - [SMALL_STATE(2060)] = 84695, - [SMALL_STATE(2061)] = 84764, - [SMALL_STATE(2062)] = 84827, - [SMALL_STATE(2063)] = 84896, - [SMALL_STATE(2064)] = 84959, - [SMALL_STATE(2065)] = 85034, - [SMALL_STATE(2066)] = 85109, - [SMALL_STATE(2067)] = 85180, - [SMALL_STATE(2068)] = 85247, - [SMALL_STATE(2069)] = 85310, - [SMALL_STATE(2070)] = 85377, - [SMALL_STATE(2071)] = 85452, - [SMALL_STATE(2072)] = 85523, - [SMALL_STATE(2073)] = 85590, - [SMALL_STATE(2074)] = 85657, - [SMALL_STATE(2075)] = 85724, - [SMALL_STATE(2076)] = 85787, - [SMALL_STATE(2077)] = 85860, - [SMALL_STATE(2078)] = 85928, - [SMALL_STATE(2079)] = 85998, - [SMALL_STATE(2080)] = 86066, - [SMALL_STATE(2081)] = 86136, - [SMALL_STATE(2082)] = 86204, - [SMALL_STATE(2083)] = 86270, - [SMALL_STATE(2084)] = 86338, - [SMALL_STATE(2085)] = 86406, - [SMALL_STATE(2086)] = 86474, - [SMALL_STATE(2087)] = 86548, - [SMALL_STATE(2088)] = 86620, - [SMALL_STATE(2089)] = 86690, - [SMALL_STATE(2090)] = 86758, - [SMALL_STATE(2091)] = 86832, - [SMALL_STATE(2092)] = 86904, - [SMALL_STATE(2093)] = 86974, - [SMALL_STATE(2094)] = 87046, - [SMALL_STATE(2095)] = 87118, - [SMALL_STATE(2096)] = 87192, - [SMALL_STATE(2097)] = 87264, - [SMALL_STATE(2098)] = 87332, - [SMALL_STATE(2099)] = 87398, - [SMALL_STATE(2100)] = 87468, - [SMALL_STATE(2101)] = 87536, - [SMALL_STATE(2102)] = 87604, - [SMALL_STATE(2103)] = 87674, - [SMALL_STATE(2104)] = 87740, - [SMALL_STATE(2105)] = 87810, - [SMALL_STATE(2106)] = 87878, - [SMALL_STATE(2107)] = 87946, - [SMALL_STATE(2108)] = 88016, - [SMALL_STATE(2109)] = 88084, - [SMALL_STATE(2110)] = 88151, - [SMALL_STATE(2111)] = 88218, - [SMALL_STATE(2112)] = 88289, - [SMALL_STATE(2113)] = 88360, - [SMALL_STATE(2114)] = 88427, - [SMALL_STATE(2115)] = 88494, - [SMALL_STATE(2116)] = 88561, - [SMALL_STATE(2117)] = 88628, - [SMALL_STATE(2118)] = 88696, - [SMALL_STATE(2119)] = 88814, - [SMALL_STATE(2120)] = 88932, - [SMALL_STATE(2121)] = 89050, - [SMALL_STATE(2122)] = 89168, - [SMALL_STATE(2123)] = 89286, - [SMALL_STATE(2124)] = 89404, - [SMALL_STATE(2125)] = 89522, - [SMALL_STATE(2126)] = 89640, - [SMALL_STATE(2127)] = 89758, - [SMALL_STATE(2128)] = 89865, - [SMALL_STATE(2129)] = 89972, - [SMALL_STATE(2130)] = 90087, - [SMALL_STATE(2131)] = 90194, - [SMALL_STATE(2132)] = 90269, - [SMALL_STATE(2133)] = 90376, - [SMALL_STATE(2134)] = 90483, - [SMALL_STATE(2135)] = 90590, - [SMALL_STATE(2136)] = 90697, - [SMALL_STATE(2137)] = 90807, - [SMALL_STATE(2138)] = 90917, - [SMALL_STATE(2139)] = 91025, - [SMALL_STATE(2140)] = 91094, - [SMALL_STATE(2141)] = 91197, - [SMALL_STATE(2142)] = 91300, - [SMALL_STATE(2143)] = 91403, - [SMALL_STATE(2144)] = 91506, - [SMALL_STATE(2145)] = 91609, - [SMALL_STATE(2146)] = 91712, - [SMALL_STATE(2147)] = 91815, - [SMALL_STATE(2148)] = 91918, - [SMALL_STATE(2149)] = 92021, - [SMALL_STATE(2150)] = 92124, - [SMALL_STATE(2151)] = 92227, - [SMALL_STATE(2152)] = 92330, - [SMALL_STATE(2153)] = 92433, - [SMALL_STATE(2154)] = 92536, - [SMALL_STATE(2155)] = 92639, - [SMALL_STATE(2156)] = 92742, - [SMALL_STATE(2157)] = 92845, - [SMALL_STATE(2158)] = 92948, - [SMALL_STATE(2159)] = 93051, - [SMALL_STATE(2160)] = 93154, - [SMALL_STATE(2161)] = 93257, - [SMALL_STATE(2162)] = 93313, - [SMALL_STATE(2163)] = 93373, - [SMALL_STATE(2164)] = 93431, - [SMALL_STATE(2165)] = 93485, - [SMALL_STATE(2166)] = 93541, - [SMALL_STATE(2167)] = 93601, - [SMALL_STATE(2168)] = 93655, - [SMALL_STATE(2169)] = 93715, - [SMALL_STATE(2170)] = 93773, - [SMALL_STATE(2171)] = 93831, - [SMALL_STATE(2172)] = 93889, - [SMALL_STATE(2173)] = 93947, - [SMALL_STATE(2174)] = 94000, - [SMALL_STATE(2175)] = 94053, - [SMALL_STATE(2176)] = 94146, - [SMALL_STATE(2177)] = 94199, - [SMALL_STATE(2178)] = 94298, - [SMALL_STATE(2179)] = 94397, - [SMALL_STATE(2180)] = 94452, - [SMALL_STATE(2181)] = 94551, - [SMALL_STATE(2182)] = 94604, - [SMALL_STATE(2183)] = 94703, - [SMALL_STATE(2184)] = 94756, - [SMALL_STATE(2185)] = 94809, - [SMALL_STATE(2186)] = 94908, - [SMALL_STATE(2187)] = 94967, - [SMALL_STATE(2188)] = 95020, - [SMALL_STATE(2189)] = 95119, - [SMALL_STATE(2190)] = 95172, - [SMALL_STATE(2191)] = 95271, - [SMALL_STATE(2192)] = 95370, - [SMALL_STATE(2193)] = 95469, - [SMALL_STATE(2194)] = 95568, - [SMALL_STATE(2195)] = 95667, - [SMALL_STATE(2196)] = 95740, - [SMALL_STATE(2197)] = 95823, - [SMALL_STATE(2198)] = 95890, - [SMALL_STATE(2199)] = 95943, - [SMALL_STATE(2200)] = 95996, - [SMALL_STATE(2201)] = 96049, - [SMALL_STATE(2202)] = 96102, - [SMALL_STATE(2203)] = 96155, - [SMALL_STATE(2204)] = 96208, - [SMALL_STATE(2205)] = 96261, - [SMALL_STATE(2206)] = 96320, - [SMALL_STATE(2207)] = 96373, - [SMALL_STATE(2208)] = 96432, - [SMALL_STATE(2209)] = 96485, - [SMALL_STATE(2210)] = 96564, - [SMALL_STATE(2211)] = 96617, - [SMALL_STATE(2212)] = 96674, - [SMALL_STATE(2213)] = 96727, - [SMALL_STATE(2214)] = 96812, - [SMALL_STATE(2215)] = 96869, - [SMALL_STATE(2216)] = 96958, - [SMALL_STATE(2217)] = 97035, - [SMALL_STATE(2218)] = 97106, - [SMALL_STATE(2219)] = 97199, - [SMALL_STATE(2220)] = 97254, - [SMALL_STATE(2221)] = 97353, - [SMALL_STATE(2222)] = 97406, - [SMALL_STATE(2223)] = 97459, - [SMALL_STATE(2224)] = 97514, - [SMALL_STATE(2225)] = 97613, - [SMALL_STATE(2226)] = 97666, - [SMALL_STATE(2227)] = 97765, - [SMALL_STATE(2228)] = 97864, - [SMALL_STATE(2229)] = 97917, - [SMALL_STATE(2230)] = 98016, - [SMALL_STATE(2231)] = 98069, - [SMALL_STATE(2232)] = 98168, - [SMALL_STATE(2233)] = 98221, - [SMALL_STATE(2234)] = 98320, - [SMALL_STATE(2235)] = 98419, - [SMALL_STATE(2236)] = 98518, - [SMALL_STATE(2237)] = 98571, - [SMALL_STATE(2238)] = 98624, - [SMALL_STATE(2239)] = 98709, - [SMALL_STATE(2240)] = 98762, - [SMALL_STATE(2241)] = 98815, - [SMALL_STATE(2242)] = 98886, - [SMALL_STATE(2243)] = 98941, - [SMALL_STATE(2244)] = 98994, - [SMALL_STATE(2245)] = 99047, - [SMALL_STATE(2246)] = 99100, - [SMALL_STATE(2247)] = 99153, - [SMALL_STATE(2248)] = 99206, - [SMALL_STATE(2249)] = 99259, - [SMALL_STATE(2250)] = 99312, - [SMALL_STATE(2251)] = 99365, - [SMALL_STATE(2252)] = 99418, - [SMALL_STATE(2253)] = 99471, - [SMALL_STATE(2254)] = 99524, - [SMALL_STATE(2255)] = 99577, - [SMALL_STATE(2256)] = 99630, - [SMALL_STATE(2257)] = 99683, - [SMALL_STATE(2258)] = 99736, - [SMALL_STATE(2259)] = 99789, - [SMALL_STATE(2260)] = 99888, - [SMALL_STATE(2261)] = 99941, - [SMALL_STATE(2262)] = 99994, - [SMALL_STATE(2263)] = 100047, - [SMALL_STATE(2264)] = 100100, - [SMALL_STATE(2265)] = 100153, - [SMALL_STATE(2266)] = 100208, - [SMALL_STATE(2267)] = 100261, - [SMALL_STATE(2268)] = 100318, - [SMALL_STATE(2269)] = 100371, - [SMALL_STATE(2270)] = 100424, - [SMALL_STATE(2271)] = 100479, - [SMALL_STATE(2272)] = 100532, - [SMALL_STATE(2273)] = 100585, - [SMALL_STATE(2274)] = 100638, - [SMALL_STATE(2275)] = 100691, - [SMALL_STATE(2276)] = 100744, - [SMALL_STATE(2277)] = 100805, - [SMALL_STATE(2278)] = 100876, - [SMALL_STATE(2279)] = 100975, - [SMALL_STATE(2280)] = 101030, - [SMALL_STATE(2281)] = 101085, - [SMALL_STATE(2282)] = 101156, - [SMALL_STATE(2283)] = 101209, - [SMALL_STATE(2284)] = 101262, - [SMALL_STATE(2285)] = 101315, - [SMALL_STATE(2286)] = 101368, - [SMALL_STATE(2287)] = 101421, - [SMALL_STATE(2288)] = 101474, - [SMALL_STATE(2289)] = 101543, - [SMALL_STATE(2290)] = 101596, - [SMALL_STATE(2291)] = 101667, - [SMALL_STATE(2292)] = 101766, - [SMALL_STATE(2293)] = 101843, - [SMALL_STATE(2294)] = 101898, - [SMALL_STATE(2295)] = 101951, - [SMALL_STATE(2296)] = 102004, - [SMALL_STATE(2297)] = 102057, - [SMALL_STATE(2298)] = 102146, - [SMALL_STATE(2299)] = 102245, - [SMALL_STATE(2300)] = 102298, - [SMALL_STATE(2301)] = 102397, - [SMALL_STATE(2302)] = 102450, - [SMALL_STATE(2303)] = 102503, - [SMALL_STATE(2304)] = 102556, - [SMALL_STATE(2305)] = 102609, - [SMALL_STATE(2306)] = 102662, - [SMALL_STATE(2307)] = 102715, - [SMALL_STATE(2308)] = 102768, - [SMALL_STATE(2309)] = 102821, - [SMALL_STATE(2310)] = 102890, - [SMALL_STATE(2311)] = 102989, - [SMALL_STATE(2312)] = 103042, - [SMALL_STATE(2313)] = 103095, - [SMALL_STATE(2314)] = 103148, - [SMALL_STATE(2315)] = 103201, - [SMALL_STATE(2316)] = 103280, - [SMALL_STATE(2317)] = 103363, - [SMALL_STATE(2318)] = 103416, - [SMALL_STATE(2319)] = 103515, - [SMALL_STATE(2320)] = 103586, - [SMALL_STATE(2321)] = 103639, - [SMALL_STATE(2322)] = 103692, - [SMALL_STATE(2323)] = 103745, - [SMALL_STATE(2324)] = 103798, - [SMALL_STATE(2325)] = 103851, - [SMALL_STATE(2326)] = 103950, - [SMALL_STATE(2327)] = 104005, - [SMALL_STATE(2328)] = 104058, - [SMALL_STATE(2329)] = 104111, - [SMALL_STATE(2330)] = 104164, - [SMALL_STATE(2331)] = 104237, - [SMALL_STATE(2332)] = 104290, - [SMALL_STATE(2333)] = 104343, - [SMALL_STATE(2334)] = 104396, - [SMALL_STATE(2335)] = 104449, - [SMALL_STATE(2336)] = 104548, - [SMALL_STATE(2337)] = 104601, - [SMALL_STATE(2338)] = 104654, - [SMALL_STATE(2339)] = 104753, - [SMALL_STATE(2340)] = 104806, - [SMALL_STATE(2341)] = 104905, - [SMALL_STATE(2342)] = 104958, - [SMALL_STATE(2343)] = 105057, - [SMALL_STATE(2344)] = 105110, - [SMALL_STATE(2345)] = 105209, - [SMALL_STATE(2346)] = 105308, - [SMALL_STATE(2347)] = 105361, - [SMALL_STATE(2348)] = 105414, - [SMALL_STATE(2349)] = 105467, - [SMALL_STATE(2350)] = 105520, - [SMALL_STATE(2351)] = 105573, - [SMALL_STATE(2352)] = 105626, - [SMALL_STATE(2353)] = 105679, - [SMALL_STATE(2354)] = 105732, - [SMALL_STATE(2355)] = 105785, - [SMALL_STATE(2356)] = 105844, - [SMALL_STATE(2357)] = 105897, - [SMALL_STATE(2358)] = 105952, - [SMALL_STATE(2359)] = 106005, - [SMALL_STATE(2360)] = 106058, - [SMALL_STATE(2361)] = 106111, - [SMALL_STATE(2362)] = 106209, - [SMALL_STATE(2363)] = 106301, - [SMALL_STATE(2364)] = 106393, - [SMALL_STATE(2365)] = 106491, - [SMALL_STATE(2366)] = 106589, - [SMALL_STATE(2367)] = 106671, - [SMALL_STATE(2368)] = 106731, - [SMALL_STATE(2369)] = 106803, - [SMALL_STATE(2370)] = 106895, - [SMALL_STATE(2371)] = 106987, - [SMALL_STATE(2372)] = 107079, - [SMALL_STATE(2373)] = 107177, - [SMALL_STATE(2374)] = 107275, - [SMALL_STATE(2375)] = 107345, - [SMALL_STATE(2376)] = 107401, - [SMALL_STATE(2377)] = 107459, - [SMALL_STATE(2378)] = 107515, - [SMALL_STATE(2379)] = 107607, - [SMALL_STATE(2380)] = 107699, - [SMALL_STATE(2381)] = 107797, - [SMALL_STATE(2382)] = 107875, - [SMALL_STATE(2383)] = 107959, - [SMALL_STATE(2384)] = 108019, - [SMALL_STATE(2385)] = 108111, - [SMALL_STATE(2386)] = 108165, - [SMALL_STATE(2387)] = 108263, - [SMALL_STATE(2388)] = 108361, - [SMALL_STATE(2389)] = 108437, - [SMALL_STATE(2390)] = 108535, - [SMALL_STATE(2391)] = 108627, - [SMALL_STATE(2392)] = 108725, - [SMALL_STATE(2393)] = 108785, - [SMALL_STATE(2394)] = 108845, - [SMALL_STATE(2395)] = 108943, - [SMALL_STATE(2396)] = 108999, - [SMALL_STATE(2397)] = 109087, - [SMALL_STATE(2398)] = 109143, - [SMALL_STATE(2399)] = 109211, - [SMALL_STATE(2400)] = 109309, - [SMALL_STATE(2401)] = 109401, - [SMALL_STATE(2402)] = 109457, - [SMALL_STATE(2403)] = 109555, - [SMALL_STATE(2404)] = 109647, - [SMALL_STATE(2405)] = 109717, - [SMALL_STATE(2406)] = 109787, - [SMALL_STATE(2407)] = 109847, - [SMALL_STATE(2408)] = 109907, - [SMALL_STATE(2409)] = 109999, - [SMALL_STATE(2410)] = 110050, - [SMALL_STATE(2411)] = 110149, - [SMALL_STATE(2412)] = 110200, - [SMALL_STATE(2413)] = 110297, - [SMALL_STATE(2414)] = 110394, - [SMALL_STATE(2415)] = 110449, - [SMALL_STATE(2416)] = 110500, - [SMALL_STATE(2417)] = 110597, - [SMALL_STATE(2418)] = 110694, - [SMALL_STATE(2419)] = 110763, - [SMALL_STATE(2420)] = 110830, - [SMALL_STATE(2421)] = 110881, - [SMALL_STATE(2422)] = 110936, - [SMALL_STATE(2423)] = 111033, - [SMALL_STATE(2424)] = 111084, - [SMALL_STATE(2425)] = 111135, - [SMALL_STATE(2426)] = 111186, - [SMALL_STATE(2427)] = 111237, - [SMALL_STATE(2428)] = 111290, - [SMALL_STATE(2429)] = 111341, - [SMALL_STATE(2430)] = 111392, - [SMALL_STATE(2431)] = 111449, - [SMALL_STATE(2432)] = 111506, - [SMALL_STATE(2433)] = 111563, - [SMALL_STATE(2434)] = 111660, - [SMALL_STATE(2435)] = 111757, - [SMALL_STATE(2436)] = 111808, - [SMALL_STATE(2437)] = 111879, - [SMALL_STATE(2438)] = 111936, - [SMALL_STATE(2439)] = 112035, - [SMALL_STATE(2440)] = 112116, - [SMALL_STATE(2441)] = 112173, - [SMALL_STATE(2442)] = 112224, - [SMALL_STATE(2443)] = 112281, - [SMALL_STATE(2444)] = 112332, - [SMALL_STATE(2445)] = 112409, - [SMALL_STATE(2446)] = 112492, - [SMALL_STATE(2447)] = 112579, - [SMALL_STATE(2448)] = 112654, - [SMALL_STATE(2449)] = 112723, - [SMALL_STATE(2450)] = 112814, - [SMALL_STATE(2451)] = 112865, - [SMALL_STATE(2452)] = 112962, - [SMALL_STATE(2453)] = 113059, - [SMALL_STATE(2454)] = 113110, - [SMALL_STATE(2455)] = 113161, - [SMALL_STATE(2456)] = 113212, - [SMALL_STATE(2457)] = 113265, - [SMALL_STATE(2458)] = 113318, - [SMALL_STATE(2459)] = 113369, - [SMALL_STATE(2460)] = 113428, - [SMALL_STATE(2461)] = 113479, - [SMALL_STATE(2462)] = 113530, - [SMALL_STATE(2463)] = 113581, - [SMALL_STATE(2464)] = 113632, - [SMALL_STATE(2465)] = 113683, - [SMALL_STATE(2466)] = 113734, - [SMALL_STATE(2467)] = 113785, - [SMALL_STATE(2468)] = 113838, - [SMALL_STATE(2469)] = 113935, - [SMALL_STATE(2470)] = 114032, - [SMALL_STATE(2471)] = 114083, - [SMALL_STATE(2472)] = 114136, - [SMALL_STATE(2473)] = 114189, - [SMALL_STATE(2474)] = 114240, - [SMALL_STATE(2475)] = 114291, - [SMALL_STATE(2476)] = 114342, - [SMALL_STATE(2477)] = 114393, - [SMALL_STATE(2478)] = 114444, - [SMALL_STATE(2479)] = 114503, - [SMALL_STATE(2480)] = 114554, - [SMALL_STATE(2481)] = 114605, - [SMALL_STATE(2482)] = 114656, - [SMALL_STATE(2483)] = 114713, - [SMALL_STATE(2484)] = 114810, - [SMALL_STATE(2485)] = 114861, - [SMALL_STATE(2486)] = 114920, - [SMALL_STATE(2487)] = 114973, - [SMALL_STATE(2488)] = 115024, - [SMALL_STATE(2489)] = 115075, - [SMALL_STATE(2490)] = 115132, - [SMALL_STATE(2491)] = 115183, - [SMALL_STATE(2492)] = 115236, - [SMALL_STATE(2493)] = 115287, - [SMALL_STATE(2494)] = 115338, - [SMALL_STATE(2495)] = 115389, - [SMALL_STATE(2496)] = 115440, - [SMALL_STATE(2497)] = 115491, - [SMALL_STATE(2498)] = 115542, - [SMALL_STATE(2499)] = 115609, - [SMALL_STATE(2500)] = 115660, - [SMALL_STATE(2501)] = 115757, - [SMALL_STATE(2502)] = 115810, - [SMALL_STATE(2503)] = 115909, - [SMALL_STATE(2504)] = 116006, - [SMALL_STATE(2505)] = 116103, - [SMALL_STATE(2506)] = 116174, - [SMALL_STATE(2507)] = 116271, - [SMALL_STATE(2508)] = 116352, - [SMALL_STATE(2509)] = 116417, - [SMALL_STATE(2510)] = 116516, - [SMALL_STATE(2511)] = 116615, - [SMALL_STATE(2512)] = 116714, - [SMALL_STATE(2513)] = 116765, - [SMALL_STATE(2514)] = 116816, - [SMALL_STATE(2515)] = 116867, - [SMALL_STATE(2516)] = 116918, - [SMALL_STATE(2517)] = 117017, - [SMALL_STATE(2518)] = 117094, - [SMALL_STATE(2519)] = 117177, - [SMALL_STATE(2520)] = 117264, - [SMALL_STATE(2521)] = 117339, - [SMALL_STATE(2522)] = 117430, - [SMALL_STATE(2523)] = 117529, - [SMALL_STATE(2524)] = 117626, - [SMALL_STATE(2525)] = 117723, - [SMALL_STATE(2526)] = 117814, - [SMALL_STATE(2527)] = 117867, - [SMALL_STATE(2528)] = 117936, - [SMALL_STATE(2529)] = 118011, - [SMALL_STATE(2530)] = 118098, - [SMALL_STATE(2531)] = 118181, - [SMALL_STATE(2532)] = 118250, - [SMALL_STATE(2533)] = 118301, - [SMALL_STATE(2534)] = 118378, - [SMALL_STATE(2535)] = 118475, - [SMALL_STATE(2536)] = 118526, - [SMALL_STATE(2537)] = 118607, - [SMALL_STATE(2538)] = 118658, - [SMALL_STATE(2539)] = 118729, - [SMALL_STATE(2540)] = 118828, - [SMALL_STATE(2541)] = 118927, - [SMALL_STATE(2542)] = 118978, - [SMALL_STATE(2543)] = 119029, - [SMALL_STATE(2544)] = 119126, - [SMALL_STATE(2545)] = 119225, - [SMALL_STATE(2546)] = 119324, - [SMALL_STATE(2547)] = 119423, - [SMALL_STATE(2548)] = 119492, - [SMALL_STATE(2549)] = 119561, - [SMALL_STATE(2550)] = 119658, - [SMALL_STATE(2551)] = 119755, - [SMALL_STATE(2552)] = 119852, - [SMALL_STATE(2553)] = 119903, - [SMALL_STATE(2554)] = 119954, - [SMALL_STATE(2555)] = 120005, - [SMALL_STATE(2556)] = 120060, - [SMALL_STATE(2557)] = 120157, - [SMALL_STATE(2558)] = 120216, - [SMALL_STATE(2559)] = 120267, - [SMALL_STATE(2560)] = 120318, - [SMALL_STATE(2561)] = 120369, - [SMALL_STATE(2562)] = 120420, - [SMALL_STATE(2563)] = 120471, - [SMALL_STATE(2564)] = 120522, - [SMALL_STATE(2565)] = 120573, - [SMALL_STATE(2566)] = 120624, - [SMALL_STATE(2567)] = 120675, - [SMALL_STATE(2568)] = 120726, - [SMALL_STATE(2569)] = 120777, - [SMALL_STATE(2570)] = 120828, - [SMALL_STATE(2571)] = 120883, - [SMALL_STATE(2572)] = 120934, - [SMALL_STATE(2573)] = 120985, - [SMALL_STATE(2574)] = 121036, - [SMALL_STATE(2575)] = 121087, - [SMALL_STATE(2576)] = 121156, - [SMALL_STATE(2577)] = 121207, - [SMALL_STATE(2578)] = 121304, - [SMALL_STATE(2579)] = 121355, - [SMALL_STATE(2580)] = 121406, - [SMALL_STATE(2581)] = 121457, - [SMALL_STATE(2582)] = 121508, - [SMALL_STATE(2583)] = 121559, - [SMALL_STATE(2584)] = 121612, - [SMALL_STATE(2585)] = 121665, - [SMALL_STATE(2586)] = 121716, - [SMALL_STATE(2587)] = 121767, - [SMALL_STATE(2588)] = 121818, - [SMALL_STATE(2589)] = 121869, - [SMALL_STATE(2590)] = 121920, - [SMALL_STATE(2591)] = 121971, - [SMALL_STATE(2592)] = 122022, - [SMALL_STATE(2593)] = 122091, - [SMALL_STATE(2594)] = 122160, - [SMALL_STATE(2595)] = 122211, - [SMALL_STATE(2596)] = 122310, - [SMALL_STATE(2597)] = 122361, - [SMALL_STATE(2598)] = 122412, - [SMALL_STATE(2599)] = 122479, - [SMALL_STATE(2600)] = 122530, - [SMALL_STATE(2601)] = 122581, - [SMALL_STATE(2602)] = 122632, - [SMALL_STATE(2603)] = 122683, - [SMALL_STATE(2604)] = 122734, - [SMALL_STATE(2605)] = 122785, - [SMALL_STATE(2606)] = 122882, - [SMALL_STATE(2607)] = 122933, - [SMALL_STATE(2608)] = 123029, - [SMALL_STATE(2609)] = 123125, - [SMALL_STATE(2610)] = 123177, - [SMALL_STATE(2611)] = 123279, - [SMALL_STATE(2612)] = 123331, - [SMALL_STATE(2613)] = 123387, - [SMALL_STATE(2614)] = 123443, - [SMALL_STATE(2615)] = 123511, - [SMALL_STATE(2616)] = 123567, - [SMALL_STATE(2617)] = 123635, - [SMALL_STATE(2618)] = 123703, - [SMALL_STATE(2619)] = 123801, - [SMALL_STATE(2620)] = 123869, - [SMALL_STATE(2621)] = 123967, - [SMALL_STATE(2622)] = 124033, - [SMALL_STATE(2623)] = 124129, - [SMALL_STATE(2624)] = 124213, - [SMALL_STATE(2625)] = 124309, - [SMALL_STATE(2626)] = 124377, - [SMALL_STATE(2627)] = 124445, - [SMALL_STATE(2628)] = 124511, - [SMALL_STATE(2629)] = 124607, - [SMALL_STATE(2630)] = 124703, - [SMALL_STATE(2631)] = 124759, - [SMALL_STATE(2632)] = 124855, - [SMALL_STATE(2633)] = 124925, - [SMALL_STATE(2634)] = 125005, - [SMALL_STATE(2635)] = 125059, - [SMALL_STATE(2636)] = 125135, - [SMALL_STATE(2637)] = 125217, - [SMALL_STATE(2638)] = 125303, - [SMALL_STATE(2639)] = 125399, - [SMALL_STATE(2640)] = 125473, - [SMALL_STATE(2641)] = 125569, - [SMALL_STATE(2642)] = 125659, - [SMALL_STATE(2643)] = 125755, - [SMALL_STATE(2644)] = 125851, - [SMALL_STATE(2645)] = 125947, - [SMALL_STATE(2646)] = 126005, - [SMALL_STATE(2647)] = 126101, - [SMALL_STATE(2648)] = 126197, - [SMALL_STATE(2649)] = 126251, - [SMALL_STATE(2650)] = 126303, - [SMALL_STATE(2651)] = 126399, - [SMALL_STATE(2652)] = 126495, - [SMALL_STATE(2653)] = 126597, - [SMALL_STATE(2654)] = 126693, - [SMALL_STATE(2655)] = 126789, - [SMALL_STATE(2656)] = 126891, - [SMALL_STATE(2657)] = 126987, - [SMALL_STATE(2658)] = 127089, - [SMALL_STATE(2659)] = 127185, - [SMALL_STATE(2660)] = 127281, - [SMALL_STATE(2661)] = 127349, - [SMALL_STATE(2662)] = 127403, - [SMALL_STATE(2663)] = 127469, - [SMALL_STATE(2664)] = 127567, - [SMALL_STATE(2665)] = 127665, - [SMALL_STATE(2666)] = 127733, - [SMALL_STATE(2667)] = 127801, - [SMALL_STATE(2668)] = 127899, - [SMALL_STATE(2669)] = 127997, - [SMALL_STATE(2670)] = 128095, - [SMALL_STATE(2671)] = 128193, - [SMALL_STATE(2672)] = 128291, - [SMALL_STATE(2673)] = 128389, - [SMALL_STATE(2674)] = 128479, - [SMALL_STATE(2675)] = 128547, - [SMALL_STATE(2676)] = 128621, - [SMALL_STATE(2677)] = 128707, - [SMALL_STATE(2678)] = 128789, - [SMALL_STATE(2679)] = 128865, - [SMALL_STATE(2680)] = 128945, - [SMALL_STATE(2681)] = 129015, - [SMALL_STATE(2682)] = 129113, - [SMALL_STATE(2683)] = 129211, - [SMALL_STATE(2684)] = 129309, - [SMALL_STATE(2685)] = 129407, - [SMALL_STATE(2686)] = 129505, - [SMALL_STATE(2687)] = 129561, - [SMALL_STATE(2688)] = 129613, - [SMALL_STATE(2689)] = 129665, - [SMALL_STATE(2690)] = 129721, - [SMALL_STATE(2691)] = 129823, - [SMALL_STATE(2692)] = 129921, - [SMALL_STATE(2693)] = 129973, - [SMALL_STATE(2694)] = 130071, - [SMALL_STATE(2695)] = 130169, - [SMALL_STATE(2696)] = 130267, - [SMALL_STATE(2697)] = 130365, - [SMALL_STATE(2698)] = 130461, - [SMALL_STATE(2699)] = 130557, - [SMALL_STATE(2700)] = 130653, - [SMALL_STATE(2701)] = 130749, - [SMALL_STATE(2702)] = 130845, - [SMALL_STATE(2703)] = 130915, - [SMALL_STATE(2704)] = 130995, - [SMALL_STATE(2705)] = 131071, - [SMALL_STATE(2706)] = 131153, - [SMALL_STATE(2707)] = 131239, - [SMALL_STATE(2708)] = 131313, - [SMALL_STATE(2709)] = 131381, - [SMALL_STATE(2710)] = 131437, - [SMALL_STATE(2711)] = 131491, - [SMALL_STATE(2712)] = 131581, - [SMALL_STATE(2713)] = 131635, - [SMALL_STATE(2714)] = 131731, - [SMALL_STATE(2715)] = 131827, - [SMALL_STATE(2716)] = 131923, - [SMALL_STATE(2717)] = 132019, - [SMALL_STATE(2718)] = 132115, - [SMALL_STATE(2719)] = 132211, - [SMALL_STATE(2720)] = 132311, - [SMALL_STATE(2721)] = 132411, - [SMALL_STATE(2722)] = 132509, - [SMALL_STATE(2723)] = 132577, - [SMALL_STATE(2724)] = 132645, - [SMALL_STATE(2725)] = 132741, - [SMALL_STATE(2726)] = 132837, - [SMALL_STATE(2727)] = 132903, - [SMALL_STATE(2728)] = 133003, - [SMALL_STATE(2729)] = 133093, - [SMALL_STATE(2730)] = 133167, - [SMALL_STATE(2731)] = 133219, - [SMALL_STATE(2732)] = 133305, - [SMALL_STATE(2733)] = 133387, - [SMALL_STATE(2734)] = 133463, - [SMALL_STATE(2735)] = 133559, - [SMALL_STATE(2736)] = 133655, - [SMALL_STATE(2737)] = 133735, - [SMALL_STATE(2738)] = 133805, - [SMALL_STATE(2739)] = 133903, - [SMALL_STATE(2740)] = 133993, - [SMALL_STATE(2741)] = 134061, - [SMALL_STATE(2742)] = 134135, - [SMALL_STATE(2743)] = 134221, - [SMALL_STATE(2744)] = 134303, - [SMALL_STATE(2745)] = 134379, - [SMALL_STATE(2746)] = 134459, - [SMALL_STATE(2747)] = 134557, - [SMALL_STATE(2748)] = 134613, - [SMALL_STATE(2749)] = 134711, - [SMALL_STATE(2750)] = 134813, - [SMALL_STATE(2751)] = 134883, - [SMALL_STATE(2752)] = 134979, - [SMALL_STATE(2753)] = 135077, - [SMALL_STATE(2754)] = 135173, - [SMALL_STATE(2755)] = 135271, - [SMALL_STATE(2756)] = 135339, - [SMALL_STATE(2757)] = 135391, - [SMALL_STATE(2758)] = 135487, - [SMALL_STATE(2759)] = 135583, - [SMALL_STATE(2760)] = 135635, - [SMALL_STATE(2761)] = 135689, - [SMALL_STATE(2762)] = 135745, - [SMALL_STATE(2763)] = 135801, - [SMALL_STATE(2764)] = 135857, - [SMALL_STATE(2765)] = 135915, - [SMALL_STATE(2766)] = 135973, - [SMALL_STATE(2767)] = 136029, - [SMALL_STATE(2768)] = 136087, - [SMALL_STATE(2769)] = 136143, - [SMALL_STATE(2770)] = 136245, - [SMALL_STATE(2771)] = 136311, - [SMALL_STATE(2772)] = 136363, - [SMALL_STATE(2773)] = 136415, - [SMALL_STATE(2774)] = 136467, - [SMALL_STATE(2775)] = 136523, - [SMALL_STATE(2776)] = 136575, - [SMALL_STATE(2777)] = 136627, - [SMALL_STATE(2778)] = 136687, - [SMALL_STATE(2779)] = 136747, - [SMALL_STATE(2780)] = 136847, - [SMALL_STATE(2781)] = 136912, - [SMALL_STATE(2782)] = 136961, - [SMALL_STATE(2783)] = 137058, - [SMALL_STATE(2784)] = 137155, - [SMALL_STATE(2785)] = 137204, - [SMALL_STATE(2786)] = 137299, - [SMALL_STATE(2787)] = 137394, - [SMALL_STATE(2788)] = 137463, - [SMALL_STATE(2789)] = 137512, - [SMALL_STATE(2790)] = 137611, - [SMALL_STATE(2791)] = 137660, - [SMALL_STATE(2792)] = 137755, - [SMALL_STATE(2793)] = 137850, - [SMALL_STATE(2794)] = 137929, - [SMALL_STATE(2795)] = 137978, - [SMALL_STATE(2796)] = 138027, - [SMALL_STATE(2797)] = 138122, - [SMALL_STATE(2798)] = 138171, - [SMALL_STATE(2799)] = 138268, - [SMALL_STATE(2800)] = 138317, - [SMALL_STATE(2801)] = 138392, - [SMALL_STATE(2802)] = 138487, - [SMALL_STATE(2803)] = 138568, - [SMALL_STATE(2804)] = 138621, - [SMALL_STATE(2805)] = 138670, - [SMALL_STATE(2806)] = 138755, - [SMALL_STATE(2807)] = 138828, - [SMALL_STATE(2808)] = 138895, - [SMALL_STATE(2809)] = 138984, - [SMALL_STATE(2810)] = 139033, - [SMALL_STATE(2811)] = 139128, - [SMALL_STATE(2812)] = 139223, - [SMALL_STATE(2813)] = 139318, - [SMALL_STATE(2814)] = 139413, - [SMALL_STATE(2815)] = 139464, - [SMALL_STATE(2816)] = 139513, - [SMALL_STATE(2817)] = 139562, - [SMALL_STATE(2818)] = 139629, - [SMALL_STATE(2819)] = 139702, - [SMALL_STATE(2820)] = 139753, - [SMALL_STATE(2821)] = 139848, - [SMALL_STATE(2822)] = 139897, - [SMALL_STATE(2823)] = 139952, - [SMALL_STATE(2824)] = 140003, - [SMALL_STATE(2825)] = 140098, - [SMALL_STATE(2826)] = 140193, - [SMALL_STATE(2827)] = 140242, - [SMALL_STATE(2828)] = 140327, - [SMALL_STATE(2829)] = 140408, - [SMALL_STATE(2830)] = 140483, - [SMALL_STATE(2831)] = 140578, - [SMALL_STATE(2832)] = 140627, - [SMALL_STATE(2833)] = 140694, - [SMALL_STATE(2834)] = 140743, - [SMALL_STATE(2835)] = 140822, - [SMALL_STATE(2836)] = 140871, - [SMALL_STATE(2837)] = 140922, - [SMALL_STATE(2838)] = 140971, - [SMALL_STATE(2839)] = 141020, - [SMALL_STATE(2840)] = 141069, - [SMALL_STATE(2841)] = 141118, - [SMALL_STATE(2842)] = 141167, - [SMALL_STATE(2843)] = 141216, - [SMALL_STATE(2844)] = 141269, - [SMALL_STATE(2845)] = 141326, - [SMALL_STATE(2846)] = 141423, - [SMALL_STATE(2847)] = 141490, - [SMALL_STATE(2848)] = 141587, - [SMALL_STATE(2849)] = 141636, - [SMALL_STATE(2850)] = 141705, - [SMALL_STATE(2851)] = 141754, - [SMALL_STATE(2852)] = 141803, - [SMALL_STATE(2853)] = 141852, - [SMALL_STATE(2854)] = 141903, - [SMALL_STATE(2855)] = 141960, - [SMALL_STATE(2856)] = 142009, - [SMALL_STATE(2857)] = 142104, - [SMALL_STATE(2858)] = 142199, - [SMALL_STATE(2859)] = 142296, - [SMALL_STATE(2860)] = 142345, - [SMALL_STATE(2861)] = 142400, - [SMALL_STATE(2862)] = 142451, - [SMALL_STATE(2863)] = 142504, - [SMALL_STATE(2864)] = 142559, - [SMALL_STATE(2865)] = 142656, - [SMALL_STATE(2866)] = 142711, - [SMALL_STATE(2867)] = 142764, - [SMALL_STATE(2868)] = 142831, - [SMALL_STATE(2869)] = 142880, - [SMALL_STATE(2870)] = 142977, - [SMALL_STATE(2871)] = 143026, - [SMALL_STATE(2872)] = 143077, - [SMALL_STATE(2873)] = 143126, - [SMALL_STATE(2874)] = 143223, - [SMALL_STATE(2875)] = 143272, - [SMALL_STATE(2876)] = 143321, - [SMALL_STATE(2877)] = 143370, - [SMALL_STATE(2878)] = 143419, - [SMALL_STATE(2879)] = 143468, - [SMALL_STATE(2880)] = 143517, - [SMALL_STATE(2881)] = 143566, - [SMALL_STATE(2882)] = 143615, - [SMALL_STATE(2883)] = 143664, - [SMALL_STATE(2884)] = 143721, - [SMALL_STATE(2885)] = 143770, - [SMALL_STATE(2886)] = 143819, - [SMALL_STATE(2887)] = 143868, - [SMALL_STATE(2888)] = 143967, - [SMALL_STATE(2889)] = 144064, - [SMALL_STATE(2890)] = 144159, - [SMALL_STATE(2891)] = 144208, - [SMALL_STATE(2892)] = 144263, - [SMALL_STATE(2893)] = 144312, - [SMALL_STATE(2894)] = 144407, - [SMALL_STATE(2895)] = 144456, - [SMALL_STATE(2896)] = 144505, - [SMALL_STATE(2897)] = 144554, - [SMALL_STATE(2898)] = 144603, - [SMALL_STATE(2899)] = 144658, - [SMALL_STATE(2900)] = 144707, - [SMALL_STATE(2901)] = 144796, - [SMALL_STATE(2902)] = 144845, - [SMALL_STATE(2903)] = 144940, - [SMALL_STATE(2904)] = 144989, - [SMALL_STATE(2905)] = 145038, - [SMALL_STATE(2906)] = 145087, - [SMALL_STATE(2907)] = 145136, - [SMALL_STATE(2908)] = 145185, - [SMALL_STATE(2909)] = 145234, - [SMALL_STATE(2910)] = 145287, - [SMALL_STATE(2911)] = 145336, - [SMALL_STATE(2912)] = 145403, - [SMALL_STATE(2913)] = 145500, - [SMALL_STATE(2914)] = 145549, - [SMALL_STATE(2915)] = 145646, - [SMALL_STATE(2916)] = 145699, - [SMALL_STATE(2917)] = 145748, - [SMALL_STATE(2918)] = 145797, - [SMALL_STATE(2919)] = 145892, - [SMALL_STATE(2920)] = 145987, - [SMALL_STATE(2921)] = 146082, - [SMALL_STATE(2922)] = 146177, - [SMALL_STATE(2923)] = 146272, - [SMALL_STATE(2924)] = 146321, - [SMALL_STATE(2925)] = 146370, - [SMALL_STATE(2926)] = 146465, - [SMALL_STATE(2927)] = 146560, - [SMALL_STATE(2928)] = 146609, - [SMALL_STATE(2929)] = 146704, - [SMALL_STATE(2930)] = 146799, - [SMALL_STATE(2931)] = 146898, - [SMALL_STATE(2932)] = 146949, - [SMALL_STATE(2933)] = 146998, - [SMALL_STATE(2934)] = 147053, - [SMALL_STATE(2935)] = 147122, - [SMALL_STATE(2936)] = 147201, - [SMALL_STATE(2937)] = 147250, - [SMALL_STATE(2938)] = 147299, - [SMALL_STATE(2939)] = 147348, - [SMALL_STATE(2940)] = 147397, - [SMALL_STATE(2941)] = 147494, - [SMALL_STATE(2942)] = 147543, - [SMALL_STATE(2943)] = 147618, - [SMALL_STATE(2944)] = 147667, - [SMALL_STATE(2945)] = 147748, - [SMALL_STATE(2946)] = 147833, - [SMALL_STATE(2947)] = 147906, - [SMALL_STATE(2948)] = 147995, - [SMALL_STATE(2949)] = 148044, - [SMALL_STATE(2950)] = 148093, - [SMALL_STATE(2951)] = 148188, - [SMALL_STATE(2952)] = 148283, - [SMALL_STATE(2953)] = 148332, - [SMALL_STATE(2954)] = 148387, - [SMALL_STATE(2955)] = 148438, - [SMALL_STATE(2956)] = 148487, - [SMALL_STATE(2957)] = 148582, - [SMALL_STATE(2958)] = 148677, - [SMALL_STATE(2959)] = 148726, - [SMALL_STATE(2960)] = 148781, - [SMALL_STATE(2961)] = 148838, - [SMALL_STATE(2962)] = 148905, - [SMALL_STATE(2963)] = 148954, - [SMALL_STATE(2964)] = 149021, - [SMALL_STATE(2965)] = 149116, - [SMALL_STATE(2966)] = 149211, - [SMALL_STATE(2967)] = 149306, - [SMALL_STATE(2968)] = 149355, - [SMALL_STATE(2969)] = 149450, - [SMALL_STATE(2970)] = 149545, - [SMALL_STATE(2971)] = 149594, - [SMALL_STATE(2972)] = 149683, - [SMALL_STATE(2973)] = 149732, - [SMALL_STATE(2974)] = 149805, - [SMALL_STATE(2975)] = 149904, - [SMALL_STATE(2976)] = 149989, - [SMALL_STATE(2977)] = 150070, - [SMALL_STATE(2978)] = 150119, - [SMALL_STATE(2979)] = 150170, - [SMALL_STATE(2980)] = 150219, - [SMALL_STATE(2981)] = 150294, - [SMALL_STATE(2982)] = 150389, - [SMALL_STATE(2983)] = 150454, - [SMALL_STATE(2984)] = 150549, - [SMALL_STATE(2985)] = 150644, - [SMALL_STATE(2986)] = 150723, - [SMALL_STATE(2987)] = 150772, - [SMALL_STATE(2988)] = 150821, - [SMALL_STATE(2989)] = 150890, - [SMALL_STATE(2990)] = 150985, - [SMALL_STATE(2991)] = 151080, - [SMALL_STATE(2992)] = 151175, - [SMALL_STATE(2993)] = 151270, - [SMALL_STATE(2994)] = 151359, - [SMALL_STATE(2995)] = 151426, - [SMALL_STATE(2996)] = 151483, - [SMALL_STATE(2997)] = 151546, - [SMALL_STATE(2998)] = 151601, - [SMALL_STATE(2999)] = 151698, - [SMALL_STATE(3000)] = 151765, - [SMALL_STATE(3001)] = 151832, - [SMALL_STATE(3002)] = 151881, - [SMALL_STATE(3003)] = 151980, - [SMALL_STATE(3004)] = 152035, - [SMALL_STATE(3005)] = 152100, - [SMALL_STATE(3006)] = 152199, - [SMALL_STATE(3007)] = 152272, - [SMALL_STATE(3008)] = 152357, - [SMALL_STATE(3009)] = 152438, - [SMALL_STATE(3010)] = 152503, - [SMALL_STATE(3011)] = 152568, - [SMALL_STATE(3012)] = 152663, - [SMALL_STATE(3013)] = 152712, - [SMALL_STATE(3014)] = 152761, - [SMALL_STATE(3015)] = 152856, - [SMALL_STATE(3016)] = 152923, - [SMALL_STATE(3017)] = 152990, - [SMALL_STATE(3018)] = 153065, - [SMALL_STATE(3019)] = 153132, - [SMALL_STATE(3020)] = 153199, - [SMALL_STATE(3021)] = 153294, - [SMALL_STATE(3022)] = 153351, - [SMALL_STATE(3023)] = 153430, - [SMALL_STATE(3024)] = 153481, - [SMALL_STATE(3025)] = 153580, - [SMALL_STATE(3026)] = 153629, - [SMALL_STATE(3027)] = 153686, - [SMALL_STATE(3028)] = 153735, - [SMALL_STATE(3029)] = 153804, - [SMALL_STATE(3030)] = 153899, - [SMALL_STATE(3031)] = 153994, - [SMALL_STATE(3032)] = 154043, - [SMALL_STATE(3033)] = 154092, - [SMALL_STATE(3034)] = 154187, - [SMALL_STATE(3035)] = 154236, - [SMALL_STATE(3036)] = 154285, - [SMALL_STATE(3037)] = 154380, - [SMALL_STATE(3038)] = 154429, - [SMALL_STATE(3039)] = 154524, - [SMALL_STATE(3040)] = 154573, - [SMALL_STATE(3041)] = 154668, - [SMALL_STATE(3042)] = 154725, - [SMALL_STATE(3043)] = 154820, - [SMALL_STATE(3044)] = 154915, - [SMALL_STATE(3045)] = 155010, - [SMALL_STATE(3046)] = 155109, - [SMALL_STATE(3047)] = 155158, - [SMALL_STATE(3048)] = 155207, - [SMALL_STATE(3049)] = 155256, - [SMALL_STATE(3050)] = 155353, - [SMALL_STATE(3051)] = 155408, - [SMALL_STATE(3052)] = 155457, - [SMALL_STATE(3053)] = 155506, - [SMALL_STATE(3054)] = 155563, - [SMALL_STATE(3055)] = 155662, - [SMALL_STATE(3056)] = 155759, - [SMALL_STATE(3057)] = 155808, - [SMALL_STATE(3058)] = 155857, - [SMALL_STATE(3059)] = 155954, - [SMALL_STATE(3060)] = 156051, - [SMALL_STATE(3061)] = 156100, - [SMALL_STATE(3062)] = 156149, - [SMALL_STATE(3063)] = 156248, - [SMALL_STATE(3064)] = 156299, - [SMALL_STATE(3065)] = 156350, - [SMALL_STATE(3066)] = 156402, - [SMALL_STATE(3067)] = 156468, - [SMALL_STATE(3068)] = 156520, - [SMALL_STATE(3069)] = 156586, - [SMALL_STATE(3070)] = 156654, - [SMALL_STATE(3071)] = 156748, - [SMALL_STATE(3072)] = 156814, - [SMALL_STATE(3073)] = 156866, - [SMALL_STATE(3074)] = 156930, - [SMALL_STATE(3075)] = 157026, - [SMALL_STATE(3076)] = 157092, - [SMALL_STATE(3077)] = 157188, - [SMALL_STATE(3078)] = 157244, - [SMALL_STATE(3079)] = 157340, - [SMALL_STATE(3080)] = 157414, - [SMALL_STATE(3081)] = 157508, - [SMALL_STATE(3082)] = 157584, - [SMALL_STATE(3083)] = 157656, - [SMALL_STATE(3084)] = 157752, - [SMALL_STATE(3085)] = 157804, - [SMALL_STATE(3086)] = 157898, - [SMALL_STATE(3087)] = 157984, - [SMALL_STATE(3088)] = 158036, - [SMALL_STATE(3089)] = 158130, - [SMALL_STATE(3090)] = 158180, - [SMALL_STATE(3091)] = 158274, - [SMALL_STATE(3092)] = 158368, - [SMALL_STATE(3093)] = 158462, - [SMALL_STATE(3094)] = 158556, - [SMALL_STATE(3095)] = 158606, - [SMALL_STATE(3096)] = 158656, - [SMALL_STATE(3097)] = 158742, - [SMALL_STATE(3098)] = 158814, - [SMALL_STATE(3099)] = 158890, - [SMALL_STATE(3100)] = 158942, - [SMALL_STATE(3101)] = 159020, - [SMALL_STATE(3102)] = 159070, - [SMALL_STATE(3103)] = 159164, - [SMALL_STATE(3104)] = 159216, - [SMALL_STATE(3105)] = 159266, - [SMALL_STATE(3106)] = 159360, - [SMALL_STATE(3107)] = 159454, - [SMALL_STATE(3108)] = 159548, - [SMALL_STATE(3109)] = 159642, - [SMALL_STATE(3110)] = 159738, - [SMALL_STATE(3111)] = 159788, - [SMALL_STATE(3112)] = 159838, - [SMALL_STATE(3113)] = 159934, - [SMALL_STATE(3114)] = 160002, - [SMALL_STATE(3115)] = 160056, - [SMALL_STATE(3116)] = 160108, - [SMALL_STATE(3117)] = 160182, - [SMALL_STATE(3118)] = 160260, - [SMALL_STATE(3119)] = 160356, - [SMALL_STATE(3120)] = 160412, - [SMALL_STATE(3121)] = 160462, - [SMALL_STATE(3122)] = 160514, - [SMALL_STATE(3123)] = 160600, - [SMALL_STATE(3124)] = 160696, - [SMALL_STATE(3125)] = 160746, - [SMALL_STATE(3126)] = 160800, - [SMALL_STATE(3127)] = 160854, - [SMALL_STATE(3128)] = 160916, - [SMALL_STATE(3129)] = 160990, - [SMALL_STATE(3130)] = 161086, - [SMALL_STATE(3131)] = 161182, - [SMALL_STATE(3132)] = 161256, - [SMALL_STATE(3133)] = 161336, - [SMALL_STATE(3134)] = 161420, - [SMALL_STATE(3135)] = 161492, - [SMALL_STATE(3136)] = 161558, - [SMALL_STATE(3137)] = 161646, - [SMALL_STATE(3138)] = 161696, - [SMALL_STATE(3139)] = 161792, - [SMALL_STATE(3140)] = 161868, - [SMALL_STATE(3141)] = 161962, - [SMALL_STATE(3142)] = 162056, - [SMALL_STATE(3143)] = 162128, - [SMALL_STATE(3144)] = 162178, - [SMALL_STATE(3145)] = 162274, - [SMALL_STATE(3146)] = 162324, - [SMALL_STATE(3147)] = 162420, - [SMALL_STATE(3148)] = 162474, - [SMALL_STATE(3149)] = 162560, - [SMALL_STATE(3150)] = 162616, - [SMALL_STATE(3151)] = 162666, - [SMALL_STATE(3152)] = 162730, - [SMALL_STATE(3153)] = 162826, - [SMALL_STATE(3154)] = 162922, - [SMALL_STATE(3155)] = 163018, - [SMALL_STATE(3156)] = 163072, - [SMALL_STATE(3157)] = 163122, - [SMALL_STATE(3158)] = 163218, - [SMALL_STATE(3159)] = 163270, - [SMALL_STATE(3160)] = 163320, - [SMALL_STATE(3161)] = 163374, - [SMALL_STATE(3162)] = 163424, - [SMALL_STATE(3163)] = 163474, - [SMALL_STATE(3164)] = 163560, - [SMALL_STATE(3165)] = 163634, - [SMALL_STATE(3166)] = 163720, - [SMALL_STATE(3167)] = 163806, - [SMALL_STATE(3168)] = 163900, - [SMALL_STATE(3169)] = 163976, - [SMALL_STATE(3170)] = 164042, - [SMALL_STATE(3171)] = 164092, - [SMALL_STATE(3172)] = 164144, - [SMALL_STATE(3173)] = 164194, - [SMALL_STATE(3174)] = 164246, - [SMALL_STATE(3175)] = 164312, - [SMALL_STATE(3176)] = 164364, - [SMALL_STATE(3177)] = 164436, - [SMALL_STATE(3178)] = 164512, - [SMALL_STATE(3179)] = 164586, - [SMALL_STATE(3180)] = 164642, - [SMALL_STATE(3181)] = 164698, - [SMALL_STATE(3182)] = 164784, - [SMALL_STATE(3183)] = 164856, - [SMALL_STATE(3184)] = 164910, - [SMALL_STATE(3185)] = 164960, - [SMALL_STATE(3186)] = 165014, - [SMALL_STATE(3187)] = 165064, - [SMALL_STATE(3188)] = 165158, - [SMALL_STATE(3189)] = 165210, - [SMALL_STATE(3190)] = 165304, - [SMALL_STATE(3191)] = 165378, - [SMALL_STATE(3192)] = 165454, - [SMALL_STATE(3193)] = 165548, - [SMALL_STATE(3194)] = 165642, - [SMALL_STATE(3195)] = 165714, - [SMALL_STATE(3196)] = 165764, - [SMALL_STATE(3197)] = 165814, - [SMALL_STATE(3198)] = 165900, - [SMALL_STATE(3199)] = 165974, - [SMALL_STATE(3200)] = 166068, - [SMALL_STATE(3201)] = 166122, - [SMALL_STATE(3202)] = 166176, - [SMALL_STATE(3203)] = 166230, - [SMALL_STATE(3204)] = 166310, - [SMALL_STATE(3205)] = 166396, - [SMALL_STATE(3206)] = 166450, - [SMALL_STATE(3207)] = 166546, - [SMALL_STATE(3208)] = 166602, - [SMALL_STATE(3209)] = 166658, - [SMALL_STATE(3210)] = 166710, - [SMALL_STATE(3211)] = 166760, - [SMALL_STATE(3212)] = 166810, - [SMALL_STATE(3213)] = 166860, - [SMALL_STATE(3214)] = 166910, - [SMALL_STATE(3215)] = 166994, - [SMALL_STATE(3216)] = 167090, - [SMALL_STATE(3217)] = 167162, - [SMALL_STATE(3218)] = 167250, - [SMALL_STATE(3219)] = 167300, - [SMALL_STATE(3220)] = 167396, - [SMALL_STATE(3221)] = 167490, - [SMALL_STATE(3222)] = 167540, - [SMALL_STATE(3223)] = 167594, - [SMALL_STATE(3224)] = 167688, - [SMALL_STATE(3225)] = 167752, - [SMALL_STATE(3226)] = 167846, - [SMALL_STATE(3227)] = 167906, - [SMALL_STATE(3228)] = 168000, - [SMALL_STATE(3229)] = 168060, - [SMALL_STATE(3230)] = 168126, - [SMALL_STATE(3231)] = 168192, - [SMALL_STATE(3232)] = 168286, - [SMALL_STATE(3233)] = 168338, - [SMALL_STATE(3234)] = 168394, - [SMALL_STATE(3235)] = 168444, - [SMALL_STATE(3236)] = 168494, - [SMALL_STATE(3237)] = 168546, - [SMALL_STATE(3238)] = 168618, - [SMALL_STATE(3239)] = 168672, - [SMALL_STATE(3240)] = 168722, - [SMALL_STATE(3241)] = 168798, - [SMALL_STATE(3242)] = 168872, - [SMALL_STATE(3243)] = 168928, - [SMALL_STATE(3244)] = 168978, - [SMALL_STATE(3245)] = 169028, - [SMALL_STATE(3246)] = 169084, - [SMALL_STATE(3247)] = 169170, - [SMALL_STATE(3248)] = 169264, - [SMALL_STATE(3249)] = 169316, - [SMALL_STATE(3250)] = 169368, - [SMALL_STATE(3251)] = 169454, - [SMALL_STATE(3252)] = 169540, - [SMALL_STATE(3253)] = 169594, - [SMALL_STATE(3254)] = 169648, - [SMALL_STATE(3255)] = 169700, - [SMALL_STATE(3256)] = 169754, - [SMALL_STATE(3257)] = 169808, - [SMALL_STATE(3258)] = 169858, - [SMALL_STATE(3259)] = 169908, - [SMALL_STATE(3260)] = 170002, - [SMALL_STATE(3261)] = 170096, - [SMALL_STATE(3262)] = 170150, - [SMALL_STATE(3263)] = 170204, - [SMALL_STATE(3264)] = 170258, - [SMALL_STATE(3265)] = 170332, - [SMALL_STATE(3266)] = 170408, - [SMALL_STATE(3267)] = 170480, - [SMALL_STATE(3268)] = 170574, - [SMALL_STATE(3269)] = 170668, - [SMALL_STATE(3270)] = 170762, - [SMALL_STATE(3271)] = 170856, - [SMALL_STATE(3272)] = 170950, - [SMALL_STATE(3273)] = 171044, - [SMALL_STATE(3274)] = 171138, - [SMALL_STATE(3275)] = 171188, - [SMALL_STATE(3276)] = 171282, - [SMALL_STATE(3277)] = 171376, - [SMALL_STATE(3278)] = 171464, - [SMALL_STATE(3279)] = 171530, - [SMALL_STATE(3280)] = 171602, - [SMALL_STATE(3281)] = 171652, - [SMALL_STATE(3282)] = 171736, - [SMALL_STATE(3283)] = 171816, - [SMALL_STATE(3284)] = 171866, - [SMALL_STATE(3285)] = 171916, - [SMALL_STATE(3286)] = 171990, - [SMALL_STATE(3287)] = 172068, - [SMALL_STATE(3288)] = 172136, - [SMALL_STATE(3289)] = 172230, - [SMALL_STATE(3290)] = 172282, - [SMALL_STATE(3291)] = 172376, - [SMALL_STATE(3292)] = 172470, - [SMALL_STATE(3293)] = 172564, - [SMALL_STATE(3294)] = 172658, - [SMALL_STATE(3295)] = 172730, - [SMALL_STATE(3296)] = 172806, - [SMALL_STATE(3297)] = 172860, - [SMALL_STATE(3298)] = 172934, - [SMALL_STATE(3299)] = 172988, - [SMALL_STATE(3300)] = 173050, - [SMALL_STATE(3301)] = 173144, - [SMALL_STATE(3302)] = 173230, - [SMALL_STATE(3303)] = 173292, - [SMALL_STATE(3304)] = 173386, - [SMALL_STATE(3305)] = 173436, - [SMALL_STATE(3306)] = 173522, - [SMALL_STATE(3307)] = 173576, - [SMALL_STATE(3308)] = 173643, - [SMALL_STATE(3309)] = 173690, - [SMALL_STATE(3310)] = 173737, - [SMALL_STATE(3311)] = 173784, - [SMALL_STATE(3312)] = 173877, - [SMALL_STATE(3313)] = 173970, - [SMALL_STATE(3314)] = 174023, - [SMALL_STATE(3315)] = 174116, - [SMALL_STATE(3316)] = 174165, - [SMALL_STATE(3317)] = 174258, - [SMALL_STATE(3318)] = 174311, - [SMALL_STATE(3319)] = 174358, - [SMALL_STATE(3320)] = 174405, - [SMALL_STATE(3321)] = 174452, - [SMALL_STATE(3322)] = 174499, - [SMALL_STATE(3323)] = 174592, - [SMALL_STATE(3324)] = 174685, - [SMALL_STATE(3325)] = 174752, - [SMALL_STATE(3326)] = 174829, - [SMALL_STATE(3327)] = 174884, - [SMALL_STATE(3328)] = 174977, - [SMALL_STATE(3329)] = 175024, - [SMALL_STATE(3330)] = 175071, - [SMALL_STATE(3331)] = 175144, - [SMALL_STATE(3332)] = 175223, - [SMALL_STATE(3333)] = 175306, - [SMALL_STATE(3334)] = 175377, - [SMALL_STATE(3335)] = 175442, - [SMALL_STATE(3336)] = 175529, - [SMALL_STATE(3337)] = 175622, - [SMALL_STATE(3338)] = 175715, - [SMALL_STATE(3339)] = 175764, - [SMALL_STATE(3340)] = 175857, - [SMALL_STATE(3341)] = 175904, - [SMALL_STATE(3342)] = 175951, - [SMALL_STATE(3343)] = 176000, - [SMALL_STATE(3344)] = 176093, - [SMALL_STATE(3345)] = 176186, - [SMALL_STATE(3346)] = 176279, - [SMALL_STATE(3347)] = 176326, - [SMALL_STATE(3348)] = 176373, - [SMALL_STATE(3349)] = 176424, - [SMALL_STATE(3350)] = 176491, - [SMALL_STATE(3351)] = 176558, - [SMALL_STATE(3352)] = 176611, - [SMALL_STATE(3353)] = 176658, - [SMALL_STATE(3354)] = 176707, - [SMALL_STATE(3355)] = 176754, - [SMALL_STATE(3356)] = 176847, - [SMALL_STATE(3357)] = 176940, - [SMALL_STATE(3358)] = 176987, - [SMALL_STATE(3359)] = 177036, - [SMALL_STATE(3360)] = 177105, - [SMALL_STATE(3361)] = 177152, - [SMALL_STATE(3362)] = 177199, - [SMALL_STATE(3363)] = 177272, - [SMALL_STATE(3364)] = 177325, - [SMALL_STATE(3365)] = 177378, - [SMALL_STATE(3366)] = 177425, - [SMALL_STATE(3367)] = 177472, - [SMALL_STATE(3368)] = 177539, - [SMALL_STATE(3369)] = 177602, - [SMALL_STATE(3370)] = 177651, - [SMALL_STATE(3371)] = 177698, - [SMALL_STATE(3372)] = 177745, - [SMALL_STATE(3373)] = 177792, - [SMALL_STATE(3374)] = 177839, - [SMALL_STATE(3375)] = 177886, - [SMALL_STATE(3376)] = 177933, - [SMALL_STATE(3377)] = 177986, - [SMALL_STATE(3378)] = 178079, - [SMALL_STATE(3379)] = 178172, - [SMALL_STATE(3380)] = 178225, - [SMALL_STATE(3381)] = 178274, - [SMALL_STATE(3382)] = 178321, - [SMALL_STATE(3383)] = 178368, - [SMALL_STATE(3384)] = 178415, - [SMALL_STATE(3385)] = 178462, - [SMALL_STATE(3386)] = 178533, - [SMALL_STATE(3387)] = 178580, - [SMALL_STATE(3388)] = 178633, - [SMALL_STATE(3389)] = 178684, - [SMALL_STATE(3390)] = 178737, - [SMALL_STATE(3391)] = 178784, - [SMALL_STATE(3392)] = 178831, - [SMALL_STATE(3393)] = 178884, - [SMALL_STATE(3394)] = 178931, - [SMALL_STATE(3395)] = 178978, - [SMALL_STATE(3396)] = 179027, - [SMALL_STATE(3397)] = 179074, - [SMALL_STATE(3398)] = 179121, - [SMALL_STATE(3399)] = 179214, - [SMALL_STATE(3400)] = 179307, - [SMALL_STATE(3401)] = 179354, - [SMALL_STATE(3402)] = 179401, - [SMALL_STATE(3403)] = 179454, - [SMALL_STATE(3404)] = 179501, - [SMALL_STATE(3405)] = 179548, - [SMALL_STATE(3406)] = 179595, - [SMALL_STATE(3407)] = 179650, - [SMALL_STATE(3408)] = 179697, - [SMALL_STATE(3409)] = 179790, - [SMALL_STATE(3410)] = 179839, - [SMALL_STATE(3411)] = 179932, - [SMALL_STATE(3412)] = 179979, - [SMALL_STATE(3413)] = 180026, - [SMALL_STATE(3414)] = 180073, - [SMALL_STATE(3415)] = 180120, - [SMALL_STATE(3416)] = 180167, - [SMALL_STATE(3417)] = 180220, - [SMALL_STATE(3418)] = 180269, - [SMALL_STATE(3419)] = 180316, - [SMALL_STATE(3420)] = 180363, - [SMALL_STATE(3421)] = 180456, - [SMALL_STATE(3422)] = 180503, - [SMALL_STATE(3423)] = 180552, - [SMALL_STATE(3424)] = 180599, - [SMALL_STATE(3425)] = 180646, - [SMALL_STATE(3426)] = 180699, - [SMALL_STATE(3427)] = 180746, - [SMALL_STATE(3428)] = 180793, - [SMALL_STATE(3429)] = 180840, - [SMALL_STATE(3430)] = 180893, - [SMALL_STATE(3431)] = 180940, - [SMALL_STATE(3432)] = 181007, - [SMALL_STATE(3433)] = 181058, - [SMALL_STATE(3434)] = 181111, - [SMALL_STATE(3435)] = 181162, - [SMALL_STATE(3436)] = 181211, - [SMALL_STATE(3437)] = 181258, - [SMALL_STATE(3438)] = 181309, - [SMALL_STATE(3439)] = 181362, - [SMALL_STATE(3440)] = 181409, - [SMALL_STATE(3441)] = 181456, - [SMALL_STATE(3442)] = 181549, - [SMALL_STATE(3443)] = 181596, - [SMALL_STATE(3444)] = 181643, - [SMALL_STATE(3445)] = 181696, - [SMALL_STATE(3446)] = 181743, - [SMALL_STATE(3447)] = 181796, - [SMALL_STATE(3448)] = 181845, - [SMALL_STATE(3449)] = 181912, - [SMALL_STATE(3450)] = 181959, - [SMALL_STATE(3451)] = 182006, - [SMALL_STATE(3452)] = 182053, - [SMALL_STATE(3453)] = 182102, - [SMALL_STATE(3454)] = 182195, - [SMALL_STATE(3455)] = 182242, - [SMALL_STATE(3456)] = 182289, - [SMALL_STATE(3457)] = 182338, - [SMALL_STATE(3458)] = 182431, - [SMALL_STATE(3459)] = 182478, - [SMALL_STATE(3460)] = 182525, - [SMALL_STATE(3461)] = 182578, - [SMALL_STATE(3462)] = 182625, - [SMALL_STATE(3463)] = 182672, - [SMALL_STATE(3464)] = 182721, - [SMALL_STATE(3465)] = 182768, - [SMALL_STATE(3466)] = 182821, - [SMALL_STATE(3467)] = 182870, - [SMALL_STATE(3468)] = 182917, - [SMALL_STATE(3469)] = 183010, - [SMALL_STATE(3470)] = 183065, - [SMALL_STATE(3471)] = 183112, - [SMALL_STATE(3472)] = 183165, - [SMALL_STATE(3473)] = 183218, - [SMALL_STATE(3474)] = 183271, - [SMALL_STATE(3475)] = 183318, - [SMALL_STATE(3476)] = 183371, - [SMALL_STATE(3477)] = 183438, - [SMALL_STATE(3478)] = 183485, - [SMALL_STATE(3479)] = 183532, - [SMALL_STATE(3480)] = 183579, - [SMALL_STATE(3481)] = 183626, - [SMALL_STATE(3482)] = 183673, - [SMALL_STATE(3483)] = 183722, - [SMALL_STATE(3484)] = 183769, - [SMALL_STATE(3485)] = 183816, - [SMALL_STATE(3486)] = 183863, - [SMALL_STATE(3487)] = 183956, - [SMALL_STATE(3488)] = 184003, - [SMALL_STATE(3489)] = 184050, - [SMALL_STATE(3490)] = 184097, - [SMALL_STATE(3491)] = 184144, - [SMALL_STATE(3492)] = 184195, - [SMALL_STATE(3493)] = 184288, - [SMALL_STATE(3494)] = 184345, - [SMALL_STATE(3495)] = 184392, - [SMALL_STATE(3496)] = 184445, - [SMALL_STATE(3497)] = 184492, - [SMALL_STATE(3498)] = 184539, - [SMALL_STATE(3499)] = 184632, - [SMALL_STATE(3500)] = 184679, - [SMALL_STATE(3501)] = 184732, - [SMALL_STATE(3502)] = 184779, - [SMALL_STATE(3503)] = 184826, - [SMALL_STATE(3504)] = 184873, - [SMALL_STATE(3505)] = 184920, - [SMALL_STATE(3506)] = 184973, - [SMALL_STATE(3507)] = 185020, - [SMALL_STATE(3508)] = 185067, - [SMALL_STATE(3509)] = 185160, - [SMALL_STATE(3510)] = 185217, - [SMALL_STATE(3511)] = 185284, - [SMALL_STATE(3512)] = 185351, - [SMALL_STATE(3513)] = 185404, - [SMALL_STATE(3514)] = 185457, - [SMALL_STATE(3515)] = 185504, - [SMALL_STATE(3516)] = 185553, - [SMALL_STATE(3517)] = 185602, - [SMALL_STATE(3518)] = 185655, - [SMALL_STATE(3519)] = 185702, - [SMALL_STATE(3520)] = 185749, - [SMALL_STATE(3521)] = 185802, - [SMALL_STATE(3522)] = 185895, - [SMALL_STATE(3523)] = 185942, - [SMALL_STATE(3524)] = 186007, - [SMALL_STATE(3525)] = 186056, - [SMALL_STATE(3526)] = 186149, - [SMALL_STATE(3527)] = 186202, - [SMALL_STATE(3528)] = 186255, - [SMALL_STATE(3529)] = 186302, - [SMALL_STATE(3530)] = 186355, - [SMALL_STATE(3531)] = 186448, - [SMALL_STATE(3532)] = 186501, - [SMALL_STATE(3533)] = 186554, - [SMALL_STATE(3534)] = 186605, - [SMALL_STATE(3535)] = 186658, - [SMALL_STATE(3536)] = 186707, - [SMALL_STATE(3537)] = 186754, - [SMALL_STATE(3538)] = 186805, - [SMALL_STATE(3539)] = 186898, - [SMALL_STATE(3540)] = 186953, - [SMALL_STATE(3541)] = 187000, - [SMALL_STATE(3542)] = 187049, - [SMALL_STATE(3543)] = 187142, - [SMALL_STATE(3544)] = 187207, - [SMALL_STATE(3545)] = 187300, - [SMALL_STATE(3546)] = 187353, - [SMALL_STATE(3547)] = 187405, - [SMALL_STATE(3548)] = 187457, - [SMALL_STATE(3549)] = 187509, - [SMALL_STATE(3550)] = 187557, - [SMALL_STATE(3551)] = 187609, - [SMALL_STATE(3552)] = 187659, - [SMALL_STATE(3553)] = 187711, - [SMALL_STATE(3554)] = 187763, - [SMALL_STATE(3555)] = 187853, - [SMALL_STATE(3556)] = 187917, - [SMALL_STATE(3557)] = 187965, - [SMALL_STATE(3558)] = 188017, - [SMALL_STATE(3559)] = 188069, - [SMALL_STATE(3560)] = 188117, - [SMALL_STATE(3561)] = 188165, - [SMALL_STATE(3562)] = 188217, - [SMALL_STATE(3563)] = 188269, - [SMALL_STATE(3564)] = 188319, - [SMALL_STATE(3565)] = 188371, - [SMALL_STATE(3566)] = 188421, - [SMALL_STATE(3567)] = 188473, - [SMALL_STATE(3568)] = 188563, - [SMALL_STATE(3569)] = 188615, - [SMALL_STATE(3570)] = 188667, - [SMALL_STATE(3571)] = 188733, - [SMALL_STATE(3572)] = 188801, - [SMALL_STATE(3573)] = 188867, - [SMALL_STATE(3574)] = 188935, - [SMALL_STATE(3575)] = 188985, - [SMALL_STATE(3576)] = 189033, - [SMALL_STATE(3577)] = 189099, - [SMALL_STATE(3578)] = 189151, - [SMALL_STATE(3579)] = 189199, - [SMALL_STATE(3580)] = 189267, - [SMALL_STATE(3581)] = 189331, - [SMALL_STATE(3582)] = 189395, - [SMALL_STATE(3583)] = 189463, - [SMALL_STATE(3584)] = 189515, - [SMALL_STATE(3585)] = 189579, - [SMALL_STATE(3586)] = 189631, - [SMALL_STATE(3587)] = 189679, - [SMALL_STATE(3588)] = 189731, - [SMALL_STATE(3589)] = 189783, - [SMALL_STATE(3590)] = 189835, - [SMALL_STATE(3591)] = 189899, - [SMALL_STATE(3592)] = 189947, - [SMALL_STATE(3593)] = 189999, - [SMALL_STATE(3594)] = 190053, - [SMALL_STATE(3595)] = 190101, - [SMALL_STATE(3596)] = 190191, - [SMALL_STATE(3597)] = 190241, - [SMALL_STATE(3598)] = 190293, - [SMALL_STATE(3599)] = 190383, - [SMALL_STATE(3600)] = 190456, - [SMALL_STATE(3601)] = 190515, - [SMALL_STATE(3602)] = 190574, - [SMALL_STATE(3603)] = 190625, - [SMALL_STATE(3604)] = 190672, - [SMALL_STATE(3605)] = 190729, - [SMALL_STATE(3606)] = 190776, - [SMALL_STATE(3607)] = 190827, - [SMALL_STATE(3608)] = 190878, - [SMALL_STATE(3609)] = 190929, - [SMALL_STATE(3610)] = 190986, - [SMALL_STATE(3611)] = 191043, - [SMALL_STATE(3612)] = 191100, - [SMALL_STATE(3613)] = 191149, - [SMALL_STATE(3614)] = 191220, - [SMALL_STATE(3615)] = 191291, - [SMALL_STATE(3616)] = 191364, - [SMALL_STATE(3617)] = 191411, - [SMALL_STATE(3618)] = 191468, - [SMALL_STATE(3619)] = 191525, - [SMALL_STATE(3620)] = 191598, - [SMALL_STATE(3621)] = 191655, - [SMALL_STATE(3622)] = 191714, - [SMALL_STATE(3623)] = 191765, - [SMALL_STATE(3624)] = 191838, - [SMALL_STATE(3625)] = 191907, - [SMALL_STATE(3626)] = 191980, - [SMALL_STATE(3627)] = 192041, - [SMALL_STATE(3628)] = 192092, - [SMALL_STATE(3629)] = 192165, - [SMALL_STATE(3630)] = 192224, - [SMALL_STATE(3631)] = 192283, - [SMALL_STATE(3632)] = 192346, - [SMALL_STATE(3633)] = 192407, - [SMALL_STATE(3634)] = 192478, - [SMALL_STATE(3635)] = 192551, - [SMALL_STATE(3636)] = 192620, - [SMALL_STATE(3637)] = 192689, - [SMALL_STATE(3638)] = 192762, - [SMALL_STATE(3639)] = 192835, - [SMALL_STATE(3640)] = 192906, - [SMALL_STATE(3641)] = 192969, - [SMALL_STATE(3642)] = 193028, - [SMALL_STATE(3643)] = 193089, - [SMALL_STATE(3644)] = 193152, - [SMALL_STATE(3645)] = 193211, - [SMALL_STATE(3646)] = 193284, - [SMALL_STATE(3647)] = 193335, - [SMALL_STATE(3648)] = 193396, - [SMALL_STATE(3649)] = 193455, - [SMALL_STATE(3650)] = 193524, - [SMALL_STATE(3651)] = 193593, - [SMALL_STATE(3652)] = 193666, - [SMALL_STATE(3653)] = 193737, - [SMALL_STATE(3654)] = 193796, - [SMALL_STATE(3655)] = 193847, - [SMALL_STATE(3656)] = 193920, - [SMALL_STATE(3657)] = 193983, - [SMALL_STATE(3658)] = 194056, - [SMALL_STATE(3659)] = 194125, - [SMALL_STATE(3660)] = 194198, - [SMALL_STATE(3661)] = 194249, - [SMALL_STATE(3662)] = 194320, - [SMALL_STATE(3663)] = 194383, - [SMALL_STATE(3664)] = 194456, - [SMALL_STATE(3665)] = 194525, - [SMALL_STATE(3666)] = 194596, - [SMALL_STATE(3667)] = 194665, - [SMALL_STATE(3668)] = 194738, - [SMALL_STATE(3669)] = 194807, - [SMALL_STATE(3670)] = 194868, - [SMALL_STATE(3671)] = 194939, - [SMALL_STATE(3672)] = 194998, - [SMALL_STATE(3673)] = 195059, - [SMALL_STATE(3674)] = 195118, - [SMALL_STATE(3675)] = 195189, - [SMALL_STATE(3676)] = 195262, - [SMALL_STATE(3677)] = 195331, - [SMALL_STATE(3678)] = 195404, - [SMALL_STATE(3679)] = 195463, - [SMALL_STATE(3680)] = 195534, - [SMALL_STATE(3681)] = 195603, - [SMALL_STATE(3682)] = 195660, - [SMALL_STATE(3683)] = 195731, - [SMALL_STATE(3684)] = 195788, - [SMALL_STATE(3685)] = 195861, - [SMALL_STATE(3686)] = 195920, - [SMALL_STATE(3687)] = 195993, - [SMALL_STATE(3688)] = 196054, - [SMALL_STATE(3689)] = 196117, - [SMALL_STATE(3690)] = 196171, - [SMALL_STATE(3691)] = 196225, - [SMALL_STATE(3692)] = 196279, - [SMALL_STATE(3693)] = 196333, - [SMALL_STATE(3694)] = 196387, - [SMALL_STATE(3695)] = 196451, - [SMALL_STATE(3696)] = 196501, - [SMALL_STATE(3697)] = 196555, - [SMALL_STATE(3698)] = 196619, - [SMALL_STATE(3699)] = 196673, - [SMALL_STATE(3700)] = 196737, - [SMALL_STATE(3701)] = 196791, - [SMALL_STATE(3702)] = 196845, - [SMALL_STATE(3703)] = 196909, - [SMALL_STATE(3704)] = 196973, - [SMALL_STATE(3705)] = 197043, - [SMALL_STATE(3706)] = 197107, - [SMALL_STATE(3707)] = 197161, - [SMALL_STATE(3708)] = 197215, - [SMALL_STATE(3709)] = 197279, - [SMALL_STATE(3710)] = 197343, - [SMALL_STATE(3711)] = 197407, - [SMALL_STATE(3712)] = 197471, - [SMALL_STATE(3713)] = 197525, - [SMALL_STATE(3714)] = 197579, - [SMALL_STATE(3715)] = 197633, - [SMALL_STATE(3716)] = 197687, - [SMALL_STATE(3717)] = 197741, - [SMALL_STATE(3718)] = 197805, - [SMALL_STATE(3719)] = 197860, - [SMALL_STATE(3720)] = 197915, - [SMALL_STATE(3721)] = 197964, - [SMALL_STATE(3722)] = 198007, - [SMALL_STATE(3723)] = 198068, - [SMALL_STATE(3724)] = 198133, - [SMALL_STATE(3725)] = 198182, - [SMALL_STATE(3726)] = 198245, - [SMALL_STATE(3727)] = 198316, - [SMALL_STATE(3728)] = 198370, - [SMALL_STATE(3729)] = 198424, - [SMALL_STATE(3730)] = 198478, - [SMALL_STATE(3731)] = 198532, - [SMALL_STATE(3732)] = 198586, - [SMALL_STATE(3733)] = 198640, - [SMALL_STATE(3734)] = 198694, - [SMALL_STATE(3735)] = 198748, - [SMALL_STATE(3736)] = 198802, - [SMALL_STATE(3737)] = 198856, - [SMALL_STATE(3738)] = 198910, - [SMALL_STATE(3739)] = 198964, - [SMALL_STATE(3740)] = 199020, - [SMALL_STATE(3741)] = 199082, - [SMALL_STATE(3742)] = 199142, - [SMALL_STATE(3743)] = 199200, - [SMALL_STATE(3744)] = 199254, - [SMALL_STATE(3745)] = 199306, - [SMALL_STATE(3746)] = 199361, - [SMALL_STATE(3747)] = 199440, - [SMALL_STATE(3748)] = 199519, - [SMALL_STATE(3749)] = 199586, - [SMALL_STATE(3750)] = 199641, - [SMALL_STATE(3751)] = 199682, - [SMALL_STATE(3752)] = 199735, - [SMALL_STATE(3753)] = 199776, - [SMALL_STATE(3754)] = 199831, - [SMALL_STATE(3755)] = 199872, - [SMALL_STATE(3756)] = 199951, - [SMALL_STATE(3757)] = 200006, - [SMALL_STATE(3758)] = 200085, - [SMALL_STATE(3759)] = 200126, - [SMALL_STATE(3760)] = 200205, - [SMALL_STATE(3761)] = 200246, - [SMALL_STATE(3762)] = 200325, - [SMALL_STATE(3763)] = 200404, - [SMALL_STATE(3764)] = 200468, - [SMALL_STATE(3765)] = 200514, - [SMALL_STATE(3766)] = 200567, - [SMALL_STATE(3767)] = 200606, - [SMALL_STATE(3768)] = 200645, - [SMALL_STATE(3769)] = 200684, - [SMALL_STATE(3770)] = 200723, - [SMALL_STATE(3771)] = 200778, - [SMALL_STATE(3772)] = 200817, - [SMALL_STATE(3773)] = 200856, - [SMALL_STATE(3774)] = 200913, - [SMALL_STATE(3775)] = 200956, - [SMALL_STATE(3776)] = 200995, - [SMALL_STATE(3777)] = 201034, - [SMALL_STATE(3778)] = 201075, - [SMALL_STATE(3779)] = 201114, - [SMALL_STATE(3780)] = 201153, - [SMALL_STATE(3781)] = 201192, - [SMALL_STATE(3782)] = 201231, - [SMALL_STATE(3783)] = 201282, - [SMALL_STATE(3784)] = 201321, - [SMALL_STATE(3785)] = 201376, - [SMALL_STATE(3786)] = 201433, - [SMALL_STATE(3787)] = 201490, - [SMALL_STATE(3788)] = 201529, - [SMALL_STATE(3789)] = 201568, - [SMALL_STATE(3790)] = 201607, - [SMALL_STATE(3791)] = 201660, - [SMALL_STATE(3792)] = 201713, - [SMALL_STATE(3793)] = 201752, - [SMALL_STATE(3794)] = 201791, - [SMALL_STATE(3795)] = 201832, - [SMALL_STATE(3796)] = 201871, - [SMALL_STATE(3797)] = 201912, - [SMALL_STATE(3798)] = 201951, - [SMALL_STATE(3799)] = 201999, - [SMALL_STATE(3800)] = 202051, - [SMALL_STATE(3801)] = 202099, - [SMALL_STATE(3802)] = 202147, - [SMALL_STATE(3803)] = 202195, - [SMALL_STATE(3804)] = 202243, - [SMALL_STATE(3805)] = 202291, - [SMALL_STATE(3806)] = 202339, - [SMALL_STATE(3807)] = 202387, - [SMALL_STATE(3808)] = 202435, - [SMALL_STATE(3809)] = 202483, - [SMALL_STATE(3810)] = 202537, - [SMALL_STATE(3811)] = 202585, - [SMALL_STATE(3812)] = 202633, - [SMALL_STATE(3813)] = 202681, - [SMALL_STATE(3814)] = 202729, - [SMALL_STATE(3815)] = 202777, - [SMALL_STATE(3816)] = 202825, - [SMALL_STATE(3817)] = 202879, - [SMALL_STATE(3818)] = 202928, - [SMALL_STATE(3819)] = 202977, - [SMALL_STATE(3820)] = 203026, - [SMALL_STATE(3821)] = 203083, - [SMALL_STATE(3822)] = 203132, - [SMALL_STATE(3823)] = 203169, - [SMALL_STATE(3824)] = 203218, - [SMALL_STATE(3825)] = 203267, - [SMALL_STATE(3826)] = 203305, - [SMALL_STATE(3827)] = 203359, - [SMALL_STATE(3828)] = 203409, - [SMALL_STATE(3829)] = 203451, - [SMALL_STATE(3830)] = 203501, - [SMALL_STATE(3831)] = 203547, - [SMALL_STATE(3832)] = 203601, - [SMALL_STATE(3833)] = 203655, - [SMALL_STATE(3834)] = 203705, - [SMALL_STATE(3835)] = 203755, - [SMALL_STATE(3836)] = 203805, - [SMALL_STATE(3837)] = 203848, - [SMALL_STATE(3838)] = 203891, - [SMALL_STATE(3839)] = 203934, - [SMALL_STATE(3840)] = 203977, - [SMALL_STATE(3841)] = 204020, - [SMALL_STATE(3842)] = 204063, - [SMALL_STATE(3843)] = 204106, - [SMALL_STATE(3844)] = 204149, - [SMALL_STATE(3845)] = 204192, - [SMALL_STATE(3846)] = 204235, - [SMALL_STATE(3847)] = 204278, - [SMALL_STATE(3848)] = 204321, - [SMALL_STATE(3849)] = 204364, - [SMALL_STATE(3850)] = 204407, - [SMALL_STATE(3851)] = 204452, - [SMALL_STATE(3852)] = 204495, - [SMALL_STATE(3853)] = 204540, - [SMALL_STATE(3854)] = 204585, - [SMALL_STATE(3855)] = 204628, - [SMALL_STATE(3856)] = 204671, - [SMALL_STATE(3857)] = 204714, - [SMALL_STATE(3858)] = 204757, - [SMALL_STATE(3859)] = 204800, - [SMALL_STATE(3860)] = 204843, - [SMALL_STATE(3861)] = 204886, - [SMALL_STATE(3862)] = 204929, - [SMALL_STATE(3863)] = 204972, - [SMALL_STATE(3864)] = 205015, - [SMALL_STATE(3865)] = 205049, - [SMALL_STATE(3866)] = 205079, - [SMALL_STATE(3867)] = 205135, - [SMALL_STATE(3868)] = 205191, - [SMALL_STATE(3869)] = 205247, - [SMALL_STATE(3870)] = 205303, - [SMALL_STATE(3871)] = 205333, - [SMALL_STATE(3872)] = 205357, - [SMALL_STATE(3873)] = 205383, - [SMALL_STATE(3874)] = 205407, - [SMALL_STATE(3875)] = 205428, - [SMALL_STATE(3876)] = 205449, - [SMALL_STATE(3877)] = 205470, - [SMALL_STATE(3878)] = 205491, - [SMALL_STATE(3879)] = 205512, - [SMALL_STATE(3880)] = 205533, - [SMALL_STATE(3881)] = 205554, - [SMALL_STATE(3882)] = 205575, - [SMALL_STATE(3883)] = 205596, - [SMALL_STATE(3884)] = 205617, - [SMALL_STATE(3885)] = 205644, - [SMALL_STATE(3886)] = 205665, - [SMALL_STATE(3887)] = 205686, - [SMALL_STATE(3888)] = 205707, - [SMALL_STATE(3889)] = 205728, - [SMALL_STATE(3890)] = 205749, - [SMALL_STATE(3891)] = 205770, - [SMALL_STATE(3892)] = 205791, - [SMALL_STATE(3893)] = 205812, - [SMALL_STATE(3894)] = 205833, - [SMALL_STATE(3895)] = 205854, - [SMALL_STATE(3896)] = 205896, - [SMALL_STATE(3897)] = 205918, - [SMALL_STATE(3898)] = 205960, - [SMALL_STATE(3899)] = 205982, - [SMALL_STATE(3900)] = 206024, - [SMALL_STATE(3901)] = 206046, - [SMALL_STATE(3902)] = 206074, - [SMALL_STATE(3903)] = 206116, - [SMALL_STATE(3904)] = 206138, - [SMALL_STATE(3905)] = 206180, - [SMALL_STATE(3906)] = 206210, - [SMALL_STATE(3907)] = 206252, - [SMALL_STATE(3908)] = 206274, - [SMALL_STATE(3909)] = 206308, - [SMALL_STATE(3910)] = 206329, - [SMALL_STATE(3911)] = 206350, - [SMALL_STATE(3912)] = 206371, - [SMALL_STATE(3913)] = 206392, - [SMALL_STATE(3914)] = 206413, - [SMALL_STATE(3915)] = 206438, - [SMALL_STATE(3916)] = 206473, - [SMALL_STATE(3917)] = 206494, - [SMALL_STATE(3918)] = 206515, - [SMALL_STATE(3919)] = 206550, - [SMALL_STATE(3920)] = 206585, - [SMALL_STATE(3921)] = 206608, - [SMALL_STATE(3922)] = 206649, - [SMALL_STATE(3923)] = 206684, - [SMALL_STATE(3924)] = 206719, - [SMALL_STATE(3925)] = 206754, - [SMALL_STATE(3926)] = 206789, - [SMALL_STATE(3927)] = 206810, - [SMALL_STATE(3928)] = 206831, - [SMALL_STATE(3929)] = 206852, - [SMALL_STATE(3930)] = 206873, - [SMALL_STATE(3931)] = 206894, - [SMALL_STATE(3932)] = 206915, - [SMALL_STATE(3933)] = 206936, - [SMALL_STATE(3934)] = 206971, - [SMALL_STATE(3935)] = 206992, - [SMALL_STATE(3936)] = 207017, - [SMALL_STATE(3937)] = 207038, - [SMALL_STATE(3938)] = 207061, - [SMALL_STATE(3939)] = 207084, - [SMALL_STATE(3940)] = 207125, - [SMALL_STATE(3941)] = 207160, - [SMALL_STATE(3942)] = 207181, - [SMALL_STATE(3943)] = 207202, - [SMALL_STATE(3944)] = 207223, - [SMALL_STATE(3945)] = 207244, - [SMALL_STATE(3946)] = 207279, - [SMALL_STATE(3947)] = 207300, - [SMALL_STATE(3948)] = 207326, - [SMALL_STATE(3949)] = 207354, - [SMALL_STATE(3950)] = 207382, - [SMALL_STATE(3951)] = 207418, - [SMALL_STATE(3952)] = 207450, - [SMALL_STATE(3953)] = 207478, - [SMALL_STATE(3954)] = 207516, - [SMALL_STATE(3955)] = 207546, - [SMALL_STATE(3956)] = 207584, - [SMALL_STATE(3957)] = 207622, - [SMALL_STATE(3958)] = 207650, - [SMALL_STATE(3959)] = 207686, - [SMALL_STATE(3960)] = 207722, - [SMALL_STATE(3961)] = 207760, - [SMALL_STATE(3962)] = 207788, - [SMALL_STATE(3963)] = 207820, - [SMALL_STATE(3964)] = 207856, - [SMALL_STATE(3965)] = 207882, - [SMALL_STATE(3966)] = 207918, - [SMALL_STATE(3967)] = 207950, - [SMALL_STATE(3968)] = 207978, - [SMALL_STATE(3969)] = 208006, - [SMALL_STATE(3970)] = 208034, - [SMALL_STATE(3971)] = 208066, - [SMALL_STATE(3972)] = 208094, - [SMALL_STATE(3973)] = 208126, - [SMALL_STATE(3974)] = 208158, - [SMALL_STATE(3975)] = 208196, - [SMALL_STATE(3976)] = 208228, - [SMALL_STATE(3977)] = 208260, - [SMALL_STATE(3978)] = 208298, - [SMALL_STATE(3979)] = 208326, - [SMALL_STATE(3980)] = 208362, - [SMALL_STATE(3981)] = 208390, - [SMALL_STATE(3982)] = 208413, - [SMALL_STATE(3983)] = 208432, - [SMALL_STATE(3984)] = 208451, - [SMALL_STATE(3985)] = 208470, - [SMALL_STATE(3986)] = 208489, - [SMALL_STATE(3987)] = 208508, - [SMALL_STATE(3988)] = 208527, - [SMALL_STATE(3989)] = 208546, - [SMALL_STATE(3990)] = 208565, - [SMALL_STATE(3991)] = 208584, - [SMALL_STATE(3992)] = 208609, - [SMALL_STATE(3993)] = 208634, - [SMALL_STATE(3994)] = 208653, - [SMALL_STATE(3995)] = 208672, - [SMALL_STATE(3996)] = 208689, - [SMALL_STATE(3997)] = 208708, - [SMALL_STATE(3998)] = 208733, - [SMALL_STATE(3999)] = 208752, - [SMALL_STATE(4000)] = 208769, - [SMALL_STATE(4001)] = 208792, - [SMALL_STATE(4002)] = 208817, - [SMALL_STATE(4003)] = 208836, - [SMALL_STATE(4004)] = 208855, - [SMALL_STATE(4005)] = 208876, - [SMALL_STATE(4006)] = 208895, - [SMALL_STATE(4007)] = 208914, - [SMALL_STATE(4008)] = 208933, - [SMALL_STATE(4009)] = 208952, - [SMALL_STATE(4010)] = 208971, - [SMALL_STATE(4011)] = 208992, - [SMALL_STATE(4012)] = 209017, - [SMALL_STATE(4013)] = 209042, - [SMALL_STATE(4014)] = 209061, - [SMALL_STATE(4015)] = 209080, - [SMALL_STATE(4016)] = 209101, - [SMALL_STATE(4017)] = 209120, - [SMALL_STATE(4018)] = 209147, - [SMALL_STATE(4019)] = 209166, - [SMALL_STATE(4020)] = 209185, - [SMALL_STATE(4021)] = 209204, - [SMALL_STATE(4022)] = 209223, - [SMALL_STATE(4023)] = 209242, - [SMALL_STATE(4024)] = 209261, - [SMALL_STATE(4025)] = 209280, - [SMALL_STATE(4026)] = 209299, - [SMALL_STATE(4027)] = 209331, - [SMALL_STATE(4028)] = 209363, - [SMALL_STATE(4029)] = 209395, - [SMALL_STATE(4030)] = 209421, - [SMALL_STATE(4031)] = 209441, - [SMALL_STATE(4032)] = 209475, - [SMALL_STATE(4033)] = 209497, - [SMALL_STATE(4034)] = 209523, - [SMALL_STATE(4035)] = 209557, - [SMALL_STATE(4036)] = 209587, - [SMALL_STATE(4037)] = 209609, - [SMALL_STATE(4038)] = 209629, - [SMALL_STATE(4039)] = 209655, - [SMALL_STATE(4040)] = 209687, - [SMALL_STATE(4041)] = 209721, - [SMALL_STATE(4042)] = 209741, - [SMALL_STATE(4043)] = 209775, - [SMALL_STATE(4044)] = 209797, - [SMALL_STATE(4045)] = 209817, - [SMALL_STATE(4046)] = 209845, - [SMALL_STATE(4047)] = 209879, - [SMALL_STATE(4048)] = 209905, - [SMALL_STATE(4049)] = 209931, - [SMALL_STATE(4050)] = 209951, - [SMALL_STATE(4051)] = 209971, - [SMALL_STATE(4052)] = 209989, - [SMALL_STATE(4053)] = 210023, - [SMALL_STATE(4054)] = 210049, - [SMALL_STATE(4055)] = 210083, - [SMALL_STATE(4056)] = 210117, - [SMALL_STATE(4057)] = 210149, - [SMALL_STATE(4058)] = 210173, - [SMALL_STATE(4059)] = 210195, - [SMALL_STATE(4060)] = 210221, - [SMALL_STATE(4061)] = 210247, - [SMALL_STATE(4062)] = 210273, - [SMALL_STATE(4063)] = 210297, - [SMALL_STATE(4064)] = 210317, - [SMALL_STATE(4065)] = 210343, - [SMALL_STATE(4066)] = 210369, - [SMALL_STATE(4067)] = 210395, - [SMALL_STATE(4068)] = 210429, - [SMALL_STATE(4069)] = 210455, - [SMALL_STATE(4070)] = 210489, - [SMALL_STATE(4071)] = 210509, - [SMALL_STATE(4072)] = 210543, - [SMALL_STATE(4073)] = 210577, - [SMALL_STATE(4074)] = 210611, - [SMALL_STATE(4075)] = 210635, - [SMALL_STATE(4076)] = 210667, - [SMALL_STATE(4077)] = 210701, - [SMALL_STATE(4078)] = 210727, - [SMALL_STATE(4079)] = 210746, - [SMALL_STATE(4080)] = 210761, - [SMALL_STATE(4081)] = 210778, - [SMALL_STATE(4082)] = 210803, - [SMALL_STATE(4083)] = 210818, - [SMALL_STATE(4084)] = 210847, - [SMALL_STATE(4085)] = 210876, - [SMALL_STATE(4086)] = 210901, - [SMALL_STATE(4087)] = 210930, - [SMALL_STATE(4088)] = 210953, - [SMALL_STATE(4089)] = 210978, - [SMALL_STATE(4090)] = 211007, - [SMALL_STATE(4091)] = 211036, - [SMALL_STATE(4092)] = 211065, - [SMALL_STATE(4093)] = 211094, - [SMALL_STATE(4094)] = 211119, + [SMALL_STATE(1811)] = 57608, + [SMALL_STATE(1812)] = 57730, + [SMALL_STATE(1813)] = 57852, + [SMALL_STATE(1814)] = 57974, + [SMALL_STATE(1815)] = 58096, + [SMALL_STATE(1816)] = 58218, + [SMALL_STATE(1817)] = 58340, + [SMALL_STATE(1818)] = 58462, + [SMALL_STATE(1819)] = 58584, + [SMALL_STATE(1820)] = 58706, + [SMALL_STATE(1821)] = 58828, + [SMALL_STATE(1822)] = 58950, + [SMALL_STATE(1823)] = 59072, + [SMALL_STATE(1824)] = 59194, + [SMALL_STATE(1825)] = 59316, + [SMALL_STATE(1826)] = 59438, + [SMALL_STATE(1827)] = 59560, + [SMALL_STATE(1828)] = 59682, + [SMALL_STATE(1829)] = 59804, + [SMALL_STATE(1830)] = 59926, + [SMALL_STATE(1831)] = 60048, + [SMALL_STATE(1832)] = 60170, + [SMALL_STATE(1833)] = 60292, + [SMALL_STATE(1834)] = 60414, + [SMALL_STATE(1835)] = 60536, + [SMALL_STATE(1836)] = 60658, + [SMALL_STATE(1837)] = 60780, + [SMALL_STATE(1838)] = 60902, + [SMALL_STATE(1839)] = 61024, + [SMALL_STATE(1840)] = 61146, + [SMALL_STATE(1841)] = 61268, + [SMALL_STATE(1842)] = 61390, + [SMALL_STATE(1843)] = 61512, + [SMALL_STATE(1844)] = 61634, + [SMALL_STATE(1845)] = 61756, + [SMALL_STATE(1846)] = 61878, + [SMALL_STATE(1847)] = 62000, + [SMALL_STATE(1848)] = 62074, + [SMALL_STATE(1849)] = 62196, + [SMALL_STATE(1850)] = 62318, + [SMALL_STATE(1851)] = 62440, + [SMALL_STATE(1852)] = 62562, + [SMALL_STATE(1853)] = 62684, + [SMALL_STATE(1854)] = 62806, + [SMALL_STATE(1855)] = 62880, + [SMALL_STATE(1856)] = 63002, + [SMALL_STATE(1857)] = 63124, + [SMALL_STATE(1858)] = 63246, + [SMALL_STATE(1859)] = 63368, + [SMALL_STATE(1860)] = 63490, + [SMALL_STATE(1861)] = 63612, + [SMALL_STATE(1862)] = 63734, + [SMALL_STATE(1863)] = 63856, + [SMALL_STATE(1864)] = 63978, + [SMALL_STATE(1865)] = 64100, + [SMALL_STATE(1866)] = 64176, + [SMALL_STATE(1867)] = 64252, + [SMALL_STATE(1868)] = 64374, + [SMALL_STATE(1869)] = 64496, + [SMALL_STATE(1870)] = 64618, + [SMALL_STATE(1871)] = 64740, + [SMALL_STATE(1872)] = 64862, + [SMALL_STATE(1873)] = 64984, + [SMALL_STATE(1874)] = 65106, + [SMALL_STATE(1875)] = 65176, + [SMALL_STATE(1876)] = 65298, + [SMALL_STATE(1877)] = 65420, + [SMALL_STATE(1878)] = 65496, + [SMALL_STATE(1879)] = 65618, + [SMALL_STATE(1880)] = 65740, + [SMALL_STATE(1881)] = 65862, + [SMALL_STATE(1882)] = 65984, + [SMALL_STATE(1883)] = 66106, + [SMALL_STATE(1884)] = 66228, + [SMALL_STATE(1885)] = 66350, + [SMALL_STATE(1886)] = 66472, + [SMALL_STATE(1887)] = 66594, + [SMALL_STATE(1888)] = 66716, + [SMALL_STATE(1889)] = 66838, + [SMALL_STATE(1890)] = 66908, + [SMALL_STATE(1891)] = 67030, + [SMALL_STATE(1892)] = 67152, + [SMALL_STATE(1893)] = 67274, + [SMALL_STATE(1894)] = 67344, + [SMALL_STATE(1895)] = 67466, + [SMALL_STATE(1896)] = 67588, + [SMALL_STATE(1897)] = 67710, + [SMALL_STATE(1898)] = 67790, + [SMALL_STATE(1899)] = 67912, + [SMALL_STATE(1900)] = 68034, + [SMALL_STATE(1901)] = 68156, + [SMALL_STATE(1902)] = 68278, + [SMALL_STATE(1903)] = 68400, + [SMALL_STATE(1904)] = 68522, + [SMALL_STATE(1905)] = 68644, + [SMALL_STATE(1906)] = 68766, + [SMALL_STATE(1907)] = 68888, + [SMALL_STATE(1908)] = 69010, + [SMALL_STATE(1909)] = 69132, + [SMALL_STATE(1910)] = 69254, + [SMALL_STATE(1911)] = 69376, + [SMALL_STATE(1912)] = 69498, + [SMALL_STATE(1913)] = 69620, + [SMALL_STATE(1914)] = 69696, + [SMALL_STATE(1915)] = 69818, + [SMALL_STATE(1916)] = 69940, + [SMALL_STATE(1917)] = 70062, + [SMALL_STATE(1918)] = 70184, + [SMALL_STATE(1919)] = 70306, + [SMALL_STATE(1920)] = 70378, + [SMALL_STATE(1921)] = 70500, + [SMALL_STATE(1922)] = 70622, + [SMALL_STATE(1923)] = 70744, + [SMALL_STATE(1924)] = 70866, + [SMALL_STATE(1925)] = 70938, + [SMALL_STATE(1926)] = 71012, + [SMALL_STATE(1927)] = 71134, + [SMALL_STATE(1928)] = 71206, + [SMALL_STATE(1929)] = 71328, + [SMALL_STATE(1930)] = 71450, + [SMALL_STATE(1931)] = 71572, + [SMALL_STATE(1932)] = 71648, + [SMALL_STATE(1933)] = 71720, + [SMALL_STATE(1934)] = 71842, + [SMALL_STATE(1935)] = 71964, + [SMALL_STATE(1936)] = 72086, + [SMALL_STATE(1937)] = 72208, + [SMALL_STATE(1938)] = 72330, + [SMALL_STATE(1939)] = 72452, + [SMALL_STATE(1940)] = 72574, + [SMALL_STATE(1941)] = 72646, + [SMALL_STATE(1942)] = 72768, + [SMALL_STATE(1943)] = 72890, + [SMALL_STATE(1944)] = 73012, + [SMALL_STATE(1945)] = 73134, + [SMALL_STATE(1946)] = 73256, + [SMALL_STATE(1947)] = 73378, + [SMALL_STATE(1948)] = 73500, + [SMALL_STATE(1949)] = 73622, + [SMALL_STATE(1950)] = 73744, + [SMALL_STATE(1951)] = 73866, + [SMALL_STATE(1952)] = 73988, + [SMALL_STATE(1953)] = 74110, + [SMALL_STATE(1954)] = 74232, + [SMALL_STATE(1955)] = 74354, + [SMALL_STATE(1956)] = 74476, + [SMALL_STATE(1957)] = 74598, + [SMALL_STATE(1958)] = 74672, + [SMALL_STATE(1959)] = 74794, + [SMALL_STATE(1960)] = 74916, + [SMALL_STATE(1961)] = 75038, + [SMALL_STATE(1962)] = 75160, + [SMALL_STATE(1963)] = 75282, + [SMALL_STATE(1964)] = 75404, + [SMALL_STATE(1965)] = 75526, + [SMALL_STATE(1966)] = 75648, + [SMALL_STATE(1967)] = 75770, + [SMALL_STATE(1968)] = 75892, + [SMALL_STATE(1969)] = 75968, + [SMALL_STATE(1970)] = 76090, + [SMALL_STATE(1971)] = 76212, + [SMALL_STATE(1972)] = 76334, + [SMALL_STATE(1973)] = 76456, + [SMALL_STATE(1974)] = 76578, + [SMALL_STATE(1975)] = 76700, + [SMALL_STATE(1976)] = 76822, + [SMALL_STATE(1977)] = 76944, + [SMALL_STATE(1978)] = 77020, + [SMALL_STATE(1979)] = 77142, + [SMALL_STATE(1980)] = 77212, + [SMALL_STATE(1981)] = 77334, + [SMALL_STATE(1982)] = 77456, + [SMALL_STATE(1983)] = 77578, + [SMALL_STATE(1984)] = 77700, + [SMALL_STATE(1985)] = 77822, + [SMALL_STATE(1986)] = 77944, + [SMALL_STATE(1987)] = 78066, + [SMALL_STATE(1988)] = 78188, + [SMALL_STATE(1989)] = 78256, + [SMALL_STATE(1990)] = 78378, + [SMALL_STATE(1991)] = 78500, + [SMALL_STATE(1992)] = 78576, + [SMALL_STATE(1993)] = 78698, + [SMALL_STATE(1994)] = 78820, + [SMALL_STATE(1995)] = 78942, + [SMALL_STATE(1996)] = 79064, + [SMALL_STATE(1997)] = 79186, + [SMALL_STATE(1998)] = 79308, + [SMALL_STATE(1999)] = 79430, + [SMALL_STATE(2000)] = 79552, + [SMALL_STATE(2001)] = 79674, + [SMALL_STATE(2002)] = 79750, + [SMALL_STATE(2003)] = 79820, + [SMALL_STATE(2004)] = 79942, + [SMALL_STATE(2005)] = 80018, + [SMALL_STATE(2006)] = 80140, + [SMALL_STATE(2007)] = 80210, + [SMALL_STATE(2008)] = 80332, + [SMALL_STATE(2009)] = 80454, + [SMALL_STATE(2010)] = 80576, + [SMALL_STATE(2011)] = 80698, + [SMALL_STATE(2012)] = 80820, + [SMALL_STATE(2013)] = 80942, + [SMALL_STATE(2014)] = 81064, + [SMALL_STATE(2015)] = 81134, + [SMALL_STATE(2016)] = 81256, + [SMALL_STATE(2017)] = 81378, + [SMALL_STATE(2018)] = 81448, + [SMALL_STATE(2019)] = 81570, + [SMALL_STATE(2020)] = 81692, + [SMALL_STATE(2021)] = 81761, + [SMALL_STATE(2022)] = 81880, + [SMALL_STATE(2023)] = 81949, + [SMALL_STATE(2024)] = 82022, + [SMALL_STATE(2025)] = 82091, + [SMALL_STATE(2026)] = 82154, + [SMALL_STATE(2027)] = 82227, + [SMALL_STATE(2028)] = 82296, + [SMALL_STATE(2029)] = 82365, + [SMALL_STATE(2030)] = 82428, + [SMALL_STATE(2031)] = 82495, + [SMALL_STATE(2032)] = 82562, + [SMALL_STATE(2033)] = 82631, + [SMALL_STATE(2034)] = 82700, + [SMALL_STATE(2035)] = 82775, + [SMALL_STATE(2036)] = 82842, + [SMALL_STATE(2037)] = 82911, + [SMALL_STATE(2038)] = 82980, + [SMALL_STATE(2039)] = 83047, + [SMALL_STATE(2040)] = 83122, + [SMALL_STATE(2041)] = 83189, + [SMALL_STATE(2042)] = 83258, + [SMALL_STATE(2043)] = 83327, + [SMALL_STATE(2044)] = 83408, + [SMALL_STATE(2045)] = 83483, + [SMALL_STATE(2046)] = 83550, + [SMALL_STATE(2047)] = 83617, + [SMALL_STATE(2048)] = 83686, + [SMALL_STATE(2049)] = 83753, + [SMALL_STATE(2050)] = 83826, + [SMALL_STATE(2051)] = 83893, + [SMALL_STATE(2052)] = 83962, + [SMALL_STATE(2053)] = 84033, + [SMALL_STATE(2054)] = 84110, + [SMALL_STATE(2055)] = 84185, + [SMALL_STATE(2056)] = 84248, + [SMALL_STATE(2057)] = 84319, + [SMALL_STATE(2058)] = 84390, + [SMALL_STATE(2059)] = 84457, + [SMALL_STATE(2060)] = 84520, + [SMALL_STATE(2061)] = 84597, + [SMALL_STATE(2062)] = 84666, + [SMALL_STATE(2063)] = 84735, + [SMALL_STATE(2064)] = 84798, + [SMALL_STATE(2065)] = 84867, + [SMALL_STATE(2066)] = 84936, + [SMALL_STATE(2067)] = 85005, + [SMALL_STATE(2068)] = 85074, + [SMALL_STATE(2069)] = 85137, + [SMALL_STATE(2070)] = 85212, + [SMALL_STATE(2071)] = 85275, + [SMALL_STATE(2072)] = 85354, + [SMALL_STATE(2073)] = 85473, + [SMALL_STATE(2074)] = 85542, + [SMALL_STATE(2075)] = 85617, + [SMALL_STATE(2076)] = 85692, + [SMALL_STATE(2077)] = 85758, + [SMALL_STATE(2078)] = 85828, + [SMALL_STATE(2079)] = 85896, + [SMALL_STATE(2080)] = 85968, + [SMALL_STATE(2081)] = 86036, + [SMALL_STATE(2082)] = 86108, + [SMALL_STATE(2083)] = 86180, + [SMALL_STATE(2084)] = 86250, + [SMALL_STATE(2085)] = 86320, + [SMALL_STATE(2086)] = 86388, + [SMALL_STATE(2087)] = 86458, + [SMALL_STATE(2088)] = 86532, + [SMALL_STATE(2089)] = 86598, + [SMALL_STATE(2090)] = 86670, + [SMALL_STATE(2091)] = 86740, + [SMALL_STATE(2092)] = 86808, + [SMALL_STATE(2093)] = 86876, + [SMALL_STATE(2094)] = 86944, + [SMALL_STATE(2095)] = 87012, + [SMALL_STATE(2096)] = 87082, + [SMALL_STATE(2097)] = 87150, + [SMALL_STATE(2098)] = 87218, + [SMALL_STATE(2099)] = 87286, + [SMALL_STATE(2100)] = 87354, + [SMALL_STATE(2101)] = 87420, + [SMALL_STATE(2102)] = 87492, + [SMALL_STATE(2103)] = 87562, + [SMALL_STATE(2104)] = 87630, + [SMALL_STATE(2105)] = 87704, + [SMALL_STATE(2106)] = 87772, + [SMALL_STATE(2107)] = 87846, + [SMALL_STATE(2108)] = 87916, + [SMALL_STATE(2109)] = 87983, + [SMALL_STATE(2110)] = 88050, + [SMALL_STATE(2111)] = 88121, + [SMALL_STATE(2112)] = 88188, + [SMALL_STATE(2113)] = 88255, + [SMALL_STATE(2114)] = 88322, + [SMALL_STATE(2115)] = 88393, + [SMALL_STATE(2116)] = 88460, + [SMALL_STATE(2117)] = 88528, + [SMALL_STATE(2118)] = 88646, + [SMALL_STATE(2119)] = 88764, + [SMALL_STATE(2120)] = 88882, + [SMALL_STATE(2121)] = 89000, + [SMALL_STATE(2122)] = 89118, + [SMALL_STATE(2123)] = 89236, + [SMALL_STATE(2124)] = 89354, + [SMALL_STATE(2125)] = 89472, + [SMALL_STATE(2126)] = 89590, + [SMALL_STATE(2127)] = 89697, + [SMALL_STATE(2128)] = 89772, + [SMALL_STATE(2129)] = 89879, + [SMALL_STATE(2130)] = 89986, + [SMALL_STATE(2131)] = 90093, + [SMALL_STATE(2132)] = 90200, + [SMALL_STATE(2133)] = 90307, + [SMALL_STATE(2134)] = 90414, + [SMALL_STATE(2135)] = 90529, + [SMALL_STATE(2136)] = 90639, + [SMALL_STATE(2137)] = 90747, + [SMALL_STATE(2138)] = 90857, + [SMALL_STATE(2139)] = 90960, + [SMALL_STATE(2140)] = 91063, + [SMALL_STATE(2141)] = 91166, + [SMALL_STATE(2142)] = 91269, + [SMALL_STATE(2143)] = 91338, + [SMALL_STATE(2144)] = 91441, + [SMALL_STATE(2145)] = 91544, + [SMALL_STATE(2146)] = 91647, + [SMALL_STATE(2147)] = 91750, + [SMALL_STATE(2148)] = 91853, + [SMALL_STATE(2149)] = 91956, + [SMALL_STATE(2150)] = 92059, + [SMALL_STATE(2151)] = 92162, + [SMALL_STATE(2152)] = 92265, + [SMALL_STATE(2153)] = 92368, + [SMALL_STATE(2154)] = 92471, + [SMALL_STATE(2155)] = 92574, + [SMALL_STATE(2156)] = 92677, + [SMALL_STATE(2157)] = 92780, + [SMALL_STATE(2158)] = 92883, + [SMALL_STATE(2159)] = 92986, + [SMALL_STATE(2160)] = 93089, + [SMALL_STATE(2161)] = 93147, + [SMALL_STATE(2162)] = 93205, + [SMALL_STATE(2163)] = 93265, + [SMALL_STATE(2164)] = 93325, + [SMALL_STATE(2165)] = 93385, + [SMALL_STATE(2166)] = 93443, + [SMALL_STATE(2167)] = 93497, + [SMALL_STATE(2168)] = 93555, + [SMALL_STATE(2169)] = 93611, + [SMALL_STATE(2170)] = 93669, + [SMALL_STATE(2171)] = 93725, + [SMALL_STATE(2172)] = 93779, + [SMALL_STATE(2173)] = 93832, + [SMALL_STATE(2174)] = 93885, + [SMALL_STATE(2175)] = 93942, + [SMALL_STATE(2176)] = 93999, + [SMALL_STATE(2177)] = 94058, + [SMALL_STATE(2178)] = 94117, + [SMALL_STATE(2179)] = 94170, + [SMALL_STATE(2180)] = 94223, + [SMALL_STATE(2181)] = 94276, + [SMALL_STATE(2182)] = 94329, + [SMALL_STATE(2183)] = 94382, + [SMALL_STATE(2184)] = 94435, + [SMALL_STATE(2185)] = 94488, + [SMALL_STATE(2186)] = 94541, + [SMALL_STATE(2187)] = 94594, + [SMALL_STATE(2188)] = 94647, + [SMALL_STATE(2189)] = 94700, + [SMALL_STATE(2190)] = 94753, + [SMALL_STATE(2191)] = 94806, + [SMALL_STATE(2192)] = 94859, + [SMALL_STATE(2193)] = 94912, + [SMALL_STATE(2194)] = 94979, + [SMALL_STATE(2195)] = 95032, + [SMALL_STATE(2196)] = 95085, + [SMALL_STATE(2197)] = 95138, + [SMALL_STATE(2198)] = 95191, + [SMALL_STATE(2199)] = 95244, + [SMALL_STATE(2200)] = 95297, + [SMALL_STATE(2201)] = 95350, + [SMALL_STATE(2202)] = 95403, + [SMALL_STATE(2203)] = 95456, + [SMALL_STATE(2204)] = 95509, + [SMALL_STATE(2205)] = 95562, + [SMALL_STATE(2206)] = 95615, + [SMALL_STATE(2207)] = 95676, + [SMALL_STATE(2208)] = 95729, + [SMALL_STATE(2209)] = 95782, + [SMALL_STATE(2210)] = 95839, + [SMALL_STATE(2211)] = 95892, + [SMALL_STATE(2212)] = 95945, + [SMALL_STATE(2213)] = 95998, + [SMALL_STATE(2214)] = 96051, + [SMALL_STATE(2215)] = 96104, + [SMALL_STATE(2216)] = 96157, + [SMALL_STATE(2217)] = 96210, + [SMALL_STATE(2218)] = 96263, + [SMALL_STATE(2219)] = 96318, + [SMALL_STATE(2220)] = 96371, + [SMALL_STATE(2221)] = 96424, + [SMALL_STATE(2222)] = 96477, + [SMALL_STATE(2223)] = 96548, + [SMALL_STATE(2224)] = 96619, + [SMALL_STATE(2225)] = 96718, + [SMALL_STATE(2226)] = 96771, + [SMALL_STATE(2227)] = 96870, + [SMALL_STATE(2228)] = 96939, + [SMALL_STATE(2229)] = 96992, + [SMALL_STATE(2230)] = 97045, + [SMALL_STATE(2231)] = 97098, + [SMALL_STATE(2232)] = 97151, + [SMALL_STATE(2233)] = 97250, + [SMALL_STATE(2234)] = 97349, + [SMALL_STATE(2235)] = 97402, + [SMALL_STATE(2236)] = 97501, + [SMALL_STATE(2237)] = 97600, + [SMALL_STATE(2238)] = 97699, + [SMALL_STATE(2239)] = 97752, + [SMALL_STATE(2240)] = 97851, + [SMALL_STATE(2241)] = 97950, + [SMALL_STATE(2242)] = 98005, + [SMALL_STATE(2243)] = 98078, + [SMALL_STATE(2244)] = 98161, + [SMALL_STATE(2245)] = 98216, + [SMALL_STATE(2246)] = 98269, + [SMALL_STATE(2247)] = 98348, + [SMALL_STATE(2248)] = 98433, + [SMALL_STATE(2249)] = 98522, + [SMALL_STATE(2250)] = 98599, + [SMALL_STATE(2251)] = 98652, + [SMALL_STATE(2252)] = 98723, + [SMALL_STATE(2253)] = 98816, + [SMALL_STATE(2254)] = 98869, + [SMALL_STATE(2255)] = 98968, + [SMALL_STATE(2256)] = 99067, + [SMALL_STATE(2257)] = 99166, + [SMALL_STATE(2258)] = 99219, + [SMALL_STATE(2259)] = 99272, + [SMALL_STATE(2260)] = 99371, + [SMALL_STATE(2261)] = 99424, + [SMALL_STATE(2262)] = 99523, + [SMALL_STATE(2263)] = 99594, + [SMALL_STATE(2264)] = 99665, + [SMALL_STATE(2265)] = 99764, + [SMALL_STATE(2266)] = 99863, + [SMALL_STATE(2267)] = 99932, + [SMALL_STATE(2268)] = 99985, + [SMALL_STATE(2269)] = 100040, + [SMALL_STATE(2270)] = 100093, + [SMALL_STATE(2271)] = 100146, + [SMALL_STATE(2272)] = 100199, + [SMALL_STATE(2273)] = 100298, + [SMALL_STATE(2274)] = 100353, + [SMALL_STATE(2275)] = 100408, + [SMALL_STATE(2276)] = 100507, + [SMALL_STATE(2277)] = 100606, + [SMALL_STATE(2278)] = 100659, + [SMALL_STATE(2279)] = 100758, + [SMALL_STATE(2280)] = 100811, + [SMALL_STATE(2281)] = 100910, + [SMALL_STATE(2282)] = 101009, + [SMALL_STATE(2283)] = 101108, + [SMALL_STATE(2284)] = 101163, + [SMALL_STATE(2285)] = 101262, + [SMALL_STATE(2286)] = 101315, + [SMALL_STATE(2287)] = 101368, + [SMALL_STATE(2288)] = 101467, + [SMALL_STATE(2289)] = 101566, + [SMALL_STATE(2290)] = 101619, + [SMALL_STATE(2291)] = 101672, + [SMALL_STATE(2292)] = 101745, + [SMALL_STATE(2293)] = 101798, + [SMALL_STATE(2294)] = 101881, + [SMALL_STATE(2295)] = 101960, + [SMALL_STATE(2296)] = 102019, + [SMALL_STATE(2297)] = 102074, + [SMALL_STATE(2298)] = 102127, + [SMALL_STATE(2299)] = 102180, + [SMALL_STATE(2300)] = 102265, + [SMALL_STATE(2301)] = 102354, + [SMALL_STATE(2302)] = 102407, + [SMALL_STATE(2303)] = 102484, + [SMALL_STATE(2304)] = 102583, + [SMALL_STATE(2305)] = 102654, + [SMALL_STATE(2306)] = 102747, + [SMALL_STATE(2307)] = 102846, + [SMALL_STATE(2308)] = 102899, + [SMALL_STATE(2309)] = 102998, + [SMALL_STATE(2310)] = 103097, + [SMALL_STATE(2311)] = 103196, + [SMALL_STATE(2312)] = 103295, + [SMALL_STATE(2313)] = 103394, + [SMALL_STATE(2314)] = 103447, + [SMALL_STATE(2315)] = 103500, + [SMALL_STATE(2316)] = 103553, + [SMALL_STATE(2317)] = 103606, + [SMALL_STATE(2318)] = 103659, + [SMALL_STATE(2319)] = 103712, + [SMALL_STATE(2320)] = 103765, + [SMALL_STATE(2321)] = 103818, + [SMALL_STATE(2322)] = 103871, + [SMALL_STATE(2323)] = 103924, + [SMALL_STATE(2324)] = 103977, + [SMALL_STATE(2325)] = 104030, + [SMALL_STATE(2326)] = 104083, + [SMALL_STATE(2327)] = 104136, + [SMALL_STATE(2328)] = 104189, + [SMALL_STATE(2329)] = 104242, + [SMALL_STATE(2330)] = 104295, + [SMALL_STATE(2331)] = 104348, + [SMALL_STATE(2332)] = 104401, + [SMALL_STATE(2333)] = 104454, + [SMALL_STATE(2334)] = 104507, + [SMALL_STATE(2335)] = 104606, + [SMALL_STATE(2336)] = 104659, + [SMALL_STATE(2337)] = 104712, + [SMALL_STATE(2338)] = 104767, + [SMALL_STATE(2339)] = 104820, + [SMALL_STATE(2340)] = 104873, + [SMALL_STATE(2341)] = 104926, + [SMALL_STATE(2342)] = 104981, + [SMALL_STATE(2343)] = 105034, + [SMALL_STATE(2344)] = 105087, + [SMALL_STATE(2345)] = 105140, + [SMALL_STATE(2346)] = 105193, + [SMALL_STATE(2347)] = 105246, + [SMALL_STATE(2348)] = 105299, + [SMALL_STATE(2349)] = 105354, + [SMALL_STATE(2350)] = 105407, + [SMALL_STATE(2351)] = 105460, + [SMALL_STATE(2352)] = 105513, + [SMALL_STATE(2353)] = 105566, + [SMALL_STATE(2354)] = 105619, + [SMALL_STATE(2355)] = 105672, + [SMALL_STATE(2356)] = 105725, + [SMALL_STATE(2357)] = 105778, + [SMALL_STATE(2358)] = 105831, + [SMALL_STATE(2359)] = 105890, + [SMALL_STATE(2360)] = 105943, + [SMALL_STATE(2361)] = 106003, + [SMALL_STATE(2362)] = 106063, + [SMALL_STATE(2363)] = 106123, + [SMALL_STATE(2364)] = 106215, + [SMALL_STATE(2365)] = 106307, + [SMALL_STATE(2366)] = 106399, + [SMALL_STATE(2367)] = 106455, + [SMALL_STATE(2368)] = 106523, + [SMALL_STATE(2369)] = 106621, + [SMALL_STATE(2370)] = 106719, + [SMALL_STATE(2371)] = 106789, + [SMALL_STATE(2372)] = 106859, + [SMALL_STATE(2373)] = 106919, + [SMALL_STATE(2374)] = 106979, + [SMALL_STATE(2375)] = 107035, + [SMALL_STATE(2376)] = 107091, + [SMALL_STATE(2377)] = 107161, + [SMALL_STATE(2378)] = 107259, + [SMALL_STATE(2379)] = 107357, + [SMALL_STATE(2380)] = 107455, + [SMALL_STATE(2381)] = 107553, + [SMALL_STATE(2382)] = 107651, + [SMALL_STATE(2383)] = 107723, + [SMALL_STATE(2384)] = 107805, + [SMALL_STATE(2385)] = 107883, + [SMALL_STATE(2386)] = 107967, + [SMALL_STATE(2387)] = 108055, + [SMALL_STATE(2388)] = 108131, + [SMALL_STATE(2389)] = 108223, + [SMALL_STATE(2390)] = 108321, + [SMALL_STATE(2391)] = 108419, + [SMALL_STATE(2392)] = 108517, + [SMALL_STATE(2393)] = 108615, + [SMALL_STATE(2394)] = 108713, + [SMALL_STATE(2395)] = 108811, + [SMALL_STATE(2396)] = 108903, + [SMALL_STATE(2397)] = 108963, + [SMALL_STATE(2398)] = 109055, + [SMALL_STATE(2399)] = 109147, + [SMALL_STATE(2400)] = 109239, + [SMALL_STATE(2401)] = 109331, + [SMALL_STATE(2402)] = 109423, + [SMALL_STATE(2403)] = 109481, + [SMALL_STATE(2404)] = 109573, + [SMALL_STATE(2405)] = 109629, + [SMALL_STATE(2406)] = 109721, + [SMALL_STATE(2407)] = 109775, + [SMALL_STATE(2408)] = 109831, + [SMALL_STATE(2409)] = 109930, + [SMALL_STATE(2410)] = 109981, + [SMALL_STATE(2411)] = 110032, + [SMALL_STATE(2412)] = 110099, + [SMALL_STATE(2413)] = 110198, + [SMALL_STATE(2414)] = 110249, + [SMALL_STATE(2415)] = 110348, + [SMALL_STATE(2416)] = 110407, + [SMALL_STATE(2417)] = 110458, + [SMALL_STATE(2418)] = 110557, + [SMALL_STATE(2419)] = 110612, + [SMALL_STATE(2420)] = 110681, + [SMALL_STATE(2421)] = 110732, + [SMALL_STATE(2422)] = 110783, + [SMALL_STATE(2423)] = 110834, + [SMALL_STATE(2424)] = 110885, + [SMALL_STATE(2425)] = 110936, + [SMALL_STATE(2426)] = 110987, + [SMALL_STATE(2427)] = 111038, + [SMALL_STATE(2428)] = 111089, + [SMALL_STATE(2429)] = 111140, + [SMALL_STATE(2430)] = 111191, + [SMALL_STATE(2431)] = 111288, + [SMALL_STATE(2432)] = 111343, + [SMALL_STATE(2433)] = 111440, + [SMALL_STATE(2434)] = 111491, + [SMALL_STATE(2435)] = 111548, + [SMALL_STATE(2436)] = 111647, + [SMALL_STATE(2437)] = 111746, + [SMALL_STATE(2438)] = 111817, + [SMALL_STATE(2439)] = 111898, + [SMALL_STATE(2440)] = 111995, + [SMALL_STATE(2441)] = 112046, + [SMALL_STATE(2442)] = 112123, + [SMALL_STATE(2443)] = 112206, + [SMALL_STATE(2444)] = 112257, + [SMALL_STATE(2445)] = 112314, + [SMALL_STATE(2446)] = 112401, + [SMALL_STATE(2447)] = 112476, + [SMALL_STATE(2448)] = 112545, + [SMALL_STATE(2449)] = 112636, + [SMALL_STATE(2450)] = 112693, + [SMALL_STATE(2451)] = 112744, + [SMALL_STATE(2452)] = 112801, + [SMALL_STATE(2453)] = 112852, + [SMALL_STATE(2454)] = 112903, + [SMALL_STATE(2455)] = 112956, + [SMALL_STATE(2456)] = 113007, + [SMALL_STATE(2457)] = 113064, + [SMALL_STATE(2458)] = 113163, + [SMALL_STATE(2459)] = 113216, + [SMALL_STATE(2460)] = 113315, + [SMALL_STATE(2461)] = 113366, + [SMALL_STATE(2462)] = 113417, + [SMALL_STATE(2463)] = 113468, + [SMALL_STATE(2464)] = 113565, + [SMALL_STATE(2465)] = 113616, + [SMALL_STATE(2466)] = 113667, + [SMALL_STATE(2467)] = 113764, + [SMALL_STATE(2468)] = 113815, + [SMALL_STATE(2469)] = 113914, + [SMALL_STATE(2470)] = 114013, + [SMALL_STATE(2471)] = 114064, + [SMALL_STATE(2472)] = 114133, + [SMALL_STATE(2473)] = 114188, + [SMALL_STATE(2474)] = 114285, + [SMALL_STATE(2475)] = 114382, + [SMALL_STATE(2476)] = 114435, + [SMALL_STATE(2477)] = 114504, + [SMALL_STATE(2478)] = 114603, + [SMALL_STATE(2479)] = 114654, + [SMALL_STATE(2480)] = 114705, + [SMALL_STATE(2481)] = 114776, + [SMALL_STATE(2482)] = 114845, + [SMALL_STATE(2483)] = 114896, + [SMALL_STATE(2484)] = 114947, + [SMALL_STATE(2485)] = 115016, + [SMALL_STATE(2486)] = 115067, + [SMALL_STATE(2487)] = 115118, + [SMALL_STATE(2488)] = 115215, + [SMALL_STATE(2489)] = 115282, + [SMALL_STATE(2490)] = 115333, + [SMALL_STATE(2491)] = 115432, + [SMALL_STATE(2492)] = 115531, + [SMALL_STATE(2493)] = 115612, + [SMALL_STATE(2494)] = 115669, + [SMALL_STATE(2495)] = 115768, + [SMALL_STATE(2496)] = 115825, + [SMALL_STATE(2497)] = 115902, + [SMALL_STATE(2498)] = 115985, + [SMALL_STATE(2499)] = 116072, + [SMALL_STATE(2500)] = 116141, + [SMALL_STATE(2501)] = 116192, + [SMALL_STATE(2502)] = 116261, + [SMALL_STATE(2503)] = 116330, + [SMALL_STATE(2504)] = 116381, + [SMALL_STATE(2505)] = 116432, + [SMALL_STATE(2506)] = 116483, + [SMALL_STATE(2507)] = 116580, + [SMALL_STATE(2508)] = 116677, + [SMALL_STATE(2509)] = 116748, + [SMALL_STATE(2510)] = 116799, + [SMALL_STATE(2511)] = 116880, + [SMALL_STATE(2512)] = 116931, + [SMALL_STATE(2513)] = 117022, + [SMALL_STATE(2514)] = 117073, + [SMALL_STATE(2515)] = 117124, + [SMALL_STATE(2516)] = 117175, + [SMALL_STATE(2517)] = 117234, + [SMALL_STATE(2518)] = 117285, + [SMALL_STATE(2519)] = 117336, + [SMALL_STATE(2520)] = 117433, + [SMALL_STATE(2521)] = 117510, + [SMALL_STATE(2522)] = 117593, + [SMALL_STATE(2523)] = 117680, + [SMALL_STATE(2524)] = 117755, + [SMALL_STATE(2525)] = 117846, + [SMALL_STATE(2526)] = 117897, + [SMALL_STATE(2527)] = 117994, + [SMALL_STATE(2528)] = 118091, + [SMALL_STATE(2529)] = 118142, + [SMALL_STATE(2530)] = 118195, + [SMALL_STATE(2531)] = 118246, + [SMALL_STATE(2532)] = 118297, + [SMALL_STATE(2533)] = 118394, + [SMALL_STATE(2534)] = 118445, + [SMALL_STATE(2535)] = 118496, + [SMALL_STATE(2536)] = 118593, + [SMALL_STATE(2537)] = 118690, + [SMALL_STATE(2538)] = 118787, + [SMALL_STATE(2539)] = 118838, + [SMALL_STATE(2540)] = 118889, + [SMALL_STATE(2541)] = 118940, + [SMALL_STATE(2542)] = 118991, + [SMALL_STATE(2543)] = 119042, + [SMALL_STATE(2544)] = 119097, + [SMALL_STATE(2545)] = 119148, + [SMALL_STATE(2546)] = 119199, + [SMALL_STATE(2547)] = 119296, + [SMALL_STATE(2548)] = 119349, + [SMALL_STATE(2549)] = 119424, + [SMALL_STATE(2550)] = 119475, + [SMALL_STATE(2551)] = 119526, + [SMALL_STATE(2552)] = 119577, + [SMALL_STATE(2553)] = 119674, + [SMALL_STATE(2554)] = 119771, + [SMALL_STATE(2555)] = 119868, + [SMALL_STATE(2556)] = 119919, + [SMALL_STATE(2557)] = 119970, + [SMALL_STATE(2558)] = 120021, + [SMALL_STATE(2559)] = 120072, + [SMALL_STATE(2560)] = 120123, + [SMALL_STATE(2561)] = 120176, + [SMALL_STATE(2562)] = 120227, + [SMALL_STATE(2563)] = 120278, + [SMALL_STATE(2564)] = 120329, + [SMALL_STATE(2565)] = 120382, + [SMALL_STATE(2566)] = 120433, + [SMALL_STATE(2567)] = 120484, + [SMALL_STATE(2568)] = 120537, + [SMALL_STATE(2569)] = 120588, + [SMALL_STATE(2570)] = 120639, + [SMALL_STATE(2571)] = 120704, + [SMALL_STATE(2572)] = 120755, + [SMALL_STATE(2573)] = 120806, + [SMALL_STATE(2574)] = 120857, + [SMALL_STATE(2575)] = 120916, + [SMALL_STATE(2576)] = 120983, + [SMALL_STATE(2577)] = 121036, + [SMALL_STATE(2578)] = 121133, + [SMALL_STATE(2579)] = 121184, + [SMALL_STATE(2580)] = 121235, + [SMALL_STATE(2581)] = 121332, + [SMALL_STATE(2582)] = 121383, + [SMALL_STATE(2583)] = 121434, + [SMALL_STATE(2584)] = 121485, + [SMALL_STATE(2585)] = 121536, + [SMALL_STATE(2586)] = 121587, + [SMALL_STATE(2587)] = 121640, + [SMALL_STATE(2588)] = 121691, + [SMALL_STATE(2589)] = 121742, + [SMALL_STATE(2590)] = 121793, + [SMALL_STATE(2591)] = 121846, + [SMALL_STATE(2592)] = 121897, + [SMALL_STATE(2593)] = 121994, + [SMALL_STATE(2594)] = 122045, + [SMALL_STATE(2595)] = 122104, + [SMALL_STATE(2596)] = 122201, + [SMALL_STATE(2597)] = 122298, + [SMALL_STATE(2598)] = 122349, + [SMALL_STATE(2599)] = 122400, + [SMALL_STATE(2600)] = 122451, + [SMALL_STATE(2601)] = 122504, + [SMALL_STATE(2602)] = 122555, + [SMALL_STATE(2603)] = 122606, + [SMALL_STATE(2604)] = 122657, + [SMALL_STATE(2605)] = 122708, + [SMALL_STATE(2606)] = 122765, + [SMALL_STATE(2607)] = 122863, + [SMALL_STATE(2608)] = 122939, + [SMALL_STATE(2609)] = 123019, + [SMALL_STATE(2610)] = 123089, + [SMALL_STATE(2611)] = 123187, + [SMALL_STATE(2612)] = 123285, + [SMALL_STATE(2613)] = 123383, + [SMALL_STATE(2614)] = 123481, + [SMALL_STATE(2615)] = 123579, + [SMALL_STATE(2616)] = 123665, + [SMALL_STATE(2617)] = 123733, + [SMALL_STATE(2618)] = 123785, + [SMALL_STATE(2619)] = 123853, + [SMALL_STATE(2620)] = 123943, + [SMALL_STATE(2621)] = 123999, + [SMALL_STATE(2622)] = 124097, + [SMALL_STATE(2623)] = 124195, + [SMALL_STATE(2624)] = 124269, + [SMALL_STATE(2625)] = 124367, + [SMALL_STATE(2626)] = 124419, + [SMALL_STATE(2627)] = 124517, + [SMALL_STATE(2628)] = 124615, + [SMALL_STATE(2629)] = 124713, + [SMALL_STATE(2630)] = 124811, + [SMALL_STATE(2631)] = 124885, + [SMALL_STATE(2632)] = 124983, + [SMALL_STATE(2633)] = 125079, + [SMALL_STATE(2634)] = 125135, + [SMALL_STATE(2635)] = 125225, + [SMALL_STATE(2636)] = 125299, + [SMALL_STATE(2637)] = 125385, + [SMALL_STATE(2638)] = 125439, + [SMALL_STATE(2639)] = 125521, + [SMALL_STATE(2640)] = 125597, + [SMALL_STATE(2641)] = 125665, + [SMALL_STATE(2642)] = 125745, + [SMALL_STATE(2643)] = 125843, + [SMALL_STATE(2644)] = 125909, + [SMALL_STATE(2645)] = 126005, + [SMALL_STATE(2646)] = 126101, + [SMALL_STATE(2647)] = 126199, + [SMALL_STATE(2648)] = 126295, + [SMALL_STATE(2649)] = 126391, + [SMALL_STATE(2650)] = 126449, + [SMALL_STATE(2651)] = 126545, + [SMALL_STATE(2652)] = 126641, + [SMALL_STATE(2653)] = 126737, + [SMALL_STATE(2654)] = 126807, + [SMALL_STATE(2655)] = 126887, + [SMALL_STATE(2656)] = 126963, + [SMALL_STATE(2657)] = 127045, + [SMALL_STATE(2658)] = 127127, + [SMALL_STATE(2659)] = 127197, + [SMALL_STATE(2660)] = 127283, + [SMALL_STATE(2661)] = 127357, + [SMALL_STATE(2662)] = 127455, + [SMALL_STATE(2663)] = 127523, + [SMALL_STATE(2664)] = 127613, + [SMALL_STATE(2665)] = 127709, + [SMALL_STATE(2666)] = 127805, + [SMALL_STATE(2667)] = 127901, + [SMALL_STATE(2668)] = 127997, + [SMALL_STATE(2669)] = 128093, + [SMALL_STATE(2670)] = 128189, + [SMALL_STATE(2671)] = 128285, + [SMALL_STATE(2672)] = 128375, + [SMALL_STATE(2673)] = 128441, + [SMALL_STATE(2674)] = 128497, + [SMALL_STATE(2675)] = 128565, + [SMALL_STATE(2676)] = 128633, + [SMALL_STATE(2677)] = 128731, + [SMALL_STATE(2678)] = 128827, + [SMALL_STATE(2679)] = 128923, + [SMALL_STATE(2680)] = 128989, + [SMALL_STATE(2681)] = 129085, + [SMALL_STATE(2682)] = 129183, + [SMALL_STATE(2683)] = 129279, + [SMALL_STATE(2684)] = 129375, + [SMALL_STATE(2685)] = 129471, + [SMALL_STATE(2686)] = 129527, + [SMALL_STATE(2687)] = 129593, + [SMALL_STATE(2688)] = 129683, + [SMALL_STATE(2689)] = 129779, + [SMALL_STATE(2690)] = 129853, + [SMALL_STATE(2691)] = 129935, + [SMALL_STATE(2692)] = 130021, + [SMALL_STATE(2693)] = 130119, + [SMALL_STATE(2694)] = 130195, + [SMALL_STATE(2695)] = 130293, + [SMALL_STATE(2696)] = 130389, + [SMALL_STATE(2697)] = 130469, + [SMALL_STATE(2698)] = 130539, + [SMALL_STATE(2699)] = 130635, + [SMALL_STATE(2700)] = 130691, + [SMALL_STATE(2701)] = 130787, + [SMALL_STATE(2702)] = 130883, + [SMALL_STATE(2703)] = 130979, + [SMALL_STATE(2704)] = 131077, + [SMALL_STATE(2705)] = 131175, + [SMALL_STATE(2706)] = 131271, + [SMALL_STATE(2707)] = 131369, + [SMALL_STATE(2708)] = 131465, + [SMALL_STATE(2709)] = 131561, + [SMALL_STATE(2710)] = 131657, + [SMALL_STATE(2711)] = 131759, + [SMALL_STATE(2712)] = 131811, + [SMALL_STATE(2713)] = 131913, + [SMALL_STATE(2714)] = 131981, + [SMALL_STATE(2715)] = 132077, + [SMALL_STATE(2716)] = 132133, + [SMALL_STATE(2717)] = 132187, + [SMALL_STATE(2718)] = 132289, + [SMALL_STATE(2719)] = 132343, + [SMALL_STATE(2720)] = 132445, + [SMALL_STATE(2721)] = 132541, + [SMALL_STATE(2722)] = 132637, + [SMALL_STATE(2723)] = 132719, + [SMALL_STATE(2724)] = 132795, + [SMALL_STATE(2725)] = 132863, + [SMALL_STATE(2726)] = 132943, + [SMALL_STATE(2727)] = 133011, + [SMALL_STATE(2728)] = 133069, + [SMALL_STATE(2729)] = 133125, + [SMALL_STATE(2730)] = 133221, + [SMALL_STATE(2731)] = 133289, + [SMALL_STATE(2732)] = 133385, + [SMALL_STATE(2733)] = 133439, + [SMALL_STATE(2734)] = 133535, + [SMALL_STATE(2735)] = 133591, + [SMALL_STATE(2736)] = 133687, + [SMALL_STATE(2737)] = 133739, + [SMALL_STATE(2738)] = 133825, + [SMALL_STATE(2739)] = 133881, + [SMALL_STATE(2740)] = 133983, + [SMALL_STATE(2741)] = 134035, + [SMALL_STATE(2742)] = 134103, + [SMALL_STATE(2743)] = 134203, + [SMALL_STATE(2744)] = 134271, + [SMALL_STATE(2745)] = 134323, + [SMALL_STATE(2746)] = 134407, + [SMALL_STATE(2747)] = 134475, + [SMALL_STATE(2748)] = 134573, + [SMALL_STATE(2749)] = 134625, + [SMALL_STATE(2750)] = 134681, + [SMALL_STATE(2751)] = 134737, + [SMALL_STATE(2752)] = 134795, + [SMALL_STATE(2753)] = 134853, + [SMALL_STATE(2754)] = 134951, + [SMALL_STATE(2755)] = 135017, + [SMALL_STATE(2756)] = 135073, + [SMALL_STATE(2757)] = 135173, + [SMALL_STATE(2758)] = 135273, + [SMALL_STATE(2759)] = 135375, + [SMALL_STATE(2760)] = 135443, + [SMALL_STATE(2761)] = 135497, + [SMALL_STATE(2762)] = 135599, + [SMALL_STATE(2763)] = 135655, + [SMALL_STATE(2764)] = 135755, + [SMALL_STATE(2765)] = 135807, + [SMALL_STATE(2766)] = 135859, + [SMALL_STATE(2767)] = 135911, + [SMALL_STATE(2768)] = 136007, + [SMALL_STATE(2769)] = 136103, + [SMALL_STATE(2770)] = 136173, + [SMALL_STATE(2771)] = 136225, + [SMALL_STATE(2772)] = 136293, + [SMALL_STATE(2773)] = 136349, + [SMALL_STATE(2774)] = 136401, + [SMALL_STATE(2775)] = 136461, + [SMALL_STATE(2776)] = 136521, + [SMALL_STATE(2777)] = 136573, + [SMALL_STATE(2778)] = 136625, + [SMALL_STATE(2779)] = 136679, + [SMALL_STATE(2780)] = 136728, + [SMALL_STATE(2781)] = 136777, + [SMALL_STATE(2782)] = 136872, + [SMALL_STATE(2783)] = 136925, + [SMALL_STATE(2784)] = 137020, + [SMALL_STATE(2785)] = 137115, + [SMALL_STATE(2786)] = 137210, + [SMALL_STATE(2787)] = 137259, + [SMALL_STATE(2788)] = 137354, + [SMALL_STATE(2789)] = 137405, + [SMALL_STATE(2790)] = 137500, + [SMALL_STATE(2791)] = 137589, + [SMALL_STATE(2792)] = 137662, + [SMALL_STATE(2793)] = 137747, + [SMALL_STATE(2794)] = 137828, + [SMALL_STATE(2795)] = 137903, + [SMALL_STATE(2796)] = 137998, + [SMALL_STATE(2797)] = 138077, + [SMALL_STATE(2798)] = 138146, + [SMALL_STATE(2799)] = 138241, + [SMALL_STATE(2800)] = 138336, + [SMALL_STATE(2801)] = 138431, + [SMALL_STATE(2802)] = 138526, + [SMALL_STATE(2803)] = 138621, + [SMALL_STATE(2804)] = 138716, + [SMALL_STATE(2805)] = 138811, + [SMALL_STATE(2806)] = 138908, + [SMALL_STATE(2807)] = 138959, + [SMALL_STATE(2808)] = 139008, + [SMALL_STATE(2809)] = 139057, + [SMALL_STATE(2810)] = 139106, + [SMALL_STATE(2811)] = 139159, + [SMALL_STATE(2812)] = 139208, + [SMALL_STATE(2813)] = 139257, + [SMALL_STATE(2814)] = 139306, + [SMALL_STATE(2815)] = 139355, + [SMALL_STATE(2816)] = 139404, + [SMALL_STATE(2817)] = 139453, + [SMALL_STATE(2818)] = 139520, + [SMALL_STATE(2819)] = 139577, + [SMALL_STATE(2820)] = 139644, + [SMALL_STATE(2821)] = 139693, + [SMALL_STATE(2822)] = 139742, + [SMALL_STATE(2823)] = 139791, + [SMALL_STATE(2824)] = 139888, + [SMALL_STATE(2825)] = 139945, + [SMALL_STATE(2826)] = 139996, + [SMALL_STATE(2827)] = 140053, + [SMALL_STATE(2828)] = 140102, + [SMALL_STATE(2829)] = 140157, + [SMALL_STATE(2830)] = 140206, + [SMALL_STATE(2831)] = 140303, + [SMALL_STATE(2832)] = 140366, + [SMALL_STATE(2833)] = 140415, + [SMALL_STATE(2834)] = 140480, + [SMALL_STATE(2835)] = 140535, + [SMALL_STATE(2836)] = 140584, + [SMALL_STATE(2837)] = 140633, + [SMALL_STATE(2838)] = 140700, + [SMALL_STATE(2839)] = 140795, + [SMALL_STATE(2840)] = 140844, + [SMALL_STATE(2841)] = 140939, + [SMALL_STATE(2842)] = 140990, + [SMALL_STATE(2843)] = 141085, + [SMALL_STATE(2844)] = 141140, + [SMALL_STATE(2845)] = 141235, + [SMALL_STATE(2846)] = 141284, + [SMALL_STATE(2847)] = 141379, + [SMALL_STATE(2848)] = 141474, + [SMALL_STATE(2849)] = 141569, + [SMALL_STATE(2850)] = 141664, + [SMALL_STATE(2851)] = 141759, + [SMALL_STATE(2852)] = 141854, + [SMALL_STATE(2853)] = 141949, + [SMALL_STATE(2854)] = 142016, + [SMALL_STATE(2855)] = 142083, + [SMALL_STATE(2856)] = 142178, + [SMALL_STATE(2857)] = 142235, + [SMALL_STATE(2858)] = 142330, + [SMALL_STATE(2859)] = 142395, + [SMALL_STATE(2860)] = 142462, + [SMALL_STATE(2861)] = 142519, + [SMALL_STATE(2862)] = 142568, + [SMALL_STATE(2863)] = 142625, + [SMALL_STATE(2864)] = 142724, + [SMALL_STATE(2865)] = 142773, + [SMALL_STATE(2866)] = 142868, + [SMALL_STATE(2867)] = 142917, + [SMALL_STATE(2868)] = 143014, + [SMALL_STATE(2869)] = 143063, + [SMALL_STATE(2870)] = 143160, + [SMALL_STATE(2871)] = 143209, + [SMALL_STATE(2872)] = 143258, + [SMALL_STATE(2873)] = 143355, + [SMALL_STATE(2874)] = 143404, + [SMALL_STATE(2875)] = 143459, + [SMALL_STATE(2876)] = 143508, + [SMALL_STATE(2877)] = 143557, + [SMALL_STATE(2878)] = 143608, + [SMALL_STATE(2879)] = 143657, + [SMALL_STATE(2880)] = 143706, + [SMALL_STATE(2881)] = 143805, + [SMALL_STATE(2882)] = 143900, + [SMALL_STATE(2883)] = 143995, + [SMALL_STATE(2884)] = 144044, + [SMALL_STATE(2885)] = 144093, + [SMALL_STATE(2886)] = 144142, + [SMALL_STATE(2887)] = 144237, + [SMALL_STATE(2888)] = 144336, + [SMALL_STATE(2889)] = 144403, + [SMALL_STATE(2890)] = 144460, + [SMALL_STATE(2891)] = 144527, + [SMALL_STATE(2892)] = 144584, + [SMALL_STATE(2893)] = 144649, + [SMALL_STATE(2894)] = 144746, + [SMALL_STATE(2895)] = 144795, + [SMALL_STATE(2896)] = 144890, + [SMALL_STATE(2897)] = 144985, + [SMALL_STATE(2898)] = 145040, + [SMALL_STATE(2899)] = 145089, + [SMALL_STATE(2900)] = 145184, + [SMALL_STATE(2901)] = 145235, + [SMALL_STATE(2902)] = 145302, + [SMALL_STATE(2903)] = 145369, + [SMALL_STATE(2904)] = 145434, + [SMALL_STATE(2905)] = 145489, + [SMALL_STATE(2906)] = 145544, + [SMALL_STATE(2907)] = 145639, + [SMALL_STATE(2908)] = 145734, + [SMALL_STATE(2909)] = 145823, + [SMALL_STATE(2910)] = 145890, + [SMALL_STATE(2911)] = 145963, + [SMALL_STATE(2912)] = 146048, + [SMALL_STATE(2913)] = 146129, + [SMALL_STATE(2914)] = 146204, + [SMALL_STATE(2915)] = 146283, + [SMALL_STATE(2916)] = 146336, + [SMALL_STATE(2917)] = 146435, + [SMALL_STATE(2918)] = 146504, + [SMALL_STATE(2919)] = 146599, + [SMALL_STATE(2920)] = 146694, + [SMALL_STATE(2921)] = 146791, + [SMALL_STATE(2922)] = 146844, + [SMALL_STATE(2923)] = 146939, + [SMALL_STATE(2924)] = 147034, + [SMALL_STATE(2925)] = 147129, + [SMALL_STATE(2926)] = 147224, + [SMALL_STATE(2927)] = 147275, + [SMALL_STATE(2928)] = 147374, + [SMALL_STATE(2929)] = 147423, + [SMALL_STATE(2930)] = 147472, + [SMALL_STATE(2931)] = 147521, + [SMALL_STATE(2932)] = 147618, + [SMALL_STATE(2933)] = 147715, + [SMALL_STATE(2934)] = 147764, + [SMALL_STATE(2935)] = 147813, + [SMALL_STATE(2936)] = 147862, + [SMALL_STATE(2937)] = 147951, + [SMALL_STATE(2938)] = 148018, + [SMALL_STATE(2939)] = 148091, + [SMALL_STATE(2940)] = 148176, + [SMALL_STATE(2941)] = 148225, + [SMALL_STATE(2942)] = 148306, + [SMALL_STATE(2943)] = 148381, + [SMALL_STATE(2944)] = 148432, + [SMALL_STATE(2945)] = 148511, + [SMALL_STATE(2946)] = 148560, + [SMALL_STATE(2947)] = 148629, + [SMALL_STATE(2948)] = 148726, + [SMALL_STATE(2949)] = 148775, + [SMALL_STATE(2950)] = 148872, + [SMALL_STATE(2951)] = 148921, + [SMALL_STATE(2952)] = 148970, + [SMALL_STATE(2953)] = 149019, + [SMALL_STATE(2954)] = 149068, + [SMALL_STATE(2955)] = 149117, + [SMALL_STATE(2956)] = 149166, + [SMALL_STATE(2957)] = 149215, + [SMALL_STATE(2958)] = 149310, + [SMALL_STATE(2959)] = 149405, + [SMALL_STATE(2960)] = 149500, + [SMALL_STATE(2961)] = 149595, + [SMALL_STATE(2962)] = 149644, + [SMALL_STATE(2963)] = 149739, + [SMALL_STATE(2964)] = 149808, + [SMALL_STATE(2965)] = 149857, + [SMALL_STATE(2966)] = 149906, + [SMALL_STATE(2967)] = 149985, + [SMALL_STATE(2968)] = 150084, + [SMALL_STATE(2969)] = 150159, + [SMALL_STATE(2970)] = 150240, + [SMALL_STATE(2971)] = 150325, + [SMALL_STATE(2972)] = 150398, + [SMALL_STATE(2973)] = 150465, + [SMALL_STATE(2974)] = 150554, + [SMALL_STATE(2975)] = 150649, + [SMALL_STATE(2976)] = 150744, + [SMALL_STATE(2977)] = 150839, + [SMALL_STATE(2978)] = 150934, + [SMALL_STATE(2979)] = 151029, + [SMALL_STATE(2980)] = 151124, + [SMALL_STATE(2981)] = 151173, + [SMALL_STATE(2982)] = 151272, + [SMALL_STATE(2983)] = 151367, + [SMALL_STATE(2984)] = 151424, + [SMALL_STATE(2985)] = 151473, + [SMALL_STATE(2986)] = 151522, + [SMALL_STATE(2987)] = 151571, + [SMALL_STATE(2988)] = 151620, + [SMALL_STATE(2989)] = 151669, + [SMALL_STATE(2990)] = 151718, + [SMALL_STATE(2991)] = 151815, + [SMALL_STATE(2992)] = 151864, + [SMALL_STATE(2993)] = 151913, + [SMALL_STATE(2994)] = 151962, + [SMALL_STATE(2995)] = 152017, + [SMALL_STATE(2996)] = 152066, + [SMALL_STATE(2997)] = 152115, + [SMALL_STATE(2998)] = 152164, + [SMALL_STATE(2999)] = 152213, + [SMALL_STATE(3000)] = 152312, + [SMALL_STATE(3001)] = 152361, + [SMALL_STATE(3002)] = 152410, + [SMALL_STATE(3003)] = 152459, + [SMALL_STATE(3004)] = 152508, + [SMALL_STATE(3005)] = 152605, + [SMALL_STATE(3006)] = 152670, + [SMALL_STATE(3007)] = 152765, + [SMALL_STATE(3008)] = 152820, + [SMALL_STATE(3009)] = 152919, + [SMALL_STATE(3010)] = 153014, + [SMALL_STATE(3011)] = 153081, + [SMALL_STATE(3012)] = 153148, + [SMALL_STATE(3013)] = 153199, + [SMALL_STATE(3014)] = 153250, + [SMALL_STATE(3015)] = 153305, + [SMALL_STATE(3016)] = 153360, + [SMALL_STATE(3017)] = 153413, + [SMALL_STATE(3018)] = 153462, + [SMALL_STATE(3019)] = 153559, + [SMALL_STATE(3020)] = 153610, + [SMALL_STATE(3021)] = 153659, + [SMALL_STATE(3022)] = 153708, + [SMALL_STATE(3023)] = 153757, + [SMALL_STATE(3024)] = 153806, + [SMALL_STATE(3025)] = 153855, + [SMALL_STATE(3026)] = 153904, + [SMALL_STATE(3027)] = 153959, + [SMALL_STATE(3028)] = 154008, + [SMALL_STATE(3029)] = 154057, + [SMALL_STATE(3030)] = 154106, + [SMALL_STATE(3031)] = 154157, + [SMALL_STATE(3032)] = 154206, + [SMALL_STATE(3033)] = 154255, + [SMALL_STATE(3034)] = 154304, + [SMALL_STATE(3035)] = 154353, + [SMALL_STATE(3036)] = 154422, + [SMALL_STATE(3037)] = 154501, + [SMALL_STATE(3038)] = 154550, + [SMALL_STATE(3039)] = 154625, + [SMALL_STATE(3040)] = 154674, + [SMALL_STATE(3041)] = 154755, + [SMALL_STATE(3042)] = 154852, + [SMALL_STATE(3043)] = 154949, + [SMALL_STATE(3044)] = 154998, + [SMALL_STATE(3045)] = 155083, + [SMALL_STATE(3046)] = 155156, + [SMALL_STATE(3047)] = 155245, + [SMALL_STATE(3048)] = 155294, + [SMALL_STATE(3049)] = 155393, + [SMALL_STATE(3050)] = 155446, + [SMALL_STATE(3051)] = 155495, + [SMALL_STATE(3052)] = 155544, + [SMALL_STATE(3053)] = 155593, + [SMALL_STATE(3054)] = 155642, + [SMALL_STATE(3055)] = 155691, + [SMALL_STATE(3056)] = 155740, + [SMALL_STATE(3057)] = 155789, + [SMALL_STATE(3058)] = 155838, + [SMALL_STATE(3059)] = 155887, + [SMALL_STATE(3060)] = 155938, + [SMALL_STATE(3061)] = 156035, + [SMALL_STATE(3062)] = 156084, + [SMALL_STATE(3063)] = 156133, + [SMALL_STATE(3064)] = 156182, + [SMALL_STATE(3065)] = 156281, + [SMALL_STATE(3066)] = 156335, + [SMALL_STATE(3067)] = 156387, + [SMALL_STATE(3068)] = 156481, + [SMALL_STATE(3069)] = 156575, + [SMALL_STATE(3070)] = 156629, + [SMALL_STATE(3071)] = 156725, + [SMALL_STATE(3072)] = 156821, + [SMALL_STATE(3073)] = 156915, + [SMALL_STATE(3074)] = 156971, + [SMALL_STATE(3075)] = 157067, + [SMALL_STATE(3076)] = 157121, + [SMALL_STATE(3077)] = 157215, + [SMALL_STATE(3078)] = 157311, + [SMALL_STATE(3079)] = 157367, + [SMALL_STATE(3080)] = 157453, + [SMALL_STATE(3081)] = 157539, + [SMALL_STATE(3082)] = 157589, + [SMALL_STATE(3083)] = 157639, + [SMALL_STATE(3084)] = 157695, + [SMALL_STATE(3085)] = 157749, + [SMALL_STATE(3086)] = 157835, + [SMALL_STATE(3087)] = 157887, + [SMALL_STATE(3088)] = 157973, + [SMALL_STATE(3089)] = 158023, + [SMALL_STATE(3090)] = 158077, + [SMALL_STATE(3091)] = 158171, + [SMALL_STATE(3092)] = 158221, + [SMALL_STATE(3093)] = 158287, + [SMALL_STATE(3094)] = 158341, + [SMALL_STATE(3095)] = 158391, + [SMALL_STATE(3096)] = 158477, + [SMALL_STATE(3097)] = 158537, + [SMALL_STATE(3098)] = 158589, + [SMALL_STATE(3099)] = 158639, + [SMALL_STATE(3100)] = 158689, + [SMALL_STATE(3101)] = 158739, + [SMALL_STATE(3102)] = 158801, + [SMALL_STATE(3103)] = 158863, + [SMALL_STATE(3104)] = 158913, + [SMALL_STATE(3105)] = 158985, + [SMALL_STATE(3106)] = 159039, + [SMALL_STATE(3107)] = 159115, + [SMALL_STATE(3108)] = 159189, + [SMALL_STATE(3109)] = 159283, + [SMALL_STATE(3110)] = 159333, + [SMALL_STATE(3111)] = 159427, + [SMALL_STATE(3112)] = 159479, + [SMALL_STATE(3113)] = 159535, + [SMALL_STATE(3114)] = 159591, + [SMALL_STATE(3115)] = 159685, + [SMALL_STATE(3116)] = 159779, + [SMALL_STATE(3117)] = 159853, + [SMALL_STATE(3118)] = 159905, + [SMALL_STATE(3119)] = 159981, + [SMALL_STATE(3120)] = 160035, + [SMALL_STATE(3121)] = 160103, + [SMALL_STATE(3122)] = 160175, + [SMALL_STATE(3123)] = 160269, + [SMALL_STATE(3124)] = 160347, + [SMALL_STATE(3125)] = 160443, + [SMALL_STATE(3126)] = 160497, + [SMALL_STATE(3127)] = 160551, + [SMALL_STATE(3128)] = 160605, + [SMALL_STATE(3129)] = 160659, + [SMALL_STATE(3130)] = 160709, + [SMALL_STATE(3131)] = 160763, + [SMALL_STATE(3132)] = 160859, + [SMALL_STATE(3133)] = 160909, + [SMALL_STATE(3134)] = 160963, + [SMALL_STATE(3135)] = 161037, + [SMALL_STATE(3136)] = 161089, + [SMALL_STATE(3137)] = 161175, + [SMALL_STATE(3138)] = 161225, + [SMALL_STATE(3139)] = 161305, + [SMALL_STATE(3140)] = 161389, + [SMALL_STATE(3141)] = 161461, + [SMALL_STATE(3142)] = 161527, + [SMALL_STATE(3143)] = 161615, + [SMALL_STATE(3144)] = 161669, + [SMALL_STATE(3145)] = 161765, + [SMALL_STATE(3146)] = 161859, + [SMALL_STATE(3147)] = 161953, + [SMALL_STATE(3148)] = 162047, + [SMALL_STATE(3149)] = 162097, + [SMALL_STATE(3150)] = 162191, + [SMALL_STATE(3151)] = 162277, + [SMALL_STATE(3152)] = 162365, + [SMALL_STATE(3153)] = 162437, + [SMALL_STATE(3154)] = 162521, + [SMALL_STATE(3155)] = 162575, + [SMALL_STATE(3156)] = 162669, + [SMALL_STATE(3157)] = 162763, + [SMALL_STATE(3158)] = 162843, + [SMALL_STATE(3159)] = 162917, + [SMALL_STATE(3160)] = 162967, + [SMALL_STATE(3161)] = 163045, + [SMALL_STATE(3162)] = 163139, + [SMALL_STATE(3163)] = 163207, + [SMALL_STATE(3164)] = 163303, + [SMALL_STATE(3165)] = 163397, + [SMALL_STATE(3166)] = 163491, + [SMALL_STATE(3167)] = 163559, + [SMALL_STATE(3168)] = 163611, + [SMALL_STATE(3169)] = 163689, + [SMALL_STATE(3170)] = 163763, + [SMALL_STATE(3171)] = 163815, + [SMALL_STATE(3172)] = 163895, + [SMALL_STATE(3173)] = 163979, + [SMALL_STATE(3174)] = 164051, + [SMALL_STATE(3175)] = 164145, + [SMALL_STATE(3176)] = 164239, + [SMALL_STATE(3177)] = 164291, + [SMALL_STATE(3178)] = 164345, + [SMALL_STATE(3179)] = 164395, + [SMALL_STATE(3180)] = 164449, + [SMALL_STATE(3181)] = 164521, + [SMALL_STATE(3182)] = 164597, + [SMALL_STATE(3183)] = 164663, + [SMALL_STATE(3184)] = 164737, + [SMALL_STATE(3185)] = 164831, + [SMALL_STATE(3186)] = 164917, + [SMALL_STATE(3187)] = 164981, + [SMALL_STATE(3188)] = 165033, + [SMALL_STATE(3189)] = 165129, + [SMALL_STATE(3190)] = 165217, + [SMALL_STATE(3191)] = 165311, + [SMALL_STATE(3192)] = 165361, + [SMALL_STATE(3193)] = 165455, + [SMALL_STATE(3194)] = 165511, + [SMALL_STATE(3195)] = 165605, + [SMALL_STATE(3196)] = 165691, + [SMALL_STATE(3197)] = 165785, + [SMALL_STATE(3198)] = 165879, + [SMALL_STATE(3199)] = 165973, + [SMALL_STATE(3200)] = 166067, + [SMALL_STATE(3201)] = 166161, + [SMALL_STATE(3202)] = 166255, + [SMALL_STATE(3203)] = 166311, + [SMALL_STATE(3204)] = 166363, + [SMALL_STATE(3205)] = 166459, + [SMALL_STATE(3206)] = 166525, + [SMALL_STATE(3207)] = 166591, + [SMALL_STATE(3208)] = 166641, + [SMALL_STATE(3209)] = 166735, + [SMALL_STATE(3210)] = 166785, + [SMALL_STATE(3211)] = 166837, + [SMALL_STATE(3212)] = 166933, + [SMALL_STATE(3213)] = 167029, + [SMALL_STATE(3214)] = 167081, + [SMALL_STATE(3215)] = 167175, + [SMALL_STATE(3216)] = 167269, + [SMALL_STATE(3217)] = 167319, + [SMALL_STATE(3218)] = 167371, + [SMALL_STATE(3219)] = 167423, + [SMALL_STATE(3220)] = 167509, + [SMALL_STATE(3221)] = 167605, + [SMALL_STATE(3222)] = 167655, + [SMALL_STATE(3223)] = 167705, + [SMALL_STATE(3224)] = 167765, + [SMALL_STATE(3225)] = 167837, + [SMALL_STATE(3226)] = 167913, + [SMALL_STATE(3227)] = 167987, + [SMALL_STATE(3228)] = 168041, + [SMALL_STATE(3229)] = 168091, + [SMALL_STATE(3230)] = 168177, + [SMALL_STATE(3231)] = 168263, + [SMALL_STATE(3232)] = 168357, + [SMALL_STATE(3233)] = 168411, + [SMALL_STATE(3234)] = 168497, + [SMALL_STATE(3235)] = 168591, + [SMALL_STATE(3236)] = 168641, + [SMALL_STATE(3237)] = 168691, + [SMALL_STATE(3238)] = 168787, + [SMALL_STATE(3239)] = 168859, + [SMALL_STATE(3240)] = 168945, + [SMALL_STATE(3241)] = 169001, + [SMALL_STATE(3242)] = 169073, + [SMALL_STATE(3243)] = 169149, + [SMALL_STATE(3244)] = 169223, + [SMALL_STATE(3245)] = 169299, + [SMALL_STATE(3246)] = 169395, + [SMALL_STATE(3247)] = 169447, + [SMALL_STATE(3248)] = 169543, + [SMALL_STATE(3249)] = 169593, + [SMALL_STATE(3250)] = 169667, + [SMALL_STATE(3251)] = 169763, + [SMALL_STATE(3252)] = 169813, + [SMALL_STATE(3253)] = 169863, + [SMALL_STATE(3254)] = 169919, + [SMALL_STATE(3255)] = 169971, + [SMALL_STATE(3256)] = 170027, + [SMALL_STATE(3257)] = 170079, + [SMALL_STATE(3258)] = 170129, + [SMALL_STATE(3259)] = 170179, + [SMALL_STATE(3260)] = 170233, + [SMALL_STATE(3261)] = 170283, + [SMALL_STATE(3262)] = 170333, + [SMALL_STATE(3263)] = 170383, + [SMALL_STATE(3264)] = 170449, + [SMALL_STATE(3265)] = 170545, + [SMALL_STATE(3266)] = 170639, + [SMALL_STATE(3267)] = 170705, + [SMALL_STATE(3268)] = 170755, + [SMALL_STATE(3269)] = 170849, + [SMALL_STATE(3270)] = 170899, + [SMALL_STATE(3271)] = 170993, + [SMALL_STATE(3272)] = 171087, + [SMALL_STATE(3273)] = 171137, + [SMALL_STATE(3274)] = 171189, + [SMALL_STATE(3275)] = 171243, + [SMALL_STATE(3276)] = 171293, + [SMALL_STATE(3277)] = 171347, + [SMALL_STATE(3278)] = 171401, + [SMALL_STATE(3279)] = 171475, + [SMALL_STATE(3280)] = 171541, + [SMALL_STATE(3281)] = 171617, + [SMALL_STATE(3282)] = 171683, + [SMALL_STATE(3283)] = 171755, + [SMALL_STATE(3284)] = 171849, + [SMALL_STATE(3285)] = 171899, + [SMALL_STATE(3286)] = 171949, + [SMALL_STATE(3287)] = 172021, + [SMALL_STATE(3288)] = 172085, + [SMALL_STATE(3289)] = 172137, + [SMALL_STATE(3290)] = 172231, + [SMALL_STATE(3291)] = 172283, + [SMALL_STATE(3292)] = 172379, + [SMALL_STATE(3293)] = 172455, + [SMALL_STATE(3294)] = 172529, + [SMALL_STATE(3295)] = 172615, + [SMALL_STATE(3296)] = 172689, + [SMALL_STATE(3297)] = 172783, + [SMALL_STATE(3298)] = 172847, + [SMALL_STATE(3299)] = 172923, + [SMALL_STATE(3300)] = 172973, + [SMALL_STATE(3301)] = 173069, + [SMALL_STATE(3302)] = 173135, + [SMALL_STATE(3303)] = 173185, + [SMALL_STATE(3304)] = 173257, + [SMALL_STATE(3305)] = 173351, + [SMALL_STATE(3306)] = 173445, + [SMALL_STATE(3307)] = 173507, + [SMALL_STATE(3308)] = 173554, + [SMALL_STATE(3309)] = 173601, + [SMALL_STATE(3310)] = 173694, + [SMALL_STATE(3311)] = 173787, + [SMALL_STATE(3312)] = 173834, + [SMALL_STATE(3313)] = 173887, + [SMALL_STATE(3314)] = 173934, + [SMALL_STATE(3315)] = 173983, + [SMALL_STATE(3316)] = 174038, + [SMALL_STATE(3317)] = 174085, + [SMALL_STATE(3318)] = 174152, + [SMALL_STATE(3319)] = 174245, + [SMALL_STATE(3320)] = 174338, + [SMALL_STATE(3321)] = 174389, + [SMALL_STATE(3322)] = 174482, + [SMALL_STATE(3323)] = 174531, + [SMALL_STATE(3324)] = 174582, + [SMALL_STATE(3325)] = 174675, + [SMALL_STATE(3326)] = 174728, + [SMALL_STATE(3327)] = 174781, + [SMALL_STATE(3328)] = 174874, + [SMALL_STATE(3329)] = 174967, + [SMALL_STATE(3330)] = 175034, + [SMALL_STATE(3331)] = 175111, + [SMALL_STATE(3332)] = 175158, + [SMALL_STATE(3333)] = 175205, + [SMALL_STATE(3334)] = 175252, + [SMALL_STATE(3335)] = 175305, + [SMALL_STATE(3336)] = 175378, + [SMALL_STATE(3337)] = 175457, + [SMALL_STATE(3338)] = 175540, + [SMALL_STATE(3339)] = 175611, + [SMALL_STATE(3340)] = 175676, + [SMALL_STATE(3341)] = 175763, + [SMALL_STATE(3342)] = 175856, + [SMALL_STATE(3343)] = 175949, + [SMALL_STATE(3344)] = 176042, + [SMALL_STATE(3345)] = 176089, + [SMALL_STATE(3346)] = 176142, + [SMALL_STATE(3347)] = 176195, + [SMALL_STATE(3348)] = 176244, + [SMALL_STATE(3349)] = 176337, + [SMALL_STATE(3350)] = 176430, + [SMALL_STATE(3351)] = 176523, + [SMALL_STATE(3352)] = 176578, + [SMALL_STATE(3353)] = 176645, + [SMALL_STATE(3354)] = 176738, + [SMALL_STATE(3355)] = 176791, + [SMALL_STATE(3356)] = 176858, + [SMALL_STATE(3357)] = 176911, + [SMALL_STATE(3358)] = 176962, + [SMALL_STATE(3359)] = 177009, + [SMALL_STATE(3360)] = 177062, + [SMALL_STATE(3361)] = 177111, + [SMALL_STATE(3362)] = 177204, + [SMALL_STATE(3363)] = 177251, + [SMALL_STATE(3364)] = 177298, + [SMALL_STATE(3365)] = 177391, + [SMALL_STATE(3366)] = 177444, + [SMALL_STATE(3367)] = 177491, + [SMALL_STATE(3368)] = 177584, + [SMALL_STATE(3369)] = 177637, + [SMALL_STATE(3370)] = 177684, + [SMALL_STATE(3371)] = 177731, + [SMALL_STATE(3372)] = 177778, + [SMALL_STATE(3373)] = 177825, + [SMALL_STATE(3374)] = 177878, + [SMALL_STATE(3375)] = 177925, + [SMALL_STATE(3376)] = 177972, + [SMALL_STATE(3377)] = 178019, + [SMALL_STATE(3378)] = 178072, + [SMALL_STATE(3379)] = 178119, + [SMALL_STATE(3380)] = 178166, + [SMALL_STATE(3381)] = 178235, + [SMALL_STATE(3382)] = 178282, + [SMALL_STATE(3383)] = 178355, + [SMALL_STATE(3384)] = 178448, + [SMALL_STATE(3385)] = 178519, + [SMALL_STATE(3386)] = 178612, + [SMALL_STATE(3387)] = 178659, + [SMALL_STATE(3388)] = 178706, + [SMALL_STATE(3389)] = 178753, + [SMALL_STATE(3390)] = 178808, + [SMALL_STATE(3391)] = 178855, + [SMALL_STATE(3392)] = 178902, + [SMALL_STATE(3393)] = 178949, + [SMALL_STATE(3394)] = 178996, + [SMALL_STATE(3395)] = 179089, + [SMALL_STATE(3396)] = 179136, + [SMALL_STATE(3397)] = 179187, + [SMALL_STATE(3398)] = 179236, + [SMALL_STATE(3399)] = 179285, + [SMALL_STATE(3400)] = 179332, + [SMALL_STATE(3401)] = 179385, + [SMALL_STATE(3402)] = 179438, + [SMALL_STATE(3403)] = 179485, + [SMALL_STATE(3404)] = 179534, + [SMALL_STATE(3405)] = 179581, + [SMALL_STATE(3406)] = 179628, + [SMALL_STATE(3407)] = 179677, + [SMALL_STATE(3408)] = 179726, + [SMALL_STATE(3409)] = 179777, + [SMALL_STATE(3410)] = 179830, + [SMALL_STATE(3411)] = 179879, + [SMALL_STATE(3412)] = 179930, + [SMALL_STATE(3413)] = 179983, + [SMALL_STATE(3414)] = 180032, + [SMALL_STATE(3415)] = 180099, + [SMALL_STATE(3416)] = 180152, + [SMALL_STATE(3417)] = 180199, + [SMALL_STATE(3418)] = 180248, + [SMALL_STATE(3419)] = 180295, + [SMALL_STATE(3420)] = 180342, + [SMALL_STATE(3421)] = 180389, + [SMALL_STATE(3422)] = 180436, + [SMALL_STATE(3423)] = 180483, + [SMALL_STATE(3424)] = 180530, + [SMALL_STATE(3425)] = 180577, + [SMALL_STATE(3426)] = 180644, + [SMALL_STATE(3427)] = 180691, + [SMALL_STATE(3428)] = 180738, + [SMALL_STATE(3429)] = 180805, + [SMALL_STATE(3430)] = 180854, + [SMALL_STATE(3431)] = 180907, + [SMALL_STATE(3432)] = 180958, + [SMALL_STATE(3433)] = 181005, + [SMALL_STATE(3434)] = 181052, + [SMALL_STATE(3435)] = 181099, + [SMALL_STATE(3436)] = 181146, + [SMALL_STATE(3437)] = 181213, + [SMALL_STATE(3438)] = 181266, + [SMALL_STATE(3439)] = 181331, + [SMALL_STATE(3440)] = 181386, + [SMALL_STATE(3441)] = 181437, + [SMALL_STATE(3442)] = 181502, + [SMALL_STATE(3443)] = 181555, + [SMALL_STATE(3444)] = 181648, + [SMALL_STATE(3445)] = 181697, + [SMALL_STATE(3446)] = 181750, + [SMALL_STATE(3447)] = 181797, + [SMALL_STATE(3448)] = 181854, + [SMALL_STATE(3449)] = 181901, + [SMALL_STATE(3450)] = 181994, + [SMALL_STATE(3451)] = 182047, + [SMALL_STATE(3452)] = 182104, + [SMALL_STATE(3453)] = 182167, + [SMALL_STATE(3454)] = 182220, + [SMALL_STATE(3455)] = 182267, + [SMALL_STATE(3456)] = 182316, + [SMALL_STATE(3457)] = 182363, + [SMALL_STATE(3458)] = 182412, + [SMALL_STATE(3459)] = 182465, + [SMALL_STATE(3460)] = 182512, + [SMALL_STATE(3461)] = 182561, + [SMALL_STATE(3462)] = 182614, + [SMALL_STATE(3463)] = 182667, + [SMALL_STATE(3464)] = 182714, + [SMALL_STATE(3465)] = 182763, + [SMALL_STATE(3466)] = 182816, + [SMALL_STATE(3467)] = 182909, + [SMALL_STATE(3468)] = 182962, + [SMALL_STATE(3469)] = 183009, + [SMALL_STATE(3470)] = 183056, + [SMALL_STATE(3471)] = 183103, + [SMALL_STATE(3472)] = 183150, + [SMALL_STATE(3473)] = 183203, + [SMALL_STATE(3474)] = 183250, + [SMALL_STATE(3475)] = 183297, + [SMALL_STATE(3476)] = 183344, + [SMALL_STATE(3477)] = 183391, + [SMALL_STATE(3478)] = 183484, + [SMALL_STATE(3479)] = 183531, + [SMALL_STATE(3480)] = 183578, + [SMALL_STATE(3481)] = 183625, + [SMALL_STATE(3482)] = 183672, + [SMALL_STATE(3483)] = 183719, + [SMALL_STATE(3484)] = 183766, + [SMALL_STATE(3485)] = 183813, + [SMALL_STATE(3486)] = 183860, + [SMALL_STATE(3487)] = 183907, + [SMALL_STATE(3488)] = 183974, + [SMALL_STATE(3489)] = 184027, + [SMALL_STATE(3490)] = 184120, + [SMALL_STATE(3491)] = 184173, + [SMALL_STATE(3492)] = 184220, + [SMALL_STATE(3493)] = 184267, + [SMALL_STATE(3494)] = 184314, + [SMALL_STATE(3495)] = 184407, + [SMALL_STATE(3496)] = 184454, + [SMALL_STATE(3497)] = 184547, + [SMALL_STATE(3498)] = 184600, + [SMALL_STATE(3499)] = 184693, + [SMALL_STATE(3500)] = 184740, + [SMALL_STATE(3501)] = 184833, + [SMALL_STATE(3502)] = 184886, + [SMALL_STATE(3503)] = 184933, + [SMALL_STATE(3504)] = 185026, + [SMALL_STATE(3505)] = 185079, + [SMALL_STATE(3506)] = 185128, + [SMALL_STATE(3507)] = 185175, + [SMALL_STATE(3508)] = 185268, + [SMALL_STATE(3509)] = 185361, + [SMALL_STATE(3510)] = 185408, + [SMALL_STATE(3511)] = 185461, + [SMALL_STATE(3512)] = 185508, + [SMALL_STATE(3513)] = 185557, + [SMALL_STATE(3514)] = 185604, + [SMALL_STATE(3515)] = 185651, + [SMALL_STATE(3516)] = 185698, + [SMALL_STATE(3517)] = 185745, + [SMALL_STATE(3518)] = 185792, + [SMALL_STATE(3519)] = 185839, + [SMALL_STATE(3520)] = 185888, + [SMALL_STATE(3521)] = 185937, + [SMALL_STATE(3522)] = 186004, + [SMALL_STATE(3523)] = 186051, + [SMALL_STATE(3524)] = 186100, + [SMALL_STATE(3525)] = 186147, + [SMALL_STATE(3526)] = 186240, + [SMALL_STATE(3527)] = 186287, + [SMALL_STATE(3528)] = 186334, + [SMALL_STATE(3529)] = 186381, + [SMALL_STATE(3530)] = 186428, + [SMALL_STATE(3531)] = 186475, + [SMALL_STATE(3532)] = 186522, + [SMALL_STATE(3533)] = 186569, + [SMALL_STATE(3534)] = 186616, + [SMALL_STATE(3535)] = 186663, + [SMALL_STATE(3536)] = 186756, + [SMALL_STATE(3537)] = 186803, + [SMALL_STATE(3538)] = 186850, + [SMALL_STATE(3539)] = 186897, + [SMALL_STATE(3540)] = 186950, + [SMALL_STATE(3541)] = 186997, + [SMALL_STATE(3542)] = 187050, + [SMALL_STATE(3543)] = 187097, + [SMALL_STATE(3544)] = 187144, + [SMALL_STATE(3545)] = 187237, + [SMALL_STATE(3546)] = 187284, + [SMALL_STATE(3547)] = 187332, + [SMALL_STATE(3548)] = 187384, + [SMALL_STATE(3549)] = 187432, + [SMALL_STATE(3550)] = 187484, + [SMALL_STATE(3551)] = 187552, + [SMALL_STATE(3552)] = 187600, + [SMALL_STATE(3553)] = 187652, + [SMALL_STATE(3554)] = 187700, + [SMALL_STATE(3555)] = 187766, + [SMALL_STATE(3556)] = 187834, + [SMALL_STATE(3557)] = 187898, + [SMALL_STATE(3558)] = 187950, + [SMALL_STATE(3559)] = 188002, + [SMALL_STATE(3560)] = 188054, + [SMALL_STATE(3561)] = 188102, + [SMALL_STATE(3562)] = 188154, + [SMALL_STATE(3563)] = 188206, + [SMALL_STATE(3564)] = 188260, + [SMALL_STATE(3565)] = 188312, + [SMALL_STATE(3566)] = 188364, + [SMALL_STATE(3567)] = 188454, + [SMALL_STATE(3568)] = 188518, + [SMALL_STATE(3569)] = 188584, + [SMALL_STATE(3570)] = 188648, + [SMALL_STATE(3571)] = 188700, + [SMALL_STATE(3572)] = 188752, + [SMALL_STATE(3573)] = 188816, + [SMALL_STATE(3574)] = 188882, + [SMALL_STATE(3575)] = 188950, + [SMALL_STATE(3576)] = 189002, + [SMALL_STATE(3577)] = 189052, + [SMALL_STATE(3578)] = 189120, + [SMALL_STATE(3579)] = 189168, + [SMALL_STATE(3580)] = 189216, + [SMALL_STATE(3581)] = 189280, + [SMALL_STATE(3582)] = 189332, + [SMALL_STATE(3583)] = 189384, + [SMALL_STATE(3584)] = 189434, + [SMALL_STATE(3585)] = 189486, + [SMALL_STATE(3586)] = 189576, + [SMALL_STATE(3587)] = 189666, + [SMALL_STATE(3588)] = 189716, + [SMALL_STATE(3589)] = 189766, + [SMALL_STATE(3590)] = 189856, + [SMALL_STATE(3591)] = 189908, + [SMALL_STATE(3592)] = 189960, + [SMALL_STATE(3593)] = 190008, + [SMALL_STATE(3594)] = 190060, + [SMALL_STATE(3595)] = 190108, + [SMALL_STATE(3596)] = 190160, + [SMALL_STATE(3597)] = 190212, + [SMALL_STATE(3598)] = 190262, + [SMALL_STATE(3599)] = 190314, + [SMALL_STATE(3600)] = 190361, + [SMALL_STATE(3601)] = 190434, + [SMALL_STATE(3602)] = 190491, + [SMALL_STATE(3603)] = 190562, + [SMALL_STATE(3604)] = 190631, + [SMALL_STATE(3605)] = 190690, + [SMALL_STATE(3606)] = 190741, + [SMALL_STATE(3607)] = 190814, + [SMALL_STATE(3608)] = 190887, + [SMALL_STATE(3609)] = 190946, + [SMALL_STATE(3610)] = 190997, + [SMALL_STATE(3611)] = 191056, + [SMALL_STATE(3612)] = 191117, + [SMALL_STATE(3613)] = 191186, + [SMALL_STATE(3614)] = 191237, + [SMALL_STATE(3615)] = 191294, + [SMALL_STATE(3616)] = 191351, + [SMALL_STATE(3617)] = 191424, + [SMALL_STATE(3618)] = 191483, + [SMALL_STATE(3619)] = 191544, + [SMALL_STATE(3620)] = 191605, + [SMALL_STATE(3621)] = 191656, + [SMALL_STATE(3622)] = 191729, + [SMALL_STATE(3623)] = 191780, + [SMALL_STATE(3624)] = 191841, + [SMALL_STATE(3625)] = 191912, + [SMALL_STATE(3626)] = 191983, + [SMALL_STATE(3627)] = 192056, + [SMALL_STATE(3628)] = 192125, + [SMALL_STATE(3629)] = 192184, + [SMALL_STATE(3630)] = 192245, + [SMALL_STATE(3631)] = 192292, + [SMALL_STATE(3632)] = 192363, + [SMALL_STATE(3633)] = 192436, + [SMALL_STATE(3634)] = 192509, + [SMALL_STATE(3635)] = 192578, + [SMALL_STATE(3636)] = 192635, + [SMALL_STATE(3637)] = 192706, + [SMALL_STATE(3638)] = 192779, + [SMALL_STATE(3639)] = 192848, + [SMALL_STATE(3640)] = 192911, + [SMALL_STATE(3641)] = 192974, + [SMALL_STATE(3642)] = 193033, + [SMALL_STATE(3643)] = 193084, + [SMALL_STATE(3644)] = 193147, + [SMALL_STATE(3645)] = 193206, + [SMALL_STATE(3646)] = 193263, + [SMALL_STATE(3647)] = 193326, + [SMALL_STATE(3648)] = 193383, + [SMALL_STATE(3649)] = 193444, + [SMALL_STATE(3650)] = 193505, + [SMALL_STATE(3651)] = 193564, + [SMALL_STATE(3652)] = 193635, + [SMALL_STATE(3653)] = 193708, + [SMALL_STATE(3654)] = 193767, + [SMALL_STATE(3655)] = 193840, + [SMALL_STATE(3656)] = 193909, + [SMALL_STATE(3657)] = 193982, + [SMALL_STATE(3658)] = 194053, + [SMALL_STATE(3659)] = 194104, + [SMALL_STATE(3660)] = 194161, + [SMALL_STATE(3661)] = 194234, + [SMALL_STATE(3662)] = 194303, + [SMALL_STATE(3663)] = 194350, + [SMALL_STATE(3664)] = 194421, + [SMALL_STATE(3665)] = 194494, + [SMALL_STATE(3666)] = 194557, + [SMALL_STATE(3667)] = 194616, + [SMALL_STATE(3668)] = 194685, + [SMALL_STATE(3669)] = 194754, + [SMALL_STATE(3670)] = 194813, + [SMALL_STATE(3671)] = 194886, + [SMALL_STATE(3672)] = 194959, + [SMALL_STATE(3673)] = 195016, + [SMALL_STATE(3674)] = 195073, + [SMALL_STATE(3675)] = 195136, + [SMALL_STATE(3676)] = 195207, + [SMALL_STATE(3677)] = 195278, + [SMALL_STATE(3678)] = 195351, + [SMALL_STATE(3679)] = 195420, + [SMALL_STATE(3680)] = 195491, + [SMALL_STATE(3681)] = 195564, + [SMALL_STATE(3682)] = 195637, + [SMALL_STATE(3683)] = 195710, + [SMALL_STATE(3684)] = 195769, + [SMALL_STATE(3685)] = 195820, + [SMALL_STATE(3686)] = 195879, + [SMALL_STATE(3687)] = 195930, + [SMALL_STATE(3688)] = 195979, + [SMALL_STATE(3689)] = 196048, + [SMALL_STATE(3690)] = 196118, + [SMALL_STATE(3691)] = 196182, + [SMALL_STATE(3692)] = 196236, + [SMALL_STATE(3693)] = 196290, + [SMALL_STATE(3694)] = 196354, + [SMALL_STATE(3695)] = 196408, + [SMALL_STATE(3696)] = 196462, + [SMALL_STATE(3697)] = 196526, + [SMALL_STATE(3698)] = 196570, + [SMALL_STATE(3699)] = 196624, + [SMALL_STATE(3700)] = 196678, + [SMALL_STATE(3701)] = 196732, + [SMALL_STATE(3702)] = 196786, + [SMALL_STATE(3703)] = 196840, + [SMALL_STATE(3704)] = 196904, + [SMALL_STATE(3705)] = 196958, + [SMALL_STATE(3706)] = 197022, + [SMALL_STATE(3707)] = 197086, + [SMALL_STATE(3708)] = 197130, + [SMALL_STATE(3709)] = 197194, + [SMALL_STATE(3710)] = 197248, + [SMALL_STATE(3711)] = 197302, + [SMALL_STATE(3712)] = 197366, + [SMALL_STATE(3713)] = 197430, + [SMALL_STATE(3714)] = 197480, + [SMALL_STATE(3715)] = 197544, + [SMALL_STATE(3716)] = 197598, + [SMALL_STATE(3717)] = 197642, + [SMALL_STATE(3718)] = 197696, + [SMALL_STATE(3719)] = 197750, + [SMALL_STATE(3720)] = 197804, + [SMALL_STATE(3721)] = 197868, + [SMALL_STATE(3722)] = 197923, + [SMALL_STATE(3723)] = 197986, + [SMALL_STATE(3724)] = 198047, + [SMALL_STATE(3725)] = 198096, + [SMALL_STATE(3726)] = 198151, + [SMALL_STATE(3727)] = 198194, + [SMALL_STATE(3728)] = 198265, + [SMALL_STATE(3729)] = 198330, + [SMALL_STATE(3730)] = 198379, + [SMALL_STATE(3731)] = 198431, + [SMALL_STATE(3732)] = 198485, + [SMALL_STATE(3733)] = 198539, + [SMALL_STATE(3734)] = 198593, + [SMALL_STATE(3735)] = 198647, + [SMALL_STATE(3736)] = 198701, + [SMALL_STATE(3737)] = 198755, + [SMALL_STATE(3738)] = 198809, + [SMALL_STATE(3739)] = 198863, + [SMALL_STATE(3740)] = 198921, + [SMALL_STATE(3741)] = 198983, + [SMALL_STATE(3742)] = 199043, + [SMALL_STATE(3743)] = 199097, + [SMALL_STATE(3744)] = 199151, + [SMALL_STATE(3745)] = 199205, + [SMALL_STATE(3746)] = 199259, + [SMALL_STATE(3747)] = 199313, + [SMALL_STATE(3748)] = 199369, + [SMALL_STATE(3749)] = 199448, + [SMALL_STATE(3750)] = 199501, + [SMALL_STATE(3751)] = 199580, + [SMALL_STATE(3752)] = 199621, + [SMALL_STATE(3753)] = 199688, + [SMALL_STATE(3754)] = 199729, + [SMALL_STATE(3755)] = 199808, + [SMALL_STATE(3756)] = 199887, + [SMALL_STATE(3757)] = 199966, + [SMALL_STATE(3758)] = 200045, + [SMALL_STATE(3759)] = 200100, + [SMALL_STATE(3760)] = 200179, + [SMALL_STATE(3761)] = 200234, + [SMALL_STATE(3762)] = 200289, + [SMALL_STATE(3763)] = 200344, + [SMALL_STATE(3764)] = 200390, + [SMALL_STATE(3765)] = 200454, + [SMALL_STATE(3766)] = 200493, + [SMALL_STATE(3767)] = 200544, + [SMALL_STATE(3768)] = 200583, + [SMALL_STATE(3769)] = 200622, + [SMALL_STATE(3770)] = 200661, + [SMALL_STATE(3771)] = 200700, + [SMALL_STATE(3772)] = 200739, + [SMALL_STATE(3773)] = 200778, + [SMALL_STATE(3774)] = 200819, + [SMALL_STATE(3775)] = 200858, + [SMALL_STATE(3776)] = 200897, + [SMALL_STATE(3777)] = 200936, + [SMALL_STATE(3778)] = 200975, + [SMALL_STATE(3779)] = 201032, + [SMALL_STATE(3780)] = 201071, + [SMALL_STATE(3781)] = 201124, + [SMALL_STATE(3782)] = 201163, + [SMALL_STATE(3783)] = 201220, + [SMALL_STATE(3784)] = 201273, + [SMALL_STATE(3785)] = 201312, + [SMALL_STATE(3786)] = 201351, + [SMALL_STATE(3787)] = 201390, + [SMALL_STATE(3788)] = 201429, + [SMALL_STATE(3789)] = 201484, + [SMALL_STATE(3790)] = 201523, + [SMALL_STATE(3791)] = 201562, + [SMALL_STATE(3792)] = 201603, + [SMALL_STATE(3793)] = 201642, + [SMALL_STATE(3794)] = 201695, + [SMALL_STATE(3795)] = 201738, + [SMALL_STATE(3796)] = 201793, + [SMALL_STATE(3797)] = 201834, + [SMALL_STATE(3798)] = 201891, + [SMALL_STATE(3799)] = 201939, + [SMALL_STATE(3800)] = 201987, + [SMALL_STATE(3801)] = 202035, + [SMALL_STATE(3802)] = 202083, + [SMALL_STATE(3803)] = 202131, + [SMALL_STATE(3804)] = 202179, + [SMALL_STATE(3805)] = 202227, + [SMALL_STATE(3806)] = 202281, + [SMALL_STATE(3807)] = 202329, + [SMALL_STATE(3808)] = 202377, + [SMALL_STATE(3809)] = 202425, + [SMALL_STATE(3810)] = 202473, + [SMALL_STATE(3811)] = 202527, + [SMALL_STATE(3812)] = 202575, + [SMALL_STATE(3813)] = 202623, + [SMALL_STATE(3814)] = 202671, + [SMALL_STATE(3815)] = 202719, + [SMALL_STATE(3816)] = 202767, + [SMALL_STATE(3817)] = 202819, + [SMALL_STATE(3818)] = 202868, + [SMALL_STATE(3819)] = 202905, + [SMALL_STATE(3820)] = 202962, + [SMALL_STATE(3821)] = 203011, + [SMALL_STATE(3822)] = 203060, + [SMALL_STATE(3823)] = 203109, + [SMALL_STATE(3824)] = 203158, + [SMALL_STATE(3825)] = 203207, + [SMALL_STATE(3826)] = 203257, + [SMALL_STATE(3827)] = 203307, + [SMALL_STATE(3828)] = 203345, + [SMALL_STATE(3829)] = 203399, + [SMALL_STATE(3830)] = 203449, + [SMALL_STATE(3831)] = 203491, + [SMALL_STATE(3832)] = 203541, + [SMALL_STATE(3833)] = 203591, + [SMALL_STATE(3834)] = 203645, + [SMALL_STATE(3835)] = 203699, + [SMALL_STATE(3836)] = 203745, + [SMALL_STATE(3837)] = 203788, + [SMALL_STATE(3838)] = 203831, + [SMALL_STATE(3839)] = 203874, + [SMALL_STATE(3840)] = 203917, + [SMALL_STATE(3841)] = 203960, + [SMALL_STATE(3842)] = 204003, + [SMALL_STATE(3843)] = 204046, + [SMALL_STATE(3844)] = 204089, + [SMALL_STATE(3845)] = 204132, + [SMALL_STATE(3846)] = 204175, + [SMALL_STATE(3847)] = 204218, + [SMALL_STATE(3848)] = 204261, + [SMALL_STATE(3849)] = 204304, + [SMALL_STATE(3850)] = 204347, + [SMALL_STATE(3851)] = 204390, + [SMALL_STATE(3852)] = 204435, + [SMALL_STATE(3853)] = 204478, + [SMALL_STATE(3854)] = 204521, + [SMALL_STATE(3855)] = 204564, + [SMALL_STATE(3856)] = 204609, + [SMALL_STATE(3857)] = 204652, + [SMALL_STATE(3858)] = 204695, + [SMALL_STATE(3859)] = 204738, + [SMALL_STATE(3860)] = 204781, + [SMALL_STATE(3861)] = 204824, + [SMALL_STATE(3862)] = 204867, + [SMALL_STATE(3863)] = 204910, + [SMALL_STATE(3864)] = 204955, + [SMALL_STATE(3865)] = 204989, + [SMALL_STATE(3866)] = 205019, + [SMALL_STATE(3867)] = 205075, + [SMALL_STATE(3868)] = 205131, + [SMALL_STATE(3869)] = 205187, + [SMALL_STATE(3870)] = 205243, + [SMALL_STATE(3871)] = 205270, + [SMALL_STATE(3872)] = 205294, + [SMALL_STATE(3873)] = 205324, + [SMALL_STATE(3874)] = 205348, + [SMALL_STATE(3875)] = 205369, + [SMALL_STATE(3876)] = 205390, + [SMALL_STATE(3877)] = 205411, + [SMALL_STATE(3878)] = 205432, + [SMALL_STATE(3879)] = 205453, + [SMALL_STATE(3880)] = 205480, + [SMALL_STATE(3881)] = 205501, + [SMALL_STATE(3882)] = 205522, + [SMALL_STATE(3883)] = 205543, + [SMALL_STATE(3884)] = 205564, + [SMALL_STATE(3885)] = 205587, + [SMALL_STATE(3886)] = 205608, + [SMALL_STATE(3887)] = 205629, + [SMALL_STATE(3888)] = 205650, + [SMALL_STATE(3889)] = 205673, + [SMALL_STATE(3890)] = 205696, + [SMALL_STATE(3891)] = 205717, + [SMALL_STATE(3892)] = 205738, + [SMALL_STATE(3893)] = 205759, + [SMALL_STATE(3894)] = 205782, + [SMALL_STATE(3895)] = 205803, + [SMALL_STATE(3896)] = 205824, + [SMALL_STATE(3897)] = 205847, + [SMALL_STATE(3898)] = 205868, + [SMALL_STATE(3899)] = 205889, + [SMALL_STATE(3900)] = 205910, + [SMALL_STATE(3901)] = 205940, + [SMALL_STATE(3902)] = 205974, + [SMALL_STATE(3903)] = 206002, + [SMALL_STATE(3904)] = 206044, + [SMALL_STATE(3905)] = 206086, + [SMALL_STATE(3906)] = 206128, + [SMALL_STATE(3907)] = 206170, + [SMALL_STATE(3908)] = 206212, + [SMALL_STATE(3909)] = 206254, + [SMALL_STATE(3910)] = 206275, + [SMALL_STATE(3911)] = 206316, + [SMALL_STATE(3912)] = 206337, + [SMALL_STATE(3913)] = 206372, + [SMALL_STATE(3914)] = 206407, + [SMALL_STATE(3915)] = 206428, + [SMALL_STATE(3916)] = 206451, + [SMALL_STATE(3917)] = 206476, + [SMALL_STATE(3918)] = 206499, + [SMALL_STATE(3919)] = 206520, + [SMALL_STATE(3920)] = 206541, + [SMALL_STATE(3921)] = 206562, + [SMALL_STATE(3922)] = 206583, + [SMALL_STATE(3923)] = 206604, + [SMALL_STATE(3924)] = 206625, + [SMALL_STATE(3925)] = 206660, + [SMALL_STATE(3926)] = 206681, + [SMALL_STATE(3927)] = 206704, + [SMALL_STATE(3928)] = 206725, + [SMALL_STATE(3929)] = 206746, + [SMALL_STATE(3930)] = 206767, + [SMALL_STATE(3931)] = 206788, + [SMALL_STATE(3932)] = 206823, + [SMALL_STATE(3933)] = 206844, + [SMALL_STATE(3934)] = 206869, + [SMALL_STATE(3935)] = 206890, + [SMALL_STATE(3936)] = 206925, + [SMALL_STATE(3937)] = 206960, + [SMALL_STATE(3938)] = 206981, + [SMALL_STATE(3939)] = 207002, + [SMALL_STATE(3940)] = 207043, + [SMALL_STATE(3941)] = 207078, + [SMALL_STATE(3942)] = 207113, + [SMALL_STATE(3943)] = 207148, + [SMALL_STATE(3944)] = 207169, + [SMALL_STATE(3945)] = 207204, + [SMALL_STATE(3946)] = 207225, + [SMALL_STATE(3947)] = 207246, + [SMALL_STATE(3948)] = 207272, + [SMALL_STATE(3949)] = 207310, + [SMALL_STATE(3950)] = 207348, + [SMALL_STATE(3951)] = 207386, + [SMALL_STATE(3952)] = 207414, + [SMALL_STATE(3953)] = 207446, + [SMALL_STATE(3954)] = 207474, + [SMALL_STATE(3955)] = 207506, + [SMALL_STATE(3956)] = 207542, + [SMALL_STATE(3957)] = 207578, + [SMALL_STATE(3958)] = 207606, + [SMALL_STATE(3959)] = 207634, + [SMALL_STATE(3960)] = 207660, + [SMALL_STATE(3961)] = 207688, + [SMALL_STATE(3962)] = 207720, + [SMALL_STATE(3963)] = 207752, + [SMALL_STATE(3964)] = 207790, + [SMALL_STATE(3965)] = 207818, + [SMALL_STATE(3966)] = 207850, + [SMALL_STATE(3967)] = 207878, + [SMALL_STATE(3968)] = 207910, + [SMALL_STATE(3969)] = 207940, + [SMALL_STATE(3970)] = 207976, + [SMALL_STATE(3971)] = 208012, + [SMALL_STATE(3972)] = 208050, + [SMALL_STATE(3973)] = 208082, + [SMALL_STATE(3974)] = 208110, + [SMALL_STATE(3975)] = 208138, + [SMALL_STATE(3976)] = 208166, + [SMALL_STATE(3977)] = 208202, + [SMALL_STATE(3978)] = 208238, + [SMALL_STATE(3979)] = 208276, + [SMALL_STATE(3980)] = 208308, + [SMALL_STATE(3981)] = 208336, + [SMALL_STATE(3982)] = 208355, + [SMALL_STATE(3983)] = 208374, + [SMALL_STATE(3984)] = 208393, + [SMALL_STATE(3985)] = 208412, + [SMALL_STATE(3986)] = 208431, + [SMALL_STATE(3987)] = 208450, + [SMALL_STATE(3988)] = 208469, + [SMALL_STATE(3989)] = 208488, + [SMALL_STATE(3990)] = 208513, + [SMALL_STATE(3991)] = 208534, + [SMALL_STATE(3992)] = 208553, + [SMALL_STATE(3993)] = 208572, + [SMALL_STATE(3994)] = 208591, + [SMALL_STATE(3995)] = 208610, + [SMALL_STATE(3996)] = 208629, + [SMALL_STATE(3997)] = 208648, + [SMALL_STATE(3998)] = 208667, + [SMALL_STATE(3999)] = 208686, + [SMALL_STATE(4000)] = 208705, + [SMALL_STATE(4001)] = 208724, + [SMALL_STATE(4002)] = 208743, + [SMALL_STATE(4003)] = 208762, + [SMALL_STATE(4004)] = 208785, + [SMALL_STATE(4005)] = 208810, + [SMALL_STATE(4006)] = 208829, + [SMALL_STATE(4007)] = 208848, + [SMALL_STATE(4008)] = 208867, + [SMALL_STATE(4009)] = 208884, + [SMALL_STATE(4010)] = 208903, + [SMALL_STATE(4011)] = 208922, + [SMALL_STATE(4012)] = 208941, + [SMALL_STATE(4013)] = 208966, + [SMALL_STATE(4014)] = 208991, + [SMALL_STATE(4015)] = 209014, + [SMALL_STATE(4016)] = 209033, + [SMALL_STATE(4017)] = 209054, + [SMALL_STATE(4018)] = 209079, + [SMALL_STATE(4019)] = 209096, + [SMALL_STATE(4020)] = 209117, + [SMALL_STATE(4021)] = 209144, + [SMALL_STATE(4022)] = 209163, + [SMALL_STATE(4023)] = 209182, + [SMALL_STATE(4024)] = 209201, + [SMALL_STATE(4025)] = 209226, + [SMALL_STATE(4026)] = 209245, + [SMALL_STATE(4027)] = 209277, + [SMALL_STATE(4028)] = 209297, + [SMALL_STATE(4029)] = 209329, + [SMALL_STATE(4030)] = 209361, + [SMALL_STATE(4031)] = 209395, + [SMALL_STATE(4032)] = 209429, + [SMALL_STATE(4033)] = 209451, + [SMALL_STATE(4034)] = 209485, + [SMALL_STATE(4035)] = 209509, + [SMALL_STATE(4036)] = 209543, + [SMALL_STATE(4037)] = 209563, + [SMALL_STATE(4038)] = 209589, + [SMALL_STATE(4039)] = 209623, + [SMALL_STATE(4040)] = 209641, + [SMALL_STATE(4041)] = 209667, + [SMALL_STATE(4042)] = 209689, + [SMALL_STATE(4043)] = 209719, + [SMALL_STATE(4044)] = 209745, + [SMALL_STATE(4045)] = 209767, + [SMALL_STATE(4046)] = 209799, + [SMALL_STATE(4047)] = 209823, + [SMALL_STATE(4048)] = 209843, + [SMALL_STATE(4049)] = 209869, + [SMALL_STATE(4050)] = 209901, + [SMALL_STATE(4051)] = 209935, + [SMALL_STATE(4052)] = 209969, + [SMALL_STATE(4053)] = 209995, + [SMALL_STATE(4054)] = 210021, + [SMALL_STATE(4055)] = 210055, + [SMALL_STATE(4056)] = 210079, + [SMALL_STATE(4057)] = 210101, + [SMALL_STATE(4058)] = 210135, + [SMALL_STATE(4059)] = 210161, + [SMALL_STATE(4060)] = 210181, + [SMALL_STATE(4061)] = 210201, + [SMALL_STATE(4062)] = 210233, + [SMALL_STATE(4063)] = 210253, + [SMALL_STATE(4064)] = 210279, + [SMALL_STATE(4065)] = 210305, + [SMALL_STATE(4066)] = 210339, + [SMALL_STATE(4067)] = 210365, + [SMALL_STATE(4068)] = 210385, + [SMALL_STATE(4069)] = 210419, + [SMALL_STATE(4070)] = 210445, + [SMALL_STATE(4071)] = 210473, + [SMALL_STATE(4072)] = 210499, + [SMALL_STATE(4073)] = 210525, + [SMALL_STATE(4074)] = 210551, + [SMALL_STATE(4075)] = 210585, + [SMALL_STATE(4076)] = 210619, + [SMALL_STATE(4077)] = 210653, + [SMALL_STATE(4078)] = 210673, + [SMALL_STATE(4079)] = 210702, + [SMALL_STATE(4080)] = 210731, + [SMALL_STATE(4081)] = 210762, + [SMALL_STATE(4082)] = 210791, + [SMALL_STATE(4083)] = 210816, + [SMALL_STATE(4084)] = 210839, + [SMALL_STATE(4085)] = 210864, + [SMALL_STATE(4086)] = 210883, + [SMALL_STATE(4087)] = 210912, + [SMALL_STATE(4088)] = 210943, + [SMALL_STATE(4089)] = 210972, + [SMALL_STATE(4090)] = 210997, + [SMALL_STATE(4091)] = 211028, + [SMALL_STATE(4092)] = 211057, + [SMALL_STATE(4093)] = 211088, + [SMALL_STATE(4094)] = 211113, [SMALL_STATE(4095)] = 211144, - [SMALL_STATE(4096)] = 211169, + [SMALL_STATE(4096)] = 211175, [SMALL_STATE(4097)] = 211198, - [SMALL_STATE(4098)] = 211227, - [SMALL_STATE(4099)] = 211256, - [SMALL_STATE(4100)] = 211285, - [SMALL_STATE(4101)] = 211310, - [SMALL_STATE(4102)] = 211339, - [SMALL_STATE(4103)] = 211368, - [SMALL_STATE(4104)] = 211399, - [SMALL_STATE(4105)] = 211428, - [SMALL_STATE(4106)] = 211457, - [SMALL_STATE(4107)] = 211482, - [SMALL_STATE(4108)] = 211511, - [SMALL_STATE(4109)] = 211540, - [SMALL_STATE(4110)] = 211569, - [SMALL_STATE(4111)] = 211598, - [SMALL_STATE(4112)] = 211629, - [SMALL_STATE(4113)] = 211652, - [SMALL_STATE(4114)] = 211675, - [SMALL_STATE(4115)] = 211698, - [SMALL_STATE(4116)] = 211729, - [SMALL_STATE(4117)] = 211760, - [SMALL_STATE(4118)] = 211789, - [SMALL_STATE(4119)] = 211812, - [SMALL_STATE(4120)] = 211835, - [SMALL_STATE(4121)] = 211858, - [SMALL_STATE(4122)] = 211881, - [SMALL_STATE(4123)] = 211912, - [SMALL_STATE(4124)] = 211935, - [SMALL_STATE(4125)] = 211958, - [SMALL_STATE(4126)] = 211989, - [SMALL_STATE(4127)] = 212008, - [SMALL_STATE(4128)] = 212037, - [SMALL_STATE(4129)] = 212056, - [SMALL_STATE(4130)] = 212081, - [SMALL_STATE(4131)] = 212104, - [SMALL_STATE(4132)] = 212133, - [SMALL_STATE(4133)] = 212162, - [SMALL_STATE(4134)] = 212191, - [SMALL_STATE(4135)] = 212220, - [SMALL_STATE(4136)] = 212243, - [SMALL_STATE(4137)] = 212262, - [SMALL_STATE(4138)] = 212291, - [SMALL_STATE(4139)] = 212310, - [SMALL_STATE(4140)] = 212341, - [SMALL_STATE(4141)] = 212372, - [SMALL_STATE(4142)] = 212403, - [SMALL_STATE(4143)] = 212434, - [SMALL_STATE(4144)] = 212465, - [SMALL_STATE(4145)] = 212488, - [SMALL_STATE(4146)] = 212513, - [SMALL_STATE(4147)] = 212544, - [SMALL_STATE(4148)] = 212567, - [SMALL_STATE(4149)] = 212592, - [SMALL_STATE(4150)] = 212623, - [SMALL_STATE(4151)] = 212654, - [SMALL_STATE(4152)] = 212669, - [SMALL_STATE(4153)] = 212700, - [SMALL_STATE(4154)] = 212719, - [SMALL_STATE(4155)] = 212750, - [SMALL_STATE(4156)] = 212781, - [SMALL_STATE(4157)] = 212796, - [SMALL_STATE(4158)] = 212825, - [SMALL_STATE(4159)] = 212840, - [SMALL_STATE(4160)] = 212869, - [SMALL_STATE(4161)] = 212898, - [SMALL_STATE(4162)] = 212927, - [SMALL_STATE(4163)] = 212956, - [SMALL_STATE(4164)] = 212981, - [SMALL_STATE(4165)] = 213010, - [SMALL_STATE(4166)] = 213039, - [SMALL_STATE(4167)] = 213068, - [SMALL_STATE(4168)] = 213083, - [SMALL_STATE(4169)] = 213100, - [SMALL_STATE(4170)] = 213129, - [SMALL_STATE(4171)] = 213158, - [SMALL_STATE(4172)] = 213187, - [SMALL_STATE(4173)] = 213216, - [SMALL_STATE(4174)] = 213245, - [SMALL_STATE(4175)] = 213274, - [SMALL_STATE(4176)] = 213303, - [SMALL_STATE(4177)] = 213322, - [SMALL_STATE(4178)] = 213353, - [SMALL_STATE(4179)] = 213378, - [SMALL_STATE(4180)] = 213397, - [SMALL_STATE(4181)] = 213428, - [SMALL_STATE(4182)] = 213459, - [SMALL_STATE(4183)] = 213478, - [SMALL_STATE(4184)] = 213509, - [SMALL_STATE(4185)] = 213532, - [SMALL_STATE(4186)] = 213555, - [SMALL_STATE(4187)] = 213586, - [SMALL_STATE(4188)] = 213601, - [SMALL_STATE(4189)] = 213616, - [SMALL_STATE(4190)] = 213641, - [SMALL_STATE(4191)] = 213666, - [SMALL_STATE(4192)] = 213691, - [SMALL_STATE(4193)] = 213710, - [SMALL_STATE(4194)] = 213731, - [SMALL_STATE(4195)] = 213760, - [SMALL_STATE(4196)] = 213789, - [SMALL_STATE(4197)] = 213813, - [SMALL_STATE(4198)] = 213827, - [SMALL_STATE(4199)] = 213841, - [SMALL_STATE(4200)] = 213857, - [SMALL_STATE(4201)] = 213877, - [SMALL_STATE(4202)] = 213897, - [SMALL_STATE(4203)] = 213917, - [SMALL_STATE(4204)] = 213933, - [SMALL_STATE(4205)] = 213953, - [SMALL_STATE(4206)] = 213973, - [SMALL_STATE(4207)] = 213991, - [SMALL_STATE(4208)] = 214009, - [SMALL_STATE(4209)] = 214023, - [SMALL_STATE(4210)] = 214037, - [SMALL_STATE(4211)] = 214051, - [SMALL_STATE(4212)] = 214065, - [SMALL_STATE(4213)] = 214079, - [SMALL_STATE(4214)] = 214095, - [SMALL_STATE(4215)] = 214109, - [SMALL_STATE(4216)] = 214125, - [SMALL_STATE(4217)] = 214139, - [SMALL_STATE(4218)] = 214153, - [SMALL_STATE(4219)] = 214167, - [SMALL_STATE(4220)] = 214181, - [SMALL_STATE(4221)] = 214195, - [SMALL_STATE(4222)] = 214219, - [SMALL_STATE(4223)] = 214239, - [SMALL_STATE(4224)] = 214253, - [SMALL_STATE(4225)] = 214269, - [SMALL_STATE(4226)] = 214283, - [SMALL_STATE(4227)] = 214299, - [SMALL_STATE(4228)] = 214313, - [SMALL_STATE(4229)] = 214329, - [SMALL_STATE(4230)] = 214345, - [SMALL_STATE(4231)] = 214359, - [SMALL_STATE(4232)] = 214379, - [SMALL_STATE(4233)] = 214393, - [SMALL_STATE(4234)] = 214407, - [SMALL_STATE(4235)] = 214421, - [SMALL_STATE(4236)] = 214435, - [SMALL_STATE(4237)] = 214451, - [SMALL_STATE(4238)] = 214465, - [SMALL_STATE(4239)] = 214485, - [SMALL_STATE(4240)] = 214501, - [SMALL_STATE(4241)] = 214525, - [SMALL_STATE(4242)] = 214539, - [SMALL_STATE(4243)] = 214553, - [SMALL_STATE(4244)] = 214571, - [SMALL_STATE(4245)] = 214585, - [SMALL_STATE(4246)] = 214599, - [SMALL_STATE(4247)] = 214613, - [SMALL_STATE(4248)] = 214629, - [SMALL_STATE(4249)] = 214649, - [SMALL_STATE(4250)] = 214663, - [SMALL_STATE(4251)] = 214677, - [SMALL_STATE(4252)] = 214691, - [SMALL_STATE(4253)] = 214705, - [SMALL_STATE(4254)] = 214719, - [SMALL_STATE(4255)] = 214737, - [SMALL_STATE(4256)] = 214755, - [SMALL_STATE(4257)] = 214773, - [SMALL_STATE(4258)] = 214787, - [SMALL_STATE(4259)] = 214803, - [SMALL_STATE(4260)] = 214823, - [SMALL_STATE(4261)] = 214843, - [SMALL_STATE(4262)] = 214868, - [SMALL_STATE(4263)] = 214893, - [SMALL_STATE(4264)] = 214908, - [SMALL_STATE(4265)] = 214925, - [SMALL_STATE(4266)] = 214942, - [SMALL_STATE(4267)] = 214957, - [SMALL_STATE(4268)] = 214970, - [SMALL_STATE(4269)] = 214989, - [SMALL_STATE(4270)] = 215014, - [SMALL_STATE(4271)] = 215039, - [SMALL_STATE(4272)] = 215054, - [SMALL_STATE(4273)] = 215073, - [SMALL_STATE(4274)] = 215092, - [SMALL_STATE(4275)] = 215111, - [SMALL_STATE(4276)] = 215136, - [SMALL_STATE(4277)] = 215155, - [SMALL_STATE(4278)] = 215180, - [SMALL_STATE(4279)] = 215205, - [SMALL_STATE(4280)] = 215220, - [SMALL_STATE(4281)] = 215245, - [SMALL_STATE(4282)] = 215264, - [SMALL_STATE(4283)] = 215289, - [SMALL_STATE(4284)] = 215304, - [SMALL_STATE(4285)] = 215317, - [SMALL_STATE(4286)] = 215338, - [SMALL_STATE(4287)] = 215351, - [SMALL_STATE(4288)] = 215376, - [SMALL_STATE(4289)] = 215395, - [SMALL_STATE(4290)] = 215408, - [SMALL_STATE(4291)] = 215429, - [SMALL_STATE(4292)] = 215442, - [SMALL_STATE(4293)] = 215455, - [SMALL_STATE(4294)] = 215480, - [SMALL_STATE(4295)] = 215493, - [SMALL_STATE(4296)] = 215508, - [SMALL_STATE(4297)] = 215521, - [SMALL_STATE(4298)] = 215534, - [SMALL_STATE(4299)] = 215559, - [SMALL_STATE(4300)] = 215574, - [SMALL_STATE(4301)] = 215593, - [SMALL_STATE(4302)] = 215618, - [SMALL_STATE(4303)] = 215631, - [SMALL_STATE(4304)] = 215656, - [SMALL_STATE(4305)] = 215671, - [SMALL_STATE(4306)] = 215696, - [SMALL_STATE(4307)] = 215721, - [SMALL_STATE(4308)] = 215738, - [SMALL_STATE(4309)] = 215763, - [SMALL_STATE(4310)] = 215788, - [SMALL_STATE(4311)] = 215801, - [SMALL_STATE(4312)] = 215826, - [SMALL_STATE(4313)] = 215851, - [SMALL_STATE(4314)] = 215866, - [SMALL_STATE(4315)] = 215887, - [SMALL_STATE(4316)] = 215912, - [SMALL_STATE(4317)] = 215937, - [SMALL_STATE(4318)] = 215956, - [SMALL_STATE(4319)] = 215979, - [SMALL_STATE(4320)] = 215992, - [SMALL_STATE(4321)] = 216013, - [SMALL_STATE(4322)] = 216038, - [SMALL_STATE(4323)] = 216055, - [SMALL_STATE(4324)] = 216068, - [SMALL_STATE(4325)] = 216089, - [SMALL_STATE(4326)] = 216110, - [SMALL_STATE(4327)] = 216127, - [SMALL_STATE(4328)] = 216152, - [SMALL_STATE(4329)] = 216171, - [SMALL_STATE(4330)] = 216186, - [SMALL_STATE(4331)] = 216203, - [SMALL_STATE(4332)] = 216222, - [SMALL_STATE(4333)] = 216239, - [SMALL_STATE(4334)] = 216258, - [SMALL_STATE(4335)] = 216275, - [SMALL_STATE(4336)] = 216292, - [SMALL_STATE(4337)] = 216309, - [SMALL_STATE(4338)] = 216322, - [SMALL_STATE(4339)] = 216339, - [SMALL_STATE(4340)] = 216356, - [SMALL_STATE(4341)] = 216373, - [SMALL_STATE(4342)] = 216390, - [SMALL_STATE(4343)] = 216415, - [SMALL_STATE(4344)] = 216432, - [SMALL_STATE(4345)] = 216457, - [SMALL_STATE(4346)] = 216482, - [SMALL_STATE(4347)] = 216497, - [SMALL_STATE(4348)] = 216516, - [SMALL_STATE(4349)] = 216529, - [SMALL_STATE(4350)] = 216546, - [SMALL_STATE(4351)] = 216563, - [SMALL_STATE(4352)] = 216578, - [SMALL_STATE(4353)] = 216597, - [SMALL_STATE(4354)] = 216614, - [SMALL_STATE(4355)] = 216631, - [SMALL_STATE(4356)] = 216650, - [SMALL_STATE(4357)] = 216665, - [SMALL_STATE(4358)] = 216690, - [SMALL_STATE(4359)] = 216705, - [SMALL_STATE(4360)] = 216730, - [SMALL_STATE(4361)] = 216751, - [SMALL_STATE(4362)] = 216770, - [SMALL_STATE(4363)] = 216795, - [SMALL_STATE(4364)] = 216812, - [SMALL_STATE(4365)] = 216837, - [SMALL_STATE(4366)] = 216856, - [SMALL_STATE(4367)] = 216875, - [SMALL_STATE(4368)] = 216900, - [SMALL_STATE(4369)] = 216925, - [SMALL_STATE(4370)] = 216950, - [SMALL_STATE(4371)] = 216969, - [SMALL_STATE(4372)] = 216984, - [SMALL_STATE(4373)] = 216999, - [SMALL_STATE(4374)] = 217024, + [SMALL_STATE(4098)] = 211223, + [SMALL_STATE(4099)] = 211252, + [SMALL_STATE(4100)] = 211283, + [SMALL_STATE(4101)] = 211314, + [SMALL_STATE(4102)] = 211343, + [SMALL_STATE(4103)] = 211372, + [SMALL_STATE(4104)] = 211403, + [SMALL_STATE(4105)] = 211420, + [SMALL_STATE(4106)] = 211451, + [SMALL_STATE(4107)] = 211466, + [SMALL_STATE(4108)] = 211495, + [SMALL_STATE(4109)] = 211520, + [SMALL_STATE(4110)] = 211549, + [SMALL_STATE(4111)] = 211578, + [SMALL_STATE(4112)] = 211597, + [SMALL_STATE(4113)] = 211628, + [SMALL_STATE(4114)] = 211657, + [SMALL_STATE(4115)] = 211686, + [SMALL_STATE(4116)] = 211715, + [SMALL_STATE(4117)] = 211730, + [SMALL_STATE(4118)] = 211753, + [SMALL_STATE(4119)] = 211772, + [SMALL_STATE(4120)] = 211801, + [SMALL_STATE(4121)] = 211830, + [SMALL_STATE(4122)] = 211859, + [SMALL_STATE(4123)] = 211888, + [SMALL_STATE(4124)] = 211907, + [SMALL_STATE(4125)] = 211926, + [SMALL_STATE(4126)] = 211941, + [SMALL_STATE(4127)] = 211960, + [SMALL_STATE(4128)] = 211975, + [SMALL_STATE(4129)] = 212004, + [SMALL_STATE(4130)] = 212023, + [SMALL_STATE(4131)] = 212052, + [SMALL_STATE(4132)] = 212081, + [SMALL_STATE(4133)] = 212096, + [SMALL_STATE(4134)] = 212125, + [SMALL_STATE(4135)] = 212154, + [SMALL_STATE(4136)] = 212185, + [SMALL_STATE(4137)] = 212214, + [SMALL_STATE(4138)] = 212243, + [SMALL_STATE(4139)] = 212268, + [SMALL_STATE(4140)] = 212297, + [SMALL_STATE(4141)] = 212322, + [SMALL_STATE(4142)] = 212345, + [SMALL_STATE(4143)] = 212368, + [SMALL_STATE(4144)] = 212397, + [SMALL_STATE(4145)] = 212426, + [SMALL_STATE(4146)] = 212455, + [SMALL_STATE(4147)] = 212484, + [SMALL_STATE(4148)] = 212513, + [SMALL_STATE(4149)] = 212542, + [SMALL_STATE(4150)] = 212573, + [SMALL_STATE(4151)] = 212596, + [SMALL_STATE(4152)] = 212621, + [SMALL_STATE(4153)] = 212652, + [SMALL_STATE(4154)] = 212677, + [SMALL_STATE(4155)] = 212708, + [SMALL_STATE(4156)] = 212733, + [SMALL_STATE(4157)] = 212752, + [SMALL_STATE(4158)] = 212771, + [SMALL_STATE(4159)] = 212794, + [SMALL_STATE(4160)] = 212819, + [SMALL_STATE(4161)] = 212848, + [SMALL_STATE(4162)] = 212877, + [SMALL_STATE(4163)] = 212906, + [SMALL_STATE(4164)] = 212935, + [SMALL_STATE(4165)] = 212964, + [SMALL_STATE(4166)] = 212993, + [SMALL_STATE(4167)] = 213016, + [SMALL_STATE(4168)] = 213047, + [SMALL_STATE(4169)] = 213070, + [SMALL_STATE(4170)] = 213095, + [SMALL_STATE(4171)] = 213118, + [SMALL_STATE(4172)] = 213147, + [SMALL_STATE(4173)] = 213170, + [SMALL_STATE(4174)] = 213199, + [SMALL_STATE(4175)] = 213218, + [SMALL_STATE(4176)] = 213233, + [SMALL_STATE(4177)] = 213248, + [SMALL_STATE(4178)] = 213271, + [SMALL_STATE(4179)] = 213302, + [SMALL_STATE(4180)] = 213327, + [SMALL_STATE(4181)] = 213342, + [SMALL_STATE(4182)] = 213365, + [SMALL_STATE(4183)] = 213388, + [SMALL_STATE(4184)] = 213419, + [SMALL_STATE(4185)] = 213440, + [SMALL_STATE(4186)] = 213465, + [SMALL_STATE(4187)] = 213488, + [SMALL_STATE(4188)] = 213513, + [SMALL_STATE(4189)] = 213542, + [SMALL_STATE(4190)] = 213573, + [SMALL_STATE(4191)] = 213604, + [SMALL_STATE(4192)] = 213633, + [SMALL_STATE(4193)] = 213650, + [SMALL_STATE(4194)] = 213681, + [SMALL_STATE(4195)] = 213712, + [SMALL_STATE(4196)] = 213735, + [SMALL_STATE(4197)] = 213755, + [SMALL_STATE(4198)] = 213771, + [SMALL_STATE(4199)] = 213785, + [SMALL_STATE(4200)] = 213799, + [SMALL_STATE(4201)] = 213813, + [SMALL_STATE(4202)] = 213827, + [SMALL_STATE(4203)] = 213841, + [SMALL_STATE(4204)] = 213855, + [SMALL_STATE(4205)] = 213879, + [SMALL_STATE(4206)] = 213893, + [SMALL_STATE(4207)] = 213907, + [SMALL_STATE(4208)] = 213925, + [SMALL_STATE(4209)] = 213943, + [SMALL_STATE(4210)] = 213959, + [SMALL_STATE(4211)] = 213973, + [SMALL_STATE(4212)] = 213989, + [SMALL_STATE(4213)] = 214003, + [SMALL_STATE(4214)] = 214017, + [SMALL_STATE(4215)] = 214041, + [SMALL_STATE(4216)] = 214055, + [SMALL_STATE(4217)] = 214075, + [SMALL_STATE(4218)] = 214095, + [SMALL_STATE(4219)] = 214109, + [SMALL_STATE(4220)] = 214123, + [SMALL_STATE(4221)] = 214143, + [SMALL_STATE(4222)] = 214159, + [SMALL_STATE(4223)] = 214179, + [SMALL_STATE(4224)] = 214193, + [SMALL_STATE(4225)] = 214209, + [SMALL_STATE(4226)] = 214223, + [SMALL_STATE(4227)] = 214243, + [SMALL_STATE(4228)] = 214263, + [SMALL_STATE(4229)] = 214277, + [SMALL_STATE(4230)] = 214291, + [SMALL_STATE(4231)] = 214305, + [SMALL_STATE(4232)] = 214323, + [SMALL_STATE(4233)] = 214337, + [SMALL_STATE(4234)] = 214351, + [SMALL_STATE(4235)] = 214367, + [SMALL_STATE(4236)] = 214381, + [SMALL_STATE(4237)] = 214395, + [SMALL_STATE(4238)] = 214413, + [SMALL_STATE(4239)] = 214429, + [SMALL_STATE(4240)] = 214445, + [SMALL_STATE(4241)] = 214463, + [SMALL_STATE(4242)] = 214483, + [SMALL_STATE(4243)] = 214499, + [SMALL_STATE(4244)] = 214515, + [SMALL_STATE(4245)] = 214529, + [SMALL_STATE(4246)] = 214543, + [SMALL_STATE(4247)] = 214563, + [SMALL_STATE(4248)] = 214577, + [SMALL_STATE(4249)] = 214591, + [SMALL_STATE(4250)] = 214611, + [SMALL_STATE(4251)] = 214625, + [SMALL_STATE(4252)] = 214649, + [SMALL_STATE(4253)] = 214663, + [SMALL_STATE(4254)] = 214679, + [SMALL_STATE(4255)] = 214693, + [SMALL_STATE(4256)] = 214707, + [SMALL_STATE(4257)] = 214723, + [SMALL_STATE(4258)] = 214743, + [SMALL_STATE(4259)] = 214757, + [SMALL_STATE(4260)] = 214775, + [SMALL_STATE(4261)] = 214789, + [SMALL_STATE(4262)] = 214806, + [SMALL_STATE(4263)] = 214831, + [SMALL_STATE(4264)] = 214848, + [SMALL_STATE(4265)] = 214873, + [SMALL_STATE(4266)] = 214892, + [SMALL_STATE(4267)] = 214917, + [SMALL_STATE(4268)] = 214942, + [SMALL_STATE(4269)] = 214967, + [SMALL_STATE(4270)] = 214992, + [SMALL_STATE(4271)] = 215017, + [SMALL_STATE(4272)] = 215032, + [SMALL_STATE(4273)] = 215051, + [SMALL_STATE(4274)] = 215076, + [SMALL_STATE(4275)] = 215089, + [SMALL_STATE(4276)] = 215102, + [SMALL_STATE(4277)] = 215115, + [SMALL_STATE(4278)] = 215140, + [SMALL_STATE(4279)] = 215159, + [SMALL_STATE(4280)] = 215174, + [SMALL_STATE(4281)] = 215191, + [SMALL_STATE(4282)] = 215206, + [SMALL_STATE(4283)] = 215231, + [SMALL_STATE(4284)] = 215248, + [SMALL_STATE(4285)] = 215265, + [SMALL_STATE(4286)] = 215282, + [SMALL_STATE(4287)] = 215299, + [SMALL_STATE(4288)] = 215316, + [SMALL_STATE(4289)] = 215341, + [SMALL_STATE(4290)] = 215358, + [SMALL_STATE(4291)] = 215375, + [SMALL_STATE(4292)] = 215392, + [SMALL_STATE(4293)] = 215409, + [SMALL_STATE(4294)] = 215428, + [SMALL_STATE(4295)] = 215445, + [SMALL_STATE(4296)] = 215464, + [SMALL_STATE(4297)] = 215485, + [SMALL_STATE(4298)] = 215510, + [SMALL_STATE(4299)] = 215535, + [SMALL_STATE(4300)] = 215552, + [SMALL_STATE(4301)] = 215567, + [SMALL_STATE(4302)] = 215586, + [SMALL_STATE(4303)] = 215611, + [SMALL_STATE(4304)] = 215632, + [SMALL_STATE(4305)] = 215649, + [SMALL_STATE(4306)] = 215662, + [SMALL_STATE(4307)] = 215679, + [SMALL_STATE(4308)] = 215698, + [SMALL_STATE(4309)] = 215723, + [SMALL_STATE(4310)] = 215742, + [SMALL_STATE(4311)] = 215761, + [SMALL_STATE(4312)] = 215776, + [SMALL_STATE(4313)] = 215793, + [SMALL_STATE(4314)] = 215808, + [SMALL_STATE(4315)] = 215825, + [SMALL_STATE(4316)] = 215844, + [SMALL_STATE(4317)] = 215859, + [SMALL_STATE(4318)] = 215876, + [SMALL_STATE(4319)] = 215895, + [SMALL_STATE(4320)] = 215910, + [SMALL_STATE(4321)] = 215923, + [SMALL_STATE(4322)] = 215938, + [SMALL_STATE(4323)] = 215963, + [SMALL_STATE(4324)] = 215980, + [SMALL_STATE(4325)] = 216001, + [SMALL_STATE(4326)] = 216016, + [SMALL_STATE(4327)] = 216041, + [SMALL_STATE(4328)] = 216066, + [SMALL_STATE(4329)] = 216081, + [SMALL_STATE(4330)] = 216094, + [SMALL_STATE(4331)] = 216119, + [SMALL_STATE(4332)] = 216144, + [SMALL_STATE(4333)] = 216169, + [SMALL_STATE(4334)] = 216194, + [SMALL_STATE(4335)] = 216207, + [SMALL_STATE(4336)] = 216232, + [SMALL_STATE(4337)] = 216257, + [SMALL_STATE(4338)] = 216282, + [SMALL_STATE(4339)] = 216307, + [SMALL_STATE(4340)] = 216324, + [SMALL_STATE(4341)] = 216349, + [SMALL_STATE(4342)] = 216374, + [SMALL_STATE(4343)] = 216389, + [SMALL_STATE(4344)] = 216408, + [SMALL_STATE(4345)] = 216433, + [SMALL_STATE(4346)] = 216452, + [SMALL_STATE(4347)] = 216471, + [SMALL_STATE(4348)] = 216496, + [SMALL_STATE(4349)] = 216521, + [SMALL_STATE(4350)] = 216542, + [SMALL_STATE(4351)] = 216567, + [SMALL_STATE(4352)] = 216592, + [SMALL_STATE(4353)] = 216607, + [SMALL_STATE(4354)] = 216632, + [SMALL_STATE(4355)] = 216645, + [SMALL_STATE(4356)] = 216670, + [SMALL_STATE(4357)] = 216691, + [SMALL_STATE(4358)] = 216716, + [SMALL_STATE(4359)] = 216729, + [SMALL_STATE(4360)] = 216748, + [SMALL_STATE(4361)] = 216773, + [SMALL_STATE(4362)] = 216798, + [SMALL_STATE(4363)] = 216811, + [SMALL_STATE(4364)] = 216824, + [SMALL_STATE(4365)] = 216843, + [SMALL_STATE(4366)] = 216862, + [SMALL_STATE(4367)] = 216877, + [SMALL_STATE(4368)] = 216896, + [SMALL_STATE(4369)] = 216921, + [SMALL_STATE(4370)] = 216946, + [SMALL_STATE(4371)] = 216971, + [SMALL_STATE(4372)] = 216994, + [SMALL_STATE(4373)] = 217015, + [SMALL_STATE(4374)] = 217028, [SMALL_STATE(4375)] = 217041, - [SMALL_STATE(4376)] = 217066, - [SMALL_STATE(4377)] = 217091, - [SMALL_STATE(4378)] = 217112, - [SMALL_STATE(4379)] = 217137, - [SMALL_STATE(4380)] = 217154, - [SMALL_STATE(4381)] = 217173, - [SMALL_STATE(4382)] = 217198, - [SMALL_STATE(4383)] = 217223, - [SMALL_STATE(4384)] = 217248, - [SMALL_STATE(4385)] = 217265, - [SMALL_STATE(4386)] = 217282, - [SMALL_STATE(4387)] = 217299, - [SMALL_STATE(4388)] = 217312, - [SMALL_STATE(4389)] = 217337, - [SMALL_STATE(4390)] = 217362, - [SMALL_STATE(4391)] = 217383, - [SMALL_STATE(4392)] = 217404, - [SMALL_STATE(4393)] = 217419, - [SMALL_STATE(4394)] = 217444, - [SMALL_STATE(4395)] = 217469, - [SMALL_STATE(4396)] = 217494, - [SMALL_STATE(4397)] = 217519, - [SMALL_STATE(4398)] = 217544, - [SMALL_STATE(4399)] = 217563, - [SMALL_STATE(4400)] = 217584, - [SMALL_STATE(4401)] = 217605, - [SMALL_STATE(4402)] = 217630, - [SMALL_STATE(4403)] = 217655, - [SMALL_STATE(4404)] = 217668, - [SMALL_STATE(4405)] = 217693, - [SMALL_STATE(4406)] = 217718, - [SMALL_STATE(4407)] = 217735, - [SMALL_STATE(4408)] = 217760, - [SMALL_STATE(4409)] = 217785, - [SMALL_STATE(4410)] = 217804, - [SMALL_STATE(4411)] = 217821, - [SMALL_STATE(4412)] = 217842, - [SMALL_STATE(4413)] = 217861, - [SMALL_STATE(4414)] = 217876, - [SMALL_STATE(4415)] = 217897, - [SMALL_STATE(4416)] = 217922, - [SMALL_STATE(4417)] = 217944, - [SMALL_STATE(4418)] = 217966, - [SMALL_STATE(4419)] = 217988, - [SMALL_STATE(4420)] = 218006, - [SMALL_STATE(4421)] = 218028, - [SMALL_STATE(4422)] = 218044, - [SMALL_STATE(4423)] = 218060, - [SMALL_STATE(4424)] = 218082, - [SMALL_STATE(4425)] = 218100, - [SMALL_STATE(4426)] = 218118, - [SMALL_STATE(4427)] = 218140, - [SMALL_STATE(4428)] = 218156, - [SMALL_STATE(4429)] = 218178, - [SMALL_STATE(4430)] = 218192, - [SMALL_STATE(4431)] = 218210, - [SMALL_STATE(4432)] = 218228, - [SMALL_STATE(4433)] = 218246, - [SMALL_STATE(4434)] = 218268, - [SMALL_STATE(4435)] = 218286, - [SMALL_STATE(4436)] = 218304, - [SMALL_STATE(4437)] = 218326, - [SMALL_STATE(4438)] = 218348, - [SMALL_STATE(4439)] = 218370, - [SMALL_STATE(4440)] = 218392, - [SMALL_STATE(4441)] = 218408, - [SMALL_STATE(4442)] = 218426, - [SMALL_STATE(4443)] = 218444, - [SMALL_STATE(4444)] = 218466, - [SMALL_STATE(4445)] = 218488, - [SMALL_STATE(4446)] = 218506, - [SMALL_STATE(4447)] = 218520, - [SMALL_STATE(4448)] = 218542, - [SMALL_STATE(4449)] = 218564, - [SMALL_STATE(4450)] = 218586, - [SMALL_STATE(4451)] = 218608, - [SMALL_STATE(4452)] = 218626, - [SMALL_STATE(4453)] = 218640, - [SMALL_STATE(4454)] = 218656, - [SMALL_STATE(4455)] = 218672, - [SMALL_STATE(4456)] = 218688, - [SMALL_STATE(4457)] = 218704, - [SMALL_STATE(4458)] = 218726, - [SMALL_STATE(4459)] = 218748, - [SMALL_STATE(4460)] = 218760, - [SMALL_STATE(4461)] = 218782, - [SMALL_STATE(4462)] = 218800, - [SMALL_STATE(4463)] = 218816, - [SMALL_STATE(4464)] = 218838, - [SMALL_STATE(4465)] = 218852, - [SMALL_STATE(4466)] = 218874, - [SMALL_STATE(4467)] = 218896, - [SMALL_STATE(4468)] = 218918, - [SMALL_STATE(4469)] = 218936, - [SMALL_STATE(4470)] = 218958, - [SMALL_STATE(4471)] = 218980, - [SMALL_STATE(4472)] = 219002, - [SMALL_STATE(4473)] = 219024, - [SMALL_STATE(4474)] = 219046, - [SMALL_STATE(4475)] = 219064, - [SMALL_STATE(4476)] = 219082, - [SMALL_STATE(4477)] = 219100, - [SMALL_STATE(4478)] = 219122, - [SMALL_STATE(4479)] = 219144, - [SMALL_STATE(4480)] = 219162, - [SMALL_STATE(4481)] = 219180, - [SMALL_STATE(4482)] = 219202, - [SMALL_STATE(4483)] = 219224, - [SMALL_STATE(4484)] = 219246, - [SMALL_STATE(4485)] = 219266, - [SMALL_STATE(4486)] = 219288, - [SMALL_STATE(4487)] = 219310, - [SMALL_STATE(4488)] = 219322, - [SMALL_STATE(4489)] = 219336, - [SMALL_STATE(4490)] = 219348, - [SMALL_STATE(4491)] = 219360, - [SMALL_STATE(4492)] = 219382, - [SMALL_STATE(4493)] = 219398, - [SMALL_STATE(4494)] = 219416, - [SMALL_STATE(4495)] = 219428, - [SMALL_STATE(4496)] = 219450, - [SMALL_STATE(4497)] = 219472, - [SMALL_STATE(4498)] = 219494, - [SMALL_STATE(4499)] = 219512, - [SMALL_STATE(4500)] = 219534, - [SMALL_STATE(4501)] = 219552, - [SMALL_STATE(4502)] = 219568, - [SMALL_STATE(4503)] = 219582, - [SMALL_STATE(4504)] = 219604, - [SMALL_STATE(4505)] = 219626, - [SMALL_STATE(4506)] = 219640, - [SMALL_STATE(4507)] = 219656, - [SMALL_STATE(4508)] = 219670, - [SMALL_STATE(4509)] = 219686, - [SMALL_STATE(4510)] = 219704, - [SMALL_STATE(4511)] = 219718, - [SMALL_STATE(4512)] = 219740, - [SMALL_STATE(4513)] = 219762, - [SMALL_STATE(4514)] = 219784, - [SMALL_STATE(4515)] = 219806, - [SMALL_STATE(4516)] = 219828, - [SMALL_STATE(4517)] = 219844, - [SMALL_STATE(4518)] = 219866, - [SMALL_STATE(4519)] = 219882, - [SMALL_STATE(4520)] = 219904, - [SMALL_STATE(4521)] = 219926, - [SMALL_STATE(4522)] = 219938, - [SMALL_STATE(4523)] = 219950, - [SMALL_STATE(4524)] = 219966, - [SMALL_STATE(4525)] = 219978, - [SMALL_STATE(4526)] = 219994, - [SMALL_STATE(4527)] = 220006, - [SMALL_STATE(4528)] = 220024, - [SMALL_STATE(4529)] = 220040, - [SMALL_STATE(4530)] = 220052, - [SMALL_STATE(4531)] = 220068, - [SMALL_STATE(4532)] = 220084, - [SMALL_STATE(4533)] = 220106, - [SMALL_STATE(4534)] = 220128, - [SMALL_STATE(4535)] = 220144, - [SMALL_STATE(4536)] = 220162, - [SMALL_STATE(4537)] = 220184, - [SMALL_STATE(4538)] = 220200, - [SMALL_STATE(4539)] = 220222, - [SMALL_STATE(4540)] = 220238, - [SMALL_STATE(4541)] = 220254, - [SMALL_STATE(4542)] = 220274, - [SMALL_STATE(4543)] = 220296, - [SMALL_STATE(4544)] = 220318, - [SMALL_STATE(4545)] = 220340, - [SMALL_STATE(4546)] = 220362, - [SMALL_STATE(4547)] = 220380, - [SMALL_STATE(4548)] = 220398, - [SMALL_STATE(4549)] = 220414, - [SMALL_STATE(4550)] = 220436, - [SMALL_STATE(4551)] = 220458, - [SMALL_STATE(4552)] = 220480, - [SMALL_STATE(4553)] = 220498, - [SMALL_STATE(4554)] = 220520, - [SMALL_STATE(4555)] = 220536, - [SMALL_STATE(4556)] = 220558, - [SMALL_STATE(4557)] = 220580, - [SMALL_STATE(4558)] = 220598, - [SMALL_STATE(4559)] = 220620, - [SMALL_STATE(4560)] = 220638, - [SMALL_STATE(4561)] = 220660, - [SMALL_STATE(4562)] = 220680, - [SMALL_STATE(4563)] = 220702, - [SMALL_STATE(4564)] = 220724, - [SMALL_STATE(4565)] = 220746, - [SMALL_STATE(4566)] = 220764, - [SMALL_STATE(4567)] = 220776, - [SMALL_STATE(4568)] = 220798, - [SMALL_STATE(4569)] = 220818, - [SMALL_STATE(4570)] = 220836, - [SMALL_STATE(4571)] = 220854, - [SMALL_STATE(4572)] = 220870, - [SMALL_STATE(4573)] = 220890, - [SMALL_STATE(4574)] = 220912, - [SMALL_STATE(4575)] = 220934, - [SMALL_STATE(4576)] = 220956, - [SMALL_STATE(4577)] = 220972, - [SMALL_STATE(4578)] = 220994, - [SMALL_STATE(4579)] = 221016, - [SMALL_STATE(4580)] = 221034, - [SMALL_STATE(4581)] = 221056, - [SMALL_STATE(4582)] = 221072, - [SMALL_STATE(4583)] = 221086, - [SMALL_STATE(4584)] = 221106, - [SMALL_STATE(4585)] = 221122, - [SMALL_STATE(4586)] = 221138, - [SMALL_STATE(4587)] = 221154, - [SMALL_STATE(4588)] = 221167, - [SMALL_STATE(4589)] = 221186, - [SMALL_STATE(4590)] = 221197, - [SMALL_STATE(4591)] = 221212, - [SMALL_STATE(4592)] = 221231, - [SMALL_STATE(4593)] = 221250, - [SMALL_STATE(4594)] = 221261, - [SMALL_STATE(4595)] = 221272, - [SMALL_STATE(4596)] = 221285, - [SMALL_STATE(4597)] = 221298, - [SMALL_STATE(4598)] = 221313, - [SMALL_STATE(4599)] = 221332, - [SMALL_STATE(4600)] = 221343, - [SMALL_STATE(4601)] = 221362, - [SMALL_STATE(4602)] = 221381, - [SMALL_STATE(4603)] = 221392, - [SMALL_STATE(4604)] = 221411, - [SMALL_STATE(4605)] = 221424, - [SMALL_STATE(4606)] = 221435, - [SMALL_STATE(4607)] = 221450, - [SMALL_STATE(4608)] = 221461, - [SMALL_STATE(4609)] = 221472, - [SMALL_STATE(4610)] = 221487, - [SMALL_STATE(4611)] = 221504, - [SMALL_STATE(4612)] = 221515, - [SMALL_STATE(4613)] = 221526, - [SMALL_STATE(4614)] = 221537, - [SMALL_STATE(4615)] = 221548, - [SMALL_STATE(4616)] = 221559, - [SMALL_STATE(4617)] = 221578, - [SMALL_STATE(4618)] = 221589, - [SMALL_STATE(4619)] = 221604, - [SMALL_STATE(4620)] = 221623, - [SMALL_STATE(4621)] = 221642, - [SMALL_STATE(4622)] = 221653, - [SMALL_STATE(4623)] = 221672, - [SMALL_STATE(4624)] = 221683, - [SMALL_STATE(4625)] = 221694, - [SMALL_STATE(4626)] = 221713, - [SMALL_STATE(4627)] = 221724, - [SMALL_STATE(4628)] = 221739, - [SMALL_STATE(4629)] = 221758, - [SMALL_STATE(4630)] = 221769, - [SMALL_STATE(4631)] = 221788, - [SMALL_STATE(4632)] = 221799, - [SMALL_STATE(4633)] = 221810, - [SMALL_STATE(4634)] = 221821, - [SMALL_STATE(4635)] = 221832, - [SMALL_STATE(4636)] = 221843, - [SMALL_STATE(4637)] = 221858, - [SMALL_STATE(4638)] = 221869, - [SMALL_STATE(4639)] = 221888, - [SMALL_STATE(4640)] = 221899, - [SMALL_STATE(4641)] = 221910, - [SMALL_STATE(4642)] = 221921, - [SMALL_STATE(4643)] = 221932, - [SMALL_STATE(4644)] = 221947, - [SMALL_STATE(4645)] = 221966, - [SMALL_STATE(4646)] = 221977, - [SMALL_STATE(4647)] = 221988, - [SMALL_STATE(4648)] = 222005, - [SMALL_STATE(4649)] = 222018, - [SMALL_STATE(4650)] = 222033, - [SMALL_STATE(4651)] = 222052, - [SMALL_STATE(4652)] = 222067, - [SMALL_STATE(4653)] = 222082, - [SMALL_STATE(4654)] = 222101, - [SMALL_STATE(4655)] = 222116, - [SMALL_STATE(4656)] = 222133, - [SMALL_STATE(4657)] = 222144, - [SMALL_STATE(4658)] = 222159, - [SMALL_STATE(4659)] = 222178, - [SMALL_STATE(4660)] = 222197, - [SMALL_STATE(4661)] = 222216, - [SMALL_STATE(4662)] = 222231, - [SMALL_STATE(4663)] = 222242, - [SMALL_STATE(4664)] = 222253, - [SMALL_STATE(4665)] = 222264, - [SMALL_STATE(4666)] = 222275, - [SMALL_STATE(4667)] = 222294, - [SMALL_STATE(4668)] = 222313, - [SMALL_STATE(4669)] = 222328, - [SMALL_STATE(4670)] = 222339, - [SMALL_STATE(4671)] = 222350, - [SMALL_STATE(4672)] = 222367, - [SMALL_STATE(4673)] = 222384, - [SMALL_STATE(4674)] = 222403, - [SMALL_STATE(4675)] = 222422, - [SMALL_STATE(4676)] = 222441, - [SMALL_STATE(4677)] = 222460, - [SMALL_STATE(4678)] = 222475, - [SMALL_STATE(4679)] = 222494, - [SMALL_STATE(4680)] = 222513, - [SMALL_STATE(4681)] = 222532, - [SMALL_STATE(4682)] = 222543, - [SMALL_STATE(4683)] = 222560, - [SMALL_STATE(4684)] = 222573, - [SMALL_STATE(4685)] = 222592, - [SMALL_STATE(4686)] = 222609, - [SMALL_STATE(4687)] = 222622, - [SMALL_STATE(4688)] = 222635, - [SMALL_STATE(4689)] = 222646, - [SMALL_STATE(4690)] = 222663, - [SMALL_STATE(4691)] = 222678, - [SMALL_STATE(4692)] = 222689, - [SMALL_STATE(4693)] = 222700, - [SMALL_STATE(4694)] = 222711, - [SMALL_STATE(4695)] = 222730, - [SMALL_STATE(4696)] = 222745, - [SMALL_STATE(4697)] = 222756, - [SMALL_STATE(4698)] = 222775, - [SMALL_STATE(4699)] = 222792, - [SMALL_STATE(4700)] = 222805, - [SMALL_STATE(4701)] = 222816, - [SMALL_STATE(4702)] = 222835, - [SMALL_STATE(4703)] = 222850, - [SMALL_STATE(4704)] = 222861, - [SMALL_STATE(4705)] = 222874, - [SMALL_STATE(4706)] = 222885, - [SMALL_STATE(4707)] = 222896, - [SMALL_STATE(4708)] = 222911, - [SMALL_STATE(4709)] = 222930, - [SMALL_STATE(4710)] = 222943, - [SMALL_STATE(4711)] = 222960, - [SMALL_STATE(4712)] = 222977, - [SMALL_STATE(4713)] = 222988, - [SMALL_STATE(4714)] = 223001, - [SMALL_STATE(4715)] = 223016, - [SMALL_STATE(4716)] = 223035, - [SMALL_STATE(4717)] = 223054, - [SMALL_STATE(4718)] = 223065, - [SMALL_STATE(4719)] = 223084, - [SMALL_STATE(4720)] = 223099, - [SMALL_STATE(4721)] = 223114, - [SMALL_STATE(4722)] = 223129, - [SMALL_STATE(4723)] = 223140, - [SMALL_STATE(4724)] = 223153, - [SMALL_STATE(4725)] = 223164, - [SMALL_STATE(4726)] = 223175, - [SMALL_STATE(4727)] = 223194, - [SMALL_STATE(4728)] = 223213, - [SMALL_STATE(4729)] = 223224, - [SMALL_STATE(4730)] = 223237, - [SMALL_STATE(4731)] = 223248, - [SMALL_STATE(4732)] = 223267, - [SMALL_STATE(4733)] = 223278, - [SMALL_STATE(4734)] = 223291, - [SMALL_STATE(4735)] = 223302, - [SMALL_STATE(4736)] = 223321, - [SMALL_STATE(4737)] = 223332, - [SMALL_STATE(4738)] = 223343, - [SMALL_STATE(4739)] = 223362, - [SMALL_STATE(4740)] = 223377, - [SMALL_STATE(4741)] = 223390, - [SMALL_STATE(4742)] = 223403, - [SMALL_STATE(4743)] = 223414, - [SMALL_STATE(4744)] = 223431, - [SMALL_STATE(4745)] = 223444, - [SMALL_STATE(4746)] = 223463, - [SMALL_STATE(4747)] = 223474, - [SMALL_STATE(4748)] = 223485, - [SMALL_STATE(4749)] = 223496, - [SMALL_STATE(4750)] = 223511, - [SMALL_STATE(4751)] = 223526, - [SMALL_STATE(4752)] = 223537, - [SMALL_STATE(4753)] = 223552, - [SMALL_STATE(4754)] = 223563, - [SMALL_STATE(4755)] = 223582, - [SMALL_STATE(4756)] = 223593, - [SMALL_STATE(4757)] = 223604, - [SMALL_STATE(4758)] = 223619, - [SMALL_STATE(4759)] = 223638, - [SMALL_STATE(4760)] = 223649, - [SMALL_STATE(4761)] = 223660, - [SMALL_STATE(4762)] = 223679, - [SMALL_STATE(4763)] = 223698, - [SMALL_STATE(4764)] = 223709, - [SMALL_STATE(4765)] = 223724, - [SMALL_STATE(4766)] = 223735, - [SMALL_STATE(4767)] = 223750, - [SMALL_STATE(4768)] = 223761, - [SMALL_STATE(4769)] = 223772, - [SMALL_STATE(4770)] = 223783, - [SMALL_STATE(4771)] = 223794, - [SMALL_STATE(4772)] = 223811, - [SMALL_STATE(4773)] = 223826, - [SMALL_STATE(4774)] = 223845, - [SMALL_STATE(4775)] = 223864, - [SMALL_STATE(4776)] = 223877, - [SMALL_STATE(4777)] = 223894, - [SMALL_STATE(4778)] = 223913, - [SMALL_STATE(4779)] = 223930, - [SMALL_STATE(4780)] = 223941, - [SMALL_STATE(4781)] = 223954, - [SMALL_STATE(4782)] = 223971, - [SMALL_STATE(4783)] = 223982, - [SMALL_STATE(4784)] = 224001, - [SMALL_STATE(4785)] = 224016, - [SMALL_STATE(4786)] = 224027, - [SMALL_STATE(4787)] = 224046, - [SMALL_STATE(4788)] = 224061, - [SMALL_STATE(4789)] = 224076, - [SMALL_STATE(4790)] = 224087, - [SMALL_STATE(4791)] = 224106, - [SMALL_STATE(4792)] = 224125, - [SMALL_STATE(4793)] = 224142, - [SMALL_STATE(4794)] = 224161, - [SMALL_STATE(4795)] = 224172, - [SMALL_STATE(4796)] = 224183, - [SMALL_STATE(4797)] = 224198, - [SMALL_STATE(4798)] = 224213, - [SMALL_STATE(4799)] = 224226, - [SMALL_STATE(4800)] = 224245, - [SMALL_STATE(4801)] = 224256, - [SMALL_STATE(4802)] = 224271, - [SMALL_STATE(4803)] = 224288, - [SMALL_STATE(4804)] = 224303, - [SMALL_STATE(4805)] = 224314, - [SMALL_STATE(4806)] = 224325, - [SMALL_STATE(4807)] = 224336, - [SMALL_STATE(4808)] = 224351, - [SMALL_STATE(4809)] = 224368, - [SMALL_STATE(4810)] = 224383, - [SMALL_STATE(4811)] = 224400, - [SMALL_STATE(4812)] = 224411, - [SMALL_STATE(4813)] = 224422, - [SMALL_STATE(4814)] = 224435, - [SMALL_STATE(4815)] = 224452, - [SMALL_STATE(4816)] = 224471, - [SMALL_STATE(4817)] = 224490, - [SMALL_STATE(4818)] = 224505, - [SMALL_STATE(4819)] = 224524, - [SMALL_STATE(4820)] = 224539, - [SMALL_STATE(4821)] = 224552, - [SMALL_STATE(4822)] = 224569, - [SMALL_STATE(4823)] = 224588, - [SMALL_STATE(4824)] = 224607, - [SMALL_STATE(4825)] = 224618, - [SMALL_STATE(4826)] = 224629, - [SMALL_STATE(4827)] = 224640, - [SMALL_STATE(4828)] = 224655, - [SMALL_STATE(4829)] = 224670, - [SMALL_STATE(4830)] = 224683, - [SMALL_STATE(4831)] = 224694, - [SMALL_STATE(4832)] = 224713, - [SMALL_STATE(4833)] = 224730, - [SMALL_STATE(4834)] = 224743, - [SMALL_STATE(4835)] = 224754, - [SMALL_STATE(4836)] = 224769, - [SMALL_STATE(4837)] = 224784, - [SMALL_STATE(4838)] = 224795, - [SMALL_STATE(4839)] = 224806, - [SMALL_STATE(4840)] = 224817, - [SMALL_STATE(4841)] = 224836, - [SMALL_STATE(4842)] = 224851, - [SMALL_STATE(4843)] = 224862, - [SMALL_STATE(4844)] = 224877, - [SMALL_STATE(4845)] = 224896, - [SMALL_STATE(4846)] = 224907, - [SMALL_STATE(4847)] = 224926, - [SMALL_STATE(4848)] = 224945, - [SMALL_STATE(4849)] = 224956, - [SMALL_STATE(4850)] = 224975, - [SMALL_STATE(4851)] = 224986, - [SMALL_STATE(4852)] = 224997, - [SMALL_STATE(4853)] = 225008, - [SMALL_STATE(4854)] = 225019, - [SMALL_STATE(4855)] = 225034, - [SMALL_STATE(4856)] = 225045, - [SMALL_STATE(4857)] = 225058, - [SMALL_STATE(4858)] = 225075, - [SMALL_STATE(4859)] = 225086, - [SMALL_STATE(4860)] = 225105, - [SMALL_STATE(4861)] = 225116, - [SMALL_STATE(4862)] = 225135, - [SMALL_STATE(4863)] = 225150, - [SMALL_STATE(4864)] = 225165, - [SMALL_STATE(4865)] = 225180, - [SMALL_STATE(4866)] = 225199, - [SMALL_STATE(4867)] = 225218, - [SMALL_STATE(4868)] = 225237, - [SMALL_STATE(4869)] = 225254, - [SMALL_STATE(4870)] = 225273, - [SMALL_STATE(4871)] = 225284, - [SMALL_STATE(4872)] = 225295, - [SMALL_STATE(4873)] = 225310, - [SMALL_STATE(4874)] = 225329, - [SMALL_STATE(4875)] = 225340, - [SMALL_STATE(4876)] = 225355, - [SMALL_STATE(4877)] = 225372, - [SMALL_STATE(4878)] = 225391, - [SMALL_STATE(4879)] = 225404, - [SMALL_STATE(4880)] = 225417, - [SMALL_STATE(4881)] = 225428, - [SMALL_STATE(4882)] = 225439, - [SMALL_STATE(4883)] = 225458, - [SMALL_STATE(4884)] = 225471, - [SMALL_STATE(4885)] = 225482, - [SMALL_STATE(4886)] = 225493, - [SMALL_STATE(4887)] = 225510, - [SMALL_STATE(4888)] = 225521, - [SMALL_STATE(4889)] = 225532, - [SMALL_STATE(4890)] = 225543, - [SMALL_STATE(4891)] = 225560, - [SMALL_STATE(4892)] = 225571, - [SMALL_STATE(4893)] = 225588, - [SMALL_STATE(4894)] = 225599, - [SMALL_STATE(4895)] = 225616, - [SMALL_STATE(4896)] = 225631, - [SMALL_STATE(4897)] = 225642, - [SMALL_STATE(4898)] = 225657, - [SMALL_STATE(4899)] = 225668, - [SMALL_STATE(4900)] = 225681, - [SMALL_STATE(4901)] = 225692, - [SMALL_STATE(4902)] = 225707, - [SMALL_STATE(4903)] = 225722, - [SMALL_STATE(4904)] = 225741, - [SMALL_STATE(4905)] = 225760, - [SMALL_STATE(4906)] = 225779, - [SMALL_STATE(4907)] = 225798, - [SMALL_STATE(4908)] = 225817, - [SMALL_STATE(4909)] = 225834, - [SMALL_STATE(4910)] = 225845, - [SMALL_STATE(4911)] = 225856, - [SMALL_STATE(4912)] = 225867, - [SMALL_STATE(4913)] = 225883, - [SMALL_STATE(4914)] = 225899, - [SMALL_STATE(4915)] = 225915, - [SMALL_STATE(4916)] = 225931, - [SMALL_STATE(4917)] = 225947, - [SMALL_STATE(4918)] = 225959, - [SMALL_STATE(4919)] = 225975, - [SMALL_STATE(4920)] = 225989, - [SMALL_STATE(4921)] = 225999, - [SMALL_STATE(4922)] = 226009, - [SMALL_STATE(4923)] = 226023, - [SMALL_STATE(4924)] = 226039, - [SMALL_STATE(4925)] = 226055, - [SMALL_STATE(4926)] = 226069, - [SMALL_STATE(4927)] = 226083, - [SMALL_STATE(4928)] = 226097, - [SMALL_STATE(4929)] = 226113, - [SMALL_STATE(4930)] = 226129, - [SMALL_STATE(4931)] = 226145, - [SMALL_STATE(4932)] = 226159, - [SMALL_STATE(4933)] = 226173, - [SMALL_STATE(4934)] = 226189, - [SMALL_STATE(4935)] = 226203, - [SMALL_STATE(4936)] = 226217, - [SMALL_STATE(4937)] = 226233, - [SMALL_STATE(4938)] = 226249, - [SMALL_STATE(4939)] = 226265, - [SMALL_STATE(4940)] = 226281, - [SMALL_STATE(4941)] = 226297, - [SMALL_STATE(4942)] = 226313, - [SMALL_STATE(4943)] = 226329, - [SMALL_STATE(4944)] = 226343, - [SMALL_STATE(4945)] = 226359, - [SMALL_STATE(4946)] = 226375, - [SMALL_STATE(4947)] = 226385, - [SMALL_STATE(4948)] = 226399, - [SMALL_STATE(4949)] = 226415, - [SMALL_STATE(4950)] = 226431, - [SMALL_STATE(4951)] = 226447, - [SMALL_STATE(4952)] = 226461, - [SMALL_STATE(4953)] = 226475, - [SMALL_STATE(4954)] = 226491, - [SMALL_STATE(4955)] = 226507, - [SMALL_STATE(4956)] = 226523, - [SMALL_STATE(4957)] = 226539, - [SMALL_STATE(4958)] = 226553, - [SMALL_STATE(4959)] = 226569, - [SMALL_STATE(4960)] = 226579, - [SMALL_STATE(4961)] = 226595, - [SMALL_STATE(4962)] = 226611, - [SMALL_STATE(4963)] = 226627, - [SMALL_STATE(4964)] = 226643, - [SMALL_STATE(4965)] = 226659, - [SMALL_STATE(4966)] = 226675, - [SMALL_STATE(4967)] = 226689, - [SMALL_STATE(4968)] = 226705, - [SMALL_STATE(4969)] = 226721, - [SMALL_STATE(4970)] = 226731, - [SMALL_STATE(4971)] = 226747, - [SMALL_STATE(4972)] = 226761, - [SMALL_STATE(4973)] = 226777, - [SMALL_STATE(4974)] = 226793, - [SMALL_STATE(4975)] = 226809, - [SMALL_STATE(4976)] = 226825, - [SMALL_STATE(4977)] = 226841, - [SMALL_STATE(4978)] = 226855, - [SMALL_STATE(4979)] = 226869, - [SMALL_STATE(4980)] = 226883, - [SMALL_STATE(4981)] = 226899, - [SMALL_STATE(4982)] = 226913, - [SMALL_STATE(4983)] = 226929, - [SMALL_STATE(4984)] = 226943, - [SMALL_STATE(4985)] = 226957, - [SMALL_STATE(4986)] = 226971, - [SMALL_STATE(4987)] = 226985, - [SMALL_STATE(4988)] = 226999, - [SMALL_STATE(4989)] = 227015, - [SMALL_STATE(4990)] = 227031, - [SMALL_STATE(4991)] = 227047, - [SMALL_STATE(4992)] = 227057, - [SMALL_STATE(4993)] = 227073, - [SMALL_STATE(4994)] = 227089, - [SMALL_STATE(4995)] = 227105, - [SMALL_STATE(4996)] = 227121, - [SMALL_STATE(4997)] = 227135, - [SMALL_STATE(4998)] = 227149, - [SMALL_STATE(4999)] = 227163, - [SMALL_STATE(5000)] = 227179, - [SMALL_STATE(5001)] = 227195, - [SMALL_STATE(5002)] = 227209, - [SMALL_STATE(5003)] = 227225, - [SMALL_STATE(5004)] = 227241, - [SMALL_STATE(5005)] = 227255, - [SMALL_STATE(5006)] = 227271, - [SMALL_STATE(5007)] = 227285, - [SMALL_STATE(5008)] = 227301, - [SMALL_STATE(5009)] = 227317, - [SMALL_STATE(5010)] = 227333, - [SMALL_STATE(5011)] = 227347, - [SMALL_STATE(5012)] = 227363, - [SMALL_STATE(5013)] = 227377, - [SMALL_STATE(5014)] = 227391, - [SMALL_STATE(5015)] = 227405, - [SMALL_STATE(5016)] = 227421, - [SMALL_STATE(5017)] = 227437, - [SMALL_STATE(5018)] = 227451, - [SMALL_STATE(5019)] = 227467, - [SMALL_STATE(5020)] = 227481, - [SMALL_STATE(5021)] = 227497, - [SMALL_STATE(5022)] = 227513, - [SMALL_STATE(5023)] = 227527, - [SMALL_STATE(5024)] = 227543, - [SMALL_STATE(5025)] = 227559, - [SMALL_STATE(5026)] = 227573, - [SMALL_STATE(5027)] = 227589, - [SMALL_STATE(5028)] = 227605, - [SMALL_STATE(5029)] = 227619, - [SMALL_STATE(5030)] = 227633, - [SMALL_STATE(5031)] = 227649, - [SMALL_STATE(5032)] = 227663, - [SMALL_STATE(5033)] = 227679, - [SMALL_STATE(5034)] = 227695, - [SMALL_STATE(5035)] = 227709, - [SMALL_STATE(5036)] = 227725, - [SMALL_STATE(5037)] = 227739, - [SMALL_STATE(5038)] = 227755, - [SMALL_STATE(5039)] = 227769, - [SMALL_STATE(5040)] = 227785, - [SMALL_STATE(5041)] = 227799, - [SMALL_STATE(5042)] = 227815, - [SMALL_STATE(5043)] = 227831, - [SMALL_STATE(5044)] = 227845, - [SMALL_STATE(5045)] = 227861, - [SMALL_STATE(5046)] = 227877, - [SMALL_STATE(5047)] = 227893, - [SMALL_STATE(5048)] = 227909, - [SMALL_STATE(5049)] = 227925, - [SMALL_STATE(5050)] = 227941, - [SMALL_STATE(5051)] = 227957, - [SMALL_STATE(5052)] = 227971, - [SMALL_STATE(5053)] = 227985, - [SMALL_STATE(5054)] = 227999, - [SMALL_STATE(5055)] = 228015, - [SMALL_STATE(5056)] = 228029, - [SMALL_STATE(5057)] = 228045, - [SMALL_STATE(5058)] = 228061, - [SMALL_STATE(5059)] = 228077, - [SMALL_STATE(5060)] = 228091, - [SMALL_STATE(5061)] = 228105, - [SMALL_STATE(5062)] = 228121, - [SMALL_STATE(5063)] = 228137, - [SMALL_STATE(5064)] = 228153, - [SMALL_STATE(5065)] = 228167, - [SMALL_STATE(5066)] = 228179, - [SMALL_STATE(5067)] = 228193, - [SMALL_STATE(5068)] = 228209, - [SMALL_STATE(5069)] = 228225, - [SMALL_STATE(5070)] = 228239, - [SMALL_STATE(5071)] = 228255, - [SMALL_STATE(5072)] = 228271, - [SMALL_STATE(5073)] = 228287, - [SMALL_STATE(5074)] = 228303, - [SMALL_STATE(5075)] = 228317, - [SMALL_STATE(5076)] = 228331, - [SMALL_STATE(5077)] = 228347, - [SMALL_STATE(5078)] = 228363, - [SMALL_STATE(5079)] = 228379, - [SMALL_STATE(5080)] = 228395, - [SMALL_STATE(5081)] = 228411, - [SMALL_STATE(5082)] = 228427, - [SMALL_STATE(5083)] = 228441, - [SMALL_STATE(5084)] = 228455, - [SMALL_STATE(5085)] = 228471, - [SMALL_STATE(5086)] = 228485, - [SMALL_STATE(5087)] = 228499, - [SMALL_STATE(5088)] = 228515, - [SMALL_STATE(5089)] = 228529, - [SMALL_STATE(5090)] = 228545, - [SMALL_STATE(5091)] = 228561, - [SMALL_STATE(5092)] = 228575, - [SMALL_STATE(5093)] = 228591, - [SMALL_STATE(5094)] = 228607, - [SMALL_STATE(5095)] = 228623, - [SMALL_STATE(5096)] = 228639, - [SMALL_STATE(5097)] = 228655, - [SMALL_STATE(5098)] = 228665, - [SMALL_STATE(5099)] = 228679, - [SMALL_STATE(5100)] = 228693, - [SMALL_STATE(5101)] = 228709, - [SMALL_STATE(5102)] = 228725, - [SMALL_STATE(5103)] = 228741, - [SMALL_STATE(5104)] = 228757, - [SMALL_STATE(5105)] = 228773, - [SMALL_STATE(5106)] = 228789, - [SMALL_STATE(5107)] = 228802, - [SMALL_STATE(5108)] = 228815, - [SMALL_STATE(5109)] = 228828, - [SMALL_STATE(5110)] = 228837, - [SMALL_STATE(5111)] = 228848, - [SMALL_STATE(5112)] = 228861, - [SMALL_STATE(5113)] = 228874, - [SMALL_STATE(5114)] = 228887, - [SMALL_STATE(5115)] = 228896, - [SMALL_STATE(5116)] = 228905, - [SMALL_STATE(5117)] = 228914, - [SMALL_STATE(5118)] = 228923, - [SMALL_STATE(5119)] = 228936, - [SMALL_STATE(5120)] = 228949, - [SMALL_STATE(5121)] = 228962, - [SMALL_STATE(5122)] = 228975, - [SMALL_STATE(5123)] = 228984, - [SMALL_STATE(5124)] = 228997, - [SMALL_STATE(5125)] = 229008, - [SMALL_STATE(5126)] = 229021, - [SMALL_STATE(5127)] = 229034, - [SMALL_STATE(5128)] = 229047, - [SMALL_STATE(5129)] = 229056, - [SMALL_STATE(5130)] = 229069, - [SMALL_STATE(5131)] = 229082, - [SMALL_STATE(5132)] = 229095, - [SMALL_STATE(5133)] = 229104, - [SMALL_STATE(5134)] = 229117, - [SMALL_STATE(5135)] = 229130, - [SMALL_STATE(5136)] = 229139, - [SMALL_STATE(5137)] = 229148, - [SMALL_STATE(5138)] = 229161, - [SMALL_STATE(5139)] = 229174, - [SMALL_STATE(5140)] = 229183, - [SMALL_STATE(5141)] = 229192, - [SMALL_STATE(5142)] = 229205, - [SMALL_STATE(5143)] = 229218, - [SMALL_STATE(5144)] = 229227, - [SMALL_STATE(5145)] = 229236, - [SMALL_STATE(5146)] = 229249, - [SMALL_STATE(5147)] = 229260, - [SMALL_STATE(5148)] = 229269, - [SMALL_STATE(5149)] = 229282, - [SMALL_STATE(5150)] = 229295, - [SMALL_STATE(5151)] = 229308, - [SMALL_STATE(5152)] = 229321, - [SMALL_STATE(5153)] = 229330, - [SMALL_STATE(5154)] = 229339, - [SMALL_STATE(5155)] = 229348, - [SMALL_STATE(5156)] = 229357, - [SMALL_STATE(5157)] = 229368, - [SMALL_STATE(5158)] = 229377, - [SMALL_STATE(5159)] = 229388, - [SMALL_STATE(5160)] = 229401, - [SMALL_STATE(5161)] = 229414, - [SMALL_STATE(5162)] = 229427, - [SMALL_STATE(5163)] = 229436, - [SMALL_STATE(5164)] = 229449, - [SMALL_STATE(5165)] = 229462, - [SMALL_STATE(5166)] = 229475, - [SMALL_STATE(5167)] = 229484, - [SMALL_STATE(5168)] = 229493, - [SMALL_STATE(5169)] = 229502, - [SMALL_STATE(5170)] = 229511, - [SMALL_STATE(5171)] = 229520, - [SMALL_STATE(5172)] = 229533, - [SMALL_STATE(5173)] = 229546, - [SMALL_STATE(5174)] = 229559, - [SMALL_STATE(5175)] = 229572, - [SMALL_STATE(5176)] = 229585, - [SMALL_STATE(5177)] = 229598, - [SMALL_STATE(5178)] = 229609, - [SMALL_STATE(5179)] = 229618, - [SMALL_STATE(5180)] = 229631, - [SMALL_STATE(5181)] = 229640, - [SMALL_STATE(5182)] = 229649, - [SMALL_STATE(5183)] = 229658, - [SMALL_STATE(5184)] = 229671, - [SMALL_STATE(5185)] = 229680, - [SMALL_STATE(5186)] = 229689, - [SMALL_STATE(5187)] = 229702, - [SMALL_STATE(5188)] = 229713, - [SMALL_STATE(5189)] = 229726, - [SMALL_STATE(5190)] = 229737, - [SMALL_STATE(5191)] = 229750, - [SMALL_STATE(5192)] = 229763, - [SMALL_STATE(5193)] = 229776, - [SMALL_STATE(5194)] = 229789, - [SMALL_STATE(5195)] = 229802, - [SMALL_STATE(5196)] = 229815, - [SMALL_STATE(5197)] = 229828, - [SMALL_STATE(5198)] = 229841, - [SMALL_STATE(5199)] = 229850, - [SMALL_STATE(5200)] = 229863, - [SMALL_STATE(5201)] = 229876, - [SMALL_STATE(5202)] = 229885, - [SMALL_STATE(5203)] = 229896, - [SMALL_STATE(5204)] = 229909, - [SMALL_STATE(5205)] = 229922, - [SMALL_STATE(5206)] = 229935, - [SMALL_STATE(5207)] = 229948, - [SMALL_STATE(5208)] = 229961, - [SMALL_STATE(5209)] = 229970, - [SMALL_STATE(5210)] = 229979, - [SMALL_STATE(5211)] = 229990, - [SMALL_STATE(5212)] = 230003, - [SMALL_STATE(5213)] = 230016, - [SMALL_STATE(5214)] = 230029, - [SMALL_STATE(5215)] = 230042, - [SMALL_STATE(5216)] = 230055, - [SMALL_STATE(5217)] = 230064, - [SMALL_STATE(5218)] = 230077, - [SMALL_STATE(5219)] = 230090, - [SMALL_STATE(5220)] = 230103, - [SMALL_STATE(5221)] = 230116, - [SMALL_STATE(5222)] = 230129, - [SMALL_STATE(5223)] = 230142, - [SMALL_STATE(5224)] = 230153, - [SMALL_STATE(5225)] = 230166, - [SMALL_STATE(5226)] = 230179, - [SMALL_STATE(5227)] = 230192, - [SMALL_STATE(5228)] = 230201, - [SMALL_STATE(5229)] = 230214, - [SMALL_STATE(5230)] = 230227, - [SMALL_STATE(5231)] = 230240, - [SMALL_STATE(5232)] = 230249, - [SMALL_STATE(5233)] = 230262, - [SMALL_STATE(5234)] = 230271, - [SMALL_STATE(5235)] = 230284, - [SMALL_STATE(5236)] = 230297, - [SMALL_STATE(5237)] = 230306, - [SMALL_STATE(5238)] = 230315, - [SMALL_STATE(5239)] = 230326, - [SMALL_STATE(5240)] = 230335, - [SMALL_STATE(5241)] = 230344, - [SMALL_STATE(5242)] = 230353, - [SMALL_STATE(5243)] = 230366, - [SMALL_STATE(5244)] = 230379, - [SMALL_STATE(5245)] = 230392, - [SMALL_STATE(5246)] = 230405, - [SMALL_STATE(5247)] = 230418, - [SMALL_STATE(5248)] = 230429, - [SMALL_STATE(5249)] = 230442, - [SMALL_STATE(5250)] = 230455, - [SMALL_STATE(5251)] = 230468, - [SMALL_STATE(5252)] = 230481, - [SMALL_STATE(5253)] = 230494, - [SMALL_STATE(5254)] = 230503, - [SMALL_STATE(5255)] = 230516, - [SMALL_STATE(5256)] = 230525, - [SMALL_STATE(5257)] = 230534, - [SMALL_STATE(5258)] = 230545, - [SMALL_STATE(5259)] = 230554, - [SMALL_STATE(5260)] = 230567, - [SMALL_STATE(5261)] = 230580, - [SMALL_STATE(5262)] = 230589, - [SMALL_STATE(5263)] = 230602, - [SMALL_STATE(5264)] = 230615, - [SMALL_STATE(5265)] = 230624, - [SMALL_STATE(5266)] = 230637, - [SMALL_STATE(5267)] = 230646, - [SMALL_STATE(5268)] = 230659, - [SMALL_STATE(5269)] = 230672, - [SMALL_STATE(5270)] = 230681, - [SMALL_STATE(5271)] = 230694, - [SMALL_STATE(5272)] = 230707, - [SMALL_STATE(5273)] = 230720, - [SMALL_STATE(5274)] = 230733, - [SMALL_STATE(5275)] = 230746, - [SMALL_STATE(5276)] = 230755, - [SMALL_STATE(5277)] = 230768, - [SMALL_STATE(5278)] = 230781, - [SMALL_STATE(5279)] = 230790, - [SMALL_STATE(5280)] = 230803, - [SMALL_STATE(5281)] = 230816, - [SMALL_STATE(5282)] = 230829, - [SMALL_STATE(5283)] = 230842, - [SMALL_STATE(5284)] = 230855, - [SMALL_STATE(5285)] = 230868, - [SMALL_STATE(5286)] = 230881, - [SMALL_STATE(5287)] = 230894, - [SMALL_STATE(5288)] = 230903, - [SMALL_STATE(5289)] = 230912, - [SMALL_STATE(5290)] = 230921, - [SMALL_STATE(5291)] = 230934, - [SMALL_STATE(5292)] = 230947, - [SMALL_STATE(5293)] = 230960, - [SMALL_STATE(5294)] = 230969, - [SMALL_STATE(5295)] = 230982, - [SMALL_STATE(5296)] = 230995, - [SMALL_STATE(5297)] = 231008, - [SMALL_STATE(5298)] = 231017, - [SMALL_STATE(5299)] = 231026, - [SMALL_STATE(5300)] = 231039, - [SMALL_STATE(5301)] = 231050, - [SMALL_STATE(5302)] = 231063, - [SMALL_STATE(5303)] = 231076, - [SMALL_STATE(5304)] = 231089, - [SMALL_STATE(5305)] = 231102, - [SMALL_STATE(5306)] = 231115, - [SMALL_STATE(5307)] = 231124, - [SMALL_STATE(5308)] = 231137, - [SMALL_STATE(5309)] = 231148, - [SMALL_STATE(5310)] = 231161, - [SMALL_STATE(5311)] = 231174, - [SMALL_STATE(5312)] = 231185, - [SMALL_STATE(5313)] = 231198, - [SMALL_STATE(5314)] = 231209, - [SMALL_STATE(5315)] = 231222, - [SMALL_STATE(5316)] = 231235, - [SMALL_STATE(5317)] = 231244, - [SMALL_STATE(5318)] = 231257, - [SMALL_STATE(5319)] = 231270, - [SMALL_STATE(5320)] = 231279, - [SMALL_STATE(5321)] = 231288, - [SMALL_STATE(5322)] = 231297, - [SMALL_STATE(5323)] = 231310, - [SMALL_STATE(5324)] = 231323, - [SMALL_STATE(5325)] = 231336, - [SMALL_STATE(5326)] = 231349, - [SMALL_STATE(5327)] = 231362, - [SMALL_STATE(5328)] = 231375, - [SMALL_STATE(5329)] = 231386, - [SMALL_STATE(5330)] = 231395, - [SMALL_STATE(5331)] = 231408, - [SMALL_STATE(5332)] = 231417, - [SMALL_STATE(5333)] = 231430, - [SMALL_STATE(5334)] = 231443, - [SMALL_STATE(5335)] = 231456, - [SMALL_STATE(5336)] = 231469, - [SMALL_STATE(5337)] = 231482, - [SMALL_STATE(5338)] = 231493, - [SMALL_STATE(5339)] = 231506, - [SMALL_STATE(5340)] = 231517, - [SMALL_STATE(5341)] = 231530, - [SMALL_STATE(5342)] = 231543, - [SMALL_STATE(5343)] = 231556, - [SMALL_STATE(5344)] = 231565, - [SMALL_STATE(5345)] = 231576, - [SMALL_STATE(5346)] = 231589, - [SMALL_STATE(5347)] = 231602, - [SMALL_STATE(5348)] = 231615, - [SMALL_STATE(5349)] = 231628, - [SMALL_STATE(5350)] = 231641, - [SMALL_STATE(5351)] = 231654, - [SMALL_STATE(5352)] = 231663, - [SMALL_STATE(5353)] = 231676, - [SMALL_STATE(5354)] = 231689, - [SMALL_STATE(5355)] = 231702, - [SMALL_STATE(5356)] = 231715, - [SMALL_STATE(5357)] = 231726, - [SMALL_STATE(5358)] = 231737, - [SMALL_STATE(5359)] = 231750, - [SMALL_STATE(5360)] = 231763, - [SMALL_STATE(5361)] = 231776, - [SMALL_STATE(5362)] = 231789, - [SMALL_STATE(5363)] = 231802, - [SMALL_STATE(5364)] = 231815, - [SMALL_STATE(5365)] = 231828, - [SMALL_STATE(5366)] = 231841, - [SMALL_STATE(5367)] = 231854, - [SMALL_STATE(5368)] = 231863, - [SMALL_STATE(5369)] = 231872, - [SMALL_STATE(5370)] = 231885, - [SMALL_STATE(5371)] = 231898, - [SMALL_STATE(5372)] = 231911, - [SMALL_STATE(5373)] = 231924, - [SMALL_STATE(5374)] = 231937, - [SMALL_STATE(5375)] = 231950, - [SMALL_STATE(5376)] = 231963, - [SMALL_STATE(5377)] = 231974, - [SMALL_STATE(5378)] = 231987, - [SMALL_STATE(5379)] = 232000, - [SMALL_STATE(5380)] = 232010, - [SMALL_STATE(5381)] = 232020, - [SMALL_STATE(5382)] = 232030, - [SMALL_STATE(5383)] = 232040, - [SMALL_STATE(5384)] = 232048, - [SMALL_STATE(5385)] = 232058, - [SMALL_STATE(5386)] = 232068, - [SMALL_STATE(5387)] = 232078, - [SMALL_STATE(5388)] = 232088, - [SMALL_STATE(5389)] = 232098, - [SMALL_STATE(5390)] = 232108, - [SMALL_STATE(5391)] = 232118, - [SMALL_STATE(5392)] = 232126, - [SMALL_STATE(5393)] = 232136, - [SMALL_STATE(5394)] = 232146, - [SMALL_STATE(5395)] = 232156, - [SMALL_STATE(5396)] = 232166, - [SMALL_STATE(5397)] = 232176, - [SMALL_STATE(5398)] = 232184, - [SMALL_STATE(5399)] = 232194, - [SMALL_STATE(5400)] = 232204, - [SMALL_STATE(5401)] = 232214, - [SMALL_STATE(5402)] = 232224, - [SMALL_STATE(5403)] = 232232, - [SMALL_STATE(5404)] = 232242, - [SMALL_STATE(5405)] = 232252, - [SMALL_STATE(5406)] = 232262, - [SMALL_STATE(5407)] = 232272, - [SMALL_STATE(5408)] = 232282, - [SMALL_STATE(5409)] = 232292, - [SMALL_STATE(5410)] = 232302, - [SMALL_STATE(5411)] = 232310, - [SMALL_STATE(5412)] = 232320, - [SMALL_STATE(5413)] = 232330, - [SMALL_STATE(5414)] = 232340, - [SMALL_STATE(5415)] = 232350, - [SMALL_STATE(5416)] = 232360, - [SMALL_STATE(5417)] = 232370, - [SMALL_STATE(5418)] = 232380, - [SMALL_STATE(5419)] = 232390, - [SMALL_STATE(5420)] = 232400, - [SMALL_STATE(5421)] = 232410, - [SMALL_STATE(5422)] = 232418, - [SMALL_STATE(5423)] = 232426, - [SMALL_STATE(5424)] = 232436, - [SMALL_STATE(5425)] = 232446, - [SMALL_STATE(5426)] = 232456, - [SMALL_STATE(5427)] = 232466, - [SMALL_STATE(5428)] = 232476, - [SMALL_STATE(5429)] = 232486, - [SMALL_STATE(5430)] = 232496, - [SMALL_STATE(5431)] = 232506, - [SMALL_STATE(5432)] = 232514, - [SMALL_STATE(5433)] = 232524, - [SMALL_STATE(5434)] = 232534, - [SMALL_STATE(5435)] = 232544, - [SMALL_STATE(5436)] = 232552, - [SMALL_STATE(5437)] = 232560, - [SMALL_STATE(5438)] = 232568, - [SMALL_STATE(5439)] = 232578, - [SMALL_STATE(5440)] = 232588, - [SMALL_STATE(5441)] = 232598, - [SMALL_STATE(5442)] = 232608, - [SMALL_STATE(5443)] = 232618, - [SMALL_STATE(5444)] = 232628, - [SMALL_STATE(5445)] = 232638, - [SMALL_STATE(5446)] = 232648, - [SMALL_STATE(5447)] = 232658, - [SMALL_STATE(5448)] = 232668, - [SMALL_STATE(5449)] = 232678, - [SMALL_STATE(5450)] = 232686, - [SMALL_STATE(5451)] = 232694, - [SMALL_STATE(5452)] = 232704, - [SMALL_STATE(5453)] = 232714, - [SMALL_STATE(5454)] = 232724, - [SMALL_STATE(5455)] = 232734, - [SMALL_STATE(5456)] = 232744, - [SMALL_STATE(5457)] = 232754, - [SMALL_STATE(5458)] = 232764, - [SMALL_STATE(5459)] = 232774, - [SMALL_STATE(5460)] = 232782, - [SMALL_STATE(5461)] = 232792, - [SMALL_STATE(5462)] = 232802, - [SMALL_STATE(5463)] = 232810, - [SMALL_STATE(5464)] = 232820, - [SMALL_STATE(5465)] = 232828, - [SMALL_STATE(5466)] = 232838, - [SMALL_STATE(5467)] = 232848, - [SMALL_STATE(5468)] = 232858, - [SMALL_STATE(5469)] = 232868, - [SMALL_STATE(5470)] = 232878, - [SMALL_STATE(5471)] = 232888, - [SMALL_STATE(5472)] = 232898, - [SMALL_STATE(5473)] = 232908, - [SMALL_STATE(5474)] = 232918, - [SMALL_STATE(5475)] = 232928, - [SMALL_STATE(5476)] = 232938, - [SMALL_STATE(5477)] = 232948, - [SMALL_STATE(5478)] = 232958, - [SMALL_STATE(5479)] = 232966, - [SMALL_STATE(5480)] = 232976, - [SMALL_STATE(5481)] = 232986, - [SMALL_STATE(5482)] = 232996, - [SMALL_STATE(5483)] = 233004, - [SMALL_STATE(5484)] = 233012, - [SMALL_STATE(5485)] = 233022, - [SMALL_STATE(5486)] = 233030, - [SMALL_STATE(5487)] = 233040, - [SMALL_STATE(5488)] = 233048, - [SMALL_STATE(5489)] = 233058, - [SMALL_STATE(5490)] = 233068, - [SMALL_STATE(5491)] = 233078, - [SMALL_STATE(5492)] = 233088, - [SMALL_STATE(5493)] = 233098, - [SMALL_STATE(5494)] = 233108, - [SMALL_STATE(5495)] = 233116, - [SMALL_STATE(5496)] = 233126, - [SMALL_STATE(5497)] = 233136, - [SMALL_STATE(5498)] = 233146, - [SMALL_STATE(5499)] = 233156, - [SMALL_STATE(5500)] = 233166, - [SMALL_STATE(5501)] = 233176, - [SMALL_STATE(5502)] = 233184, - [SMALL_STATE(5503)] = 233194, - [SMALL_STATE(5504)] = 233204, - [SMALL_STATE(5505)] = 233214, - [SMALL_STATE(5506)] = 233224, - [SMALL_STATE(5507)] = 233234, - [SMALL_STATE(5508)] = 233244, - [SMALL_STATE(5509)] = 233252, - [SMALL_STATE(5510)] = 233262, - [SMALL_STATE(5511)] = 233272, - [SMALL_STATE(5512)] = 233280, - [SMALL_STATE(5513)] = 233290, - [SMALL_STATE(5514)] = 233300, - [SMALL_STATE(5515)] = 233310, - [SMALL_STATE(5516)] = 233320, - [SMALL_STATE(5517)] = 233330, - [SMALL_STATE(5518)] = 233340, - [SMALL_STATE(5519)] = 233350, - [SMALL_STATE(5520)] = 233360, - [SMALL_STATE(5521)] = 233370, - [SMALL_STATE(5522)] = 233380, - [SMALL_STATE(5523)] = 233390, - [SMALL_STATE(5524)] = 233400, - [SMALL_STATE(5525)] = 233408, - [SMALL_STATE(5526)] = 233416, - [SMALL_STATE(5527)] = 233426, - [SMALL_STATE(5528)] = 233434, - [SMALL_STATE(5529)] = 233444, - [SMALL_STATE(5530)] = 233454, - [SMALL_STATE(5531)] = 233464, - [SMALL_STATE(5532)] = 233472, - [SMALL_STATE(5533)] = 233482, - [SMALL_STATE(5534)] = 233490, - [SMALL_STATE(5535)] = 233498, - [SMALL_STATE(5536)] = 233506, - [SMALL_STATE(5537)] = 233516, - [SMALL_STATE(5538)] = 233526, - [SMALL_STATE(5539)] = 233536, - [SMALL_STATE(5540)] = 233544, - [SMALL_STATE(5541)] = 233554, - [SMALL_STATE(5542)] = 233562, - [SMALL_STATE(5543)] = 233572, - [SMALL_STATE(5544)] = 233582, - [SMALL_STATE(5545)] = 233592, - [SMALL_STATE(5546)] = 233602, - [SMALL_STATE(5547)] = 233612, - [SMALL_STATE(5548)] = 233620, - [SMALL_STATE(5549)] = 233630, - [SMALL_STATE(5550)] = 233640, - [SMALL_STATE(5551)] = 233650, - [SMALL_STATE(5552)] = 233660, - [SMALL_STATE(5553)] = 233670, - [SMALL_STATE(5554)] = 233680, - [SMALL_STATE(5555)] = 233690, - [SMALL_STATE(5556)] = 233700, - [SMALL_STATE(5557)] = 233710, - [SMALL_STATE(5558)] = 233720, - [SMALL_STATE(5559)] = 233728, - [SMALL_STATE(5560)] = 233738, - [SMALL_STATE(5561)] = 233748, - [SMALL_STATE(5562)] = 233758, - [SMALL_STATE(5563)] = 233768, - [SMALL_STATE(5564)] = 233778, - [SMALL_STATE(5565)] = 233788, - [SMALL_STATE(5566)] = 233798, - [SMALL_STATE(5567)] = 233808, - [SMALL_STATE(5568)] = 233818, - [SMALL_STATE(5569)] = 233828, - [SMALL_STATE(5570)] = 233838, - [SMALL_STATE(5571)] = 233848, - [SMALL_STATE(5572)] = 233856, - [SMALL_STATE(5573)] = 233866, - [SMALL_STATE(5574)] = 233874, - [SMALL_STATE(5575)] = 233884, - [SMALL_STATE(5576)] = 233894, - [SMALL_STATE(5577)] = 233904, - [SMALL_STATE(5578)] = 233914, - [SMALL_STATE(5579)] = 233924, - [SMALL_STATE(5580)] = 233934, - [SMALL_STATE(5581)] = 233942, - [SMALL_STATE(5582)] = 233952, - [SMALL_STATE(5583)] = 233962, - [SMALL_STATE(5584)] = 233972, - [SMALL_STATE(5585)] = 233980, - [SMALL_STATE(5586)] = 233988, - [SMALL_STATE(5587)] = 233996, - [SMALL_STATE(5588)] = 234006, - [SMALL_STATE(5589)] = 234016, - [SMALL_STATE(5590)] = 234026, - [SMALL_STATE(5591)] = 234034, - [SMALL_STATE(5592)] = 234044, - [SMALL_STATE(5593)] = 234054, - [SMALL_STATE(5594)] = 234062, - [SMALL_STATE(5595)] = 234070, - [SMALL_STATE(5596)] = 234078, - [SMALL_STATE(5597)] = 234086, - [SMALL_STATE(5598)] = 234096, - [SMALL_STATE(5599)] = 234104, - [SMALL_STATE(5600)] = 234114, - [SMALL_STATE(5601)] = 234124, - [SMALL_STATE(5602)] = 234134, - [SMALL_STATE(5603)] = 234144, - [SMALL_STATE(5604)] = 234152, - [SMALL_STATE(5605)] = 234162, - [SMALL_STATE(5606)] = 234172, - [SMALL_STATE(5607)] = 234182, - [SMALL_STATE(5608)] = 234192, - [SMALL_STATE(5609)] = 234202, - [SMALL_STATE(5610)] = 234212, - [SMALL_STATE(5611)] = 234220, - [SMALL_STATE(5612)] = 234230, - [SMALL_STATE(5613)] = 234240, - [SMALL_STATE(5614)] = 234250, - [SMALL_STATE(5615)] = 234260, - [SMALL_STATE(5616)] = 234270, - [SMALL_STATE(5617)] = 234278, - [SMALL_STATE(5618)] = 234286, - [SMALL_STATE(5619)] = 234296, - [SMALL_STATE(5620)] = 234306, - [SMALL_STATE(5621)] = 234316, - [SMALL_STATE(5622)] = 234324, - [SMALL_STATE(5623)] = 234332, - [SMALL_STATE(5624)] = 234342, - [SMALL_STATE(5625)] = 234350, - [SMALL_STATE(5626)] = 234360, - [SMALL_STATE(5627)] = 234370, - [SMALL_STATE(5628)] = 234380, - [SMALL_STATE(5629)] = 234390, - [SMALL_STATE(5630)] = 234400, - [SMALL_STATE(5631)] = 234410, - [SMALL_STATE(5632)] = 234420, - [SMALL_STATE(5633)] = 234430, - [SMALL_STATE(5634)] = 234440, - [SMALL_STATE(5635)] = 234450, - [SMALL_STATE(5636)] = 234460, - [SMALL_STATE(5637)] = 234470, - [SMALL_STATE(5638)] = 234478, - [SMALL_STATE(5639)] = 234488, - [SMALL_STATE(5640)] = 234498, - [SMALL_STATE(5641)] = 234508, - [SMALL_STATE(5642)] = 234518, - [SMALL_STATE(5643)] = 234528, - [SMALL_STATE(5644)] = 234538, - [SMALL_STATE(5645)] = 234548, - [SMALL_STATE(5646)] = 234556, - [SMALL_STATE(5647)] = 234566, - [SMALL_STATE(5648)] = 234576, - [SMALL_STATE(5649)] = 234586, - [SMALL_STATE(5650)] = 234596, - [SMALL_STATE(5651)] = 234606, - [SMALL_STATE(5652)] = 234614, - [SMALL_STATE(5653)] = 234624, - [SMALL_STATE(5654)] = 234634, - [SMALL_STATE(5655)] = 234644, - [SMALL_STATE(5656)] = 234654, - [SMALL_STATE(5657)] = 234664, - [SMALL_STATE(5658)] = 234674, - [SMALL_STATE(5659)] = 234684, - [SMALL_STATE(5660)] = 234694, - [SMALL_STATE(5661)] = 234702, - [SMALL_STATE(5662)] = 234712, - [SMALL_STATE(5663)] = 234722, - [SMALL_STATE(5664)] = 234730, - [SMALL_STATE(5665)] = 234740, - [SMALL_STATE(5666)] = 234750, - [SMALL_STATE(5667)] = 234760, - [SMALL_STATE(5668)] = 234770, - [SMALL_STATE(5669)] = 234780, - [SMALL_STATE(5670)] = 234790, - [SMALL_STATE(5671)] = 234800, - [SMALL_STATE(5672)] = 234810, - [SMALL_STATE(5673)] = 234820, - [SMALL_STATE(5674)] = 234830, - [SMALL_STATE(5675)] = 234840, - [SMALL_STATE(5676)] = 234850, - [SMALL_STATE(5677)] = 234860, - [SMALL_STATE(5678)] = 234870, - [SMALL_STATE(5679)] = 234880, - [SMALL_STATE(5680)] = 234890, - [SMALL_STATE(5681)] = 234900, - [SMALL_STATE(5682)] = 234910, - [SMALL_STATE(5683)] = 234920, - [SMALL_STATE(5684)] = 234930, - [SMALL_STATE(5685)] = 234940, - [SMALL_STATE(5686)] = 234950, - [SMALL_STATE(5687)] = 234960, - [SMALL_STATE(5688)] = 234968, - [SMALL_STATE(5689)] = 234978, - [SMALL_STATE(5690)] = 234988, - [SMALL_STATE(5691)] = 234998, - [SMALL_STATE(5692)] = 235008, - [SMALL_STATE(5693)] = 235016, - [SMALL_STATE(5694)] = 235026, - [SMALL_STATE(5695)] = 235036, - [SMALL_STATE(5696)] = 235046, - [SMALL_STATE(5697)] = 235056, - [SMALL_STATE(5698)] = 235066, - [SMALL_STATE(5699)] = 235076, - [SMALL_STATE(5700)] = 235086, - [SMALL_STATE(5701)] = 235096, - [SMALL_STATE(5702)] = 235106, - [SMALL_STATE(5703)] = 235113, - [SMALL_STATE(5704)] = 235120, - [SMALL_STATE(5705)] = 235127, - [SMALL_STATE(5706)] = 235134, - [SMALL_STATE(5707)] = 235141, - [SMALL_STATE(5708)] = 235148, - [SMALL_STATE(5709)] = 235155, - [SMALL_STATE(5710)] = 235162, - [SMALL_STATE(5711)] = 235169, - [SMALL_STATE(5712)] = 235176, - [SMALL_STATE(5713)] = 235183, - [SMALL_STATE(5714)] = 235190, - [SMALL_STATE(5715)] = 235197, - [SMALL_STATE(5716)] = 235204, - [SMALL_STATE(5717)] = 235211, - [SMALL_STATE(5718)] = 235218, - [SMALL_STATE(5719)] = 235225, - [SMALL_STATE(5720)] = 235232, - [SMALL_STATE(5721)] = 235239, - [SMALL_STATE(5722)] = 235246, - [SMALL_STATE(5723)] = 235253, - [SMALL_STATE(5724)] = 235260, - [SMALL_STATE(5725)] = 235267, - [SMALL_STATE(5726)] = 235274, - [SMALL_STATE(5727)] = 235281, - [SMALL_STATE(5728)] = 235288, - [SMALL_STATE(5729)] = 235295, - [SMALL_STATE(5730)] = 235302, - [SMALL_STATE(5731)] = 235309, - [SMALL_STATE(5732)] = 235316, - [SMALL_STATE(5733)] = 235323, - [SMALL_STATE(5734)] = 235330, - [SMALL_STATE(5735)] = 235337, - [SMALL_STATE(5736)] = 235344, - [SMALL_STATE(5737)] = 235351, - [SMALL_STATE(5738)] = 235358, - [SMALL_STATE(5739)] = 235365, - [SMALL_STATE(5740)] = 235372, - [SMALL_STATE(5741)] = 235379, - [SMALL_STATE(5742)] = 235386, - [SMALL_STATE(5743)] = 235393, - [SMALL_STATE(5744)] = 235400, - [SMALL_STATE(5745)] = 235407, - [SMALL_STATE(5746)] = 235414, - [SMALL_STATE(5747)] = 235421, - [SMALL_STATE(5748)] = 235428, - [SMALL_STATE(5749)] = 235435, - [SMALL_STATE(5750)] = 235442, - [SMALL_STATE(5751)] = 235449, - [SMALL_STATE(5752)] = 235456, - [SMALL_STATE(5753)] = 235463, - [SMALL_STATE(5754)] = 235470, - [SMALL_STATE(5755)] = 235477, - [SMALL_STATE(5756)] = 235484, - [SMALL_STATE(5757)] = 235491, - [SMALL_STATE(5758)] = 235498, - [SMALL_STATE(5759)] = 235505, - [SMALL_STATE(5760)] = 235512, - [SMALL_STATE(5761)] = 235519, - [SMALL_STATE(5762)] = 235526, - [SMALL_STATE(5763)] = 235533, - [SMALL_STATE(5764)] = 235540, - [SMALL_STATE(5765)] = 235547, - [SMALL_STATE(5766)] = 235554, - [SMALL_STATE(5767)] = 235561, - [SMALL_STATE(5768)] = 235568, - [SMALL_STATE(5769)] = 235575, - [SMALL_STATE(5770)] = 235582, - [SMALL_STATE(5771)] = 235589, - [SMALL_STATE(5772)] = 235596, - [SMALL_STATE(5773)] = 235603, - [SMALL_STATE(5774)] = 235610, - [SMALL_STATE(5775)] = 235617, - [SMALL_STATE(5776)] = 235624, - [SMALL_STATE(5777)] = 235631, - [SMALL_STATE(5778)] = 235638, - [SMALL_STATE(5779)] = 235645, - [SMALL_STATE(5780)] = 235652, - [SMALL_STATE(5781)] = 235659, - [SMALL_STATE(5782)] = 235666, - [SMALL_STATE(5783)] = 235673, - [SMALL_STATE(5784)] = 235680, - [SMALL_STATE(5785)] = 235687, - [SMALL_STATE(5786)] = 235694, - [SMALL_STATE(5787)] = 235701, - [SMALL_STATE(5788)] = 235708, - [SMALL_STATE(5789)] = 235715, - [SMALL_STATE(5790)] = 235722, - [SMALL_STATE(5791)] = 235729, - [SMALL_STATE(5792)] = 235736, - [SMALL_STATE(5793)] = 235743, - [SMALL_STATE(5794)] = 235750, - [SMALL_STATE(5795)] = 235757, - [SMALL_STATE(5796)] = 235764, - [SMALL_STATE(5797)] = 235771, - [SMALL_STATE(5798)] = 235778, - [SMALL_STATE(5799)] = 235785, - [SMALL_STATE(5800)] = 235792, - [SMALL_STATE(5801)] = 235799, - [SMALL_STATE(5802)] = 235806, - [SMALL_STATE(5803)] = 235813, - [SMALL_STATE(5804)] = 235820, - [SMALL_STATE(5805)] = 235827, - [SMALL_STATE(5806)] = 235834, - [SMALL_STATE(5807)] = 235841, - [SMALL_STATE(5808)] = 235848, - [SMALL_STATE(5809)] = 235855, - [SMALL_STATE(5810)] = 235862, - [SMALL_STATE(5811)] = 235869, - [SMALL_STATE(5812)] = 235876, - [SMALL_STATE(5813)] = 235883, - [SMALL_STATE(5814)] = 235890, - [SMALL_STATE(5815)] = 235897, - [SMALL_STATE(5816)] = 235904, - [SMALL_STATE(5817)] = 235911, - [SMALL_STATE(5818)] = 235918, - [SMALL_STATE(5819)] = 235925, - [SMALL_STATE(5820)] = 235932, - [SMALL_STATE(5821)] = 235939, - [SMALL_STATE(5822)] = 235946, - [SMALL_STATE(5823)] = 235953, - [SMALL_STATE(5824)] = 235960, - [SMALL_STATE(5825)] = 235967, - [SMALL_STATE(5826)] = 235974, - [SMALL_STATE(5827)] = 235981, - [SMALL_STATE(5828)] = 235988, - [SMALL_STATE(5829)] = 235995, - [SMALL_STATE(5830)] = 236002, - [SMALL_STATE(5831)] = 236009, - [SMALL_STATE(5832)] = 236016, - [SMALL_STATE(5833)] = 236023, - [SMALL_STATE(5834)] = 236030, - [SMALL_STATE(5835)] = 236037, - [SMALL_STATE(5836)] = 236044, - [SMALL_STATE(5837)] = 236051, - [SMALL_STATE(5838)] = 236058, - [SMALL_STATE(5839)] = 236065, - [SMALL_STATE(5840)] = 236072, - [SMALL_STATE(5841)] = 236079, - [SMALL_STATE(5842)] = 236086, - [SMALL_STATE(5843)] = 236093, - [SMALL_STATE(5844)] = 236100, - [SMALL_STATE(5845)] = 236107, - [SMALL_STATE(5846)] = 236114, - [SMALL_STATE(5847)] = 236121, - [SMALL_STATE(5848)] = 236128, - [SMALL_STATE(5849)] = 236135, - [SMALL_STATE(5850)] = 236142, - [SMALL_STATE(5851)] = 236149, - [SMALL_STATE(5852)] = 236156, - [SMALL_STATE(5853)] = 236163, - [SMALL_STATE(5854)] = 236170, - [SMALL_STATE(5855)] = 236177, - [SMALL_STATE(5856)] = 236184, - [SMALL_STATE(5857)] = 236191, - [SMALL_STATE(5858)] = 236198, - [SMALL_STATE(5859)] = 236205, - [SMALL_STATE(5860)] = 236212, - [SMALL_STATE(5861)] = 236219, - [SMALL_STATE(5862)] = 236226, - [SMALL_STATE(5863)] = 236233, - [SMALL_STATE(5864)] = 236240, - [SMALL_STATE(5865)] = 236247, - [SMALL_STATE(5866)] = 236254, - [SMALL_STATE(5867)] = 236261, - [SMALL_STATE(5868)] = 236268, - [SMALL_STATE(5869)] = 236275, - [SMALL_STATE(5870)] = 236282, - [SMALL_STATE(5871)] = 236289, - [SMALL_STATE(5872)] = 236296, - [SMALL_STATE(5873)] = 236303, - [SMALL_STATE(5874)] = 236310, - [SMALL_STATE(5875)] = 236317, - [SMALL_STATE(5876)] = 236324, - [SMALL_STATE(5877)] = 236331, - [SMALL_STATE(5878)] = 236338, - [SMALL_STATE(5879)] = 236345, - [SMALL_STATE(5880)] = 236352, - [SMALL_STATE(5881)] = 236359, - [SMALL_STATE(5882)] = 236366, - [SMALL_STATE(5883)] = 236373, - [SMALL_STATE(5884)] = 236380, - [SMALL_STATE(5885)] = 236387, - [SMALL_STATE(5886)] = 236394, - [SMALL_STATE(5887)] = 236401, - [SMALL_STATE(5888)] = 236408, - [SMALL_STATE(5889)] = 236415, - [SMALL_STATE(5890)] = 236422, - [SMALL_STATE(5891)] = 236429, - [SMALL_STATE(5892)] = 236436, - [SMALL_STATE(5893)] = 236443, - [SMALL_STATE(5894)] = 236450, - [SMALL_STATE(5895)] = 236457, - [SMALL_STATE(5896)] = 236464, - [SMALL_STATE(5897)] = 236471, - [SMALL_STATE(5898)] = 236478, - [SMALL_STATE(5899)] = 236485, - [SMALL_STATE(5900)] = 236492, - [SMALL_STATE(5901)] = 236499, - [SMALL_STATE(5902)] = 236506, - [SMALL_STATE(5903)] = 236513, - [SMALL_STATE(5904)] = 236520, - [SMALL_STATE(5905)] = 236527, - [SMALL_STATE(5906)] = 236534, - [SMALL_STATE(5907)] = 236541, - [SMALL_STATE(5908)] = 236548, - [SMALL_STATE(5909)] = 236555, - [SMALL_STATE(5910)] = 236562, - [SMALL_STATE(5911)] = 236569, - [SMALL_STATE(5912)] = 236576, - [SMALL_STATE(5913)] = 236583, - [SMALL_STATE(5914)] = 236590, - [SMALL_STATE(5915)] = 236597, - [SMALL_STATE(5916)] = 236604, - [SMALL_STATE(5917)] = 236611, - [SMALL_STATE(5918)] = 236618, - [SMALL_STATE(5919)] = 236625, - [SMALL_STATE(5920)] = 236632, - [SMALL_STATE(5921)] = 236639, - [SMALL_STATE(5922)] = 236646, - [SMALL_STATE(5923)] = 236653, - [SMALL_STATE(5924)] = 236660, - [SMALL_STATE(5925)] = 236667, - [SMALL_STATE(5926)] = 236674, - [SMALL_STATE(5927)] = 236681, - [SMALL_STATE(5928)] = 236688, - [SMALL_STATE(5929)] = 236695, - [SMALL_STATE(5930)] = 236702, - [SMALL_STATE(5931)] = 236709, - [SMALL_STATE(5932)] = 236716, - [SMALL_STATE(5933)] = 236723, - [SMALL_STATE(5934)] = 236730, - [SMALL_STATE(5935)] = 236737, - [SMALL_STATE(5936)] = 236744, - [SMALL_STATE(5937)] = 236751, - [SMALL_STATE(5938)] = 236758, - [SMALL_STATE(5939)] = 236765, - [SMALL_STATE(5940)] = 236772, - [SMALL_STATE(5941)] = 236779, - [SMALL_STATE(5942)] = 236786, - [SMALL_STATE(5943)] = 236793, - [SMALL_STATE(5944)] = 236800, - [SMALL_STATE(5945)] = 236807, - [SMALL_STATE(5946)] = 236814, - [SMALL_STATE(5947)] = 236821, - [SMALL_STATE(5948)] = 236828, - [SMALL_STATE(5949)] = 236835, - [SMALL_STATE(5950)] = 236842, - [SMALL_STATE(5951)] = 236849, - [SMALL_STATE(5952)] = 236856, - [SMALL_STATE(5953)] = 236863, - [SMALL_STATE(5954)] = 236870, - [SMALL_STATE(5955)] = 236877, - [SMALL_STATE(5956)] = 236884, - [SMALL_STATE(5957)] = 236891, - [SMALL_STATE(5958)] = 236898, - [SMALL_STATE(5959)] = 236905, - [SMALL_STATE(5960)] = 236912, - [SMALL_STATE(5961)] = 236919, - [SMALL_STATE(5962)] = 236926, - [SMALL_STATE(5963)] = 236933, - [SMALL_STATE(5964)] = 236940, - [SMALL_STATE(5965)] = 236947, - [SMALL_STATE(5966)] = 236954, - [SMALL_STATE(5967)] = 236961, - [SMALL_STATE(5968)] = 236968, - [SMALL_STATE(5969)] = 236975, - [SMALL_STATE(5970)] = 236982, - [SMALL_STATE(5971)] = 236989, - [SMALL_STATE(5972)] = 236996, - [SMALL_STATE(5973)] = 237003, - [SMALL_STATE(5974)] = 237010, - [SMALL_STATE(5975)] = 237017, - [SMALL_STATE(5976)] = 237024, - [SMALL_STATE(5977)] = 237031, - [SMALL_STATE(5978)] = 237038, - [SMALL_STATE(5979)] = 237045, - [SMALL_STATE(5980)] = 237052, - [SMALL_STATE(5981)] = 237059, - [SMALL_STATE(5982)] = 237066, - [SMALL_STATE(5983)] = 237073, - [SMALL_STATE(5984)] = 237080, - [SMALL_STATE(5985)] = 237087, - [SMALL_STATE(5986)] = 237094, - [SMALL_STATE(5987)] = 237101, - [SMALL_STATE(5988)] = 237108, - [SMALL_STATE(5989)] = 237115, - [SMALL_STATE(5990)] = 237122, - [SMALL_STATE(5991)] = 237129, - [SMALL_STATE(5992)] = 237136, - [SMALL_STATE(5993)] = 237143, - [SMALL_STATE(5994)] = 237150, - [SMALL_STATE(5995)] = 237157, - [SMALL_STATE(5996)] = 237164, - [SMALL_STATE(5997)] = 237171, - [SMALL_STATE(5998)] = 237178, - [SMALL_STATE(5999)] = 237185, - [SMALL_STATE(6000)] = 237192, - [SMALL_STATE(6001)] = 237199, - [SMALL_STATE(6002)] = 237206, - [SMALL_STATE(6003)] = 237213, - [SMALL_STATE(6004)] = 237220, - [SMALL_STATE(6005)] = 237227, - [SMALL_STATE(6006)] = 237234, - [SMALL_STATE(6007)] = 237241, - [SMALL_STATE(6008)] = 237248, - [SMALL_STATE(6009)] = 237255, - [SMALL_STATE(6010)] = 237262, - [SMALL_STATE(6011)] = 237269, - [SMALL_STATE(6012)] = 237276, - [SMALL_STATE(6013)] = 237283, - [SMALL_STATE(6014)] = 237290, - [SMALL_STATE(6015)] = 237297, - [SMALL_STATE(6016)] = 237304, - [SMALL_STATE(6017)] = 237311, - [SMALL_STATE(6018)] = 237318, - [SMALL_STATE(6019)] = 237325, - [SMALL_STATE(6020)] = 237332, - [SMALL_STATE(6021)] = 237339, - [SMALL_STATE(6022)] = 237346, - [SMALL_STATE(6023)] = 237353, - [SMALL_STATE(6024)] = 237360, - [SMALL_STATE(6025)] = 237367, - [SMALL_STATE(6026)] = 237374, - [SMALL_STATE(6027)] = 237381, - [SMALL_STATE(6028)] = 237388, - [SMALL_STATE(6029)] = 237395, - [SMALL_STATE(6030)] = 237402, - [SMALL_STATE(6031)] = 237409, - [SMALL_STATE(6032)] = 237416, - [SMALL_STATE(6033)] = 237423, - [SMALL_STATE(6034)] = 237430, - [SMALL_STATE(6035)] = 237437, - [SMALL_STATE(6036)] = 237444, - [SMALL_STATE(6037)] = 237451, - [SMALL_STATE(6038)] = 237458, - [SMALL_STATE(6039)] = 237465, - [SMALL_STATE(6040)] = 237472, - [SMALL_STATE(6041)] = 237479, - [SMALL_STATE(6042)] = 237486, - [SMALL_STATE(6043)] = 237493, - [SMALL_STATE(6044)] = 237500, - [SMALL_STATE(6045)] = 237507, - [SMALL_STATE(6046)] = 237514, - [SMALL_STATE(6047)] = 237521, - [SMALL_STATE(6048)] = 237528, - [SMALL_STATE(6049)] = 237535, - [SMALL_STATE(6050)] = 237542, - [SMALL_STATE(6051)] = 237549, - [SMALL_STATE(6052)] = 237556, - [SMALL_STATE(6053)] = 237563, - [SMALL_STATE(6054)] = 237570, - [SMALL_STATE(6055)] = 237577, - [SMALL_STATE(6056)] = 237584, - [SMALL_STATE(6057)] = 237591, - [SMALL_STATE(6058)] = 237598, - [SMALL_STATE(6059)] = 237605, - [SMALL_STATE(6060)] = 237612, - [SMALL_STATE(6061)] = 237619, - [SMALL_STATE(6062)] = 237626, - [SMALL_STATE(6063)] = 237633, - [SMALL_STATE(6064)] = 237640, - [SMALL_STATE(6065)] = 237647, - [SMALL_STATE(6066)] = 237654, - [SMALL_STATE(6067)] = 237661, - [SMALL_STATE(6068)] = 237668, - [SMALL_STATE(6069)] = 237675, - [SMALL_STATE(6070)] = 237682, - [SMALL_STATE(6071)] = 237689, - [SMALL_STATE(6072)] = 237696, - [SMALL_STATE(6073)] = 237703, - [SMALL_STATE(6074)] = 237710, - [SMALL_STATE(6075)] = 237717, - [SMALL_STATE(6076)] = 237724, - [SMALL_STATE(6077)] = 237731, - [SMALL_STATE(6078)] = 237738, - [SMALL_STATE(6079)] = 237745, - [SMALL_STATE(6080)] = 237752, - [SMALL_STATE(6081)] = 237759, - [SMALL_STATE(6082)] = 237766, - [SMALL_STATE(6083)] = 237773, - [SMALL_STATE(6084)] = 237780, - [SMALL_STATE(6085)] = 237787, - [SMALL_STATE(6086)] = 237794, - [SMALL_STATE(6087)] = 237801, - [SMALL_STATE(6088)] = 237808, - [SMALL_STATE(6089)] = 237815, - [SMALL_STATE(6090)] = 237822, - [SMALL_STATE(6091)] = 237829, - [SMALL_STATE(6092)] = 237836, - [SMALL_STATE(6093)] = 237843, - [SMALL_STATE(6094)] = 237850, - [SMALL_STATE(6095)] = 237857, - [SMALL_STATE(6096)] = 237864, - [SMALL_STATE(6097)] = 237871, - [SMALL_STATE(6098)] = 237878, - [SMALL_STATE(6099)] = 237885, - [SMALL_STATE(6100)] = 237892, - [SMALL_STATE(6101)] = 237899, - [SMALL_STATE(6102)] = 237906, - [SMALL_STATE(6103)] = 237913, - [SMALL_STATE(6104)] = 237920, - [SMALL_STATE(6105)] = 237927, - [SMALL_STATE(6106)] = 237934, - [SMALL_STATE(6107)] = 237941, - [SMALL_STATE(6108)] = 237948, - [SMALL_STATE(6109)] = 237955, - [SMALL_STATE(6110)] = 237962, - [SMALL_STATE(6111)] = 237969, - [SMALL_STATE(6112)] = 237976, - [SMALL_STATE(6113)] = 237983, - [SMALL_STATE(6114)] = 237990, - [SMALL_STATE(6115)] = 237997, - [SMALL_STATE(6116)] = 238004, - [SMALL_STATE(6117)] = 238011, - [SMALL_STATE(6118)] = 238018, - [SMALL_STATE(6119)] = 238025, - [SMALL_STATE(6120)] = 238032, - [SMALL_STATE(6121)] = 238039, - [SMALL_STATE(6122)] = 238046, - [SMALL_STATE(6123)] = 238053, - [SMALL_STATE(6124)] = 238060, - [SMALL_STATE(6125)] = 238067, - [SMALL_STATE(6126)] = 238074, - [SMALL_STATE(6127)] = 238081, - [SMALL_STATE(6128)] = 238088, - [SMALL_STATE(6129)] = 238095, - [SMALL_STATE(6130)] = 238102, - [SMALL_STATE(6131)] = 238109, - [SMALL_STATE(6132)] = 238116, - [SMALL_STATE(6133)] = 238123, - [SMALL_STATE(6134)] = 238130, - [SMALL_STATE(6135)] = 238137, - [SMALL_STATE(6136)] = 238144, - [SMALL_STATE(6137)] = 238151, - [SMALL_STATE(6138)] = 238158, - [SMALL_STATE(6139)] = 238165, + [SMALL_STATE(4376)] = 217062, + [SMALL_STATE(4377)] = 217081, + [SMALL_STATE(4378)] = 217094, + [SMALL_STATE(4379)] = 217119, + [SMALL_STATE(4380)] = 217144, + [SMALL_STATE(4381)] = 217163, + [SMALL_STATE(4382)] = 217178, + [SMALL_STATE(4383)] = 217203, + [SMALL_STATE(4384)] = 217228, + [SMALL_STATE(4385)] = 217245, + [SMALL_STATE(4386)] = 217264, + [SMALL_STATE(4387)] = 217281, + [SMALL_STATE(4388)] = 217306, + [SMALL_STATE(4389)] = 217327, + [SMALL_STATE(4390)] = 217352, + [SMALL_STATE(4391)] = 217377, + [SMALL_STATE(4392)] = 217398, + [SMALL_STATE(4393)] = 217411, + [SMALL_STATE(4394)] = 217436, + [SMALL_STATE(4395)] = 217461, + [SMALL_STATE(4396)] = 217478, + [SMALL_STATE(4397)] = 217503, + [SMALL_STATE(4398)] = 217520, + [SMALL_STATE(4399)] = 217537, + [SMALL_STATE(4400)] = 217562, + [SMALL_STATE(4401)] = 217587, + [SMALL_STATE(4402)] = 217608, + [SMALL_STATE(4403)] = 217621, + [SMALL_STATE(4404)] = 217636, + [SMALL_STATE(4405)] = 217661, + [SMALL_STATE(4406)] = 217680, + [SMALL_STATE(4407)] = 217693, + [SMALL_STATE(4408)] = 217714, + [SMALL_STATE(4409)] = 217733, + [SMALL_STATE(4410)] = 217748, + [SMALL_STATE(4411)] = 217773, + [SMALL_STATE(4412)] = 217790, + [SMALL_STATE(4413)] = 217811, + [SMALL_STATE(4414)] = 217826, + [SMALL_STATE(4415)] = 217847, + [SMALL_STATE(4416)] = 217868, + [SMALL_STATE(4417)] = 217884, + [SMALL_STATE(4418)] = 217906, + [SMALL_STATE(4419)] = 217924, + [SMALL_STATE(4420)] = 217936, + [SMALL_STATE(4421)] = 217954, + [SMALL_STATE(4422)] = 217972, + [SMALL_STATE(4423)] = 217990, + [SMALL_STATE(4424)] = 218012, + [SMALL_STATE(4425)] = 218034, + [SMALL_STATE(4426)] = 218048, + [SMALL_STATE(4427)] = 218070, + [SMALL_STATE(4428)] = 218088, + [SMALL_STATE(4429)] = 218106, + [SMALL_STATE(4430)] = 218128, + [SMALL_STATE(4431)] = 218146, + [SMALL_STATE(4432)] = 218164, + [SMALL_STATE(4433)] = 218182, + [SMALL_STATE(4434)] = 218200, + [SMALL_STATE(4435)] = 218216, + [SMALL_STATE(4436)] = 218238, + [SMALL_STATE(4437)] = 218260, + [SMALL_STATE(4438)] = 218274, + [SMALL_STATE(4439)] = 218296, + [SMALL_STATE(4440)] = 218318, + [SMALL_STATE(4441)] = 218336, + [SMALL_STATE(4442)] = 218358, + [SMALL_STATE(4443)] = 218374, + [SMALL_STATE(4444)] = 218396, + [SMALL_STATE(4445)] = 218418, + [SMALL_STATE(4446)] = 218438, + [SMALL_STATE(4447)] = 218460, + [SMALL_STATE(4448)] = 218478, + [SMALL_STATE(4449)] = 218492, + [SMALL_STATE(4450)] = 218514, + [SMALL_STATE(4451)] = 218532, + [SMALL_STATE(4452)] = 218554, + [SMALL_STATE(4453)] = 218570, + [SMALL_STATE(4454)] = 218592, + [SMALL_STATE(4455)] = 218608, + [SMALL_STATE(4456)] = 218624, + [SMALL_STATE(4457)] = 218642, + [SMALL_STATE(4458)] = 218664, + [SMALL_STATE(4459)] = 218686, + [SMALL_STATE(4460)] = 218698, + [SMALL_STATE(4461)] = 218714, + [SMALL_STATE(4462)] = 218736, + [SMALL_STATE(4463)] = 218758, + [SMALL_STATE(4464)] = 218772, + [SMALL_STATE(4465)] = 218792, + [SMALL_STATE(4466)] = 218808, + [SMALL_STATE(4467)] = 218830, + [SMALL_STATE(4468)] = 218842, + [SMALL_STATE(4469)] = 218858, + [SMALL_STATE(4470)] = 218880, + [SMALL_STATE(4471)] = 218898, + [SMALL_STATE(4472)] = 218920, + [SMALL_STATE(4473)] = 218936, + [SMALL_STATE(4474)] = 218958, + [SMALL_STATE(4475)] = 218972, + [SMALL_STATE(4476)] = 218988, + [SMALL_STATE(4477)] = 219004, + [SMALL_STATE(4478)] = 219022, + [SMALL_STATE(4479)] = 219036, + [SMALL_STATE(4480)] = 219058, + [SMALL_STATE(4481)] = 219080, + [SMALL_STATE(4482)] = 219096, + [SMALL_STATE(4483)] = 219118, + [SMALL_STATE(4484)] = 219140, + [SMALL_STATE(4485)] = 219162, + [SMALL_STATE(4486)] = 219174, + [SMALL_STATE(4487)] = 219186, + [SMALL_STATE(4488)] = 219208, + [SMALL_STATE(4489)] = 219230, + [SMALL_STATE(4490)] = 219252, + [SMALL_STATE(4491)] = 219274, + [SMALL_STATE(4492)] = 219292, + [SMALL_STATE(4493)] = 219310, + [SMALL_STATE(4494)] = 219332, + [SMALL_STATE(4495)] = 219354, + [SMALL_STATE(4496)] = 219376, + [SMALL_STATE(4497)] = 219398, + [SMALL_STATE(4498)] = 219412, + [SMALL_STATE(4499)] = 219428, + [SMALL_STATE(4500)] = 219450, + [SMALL_STATE(4501)] = 219466, + [SMALL_STATE(4502)] = 219488, + [SMALL_STATE(4503)] = 219510, + [SMALL_STATE(4504)] = 219532, + [SMALL_STATE(4505)] = 219554, + [SMALL_STATE(4506)] = 219576, + [SMALL_STATE(4507)] = 219588, + [SMALL_STATE(4508)] = 219606, + [SMALL_STATE(4509)] = 219626, + [SMALL_STATE(4510)] = 219644, + [SMALL_STATE(4511)] = 219662, + [SMALL_STATE(4512)] = 219678, + [SMALL_STATE(4513)] = 219700, + [SMALL_STATE(4514)] = 219722, + [SMALL_STATE(4515)] = 219734, + [SMALL_STATE(4516)] = 219750, + [SMALL_STATE(4517)] = 219772, + [SMALL_STATE(4518)] = 219790, + [SMALL_STATE(4519)] = 219804, + [SMALL_STATE(4520)] = 219826, + [SMALL_STATE(4521)] = 219842, + [SMALL_STATE(4522)] = 219858, + [SMALL_STATE(4523)] = 219876, + [SMALL_STATE(4524)] = 219898, + [SMALL_STATE(4525)] = 219914, + [SMALL_STATE(4526)] = 219936, + [SMALL_STATE(4527)] = 219958, + [SMALL_STATE(4528)] = 219974, + [SMALL_STATE(4529)] = 219996, + [SMALL_STATE(4530)] = 220018, + [SMALL_STATE(4531)] = 220040, + [SMALL_STATE(4532)] = 220056, + [SMALL_STATE(4533)] = 220072, + [SMALL_STATE(4534)] = 220088, + [SMALL_STATE(4535)] = 220110, + [SMALL_STATE(4536)] = 220132, + [SMALL_STATE(4537)] = 220154, + [SMALL_STATE(4538)] = 220176, + [SMALL_STATE(4539)] = 220198, + [SMALL_STATE(4540)] = 220216, + [SMALL_STATE(4541)] = 220232, + [SMALL_STATE(4542)] = 220254, + [SMALL_STATE(4543)] = 220276, + [SMALL_STATE(4544)] = 220294, + [SMALL_STATE(4545)] = 220316, + [SMALL_STATE(4546)] = 220328, + [SMALL_STATE(4547)] = 220340, + [SMALL_STATE(4548)] = 220362, + [SMALL_STATE(4549)] = 220374, + [SMALL_STATE(4550)] = 220396, + [SMALL_STATE(4551)] = 220410, + [SMALL_STATE(4552)] = 220432, + [SMALL_STATE(4553)] = 220454, + [SMALL_STATE(4554)] = 220470, + [SMALL_STATE(4555)] = 220492, + [SMALL_STATE(4556)] = 220510, + [SMALL_STATE(4557)] = 220528, + [SMALL_STATE(4558)] = 220544, + [SMALL_STATE(4559)] = 220562, + [SMALL_STATE(4560)] = 220584, + [SMALL_STATE(4561)] = 220606, + [SMALL_STATE(4562)] = 220622, + [SMALL_STATE(4563)] = 220638, + [SMALL_STATE(4564)] = 220660, + [SMALL_STATE(4565)] = 220682, + [SMALL_STATE(4566)] = 220704, + [SMALL_STATE(4567)] = 220724, + [SMALL_STATE(4568)] = 220740, + [SMALL_STATE(4569)] = 220762, + [SMALL_STATE(4570)] = 220780, + [SMALL_STATE(4571)] = 220802, + [SMALL_STATE(4572)] = 220824, + [SMALL_STATE(4573)] = 220840, + [SMALL_STATE(4574)] = 220862, + [SMALL_STATE(4575)] = 220878, + [SMALL_STATE(4576)] = 220896, + [SMALL_STATE(4577)] = 220916, + [SMALL_STATE(4578)] = 220938, + [SMALL_STATE(4579)] = 220956, + [SMALL_STATE(4580)] = 220974, + [SMALL_STATE(4581)] = 220988, + [SMALL_STATE(4582)] = 221004, + [SMALL_STATE(4583)] = 221026, + [SMALL_STATE(4584)] = 221038, + [SMALL_STATE(4585)] = 221056, + [SMALL_STATE(4586)] = 221078, + [SMALL_STATE(4587)] = 221098, + [SMALL_STATE(4588)] = 221114, + [SMALL_STATE(4589)] = 221132, + [SMALL_STATE(4590)] = 221150, + [SMALL_STATE(4591)] = 221161, + [SMALL_STATE(4592)] = 221172, + [SMALL_STATE(4593)] = 221183, + [SMALL_STATE(4594)] = 221194, + [SMALL_STATE(4595)] = 221205, + [SMALL_STATE(4596)] = 221220, + [SMALL_STATE(4597)] = 221235, + [SMALL_STATE(4598)] = 221250, + [SMALL_STATE(4599)] = 221269, + [SMALL_STATE(4600)] = 221280, + [SMALL_STATE(4601)] = 221299, + [SMALL_STATE(4602)] = 221310, + [SMALL_STATE(4603)] = 221321, + [SMALL_STATE(4604)] = 221336, + [SMALL_STATE(4605)] = 221355, + [SMALL_STATE(4606)] = 221372, + [SMALL_STATE(4607)] = 221391, + [SMALL_STATE(4608)] = 221404, + [SMALL_STATE(4609)] = 221419, + [SMALL_STATE(4610)] = 221432, + [SMALL_STATE(4611)] = 221447, + [SMALL_STATE(4612)] = 221462, + [SMALL_STATE(4613)] = 221477, + [SMALL_STATE(4614)] = 221488, + [SMALL_STATE(4615)] = 221505, + [SMALL_STATE(4616)] = 221516, + [SMALL_STATE(4617)] = 221533, + [SMALL_STATE(4618)] = 221552, + [SMALL_STATE(4619)] = 221571, + [SMALL_STATE(4620)] = 221586, + [SMALL_STATE(4621)] = 221601, + [SMALL_STATE(4622)] = 221612, + [SMALL_STATE(4623)] = 221631, + [SMALL_STATE(4624)] = 221648, + [SMALL_STATE(4625)] = 221667, + [SMALL_STATE(4626)] = 221684, + [SMALL_STATE(4627)] = 221697, + [SMALL_STATE(4628)] = 221712, + [SMALL_STATE(4629)] = 221727, + [SMALL_STATE(4630)] = 221744, + [SMALL_STATE(4631)] = 221759, + [SMALL_STATE(4632)] = 221778, + [SMALL_STATE(4633)] = 221789, + [SMALL_STATE(4634)] = 221800, + [SMALL_STATE(4635)] = 221813, + [SMALL_STATE(4636)] = 221828, + [SMALL_STATE(4637)] = 221845, + [SMALL_STATE(4638)] = 221856, + [SMALL_STATE(4639)] = 221871, + [SMALL_STATE(4640)] = 221882, + [SMALL_STATE(4641)] = 221893, + [SMALL_STATE(4642)] = 221904, + [SMALL_STATE(4643)] = 221915, + [SMALL_STATE(4644)] = 221930, + [SMALL_STATE(4645)] = 221941, + [SMALL_STATE(4646)] = 221954, + [SMALL_STATE(4647)] = 221967, + [SMALL_STATE(4648)] = 221978, + [SMALL_STATE(4649)] = 221997, + [SMALL_STATE(4650)] = 222008, + [SMALL_STATE(4651)] = 222027, + [SMALL_STATE(4652)] = 222038, + [SMALL_STATE(4653)] = 222049, + [SMALL_STATE(4654)] = 222068, + [SMALL_STATE(4655)] = 222079, + [SMALL_STATE(4656)] = 222090, + [SMALL_STATE(4657)] = 222101, + [SMALL_STATE(4658)] = 222112, + [SMALL_STATE(4659)] = 222131, + [SMALL_STATE(4660)] = 222142, + [SMALL_STATE(4661)] = 222159, + [SMALL_STATE(4662)] = 222172, + [SMALL_STATE(4663)] = 222189, + [SMALL_STATE(4664)] = 222200, + [SMALL_STATE(4665)] = 222219, + [SMALL_STATE(4666)] = 222232, + [SMALL_STATE(4667)] = 222245, + [SMALL_STATE(4668)] = 222258, + [SMALL_STATE(4669)] = 222271, + [SMALL_STATE(4670)] = 222290, + [SMALL_STATE(4671)] = 222309, + [SMALL_STATE(4672)] = 222328, + [SMALL_STATE(4673)] = 222345, + [SMALL_STATE(4674)] = 222356, + [SMALL_STATE(4675)] = 222369, + [SMALL_STATE(4676)] = 222388, + [SMALL_STATE(4677)] = 222401, + [SMALL_STATE(4678)] = 222414, + [SMALL_STATE(4679)] = 222425, + [SMALL_STATE(4680)] = 222436, + [SMALL_STATE(4681)] = 222447, + [SMALL_STATE(4682)] = 222458, + [SMALL_STATE(4683)] = 222471, + [SMALL_STATE(4684)] = 222486, + [SMALL_STATE(4685)] = 222497, + [SMALL_STATE(4686)] = 222514, + [SMALL_STATE(4687)] = 222527, + [SMALL_STATE(4688)] = 222538, + [SMALL_STATE(4689)] = 222557, + [SMALL_STATE(4690)] = 222572, + [SMALL_STATE(4691)] = 222585, + [SMALL_STATE(4692)] = 222596, + [SMALL_STATE(4693)] = 222607, + [SMALL_STATE(4694)] = 222618, + [SMALL_STATE(4695)] = 222629, + [SMALL_STATE(4696)] = 222644, + [SMALL_STATE(4697)] = 222655, + [SMALL_STATE(4698)] = 222674, + [SMALL_STATE(4699)] = 222685, + [SMALL_STATE(4700)] = 222696, + [SMALL_STATE(4701)] = 222709, + [SMALL_STATE(4702)] = 222720, + [SMALL_STATE(4703)] = 222735, + [SMALL_STATE(4704)] = 222750, + [SMALL_STATE(4705)] = 222763, + [SMALL_STATE(4706)] = 222774, + [SMALL_STATE(4707)] = 222789, + [SMALL_STATE(4708)] = 222804, + [SMALL_STATE(4709)] = 222815, + [SMALL_STATE(4710)] = 222826, + [SMALL_STATE(4711)] = 222841, + [SMALL_STATE(4712)] = 222852, + [SMALL_STATE(4713)] = 222863, + [SMALL_STATE(4714)] = 222874, + [SMALL_STATE(4715)] = 222885, + [SMALL_STATE(4716)] = 222896, + [SMALL_STATE(4717)] = 222907, + [SMALL_STATE(4718)] = 222926, + [SMALL_STATE(4719)] = 222945, + [SMALL_STATE(4720)] = 222956, + [SMALL_STATE(4721)] = 222967, + [SMALL_STATE(4722)] = 222986, + [SMALL_STATE(4723)] = 222997, + [SMALL_STATE(4724)] = 223008, + [SMALL_STATE(4725)] = 223027, + [SMALL_STATE(4726)] = 223038, + [SMALL_STATE(4727)] = 223057, + [SMALL_STATE(4728)] = 223076, + [SMALL_STATE(4729)] = 223095, + [SMALL_STATE(4730)] = 223108, + [SMALL_STATE(4731)] = 223119, + [SMALL_STATE(4732)] = 223132, + [SMALL_STATE(4733)] = 223149, + [SMALL_STATE(4734)] = 223166, + [SMALL_STATE(4735)] = 223181, + [SMALL_STATE(4736)] = 223196, + [SMALL_STATE(4737)] = 223209, + [SMALL_STATE(4738)] = 223224, + [SMALL_STATE(4739)] = 223243, + [SMALL_STATE(4740)] = 223256, + [SMALL_STATE(4741)] = 223275, + [SMALL_STATE(4742)] = 223294, + [SMALL_STATE(4743)] = 223313, + [SMALL_STATE(4744)] = 223326, + [SMALL_STATE(4745)] = 223345, + [SMALL_STATE(4746)] = 223364, + [SMALL_STATE(4747)] = 223383, + [SMALL_STATE(4748)] = 223402, + [SMALL_STATE(4749)] = 223421, + [SMALL_STATE(4750)] = 223440, + [SMALL_STATE(4751)] = 223455, + [SMALL_STATE(4752)] = 223470, + [SMALL_STATE(4753)] = 223485, + [SMALL_STATE(4754)] = 223502, + [SMALL_STATE(4755)] = 223521, + [SMALL_STATE(4756)] = 223534, + [SMALL_STATE(4757)] = 223551, + [SMALL_STATE(4758)] = 223566, + [SMALL_STATE(4759)] = 223579, + [SMALL_STATE(4760)] = 223596, + [SMALL_STATE(4761)] = 223615, + [SMALL_STATE(4762)] = 223626, + [SMALL_STATE(4763)] = 223643, + [SMALL_STATE(4764)] = 223662, + [SMALL_STATE(4765)] = 223673, + [SMALL_STATE(4766)] = 223686, + [SMALL_STATE(4767)] = 223705, + [SMALL_STATE(4768)] = 223722, + [SMALL_STATE(4769)] = 223741, + [SMALL_STATE(4770)] = 223752, + [SMALL_STATE(4771)] = 223763, + [SMALL_STATE(4772)] = 223782, + [SMALL_STATE(4773)] = 223793, + [SMALL_STATE(4774)] = 223812, + [SMALL_STATE(4775)] = 223829, + [SMALL_STATE(4776)] = 223848, + [SMALL_STATE(4777)] = 223863, + [SMALL_STATE(4778)] = 223874, + [SMALL_STATE(4779)] = 223885, + [SMALL_STATE(4780)] = 223904, + [SMALL_STATE(4781)] = 223915, + [SMALL_STATE(4782)] = 223932, + [SMALL_STATE(4783)] = 223943, + [SMALL_STATE(4784)] = 223962, + [SMALL_STATE(4785)] = 223981, + [SMALL_STATE(4786)] = 223998, + [SMALL_STATE(4787)] = 224017, + [SMALL_STATE(4788)] = 224028, + [SMALL_STATE(4789)] = 224047, + [SMALL_STATE(4790)] = 224058, + [SMALL_STATE(4791)] = 224071, + [SMALL_STATE(4792)] = 224088, + [SMALL_STATE(4793)] = 224099, + [SMALL_STATE(4794)] = 224118, + [SMALL_STATE(4795)] = 224137, + [SMALL_STATE(4796)] = 224148, + [SMALL_STATE(4797)] = 224167, + [SMALL_STATE(4798)] = 224182, + [SMALL_STATE(4799)] = 224197, + [SMALL_STATE(4800)] = 224208, + [SMALL_STATE(4801)] = 224223, + [SMALL_STATE(4802)] = 224242, + [SMALL_STATE(4803)] = 224253, + [SMALL_STATE(4804)] = 224264, + [SMALL_STATE(4805)] = 224279, + [SMALL_STATE(4806)] = 224290, + [SMALL_STATE(4807)] = 224307, + [SMALL_STATE(4808)] = 224322, + [SMALL_STATE(4809)] = 224341, + [SMALL_STATE(4810)] = 224352, + [SMALL_STATE(4811)] = 224363, + [SMALL_STATE(4812)] = 224382, + [SMALL_STATE(4813)] = 224397, + [SMALL_STATE(4814)] = 224412, + [SMALL_STATE(4815)] = 224423, + [SMALL_STATE(4816)] = 224438, + [SMALL_STATE(4817)] = 224457, + [SMALL_STATE(4818)] = 224474, + [SMALL_STATE(4819)] = 224493, + [SMALL_STATE(4820)] = 224504, + [SMALL_STATE(4821)] = 224515, + [SMALL_STATE(4822)] = 224526, + [SMALL_STATE(4823)] = 224537, + [SMALL_STATE(4824)] = 224548, + [SMALL_STATE(4825)] = 224563, + [SMALL_STATE(4826)] = 224580, + [SMALL_STATE(4827)] = 224599, + [SMALL_STATE(4828)] = 224610, + [SMALL_STATE(4829)] = 224623, + [SMALL_STATE(4830)] = 224634, + [SMALL_STATE(4831)] = 224653, + [SMALL_STATE(4832)] = 224670, + [SMALL_STATE(4833)] = 224681, + [SMALL_STATE(4834)] = 224692, + [SMALL_STATE(4835)] = 224703, + [SMALL_STATE(4836)] = 224714, + [SMALL_STATE(4837)] = 224725, + [SMALL_STATE(4838)] = 224736, + [SMALL_STATE(4839)] = 224755, + [SMALL_STATE(4840)] = 224770, + [SMALL_STATE(4841)] = 224787, + [SMALL_STATE(4842)] = 224798, + [SMALL_STATE(4843)] = 224817, + [SMALL_STATE(4844)] = 224828, + [SMALL_STATE(4845)] = 224843, + [SMALL_STATE(4846)] = 224858, + [SMALL_STATE(4847)] = 224873, + [SMALL_STATE(4848)] = 224892, + [SMALL_STATE(4849)] = 224903, + [SMALL_STATE(4850)] = 224920, + [SMALL_STATE(4851)] = 224931, + [SMALL_STATE(4852)] = 224942, + [SMALL_STATE(4853)] = 224953, + [SMALL_STATE(4854)] = 224964, + [SMALL_STATE(4855)] = 224983, + [SMALL_STATE(4856)] = 225000, + [SMALL_STATE(4857)] = 225019, + [SMALL_STATE(4858)] = 225036, + [SMALL_STATE(4859)] = 225055, + [SMALL_STATE(4860)] = 225066, + [SMALL_STATE(4861)] = 225077, + [SMALL_STATE(4862)] = 225088, + [SMALL_STATE(4863)] = 225103, + [SMALL_STATE(4864)] = 225114, + [SMALL_STATE(4865)] = 225129, + [SMALL_STATE(4866)] = 225144, + [SMALL_STATE(4867)] = 225159, + [SMALL_STATE(4868)] = 225178, + [SMALL_STATE(4869)] = 225197, + [SMALL_STATE(4870)] = 225216, + [SMALL_STATE(4871)] = 225231, + [SMALL_STATE(4872)] = 225250, + [SMALL_STATE(4873)] = 225261, + [SMALL_STATE(4874)] = 225276, + [SMALL_STATE(4875)] = 225295, + [SMALL_STATE(4876)] = 225312, + [SMALL_STATE(4877)] = 225325, + [SMALL_STATE(4878)] = 225344, + [SMALL_STATE(4879)] = 225363, + [SMALL_STATE(4880)] = 225374, + [SMALL_STATE(4881)] = 225385, + [SMALL_STATE(4882)] = 225404, + [SMALL_STATE(4883)] = 225423, + [SMALL_STATE(4884)] = 225442, + [SMALL_STATE(4885)] = 225453, + [SMALL_STATE(4886)] = 225464, + [SMALL_STATE(4887)] = 225483, + [SMALL_STATE(4888)] = 225502, + [SMALL_STATE(4889)] = 225513, + [SMALL_STATE(4890)] = 225528, + [SMALL_STATE(4891)] = 225539, + [SMALL_STATE(4892)] = 225558, + [SMALL_STATE(4893)] = 225573, + [SMALL_STATE(4894)] = 225588, + [SMALL_STATE(4895)] = 225599, + [SMALL_STATE(4896)] = 225614, + [SMALL_STATE(4897)] = 225629, + [SMALL_STATE(4898)] = 225640, + [SMALL_STATE(4899)] = 225659, + [SMALL_STATE(4900)] = 225670, + [SMALL_STATE(4901)] = 225681, + [SMALL_STATE(4902)] = 225696, + [SMALL_STATE(4903)] = 225707, + [SMALL_STATE(4904)] = 225726, + [SMALL_STATE(4905)] = 225737, + [SMALL_STATE(4906)] = 225748, + [SMALL_STATE(4907)] = 225763, + [SMALL_STATE(4908)] = 225778, + [SMALL_STATE(4909)] = 225789, + [SMALL_STATE(4910)] = 225808, + [SMALL_STATE(4911)] = 225819, + [SMALL_STATE(4912)] = 225830, + [SMALL_STATE(4913)] = 225841, + [SMALL_STATE(4914)] = 225852, + [SMALL_STATE(4915)] = 225869, + [SMALL_STATE(4916)] = 225880, + [SMALL_STATE(4917)] = 225894, + [SMALL_STATE(4918)] = 225908, + [SMALL_STATE(4919)] = 225922, + [SMALL_STATE(4920)] = 225936, + [SMALL_STATE(4921)] = 225952, + [SMALL_STATE(4922)] = 225966, + [SMALL_STATE(4923)] = 225982, + [SMALL_STATE(4924)] = 225998, + [SMALL_STATE(4925)] = 226012, + [SMALL_STATE(4926)] = 226026, + [SMALL_STATE(4927)] = 226042, + [SMALL_STATE(4928)] = 226058, + [SMALL_STATE(4929)] = 226074, + [SMALL_STATE(4930)] = 226090, + [SMALL_STATE(4931)] = 226104, + [SMALL_STATE(4932)] = 226120, + [SMALL_STATE(4933)] = 226136, + [SMALL_STATE(4934)] = 226152, + [SMALL_STATE(4935)] = 226168, + [SMALL_STATE(4936)] = 226182, + [SMALL_STATE(4937)] = 226196, + [SMALL_STATE(4938)] = 226212, + [SMALL_STATE(4939)] = 226226, + [SMALL_STATE(4940)] = 226240, + [SMALL_STATE(4941)] = 226256, + [SMALL_STATE(4942)] = 226272, + [SMALL_STATE(4943)] = 226282, + [SMALL_STATE(4944)] = 226298, + [SMALL_STATE(4945)] = 226314, + [SMALL_STATE(4946)] = 226330, + [SMALL_STATE(4947)] = 226344, + [SMALL_STATE(4948)] = 226358, + [SMALL_STATE(4949)] = 226374, + [SMALL_STATE(4950)] = 226390, + [SMALL_STATE(4951)] = 226406, + [SMALL_STATE(4952)] = 226420, + [SMALL_STATE(4953)] = 226434, + [SMALL_STATE(4954)] = 226450, + [SMALL_STATE(4955)] = 226466, + [SMALL_STATE(4956)] = 226482, + [SMALL_STATE(4957)] = 226498, + [SMALL_STATE(4958)] = 226514, + [SMALL_STATE(4959)] = 226528, + [SMALL_STATE(4960)] = 226544, + [SMALL_STATE(4961)] = 226558, + [SMALL_STATE(4962)] = 226572, + [SMALL_STATE(4963)] = 226588, + [SMALL_STATE(4964)] = 226602, + [SMALL_STATE(4965)] = 226616, + [SMALL_STATE(4966)] = 226632, + [SMALL_STATE(4967)] = 226646, + [SMALL_STATE(4968)] = 226660, + [SMALL_STATE(4969)] = 226676, + [SMALL_STATE(4970)] = 226692, + [SMALL_STATE(4971)] = 226708, + [SMALL_STATE(4972)] = 226724, + [SMALL_STATE(4973)] = 226740, + [SMALL_STATE(4974)] = 226756, + [SMALL_STATE(4975)] = 226770, + [SMALL_STATE(4976)] = 226786, + [SMALL_STATE(4977)] = 226802, + [SMALL_STATE(4978)] = 226816, + [SMALL_STATE(4979)] = 226832, + [SMALL_STATE(4980)] = 226848, + [SMALL_STATE(4981)] = 226864, + [SMALL_STATE(4982)] = 226880, + [SMALL_STATE(4983)] = 226896, + [SMALL_STATE(4984)] = 226912, + [SMALL_STATE(4985)] = 226928, + [SMALL_STATE(4986)] = 226944, + [SMALL_STATE(4987)] = 226958, + [SMALL_STATE(4988)] = 226974, + [SMALL_STATE(4989)] = 226988, + [SMALL_STATE(4990)] = 227002, + [SMALL_STATE(4991)] = 227018, + [SMALL_STATE(4992)] = 227034, + [SMALL_STATE(4993)] = 227050, + [SMALL_STATE(4994)] = 227064, + [SMALL_STATE(4995)] = 227080, + [SMALL_STATE(4996)] = 227094, + [SMALL_STATE(4997)] = 227110, + [SMALL_STATE(4998)] = 227124, + [SMALL_STATE(4999)] = 227138, + [SMALL_STATE(5000)] = 227154, + [SMALL_STATE(5001)] = 227168, + [SMALL_STATE(5002)] = 227184, + [SMALL_STATE(5003)] = 227198, + [SMALL_STATE(5004)] = 227214, + [SMALL_STATE(5005)] = 227224, + [SMALL_STATE(5006)] = 227234, + [SMALL_STATE(5007)] = 227248, + [SMALL_STATE(5008)] = 227264, + [SMALL_STATE(5009)] = 227278, + [SMALL_STATE(5010)] = 227294, + [SMALL_STATE(5011)] = 227310, + [SMALL_STATE(5012)] = 227326, + [SMALL_STATE(5013)] = 227342, + [SMALL_STATE(5014)] = 227352, + [SMALL_STATE(5015)] = 227368, + [SMALL_STATE(5016)] = 227382, + [SMALL_STATE(5017)] = 227396, + [SMALL_STATE(5018)] = 227410, + [SMALL_STATE(5019)] = 227426, + [SMALL_STATE(5020)] = 227436, + [SMALL_STATE(5021)] = 227450, + [SMALL_STATE(5022)] = 227466, + [SMALL_STATE(5023)] = 227480, + [SMALL_STATE(5024)] = 227494, + [SMALL_STATE(5025)] = 227504, + [SMALL_STATE(5026)] = 227520, + [SMALL_STATE(5027)] = 227536, + [SMALL_STATE(5028)] = 227552, + [SMALL_STATE(5029)] = 227568, + [SMALL_STATE(5030)] = 227584, + [SMALL_STATE(5031)] = 227598, + [SMALL_STATE(5032)] = 227612, + [SMALL_STATE(5033)] = 227628, + [SMALL_STATE(5034)] = 227642, + [SMALL_STATE(5035)] = 227658, + [SMALL_STATE(5036)] = 227672, + [SMALL_STATE(5037)] = 227686, + [SMALL_STATE(5038)] = 227700, + [SMALL_STATE(5039)] = 227716, + [SMALL_STATE(5040)] = 227730, + [SMALL_STATE(5041)] = 227744, + [SMALL_STATE(5042)] = 227760, + [SMALL_STATE(5043)] = 227776, + [SMALL_STATE(5044)] = 227792, + [SMALL_STATE(5045)] = 227806, + [SMALL_STATE(5046)] = 227818, + [SMALL_STATE(5047)] = 227832, + [SMALL_STATE(5048)] = 227848, + [SMALL_STATE(5049)] = 227864, + [SMALL_STATE(5050)] = 227880, + [SMALL_STATE(5051)] = 227892, + [SMALL_STATE(5052)] = 227908, + [SMALL_STATE(5053)] = 227922, + [SMALL_STATE(5054)] = 227938, + [SMALL_STATE(5055)] = 227952, + [SMALL_STATE(5056)] = 227968, + [SMALL_STATE(5057)] = 227984, + [SMALL_STATE(5058)] = 228000, + [SMALL_STATE(5059)] = 228016, + [SMALL_STATE(5060)] = 228030, + [SMALL_STATE(5061)] = 228046, + [SMALL_STATE(5062)] = 228062, + [SMALL_STATE(5063)] = 228078, + [SMALL_STATE(5064)] = 228094, + [SMALL_STATE(5065)] = 228110, + [SMALL_STATE(5066)] = 228126, + [SMALL_STATE(5067)] = 228140, + [SMALL_STATE(5068)] = 228156, + [SMALL_STATE(5069)] = 228172, + [SMALL_STATE(5070)] = 228188, + [SMALL_STATE(5071)] = 228200, + [SMALL_STATE(5072)] = 228216, + [SMALL_STATE(5073)] = 228230, + [SMALL_STATE(5074)] = 228242, + [SMALL_STATE(5075)] = 228258, + [SMALL_STATE(5076)] = 228274, + [SMALL_STATE(5077)] = 228290, + [SMALL_STATE(5078)] = 228306, + [SMALL_STATE(5079)] = 228322, + [SMALL_STATE(5080)] = 228334, + [SMALL_STATE(5081)] = 228348, + [SMALL_STATE(5082)] = 228360, + [SMALL_STATE(5083)] = 228376, + [SMALL_STATE(5084)] = 228390, + [SMALL_STATE(5085)] = 228402, + [SMALL_STATE(5086)] = 228418, + [SMALL_STATE(5087)] = 228432, + [SMALL_STATE(5088)] = 228448, + [SMALL_STATE(5089)] = 228464, + [SMALL_STATE(5090)] = 228480, + [SMALL_STATE(5091)] = 228494, + [SMALL_STATE(5092)] = 228510, + [SMALL_STATE(5093)] = 228526, + [SMALL_STATE(5094)] = 228540, + [SMALL_STATE(5095)] = 228556, + [SMALL_STATE(5096)] = 228572, + [SMALL_STATE(5097)] = 228588, + [SMALL_STATE(5098)] = 228602, + [SMALL_STATE(5099)] = 228618, + [SMALL_STATE(5100)] = 228632, + [SMALL_STATE(5101)] = 228648, + [SMALL_STATE(5102)] = 228660, + [SMALL_STATE(5103)] = 228676, + [SMALL_STATE(5104)] = 228692, + [SMALL_STATE(5105)] = 228708, + [SMALL_STATE(5106)] = 228720, + [SMALL_STATE(5107)] = 228732, + [SMALL_STATE(5108)] = 228746, + [SMALL_STATE(5109)] = 228762, + [SMALL_STATE(5110)] = 228772, + [SMALL_STATE(5111)] = 228788, + [SMALL_STATE(5112)] = 228804, + [SMALL_STATE(5113)] = 228820, + [SMALL_STATE(5114)] = 228836, + [SMALL_STATE(5115)] = 228852, + [SMALL_STATE(5116)] = 228868, + [SMALL_STATE(5117)] = 228879, + [SMALL_STATE(5118)] = 228892, + [SMALL_STATE(5119)] = 228901, + [SMALL_STATE(5120)] = 228914, + [SMALL_STATE(5121)] = 228927, + [SMALL_STATE(5122)] = 228940, + [SMALL_STATE(5123)] = 228953, + [SMALL_STATE(5124)] = 228966, + [SMALL_STATE(5125)] = 228979, + [SMALL_STATE(5126)] = 228990, + [SMALL_STATE(5127)] = 229003, + [SMALL_STATE(5128)] = 229016, + [SMALL_STATE(5129)] = 229025, + [SMALL_STATE(5130)] = 229038, + [SMALL_STATE(5131)] = 229047, + [SMALL_STATE(5132)] = 229056, + [SMALL_STATE(5133)] = 229065, + [SMALL_STATE(5134)] = 229078, + [SMALL_STATE(5135)] = 229087, + [SMALL_STATE(5136)] = 229100, + [SMALL_STATE(5137)] = 229113, + [SMALL_STATE(5138)] = 229126, + [SMALL_STATE(5139)] = 229139, + [SMALL_STATE(5140)] = 229148, + [SMALL_STATE(5141)] = 229161, + [SMALL_STATE(5142)] = 229170, + [SMALL_STATE(5143)] = 229181, + [SMALL_STATE(5144)] = 229192, + [SMALL_STATE(5145)] = 229205, + [SMALL_STATE(5146)] = 229218, + [SMALL_STATE(5147)] = 229231, + [SMALL_STATE(5148)] = 229244, + [SMALL_STATE(5149)] = 229257, + [SMALL_STATE(5150)] = 229266, + [SMALL_STATE(5151)] = 229279, + [SMALL_STATE(5152)] = 229292, + [SMALL_STATE(5153)] = 229305, + [SMALL_STATE(5154)] = 229318, + [SMALL_STATE(5155)] = 229331, + [SMALL_STATE(5156)] = 229344, + [SMALL_STATE(5157)] = 229357, + [SMALL_STATE(5158)] = 229370, + [SMALL_STATE(5159)] = 229379, + [SMALL_STATE(5160)] = 229392, + [SMALL_STATE(5161)] = 229405, + [SMALL_STATE(5162)] = 229414, + [SMALL_STATE(5163)] = 229427, + [SMALL_STATE(5164)] = 229440, + [SMALL_STATE(5165)] = 229449, + [SMALL_STATE(5166)] = 229458, + [SMALL_STATE(5167)] = 229471, + [SMALL_STATE(5168)] = 229484, + [SMALL_STATE(5169)] = 229497, + [SMALL_STATE(5170)] = 229506, + [SMALL_STATE(5171)] = 229519, + [SMALL_STATE(5172)] = 229532, + [SMALL_STATE(5173)] = 229541, + [SMALL_STATE(5174)] = 229550, + [SMALL_STATE(5175)] = 229563, + [SMALL_STATE(5176)] = 229572, + [SMALL_STATE(5177)] = 229581, + [SMALL_STATE(5178)] = 229590, + [SMALL_STATE(5179)] = 229603, + [SMALL_STATE(5180)] = 229612, + [SMALL_STATE(5181)] = 229621, + [SMALL_STATE(5182)] = 229634, + [SMALL_STATE(5183)] = 229647, + [SMALL_STATE(5184)] = 229660, + [SMALL_STATE(5185)] = 229673, + [SMALL_STATE(5186)] = 229682, + [SMALL_STATE(5187)] = 229695, + [SMALL_STATE(5188)] = 229706, + [SMALL_STATE(5189)] = 229715, + [SMALL_STATE(5190)] = 229728, + [SMALL_STATE(5191)] = 229737, + [SMALL_STATE(5192)] = 229750, + [SMALL_STATE(5193)] = 229763, + [SMALL_STATE(5194)] = 229772, + [SMALL_STATE(5195)] = 229785, + [SMALL_STATE(5196)] = 229798, + [SMALL_STATE(5197)] = 229811, + [SMALL_STATE(5198)] = 229822, + [SMALL_STATE(5199)] = 229835, + [SMALL_STATE(5200)] = 229848, + [SMALL_STATE(5201)] = 229861, + [SMALL_STATE(5202)] = 229872, + [SMALL_STATE(5203)] = 229881, + [SMALL_STATE(5204)] = 229894, + [SMALL_STATE(5205)] = 229907, + [SMALL_STATE(5206)] = 229916, + [SMALL_STATE(5207)] = 229925, + [SMALL_STATE(5208)] = 229938, + [SMALL_STATE(5209)] = 229951, + [SMALL_STATE(5210)] = 229964, + [SMALL_STATE(5211)] = 229977, + [SMALL_STATE(5212)] = 229986, + [SMALL_STATE(5213)] = 229995, + [SMALL_STATE(5214)] = 230008, + [SMALL_STATE(5215)] = 230021, + [SMALL_STATE(5216)] = 230034, + [SMALL_STATE(5217)] = 230047, + [SMALL_STATE(5218)] = 230058, + [SMALL_STATE(5219)] = 230071, + [SMALL_STATE(5220)] = 230084, + [SMALL_STATE(5221)] = 230097, + [SMALL_STATE(5222)] = 230110, + [SMALL_STATE(5223)] = 230121, + [SMALL_STATE(5224)] = 230134, + [SMALL_STATE(5225)] = 230143, + [SMALL_STATE(5226)] = 230156, + [SMALL_STATE(5227)] = 230167, + [SMALL_STATE(5228)] = 230176, + [SMALL_STATE(5229)] = 230185, + [SMALL_STATE(5230)] = 230198, + [SMALL_STATE(5231)] = 230211, + [SMALL_STATE(5232)] = 230224, + [SMALL_STATE(5233)] = 230237, + [SMALL_STATE(5234)] = 230250, + [SMALL_STATE(5235)] = 230263, + [SMALL_STATE(5236)] = 230276, + [SMALL_STATE(5237)] = 230287, + [SMALL_STATE(5238)] = 230296, + [SMALL_STATE(5239)] = 230309, + [SMALL_STATE(5240)] = 230318, + [SMALL_STATE(5241)] = 230331, + [SMALL_STATE(5242)] = 230340, + [SMALL_STATE(5243)] = 230353, + [SMALL_STATE(5244)] = 230362, + [SMALL_STATE(5245)] = 230375, + [SMALL_STATE(5246)] = 230388, + [SMALL_STATE(5247)] = 230399, + [SMALL_STATE(5248)] = 230412, + [SMALL_STATE(5249)] = 230425, + [SMALL_STATE(5250)] = 230438, + [SMALL_STATE(5251)] = 230451, + [SMALL_STATE(5252)] = 230464, + [SMALL_STATE(5253)] = 230477, + [SMALL_STATE(5254)] = 230490, + [SMALL_STATE(5255)] = 230499, + [SMALL_STATE(5256)] = 230512, + [SMALL_STATE(5257)] = 230521, + [SMALL_STATE(5258)] = 230534, + [SMALL_STATE(5259)] = 230547, + [SMALL_STATE(5260)] = 230560, + [SMALL_STATE(5261)] = 230571, + [SMALL_STATE(5262)] = 230580, + [SMALL_STATE(5263)] = 230589, + [SMALL_STATE(5264)] = 230602, + [SMALL_STATE(5265)] = 230615, + [SMALL_STATE(5266)] = 230628, + [SMALL_STATE(5267)] = 230641, + [SMALL_STATE(5268)] = 230654, + [SMALL_STATE(5269)] = 230667, + [SMALL_STATE(5270)] = 230680, + [SMALL_STATE(5271)] = 230689, + [SMALL_STATE(5272)] = 230702, + [SMALL_STATE(5273)] = 230715, + [SMALL_STATE(5274)] = 230728, + [SMALL_STATE(5275)] = 230737, + [SMALL_STATE(5276)] = 230750, + [SMALL_STATE(5277)] = 230763, + [SMALL_STATE(5278)] = 230772, + [SMALL_STATE(5279)] = 230783, + [SMALL_STATE(5280)] = 230796, + [SMALL_STATE(5281)] = 230809, + [SMALL_STATE(5282)] = 230818, + [SMALL_STATE(5283)] = 230827, + [SMALL_STATE(5284)] = 230840, + [SMALL_STATE(5285)] = 230853, + [SMALL_STATE(5286)] = 230866, + [SMALL_STATE(5287)] = 230879, + [SMALL_STATE(5288)] = 230890, + [SMALL_STATE(5289)] = 230903, + [SMALL_STATE(5290)] = 230916, + [SMALL_STATE(5291)] = 230929, + [SMALL_STATE(5292)] = 230942, + [SMALL_STATE(5293)] = 230951, + [SMALL_STATE(5294)] = 230964, + [SMALL_STATE(5295)] = 230977, + [SMALL_STATE(5296)] = 230990, + [SMALL_STATE(5297)] = 230999, + [SMALL_STATE(5298)] = 231012, + [SMALL_STATE(5299)] = 231025, + [SMALL_STATE(5300)] = 231038, + [SMALL_STATE(5301)] = 231051, + [SMALL_STATE(5302)] = 231064, + [SMALL_STATE(5303)] = 231077, + [SMALL_STATE(5304)] = 231090, + [SMALL_STATE(5305)] = 231103, + [SMALL_STATE(5306)] = 231112, + [SMALL_STATE(5307)] = 231125, + [SMALL_STATE(5308)] = 231138, + [SMALL_STATE(5309)] = 231151, + [SMALL_STATE(5310)] = 231164, + [SMALL_STATE(5311)] = 231177, + [SMALL_STATE(5312)] = 231186, + [SMALL_STATE(5313)] = 231195, + [SMALL_STATE(5314)] = 231208, + [SMALL_STATE(5315)] = 231221, + [SMALL_STATE(5316)] = 231232, + [SMALL_STATE(5317)] = 231245, + [SMALL_STATE(5318)] = 231258, + [SMALL_STATE(5319)] = 231267, + [SMALL_STATE(5320)] = 231280, + [SMALL_STATE(5321)] = 231293, + [SMALL_STATE(5322)] = 231306, + [SMALL_STATE(5323)] = 231319, + [SMALL_STATE(5324)] = 231332, + [SMALL_STATE(5325)] = 231345, + [SMALL_STATE(5326)] = 231358, + [SMALL_STATE(5327)] = 231371, + [SMALL_STATE(5328)] = 231384, + [SMALL_STATE(5329)] = 231397, + [SMALL_STATE(5330)] = 231410, + [SMALL_STATE(5331)] = 231423, + [SMALL_STATE(5332)] = 231436, + [SMALL_STATE(5333)] = 231449, + [SMALL_STATE(5334)] = 231462, + [SMALL_STATE(5335)] = 231475, + [SMALL_STATE(5336)] = 231488, + [SMALL_STATE(5337)] = 231499, + [SMALL_STATE(5338)] = 231510, + [SMALL_STATE(5339)] = 231523, + [SMALL_STATE(5340)] = 231536, + [SMALL_STATE(5341)] = 231549, + [SMALL_STATE(5342)] = 231562, + [SMALL_STATE(5343)] = 231573, + [SMALL_STATE(5344)] = 231582, + [SMALL_STATE(5345)] = 231595, + [SMALL_STATE(5346)] = 231604, + [SMALL_STATE(5347)] = 231613, + [SMALL_STATE(5348)] = 231626, + [SMALL_STATE(5349)] = 231639, + [SMALL_STATE(5350)] = 231648, + [SMALL_STATE(5351)] = 231657, + [SMALL_STATE(5352)] = 231670, + [SMALL_STATE(5353)] = 231683, + [SMALL_STATE(5354)] = 231692, + [SMALL_STATE(5355)] = 231705, + [SMALL_STATE(5356)] = 231714, + [SMALL_STATE(5357)] = 231723, + [SMALL_STATE(5358)] = 231732, + [SMALL_STATE(5359)] = 231743, + [SMALL_STATE(5360)] = 231756, + [SMALL_STATE(5361)] = 231767, + [SMALL_STATE(5362)] = 231776, + [SMALL_STATE(5363)] = 231789, + [SMALL_STATE(5364)] = 231798, + [SMALL_STATE(5365)] = 231807, + [SMALL_STATE(5366)] = 231816, + [SMALL_STATE(5367)] = 231825, + [SMALL_STATE(5368)] = 231834, + [SMALL_STATE(5369)] = 231843, + [SMALL_STATE(5370)] = 231856, + [SMALL_STATE(5371)] = 231865, + [SMALL_STATE(5372)] = 231874, + [SMALL_STATE(5373)] = 231887, + [SMALL_STATE(5374)] = 231900, + [SMALL_STATE(5375)] = 231913, + [SMALL_STATE(5376)] = 231922, + [SMALL_STATE(5377)] = 231935, + [SMALL_STATE(5378)] = 231948, + [SMALL_STATE(5379)] = 231961, + [SMALL_STATE(5380)] = 231974, + [SMALL_STATE(5381)] = 231987, + [SMALL_STATE(5382)] = 232000, + [SMALL_STATE(5383)] = 232013, + [SMALL_STATE(5384)] = 232026, + [SMALL_STATE(5385)] = 232039, + [SMALL_STATE(5386)] = 232048, + [SMALL_STATE(5387)] = 232061, + [SMALL_STATE(5388)] = 232074, + [SMALL_STATE(5389)] = 232083, + [SMALL_STATE(5390)] = 232093, + [SMALL_STATE(5391)] = 232103, + [SMALL_STATE(5392)] = 232113, + [SMALL_STATE(5393)] = 232123, + [SMALL_STATE(5394)] = 232133, + [SMALL_STATE(5395)] = 232143, + [SMALL_STATE(5396)] = 232151, + [SMALL_STATE(5397)] = 232161, + [SMALL_STATE(5398)] = 232171, + [SMALL_STATE(5399)] = 232179, + [SMALL_STATE(5400)] = 232189, + [SMALL_STATE(5401)] = 232199, + [SMALL_STATE(5402)] = 232207, + [SMALL_STATE(5403)] = 232217, + [SMALL_STATE(5404)] = 232227, + [SMALL_STATE(5405)] = 232237, + [SMALL_STATE(5406)] = 232247, + [SMALL_STATE(5407)] = 232255, + [SMALL_STATE(5408)] = 232265, + [SMALL_STATE(5409)] = 232275, + [SMALL_STATE(5410)] = 232285, + [SMALL_STATE(5411)] = 232293, + [SMALL_STATE(5412)] = 232303, + [SMALL_STATE(5413)] = 232313, + [SMALL_STATE(5414)] = 232323, + [SMALL_STATE(5415)] = 232333, + [SMALL_STATE(5416)] = 232343, + [SMALL_STATE(5417)] = 232353, + [SMALL_STATE(5418)] = 232363, + [SMALL_STATE(5419)] = 232373, + [SMALL_STATE(5420)] = 232381, + [SMALL_STATE(5421)] = 232391, + [SMALL_STATE(5422)] = 232401, + [SMALL_STATE(5423)] = 232409, + [SMALL_STATE(5424)] = 232419, + [SMALL_STATE(5425)] = 232429, + [SMALL_STATE(5426)] = 232439, + [SMALL_STATE(5427)] = 232447, + [SMALL_STATE(5428)] = 232457, + [SMALL_STATE(5429)] = 232467, + [SMALL_STATE(5430)] = 232477, + [SMALL_STATE(5431)] = 232487, + [SMALL_STATE(5432)] = 232497, + [SMALL_STATE(5433)] = 232507, + [SMALL_STATE(5434)] = 232517, + [SMALL_STATE(5435)] = 232527, + [SMALL_STATE(5436)] = 232537, + [SMALL_STATE(5437)] = 232547, + [SMALL_STATE(5438)] = 232555, + [SMALL_STATE(5439)] = 232565, + [SMALL_STATE(5440)] = 232575, + [SMALL_STATE(5441)] = 232585, + [SMALL_STATE(5442)] = 232595, + [SMALL_STATE(5443)] = 232603, + [SMALL_STATE(5444)] = 232613, + [SMALL_STATE(5445)] = 232623, + [SMALL_STATE(5446)] = 232631, + [SMALL_STATE(5447)] = 232639, + [SMALL_STATE(5448)] = 232649, + [SMALL_STATE(5449)] = 232659, + [SMALL_STATE(5450)] = 232669, + [SMALL_STATE(5451)] = 232679, + [SMALL_STATE(5452)] = 232687, + [SMALL_STATE(5453)] = 232697, + [SMALL_STATE(5454)] = 232707, + [SMALL_STATE(5455)] = 232717, + [SMALL_STATE(5456)] = 232727, + [SMALL_STATE(5457)] = 232735, + [SMALL_STATE(5458)] = 232745, + [SMALL_STATE(5459)] = 232755, + [SMALL_STATE(5460)] = 232765, + [SMALL_STATE(5461)] = 232775, + [SMALL_STATE(5462)] = 232785, + [SMALL_STATE(5463)] = 232795, + [SMALL_STATE(5464)] = 232805, + [SMALL_STATE(5465)] = 232815, + [SMALL_STATE(5466)] = 232825, + [SMALL_STATE(5467)] = 232833, + [SMALL_STATE(5468)] = 232843, + [SMALL_STATE(5469)] = 232853, + [SMALL_STATE(5470)] = 232863, + [SMALL_STATE(5471)] = 232873, + [SMALL_STATE(5472)] = 232883, + [SMALL_STATE(5473)] = 232891, + [SMALL_STATE(5474)] = 232901, + [SMALL_STATE(5475)] = 232911, + [SMALL_STATE(5476)] = 232921, + [SMALL_STATE(5477)] = 232929, + [SMALL_STATE(5478)] = 232939, + [SMALL_STATE(5479)] = 232949, + [SMALL_STATE(5480)] = 232959, + [SMALL_STATE(5481)] = 232967, + [SMALL_STATE(5482)] = 232977, + [SMALL_STATE(5483)] = 232987, + [SMALL_STATE(5484)] = 232997, + [SMALL_STATE(5485)] = 233007, + [SMALL_STATE(5486)] = 233017, + [SMALL_STATE(5487)] = 233027, + [SMALL_STATE(5488)] = 233037, + [SMALL_STATE(5489)] = 233047, + [SMALL_STATE(5490)] = 233057, + [SMALL_STATE(5491)] = 233067, + [SMALL_STATE(5492)] = 233077, + [SMALL_STATE(5493)] = 233087, + [SMALL_STATE(5494)] = 233095, + [SMALL_STATE(5495)] = 233105, + [SMALL_STATE(5496)] = 233115, + [SMALL_STATE(5497)] = 233125, + [SMALL_STATE(5498)] = 233135, + [SMALL_STATE(5499)] = 233143, + [SMALL_STATE(5500)] = 233151, + [SMALL_STATE(5501)] = 233161, + [SMALL_STATE(5502)] = 233171, + [SMALL_STATE(5503)] = 233181, + [SMALL_STATE(5504)] = 233189, + [SMALL_STATE(5505)] = 233199, + [SMALL_STATE(5506)] = 233209, + [SMALL_STATE(5507)] = 233219, + [SMALL_STATE(5508)] = 233229, + [SMALL_STATE(5509)] = 233239, + [SMALL_STATE(5510)] = 233249, + [SMALL_STATE(5511)] = 233259, + [SMALL_STATE(5512)] = 233269, + [SMALL_STATE(5513)] = 233279, + [SMALL_STATE(5514)] = 233287, + [SMALL_STATE(5515)] = 233297, + [SMALL_STATE(5516)] = 233307, + [SMALL_STATE(5517)] = 233317, + [SMALL_STATE(5518)] = 233327, + [SMALL_STATE(5519)] = 233337, + [SMALL_STATE(5520)] = 233347, + [SMALL_STATE(5521)] = 233355, + [SMALL_STATE(5522)] = 233363, + [SMALL_STATE(5523)] = 233371, + [SMALL_STATE(5524)] = 233381, + [SMALL_STATE(5525)] = 233389, + [SMALL_STATE(5526)] = 233399, + [SMALL_STATE(5527)] = 233409, + [SMALL_STATE(5528)] = 233419, + [SMALL_STATE(5529)] = 233429, + [SMALL_STATE(5530)] = 233437, + [SMALL_STATE(5531)] = 233447, + [SMALL_STATE(5532)] = 233457, + [SMALL_STATE(5533)] = 233467, + [SMALL_STATE(5534)] = 233477, + [SMALL_STATE(5535)] = 233485, + [SMALL_STATE(5536)] = 233493, + [SMALL_STATE(5537)] = 233503, + [SMALL_STATE(5538)] = 233513, + [SMALL_STATE(5539)] = 233523, + [SMALL_STATE(5540)] = 233533, + [SMALL_STATE(5541)] = 233543, + [SMALL_STATE(5542)] = 233553, + [SMALL_STATE(5543)] = 233561, + [SMALL_STATE(5544)] = 233571, + [SMALL_STATE(5545)] = 233581, + [SMALL_STATE(5546)] = 233591, + [SMALL_STATE(5547)] = 233601, + [SMALL_STATE(5548)] = 233611, + [SMALL_STATE(5549)] = 233621, + [SMALL_STATE(5550)] = 233629, + [SMALL_STATE(5551)] = 233639, + [SMALL_STATE(5552)] = 233649, + [SMALL_STATE(5553)] = 233659, + [SMALL_STATE(5554)] = 233669, + [SMALL_STATE(5555)] = 233677, + [SMALL_STATE(5556)] = 233687, + [SMALL_STATE(5557)] = 233697, + [SMALL_STATE(5558)] = 233707, + [SMALL_STATE(5559)] = 233717, + [SMALL_STATE(5560)] = 233727, + [SMALL_STATE(5561)] = 233737, + [SMALL_STATE(5562)] = 233745, + [SMALL_STATE(5563)] = 233755, + [SMALL_STATE(5564)] = 233765, + [SMALL_STATE(5565)] = 233775, + [SMALL_STATE(5566)] = 233785, + [SMALL_STATE(5567)] = 233795, + [SMALL_STATE(5568)] = 233805, + [SMALL_STATE(5569)] = 233815, + [SMALL_STATE(5570)] = 233825, + [SMALL_STATE(5571)] = 233835, + [SMALL_STATE(5572)] = 233845, + [SMALL_STATE(5573)] = 233855, + [SMALL_STATE(5574)] = 233865, + [SMALL_STATE(5575)] = 233875, + [SMALL_STATE(5576)] = 233883, + [SMALL_STATE(5577)] = 233893, + [SMALL_STATE(5578)] = 233903, + [SMALL_STATE(5579)] = 233911, + [SMALL_STATE(5580)] = 233919, + [SMALL_STATE(5581)] = 233929, + [SMALL_STATE(5582)] = 233939, + [SMALL_STATE(5583)] = 233949, + [SMALL_STATE(5584)] = 233959, + [SMALL_STATE(5585)] = 233969, + [SMALL_STATE(5586)] = 233979, + [SMALL_STATE(5587)] = 233989, + [SMALL_STATE(5588)] = 233999, + [SMALL_STATE(5589)] = 234007, + [SMALL_STATE(5590)] = 234017, + [SMALL_STATE(5591)] = 234025, + [SMALL_STATE(5592)] = 234033, + [SMALL_STATE(5593)] = 234041, + [SMALL_STATE(5594)] = 234049, + [SMALL_STATE(5595)] = 234059, + [SMALL_STATE(5596)] = 234067, + [SMALL_STATE(5597)] = 234077, + [SMALL_STATE(5598)] = 234087, + [SMALL_STATE(5599)] = 234095, + [SMALL_STATE(5600)] = 234105, + [SMALL_STATE(5601)] = 234115, + [SMALL_STATE(5602)] = 234125, + [SMALL_STATE(5603)] = 234135, + [SMALL_STATE(5604)] = 234145, + [SMALL_STATE(5605)] = 234155, + [SMALL_STATE(5606)] = 234165, + [SMALL_STATE(5607)] = 234175, + [SMALL_STATE(5608)] = 234185, + [SMALL_STATE(5609)] = 234193, + [SMALL_STATE(5610)] = 234203, + [SMALL_STATE(5611)] = 234213, + [SMALL_STATE(5612)] = 234223, + [SMALL_STATE(5613)] = 234233, + [SMALL_STATE(5614)] = 234243, + [SMALL_STATE(5615)] = 234253, + [SMALL_STATE(5616)] = 234263, + [SMALL_STATE(5617)] = 234273, + [SMALL_STATE(5618)] = 234281, + [SMALL_STATE(5619)] = 234291, + [SMALL_STATE(5620)] = 234301, + [SMALL_STATE(5621)] = 234311, + [SMALL_STATE(5622)] = 234321, + [SMALL_STATE(5623)] = 234331, + [SMALL_STATE(5624)] = 234341, + [SMALL_STATE(5625)] = 234351, + [SMALL_STATE(5626)] = 234361, + [SMALL_STATE(5627)] = 234371, + [SMALL_STATE(5628)] = 234379, + [SMALL_STATE(5629)] = 234389, + [SMALL_STATE(5630)] = 234399, + [SMALL_STATE(5631)] = 234409, + [SMALL_STATE(5632)] = 234417, + [SMALL_STATE(5633)] = 234427, + [SMALL_STATE(5634)] = 234435, + [SMALL_STATE(5635)] = 234445, + [SMALL_STATE(5636)] = 234455, + [SMALL_STATE(5637)] = 234465, + [SMALL_STATE(5638)] = 234475, + [SMALL_STATE(5639)] = 234485, + [SMALL_STATE(5640)] = 234493, + [SMALL_STATE(5641)] = 234503, + [SMALL_STATE(5642)] = 234511, + [SMALL_STATE(5643)] = 234519, + [SMALL_STATE(5644)] = 234529, + [SMALL_STATE(5645)] = 234539, + [SMALL_STATE(5646)] = 234547, + [SMALL_STATE(5647)] = 234557, + [SMALL_STATE(5648)] = 234567, + [SMALL_STATE(5649)] = 234575, + [SMALL_STATE(5650)] = 234585, + [SMALL_STATE(5651)] = 234593, + [SMALL_STATE(5652)] = 234603, + [SMALL_STATE(5653)] = 234611, + [SMALL_STATE(5654)] = 234621, + [SMALL_STATE(5655)] = 234631, + [SMALL_STATE(5656)] = 234641, + [SMALL_STATE(5657)] = 234651, + [SMALL_STATE(5658)] = 234661, + [SMALL_STATE(5659)] = 234671, + [SMALL_STATE(5660)] = 234681, + [SMALL_STATE(5661)] = 234691, + [SMALL_STATE(5662)] = 234701, + [SMALL_STATE(5663)] = 234711, + [SMALL_STATE(5664)] = 234721, + [SMALL_STATE(5665)] = 234731, + [SMALL_STATE(5666)] = 234741, + [SMALL_STATE(5667)] = 234751, + [SMALL_STATE(5668)] = 234761, + [SMALL_STATE(5669)] = 234771, + [SMALL_STATE(5670)] = 234779, + [SMALL_STATE(5671)] = 234789, + [SMALL_STATE(5672)] = 234799, + [SMALL_STATE(5673)] = 234809, + [SMALL_STATE(5674)] = 234819, + [SMALL_STATE(5675)] = 234829, + [SMALL_STATE(5676)] = 234839, + [SMALL_STATE(5677)] = 234849, + [SMALL_STATE(5678)] = 234859, + [SMALL_STATE(5679)] = 234869, + [SMALL_STATE(5680)] = 234879, + [SMALL_STATE(5681)] = 234889, + [SMALL_STATE(5682)] = 234899, + [SMALL_STATE(5683)] = 234909, + [SMALL_STATE(5684)] = 234919, + [SMALL_STATE(5685)] = 234927, + [SMALL_STATE(5686)] = 234937, + [SMALL_STATE(5687)] = 234947, + [SMALL_STATE(5688)] = 234957, + [SMALL_STATE(5689)] = 234965, + [SMALL_STATE(5690)] = 234975, + [SMALL_STATE(5691)] = 234983, + [SMALL_STATE(5692)] = 234991, + [SMALL_STATE(5693)] = 235001, + [SMALL_STATE(5694)] = 235011, + [SMALL_STATE(5695)] = 235021, + [SMALL_STATE(5696)] = 235031, + [SMALL_STATE(5697)] = 235041, + [SMALL_STATE(5698)] = 235051, + [SMALL_STATE(5699)] = 235059, + [SMALL_STATE(5700)] = 235069, + [SMALL_STATE(5701)] = 235079, + [SMALL_STATE(5702)] = 235089, + [SMALL_STATE(5703)] = 235099, + [SMALL_STATE(5704)] = 235109, + [SMALL_STATE(5705)] = 235119, + [SMALL_STATE(5706)] = 235129, + [SMALL_STATE(5707)] = 235139, + [SMALL_STATE(5708)] = 235149, + [SMALL_STATE(5709)] = 235159, + [SMALL_STATE(5710)] = 235169, + [SMALL_STATE(5711)] = 235179, + [SMALL_STATE(5712)] = 235189, + [SMALL_STATE(5713)] = 235196, + [SMALL_STATE(5714)] = 235203, + [SMALL_STATE(5715)] = 235210, + [SMALL_STATE(5716)] = 235217, + [SMALL_STATE(5717)] = 235224, + [SMALL_STATE(5718)] = 235231, + [SMALL_STATE(5719)] = 235238, + [SMALL_STATE(5720)] = 235245, + [SMALL_STATE(5721)] = 235252, + [SMALL_STATE(5722)] = 235259, + [SMALL_STATE(5723)] = 235266, + [SMALL_STATE(5724)] = 235273, + [SMALL_STATE(5725)] = 235280, + [SMALL_STATE(5726)] = 235287, + [SMALL_STATE(5727)] = 235294, + [SMALL_STATE(5728)] = 235301, + [SMALL_STATE(5729)] = 235308, + [SMALL_STATE(5730)] = 235315, + [SMALL_STATE(5731)] = 235322, + [SMALL_STATE(5732)] = 235329, + [SMALL_STATE(5733)] = 235336, + [SMALL_STATE(5734)] = 235343, + [SMALL_STATE(5735)] = 235350, + [SMALL_STATE(5736)] = 235357, + [SMALL_STATE(5737)] = 235364, + [SMALL_STATE(5738)] = 235371, + [SMALL_STATE(5739)] = 235378, + [SMALL_STATE(5740)] = 235385, + [SMALL_STATE(5741)] = 235392, + [SMALL_STATE(5742)] = 235399, + [SMALL_STATE(5743)] = 235406, + [SMALL_STATE(5744)] = 235413, + [SMALL_STATE(5745)] = 235420, + [SMALL_STATE(5746)] = 235427, + [SMALL_STATE(5747)] = 235434, + [SMALL_STATE(5748)] = 235441, + [SMALL_STATE(5749)] = 235448, + [SMALL_STATE(5750)] = 235455, + [SMALL_STATE(5751)] = 235462, + [SMALL_STATE(5752)] = 235469, + [SMALL_STATE(5753)] = 235476, + [SMALL_STATE(5754)] = 235483, + [SMALL_STATE(5755)] = 235490, + [SMALL_STATE(5756)] = 235497, + [SMALL_STATE(5757)] = 235504, + [SMALL_STATE(5758)] = 235511, + [SMALL_STATE(5759)] = 235518, + [SMALL_STATE(5760)] = 235525, + [SMALL_STATE(5761)] = 235532, + [SMALL_STATE(5762)] = 235539, + [SMALL_STATE(5763)] = 235546, + [SMALL_STATE(5764)] = 235553, + [SMALL_STATE(5765)] = 235560, + [SMALL_STATE(5766)] = 235567, + [SMALL_STATE(5767)] = 235574, + [SMALL_STATE(5768)] = 235581, + [SMALL_STATE(5769)] = 235588, + [SMALL_STATE(5770)] = 235595, + [SMALL_STATE(5771)] = 235602, + [SMALL_STATE(5772)] = 235609, + [SMALL_STATE(5773)] = 235616, + [SMALL_STATE(5774)] = 235623, + [SMALL_STATE(5775)] = 235630, + [SMALL_STATE(5776)] = 235637, + [SMALL_STATE(5777)] = 235644, + [SMALL_STATE(5778)] = 235651, + [SMALL_STATE(5779)] = 235658, + [SMALL_STATE(5780)] = 235665, + [SMALL_STATE(5781)] = 235672, + [SMALL_STATE(5782)] = 235679, + [SMALL_STATE(5783)] = 235686, + [SMALL_STATE(5784)] = 235693, + [SMALL_STATE(5785)] = 235700, + [SMALL_STATE(5786)] = 235707, + [SMALL_STATE(5787)] = 235714, + [SMALL_STATE(5788)] = 235721, + [SMALL_STATE(5789)] = 235728, + [SMALL_STATE(5790)] = 235735, + [SMALL_STATE(5791)] = 235742, + [SMALL_STATE(5792)] = 235749, + [SMALL_STATE(5793)] = 235756, + [SMALL_STATE(5794)] = 235763, + [SMALL_STATE(5795)] = 235770, + [SMALL_STATE(5796)] = 235777, + [SMALL_STATE(5797)] = 235784, + [SMALL_STATE(5798)] = 235791, + [SMALL_STATE(5799)] = 235798, + [SMALL_STATE(5800)] = 235805, + [SMALL_STATE(5801)] = 235812, + [SMALL_STATE(5802)] = 235819, + [SMALL_STATE(5803)] = 235826, + [SMALL_STATE(5804)] = 235833, + [SMALL_STATE(5805)] = 235840, + [SMALL_STATE(5806)] = 235847, + [SMALL_STATE(5807)] = 235854, + [SMALL_STATE(5808)] = 235861, + [SMALL_STATE(5809)] = 235868, + [SMALL_STATE(5810)] = 235875, + [SMALL_STATE(5811)] = 235882, + [SMALL_STATE(5812)] = 235889, + [SMALL_STATE(5813)] = 235896, + [SMALL_STATE(5814)] = 235903, + [SMALL_STATE(5815)] = 235910, + [SMALL_STATE(5816)] = 235917, + [SMALL_STATE(5817)] = 235924, + [SMALL_STATE(5818)] = 235931, + [SMALL_STATE(5819)] = 235938, + [SMALL_STATE(5820)] = 235945, + [SMALL_STATE(5821)] = 235952, + [SMALL_STATE(5822)] = 235959, + [SMALL_STATE(5823)] = 235966, + [SMALL_STATE(5824)] = 235973, + [SMALL_STATE(5825)] = 235980, + [SMALL_STATE(5826)] = 235987, + [SMALL_STATE(5827)] = 235994, + [SMALL_STATE(5828)] = 236001, + [SMALL_STATE(5829)] = 236008, + [SMALL_STATE(5830)] = 236015, + [SMALL_STATE(5831)] = 236022, + [SMALL_STATE(5832)] = 236029, + [SMALL_STATE(5833)] = 236036, + [SMALL_STATE(5834)] = 236043, + [SMALL_STATE(5835)] = 236050, + [SMALL_STATE(5836)] = 236057, + [SMALL_STATE(5837)] = 236064, + [SMALL_STATE(5838)] = 236071, + [SMALL_STATE(5839)] = 236078, + [SMALL_STATE(5840)] = 236085, + [SMALL_STATE(5841)] = 236092, + [SMALL_STATE(5842)] = 236099, + [SMALL_STATE(5843)] = 236106, + [SMALL_STATE(5844)] = 236113, + [SMALL_STATE(5845)] = 236120, + [SMALL_STATE(5846)] = 236127, + [SMALL_STATE(5847)] = 236134, + [SMALL_STATE(5848)] = 236141, + [SMALL_STATE(5849)] = 236148, + [SMALL_STATE(5850)] = 236155, + [SMALL_STATE(5851)] = 236162, + [SMALL_STATE(5852)] = 236169, + [SMALL_STATE(5853)] = 236176, + [SMALL_STATE(5854)] = 236183, + [SMALL_STATE(5855)] = 236190, + [SMALL_STATE(5856)] = 236197, + [SMALL_STATE(5857)] = 236204, + [SMALL_STATE(5858)] = 236211, + [SMALL_STATE(5859)] = 236218, + [SMALL_STATE(5860)] = 236225, + [SMALL_STATE(5861)] = 236232, + [SMALL_STATE(5862)] = 236239, + [SMALL_STATE(5863)] = 236246, + [SMALL_STATE(5864)] = 236253, + [SMALL_STATE(5865)] = 236260, + [SMALL_STATE(5866)] = 236267, + [SMALL_STATE(5867)] = 236274, + [SMALL_STATE(5868)] = 236281, + [SMALL_STATE(5869)] = 236288, + [SMALL_STATE(5870)] = 236295, + [SMALL_STATE(5871)] = 236302, + [SMALL_STATE(5872)] = 236309, + [SMALL_STATE(5873)] = 236316, + [SMALL_STATE(5874)] = 236323, + [SMALL_STATE(5875)] = 236330, + [SMALL_STATE(5876)] = 236337, + [SMALL_STATE(5877)] = 236344, + [SMALL_STATE(5878)] = 236351, + [SMALL_STATE(5879)] = 236358, + [SMALL_STATE(5880)] = 236365, + [SMALL_STATE(5881)] = 236372, + [SMALL_STATE(5882)] = 236379, + [SMALL_STATE(5883)] = 236386, + [SMALL_STATE(5884)] = 236393, + [SMALL_STATE(5885)] = 236400, + [SMALL_STATE(5886)] = 236407, + [SMALL_STATE(5887)] = 236414, + [SMALL_STATE(5888)] = 236421, + [SMALL_STATE(5889)] = 236428, + [SMALL_STATE(5890)] = 236435, + [SMALL_STATE(5891)] = 236442, + [SMALL_STATE(5892)] = 236449, + [SMALL_STATE(5893)] = 236456, + [SMALL_STATE(5894)] = 236463, + [SMALL_STATE(5895)] = 236470, + [SMALL_STATE(5896)] = 236477, + [SMALL_STATE(5897)] = 236484, + [SMALL_STATE(5898)] = 236491, + [SMALL_STATE(5899)] = 236498, + [SMALL_STATE(5900)] = 236505, + [SMALL_STATE(5901)] = 236512, + [SMALL_STATE(5902)] = 236519, + [SMALL_STATE(5903)] = 236526, + [SMALL_STATE(5904)] = 236533, + [SMALL_STATE(5905)] = 236540, + [SMALL_STATE(5906)] = 236547, + [SMALL_STATE(5907)] = 236554, + [SMALL_STATE(5908)] = 236561, + [SMALL_STATE(5909)] = 236568, + [SMALL_STATE(5910)] = 236575, + [SMALL_STATE(5911)] = 236582, + [SMALL_STATE(5912)] = 236589, + [SMALL_STATE(5913)] = 236596, + [SMALL_STATE(5914)] = 236603, + [SMALL_STATE(5915)] = 236610, + [SMALL_STATE(5916)] = 236617, + [SMALL_STATE(5917)] = 236624, + [SMALL_STATE(5918)] = 236631, + [SMALL_STATE(5919)] = 236638, + [SMALL_STATE(5920)] = 236645, + [SMALL_STATE(5921)] = 236652, + [SMALL_STATE(5922)] = 236659, + [SMALL_STATE(5923)] = 236666, + [SMALL_STATE(5924)] = 236673, + [SMALL_STATE(5925)] = 236680, + [SMALL_STATE(5926)] = 236687, + [SMALL_STATE(5927)] = 236694, + [SMALL_STATE(5928)] = 236701, + [SMALL_STATE(5929)] = 236708, + [SMALL_STATE(5930)] = 236715, + [SMALL_STATE(5931)] = 236722, + [SMALL_STATE(5932)] = 236729, + [SMALL_STATE(5933)] = 236736, + [SMALL_STATE(5934)] = 236743, + [SMALL_STATE(5935)] = 236750, + [SMALL_STATE(5936)] = 236757, + [SMALL_STATE(5937)] = 236764, + [SMALL_STATE(5938)] = 236771, + [SMALL_STATE(5939)] = 236778, + [SMALL_STATE(5940)] = 236785, + [SMALL_STATE(5941)] = 236792, + [SMALL_STATE(5942)] = 236799, + [SMALL_STATE(5943)] = 236806, + [SMALL_STATE(5944)] = 236813, + [SMALL_STATE(5945)] = 236820, + [SMALL_STATE(5946)] = 236827, + [SMALL_STATE(5947)] = 236834, + [SMALL_STATE(5948)] = 236841, + [SMALL_STATE(5949)] = 236848, + [SMALL_STATE(5950)] = 236855, + [SMALL_STATE(5951)] = 236862, + [SMALL_STATE(5952)] = 236869, + [SMALL_STATE(5953)] = 236876, + [SMALL_STATE(5954)] = 236883, + [SMALL_STATE(5955)] = 236890, + [SMALL_STATE(5956)] = 236897, + [SMALL_STATE(5957)] = 236904, + [SMALL_STATE(5958)] = 236911, + [SMALL_STATE(5959)] = 236918, + [SMALL_STATE(5960)] = 236925, + [SMALL_STATE(5961)] = 236932, + [SMALL_STATE(5962)] = 236939, + [SMALL_STATE(5963)] = 236946, + [SMALL_STATE(5964)] = 236953, + [SMALL_STATE(5965)] = 236960, + [SMALL_STATE(5966)] = 236967, + [SMALL_STATE(5967)] = 236974, + [SMALL_STATE(5968)] = 236981, + [SMALL_STATE(5969)] = 236988, + [SMALL_STATE(5970)] = 236995, + [SMALL_STATE(5971)] = 237002, + [SMALL_STATE(5972)] = 237009, + [SMALL_STATE(5973)] = 237016, + [SMALL_STATE(5974)] = 237023, + [SMALL_STATE(5975)] = 237030, + [SMALL_STATE(5976)] = 237037, + [SMALL_STATE(5977)] = 237044, + [SMALL_STATE(5978)] = 237051, + [SMALL_STATE(5979)] = 237058, + [SMALL_STATE(5980)] = 237065, + [SMALL_STATE(5981)] = 237072, + [SMALL_STATE(5982)] = 237079, + [SMALL_STATE(5983)] = 237086, + [SMALL_STATE(5984)] = 237093, + [SMALL_STATE(5985)] = 237100, + [SMALL_STATE(5986)] = 237107, + [SMALL_STATE(5987)] = 237114, + [SMALL_STATE(5988)] = 237121, + [SMALL_STATE(5989)] = 237128, + [SMALL_STATE(5990)] = 237135, + [SMALL_STATE(5991)] = 237142, + [SMALL_STATE(5992)] = 237149, + [SMALL_STATE(5993)] = 237156, + [SMALL_STATE(5994)] = 237163, + [SMALL_STATE(5995)] = 237170, + [SMALL_STATE(5996)] = 237177, + [SMALL_STATE(5997)] = 237184, + [SMALL_STATE(5998)] = 237191, + [SMALL_STATE(5999)] = 237198, + [SMALL_STATE(6000)] = 237205, + [SMALL_STATE(6001)] = 237212, + [SMALL_STATE(6002)] = 237219, + [SMALL_STATE(6003)] = 237226, + [SMALL_STATE(6004)] = 237233, + [SMALL_STATE(6005)] = 237240, + [SMALL_STATE(6006)] = 237247, + [SMALL_STATE(6007)] = 237254, + [SMALL_STATE(6008)] = 237261, + [SMALL_STATE(6009)] = 237268, + [SMALL_STATE(6010)] = 237275, + [SMALL_STATE(6011)] = 237282, + [SMALL_STATE(6012)] = 237289, + [SMALL_STATE(6013)] = 237296, + [SMALL_STATE(6014)] = 237303, + [SMALL_STATE(6015)] = 237310, + [SMALL_STATE(6016)] = 237317, + [SMALL_STATE(6017)] = 237324, + [SMALL_STATE(6018)] = 237331, + [SMALL_STATE(6019)] = 237338, + [SMALL_STATE(6020)] = 237345, + [SMALL_STATE(6021)] = 237352, + [SMALL_STATE(6022)] = 237359, + [SMALL_STATE(6023)] = 237366, + [SMALL_STATE(6024)] = 237373, + [SMALL_STATE(6025)] = 237380, + [SMALL_STATE(6026)] = 237387, + [SMALL_STATE(6027)] = 237394, + [SMALL_STATE(6028)] = 237401, + [SMALL_STATE(6029)] = 237408, + [SMALL_STATE(6030)] = 237415, + [SMALL_STATE(6031)] = 237422, + [SMALL_STATE(6032)] = 237429, + [SMALL_STATE(6033)] = 237436, + [SMALL_STATE(6034)] = 237443, + [SMALL_STATE(6035)] = 237450, + [SMALL_STATE(6036)] = 237457, + [SMALL_STATE(6037)] = 237464, + [SMALL_STATE(6038)] = 237471, + [SMALL_STATE(6039)] = 237478, + [SMALL_STATE(6040)] = 237485, + [SMALL_STATE(6041)] = 237492, + [SMALL_STATE(6042)] = 237499, + [SMALL_STATE(6043)] = 237506, + [SMALL_STATE(6044)] = 237513, + [SMALL_STATE(6045)] = 237520, + [SMALL_STATE(6046)] = 237527, + [SMALL_STATE(6047)] = 237534, + [SMALL_STATE(6048)] = 237541, + [SMALL_STATE(6049)] = 237548, + [SMALL_STATE(6050)] = 237555, + [SMALL_STATE(6051)] = 237562, + [SMALL_STATE(6052)] = 237569, + [SMALL_STATE(6053)] = 237576, + [SMALL_STATE(6054)] = 237583, + [SMALL_STATE(6055)] = 237590, + [SMALL_STATE(6056)] = 237597, + [SMALL_STATE(6057)] = 237604, + [SMALL_STATE(6058)] = 237611, + [SMALL_STATE(6059)] = 237618, + [SMALL_STATE(6060)] = 237625, + [SMALL_STATE(6061)] = 237632, + [SMALL_STATE(6062)] = 237639, + [SMALL_STATE(6063)] = 237646, + [SMALL_STATE(6064)] = 237653, + [SMALL_STATE(6065)] = 237660, + [SMALL_STATE(6066)] = 237667, + [SMALL_STATE(6067)] = 237674, + [SMALL_STATE(6068)] = 237681, + [SMALL_STATE(6069)] = 237688, + [SMALL_STATE(6070)] = 237695, + [SMALL_STATE(6071)] = 237702, + [SMALL_STATE(6072)] = 237709, + [SMALL_STATE(6073)] = 237716, + [SMALL_STATE(6074)] = 237723, + [SMALL_STATE(6075)] = 237730, + [SMALL_STATE(6076)] = 237737, + [SMALL_STATE(6077)] = 237744, + [SMALL_STATE(6078)] = 237751, + [SMALL_STATE(6079)] = 237758, + [SMALL_STATE(6080)] = 237765, + [SMALL_STATE(6081)] = 237772, + [SMALL_STATE(6082)] = 237779, + [SMALL_STATE(6083)] = 237786, + [SMALL_STATE(6084)] = 237793, + [SMALL_STATE(6085)] = 237800, + [SMALL_STATE(6086)] = 237807, + [SMALL_STATE(6087)] = 237814, + [SMALL_STATE(6088)] = 237821, + [SMALL_STATE(6089)] = 237828, + [SMALL_STATE(6090)] = 237835, + [SMALL_STATE(6091)] = 237842, + [SMALL_STATE(6092)] = 237849, + [SMALL_STATE(6093)] = 237856, + [SMALL_STATE(6094)] = 237863, + [SMALL_STATE(6095)] = 237870, + [SMALL_STATE(6096)] = 237877, + [SMALL_STATE(6097)] = 237884, + [SMALL_STATE(6098)] = 237891, + [SMALL_STATE(6099)] = 237898, + [SMALL_STATE(6100)] = 237905, + [SMALL_STATE(6101)] = 237912, + [SMALL_STATE(6102)] = 237919, + [SMALL_STATE(6103)] = 237926, + [SMALL_STATE(6104)] = 237933, + [SMALL_STATE(6105)] = 237940, + [SMALL_STATE(6106)] = 237947, + [SMALL_STATE(6107)] = 237954, + [SMALL_STATE(6108)] = 237961, + [SMALL_STATE(6109)] = 237968, + [SMALL_STATE(6110)] = 237975, + [SMALL_STATE(6111)] = 237982, + [SMALL_STATE(6112)] = 237989, + [SMALL_STATE(6113)] = 237996, + [SMALL_STATE(6114)] = 238003, + [SMALL_STATE(6115)] = 238010, + [SMALL_STATE(6116)] = 238017, + [SMALL_STATE(6117)] = 238024, + [SMALL_STATE(6118)] = 238031, + [SMALL_STATE(6119)] = 238038, + [SMALL_STATE(6120)] = 238045, + [SMALL_STATE(6121)] = 238052, + [SMALL_STATE(6122)] = 238059, + [SMALL_STATE(6123)] = 238066, + [SMALL_STATE(6124)] = 238073, + [SMALL_STATE(6125)] = 238080, + [SMALL_STATE(6126)] = 238087, + [SMALL_STATE(6127)] = 238094, + [SMALL_STATE(6128)] = 238101, + [SMALL_STATE(6129)] = 238108, + [SMALL_STATE(6130)] = 238115, + [SMALL_STATE(6131)] = 238122, + [SMALL_STATE(6132)] = 238129, + [SMALL_STATE(6133)] = 238136, + [SMALL_STATE(6134)] = 238143, + [SMALL_STATE(6135)] = 238150, + [SMALL_STATE(6136)] = 238157, + [SMALL_STATE(6137)] = 238164, + [SMALL_STATE(6138)] = 238171, + [SMALL_STATE(6139)] = 238178, + [SMALL_STATE(6140)] = 238185, + [SMALL_STATE(6141)] = 238192, + [SMALL_STATE(6142)] = 238199, + [SMALL_STATE(6143)] = 238206, + [SMALL_STATE(6144)] = 238213, + [SMALL_STATE(6145)] = 238220, + [SMALL_STATE(6146)] = 238227, + [SMALL_STATE(6147)] = 238234, + [SMALL_STATE(6148)] = 238241, + [SMALL_STATE(6149)] = 238248, }; static TSParseActionEntry ts_parse_actions[] = { @@ -327724,4962 +327895,4966 @@ 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(1630), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4324), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4325), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5577), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5601), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), - [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2475), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2814), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5832), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4391), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4214), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5396), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5412), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5418), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5420), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5428), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2900), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), - [173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(607), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2718), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1630), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(598), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1636), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(514), [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1499), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1311), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(660), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2131), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4324), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4325), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4240), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(629), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5575), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5577), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5123), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(144), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(636), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5601), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(55), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5615), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5618), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5313), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5328), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5624), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(251), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(473), - [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1059), - [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(115), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(202), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4457), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5750), - [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4071), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(991), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4402), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(468), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(629), - [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(693), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5017), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5022), - [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4441), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2475), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2475), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2814), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5193), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1625), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(911), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1291), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5783), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5832), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5852), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 69), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 69), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 69), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 69), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2165), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2161), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2836), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5427), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5424), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5413), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1475), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1280), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(520), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2127), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4391), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4356), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4214), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(554), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5396), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5412), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5272), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(151), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(743), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5418), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(57), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5420), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5428), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5226), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5222), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5437), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(305), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(365), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1068), + [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(113), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(188), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4560), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6092), + [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4035), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(989), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4344), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(386), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(554), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(848), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5031), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5033), + [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4575), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2413), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2413), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2900), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5199), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1614), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(919), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1305), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6082), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6080), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(6078), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 68), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 68), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 68), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 68), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2170), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5587), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5484), - [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5327), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5674), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5676), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4268), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5485), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1927), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2258), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), - [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), - [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4554), + [590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4330), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3587), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2339), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2432), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2205), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3527), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3302), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3179), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), - [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), - [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3127), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1878), - [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1918), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2822), - [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), - [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1891), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5920), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2442), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2440), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1533), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), - [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), - [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2214), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2211), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4401), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), - [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2414), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2421), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2472), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), - [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), - [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(673), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3358), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [1052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), - [1070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), - [1072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3319), - [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), - [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [1104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), - [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), - [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5040), - [1128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5038), - [1130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), - [1132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3517), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), - [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1777), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [1156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [1162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [1174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2437), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3541), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1936), - [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(489), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [1208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), - [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3110), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1623), - [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [1264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [1272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [1274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4491), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6026), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4031), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4375), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(835), - [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4925), - [1296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4926), - [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4475), - [1300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2909), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2967), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), - [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3111), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), - [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [1376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [1378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2898), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [1394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), - [1398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), - [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3531), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), - [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3196), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2379), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [1500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), - [1528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(625), - [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), - [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1769), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), - [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [1568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), - [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3234), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1903), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1744), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(378), - [1622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [1624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [1626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1831), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1606), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [1652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1556), - [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), - [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [1672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4491), - [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [1678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), - [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [1696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4294), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [1726] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(747), - [1729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [1733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [1740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [1744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), - [1750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1863), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), - [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4934), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2362), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), - [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [1806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(465), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(611), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), - [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(331), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1036), - [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4399), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4196), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6111), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(865), - [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), - [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1978), - [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), - [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), - [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), - [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2378), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [1966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [1968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [1974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), - [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), - [1990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), - [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), - [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), - [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [2002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [2004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), - [2006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 141), - [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 141), - [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 141), - [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 141), - [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [2020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3585), - [2026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), - [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [2032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1732), - [2034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [2036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [2038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [2040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4290), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [2048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), - [2050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [2054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [2056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2058] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [2062] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [2064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), - [2066] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), - [2068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 143), - [2070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 143), - [2072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [2076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [2078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [2088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [2094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [2096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [2098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), - [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), - [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4021), - [2104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5012), - [2106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), - [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), - [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), - [2116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 124), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 124), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 124), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 124), - [2124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [2126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 123), - [2128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 123), - [2130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 123), - [2132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 123), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1139), - [2136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2242), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 116), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 116), - [2142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 116), - [2144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 116), - [2146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), - [2150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [2156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [2158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [2160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [2166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [2168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [2170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4930), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1704), - [2174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1708), - [2176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), - [2178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), - [2180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 116), - [2182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 116), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 116), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 116), - [2188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [2196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [2198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [2200] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(332), - [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [2205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), - [2207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 23), - [2209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 23), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), - [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 112), - [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 112), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 112), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 112), - [2221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [2223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), - [2225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 82), - [2227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 82), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 82), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 82), - [2233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [2235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [2237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 97), - [2241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 97), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 97), - [2245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 97), - [2247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [2249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 83), - [2255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 83), - [2257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 83), - [2259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 83), - [2261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [2263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 91), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 91), - [2267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 91), - [2269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 91), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [2273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), - [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 40), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 40), - [2283] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 40), - [2285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 40), - [2287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [2289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [2291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [2293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), - [2295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [2297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [2299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [2301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), - [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [2305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [2307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), - [2311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [2315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), - [2319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [2321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [2323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), - [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), - [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [2335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(356), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4936), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4935), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2172), + [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2060), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2774), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3447), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2373), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2751), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), + [680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5305), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), + [708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3306), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3497), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1939), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2905), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2828), + [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1921), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2961), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4326), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(644), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4951), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2904), + [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3388), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4383), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(344), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3377), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3354), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3377), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3091), + [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1806), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(559), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5916), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), + [932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2174), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1957), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1509), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(652), + [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3323), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3320), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2489), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), + [1000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [1006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3368), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3368), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), + [1042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2363), + [1048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [1058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4560), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(412), + [1066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [1068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1532), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [1076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [1088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), + [1090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), + [1092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3562), + [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [1140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [1152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [1170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2456), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2444), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1742), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [1192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(746), + [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1051), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), + [1212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [1214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2274), + [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), + [1254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [1256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), + [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1801), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [1278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3084), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1523), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1913), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3312), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3312), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3109), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(435), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(837), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), + [1414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [1426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), + [1434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [1436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [1438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1897), + [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2418), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2431), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2495), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(409), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), + [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3148), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(449), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [1616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [1618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), + [1634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(669), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), + [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [1646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [1650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [1654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4526), + [1656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2779), + [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), + [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [1668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [1676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3953), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [1710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(856), + [1713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [1717] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), + [1728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [1730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [1734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1992), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [1746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [1748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), + [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [1786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(383), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(368), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(900), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), + [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(490), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), + [1884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4412), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4075), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4341), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5918), + [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3872), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), + [1924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5062), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [1958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [1960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [1962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2364), + [1968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [1970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [1972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), + [1978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5806), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [1998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), + [2000] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), + [2002] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), + [2008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1022), + [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [2012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [2014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [2016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [2030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2366), + [2034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [2036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 112), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 112), + [2040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 112), + [2042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 112), + [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1150), + [2046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [2048] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(313), + [2051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [2053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [2057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [2061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [2067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [2069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3159), + [2071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [2073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 91), + [2075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 91), + [2077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 91), + [2079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 91), + [2081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3613), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [2105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [2111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [2113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 141), + [2115] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 141), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 141), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 141), + [2121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [2123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [2125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), + [2127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [2141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [2143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4414), + [2145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4372), + [2147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3179), + [2153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 143), + [2157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 143), + [2159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 143), + [2161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [2163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 82), + [2165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 82), + [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 82), + [2169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 82), + [2171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 97), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 97), + [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 97), + [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 97), + [2181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [2183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 124), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 124), + [2187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 124), + [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 124), + [2191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [2193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 81), + [2195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 81), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 81), + [2199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 81), + [2201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), + [2203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 123), + [2205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 123), + [2207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 123), + [2209] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 123), + [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), + [2213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [2215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [2217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [2219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [2221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 116), + [2223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 116), + [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 116), + [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 116), + [2229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), + [2231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 40), + [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 40), + [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 40), + [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 40), + [2241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [2245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [2247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [2253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [2255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), + [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [2259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), + [2263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [2265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), + [2267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [2269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), + [2273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [2275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [2277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [2279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [2281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [2283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), + [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [2287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 23), + [2289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 23), + [2291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [2293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [2295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 116), + [2297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 116), + [2299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 116), + [2301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 116), + [2303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [2307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [2309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [2311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), + [2313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [2315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(489), + [2318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [2326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [2328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [2330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), + [2332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [2336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), [2338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [2341] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3913), - [2345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [2347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [2353] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3987), - [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [2365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2362), - [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2463), - [2375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5269), - [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4713), - [2381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [2383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [2385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), - [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), - [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [2419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), - [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), - [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), - [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), - [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), - [2443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [2445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [2451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [2453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), - [2455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [2457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1945), - [2461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [2463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), - [2467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [2471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [2475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [2477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), - [2481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), - [2489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [2493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [2499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [2505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), - [2507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), - [2511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [2513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), - [2515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [2517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6121), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), - [2521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), - [2523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), - [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4240), - [2533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(52), - [2539] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6063), - [2544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6056), - [2546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), - [2548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [2550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [2552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5783), - [2554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), - [2556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5852), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3094), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(317), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2033), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [2656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), - [2660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), - [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1553), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), - [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [2704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [2710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [2716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1813), - [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [2726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), - [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6095), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6055), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), - [2778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2040), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1942), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), - [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1041), - [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2267), - [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), - [2842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6132), - [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), - [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5405), - [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2570), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3348), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [2858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3596), - [2866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), - [2870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4917), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [2892] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3846), - [2895] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3625), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(633), - [2902] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(5442), - [2906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4389), - [2908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6094), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6102), - [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5924), - [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), - [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), - [2944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), - [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), - [2950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [2952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [2954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [2956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [2958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [2960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [2962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [2964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [2966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [2968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [2970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), - [2974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), - [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [2992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), - [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [3006] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [3008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [3014] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3625), - [3017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(5442), - [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4261), - [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5772), - [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), - [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4368), - [3028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3571), - [3032] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3773), - [3035] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4593), - [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), - [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), - [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), - [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5951), - [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), - [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), - [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6091), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4280), - [3066] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(481), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [3073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6085), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), - [3077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5997), - [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), - [3081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6135), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), - [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), - [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), - [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [3095] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(898), - [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [3104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5764), - [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6040), - [3110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6039), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 10), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 10), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), - [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), - [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6098), - [3132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), - [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1030), - [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), - [3142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5833), - [3146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 33), - [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 33), - [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6099), - [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 10), - [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 10), - [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 163), - [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 163), - [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 28), - [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 28), - [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 149), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 149), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 159), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 159), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 116), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 116), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 143), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 76), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 76), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 10), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 10), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 29), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 29), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 74), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 74), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 141), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 141), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 30), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 30), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [3230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [3232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [3234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [3236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [3238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [3240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 73), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 73), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 72), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 32), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 32), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 62), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 62), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 2), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 83), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 62), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 62), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 103), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 103), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 148), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 148), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 34), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 34), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 145), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 145), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 40), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 40), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 144), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 144), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 124), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 124), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 35), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 35), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 123), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 123), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 142), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 142), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 160), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 160), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 116), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 116), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 19), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 19), - [3362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), - [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [3372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 101), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 101), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 3), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 64), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 3, .production_id = 64), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 112), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 112), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 105), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 105), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 96), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 96), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 40), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 40), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 21), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 21), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 50), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 50), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 63), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 63), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 64), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 4, .production_id = 64), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 36), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 36), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 115), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 115), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 36), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 36), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 132), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 132), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 91), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 91), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 59), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 59), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 117), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 117), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 118), - [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 118), - [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), - [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), - [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 90), - [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 90), - [3498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 93), - [3500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 93), - [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 82), - [3504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 82), - [3506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 128), - [3508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 128), - [3510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 83), - [3512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 83), - [3514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [3516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [3518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 64), - [3520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 5, .production_id = 64), - [3522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [3524] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [3526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 126), - [3528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 126), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [3532] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), - [3534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 122), - [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 122), - [3538] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), - [3540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), - [3542] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 131), - [3544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 131), - [3546] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 130), - [3548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 130), - [3550] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 147), - [3556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 147), - [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2354), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6048), - [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), - [3576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4943), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6049), - [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2168), - [3592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), - [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2488), - [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), - [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2905), - [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), - [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2239), - [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), - [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3628), - [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6023), - [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), - [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), - [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), - [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), - [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3205), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3191), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3190), - [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3444), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3294), - [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), - [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3297), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3237), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3240), - [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), - [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3208), - [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3142), - [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), - [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3264), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3350), - [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [3770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [3774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3299), - [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3098), - [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), - [3782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3349), - [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3079), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2431), - [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [3808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), - [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [3820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [3822] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [3824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [3826] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 52), - [3828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 52), - [3830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 53), - [3832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 53), - [3834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 120), - [3836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 120), - [3838] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 94), - [3840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 94), - [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), - [3844] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [3846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), - [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [3850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1626), - [3856] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), - [3859] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(6123), - [3862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [3864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [3866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [3870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), - [3872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [3874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4205), - [3876] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1791), - [3879] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1759), - [3882] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1667), - [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [3889] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1855), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [3896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [3899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [3902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [3904] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 11), - [3908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(6038), - [3913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), - [3915] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [3923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [3925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), - [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), - [3929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [3931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), - [3935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [3937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), - [3939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [3943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), - [3945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4967), - [3947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), - [3949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), - [3951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), - [3953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), - [3955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2286), - [3957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), - [3959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2287), - [3963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), - [3967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [3975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [3987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [3989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [3991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [3995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [3999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), - [4001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3385), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [4015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4228), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [4019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [4029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1914), - [4033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), - [4037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5835), - [4055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2425), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), - [4059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), - [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2426), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [4065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), - [4071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [4073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), - [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [4081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1938), - [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5356), - [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), - [4099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4942), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [4115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3035), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), - [4121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [4123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), - [4125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), - [4133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [4135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), - [4139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [4143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [4145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [4147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(521), - [4149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [4151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [4153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), - [4155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), - [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4956), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1893), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [4176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1909), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [2341] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3909), + [2345] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3997), + [2349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [2351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [2355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [2357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [2359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [2361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [2363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), + [2365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1780), + [2367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [2369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2400), + [2371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3707), + [2373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [2377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), + [2379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [2381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), + [2383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [2385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4634), + [2387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [2389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), + [2391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [2393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [2397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2475), + [2399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [2401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [2403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [2405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [2407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), + [2409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [2411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [2415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), + [2417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1794), + [2419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [2421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1422), + [2425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), + [2427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [2431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1530), + [2433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1750), + [2435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [2437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [2439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5155), + [2443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [2445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [2447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [2449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [2451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), + [2453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [2455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [2457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), + [2459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [2461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [2463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), + [2465] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(58), + [2471] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [2476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6037), + [2478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [2480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [2482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [2484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), + [2486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), + [2488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6078), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1252), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(410), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [2534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4433), + [2538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1497), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [2592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1866), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3406), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1494), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1782), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1674), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), + [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2777), + [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [2678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1738), + [2680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [2682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), + [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [2688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [2690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [2714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2374), + [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [2720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [2722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [2728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6131), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), + [2740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), + [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [2762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1889), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1752), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), + [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [2808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [2812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1729), + [2814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [2816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [2826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [2834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), + [2836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [2838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [2840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2543), + [2842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [2844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), + [2846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5787), + [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), + [2854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2782), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3588), + [2860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), + [2864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1600), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [2872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), + [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [2884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3576), + [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [2890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3862), + [2893] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3670), + [2897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(660), + [2900] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(5624), + [2904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), + [2906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4504), + [2908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [2910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), + [2912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5949), + [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5934), + [2928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [2930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), + [2932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [2934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), + [2942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [2946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4545), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3793), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [2952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), + [2954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [2956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), + [2958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [2960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [2962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [2964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [2966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [2968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [2970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [2972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [2984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [2986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [2988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4129), + [2990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4237), + [2996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4174), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [3008] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3670), + [3011] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(5624), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), + [3016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [3018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [3020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [3024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [3026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3574), + [3030] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3782), + [3033] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4639), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4270), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5932), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [3048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5835), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6049), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6046), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6117), + [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4357), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), + [3076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(424), + [3079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [3085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5889), + [3087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), + [3089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), + [3091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [3093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [3097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5913), + [3101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [3103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [3105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [3109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(745), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 10), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 10), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [3122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6094), + [3124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [3126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6104), + [3128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6105), + [3130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1032), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1040), + [3138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6128), + [3140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6127), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [3144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5912), + [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 33), + [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 33), + [3150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6145), + [3152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6146), + [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 163), + [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 163), + [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 28), + [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 28), + [3162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 149), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 149), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 10), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 10), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 73), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 73), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 19), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 19), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 160), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 160), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 143), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 143), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 21), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 21), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 105), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 105), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 2), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 159), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 159), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 141), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 141), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 63), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 5, .production_id = 63), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 103), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 103), + [3248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 101), + [3250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 101), + [3252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [3254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [3256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [3258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 29), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 29), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 30), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 30), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 148), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 148), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 96), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 96), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 145), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 145), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 144), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 144), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 124), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 124), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 123), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 123), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 81), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 81), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 82), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 82), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 32), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 32), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 142), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 142), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 34), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 34), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 116), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 116), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 116), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 116), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 35), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 35), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 82), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 82), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 36), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 36), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 81), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 81), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 36), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 36), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 93), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 93), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [3368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), + [3370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5955), + [3376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [3378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4118), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 90), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 90), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 63), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 4, .production_id = 63), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 112), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 112), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 40), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 40), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 49), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 49), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 58), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 58), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 61), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 61), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 62), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 62), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 132), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 132), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 61), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 61), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 71), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 40), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 40), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 75), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 75), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 72), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 72), + [3476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 128), + [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 128), + [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 115), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 115), + [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 91), + [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 91), + [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 117), + [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 117), + [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 118), + [3498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 118), + [3500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), + [3502] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 112), + [3504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [3506] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [3508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 126), + [3510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 126), + [3512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [3516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 10), + [3518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 10), + [3520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [3522] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 3), + [3524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 63), + [3526] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 3, .production_id = 63), + [3528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 122), + [3530] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 122), + [3532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 97), + [3534] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 97), + [3536] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 130), + [3538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 130), + [3540] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [3544] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 131), + [3546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 131), + [3548] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), + [3550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), + [3552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 147), + [3554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 147), + [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [3558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4938), + [3564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), + [3566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5739), + [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5890), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3932), + [3578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2162), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6042), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [3588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5849), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), + [3600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2715), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [3624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2328), + [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3037), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [3638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), + [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3303), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4973), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [3652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3298), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), + [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3118), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3116), + [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3089), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3241), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3243), + [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2361), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3345), + [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3224), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3226), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3180), + [3740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [3742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [3744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3521), + [3746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2372), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [3756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3286), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3292), + [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3295), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3317), + [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [3768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [3772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3282), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3280), + [3776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3278), + [3778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3355), + [3780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [3784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3065), + [3786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), + [3788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [3790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3102), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [3800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3249), + [3802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [3804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), + [3812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3998), + [3820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 52), + [3822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 52), + [3824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 51), + [3826] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 51), + [3828] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 120), + [3830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 120), + [3832] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [3834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [3836] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 94), + [3838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 94), + [3840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [3842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [3844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [3846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [3848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [3850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5124), + [3852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), + [3857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1687), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), + [3863] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5910), + [3866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), + [3868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1739), + [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [3873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1605), + [3876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [3878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [3880] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1996), + [3883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [3890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [3893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [3895] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1758), + [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [3900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), + [3904] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3907] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), + [3912] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 11), + [3916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), + [3918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5999), + [3921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [3923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [3927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [3929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [3931] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1748), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [3936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2443), + [3938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1228), + [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [3954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2450), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2452), + [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2593), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5840), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2130), + [3972] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [3978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4945), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [3986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4254), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4966), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4255), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4192), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1827), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), + [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2134), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [4048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2021), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), + [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3380), + [4054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), + [4058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3384), + [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6133), + [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2289), + [4092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), + [4094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2292), + [4096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1629), + [4100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6134), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), + [4106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), + [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5055), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), + [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1756), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [4124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2998), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), + [4136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5829), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3001), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3002), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3002), + [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1963), + [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [4170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5125), [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4936), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), - [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5100), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [4230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), - [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), - [4250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3352), - [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3405), - [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), - [4260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [4264] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4257), - [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [4274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5819), - [4290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4252), - [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), - [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), - [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), - [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1693), - [4310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(736), - [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [4317] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(5694), - [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [4323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4953), - [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), - [4329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), - [4331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [4333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [4335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1707), - [4338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1956), - [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1931), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), - [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), - [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2367), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), - [4392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3516), - [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1975), - [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), - [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3150), - [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [4425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 42), - [4427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [4429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), - [4435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), - [4437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), - [4441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2978), - [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3077), - [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [4449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [4463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4392), - [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [4477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4295), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [4481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4950), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [4495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), - [4497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), - [4503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [4511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [4523] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [4531] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_rest_pattern, 2), - [4535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [4545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2189), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2383), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2854), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2960), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3159), - [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), - [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), - [4569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4938), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [4581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3908), - [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), - [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [4609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), - [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), - [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), - [4617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4223), - [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4214), - [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), - [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4224), - [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), - [4627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), - [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [4633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), - [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4446), - [4637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 42), - [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), - [4641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1969), - [4644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5892), - [4647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [4649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [4655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3981), - [4657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [4661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [4663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(480), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [4670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 42), - [4672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 42), - [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), - [4678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3579), - [4684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [4690] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(902), - [4693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), - [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(318), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), - [4706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(413), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5341), - [4711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5314), - [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6103), - [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2623), - [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2772), - [4732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [4734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), - [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2583), - [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2265), - [4742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2397), - [4745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3512), - [4748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3472), - [4751] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3452), - [4754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3210), - [4757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3283), - [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [4776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [4780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4246), - [4786] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3656), - [4789] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(4082), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5312), - [4798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [4800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [4802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), - [4806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2345), - [4810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), - [4812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2259), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [4816] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), - [4820] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), - [4825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 12), - [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 12), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), - [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2907), - [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2868), - [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2602), - [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), - [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), - [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), - [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3382), - [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), - [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3990), - [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4212), - [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), - [4881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2266), - [4883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 11), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [4895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5808), - [4897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [4899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5784), - [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 47), - [4903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 47), - [4905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 87), - [4907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 87), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [4911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 51), - [4913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), - [4915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), - [4919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [4921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [4923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5373), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), - [4933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [4937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [4939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), - [4941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), - [4943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), - [4945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), - [4947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 22), - [4949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 22), - [4951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [4953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 57), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [4957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(552), - [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), - [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 48), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 86), - [4965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 88), - [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 89), - [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 121), - [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), - [4983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), - [4985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [4987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [4993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), - [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [5003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [5005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [5013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [5019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 48), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 49), - [5023] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(89), - [5026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), - [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 106), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 106), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), - [5044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), - [5046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [5052] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5058] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [5061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [5068] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [5071] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [5074] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 15), - [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 15), - [5078] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1), - [5081] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1), - [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [5086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 125), - [5088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 125), - [5090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 113), - [5092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 113), - [5094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 113), - [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [5101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 107), - [5103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 107), - [5105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [5109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [5121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(89), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 114), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 114), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 77), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 77), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 79), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 79), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), - [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [5152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 95), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 95), - [5164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 24), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 25), - [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 24), - [5170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [5172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [5176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [5178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), - [5180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), - [5182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [5184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 92), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 92), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [5198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2312), - [5200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 39), - [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 39), - [5204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2303), - [5206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(91), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 87), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 87), - [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 89), - [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 88), - [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [5223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [5225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [5229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(89), - [5232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(91), - [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [5241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 41), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 41), - [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 86), - [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 85), - [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 85), - [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 14), - [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 14), - [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 80), - [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 80), - [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 37), - [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 37), - [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [5273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(91), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 24), - [5282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 24), - [5284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [5286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 13), - [5288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 13), - [5290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 10), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 10), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 43), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 43), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 60), - [5304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 60), - [5306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 44), - [5308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 44), - [5310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 45), - [5312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 45), - [5314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [5316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [5318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 46), - [5320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 46), - [5322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 57), - [5324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 56), - [5326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 56), - [5328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 55), - [5330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 55), - [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 54), - [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 54), - [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [5352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 49), - [5358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [5360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [5362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [5364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [5366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [5368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [5370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [5372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [5374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 11), - [5376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 11), - [5378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 42), - [5380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 42), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), - [5388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [5398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), - [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4088), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), - [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [5436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), - [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), - [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), - [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), - [5456] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(99), - [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), - [5461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [5463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), - [5475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), - [5477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), - [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), - [5491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [5493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), - [5495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [5497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), - [5501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [5503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [5505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), - [5507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [5509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [5511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), - [5513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [5515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), - [5517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [5519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), - [5521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [5523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), - [5525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [5527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [5529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [5531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [5533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2499), - [5535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [5537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [5549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [5552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 24), REDUCE(sym_object_pattern, 3, .production_id = 25), - [5555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(99), - [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), - [5572] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [5575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4148), - [5577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3597), - [5579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), - [5581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [5583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [5585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), - [5587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), - [5589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(99), - [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2471), - [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [5608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [5612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(563), - [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), - [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [5628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), - [5630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [5636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [5638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [5640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), - [5648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [5650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), - [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [5654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [5660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), - [5662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), - [5666] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(88), - [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(88), - [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [5674] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(88), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [5679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 48), - [5681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6069), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [5687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), - [5689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [5691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), - [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(508), - [5701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), - [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), - [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(101), - [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 121), - [5722] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(101), - [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), - [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 48), - [5729] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(104), - [5732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 48), - [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), - [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), - [5738] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(101), - [5741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(104), - [5744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [5746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(104), - [5749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [5751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1454), - [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [5755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [5757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), - [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [5779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [5781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1773), - [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [5787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [5789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), - [5791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), - [5793] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(97), - [5796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3), - [5798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), - [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1671), - [5802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1830), - [5806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(108), - [5809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [5811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [5817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), - [5819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), - [5827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), - [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [5839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(108), - [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4343), - [5844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), - [5846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [5848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), - [5850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [5854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(93), - [5857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(93), - [5860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(108), - [5863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [5865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), - [5867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [5871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [5873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), - [5875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [5881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), - [5883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [5887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [5891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [5893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 183), - [5895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 183), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [5901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [5903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [5905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [5907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [5909] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(107), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), - [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5323), - [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), - [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1447), - [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [5922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [5926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(780), - [5932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [5938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), - [5946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [5948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3354), - [5950] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(107), - [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(107), - [5956] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [5960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [5962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [5966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), - [5968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [5970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), - [5972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [5974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), - [5980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [5986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [5992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5996] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(106), - [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [6001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6062), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [6005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 48), REDUCE(sym_assignment_expression, 3, .production_id = 48), - [6008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 48), - [6010] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 65), REDUCE(sym_assignment_expression, 3, .production_id = 48), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 65), - [6015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(106), - [6018] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(106), - [6021] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 65), REDUCE(sym_assignment_expression, 3, .production_id = 20), - [6024] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(93), - [6027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [6029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(97), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [6038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(605), - [6042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [6048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), - [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [6054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [6056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(597), - [6066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), - [6068] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(97), - [6071] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [6075] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [6097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [6099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [6107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(90), - [6110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(87), - [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [6125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [6135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 69), - [6151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [6153] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(95), - [6156] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(95), - [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2977), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [6165] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(98), - [6168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), - [6178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [6180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2790), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [6184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(92), - [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [6189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [6191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), - [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(744), - [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), - [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), - [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), - [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [6223] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(90), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), - [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [6230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), - [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [6246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), - [6254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), - [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [6258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(92), - [6261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(92), - [6264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1975), - [6266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6053), - [6268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), - [6270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [6272] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(90), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2305), - [6277] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(95), - [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [6282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), - [6285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(98), - [6288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), - [6291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(98), - [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3320), - [6296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), - [6300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), - [6304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(96), - [6307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(96), - [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [6316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [6320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), - [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [6330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [6332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [6334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), - [6338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(103), - [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), - [6345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(96), - [6348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), - [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [6366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), - [6370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [6372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [6374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), - [6382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [6386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [6388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), - [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), - [6398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3642), - [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2302), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [6414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [6418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [6420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), - [6422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [6424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4613), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5258), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(103), - [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1328), - [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [6449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), - [6451] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), - [6454] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [6458] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), - [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2075), - [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [6465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), - [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [6473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [6479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [6481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(103), - [6484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [6488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), - [6490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), - [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2313), - [6500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [6502] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3999), - [6505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3854), - [6508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [6510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(497), - [6513] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3601), - [6516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(6023), - [6519] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5012), - [6522] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5006), - [6525] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3904), - [6528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5193), - [6531] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3631), - [6534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3581), - [6537] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3714), - [6540] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3570), - [6543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3616), - [6546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3835), - [6549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), - [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4705), - [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [6557] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [6560] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6041), - [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), - [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), - [6577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 66), - [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(100), - [6582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [6584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [6598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [6610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [6612] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [6614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(100), - [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), - [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3403), - [6627] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 24), REDUCE(sym_object_pattern, 3, .production_id = 25), - [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 25), - [6632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 48), - [6634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [6636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(100), - [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), - [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [6651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), - [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [6663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), - [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1859), - [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), - [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [6677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), - [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [6681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), - [6685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 51), SHIFT(94), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), - [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [6708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [6716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(94), - [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), - [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [6723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1959), - [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), - [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [6737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), - [6739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [6741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [6743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [6748] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), - [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), - [6755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [6757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [6759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [6764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [6767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), - [6769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(94), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), - [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4323), - [6782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1675), - [6786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1898), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), - [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [6810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3656), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4156), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5968), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4667), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), - [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), - [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3716), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [6848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [6860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [6866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), - [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3756), - [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [6880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [6888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4477), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [6906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3472), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [6912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), - [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), - [6920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [6936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4629), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4977), - [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [6944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3646), - [6946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3600), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), - [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), - [6962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), - [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), - [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [6970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), + [4200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [4202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), + [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2137), + [4206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [4209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), + [4213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [4215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), + [4217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [4221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [4223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1709), + [4233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [4235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), + [4247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [4249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [4251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [4253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [4259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [4261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), + [4263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(751), + [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [4268] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(5402), + [4272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3177), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3540), + [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), + [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5734), + [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3484), + [4300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), + [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4943), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [4326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1902), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), + [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1785), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), + [4358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5027), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), + [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1834), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [4374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4230), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2818), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4206), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3057), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [4414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1754), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [4419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [4421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), + [4423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2649), + [4431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [4433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [4439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(694), + [4445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), + [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), + [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), + [4453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [4455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3255), + [4457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [4459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [4461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2360), + [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [4465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), + [4467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), + [4469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [4471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4969), + [4475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [4479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), + [4485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1861), + [4487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4166), + [4489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), + [4491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), + [4493] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), + [4495] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_rest_pattern, 2), + [4499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), + [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4328), + [4505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), + [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2550), + [4509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3901), + [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2467), + [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2529), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), + [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), + [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4949), + [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [4549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4580), + [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), + [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3083), + [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4009), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4010), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2182), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [4573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), + [4575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [4577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), + [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [4599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3439), + [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [4603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4352), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4209), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [4635] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extends_type, 1, .production_id = 11), + [4637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_type, 1, .production_id = 11), + [4639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1743), + [4642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5868), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), + [4647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [4649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4248), + [4651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(423), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [4664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2135), + [4668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [4670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [4674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), + [4676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), + [4680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(354), + [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(411), + [4688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(753), + [4691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), + [4695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), + [4699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), + [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [4704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5303), + [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), + [4716] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2745), + [4719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2268), + [4722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [4726] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3415), + [4729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2590), + [4732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3406), + [4735] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3222), + [4738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3082), + [4741] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3442), + [4744] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2765), + [4747] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2374), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [4752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2136), + [4754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3644), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [4768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5978), + [4772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [4774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [4778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), + [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), + [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), + [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), + [4796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), + [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [4800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3640), + [4803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(4125), + [4806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [4811] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2597), + [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3031), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3039), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 12), + [4825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 12), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1605), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4350), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [4839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [4847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4236), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2505), + [4855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2322), + [4859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), + [4863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [4865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), + [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 11), + [4883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [4885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [4887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [4889] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 46), + [4891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 46), + [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [4895] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 86), + [4897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 86), + [4899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1), + [4902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1), + [4905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [4908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [4911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [4914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [4917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [4919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [4921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [4923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [4926] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 106), + [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 6, .dynamic_precedence = -1, .production_id = 106), + [4933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [4935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [4937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 6), + [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 6), + [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 125), + [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 125), + [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 107), + [4947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_closing_element, 4, .production_id = 107), + [4949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 114), + [4955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 114), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [4959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [4961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), + [4967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 76), + [4969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 76), + [4971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 78), + [4973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 5, .dynamic_precedence = -1, .production_id = 78), + [4975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_fragment, 5), + [4977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_fragment, 5), + [4979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [4981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [4983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 99), + [4985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 99), + [4987] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [4989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [4991] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 98), + [4993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 98), + [4995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 95), + [4997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 95), + [4999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), + [5001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 87), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 87), + [5007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 92), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 92), + [5015] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 87), + [5017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 87), + [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 89), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 89), + [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 88), + [5025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 88), + [5027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 85), + [5029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 85), + [5031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), + [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 79), + [5035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 79), + [5037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 37), + [5039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_self_closing_element, 4, .dynamic_precedence = -1, .production_id = 37), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [5045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(109), + [5048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [5050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [5052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [5054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), + [5056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), + [5060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), + [5062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [5064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [5066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(651), + [5068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [5070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [5072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), + [5074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [5076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), + [5078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [5082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), + [5092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(109), + [5095] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [5097] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [5099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [5101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [5103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 24), + [5105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 24), + [5107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), + [5109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 22), + [5111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), + [5113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 59), + [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 59), + [5117] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 47), + [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 48), + [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), + [5123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 50), + [5125] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(109), + [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 56), + [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 47), + [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 56), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 3, .production_id = 55), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 3, .production_id = 55), + [5142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(106), + [5145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5382), + [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [5149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), + [5151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [5153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [5155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [5157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [5159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [5161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), + [5163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [5165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [5167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [5169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [5171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [5173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [5175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [5179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), + [5181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(106), + [5184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 24), + [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 25), + [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 24), + [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 54), + [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 54), + [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 53), + [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 53), + [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [5202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 121), + [5204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 39), + [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 39), + [5212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), + [5214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [5216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [5218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [5224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(106), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [5233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 41), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 41), + [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 48), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 45), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 45), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 44), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 44), + [5253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 43), + [5255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 43), + [5257] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 42), + [5259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 42), + [5261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), + [5263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), + [5265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [5267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [5269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [5271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [5273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [5275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [5277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), + [5279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), + [5281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [5283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [5285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [5287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [5289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [5291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [5293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [5295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [5297] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 10), + [5299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 10), + [5301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [5303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [5305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [5307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [5309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 113), + [5311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 113), + [5313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 113), + [5316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [5318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [5320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [5322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), + [5326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [5328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [5330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 22), + [5332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [5334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [5336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [5338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [5340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 84), + [5342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 84), + [5344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 13), + [5346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 13), + [5348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 14), + [5350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 14), + [5352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_element, 2, .production_id = 15), + [5354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_element, 2, .production_id = 15), + [5356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 11), + [5358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 11), + [5360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [5362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [5364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [5366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [5368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [5370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), + [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3734), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4138), + [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), + [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3732), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3733), + [5420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [5423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [5425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [5427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(97), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5400), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1453), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1489), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [5446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [5448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), + [5450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(875), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [5462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3033), + [5468] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(97), + [5471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 24), REDUCE(sym_object_pattern, 3, .production_id = 25), + [5474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [5477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(97), + [5480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), + [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4179), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), + [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4169), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [5520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), + [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4151), + [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [5528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), + [5538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3137), + [5542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), + [5550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3738), + [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3605), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [5558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), + [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4159), + [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [5570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [5574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3624), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), + [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [5592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), + [5594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), + [5596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [5598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), + [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), + [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [5604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), + [5606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), + [5614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [5618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [5620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [5622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), + [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(105), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), + [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1758), + [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1920), + [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), + [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(87), + [5642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [5644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [5646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [5648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [5650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [5652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [5656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), + [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 47), + [5672] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(104), + [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [5677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 47), + [5679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(105), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), + [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [5694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), + [5700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [5702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [5706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), + [5710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 121), + [5714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(105), + [5717] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), + [5720] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(104), + [5723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [5725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 47), + [5727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [5729] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [5731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(104), + [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [5736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), + [5739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [5741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), + [5743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2059), + [5745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [5747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [5749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [5751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [5753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), + [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), + [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [5761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [5767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [5769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), + [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(726), + [5773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [5775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(704), + [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [5783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [5785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(723), + [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), + [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [5791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(90), + [5794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(90), + [5797] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [5799] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [5803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), + [5805] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), + [5807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), + [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [5813] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(98), + [5816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [5818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(501), + [5820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(681), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [5824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), + [5826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [5828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [5830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [5832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [5836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [5838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [5840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [5842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [5844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [5846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), + [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [5850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [5854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [5856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [5858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), + [5862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [5864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), + [5868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(103), + [5873] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(90), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [5884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [5886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), + [5890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [5892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [5900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), + [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), + [5916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [5918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), + [5924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), + [5930] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(89), + [5933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(103), + [5936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3), + [5938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), + [5940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [5942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1770), + [5944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [5946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(89), + [5949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(89), + [5952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(98), + [5955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(101), + [5958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1331), + [5962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [5964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), + [5966] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(98), + [5969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [5971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5881), + [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2025), + [5979] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(103), + [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [5988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 47), REDUCE(sym_assignment_expression, 3, .production_id = 47), + [5991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 47), + [5993] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(101), + [5996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [5998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [6000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3728), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [6008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), + [6010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [6012] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(101), + [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 64), REDUCE(sym_assignment_expression, 3, .production_id = 47), + [6018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 64), + [6020] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 64), REDUCE(sym_assignment_expression, 3, .production_id = 20), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [6025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), + [6027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [6029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [6031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [6033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [6035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [6037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [6039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), + [6043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [6053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [6055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), + [6057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 183), + [6059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 183), + [6061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), + [6063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [6067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), + [6069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(849), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [6079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(708), + [6083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), + [6089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [6093] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [6097] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [6103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [6105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [6107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), + [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [6129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [6131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(94), + [6134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [6136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [6138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(99), + [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1972), + [6143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(88), + [6146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1754), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4340), + [6150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(88), + [6153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1905), + [6155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [6159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(630), + [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(628), + [6169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [6177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), + [6181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [6187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [6189] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(100), + [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [6196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(876), + [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [6200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [6202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), + [6210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [6212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [6222] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(100), + [6225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [6227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 68), + [6231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [6233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [6235] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(99), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), + [6242] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(99), + [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(498), + [6247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(94), + [6250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(94), + [6253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(100), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [6262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), + [6264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(88), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [6269] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(108), + [6272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [6280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(108), + [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6285] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(108), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [6292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2500), + [6296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [6300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [6304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [6306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), + [6310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [6312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), + [6314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), + [6318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(712), + [6322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [6324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [6326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), + [6334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), + [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), + [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [6349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [6351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), + [6353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(860), + [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [6361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [6363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [6365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [6367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [6369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2323), + [6379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [6385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [6391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), + [6399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1028), + [6401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(95), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [6406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [6408] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [6419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [6421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), + [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), + [6429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [6437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1952), + [6439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1949), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [6443] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(91), + [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), + [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 24), REDUCE(sym_object_pattern, 3, .production_id = 25), + [6451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 25), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [6457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [6463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), + [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [6477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [6481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), + [6491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(107), + [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [6496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 65), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [6500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(95), + [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), + [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), + [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [6511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(95), + [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [6516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [6520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 47), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), + [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [6530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [6532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1771), + [6534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [6538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [6544] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4008), + [6547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3846), + [6550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [6552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(497), + [6555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3666), + [6558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(6129), + [6561] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5036), + [6564] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5035), + [6567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3905), + [6570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5199), + [6573] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3665), + [6576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3569), + [6579] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3702), + [6582] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3568), + [6585] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3662), + [6588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3832), + [6591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [6601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(91), + [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(107), + [6611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(91), + [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), + [6616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), + [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [6620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(107), + [6623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), + [6625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [6627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), + [6629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), + [6632] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [6636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), + [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [6641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), + [6649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(579), + [6657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [6661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [6669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [6671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), + [6673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [6675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [6677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 50), SHIFT(96), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(650), + [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1734), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), + [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), + [6696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), + [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(565), + [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4563), + [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [6720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), + [6722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [6726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [6728] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(96), + [6731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [6733] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(96), + [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [6742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [6745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [6747] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), + [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), + [6758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [6761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [6763] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(761), + [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), + [6778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1868), + [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), + [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5961), + [6794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), + [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), + [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [6802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), + [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [6814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), + [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), + [6820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), + [6838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5769), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4371), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3941), + [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4551), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3653), + [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), + [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1651), + [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [6902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), + [6904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4505), + [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3912), + [6918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3709), + [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), + [6922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [6924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [6926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), + [6928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3809), + [6930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), + [6934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3442), + [6940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3847), + [6942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), + [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), + [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), + [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3618), + [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [6954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), + [6960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3812), + [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [6964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [6966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [6968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [6972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [6974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4571), + [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4084), [6980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), [6982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4145), - [6990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4420), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), - [6996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 52), - [6998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 52), - [7000] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), - [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), - [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3742), - [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3751), - [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3744), - [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), - [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), - [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), - [7037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4768), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [7045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 14), - [7047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 14), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), - [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [7057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 129), - [7059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 129), - [7061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 67), - [7063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 67), - [7065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 162), - [7067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 162), - [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [7071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 161), - [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 161), - [7075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 116), - [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 116), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 91), - [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 91), - [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 102), - [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 102), - [7089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 146), - [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 146), - [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), - [7097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 174), - [7099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 174), - [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [7107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 141), - [7113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 141), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [7121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 184), - [7123] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 184), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [7127] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 175), - [7129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 175), - [7131] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [7133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [7137] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [7139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [7141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4564), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4481), - [7145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3987), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), - [7150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3913), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4971), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [7159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), - [7163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), - [7165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3590), - [7167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [7171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4860), - [7175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4846), - [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [7187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), - [7189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), - [7191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), SHIFT_REPEAT(5193), - [7194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), - [7198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), - [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [7202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3745), - [7204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), - [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [7210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), - [7214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [7216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [7218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [7220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [7224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5882), - [7226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4272), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [7232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 11), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [7238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 11), SHIFT(5278), - [7241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [7243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4272), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), - [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6108), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5947), - [7253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6123), - [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), - [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), - [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(721), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), - [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(523), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), - [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), - [7301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 139), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [7307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3963), - [7309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 37), - [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), - [7315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 107), - [7317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6038), - [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [7327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4285), - [7331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [7335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [7337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), - [7341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_jsx_namespace_name, 3), - [7344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 107), - [7346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3975), - [7350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 139), - [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5472), - [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [7360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6120), - [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [7364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3973), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), - [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 11), - [7375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(5694), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), - [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [7382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [7384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 37), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), - [7388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [7392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5993), - [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 37), - [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 107), - [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 139), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 139), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 107), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 37), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), - [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [7424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_rest_pattern, 2), - [7429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), - [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4114), - [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [7437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4146), - [7439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3301), - [7441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1804), - [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), - [7455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [7457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5317), - [7459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4573), - [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [7467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), - [7469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [7475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4180), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), - [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), - [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4495), - [7485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [7489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4150), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4513), - [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [7505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [7509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), - [7511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4048), - [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4155), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4417), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4077), - [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), - [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4140), - [7527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4183), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4143), - [7531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), - [7533] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 25), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [7540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5740), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [7544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), - [7552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4147), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), - [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), - [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [7564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6100), - [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6089), - [7568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), - [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [7580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), - [7582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 158), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [7588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5949), - [7590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [7592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5938), - [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3096), - [7596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4416), - [7598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4496), - [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [7602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(238), - [7605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(4660), - [7608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(4114), - [7611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), - [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5716), - [7615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [7619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4463), - [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4460), - [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), - [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [7627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [7629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), - [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), - [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [7636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [7639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), - [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), - [7643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [7645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), - [7647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4486), - [7659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [7664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [7666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5867), - [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5868), - [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), - [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), - [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5908), - [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5961), - [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), - [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [7692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4556), - [7694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4515), + [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [6986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6028), + [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4153), + [6990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), + [6993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), + [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 51), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 51), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4448), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [7003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3739), + [7005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), + [7011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [7015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), + [7017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3718), + [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), + [7021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), + [7023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [7027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 14), + [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 14), + [7031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), + [7035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [7041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), + [7043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4663), + [7045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4827), + [7047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 66), + [7049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 66), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), + [7053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), + [7055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 129), + [7057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 129), + [7059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 141), + [7061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 141), + [7063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 116), + [7065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 116), + [7067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 102), + [7069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 102), + [7071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 91), + [7073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 91), + [7075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [7077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 162), + [7083] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 162), + [7085] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 146), + [7087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 146), + [7089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 184), + [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 184), + [7093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [7095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [7101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [7105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), + [7107] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 161), + [7109] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 161), + [7111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3842), + [7113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), + [7115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [7117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 175), + [7119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 175), + [7121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3783), + [7123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 174), + [7125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 174), + [7127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), + [7131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), + [7135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [7137] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3909), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [7144] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3997), + [7147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), + [7151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5054), + [7153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [7155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3639), + [7157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), + [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4720), + [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), + [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4858), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4833), + [7177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [7179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3746), + [7181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3725), + [7183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [7185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3643), + [7187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), + [7191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), + [7193] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), SHIFT_REPEAT(5199), + [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [7200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [7208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [7210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [7212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [7214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [7218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5440), + [7220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), + [7222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [7228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 11), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), + [7234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 11), SHIFT(5343), + [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6132), + [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [7245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [7249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5746), + [7251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [7255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [7259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [7263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), + [7267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [7271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [7301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_namespace_name, 3), + [7303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_namespace_name, 3), + [7305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_jsx_namespace_name, 3), + [7308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [7310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 37), + [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 107), + [7320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4407), + [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3977), + [7324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), + [7326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4296), + [7328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3969), + [7330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 139), + [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), + [7334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3976), + [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [7338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [7340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), + [7342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [7344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5931), + [7346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 107), + [7348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [7358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [7360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 37), + [7362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [7364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 11), + [7367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(5402), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [7372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5944), + [7378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 139), + [7380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3972), + [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 37), + [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 139), + [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 37), + [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 107), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5743), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), + [7404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 107), + [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), + [7408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 139), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [7412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [7420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_rest_pattern, 2), + [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [7427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [7429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3294), + [7431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1974), + [7433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [7435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4154), + [7437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [7439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [7441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4094), + [7445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [7447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [7449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [7451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [7453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4529), + [7455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4141), + [7457] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [7459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), + [7461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4069), + [7465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), + [7467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4568), + [7471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [7473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4749), + [7475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5046), + [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [7481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), + [7483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4458), + [7485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [7487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), + [7489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4095), + [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4489), + [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [7497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [7499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [7501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), + [7503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [7505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [7507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [7511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [7513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [7515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4482), + [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [7521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4100), + [7525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5296), + [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6136), + [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [7533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [7535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [7537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [7541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4544), + [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4158), + [7545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [7548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [7550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6038), + [7552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [7556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3136), + [7560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), + [7562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [7566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [7570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [7572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5785), + [7574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5786), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [7578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), + [7580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [7583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5726), + [7585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), + [7587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 77), SHIFT_REPEAT(4301), + [7590] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 77), SHIFT_REPEAT(246), + [7593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 77), + [7595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 77), + [7597] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 77), SHIFT_REPEAT(4301), + [7600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4429), + [7602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [7604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [7609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5733), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [7613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [7615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), + [7617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), REDUCE(sym__parameter_name, 2), + [7620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [7622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [7624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6045), + [7626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), + [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6053), + [7632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [7634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [7636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [7638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6083), + [7640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(243), + [7643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(4830), + [7646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_jsx_element_repeat1, 2), SHIFT_REPEAT(4141), + [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4436), + [7651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5880), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6011), + [7655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), + [7657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [7659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [7661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), + [7663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), + [7665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [7668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), + [7670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), + [7672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5985), + [7674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5984), + [7676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [7680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [7682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [7684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5982), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4462), + [7688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4177), + [7690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5981), + [7692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 25), + [7696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4473), [7698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), - [7704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), REDUCE(sym__parameter_name, 2), - [7707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [7709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [7711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 78), SHIFT_REPEAT(4272), - [7714] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 78), SHIFT_REPEAT(241), - [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 78), - [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 78), - [7721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 2, .production_id = 78), SHIFT_REPEAT(4272), - [7724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4221), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6138), - [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), - [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), - [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [7750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), - [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), - [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), - [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), - [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), - [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4625), - [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), - [7778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [7782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4562), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2061), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2063), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), - [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4205), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5933), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), - [7830] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), + [7700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4471), + [7704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), + [7706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [7708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4502), + [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 158), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [7714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [7716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4449), + [7718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [7728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), + [7738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5935), + [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [7742] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [7746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5754), + [7754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 115), + [7756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), + [7758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), + [7760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4534), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [7778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [7780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), + [7788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 187), + [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6016), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 182), + [7796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 176), + [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 166), + [7800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 167), + [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [7806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 151), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 150), + [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), + [7820] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), + [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [7824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1, .production_id = 7), + [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), + [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 133), + [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), [7836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [7846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 9), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [7852] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 187), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4221), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 182), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [7866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 176), - [7868] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 166), - [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 167), - [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 151), - [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 150), - [7876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 133), - [7880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 115), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2008), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4758), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), - [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 111), - [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 90), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4567), - [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4478), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4865), - [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 81), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 158), - [7950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), - [7954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), - [7958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), - [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), - [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), - [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), - [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2006), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4790), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1550), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), - [7994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2001), - [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), - [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), - [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [8004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), - [8006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5838), - [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4684), - [8014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [8016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5759), - [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), - [8022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), - [8026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), - [8030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [8034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2420), - [8036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), - [8038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4603), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4799), - [8044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5715), - [8046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [8054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), - [8056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [8060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), - [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4124), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 16), - [8068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [8070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), - [8072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5907), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), - [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5585), - [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), - [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), - [8090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [8096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [8098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), - [8100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(5838), - [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [8105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(482), - [8108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [8110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [8114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [8116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4844), - [8118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4786), - [8120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5311), - [8122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4745), - [8130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [8132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4113), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [8140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [8142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), - [8148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), - [8156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4234), - [8168] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(736), - [8171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [8173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4840), - [8175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [8177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), - [8181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [8183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [8187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5943), - [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4791), - [8191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 58), - [8193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [8197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), - [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), - [8201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6101), - [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), - [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), - [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4847), - [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4815), - [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [8225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2347), - [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [8235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), - [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [8245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), - [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), - [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5747), - [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), - [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), - [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [8269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), - [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [8275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(4569), - [8278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [8280] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(421), - [8283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [8285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 9), - [8289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), - [8291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [8295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4184), - [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [8301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [8303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), - [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [8307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5663), - [8309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [8311] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(2233), - [8314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [8316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), - [8320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 84), - [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 27), - [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3655), - [8326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 38), - [8328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 38), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6128), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6087), - [8336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 27), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1414), - [8356] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1524), - [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(2010), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), - [8370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), - [8372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 70), - [8374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1522), - [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 109), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1636), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [8385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(2018), - [8388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5811), - [8390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1642), - [8393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1509), - [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [8400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1528), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [8415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 165), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [8421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 185), - [8425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1917), - [8428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1521), - [8431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [8433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), - [8435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), - [8437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [8439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4121), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [8443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 153), - [8445] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1505), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 137), - [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 170), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [8454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1868), - [8457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5861), - [8459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 137), - [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 135), - [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 9), - [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), - [8467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1600), - [8470] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1554), - [8473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), - [8475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 9), - [8477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 157), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [8481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1738), - [8484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1520), - [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [8495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1687), - [8498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), - [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), - [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), - [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 180), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5880), - [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 157), - [8518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 109), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 70), - [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 9), - [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 153), - [8528] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1511), - [8531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1724), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), - [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 177), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 27), - [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 173), - [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 170), - [8546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1714), - [8549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4526), - [8551] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1517), - [8554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), - [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), - [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 165), - [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 164), - [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), - [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), - [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4911), - [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 135), - [8572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [8574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), - [8576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2014), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [8582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3746), - [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4931), - [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4932), - [8606] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(250), - [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5001), - [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4981), - [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [8633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5031), - [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), - [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [8641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 9), - [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 42), - [8647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1926), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), - [8663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [8665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [8667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), - [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [8671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), - [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), - [8675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [8677] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), - [8679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), - [8681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4883), - [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), - [8685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [8689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), - [8691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [8693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [8699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2236), - [8707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [8709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), - [8711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [8713] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [8715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4997), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), - [8720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [8722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(5001), - [8725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [8729] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(222), - [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), - [8734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2017), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [8752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2164), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [8758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), - [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [8766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2167), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [8788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), - [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5296), - [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), - [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [8812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), - [8814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 42), - [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [8820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2304), - [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [8830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [8836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 11), - [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 11), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [8856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(4360), - [8859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [8861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), - [8865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [8867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), - [8869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [8871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 9), - [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [8875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), - [8879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5480), - [8881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5034), - [8883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [8885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4474), - [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [8889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [8891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(300), - [8894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), - [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4217), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), - [8904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), - [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2494), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4479), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), - [8916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 181), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [8922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(2020), - [8925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 150), - [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), - [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), - [8931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [8933] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(3704), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 179), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [8948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), - [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2479), - [8952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 156), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), - [8958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 26), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), - [8964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 134), - [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 136), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4188), - [8970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 106), - [8972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [8974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 71), - [8976] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(5053), - [8979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [8981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), - [8983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 178), - [8985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 70), - [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 138), - [8989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 155), - [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5879), - [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2837), - [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [9005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), - [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [9009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 152), - [9011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 115), - [9013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 133), - [9015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 140), - [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [9019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2314), - [9021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3638), - [9023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5115), - [9025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [9027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 77), - [9029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2804), - [9031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 108), - [9033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [9035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), - [9037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [9039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [9041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [9043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), - [9045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [9047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), - [9051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 186), - [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [9055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), - [9059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2307), - [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [9065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 90), - [9067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [9069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5247), - [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [9077] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(3656), - [9080] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [9082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 110), - [9084] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(3726), - [9087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [9089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(4986), - [9092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [9094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), - [9098] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1269), - [9101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [9103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [9105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 79), - [9107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2476), - [9109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), - [9111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 71), - [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), - [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), - [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [9123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [9125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(5565), - [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4151), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4524), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4267), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2232), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [9156] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(3799), - [9159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 154), - [9161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [9163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 37), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [9167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [9169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [9171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3645), - [9173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [9175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 151), - [9177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [9179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2972), - [9181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 166), - [9183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), - [9185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), - [9187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 37), - [9189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), - [9191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [9199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 169), - [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2580), - [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [9207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5138), - [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5075), - [9213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5535), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5341), - [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4187), - [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5845), - [9225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 172), - [9227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 171), - [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [9233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [9241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), - [9243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 168), - [9245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 26), - [9247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [9249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(3830), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3426), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3341), - [9260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(902), - [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), - [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), - [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [9269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4879), - [9273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4894), - [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [9283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3637), - [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), - [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [9289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1578), - [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [9293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [9295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1821), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2474), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), - [9332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 31), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), - [9348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), - [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [9352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1127), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4904), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 11), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [9376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 100), - [9378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 64), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), - [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [9390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 68), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [9398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 75), - [9400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 75), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [9406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 104), - [9408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 127), - [9410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 61), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [9422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 119), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), - [9430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 66), - [9432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2), - [9434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1134), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3373), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3372), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3370), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2223), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2248), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2251), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), - [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6050), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), - [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(871), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), - [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6122), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), - [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [9612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3315), - [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), - [9620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [9626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 68), - [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), - [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), - [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4142), - [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), - [9642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [9646] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2201), - [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), - [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4177), - [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), - [9658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), - [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [9664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5800), - [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), - [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), - [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), - [9686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2280), - [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), - [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), - [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2010), - [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), - [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), - [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4237), - [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), - [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), - [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), - [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), - [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), - [9730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 68), - [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5459), - [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4729), - [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4704), - [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5455), - [9744] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), - [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 68), - [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(714), - [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4901), - [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [9780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), - [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), - [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2051), - [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5610), - [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4873), - [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), - [9824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), - [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2385), - [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4630), - [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), - [9844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), - [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6033), - [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4644), - [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), - [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2590), - [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), - [9862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), - [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), - [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), - [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), - [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(440), - [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), - [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), - [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), - [9890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [9896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1475), - [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), - [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2938), - [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [9908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6045), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2979), - [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4490), - [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), - [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), - [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), - [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), - [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [10008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6061), - [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), - [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1521), - [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), - [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1917), - [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), - [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [10040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [10048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), - [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5521), - [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [10064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), - [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), - [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5953), - [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), - [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), - [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5288), - [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), - [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), - [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [10110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), - [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), - [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(446), - [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), - [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(493), - [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), - [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), - [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4111), - [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), - [10146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5529), - [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), - [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), - [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), - [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), - [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4154), - [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5987), - [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), - [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), - [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), - [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [7838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), + [7840] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 158), + [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [7848] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), + [7872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 80), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2070), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4488), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4867), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), + [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [7904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4783), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5943), + [7918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [7920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 9), + [7922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [7924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), + [7926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [7928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4664), + [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4469), + [7936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [7938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4443), + [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 111), + [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 90), + [7946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), + [7952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), + [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), + [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), + [7966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1879), + [7968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [7972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), + [7974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), + [7980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4182), + [7984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [7988] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(5742), + [7991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [7993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(425), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [8004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5848), + [8006] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(751), + [8009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4898), + [8011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4578), + [8013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), + [8015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [8017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2253), + [8019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [8021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [8023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), + [8025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4697), + [8027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), + [8029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), + [8037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5722), + [8039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [8041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), + [8043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [8045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), + [8047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2156), + [8049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [8051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [8053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [8055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [8057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [8059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [8061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [8063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5770), + [8065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [8067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 9), + [8069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), + [8071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [8073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), + [8075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 16), + [8077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [8079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [8081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5975), + [8083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6124), + [8085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), + [8087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [8089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), + [8091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [8093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4744), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [8103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), + [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4771), + [8113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), + [8115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), + [8119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [8121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), + [8125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [8129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), + [8131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [8135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6036), + [8137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), + [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [8141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), + [8143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4419), + [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2424), + [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3513), + [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [8153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [8155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [8157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(2256), + [8160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2591), + [8166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 1), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 1), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), + [8178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4260), + [8182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), + [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [8190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [8192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [8194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [8196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4808), + [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [8204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4981), + [8208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4556), + [8210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [8212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [8216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extends_type, 1), + [8218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_type, 1), + [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6088), + [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4881), + [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 57), + [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), + [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4688), + [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [8238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3868), + [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), + [8246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3390), + [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), + [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [8254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1462), + [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), + [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), + [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [8268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4760), + [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), + [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5929), + [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5938), + [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), + [8282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4887), + [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4903), + [8288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4509), + [8292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2409), + [8294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [8296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5398), + [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [8300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(4578), + [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [8305] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(454), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2159), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [8324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 69), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5980), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6073), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1935), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1144), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1146), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [8344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 38), + [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__jsx_start_opening_element_repeat1, 1, .production_id = 38), + [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 109), + [8350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), + [8352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1573), + [8355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 27), + [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [8359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [8361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1672), + [8364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1572), + [8367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [8369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [8375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1675), + [8378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4912), + [8380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [8382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [8384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 9), + [8386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 2), + [8388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 2), + [8390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1804), + [8393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1533), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 27), + [8398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3), + [8400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3), + [8402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), + [8404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_attribute, 3, .production_id = 7), + [8406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [8412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [8414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 9), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [8418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functional_extension, 2), + [8420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functional_extension, 2), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), + [8432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 135), + [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 137), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 165), + [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 185), + [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 170), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6091), + [8444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), + [8446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1928), + [8449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), + [8451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [8453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [8455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), + [8457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1505), + [8460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1808), + [8463] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1950), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6057), + [8468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_expression, 3), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_jsx_expression, 3), + [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 180), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [8478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [8482] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1576), + [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 177), + [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5801), + [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [8495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1753), + [8498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1542), + [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1472), + [8504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1495), + [8507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4459), + [8509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(2013), + [8512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1846), + [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 109), + [8517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [8519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), + [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 69), + [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 9), + [8527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1537), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [8532] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1814), + [8535] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 157), + [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 153), + [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [8543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [8545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [8547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8549] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1474), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 173), + [8556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 170), + [8558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), + [8560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 165), + [8562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), + [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 164), + [8566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [8568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 137), + [8570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 157), + [8572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 27), + [8574] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), + [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 153), + [8578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 135), + [8580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 83), + [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(4401), + [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [8587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), + [8589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4958), + [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [8595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [8597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [8599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [8601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2307), + [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1930), + [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [8607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4517), + [8609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [8611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2245), + [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), + [8615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [8617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), + [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4921), + [8621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 11), + [8623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), + [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [8629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), + [8631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), + [8635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2815), + [8637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4946), + [8639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), + [8641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [8643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [8645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [8647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(241), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [8652] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [8654] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4958), + [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4175), + [8661] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(4960), + [8666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(227), + [8669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [8671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [8673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2015), + [8675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), + [8677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4963), + [8679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [8681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), + [8683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [8685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1922), + [8687] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(234), + [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), + [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5317), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), + [8710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), + [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 9), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), + [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3999), + [8730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [8732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5008), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [8740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5539), + [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [8748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), + [8750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), + [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [8758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [8762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3871), + [8764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [8774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2166), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4373), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), + [8782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4584), + [8784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5023), + [8790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2171), + [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), + [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 11), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4588), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), + [8802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [8804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [8806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5017), + [8810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), + [8812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [8814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), + [8816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [8818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [8822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4632), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4258), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), + [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [8850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3404), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [8860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 9), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1962), + [8872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3307), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4919), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [8898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5701), + [8902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5313), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), + [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5764), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [8918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(4993), + [8921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [8923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [8925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [8927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [8929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [8933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 115), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [8937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 70), + [8939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 69), + [8941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), + [8943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [8945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 179), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [8951] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1830), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3727), + [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), + [8958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 181), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [8962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 134), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [8966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6059), + [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [8984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(3689), + [8987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [8989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [8991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [8993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5727), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2461), + [8997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 140), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [9005] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(5030), + [9008] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [9010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 136), + [9012] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 133), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [9018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 138), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), + [9022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 186), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2991), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [9040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 168), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [9044] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(3835), + [9047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 76), + [9049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [9051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5257), + [9053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [9055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [9057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2470), + [9059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [9061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [9063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [9065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [9067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), + [9069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 4, .dynamic_precedence = -1, .production_id = 78), + [9071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [9073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3654), + [9075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5292), + [9077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), + [9079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), + [9081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [9083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [9085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4244), + [9087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), + [9089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [9091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), + [9093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(5392), + [9096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3607), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [9108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 166), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [9114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 169), + [9116] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(3727), + [9119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [9125] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(3640), + [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5998), + [9132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 37), + [9134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 172), + [9136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 171), + [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3476), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3616), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), + [9154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [9156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [9162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [9164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [9174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 26), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [9180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [9184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 178), + [9186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [9188] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1266), + [9191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 26), + [9195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [9199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [9203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [9205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [9207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), + [9209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [9211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [9217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 5, .dynamic_precedence = -1, .production_id = 106), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), + [9221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [9223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), + [9225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functional_extension, 3), + [9229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [9231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [9233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [9235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4276), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2234), + [9241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1667), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4857), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [9272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(3816), + [9275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functional_extension, 3), + [9277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_jsx_opening_element, 3, .dynamic_precedence = -1, .production_id = 37), + [9279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 108), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1487), + [9283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 152), + [9285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 150), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 151), + [9289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 90), + [9291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [9295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [9297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(753), + [9300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 156), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [9304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 110), + [9306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 155), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [9310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 154), + [9312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 70), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2879), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [9324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), + [9328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [9330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 119), + [9332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 127), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), + [9344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 104), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4779), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), + [9350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 67), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [9354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), + [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [9362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 63), + [9364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 31), + [9366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 100), + [9368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [9388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), + [9396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 60), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4659), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4673), + [9412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 74), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [9416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 11), + [9418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 65), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4778), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5877), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [9440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 74), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5868), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2985), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5900), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2183), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2965), + [9512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), + [9536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [9546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 67), + [9548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5760), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5604), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2993), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4135), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(553), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2197), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2198), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1588), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(397), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4178), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [9622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), + [9624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [9626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [9628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2518), + [9630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(408), + [9632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [9634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2423), + [9644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [9648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2426), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), + [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3284), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3379), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [9668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2018), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), + [9674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3029), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4700), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4690), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), + [9706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), + [9724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3088), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4574), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4794), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [9748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2736), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2832), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [9756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [9766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [9772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3302), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [9778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), + [9788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), + [9790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4092), + [9800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), + [9808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), + [9820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4378), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2315), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), + [9838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [9844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [9852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [9854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5450), + [9856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5538), + [9858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [9860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(363), + [9862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [9864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [9866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [9868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [9870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6030), + [9872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4665), + [9874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2029), + [9876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), + [9878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [9880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [9882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [9884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [9886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [9888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [9894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [9896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [9898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [9900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), + [9904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [9906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [9908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), + [9910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [9912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [9914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [9916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [9918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), + [9920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4149), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4080), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [9940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [9946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), + [9948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1560), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), + [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), + [9968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [9970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5879), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3393), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3399), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [10002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), + [10006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [10010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [10012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [10014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [10018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5355), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [10024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [10028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4183), + [10030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5769), + [10032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [10034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), + [10036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), + [10038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [10040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3526), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [10054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5892), + [10056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 67), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5512), + [10064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [10066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [10068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [10070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [10072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6009), + [10080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [10084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [10086] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5774), + [10098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [10100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), + [10104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3533), + [10108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [10110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 67), + [10112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), + [10114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [10116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), + [10120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [10124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [10126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [10128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), + [10130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(415), + [10132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [10142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5977), + [10144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [10150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [10152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1837), + [10156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), + [10158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [10160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [10168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2584), + [10172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [10174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2283), + [10176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), + [10178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), + [10180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5824), + [10182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), + [10186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [10190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [10192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2588), + [10196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2013), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2343), + [10202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [10204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [10206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [10208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [10212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [10214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [10216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), }; #ifdef __cplusplus diff --git a/typescript/src/grammar.json b/typescript/src/grammar.json index e399195f..954dc9d6 100644 --- a/typescript/src/grammar.json +++ b/typescript/src/grammar.json @@ -5256,7 +5256,7 @@ }, { "type": "PATTERN", - "value": "[^*]*\\*+([^\\/*][^*]*\\*+)*" + "value": "[^*]*\\*+([^/*][^*]*\\*+)*" }, { "type": "STRING", @@ -5420,7 +5420,7 @@ }, { "type": "PATTERN", - "value": "[^\\/\\\\\\[\\n]" + "value": "[^/\\\\\\[\\n]" } ] } @@ -5943,13 +5943,13 @@ "members": [ { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] @@ -5966,13 +5966,13 @@ }, { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s0-9:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" }, { "type": "REPEAT", "content": { "type": "PATTERN", - "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*\\/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" + "value": "[^\\x00-\\x1F\\s:;`\"'@#.,|^&<=>+\\-*/\\\\%?!~()\\[\\]{}\\uFEFF\\u2060\\u200B\\u00A0]|\\\\u[0-9a-fA-F]{4}|\\\\u\\{[0-9a-fA-F]+\\}" } } ] @@ -7726,95 +7726,117 @@ } ] }, + "_extends_type": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_type_identifier" + }, + { + "type": "SYMBOL", + "name": "nested_type_identifier" + }, + { + "type": "SYMBOL", + "name": "generic_type" + } + ] + }, + "functional_extension": { + "type": "SEQ", + "members": [ + { + "type": "SYMBOL", + "name": "_extends_type" + }, + { + "type": "SYMBOL", + "name": "arguments" + }, + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "type_arguments" + }, + { + "type": "BLANK" + } + ] + } + ] + }, "extends_clause": { - "type": "PREC", - "value": "extends_type", - "content": { - "type": "SEQ", - "members": [ - { - "type": "STRING", - "value": "extends" - }, - { - "type": "SEQ", - "members": [ - { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": "extends_type", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "nested_type_identifier" - }, - { - "type": "SYMBOL", - "name": "generic_type" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] - }, - { - "type": "REPEAT", - "content": { - "type": "SEQ", + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "extends" + }, + { + "type": "SEQ", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "," + "type": "SYMBOL", + "name": "_extends_type" }, { - "type": "CHOICE", - "members": [ - { - "type": "PREC", - "value": "extends_type", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "_type_identifier" - }, - { - "type": "SYMBOL", - "name": "nested_type_identifier" - }, - { - "type": "SYMBOL", - "name": "generic_type" - } - ] - } - }, - { - "type": "SYMBOL", - "name": "expression" - } - ] + "type": "SYMBOL", + "name": "functional_extension" } ] + }, + { + "type": "SYMBOL", + "name": "expression" } + ] + }, + { + "type": "REPEAT", + "content": { + "type": "SEQ", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "CHOICE", + "members": [ + { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_extends_type" + }, + { + "type": "SYMBOL", + "name": "functional_extension" + } + ] + }, + { + "type": "SYMBOL", + "name": "expression" + } + ] + } + ] } - ] - } - ] - } + } + ] + } + ] }, "enum_declaration": { "type": "SEQ", @@ -10048,8 +10070,12 @@ ], [ { - "type": "STRING", - "value": "extends_type" + "type": "SYMBOL", + "name": "_extends_type" + }, + { + "type": "SYMBOL", + "name": "extends_clause" }, { "type": "SYMBOL", diff --git a/typescript/src/node-types.json b/typescript/src/node-types.json index ceafc649..b7260dfb 100644 --- a/typescript/src/node-types.json +++ b/typescript/src/node-types.json @@ -2019,6 +2019,10 @@ "type": "expression", "named": true }, + { + "type": "functional_extension", + "named": true + }, { "type": "generic_type", "named": true @@ -2451,6 +2455,37 @@ ] } }, + { + "type": "functional_extension", + "named": true, + "fields": {}, + "children": { + "multiple": true, + "required": true, + "types": [ + { + "type": "arguments", + "named": true + }, + { + "type": "generic_type", + "named": true + }, + { + "type": "nested_type_identifier", + "named": true + }, + { + "type": "type_arguments", + "named": true + }, + { + "type": "type_identifier", + "named": true + } + ] + } + }, { "type": "generator_function", "named": true, diff --git a/typescript/src/parser.c b/typescript/src/parser.c index ae6208b7..fa91d072 100644 --- a/typescript/src/parser.c +++ b/typescript/src/parser.c @@ -6,9 +6,9 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 5831 -#define LARGE_STATE_COUNT 1263 -#define SYMBOL_COUNT 334 +#define STATE_COUNT 5841 +#define LARGE_STATE_COUNT 1264 +#define SYMBOL_COUNT 336 #define ALIAS_COUNT 6 #define TOKEN_COUNT 151 #define EXTERNAL_TOKEN_COUNT 4 @@ -277,85 +277,87 @@ enum { 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_omitting_type_annotation = 270, - sym_opting_type_annotation = 271, - sym_type_annotation = 272, - sym_asserts = 273, - sym__type = 274, - sym_tuple_parameter = 275, - sym_optional_tuple_parameter = 276, - sym_optional_type = 277, - sym_rest_type = 278, - sym__tuple_type_member = 279, - sym_constructor_type = 280, - sym__primary_type = 281, - sym_infer_type = 282, - sym_conditional_type = 283, - sym_generic_type = 284, - sym_type_predicate = 285, - sym_type_predicate_annotation = 286, - sym_type_query = 287, - sym_index_type_query = 288, - sym_lookup_type = 289, - sym_mapped_type_clause = 290, - sym_literal_type = 291, - sym__number = 292, - sym_existential_type = 293, - sym_flow_maybe_type = 294, - sym_parenthesized_type = 295, - sym_predefined_type = 296, - sym_type_arguments = 297, - sym_object_type = 298, - sym_call_signature = 299, - sym_property_signature = 300, - sym_type_parameters = 301, - sym_type_parameter = 302, - sym_default_type = 303, - sym_constraint = 304, - sym_construct_signature = 305, - sym_index_signature = 306, - sym_array_type = 307, - sym_tuple_type = 308, - sym_readonly_type = 309, - sym_union_type = 310, - sym_intersection_type = 311, - sym_function_type = 312, - aux_sym_program_repeat1 = 313, - aux_sym_export_statement_repeat1 = 314, - aux_sym_export_clause_repeat1 = 315, - aux_sym_named_imports_repeat1 = 316, - aux_sym_variable_declaration_repeat1 = 317, - aux_sym_switch_body_repeat1 = 318, - aux_sym_object_repeat1 = 319, - aux_sym_object_pattern_repeat1 = 320, - aux_sym_array_repeat1 = 321, - aux_sym_array_pattern_repeat1 = 322, - aux_sym_string_repeat1 = 323, - aux_sym_string_repeat2 = 324, - aux_sym_template_string_repeat1 = 325, - aux_sym_class_body_repeat1 = 326, - aux_sym_formal_parameters_repeat1 = 327, - aux_sym_implements_clause_repeat1 = 328, - aux_sym_extends_clause_repeat1 = 329, - aux_sym_enum_body_repeat1 = 330, - aux_sym_object_type_repeat1 = 331, - aux_sym_type_parameters_repeat1 = 332, - aux_sym_tuple_type_repeat1 = 333, - alias_sym_import_specifier = 334, - alias_sym_property_identifier = 335, - alias_sym_shorthand_property_identifier = 336, - alias_sym_shorthand_property_identifier_pattern = 337, - alias_sym_statement_identifier = 338, - alias_sym_type_identifier = 339, + sym__extends_type = 261, + sym_functional_extension = 262, + sym_extends_clause = 263, + sym_enum_declaration = 264, + sym_enum_body = 265, + sym_enum_assignment = 266, + sym_type_alias_declaration = 267, + sym_accessibility_modifier = 268, + sym_required_parameter = 269, + sym_optional_parameter = 270, + sym__parameter_name = 271, + sym_omitting_type_annotation = 272, + sym_opting_type_annotation = 273, + sym_type_annotation = 274, + sym_asserts = 275, + sym__type = 276, + sym_tuple_parameter = 277, + sym_optional_tuple_parameter = 278, + sym_optional_type = 279, + sym_rest_type = 280, + sym__tuple_type_member = 281, + sym_constructor_type = 282, + sym__primary_type = 283, + sym_infer_type = 284, + sym_conditional_type = 285, + sym_generic_type = 286, + sym_type_predicate = 287, + sym_type_predicate_annotation = 288, + sym_type_query = 289, + sym_index_type_query = 290, + sym_lookup_type = 291, + sym_mapped_type_clause = 292, + sym_literal_type = 293, + sym__number = 294, + sym_existential_type = 295, + sym_flow_maybe_type = 296, + sym_parenthesized_type = 297, + sym_predefined_type = 298, + sym_type_arguments = 299, + sym_object_type = 300, + sym_call_signature = 301, + sym_property_signature = 302, + sym_type_parameters = 303, + sym_type_parameter = 304, + sym_default_type = 305, + sym_constraint = 306, + sym_construct_signature = 307, + sym_index_signature = 308, + sym_array_type = 309, + sym_tuple_type = 310, + sym_readonly_type = 311, + sym_union_type = 312, + sym_intersection_type = 313, + sym_function_type = 314, + aux_sym_program_repeat1 = 315, + aux_sym_export_statement_repeat1 = 316, + aux_sym_export_clause_repeat1 = 317, + aux_sym_named_imports_repeat1 = 318, + aux_sym_variable_declaration_repeat1 = 319, + aux_sym_switch_body_repeat1 = 320, + aux_sym_object_repeat1 = 321, + aux_sym_object_pattern_repeat1 = 322, + aux_sym_array_repeat1 = 323, + aux_sym_array_pattern_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_implements_clause_repeat1 = 330, + aux_sym_extends_clause_repeat1 = 331, + aux_sym_enum_body_repeat1 = 332, + aux_sym_object_type_repeat1 = 333, + aux_sym_type_parameters_repeat1 = 334, + aux_sym_tuple_type_repeat1 = 335, + alias_sym_import_specifier = 336, + alias_sym_property_identifier = 337, + alias_sym_shorthand_property_identifier = 338, + alias_sym_shorthand_property_identifier_pattern = 339, + alias_sym_statement_identifier = 340, + alias_sym_type_identifier = 341, }; static const char *ts_symbol_names[] = { @@ -620,6 +622,8 @@ static const char *ts_symbol_names[] = { [sym_import_alias] = "import_alias", [sym_nested_type_identifier] = "nested_type_identifier", [sym_interface_declaration] = "interface_declaration", + [sym__extends_type] = "_extends_type", + [sym_functional_extension] = "functional_extension", [sym_extends_clause] = "extends_clause", [sym_enum_declaration] = "enum_declaration", [sym_enum_body] = "enum_body", @@ -963,6 +967,8 @@ static TSSymbol ts_symbol_map[] = { [sym_import_alias] = sym_import_alias, [sym_nested_type_identifier] = sym_nested_type_identifier, [sym_interface_declaration] = sym_interface_declaration, + [sym__extends_type] = sym__extends_type, + [sym_functional_extension] = sym_functional_extension, [sym_extends_clause] = sym_extends_clause, [sym_enum_declaration] = sym_enum_declaration, [sym_enum_body] = sym_enum_body, @@ -2093,6 +2099,14 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym__extends_type] = { + .visible = false, + .named = true, + }, + [sym_functional_extension] = { + .visible = true, + .named = true, + }, [sym_extends_clause] = { .visible = true, .named = true, @@ -3387,40 +3401,6 @@ static inline bool sym_identifier_character_set_1(int32_t c) { : c <= 65279))))); } -static inline bool sym_identifier_character_set_2(int32_t c) { - return (c < '`' - ? (c < '%' - ? (c < 0 - ? c == 0 - : c <= '#') - : (c <= '/' || (c < '[' - ? (c >= ':' && c <= '@') - : c <= '^'))) - : (c <= '~' || (c < 8288 - ? (c < 8203 - ? c == 160 - : c <= 8203) - : (c <= 8288 || c == 65279)))); -} - -static inline bool sym_identifier_character_set_3(int32_t c) { - return (c < '`' - ? (c < '%' - ? (c < 0 - ? c == 0 - : c <= '#') - : (c <= '/' || (c < '[' - ? (c >= ':' && c <= '@') - : c <= '^'))) - : (c <= '`' || (c < 8203 - ? (c < 160 - ? (c >= '|' && c <= '~') - : c <= 160) - : (c <= 8203 || (c < 65279 - ? c == 8288 - : c <= 65279))))); -} - static inline bool sym_private_property_identifier_character_set_1(int32_t c) { return (c < '{' ? (c < '%' @@ -4906,7 +4886,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_regex_flags); if (lookahead == '\\') ADVANCE(32); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); - if (!sym_identifier_character_set_2(lookahead)) ADVANCE(206); + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '/' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + (lookahead < '`' || '~' < lookahead) && + lookahead != 160 && + lookahead != 8203 && + lookahead != 8288 && + lookahead != 65279) ADVANCE(206); END_STATE(); case 195: ACCEPT_TOKEN(sym_number); @@ -4985,7 +4974,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(sym_identifier); if (lookahead == '\\') ADVANCE(32); if (lookahead == '{') ADVANCE(190); - if (!sym_identifier_character_set_3(lookahead)) ADVANCE(206); + if (lookahead != 0 && + lookahead > '#' && + (lookahead < '%' || '/' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + (lookahead < '[' || '^' < lookahead) && + lookahead != '`' && + (lookahead < '|' || '~' < lookahead) && + lookahead != 160 && + lookahead != 8203 && + lookahead != 8288 && + lookahead != 65279) ADVANCE(206); END_STATE(); case 206: ACCEPT_TOKEN(sym_identifier); @@ -6104,101 +6103,101 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [82] = {.lex_state = 10}, [83] = {.lex_state = 10}, [84] = {.lex_state = 10}, - [85] = {.lex_state = 10}, + [85] = {.lex_state = 71, .external_lex_state = 2}, [86] = {.lex_state = 10}, [87] = {.lex_state = 10}, [88] = {.lex_state = 10}, [89] = {.lex_state = 10}, [90] = {.lex_state = 10}, - [91] = {.lex_state = 71, .external_lex_state = 2}, + [91] = {.lex_state = 10}, [92] = {.lex_state = 10}, - [93] = {.lex_state = 71, .external_lex_state = 3}, + [93] = {.lex_state = 10}, [94] = {.lex_state = 10}, [95] = {.lex_state = 10}, - [96] = {.lex_state = 10}, + [96] = {.lex_state = 71, .external_lex_state = 3}, [97] = {.lex_state = 10}, [98] = {.lex_state = 10}, [99] = {.lex_state = 10}, [100] = {.lex_state = 10}, - [101] = {.lex_state = 2, .external_lex_state = 3}, - [102] = {.lex_state = 71, .external_lex_state = 4}, - [103] = {.lex_state = 71, .external_lex_state = 3}, - [104] = {.lex_state = 71, .external_lex_state = 2}, - [105] = {.lex_state = 71, .external_lex_state = 3}, - [106] = {.lex_state = 71, .external_lex_state = 2}, - [107] = {.lex_state = 71, .external_lex_state = 4}, - [108] = {.lex_state = 71, .external_lex_state = 3}, - [109] = {.lex_state = 71, .external_lex_state = 3}, - [110] = {.lex_state = 4, .external_lex_state = 3}, - [111] = {.lex_state = 71, .external_lex_state = 3}, + [101] = {.lex_state = 71, .external_lex_state = 3}, + [102] = {.lex_state = 71, .external_lex_state = 2}, + [103] = {.lex_state = 71, .external_lex_state = 4}, + [104] = {.lex_state = 2, .external_lex_state = 2}, + [105] = {.lex_state = 71, .external_lex_state = 4}, + [106] = {.lex_state = 71, .external_lex_state = 3}, + [107] = {.lex_state = 71, .external_lex_state = 2}, + [108] = {.lex_state = 71, .external_lex_state = 2}, + [109] = {.lex_state = 71, .external_lex_state = 2}, + [110] = {.lex_state = 71, .external_lex_state = 3}, + [111] = {.lex_state = 4, .external_lex_state = 2}, [112] = {.lex_state = 71, .external_lex_state = 2}, [113] = {.lex_state = 71, .external_lex_state = 2}, - [114] = {.lex_state = 4, .external_lex_state = 3}, - [115] = {.lex_state = 71, .external_lex_state = 3}, + [114] = {.lex_state = 71, .external_lex_state = 2}, + [115] = {.lex_state = 71, .external_lex_state = 2}, [116] = {.lex_state = 71, .external_lex_state = 3}, - [117] = {.lex_state = 71, .external_lex_state = 3}, - [118] = {.lex_state = 71, .external_lex_state = 3}, - [119] = {.lex_state = 71, .external_lex_state = 3}, + [117] = {.lex_state = 4, .external_lex_state = 2}, + [118] = {.lex_state = 71, .external_lex_state = 2}, + [119] = {.lex_state = 71, .external_lex_state = 2}, [120] = {.lex_state = 72}, [121] = {.lex_state = 72}, [122] = {.lex_state = 72}, [123] = {.lex_state = 72}, [124] = {.lex_state = 72}, [125] = {.lex_state = 72}, - [126] = {.lex_state = 2, .external_lex_state = 3}, - [127] = {.lex_state = 2, .external_lex_state = 2}, - [128] = {.lex_state = 2, .external_lex_state = 4}, - [129] = {.lex_state = 2, .external_lex_state = 3}, - [130] = {.lex_state = 2, .external_lex_state = 2}, - [131] = {.lex_state = 2, .external_lex_state = 4}, - [132] = {.lex_state = 2, .external_lex_state = 2}, - [133] = {.lex_state = 2, .external_lex_state = 3}, + [126] = {.lex_state = 2, .external_lex_state = 2}, + [127] = {.lex_state = 2, .external_lex_state = 3}, + [128] = {.lex_state = 2, .external_lex_state = 2}, + [129] = {.lex_state = 2, .external_lex_state = 4}, + [130] = {.lex_state = 2, .external_lex_state = 3}, + [131] = {.lex_state = 2, .external_lex_state = 3}, + [132] = {.lex_state = 2, .external_lex_state = 4}, + [133] = {.lex_state = 2, .external_lex_state = 2}, [134] = {.lex_state = 2, .external_lex_state = 3}, - [135] = {.lex_state = 71, .external_lex_state = 2}, - [136] = {.lex_state = 2, .external_lex_state = 3}, - [137] = {.lex_state = 71, .external_lex_state = 2}, - [138] = {.lex_state = 71, .external_lex_state = 2}, + [135] = {.lex_state = 71, .external_lex_state = 3}, + [136] = {.lex_state = 71, .external_lex_state = 3}, + [137] = {.lex_state = 2, .external_lex_state = 2}, + [138] = {.lex_state = 71, .external_lex_state = 3}, [139] = {.lex_state = 2, .external_lex_state = 2}, - [140] = {.lex_state = 71, .external_lex_state = 2}, - [141] = {.lex_state = 71, .external_lex_state = 2}, - [142] = {.lex_state = 71, .external_lex_state = 2}, - [143] = {.lex_state = 71, .external_lex_state = 2}, - [144] = {.lex_state = 71, .external_lex_state = 2}, - [145] = {.lex_state = 71, .external_lex_state = 2}, + [140] = {.lex_state = 71, .external_lex_state = 3}, + [141] = {.lex_state = 71, .external_lex_state = 3}, + [142] = {.lex_state = 71, .external_lex_state = 3}, + [143] = {.lex_state = 71, .external_lex_state = 3}, + [144] = {.lex_state = 2, .external_lex_state = 2}, + [145] = {.lex_state = 2, .external_lex_state = 2}, [146] = {.lex_state = 2, .external_lex_state = 3}, - [147] = {.lex_state = 71, .external_lex_state = 2}, - [148] = {.lex_state = 2, .external_lex_state = 3}, - [149] = {.lex_state = 71, .external_lex_state = 2}, - [150] = {.lex_state = 71, .external_lex_state = 2}, - [151] = {.lex_state = 2, .external_lex_state = 3}, - [152] = {.lex_state = 2, .external_lex_state = 2}, - [153] = {.lex_state = 2, .external_lex_state = 3}, - [154] = {.lex_state = 2, .external_lex_state = 3}, - [155] = {.lex_state = 71, .external_lex_state = 2}, - [156] = {.lex_state = 71, .external_lex_state = 2}, - [157] = {.lex_state = 71, .external_lex_state = 2}, - [158] = {.lex_state = 71, .external_lex_state = 2}, - [159] = {.lex_state = 71, .external_lex_state = 2}, - [160] = {.lex_state = 71, .external_lex_state = 2}, - [161] = {.lex_state = 2, .external_lex_state = 3}, - [162] = {.lex_state = 71, .external_lex_state = 2}, - [163] = {.lex_state = 2, .external_lex_state = 3}, - [164] = {.lex_state = 71, .external_lex_state = 2}, - [165] = {.lex_state = 71, .external_lex_state = 2}, - [166] = {.lex_state = 71, .external_lex_state = 2}, - [167] = {.lex_state = 71, .external_lex_state = 2}, - [168] = {.lex_state = 71, .external_lex_state = 2}, - [169] = {.lex_state = 71, .external_lex_state = 2}, - [170] = {.lex_state = 71, .external_lex_state = 2}, - [171] = {.lex_state = 71, .external_lex_state = 2}, - [172] = {.lex_state = 2, .external_lex_state = 3}, - [173] = {.lex_state = 2, .external_lex_state = 3}, - [174] = {.lex_state = 72}, - [175] = {.lex_state = 2, .external_lex_state = 3}, + [147] = {.lex_state = 71, .external_lex_state = 3}, + [148] = {.lex_state = 71, .external_lex_state = 3}, + [149] = {.lex_state = 71, .external_lex_state = 3}, + [150] = {.lex_state = 71, .external_lex_state = 3}, + [151] = {.lex_state = 71, .external_lex_state = 3}, + [152] = {.lex_state = 71, .external_lex_state = 3}, + [153] = {.lex_state = 71, .external_lex_state = 3}, + [154] = {.lex_state = 2, .external_lex_state = 2}, + [155] = {.lex_state = 71, .external_lex_state = 3}, + [156] = {.lex_state = 71, .external_lex_state = 3}, + [157] = {.lex_state = 71, .external_lex_state = 3}, + [158] = {.lex_state = 71, .external_lex_state = 3}, + [159] = {.lex_state = 71, .external_lex_state = 3}, + [160] = {.lex_state = 2, .external_lex_state = 2}, + [161] = {.lex_state = 71, .external_lex_state = 3}, + [162] = {.lex_state = 71, .external_lex_state = 3}, + [163] = {.lex_state = 2, .external_lex_state = 2}, + [164] = {.lex_state = 71, .external_lex_state = 3}, + [165] = {.lex_state = 71, .external_lex_state = 3}, + [166] = {.lex_state = 2, .external_lex_state = 2}, + [167] = {.lex_state = 71, .external_lex_state = 3}, + [168] = {.lex_state = 71, .external_lex_state = 3}, + [169] = {.lex_state = 71, .external_lex_state = 3}, + [170] = {.lex_state = 2, .external_lex_state = 2}, + [171] = {.lex_state = 71, .external_lex_state = 3}, + [172] = {.lex_state = 72}, + [173] = {.lex_state = 2, .external_lex_state = 2}, + [174] = {.lex_state = 2, .external_lex_state = 2}, + [175] = {.lex_state = 72}, [176] = {.lex_state = 72}, - [177] = {.lex_state = 2, .external_lex_state = 3}, - [178] = {.lex_state = 72}, - [179] = {.lex_state = 72}, + [177] = {.lex_state = 72}, + [178] = {.lex_state = 2, .external_lex_state = 2}, + [179] = {.lex_state = 2, .external_lex_state = 2}, [180] = {.lex_state = 72}, [181] = {.lex_state = 72}, [182] = {.lex_state = 72}, @@ -6213,41 +6212,41 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [191] = {.lex_state = 72}, [192] = {.lex_state = 72}, [193] = {.lex_state = 72}, - [194] = {.lex_state = 72, .external_lex_state = 5}, + [194] = {.lex_state = 72}, [195] = {.lex_state = 72}, - [196] = {.lex_state = 72}, + [196] = {.lex_state = 72, .external_lex_state = 5}, [197] = {.lex_state = 72}, [198] = {.lex_state = 72}, [199] = {.lex_state = 72}, [200] = {.lex_state = 72}, [201] = {.lex_state = 72}, [202] = {.lex_state = 72}, - [203] = {.lex_state = 3, .external_lex_state = 2}, - [204] = {.lex_state = 3, .external_lex_state = 2}, - [205] = {.lex_state = 72}, + [203] = {.lex_state = 72}, + [204] = {.lex_state = 72}, + [205] = {.lex_state = 3, .external_lex_state = 3}, [206] = {.lex_state = 72}, - [207] = {.lex_state = 72}, + [207] = {.lex_state = 3, .external_lex_state = 3}, [208] = {.lex_state = 72}, - [209] = {.lex_state = 72}, - [210] = {.lex_state = 3, .external_lex_state = 2}, - [211] = {.lex_state = 3, .external_lex_state = 2}, - [212] = {.lex_state = 3, .external_lex_state = 2}, - [213] = {.lex_state = 72}, + [209] = {.lex_state = 3, .external_lex_state = 3}, + [210] = {.lex_state = 72}, + [211] = {.lex_state = 72}, + [212] = {.lex_state = 72}, + [213] = {.lex_state = 3, .external_lex_state = 3}, [214] = {.lex_state = 72}, [215] = {.lex_state = 72}, - [216] = {.lex_state = 3, .external_lex_state = 2}, + [216] = {.lex_state = 72}, [217] = {.lex_state = 72}, [218] = {.lex_state = 72}, - [219] = {.lex_state = 3, .external_lex_state = 2}, + [219] = {.lex_state = 72}, [220] = {.lex_state = 72}, - [221] = {.lex_state = 72}, - [222] = {.lex_state = 72}, + [221] = {.lex_state = 3, .external_lex_state = 3}, + [222] = {.lex_state = 3, .external_lex_state = 3}, [223] = {.lex_state = 72}, [224] = {.lex_state = 72}, [225] = {.lex_state = 72}, [226] = {.lex_state = 72}, [227] = {.lex_state = 72}, - [228] = {.lex_state = 72}, + [228] = {.lex_state = 3, .external_lex_state = 3}, [229] = {.lex_state = 72}, [230] = {.lex_state = 72}, [231] = {.lex_state = 72}, @@ -6261,7 +6260,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [239] = {.lex_state = 72}, [240] = {.lex_state = 72}, [241] = {.lex_state = 72}, - [242] = {.lex_state = 72, .external_lex_state = 5}, + [242] = {.lex_state = 72}, [243] = {.lex_state = 72}, [244] = {.lex_state = 72}, [245] = {.lex_state = 72}, @@ -6306,23 +6305,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [284] = {.lex_state = 72}, [285] = {.lex_state = 72}, [286] = {.lex_state = 72}, - [287] = {.lex_state = 72}, + [287] = {.lex_state = 72, .external_lex_state = 5}, [288] = {.lex_state = 72}, [289] = {.lex_state = 72}, [290] = {.lex_state = 72}, [291] = {.lex_state = 72}, - [292] = {.lex_state = 2, .external_lex_state = 2}, - [293] = {.lex_state = 72}, - [294] = {.lex_state = 3, .external_lex_state = 2}, - [295] = {.lex_state = 2, .external_lex_state = 2}, - [296] = {.lex_state = 2, .external_lex_state = 2}, - [297] = {.lex_state = 2, .external_lex_state = 2}, - [298] = {.lex_state = 2, .external_lex_state = 2}, - [299] = {.lex_state = 3, .external_lex_state = 2}, - [300] = {.lex_state = 2, .external_lex_state = 2}, + [292] = {.lex_state = 72}, + [293] = {.lex_state = 2, .external_lex_state = 3}, + [294] = {.lex_state = 2, .external_lex_state = 3}, + [295] = {.lex_state = 2, .external_lex_state = 3}, + [296] = {.lex_state = 2, .external_lex_state = 3}, + [297] = {.lex_state = 2, .external_lex_state = 3}, + [298] = {.lex_state = 2, .external_lex_state = 3}, + [299] = {.lex_state = 72}, + [300] = {.lex_state = 3, .external_lex_state = 3}, [301] = {.lex_state = 72}, - [302] = {.lex_state = 2, .external_lex_state = 2}, - [303] = {.lex_state = 72}, + [302] = {.lex_state = 2, .external_lex_state = 3}, + [303] = {.lex_state = 3, .external_lex_state = 3}, [304] = {.lex_state = 72}, [305] = {.lex_state = 72}, [306] = {.lex_state = 72}, @@ -6931,46 +6930,46 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [909] = {.lex_state = 72}, [910] = {.lex_state = 72}, [911] = {.lex_state = 72}, - [912] = {.lex_state = 2, .external_lex_state = 2}, - [913] = {.lex_state = 2, .external_lex_state = 2}, - [914] = {.lex_state = 2, .external_lex_state = 2}, - [915] = {.lex_state = 2, .external_lex_state = 2}, - [916] = {.lex_state = 2, .external_lex_state = 2}, - [917] = {.lex_state = 2, .external_lex_state = 2}, - [918] = {.lex_state = 2, .external_lex_state = 2}, - [919] = {.lex_state = 2, .external_lex_state = 2}, - [920] = {.lex_state = 2, .external_lex_state = 2}, - [921] = {.lex_state = 2, .external_lex_state = 2}, - [922] = {.lex_state = 2, .external_lex_state = 2}, - [923] = {.lex_state = 2, .external_lex_state = 2}, - [924] = {.lex_state = 2, .external_lex_state = 2}, - [925] = {.lex_state = 2, .external_lex_state = 2}, - [926] = {.lex_state = 2, .external_lex_state = 2}, - [927] = {.lex_state = 2, .external_lex_state = 2}, - [928] = {.lex_state = 2, .external_lex_state = 2}, - [929] = {.lex_state = 2, .external_lex_state = 2}, - [930] = {.lex_state = 72}, - [931] = {.lex_state = 2, .external_lex_state = 2}, - [932] = {.lex_state = 2, .external_lex_state = 2}, - [933] = {.lex_state = 72}, - [934] = {.lex_state = 72}, - [935] = {.lex_state = 2, .external_lex_state = 2}, - [936] = {.lex_state = 2, .external_lex_state = 2}, - [937] = {.lex_state = 2, .external_lex_state = 2}, - [938] = {.lex_state = 2, .external_lex_state = 2}, - [939] = {.lex_state = 2, .external_lex_state = 2}, - [940] = {.lex_state = 2, .external_lex_state = 2}, - [941] = {.lex_state = 72}, - [942] = {.lex_state = 2, .external_lex_state = 2}, - [943] = {.lex_state = 72}, - [944] = {.lex_state = 2, .external_lex_state = 2}, - [945] = {.lex_state = 2, .external_lex_state = 2}, - [946] = {.lex_state = 2, .external_lex_state = 2}, - [947] = {.lex_state = 72}, - [948] = {.lex_state = 72}, - [949] = {.lex_state = 2, .external_lex_state = 2}, - [950] = {.lex_state = 2, .external_lex_state = 2}, - [951] = {.lex_state = 11}, + [912] = {.lex_state = 72}, + [913] = {.lex_state = 2, .external_lex_state = 3}, + [914] = {.lex_state = 2, .external_lex_state = 3}, + [915] = {.lex_state = 2, .external_lex_state = 3}, + [916] = {.lex_state = 2, .external_lex_state = 3}, + [917] = {.lex_state = 2, .external_lex_state = 3}, + [918] = {.lex_state = 2, .external_lex_state = 3}, + [919] = {.lex_state = 2, .external_lex_state = 3}, + [920] = {.lex_state = 2, .external_lex_state = 3}, + [921] = {.lex_state = 2, .external_lex_state = 3}, + [922] = {.lex_state = 2, .external_lex_state = 3}, + [923] = {.lex_state = 2, .external_lex_state = 3}, + [924] = {.lex_state = 2, .external_lex_state = 3}, + [925] = {.lex_state = 72}, + [926] = {.lex_state = 72}, + [927] = {.lex_state = 72}, + [928] = {.lex_state = 72}, + [929] = {.lex_state = 2, .external_lex_state = 3}, + [930] = {.lex_state = 2, .external_lex_state = 3}, + [931] = {.lex_state = 2, .external_lex_state = 3}, + [932] = {.lex_state = 2, .external_lex_state = 3}, + [933] = {.lex_state = 2, .external_lex_state = 3}, + [934] = {.lex_state = 2, .external_lex_state = 3}, + [935] = {.lex_state = 72}, + [936] = {.lex_state = 2, .external_lex_state = 3}, + [937] = {.lex_state = 72}, + [938] = {.lex_state = 2, .external_lex_state = 3}, + [939] = {.lex_state = 2, .external_lex_state = 3}, + [940] = {.lex_state = 72}, + [941] = {.lex_state = 2, .external_lex_state = 3}, + [942] = {.lex_state = 2, .external_lex_state = 3}, + [943] = {.lex_state = 2, .external_lex_state = 3}, + [944] = {.lex_state = 2, .external_lex_state = 3}, + [945] = {.lex_state = 2, .external_lex_state = 3}, + [946] = {.lex_state = 2, .external_lex_state = 3}, + [947] = {.lex_state = 2, .external_lex_state = 3}, + [948] = {.lex_state = 2, .external_lex_state = 3}, + [949] = {.lex_state = 2, .external_lex_state = 3}, + [950] = {.lex_state = 2, .external_lex_state = 3}, + [951] = {.lex_state = 2, .external_lex_state = 3}, [952] = {.lex_state = 11}, [953] = {.lex_state = 11}, [954] = {.lex_state = 11}, @@ -6981,115 +6980,115 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [959] = {.lex_state = 11}, [960] = {.lex_state = 11}, [961] = {.lex_state = 11}, - [962] = {.lex_state = 2, .external_lex_state = 2}, - [963] = {.lex_state = 3, .external_lex_state = 3}, - [964] = {.lex_state = 3, .external_lex_state = 3}, - [965] = {.lex_state = 2, .external_lex_state = 2}, - [966] = {.lex_state = 2, .external_lex_state = 2}, - [967] = {.lex_state = 3, .external_lex_state = 2}, - [968] = {.lex_state = 3, .external_lex_state = 3}, - [969] = {.lex_state = 2, .external_lex_state = 2}, - [970] = {.lex_state = 2, .external_lex_state = 2}, - [971] = {.lex_state = 2, .external_lex_state = 2}, - [972] = {.lex_state = 2, .external_lex_state = 2}, + [962] = {.lex_state = 11}, + [963] = {.lex_state = 2, .external_lex_state = 3}, + [964] = {.lex_state = 2, .external_lex_state = 3}, + [965] = {.lex_state = 3, .external_lex_state = 3}, + [966] = {.lex_state = 2, .external_lex_state = 3}, + [967] = {.lex_state = 3, .external_lex_state = 3}, + [968] = {.lex_state = 2, .external_lex_state = 3}, + [969] = {.lex_state = 2, .external_lex_state = 3}, + [970] = {.lex_state = 2, .external_lex_state = 3}, + [971] = {.lex_state = 2, .external_lex_state = 3}, + [972] = {.lex_state = 3, .external_lex_state = 2}, [973] = {.lex_state = 3, .external_lex_state = 2}, - [974] = {.lex_state = 3, .external_lex_state = 4}, - [975] = {.lex_state = 3, .external_lex_state = 4}, - [976] = {.lex_state = 3, .external_lex_state = 4}, - [977] = {.lex_state = 2, .external_lex_state = 3}, - [978] = {.lex_state = 2, .external_lex_state = 2}, - [979] = {.lex_state = 2, .external_lex_state = 3}, + [974] = {.lex_state = 3, .external_lex_state = 2}, + [975] = {.lex_state = 2, .external_lex_state = 3}, + [976] = {.lex_state = 2, .external_lex_state = 2}, + [977] = {.lex_state = 3, .external_lex_state = 4}, + [978] = {.lex_state = 3, .external_lex_state = 4}, + [979] = {.lex_state = 3, .external_lex_state = 4}, [980] = {.lex_state = 2, .external_lex_state = 2}, - [981] = {.lex_state = 3, .external_lex_state = 4}, + [981] = {.lex_state = 2, .external_lex_state = 2}, [982] = {.lex_state = 2, .external_lex_state = 3}, - [983] = {.lex_state = 3, .external_lex_state = 4}, - [984] = {.lex_state = 3, .external_lex_state = 3}, - [985] = {.lex_state = 3, .external_lex_state = 3}, - [986] = {.lex_state = 2, .external_lex_state = 2}, - [987] = {.lex_state = 2, .external_lex_state = 3}, - [988] = {.lex_state = 3, .external_lex_state = 3}, + [983] = {.lex_state = 3, .external_lex_state = 2}, + [984] = {.lex_state = 3, .external_lex_state = 4}, + [985] = {.lex_state = 3, .external_lex_state = 4}, + [986] = {.lex_state = 2, .external_lex_state = 3}, + [987] = {.lex_state = 3, .external_lex_state = 2}, + [988] = {.lex_state = 2, .external_lex_state = 2}, [989] = {.lex_state = 2, .external_lex_state = 3}, - [990] = {.lex_state = 3, .external_lex_state = 3}, + [990] = {.lex_state = 3, .external_lex_state = 2}, [991] = {.lex_state = 2, .external_lex_state = 3}, - [992] = {.lex_state = 2, .external_lex_state = 2}, - [993] = {.lex_state = 3, .external_lex_state = 3}, + [992] = {.lex_state = 3, .external_lex_state = 2}, + [993] = {.lex_state = 2, .external_lex_state = 3}, [994] = {.lex_state = 2, .external_lex_state = 2}, - [995] = {.lex_state = 2, .external_lex_state = 2}, - [996] = {.lex_state = 3, .external_lex_state = 3}, - [997] = {.lex_state = 2, .external_lex_state = 2}, - [998] = {.lex_state = 2, .external_lex_state = 2}, - [999] = {.lex_state = 2, .external_lex_state = 2}, - [1000] = {.lex_state = 2, .external_lex_state = 2}, + [995] = {.lex_state = 2, .external_lex_state = 3}, + [996] = {.lex_state = 3, .external_lex_state = 2}, + [997] = {.lex_state = 2, .external_lex_state = 3}, + [998] = {.lex_state = 2, .external_lex_state = 3}, + [999] = {.lex_state = 3, .external_lex_state = 2}, + [1000] = {.lex_state = 2, .external_lex_state = 3}, [1001] = {.lex_state = 2, .external_lex_state = 2}, [1002] = {.lex_state = 2, .external_lex_state = 3}, [1003] = {.lex_state = 2, .external_lex_state = 2}, - [1004] = {.lex_state = 2, .external_lex_state = 3}, - [1005] = {.lex_state = 3, .external_lex_state = 3}, - [1006] = {.lex_state = 3, .external_lex_state = 3}, - [1007] = {.lex_state = 2, .external_lex_state = 3}, + [1004] = {.lex_state = 2, .external_lex_state = 2}, + [1005] = {.lex_state = 11}, + [1006] = {.lex_state = 72, .external_lex_state = 5}, + [1007] = {.lex_state = 2, .external_lex_state = 2}, [1008] = {.lex_state = 2, .external_lex_state = 2}, [1009] = {.lex_state = 72, .external_lex_state = 5}, - [1010] = {.lex_state = 2, .external_lex_state = 3}, - [1011] = {.lex_state = 2, .external_lex_state = 3}, - [1012] = {.lex_state = 72, .external_lex_state = 5}, - [1013] = {.lex_state = 2, .external_lex_state = 3}, - [1014] = {.lex_state = 11}, - [1015] = {.lex_state = 2, .external_lex_state = 3}, - [1016] = {.lex_state = 72}, - [1017] = {.lex_state = 2, .external_lex_state = 3}, - [1018] = {.lex_state = 72, .external_lex_state = 5}, - [1019] = {.lex_state = 72, .external_lex_state = 5}, - [1020] = {.lex_state = 2, .external_lex_state = 3}, - [1021] = {.lex_state = 72, .external_lex_state = 5}, + [1010] = {.lex_state = 3, .external_lex_state = 2}, + [1011] = {.lex_state = 72}, + [1012] = {.lex_state = 2, .external_lex_state = 2}, + [1013] = {.lex_state = 2, .external_lex_state = 2}, + [1014] = {.lex_state = 3, .external_lex_state = 2}, + [1015] = {.lex_state = 2, .external_lex_state = 2}, + [1016] = {.lex_state = 2, .external_lex_state = 3}, + [1017] = {.lex_state = 2, .external_lex_state = 2}, + [1018] = {.lex_state = 2, .external_lex_state = 3}, + [1019] = {.lex_state = 2, .external_lex_state = 2}, + [1020] = {.lex_state = 72, .external_lex_state = 5}, + [1021] = {.lex_state = 2, .external_lex_state = 3}, [1022] = {.lex_state = 2, .external_lex_state = 3}, - [1023] = {.lex_state = 2, .external_lex_state = 3}, + [1023] = {.lex_state = 72}, [1024] = {.lex_state = 2, .external_lex_state = 2}, - [1025] = {.lex_state = 2, .external_lex_state = 3}, + [1025] = {.lex_state = 3, .external_lex_state = 2}, [1026] = {.lex_state = 2, .external_lex_state = 2}, [1027] = {.lex_state = 2, .external_lex_state = 3}, [1028] = {.lex_state = 2, .external_lex_state = 2}, - [1029] = {.lex_state = 3, .external_lex_state = 3}, - [1030] = {.lex_state = 2, .external_lex_state = 3}, - [1031] = {.lex_state = 2, .external_lex_state = 2}, - [1032] = {.lex_state = 2, .external_lex_state = 3}, - [1033] = {.lex_state = 2, .external_lex_state = 2}, - [1034] = {.lex_state = 2, .external_lex_state = 3}, - [1035] = {.lex_state = 72}, + [1029] = {.lex_state = 2, .external_lex_state = 3}, + [1030] = {.lex_state = 2, .external_lex_state = 2}, + [1031] = {.lex_state = 2, .external_lex_state = 3}, + [1032] = {.lex_state = 2, .external_lex_state = 2}, + [1033] = {.lex_state = 72}, + [1034] = {.lex_state = 72, .external_lex_state = 5}, + [1035] = {.lex_state = 2, .external_lex_state = 2}, [1036] = {.lex_state = 72, .external_lex_state = 5}, - [1037] = {.lex_state = 72}, - [1038] = {.lex_state = 2, .external_lex_state = 3}, - [1039] = {.lex_state = 72, .external_lex_state = 5}, - [1040] = {.lex_state = 2, .external_lex_state = 3}, + [1037] = {.lex_state = 2, .external_lex_state = 2}, + [1038] = {.lex_state = 72, .external_lex_state = 5}, + [1039] = {.lex_state = 2, .external_lex_state = 2}, + [1040] = {.lex_state = 2, .external_lex_state = 2}, [1041] = {.lex_state = 72, .external_lex_state = 5}, - [1042] = {.lex_state = 72}, - [1043] = {.lex_state = 2, .external_lex_state = 3}, - [1044] = {.lex_state = 2, .external_lex_state = 3}, - [1045] = {.lex_state = 2, .external_lex_state = 3}, - [1046] = {.lex_state = 72}, - [1047] = {.lex_state = 2, .external_lex_state = 3}, - [1048] = {.lex_state = 2, .external_lex_state = 3}, - [1049] = {.lex_state = 2, .external_lex_state = 3}, - [1050] = {.lex_state = 72}, - [1051] = {.lex_state = 72}, + [1042] = {.lex_state = 72, .external_lex_state = 5}, + [1043] = {.lex_state = 2, .external_lex_state = 2}, + [1044] = {.lex_state = 72}, + [1045] = {.lex_state = 2, .external_lex_state = 2}, + [1046] = {.lex_state = 2, .external_lex_state = 2}, + [1047] = {.lex_state = 2, .external_lex_state = 2}, + [1048] = {.lex_state = 2, .external_lex_state = 2}, + [1049] = {.lex_state = 72}, + [1050] = {.lex_state = 2, .external_lex_state = 2}, + [1051] = {.lex_state = 72, .external_lex_state = 5}, [1052] = {.lex_state = 72, .external_lex_state = 5}, [1053] = {.lex_state = 72}, [1054] = {.lex_state = 72}, [1055] = {.lex_state = 72, .external_lex_state = 5}, [1056] = {.lex_state = 72}, - [1057] = {.lex_state = 72}, + [1057] = {.lex_state = 72, .external_lex_state = 5}, [1058] = {.lex_state = 72, .external_lex_state = 5}, - [1059] = {.lex_state = 72}, + [1059] = {.lex_state = 72, .external_lex_state = 5}, [1060] = {.lex_state = 72, .external_lex_state = 5}, [1061] = {.lex_state = 72, .external_lex_state = 5}, - [1062] = {.lex_state = 72, .external_lex_state = 5}, + [1062] = {.lex_state = 72}, [1063] = {.lex_state = 72, .external_lex_state = 5}, [1064] = {.lex_state = 72, .external_lex_state = 5}, - [1065] = {.lex_state = 72, .external_lex_state = 5}, + [1065] = {.lex_state = 72}, [1066] = {.lex_state = 72}, - [1067] = {.lex_state = 72, .external_lex_state = 5}, - [1068] = {.lex_state = 72, .external_lex_state = 5}, + [1067] = {.lex_state = 72}, + [1068] = {.lex_state = 72}, [1069] = {.lex_state = 72, .external_lex_state = 5}, - [1070] = {.lex_state = 72}, + [1070] = {.lex_state = 72, .external_lex_state = 5}, [1071] = {.lex_state = 72}, [1072] = {.lex_state = 72}, [1073] = {.lex_state = 72}, @@ -7132,11 +7131,11 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1110] = {.lex_state = 72}, [1111] = {.lex_state = 72}, [1112] = {.lex_state = 72}, - [1113] = {.lex_state = 11}, + [1113] = {.lex_state = 72}, [1114] = {.lex_state = 72}, [1115] = {.lex_state = 72}, [1116] = {.lex_state = 72}, - [1117] = {.lex_state = 72}, + [1117] = {.lex_state = 11}, [1118] = {.lex_state = 72}, [1119] = {.lex_state = 72}, [1120] = {.lex_state = 72}, @@ -7238,32 +7237,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1216] = {.lex_state = 72}, [1217] = {.lex_state = 72}, [1218] = {.lex_state = 72}, - [1219] = {.lex_state = 3, .external_lex_state = 2}, - [1220] = {.lex_state = 2, .external_lex_state = 2}, - [1221] = {.lex_state = 2, .external_lex_state = 2}, - [1222] = {.lex_state = 11}, - [1223] = {.lex_state = 11}, - [1224] = {.lex_state = 2, .external_lex_state = 2}, - [1225] = {.lex_state = 11}, - [1226] = {.lex_state = 11}, - [1227] = {.lex_state = 2, .external_lex_state = 2}, - [1228] = {.lex_state = 2, .external_lex_state = 2}, - [1229] = {.lex_state = 2, .external_lex_state = 2}, + [1219] = {.lex_state = 72}, + [1220] = {.lex_state = 11}, + [1221] = {.lex_state = 2, .external_lex_state = 3}, + [1222] = {.lex_state = 2, .external_lex_state = 3}, + [1223] = {.lex_state = 2, .external_lex_state = 3}, + [1224] = {.lex_state = 2, .external_lex_state = 3}, + [1225] = {.lex_state = 3, .external_lex_state = 3}, + [1226] = {.lex_state = 3, .external_lex_state = 3}, + [1227] = {.lex_state = 3, .external_lex_state = 2}, + [1228] = {.lex_state = 2, .external_lex_state = 3}, + [1229] = {.lex_state = 2, .external_lex_state = 3}, [1230] = {.lex_state = 11}, - [1231] = {.lex_state = 2, .external_lex_state = 2}, - [1232] = {.lex_state = 3, .external_lex_state = 3}, - [1233] = {.lex_state = 2, .external_lex_state = 2}, - [1234] = {.lex_state = 2, .external_lex_state = 2}, - [1235] = {.lex_state = 2, .external_lex_state = 2}, - [1236] = {.lex_state = 2, .external_lex_state = 2}, - [1237] = {.lex_state = 2, .external_lex_state = 2}, - [1238] = {.lex_state = 3, .external_lex_state = 3}, - [1239] = {.lex_state = 2, .external_lex_state = 2}, - [1240] = {.lex_state = 2, .external_lex_state = 2}, + [1231] = {.lex_state = 2, .external_lex_state = 3}, + [1232] = {.lex_state = 2, .external_lex_state = 3}, + [1233] = {.lex_state = 11}, + [1234] = {.lex_state = 2, .external_lex_state = 3}, + [1235] = {.lex_state = 2, .external_lex_state = 3}, + [1236] = {.lex_state = 2, .external_lex_state = 3}, + [1237] = {.lex_state = 2, .external_lex_state = 3}, + [1238] = {.lex_state = 11}, + [1239] = {.lex_state = 2, .external_lex_state = 3}, + [1240] = {.lex_state = 3, .external_lex_state = 2}, [1241] = {.lex_state = 11}, - [1242] = {.lex_state = 11}, - [1243] = {.lex_state = 3, .external_lex_state = 2}, - [1244] = {.lex_state = 2, .external_lex_state = 3}, + [1242] = {.lex_state = 2, .external_lex_state = 3}, + [1243] = {.lex_state = 11}, + [1244] = {.lex_state = 11}, [1245] = {.lex_state = 11}, [1246] = {.lex_state = 3, .external_lex_state = 4}, [1247] = {.lex_state = 11}, @@ -7272,348 +7271,348 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1250] = {.lex_state = 11}, [1251] = {.lex_state = 11}, [1252] = {.lex_state = 11}, - [1253] = {.lex_state = 3, .external_lex_state = 4}, - [1254] = {.lex_state = 11}, - [1255] = {.lex_state = 11}, - [1256] = {.lex_state = 11}, + [1253] = {.lex_state = 11}, + [1254] = {.lex_state = 2, .external_lex_state = 2}, + [1255] = {.lex_state = 3, .external_lex_state = 4}, + [1256] = {.lex_state = 3, .external_lex_state = 4}, [1257] = {.lex_state = 11}, - [1258] = {.lex_state = 3, .external_lex_state = 4}, + [1258] = {.lex_state = 11}, [1259] = {.lex_state = 11}, - [1260] = {.lex_state = 2, .external_lex_state = 2}, + [1260] = {.lex_state = 11}, [1261] = {.lex_state = 11}, [1262] = {.lex_state = 11}, - [1263] = {.lex_state = 2, .external_lex_state = 2}, - [1264] = {.lex_state = 2, .external_lex_state = 3}, - [1265] = {.lex_state = 3, .external_lex_state = 4}, + [1263] = {.lex_state = 2, .external_lex_state = 3}, + [1264] = {.lex_state = 2, .external_lex_state = 2}, + [1265] = {.lex_state = 11}, [1266] = {.lex_state = 3, .external_lex_state = 4}, - [1267] = {.lex_state = 3, .external_lex_state = 3}, - [1268] = {.lex_state = 11}, + [1267] = {.lex_state = 2, .external_lex_state = 2}, + [1268] = {.lex_state = 3, .external_lex_state = 4}, [1269] = {.lex_state = 2, .external_lex_state = 3}, - [1270] = {.lex_state = 13}, - [1271] = {.lex_state = 3, .external_lex_state = 3}, - [1272] = {.lex_state = 13}, - [1273] = {.lex_state = 13}, + [1270] = {.lex_state = 3, .external_lex_state = 2}, + [1271] = {.lex_state = 13}, + [1272] = {.lex_state = 2, .external_lex_state = 3}, + [1273] = {.lex_state = 72}, [1274] = {.lex_state = 13}, - [1275] = {.lex_state = 2, .external_lex_state = 2}, + [1275] = {.lex_state = 2, .external_lex_state = 3}, [1276] = {.lex_state = 13}, - [1277] = {.lex_state = 72}, - [1278] = {.lex_state = 2, .external_lex_state = 2}, + [1277] = {.lex_state = 3, .external_lex_state = 2}, + [1278] = {.lex_state = 13}, [1279] = {.lex_state = 13}, [1280] = {.lex_state = 13}, - [1281] = {.lex_state = 2, .external_lex_state = 2}, - [1282] = {.lex_state = 2, .external_lex_state = 2}, - [1283] = {.lex_state = 2, .external_lex_state = 2}, - [1284] = {.lex_state = 2, .external_lex_state = 3}, + [1281] = {.lex_state = 13}, + [1282] = {.lex_state = 13}, + [1283] = {.lex_state = 13}, + [1284] = {.lex_state = 13}, [1285] = {.lex_state = 13}, - [1286] = {.lex_state = 2, .external_lex_state = 2}, + [1286] = {.lex_state = 13}, [1287] = {.lex_state = 13}, - [1288] = {.lex_state = 13}, + [1288] = {.lex_state = 72}, [1289] = {.lex_state = 13}, - [1290] = {.lex_state = 13}, - [1291] = {.lex_state = 2, .external_lex_state = 2}, - [1292] = {.lex_state = 3, .external_lex_state = 3}, - [1293] = {.lex_state = 13}, - [1294] = {.lex_state = 2, .external_lex_state = 2}, + [1290] = {.lex_state = 2, .external_lex_state = 3}, + [1291] = {.lex_state = 13}, + [1292] = {.lex_state = 13}, + [1293] = {.lex_state = 2, .external_lex_state = 2}, + [1294] = {.lex_state = 13}, [1295] = {.lex_state = 13}, - [1296] = {.lex_state = 72}, - [1297] = {.lex_state = 13}, - [1298] = {.lex_state = 2, .external_lex_state = 3}, - [1299] = {.lex_state = 3, .external_lex_state = 3}, - [1300] = {.lex_state = 13}, - [1301] = {.lex_state = 3, .external_lex_state = 3}, + [1296] = {.lex_state = 2, .external_lex_state = 3}, + [1297] = {.lex_state = 3, .external_lex_state = 2}, + [1298] = {.lex_state = 13}, + [1299] = {.lex_state = 2, .external_lex_state = 3}, + [1300] = {.lex_state = 2, .external_lex_state = 2}, + [1301] = {.lex_state = 2, .external_lex_state = 3}, [1302] = {.lex_state = 2, .external_lex_state = 2}, - [1303] = {.lex_state = 13}, - [1304] = {.lex_state = 13}, - [1305] = {.lex_state = 2, .external_lex_state = 3}, - [1306] = {.lex_state = 3, .external_lex_state = 3}, - [1307] = {.lex_state = 13}, - [1308] = {.lex_state = 13}, - [1309] = {.lex_state = 72}, - [1310] = {.lex_state = 2, .external_lex_state = 2}, - [1311] = {.lex_state = 2, .external_lex_state = 2}, - [1312] = {.lex_state = 3, .external_lex_state = 3}, - [1313] = {.lex_state = 3, .external_lex_state = 3}, - [1314] = {.lex_state = 2, .external_lex_state = 3}, + [1303] = {.lex_state = 3, .external_lex_state = 2}, + [1304] = {.lex_state = 2, .external_lex_state = 3}, + [1305] = {.lex_state = 72}, + [1306] = {.lex_state = 2, .external_lex_state = 3}, + [1307] = {.lex_state = 3, .external_lex_state = 2}, + [1308] = {.lex_state = 2, .external_lex_state = 3}, + [1309] = {.lex_state = 13}, + [1310] = {.lex_state = 2, .external_lex_state = 3}, + [1311] = {.lex_state = 2, .external_lex_state = 3}, + [1312] = {.lex_state = 3, .external_lex_state = 2}, + [1313] = {.lex_state = 2, .external_lex_state = 2}, + [1314] = {.lex_state = 3, .external_lex_state = 2}, [1315] = {.lex_state = 2, .external_lex_state = 3}, - [1316] = {.lex_state = 2, .external_lex_state = 3}, - [1317] = {.lex_state = 2, .external_lex_state = 3}, - [1318] = {.lex_state = 3, .external_lex_state = 3}, - [1319] = {.lex_state = 3, .external_lex_state = 3}, - [1320] = {.lex_state = 3, .external_lex_state = 3}, - [1321] = {.lex_state = 3, .external_lex_state = 3}, + [1316] = {.lex_state = 3, .external_lex_state = 2}, + [1317] = {.lex_state = 3, .external_lex_state = 2}, + [1318] = {.lex_state = 2, .external_lex_state = 2}, + [1319] = {.lex_state = 3, .external_lex_state = 2}, + [1320] = {.lex_state = 2, .external_lex_state = 2}, + [1321] = {.lex_state = 3, .external_lex_state = 2}, [1322] = {.lex_state = 2, .external_lex_state = 2}, - [1323] = {.lex_state = 3, .external_lex_state = 3}, - [1324] = {.lex_state = 3, .external_lex_state = 3}, - [1325] = {.lex_state = 2, .external_lex_state = 3}, - [1326] = {.lex_state = 2, .external_lex_state = 3}, - [1327] = {.lex_state = 2, .external_lex_state = 3}, - [1328] = {.lex_state = 3, .external_lex_state = 3}, - [1329] = {.lex_state = 2, .external_lex_state = 3}, - [1330] = {.lex_state = 2, .external_lex_state = 2}, + [1323] = {.lex_state = 2, .external_lex_state = 2}, + [1324] = {.lex_state = 3, .external_lex_state = 2}, + [1325] = {.lex_state = 3, .external_lex_state = 2}, + [1326] = {.lex_state = 2, .external_lex_state = 2}, + [1327] = {.lex_state = 3, .external_lex_state = 2}, + [1328] = {.lex_state = 2, .external_lex_state = 2}, + [1329] = {.lex_state = 3, .external_lex_state = 2}, + [1330] = {.lex_state = 2, .external_lex_state = 3}, [1331] = {.lex_state = 2, .external_lex_state = 2}, - [1332] = {.lex_state = 11}, - [1333] = {.lex_state = 2, .external_lex_state = 3}, - [1334] = {.lex_state = 2, .external_lex_state = 2}, - [1335] = {.lex_state = 2, .external_lex_state = 2}, - [1336] = {.lex_state = 3, .external_lex_state = 2}, - [1337] = {.lex_state = 3, .external_lex_state = 2}, + [1332] = {.lex_state = 3, .external_lex_state = 3}, + [1333] = {.lex_state = 3, .external_lex_state = 2}, + [1334] = {.lex_state = 11}, + [1335] = {.lex_state = 2, .external_lex_state = 3}, + [1336] = {.lex_state = 3, .external_lex_state = 3}, + [1337] = {.lex_state = 2, .external_lex_state = 3}, [1338] = {.lex_state = 2, .external_lex_state = 2}, [1339] = {.lex_state = 2, .external_lex_state = 2}, [1340] = {.lex_state = 2, .external_lex_state = 3}, - [1341] = {.lex_state = 3, .external_lex_state = 3}, - [1342] = {.lex_state = 2, .external_lex_state = 3}, + [1341] = {.lex_state = 3, .external_lex_state = 2}, + [1342] = {.lex_state = 2, .external_lex_state = 2}, [1343] = {.lex_state = 2, .external_lex_state = 2}, - [1344] = {.lex_state = 2, .external_lex_state = 3}, - [1345] = {.lex_state = 3, .external_lex_state = 3}, - [1346] = {.lex_state = 2, .external_lex_state = 2}, + [1344] = {.lex_state = 2, .external_lex_state = 2}, + [1345] = {.lex_state = 2, .external_lex_state = 3}, + [1346] = {.lex_state = 3, .external_lex_state = 3}, [1347] = {.lex_state = 2, .external_lex_state = 2}, - [1348] = {.lex_state = 3, .external_lex_state = 2}, - [1349] = {.lex_state = 2, .external_lex_state = 2}, + [1348] = {.lex_state = 2, .external_lex_state = 3}, + [1349] = {.lex_state = 2, .external_lex_state = 3}, [1350] = {.lex_state = 3, .external_lex_state = 2}, - [1351] = {.lex_state = 2, .external_lex_state = 3}, - [1352] = {.lex_state = 2, .external_lex_state = 3}, + [1351] = {.lex_state = 2, .external_lex_state = 2}, + [1352] = {.lex_state = 2, .external_lex_state = 2}, [1353] = {.lex_state = 2, .external_lex_state = 2}, [1354] = {.lex_state = 2, .external_lex_state = 3}, [1355] = {.lex_state = 2, .external_lex_state = 3}, [1356] = {.lex_state = 2, .external_lex_state = 3}, - [1357] = {.lex_state = 2, .external_lex_state = 2}, - [1358] = {.lex_state = 3, .external_lex_state = 3}, - [1359] = {.lex_state = 3, .external_lex_state = 3}, + [1357] = {.lex_state = 2, .external_lex_state = 3}, + [1358] = {.lex_state = 2, .external_lex_state = 2}, + [1359] = {.lex_state = 3, .external_lex_state = 2}, [1360] = {.lex_state = 2, .external_lex_state = 3}, - [1361] = {.lex_state = 2, .external_lex_state = 2}, - [1362] = {.lex_state = 3, .external_lex_state = 2}, - [1363] = {.lex_state = 2, .external_lex_state = 2}, - [1364] = {.lex_state = 11}, - [1365] = {.lex_state = 3, .external_lex_state = 3}, + [1361] = {.lex_state = 3, .external_lex_state = 3}, + [1362] = {.lex_state = 2, .external_lex_state = 3}, + [1363] = {.lex_state = 2, .external_lex_state = 3}, + [1364] = {.lex_state = 3, .external_lex_state = 2}, + [1365] = {.lex_state = 11}, [1366] = {.lex_state = 3, .external_lex_state = 2}, - [1367] = {.lex_state = 2, .external_lex_state = 3}, + [1367] = {.lex_state = 3, .external_lex_state = 3}, [1368] = {.lex_state = 3, .external_lex_state = 2}, - [1369] = {.lex_state = 3, .external_lex_state = 4}, + [1369] = {.lex_state = 2, .external_lex_state = 2}, [1370] = {.lex_state = 2, .external_lex_state = 2}, - [1371] = {.lex_state = 3, .external_lex_state = 4}, - [1372] = {.lex_state = 2, .external_lex_state = 2}, - [1373] = {.lex_state = 3, .external_lex_state = 4}, - [1374] = {.lex_state = 2, .external_lex_state = 2}, - [1375] = {.lex_state = 3, .external_lex_state = 3}, - [1376] = {.lex_state = 3, .external_lex_state = 2}, + [1371] = {.lex_state = 2, .external_lex_state = 3}, + [1372] = {.lex_state = 2, .external_lex_state = 3}, + [1373] = {.lex_state = 2, .external_lex_state = 2}, + [1374] = {.lex_state = 2, .external_lex_state = 3}, + [1375] = {.lex_state = 2, .external_lex_state = 2}, + [1376] = {.lex_state = 3, .external_lex_state = 4}, [1377] = {.lex_state = 2, .external_lex_state = 3}, - [1378] = {.lex_state = 2, .external_lex_state = 2}, - [1379] = {.lex_state = 11}, + [1378] = {.lex_state = 3, .external_lex_state = 4}, + [1379] = {.lex_state = 2, .external_lex_state = 2}, [1380] = {.lex_state = 2, .external_lex_state = 2}, [1381] = {.lex_state = 3, .external_lex_state = 3}, - [1382] = {.lex_state = 3, .external_lex_state = 3}, - [1383] = {.lex_state = 2, .external_lex_state = 3}, - [1384] = {.lex_state = 3, .external_lex_state = 2}, - [1385] = {.lex_state = 2, .external_lex_state = 2}, - [1386] = {.lex_state = 3, .external_lex_state = 2}, - [1387] = {.lex_state = 3, .external_lex_state = 4}, - [1388] = {.lex_state = 11}, + [1382] = {.lex_state = 2, .external_lex_state = 3}, + [1383] = {.lex_state = 3, .external_lex_state = 3}, + [1384] = {.lex_state = 2, .external_lex_state = 3}, + [1385] = {.lex_state = 3, .external_lex_state = 3}, + [1386] = {.lex_state = 3, .external_lex_state = 3}, + [1387] = {.lex_state = 3, .external_lex_state = 3}, + [1388] = {.lex_state = 3, .external_lex_state = 3}, [1389] = {.lex_state = 3, .external_lex_state = 3}, - [1390] = {.lex_state = 3, .external_lex_state = 4}, - [1391] = {.lex_state = 2, .external_lex_state = 2}, + [1390] = {.lex_state = 2, .external_lex_state = 3}, + [1391] = {.lex_state = 11}, [1392] = {.lex_state = 2, .external_lex_state = 3}, - [1393] = {.lex_state = 2, .external_lex_state = 3}, - [1394] = {.lex_state = 3, .external_lex_state = 2}, - [1395] = {.lex_state = 3, .external_lex_state = 2}, - [1396] = {.lex_state = 2, .external_lex_state = 2}, + [1393] = {.lex_state = 3, .external_lex_state = 4}, + [1394] = {.lex_state = 3, .external_lex_state = 4}, + [1395] = {.lex_state = 11}, + [1396] = {.lex_state = 3, .external_lex_state = 3}, [1397] = {.lex_state = 2, .external_lex_state = 3}, - [1398] = {.lex_state = 3, .external_lex_state = 2}, - [1399] = {.lex_state = 3, .external_lex_state = 2}, - [1400] = {.lex_state = 2, .external_lex_state = 2}, - [1401] = {.lex_state = 2, .external_lex_state = 2}, + [1398] = {.lex_state = 2, .external_lex_state = 3}, + [1399] = {.lex_state = 2, .external_lex_state = 3}, + [1400] = {.lex_state = 3, .external_lex_state = 4}, + [1401] = {.lex_state = 2, .external_lex_state = 3}, [1402] = {.lex_state = 3, .external_lex_state = 2}, [1403] = {.lex_state = 2, .external_lex_state = 3}, - [1404] = {.lex_state = 3, .external_lex_state = 2}, - [1405] = {.lex_state = 2, .external_lex_state = 2}, + [1404] = {.lex_state = 2, .external_lex_state = 2}, + [1405] = {.lex_state = 2, .external_lex_state = 3}, [1406] = {.lex_state = 2, .external_lex_state = 3}, - [1407] = {.lex_state = 2, .external_lex_state = 2}, - [1408] = {.lex_state = 2, .external_lex_state = 2}, + [1407] = {.lex_state = 3, .external_lex_state = 2}, + [1408] = {.lex_state = 3, .external_lex_state = 3}, [1409] = {.lex_state = 2, .external_lex_state = 2}, - [1410] = {.lex_state = 2, .external_lex_state = 2}, - [1411] = {.lex_state = 2, .external_lex_state = 3}, - [1412] = {.lex_state = 13}, - [1413] = {.lex_state = 3, .external_lex_state = 4}, - [1414] = {.lex_state = 3, .external_lex_state = 4}, - [1415] = {.lex_state = 11}, + [1410] = {.lex_state = 3, .external_lex_state = 3}, + [1411] = {.lex_state = 3, .external_lex_state = 3}, + [1412] = {.lex_state = 11}, + [1413] = {.lex_state = 11}, + [1414] = {.lex_state = 2, .external_lex_state = 3}, + [1415] = {.lex_state = 2, .external_lex_state = 2}, [1416] = {.lex_state = 11}, [1417] = {.lex_state = 3, .external_lex_state = 4}, - [1418] = {.lex_state = 3, .external_lex_state = 4}, + [1418] = {.lex_state = 2, .external_lex_state = 2}, [1419] = {.lex_state = 13}, - [1420] = {.lex_state = 11}, - [1421] = {.lex_state = 11}, - [1422] = {.lex_state = 13}, - [1423] = {.lex_state = 3, .external_lex_state = 4}, - [1424] = {.lex_state = 2, .external_lex_state = 2}, - [1425] = {.lex_state = 11}, - [1426] = {.lex_state = 11}, + [1420] = {.lex_state = 3, .external_lex_state = 2}, + [1421] = {.lex_state = 2, .external_lex_state = 3}, + [1422] = {.lex_state = 11}, + [1423] = {.lex_state = 11}, + [1424] = {.lex_state = 13}, + [1425] = {.lex_state = 3, .external_lex_state = 4}, + [1426] = {.lex_state = 13}, [1427] = {.lex_state = 11}, [1428] = {.lex_state = 11}, - [1429] = {.lex_state = 11}, - [1430] = {.lex_state = 11}, - [1431] = {.lex_state = 11}, + [1429] = {.lex_state = 3, .external_lex_state = 3}, + [1430] = {.lex_state = 3, .external_lex_state = 4}, + [1431] = {.lex_state = 3, .external_lex_state = 4}, [1432] = {.lex_state = 11}, - [1433] = {.lex_state = 2, .external_lex_state = 2}, - [1434] = {.lex_state = 11}, + [1433] = {.lex_state = 2, .external_lex_state = 3}, + [1434] = {.lex_state = 3, .external_lex_state = 4}, [1435] = {.lex_state = 11}, - [1436] = {.lex_state = 3, .external_lex_state = 3}, - [1437] = {.lex_state = 3, .external_lex_state = 2}, - [1438] = {.lex_state = 13}, + [1436] = {.lex_state = 3, .external_lex_state = 4}, + [1437] = {.lex_state = 13}, + [1438] = {.lex_state = 11}, [1439] = {.lex_state = 11}, - [1440] = {.lex_state = 3, .external_lex_state = 3}, - [1441] = {.lex_state = 2, .external_lex_state = 3}, - [1442] = {.lex_state = 3, .external_lex_state = 3}, - [1443] = {.lex_state = 3, .external_lex_state = 4}, - [1444] = {.lex_state = 11}, - [1445] = {.lex_state = 13}, + [1440] = {.lex_state = 3, .external_lex_state = 4}, + [1441] = {.lex_state = 11}, + [1442] = {.lex_state = 11}, + [1443] = {.lex_state = 3, .external_lex_state = 2}, + [1444] = {.lex_state = 2, .external_lex_state = 2}, + [1445] = {.lex_state = 11}, [1446] = {.lex_state = 3, .external_lex_state = 4}, - [1447] = {.lex_state = 2, .external_lex_state = 3}, + [1447] = {.lex_state = 3, .external_lex_state = 4}, [1448] = {.lex_state = 11}, - [1449] = {.lex_state = 3, .external_lex_state = 4}, - [1450] = {.lex_state = 2, .external_lex_state = 2}, - [1451] = {.lex_state = 3, .external_lex_state = 2}, - [1452] = {.lex_state = 3, .external_lex_state = 3}, - [1453] = {.lex_state = 3, .external_lex_state = 4}, - [1454] = {.lex_state = 13}, + [1449] = {.lex_state = 11}, + [1450] = {.lex_state = 11}, + [1451] = {.lex_state = 3, .external_lex_state = 3}, + [1452] = {.lex_state = 3, .external_lex_state = 2}, + [1453] = {.lex_state = 13}, + [1454] = {.lex_state = 2, .external_lex_state = 3}, [1455] = {.lex_state = 11}, - [1456] = {.lex_state = 2, .external_lex_state = 2}, - [1457] = {.lex_state = 11}, + [1456] = {.lex_state = 3, .external_lex_state = 2}, + [1457] = {.lex_state = 13}, [1458] = {.lex_state = 11}, [1459] = {.lex_state = 11}, - [1460] = {.lex_state = 11}, + [1460] = {.lex_state = 3, .external_lex_state = 4}, [1461] = {.lex_state = 11}, - [1462] = {.lex_state = 3, .external_lex_state = 3}, - [1463] = {.lex_state = 11}, - [1464] = {.lex_state = 3, .external_lex_state = 4}, - [1465] = {.lex_state = 2, .external_lex_state = 2}, - [1466] = {.lex_state = 2, .external_lex_state = 2}, - [1467] = {.lex_state = 3, .external_lex_state = 3}, - [1468] = {.lex_state = 11}, + [1462] = {.lex_state = 2, .external_lex_state = 3}, + [1463] = {.lex_state = 3, .external_lex_state = 4}, + [1464] = {.lex_state = 11}, + [1465] = {.lex_state = 2, .external_lex_state = 3}, + [1466] = {.lex_state = 2, .external_lex_state = 3}, + [1467] = {.lex_state = 11}, + [1468] = {.lex_state = 3, .external_lex_state = 4}, [1469] = {.lex_state = 11}, [1470] = {.lex_state = 11}, [1471] = {.lex_state = 11}, - [1472] = {.lex_state = 11}, - [1473] = {.lex_state = 11}, - [1474] = {.lex_state = 11}, - [1475] = {.lex_state = 2, .external_lex_state = 3}, + [1472] = {.lex_state = 3, .external_lex_state = 4}, + [1473] = {.lex_state = 3, .external_lex_state = 4}, + [1474] = {.lex_state = 3, .external_lex_state = 2}, + [1475] = {.lex_state = 3, .external_lex_state = 2}, [1476] = {.lex_state = 11}, [1477] = {.lex_state = 11}, [1478] = {.lex_state = 11}, - [1479] = {.lex_state = 3, .external_lex_state = 3}, - [1480] = {.lex_state = 2, .external_lex_state = 3}, + [1479] = {.lex_state = 3, .external_lex_state = 4}, + [1480] = {.lex_state = 3, .external_lex_state = 2}, [1481] = {.lex_state = 11}, - [1482] = {.lex_state = 3, .external_lex_state = 3}, + [1482] = {.lex_state = 11}, [1483] = {.lex_state = 2, .external_lex_state = 2}, - [1484] = {.lex_state = 3, .external_lex_state = 3}, + [1484] = {.lex_state = 11}, [1485] = {.lex_state = 11}, - [1486] = {.lex_state = 2, .external_lex_state = 3}, - [1487] = {.lex_state = 3, .external_lex_state = 4}, + [1486] = {.lex_state = 11}, + [1487] = {.lex_state = 2, .external_lex_state = 3}, [1488] = {.lex_state = 11}, [1489] = {.lex_state = 11}, - [1490] = {.lex_state = 3, .external_lex_state = 3}, - [1491] = {.lex_state = 2, .external_lex_state = 3}, - [1492] = {.lex_state = 11}, - [1493] = {.lex_state = 2, .external_lex_state = 2}, + [1490] = {.lex_state = 11}, + [1491] = {.lex_state = 3, .external_lex_state = 4}, + [1492] = {.lex_state = 3, .external_lex_state = 4}, + [1493] = {.lex_state = 11}, [1494] = {.lex_state = 11}, - [1495] = {.lex_state = 3, .external_lex_state = 4}, - [1496] = {.lex_state = 11}, + [1495] = {.lex_state = 2, .external_lex_state = 2}, + [1496] = {.lex_state = 3, .external_lex_state = 4}, [1497] = {.lex_state = 11}, - [1498] = {.lex_state = 2, .external_lex_state = 3}, + [1498] = {.lex_state = 11}, [1499] = {.lex_state = 11}, [1500] = {.lex_state = 11}, - [1501] = {.lex_state = 2, .external_lex_state = 2}, - [1502] = {.lex_state = 3, .external_lex_state = 3}, - [1503] = {.lex_state = 11}, - [1504] = {.lex_state = 2, .external_lex_state = 3}, - [1505] = {.lex_state = 2, .external_lex_state = 3}, + [1501] = {.lex_state = 11}, + [1502] = {.lex_state = 11}, + [1503] = {.lex_state = 2, .external_lex_state = 2}, + [1504] = {.lex_state = 11}, + [1505] = {.lex_state = 11}, [1506] = {.lex_state = 11}, - [1507] = {.lex_state = 3, .external_lex_state = 4}, + [1507] = {.lex_state = 11}, [1508] = {.lex_state = 2, .external_lex_state = 2}, [1509] = {.lex_state = 11}, [1510] = {.lex_state = 11}, - [1511] = {.lex_state = 2, .external_lex_state = 3}, + [1511] = {.lex_state = 11}, [1512] = {.lex_state = 2, .external_lex_state = 2}, - [1513] = {.lex_state = 11}, + [1513] = {.lex_state = 3, .external_lex_state = 4}, [1514] = {.lex_state = 11}, [1515] = {.lex_state = 11}, - [1516] = {.lex_state = 11}, + [1516] = {.lex_state = 3, .external_lex_state = 4}, [1517] = {.lex_state = 11}, [1518] = {.lex_state = 11}, - [1519] = {.lex_state = 3, .external_lex_state = 4}, + [1519] = {.lex_state = 2, .external_lex_state = 3}, [1520] = {.lex_state = 11}, - [1521] = {.lex_state = 2, .external_lex_state = 3}, + [1521] = {.lex_state = 2, .external_lex_state = 2}, [1522] = {.lex_state = 11}, [1523] = {.lex_state = 11}, [1524] = {.lex_state = 11}, - [1525] = {.lex_state = 2, .external_lex_state = 2}, - [1526] = {.lex_state = 11}, - [1527] = {.lex_state = 3, .external_lex_state = 4}, + [1525] = {.lex_state = 3, .external_lex_state = 4}, + [1526] = {.lex_state = 2, .external_lex_state = 2}, + [1527] = {.lex_state = 11}, [1528] = {.lex_state = 11}, [1529] = {.lex_state = 11}, [1530] = {.lex_state = 11}, [1531] = {.lex_state = 11}, - [1532] = {.lex_state = 3, .external_lex_state = 4}, + [1532] = {.lex_state = 11}, [1533] = {.lex_state = 11}, - [1534] = {.lex_state = 11}, + [1534] = {.lex_state = 2, .external_lex_state = 2}, [1535] = {.lex_state = 11}, - [1536] = {.lex_state = 2, .external_lex_state = 2}, - [1537] = {.lex_state = 11}, + [1536] = {.lex_state = 11}, + [1537] = {.lex_state = 3, .external_lex_state = 2}, [1538] = {.lex_state = 11}, - [1539] = {.lex_state = 3, .external_lex_state = 4}, + [1539] = {.lex_state = 11}, [1540] = {.lex_state = 11}, - [1541] = {.lex_state = 11}, + [1541] = {.lex_state = 2, .external_lex_state = 3}, [1542] = {.lex_state = 11}, - [1543] = {.lex_state = 3, .external_lex_state = 4}, - [1544] = {.lex_state = 11}, + [1543] = {.lex_state = 2, .external_lex_state = 3}, + [1544] = {.lex_state = 3, .external_lex_state = 2}, [1545] = {.lex_state = 2, .external_lex_state = 3}, - [1546] = {.lex_state = 11}, - [1547] = {.lex_state = 11}, - [1548] = {.lex_state = 3, .external_lex_state = 3}, - [1549] = {.lex_state = 11}, - [1550] = {.lex_state = 3, .external_lex_state = 3}, - [1551] = {.lex_state = 3, .external_lex_state = 4}, - [1552] = {.lex_state = 11}, + [1546] = {.lex_state = 2, .external_lex_state = 3}, + [1547] = {.lex_state = 2, .external_lex_state = 3}, + [1548] = {.lex_state = 3, .external_lex_state = 2}, + [1549] = {.lex_state = 2, .external_lex_state = 2}, + [1550] = {.lex_state = 2, .external_lex_state = 3}, + [1551] = {.lex_state = 3, .external_lex_state = 2}, + [1552] = {.lex_state = 2, .external_lex_state = 2}, [1553] = {.lex_state = 11}, - [1554] = {.lex_state = 2, .external_lex_state = 3}, + [1554] = {.lex_state = 11}, [1555] = {.lex_state = 11}, [1556] = {.lex_state = 11}, [1557] = {.lex_state = 11}, - [1558] = {.lex_state = 11}, - [1559] = {.lex_state = 3, .external_lex_state = 4}, - [1560] = {.lex_state = 2, .external_lex_state = 3}, - [1561] = {.lex_state = 3, .external_lex_state = 4}, + [1558] = {.lex_state = 3, .external_lex_state = 2}, + [1559] = {.lex_state = 2, .external_lex_state = 2}, + [1560] = {.lex_state = 3, .external_lex_state = 2}, + [1561] = {.lex_state = 11}, [1562] = {.lex_state = 11}, - [1563] = {.lex_state = 2, .external_lex_state = 2}, - [1564] = {.lex_state = 11}, - [1565] = {.lex_state = 2, .external_lex_state = 2}, + [1563] = {.lex_state = 11}, + [1564] = {.lex_state = 2, .external_lex_state = 2}, + [1565] = {.lex_state = 11}, [1566] = {.lex_state = 11}, [1567] = {.lex_state = 11}, - [1568] = {.lex_state = 11}, + [1568] = {.lex_state = 3, .external_lex_state = 4}, [1569] = {.lex_state = 11}, [1570] = {.lex_state = 11}, - [1571] = {.lex_state = 3, .external_lex_state = 4}, + [1571] = {.lex_state = 11}, [1572] = {.lex_state = 11}, [1573] = {.lex_state = 11}, - [1574] = {.lex_state = 2, .external_lex_state = 2}, - [1575] = {.lex_state = 3, .external_lex_state = 3}, + [1574] = {.lex_state = 11}, + [1575] = {.lex_state = 11}, [1576] = {.lex_state = 11}, [1577] = {.lex_state = 2, .external_lex_state = 3}, - [1578] = {.lex_state = 2, .external_lex_state = 2}, - [1579] = {.lex_state = 11}, + [1578] = {.lex_state = 2, .external_lex_state = 3}, + [1579] = {.lex_state = 3, .external_lex_state = 4}, [1580] = {.lex_state = 11}, - [1581] = {.lex_state = 3, .external_lex_state = 4}, + [1581] = {.lex_state = 11}, [1582] = {.lex_state = 11}, [1583] = {.lex_state = 11}, [1584] = {.lex_state = 11}, [1585] = {.lex_state = 11}, [1586] = {.lex_state = 11}, - [1587] = {.lex_state = 2, .external_lex_state = 2}, - [1588] = {.lex_state = 2, .external_lex_state = 2}, + [1587] = {.lex_state = 11}, + [1588] = {.lex_state = 11}, [1589] = {.lex_state = 11}, [1590] = {.lex_state = 11}, [1591] = {.lex_state = 11}, [1592] = {.lex_state = 11}, - [1593] = {.lex_state = 2, .external_lex_state = 2}, - [1594] = {.lex_state = 11}, + [1593] = {.lex_state = 11}, + [1594] = {.lex_state = 2, .external_lex_state = 3}, [1595] = {.lex_state = 11}, [1596] = {.lex_state = 11}, [1597] = {.lex_state = 11}, @@ -7621,12 +7620,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1599] = {.lex_state = 11}, [1600] = {.lex_state = 11}, [1601] = {.lex_state = 11}, - [1602] = {.lex_state = 11}, + [1602] = {.lex_state = 2, .external_lex_state = 3}, [1603] = {.lex_state = 11}, - [1604] = {.lex_state = 11}, + [1604] = {.lex_state = 2, .external_lex_state = 2}, [1605] = {.lex_state = 11}, [1606] = {.lex_state = 11}, - [1607] = {.lex_state = 11}, + [1607] = {.lex_state = 2, .external_lex_state = 2}, [1608] = {.lex_state = 11}, [1609] = {.lex_state = 11}, [1610] = {.lex_state = 11}, @@ -7637,25 +7636,25 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1615] = {.lex_state = 11}, [1616] = {.lex_state = 11}, [1617] = {.lex_state = 11}, - [1618] = {.lex_state = 11}, + [1618] = {.lex_state = 2, .external_lex_state = 2}, [1619] = {.lex_state = 11}, - [1620] = {.lex_state = 11}, + [1620] = {.lex_state = 2, .external_lex_state = 3}, [1621] = {.lex_state = 11}, [1622] = {.lex_state = 11}, [1623] = {.lex_state = 11}, [1624] = {.lex_state = 11}, [1625] = {.lex_state = 11}, - [1626] = {.lex_state = 2, .external_lex_state = 2}, + [1626] = {.lex_state = 11}, [1627] = {.lex_state = 11}, [1628] = {.lex_state = 11}, [1629] = {.lex_state = 11}, - [1630] = {.lex_state = 11}, + [1630] = {.lex_state = 2, .external_lex_state = 3}, [1631] = {.lex_state = 11}, - [1632] = {.lex_state = 2, .external_lex_state = 2}, + [1632] = {.lex_state = 11}, [1633] = {.lex_state = 11}, [1634] = {.lex_state = 11}, [1635] = {.lex_state = 11}, - [1636] = {.lex_state = 2, .external_lex_state = 2}, + [1636] = {.lex_state = 11}, [1637] = {.lex_state = 11}, [1638] = {.lex_state = 11}, [1639] = {.lex_state = 11}, @@ -7664,30 +7663,30 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1642] = {.lex_state = 11}, [1643] = {.lex_state = 11}, [1644] = {.lex_state = 11}, - [1645] = {.lex_state = 3, .external_lex_state = 3}, + [1645] = {.lex_state = 11}, [1646] = {.lex_state = 11}, [1647] = {.lex_state = 11}, [1648] = {.lex_state = 11}, - [1649] = {.lex_state = 11}, + [1649] = {.lex_state = 3, .external_lex_state = 2}, [1650] = {.lex_state = 11}, - [1651] = {.lex_state = 2, .external_lex_state = 2}, + [1651] = {.lex_state = 11}, [1652] = {.lex_state = 11}, [1653] = {.lex_state = 11}, - [1654] = {.lex_state = 2, .external_lex_state = 2}, + [1654] = {.lex_state = 11}, [1655] = {.lex_state = 11}, - [1656] = {.lex_state = 11}, - [1657] = {.lex_state = 3, .external_lex_state = 3}, + [1656] = {.lex_state = 2, .external_lex_state = 2}, + [1657] = {.lex_state = 2, .external_lex_state = 2}, [1658] = {.lex_state = 11}, [1659] = {.lex_state = 11}, [1660] = {.lex_state = 11}, - [1661] = {.lex_state = 2, .external_lex_state = 3}, + [1661] = {.lex_state = 11}, [1662] = {.lex_state = 11}, - [1663] = {.lex_state = 2, .external_lex_state = 2}, - [1664] = {.lex_state = 2, .external_lex_state = 3}, + [1663] = {.lex_state = 11}, + [1664] = {.lex_state = 11}, [1665] = {.lex_state = 11}, [1666] = {.lex_state = 11}, [1667] = {.lex_state = 11}, - [1668] = {.lex_state = 11}, + [1668] = {.lex_state = 2, .external_lex_state = 3}, [1669] = {.lex_state = 11}, [1670] = {.lex_state = 11}, [1671] = {.lex_state = 11}, @@ -7697,9 +7696,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1675] = {.lex_state = 11}, [1676] = {.lex_state = 11}, [1677] = {.lex_state = 11}, - [1678] = {.lex_state = 11}, - [1679] = {.lex_state = 11}, - [1680] = {.lex_state = 3, .external_lex_state = 3}, + [1678] = {.lex_state = 3, .external_lex_state = 2}, + [1679] = {.lex_state = 2, .external_lex_state = 2}, + [1680] = {.lex_state = 11}, [1681] = {.lex_state = 11}, [1682] = {.lex_state = 11}, [1683] = {.lex_state = 2, .external_lex_state = 2}, @@ -7710,18 +7709,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1688] = {.lex_state = 11}, [1689] = {.lex_state = 11}, [1690] = {.lex_state = 11}, - [1691] = {.lex_state = 11}, + [1691] = {.lex_state = 2, .external_lex_state = 3}, [1692] = {.lex_state = 11}, [1693] = {.lex_state = 11}, [1694] = {.lex_state = 11}, [1695] = {.lex_state = 11}, - [1696] = {.lex_state = 11}, + [1696] = {.lex_state = 2, .external_lex_state = 3}, [1697] = {.lex_state = 11}, - [1698] = {.lex_state = 11}, + [1698] = {.lex_state = 2, .external_lex_state = 2}, [1699] = {.lex_state = 11}, [1700] = {.lex_state = 11}, [1701] = {.lex_state = 11}, - [1702] = {.lex_state = 11}, + [1702] = {.lex_state = 3, .external_lex_state = 2}, [1703] = {.lex_state = 11}, [1704] = {.lex_state = 11}, [1705] = {.lex_state = 11}, @@ -7729,8 +7728,8 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1707] = {.lex_state = 11}, [1708] = {.lex_state = 11}, [1709] = {.lex_state = 11}, - [1710] = {.lex_state = 11}, - [1711] = {.lex_state = 2, .external_lex_state = 2}, + [1710] = {.lex_state = 2, .external_lex_state = 3}, + [1711] = {.lex_state = 11}, [1712] = {.lex_state = 11}, [1713] = {.lex_state = 11}, [1714] = {.lex_state = 11}, @@ -7742,14 +7741,14 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1720] = {.lex_state = 11}, [1721] = {.lex_state = 11}, [1722] = {.lex_state = 11}, - [1723] = {.lex_state = 11}, + [1723] = {.lex_state = 2, .external_lex_state = 2}, [1724] = {.lex_state = 11}, [1725] = {.lex_state = 11}, [1726] = {.lex_state = 11}, [1727] = {.lex_state = 11}, - [1728] = {.lex_state = 2, .external_lex_state = 3}, + [1728] = {.lex_state = 11}, [1729] = {.lex_state = 11}, - [1730] = {.lex_state = 3, .external_lex_state = 3}, + [1730] = {.lex_state = 11}, [1731] = {.lex_state = 11}, [1732] = {.lex_state = 11}, [1733] = {.lex_state = 11}, @@ -7758,21 +7757,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1736] = {.lex_state = 11}, [1737] = {.lex_state = 11}, [1738] = {.lex_state = 11}, - [1739] = {.lex_state = 11}, + [1739] = {.lex_state = 3, .external_lex_state = 2}, [1740] = {.lex_state = 11}, [1741] = {.lex_state = 11}, [1742] = {.lex_state = 11}, [1743] = {.lex_state = 11}, [1744] = {.lex_state = 11}, - [1745] = {.lex_state = 11}, + [1745] = {.lex_state = 2, .external_lex_state = 3}, [1746] = {.lex_state = 11}, - [1747] = {.lex_state = 11}, - [1748] = {.lex_state = 11}, - [1749] = {.lex_state = 11}, + [1747] = {.lex_state = 2, .external_lex_state = 3}, + [1748] = {.lex_state = 3, .external_lex_state = 2}, + [1749] = {.lex_state = 2, .external_lex_state = 2}, [1750] = {.lex_state = 11}, [1751] = {.lex_state = 11}, - [1752] = {.lex_state = 11}, - [1753] = {.lex_state = 11}, + [1752] = {.lex_state = 2, .external_lex_state = 3}, + [1753] = {.lex_state = 2, .external_lex_state = 3}, [1754] = {.lex_state = 11}, [1755] = {.lex_state = 11}, [1756] = {.lex_state = 11}, @@ -7783,9 +7782,9 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1761] = {.lex_state = 11}, [1762] = {.lex_state = 11}, [1763] = {.lex_state = 11}, - [1764] = {.lex_state = 2, .external_lex_state = 3}, - [1765] = {.lex_state = 11}, - [1766] = {.lex_state = 2, .external_lex_state = 2}, + [1764] = {.lex_state = 11}, + [1765] = {.lex_state = 2, .external_lex_state = 2}, + [1766] = {.lex_state = 11}, [1767] = {.lex_state = 11}, [1768] = {.lex_state = 11}, [1769] = {.lex_state = 11}, @@ -7795,42 +7794,42 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1773] = {.lex_state = 11}, [1774] = {.lex_state = 11}, [1775] = {.lex_state = 11}, - [1776] = {.lex_state = 2, .external_lex_state = 3}, + [1776] = {.lex_state = 11}, [1777] = {.lex_state = 11}, - [1778] = {.lex_state = 2, .external_lex_state = 2}, - [1779] = {.lex_state = 2, .external_lex_state = 2}, + [1778] = {.lex_state = 11}, + [1779] = {.lex_state = 11}, [1780] = {.lex_state = 11}, - [1781] = {.lex_state = 11}, + [1781] = {.lex_state = 2, .external_lex_state = 3}, [1782] = {.lex_state = 11}, [1783] = {.lex_state = 11}, - [1784] = {.lex_state = 2, .external_lex_state = 2}, + [1784] = {.lex_state = 11}, [1785] = {.lex_state = 11}, - [1786] = {.lex_state = 2, .external_lex_state = 3}, + [1786] = {.lex_state = 11}, [1787] = {.lex_state = 11}, [1788] = {.lex_state = 11}, [1789] = {.lex_state = 11}, - [1790] = {.lex_state = 11}, - [1791] = {.lex_state = 11}, - [1792] = {.lex_state = 11}, - [1793] = {.lex_state = 11}, + [1790] = {.lex_state = 2, .external_lex_state = 2}, + [1791] = {.lex_state = 2, .external_lex_state = 3}, + [1792] = {.lex_state = 3, .external_lex_state = 2}, + [1793] = {.lex_state = 3, .external_lex_state = 2}, [1794] = {.lex_state = 11}, - [1795] = {.lex_state = 11}, - [1796] = {.lex_state = 11}, + [1795] = {.lex_state = 2, .external_lex_state = 2}, + [1796] = {.lex_state = 2, .external_lex_state = 3}, [1797] = {.lex_state = 11}, [1798] = {.lex_state = 11}, - [1799] = {.lex_state = 2, .external_lex_state = 3}, + [1799] = {.lex_state = 11}, [1800] = {.lex_state = 11}, [1801] = {.lex_state = 11}, - [1802] = {.lex_state = 2, .external_lex_state = 3}, + [1802] = {.lex_state = 11}, [1803] = {.lex_state = 11}, [1804] = {.lex_state = 11}, - [1805] = {.lex_state = 2, .external_lex_state = 3}, + [1805] = {.lex_state = 11}, [1806] = {.lex_state = 11}, [1807] = {.lex_state = 11}, [1808] = {.lex_state = 11}, [1809] = {.lex_state = 11}, - [1810] = {.lex_state = 3, .external_lex_state = 3}, - [1811] = {.lex_state = 11}, + [1810] = {.lex_state = 11}, + [1811] = {.lex_state = 3, .external_lex_state = 2}, [1812] = {.lex_state = 11}, [1813] = {.lex_state = 11}, [1814] = {.lex_state = 11}, @@ -7839,7 +7838,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1817] = {.lex_state = 11}, [1818] = {.lex_state = 11}, [1819] = {.lex_state = 11}, - [1820] = {.lex_state = 11}, + [1820] = {.lex_state = 2, .external_lex_state = 3}, [1821] = {.lex_state = 11}, [1822] = {.lex_state = 11}, [1823] = {.lex_state = 11}, @@ -7849,32 +7848,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1827] = {.lex_state = 11}, [1828] = {.lex_state = 11}, [1829] = {.lex_state = 11}, - [1830] = {.lex_state = 11}, + [1830] = {.lex_state = 3, .external_lex_state = 2}, [1831] = {.lex_state = 11}, [1832] = {.lex_state = 11}, [1833] = {.lex_state = 11}, [1834] = {.lex_state = 11}, - [1835] = {.lex_state = 11}, + [1835] = {.lex_state = 2, .external_lex_state = 2}, [1836] = {.lex_state = 11}, [1837] = {.lex_state = 11}, [1838] = {.lex_state = 11}, - [1839] = {.lex_state = 11}, + [1839] = {.lex_state = 2, .external_lex_state = 3}, [1840] = {.lex_state = 11}, - [1841] = {.lex_state = 11}, + [1841] = {.lex_state = 2, .external_lex_state = 3}, [1842] = {.lex_state = 11}, [1843] = {.lex_state = 11}, - [1844] = {.lex_state = 11}, - [1845] = {.lex_state = 2, .external_lex_state = 2}, + [1844] = {.lex_state = 2, .external_lex_state = 3}, + [1845] = {.lex_state = 11}, [1846] = {.lex_state = 11}, [1847] = {.lex_state = 11}, [1848] = {.lex_state = 11}, - [1849] = {.lex_state = 3, .external_lex_state = 3}, + [1849] = {.lex_state = 11}, [1850] = {.lex_state = 11}, [1851] = {.lex_state = 11}, [1852] = {.lex_state = 11}, - [1853] = {.lex_state = 3, .external_lex_state = 3}, + [1853] = {.lex_state = 11}, [1854] = {.lex_state = 11}, - [1855] = {.lex_state = 2, .external_lex_state = 2}, + [1855] = {.lex_state = 11}, [1856] = {.lex_state = 11}, [1857] = {.lex_state = 11}, [1858] = {.lex_state = 11}, @@ -7891,21 +7890,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1869] = {.lex_state = 11}, [1870] = {.lex_state = 11}, [1871] = {.lex_state = 11}, - [1872] = {.lex_state = 3, .external_lex_state = 3}, + [1872] = {.lex_state = 11}, [1873] = {.lex_state = 11}, [1874] = {.lex_state = 11}, [1875] = {.lex_state = 11}, [1876] = {.lex_state = 11}, - [1877] = {.lex_state = 2, .external_lex_state = 3}, + [1877] = {.lex_state = 11}, [1878] = {.lex_state = 11}, - [1879] = {.lex_state = 2, .external_lex_state = 2}, - [1880] = {.lex_state = 11}, - [1881] = {.lex_state = 2, .external_lex_state = 2}, + [1879] = {.lex_state = 11}, + [1880] = {.lex_state = 3, .external_lex_state = 2}, + [1881] = {.lex_state = 3, .external_lex_state = 2}, [1882] = {.lex_state = 11}, [1883] = {.lex_state = 11}, [1884] = {.lex_state = 11}, [1885] = {.lex_state = 11}, - [1886] = {.lex_state = 2, .external_lex_state = 2}, + [1886] = {.lex_state = 11}, [1887] = {.lex_state = 11}, [1888] = {.lex_state = 11}, [1889] = {.lex_state = 11}, @@ -7914,21 +7913,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1892] = {.lex_state = 11}, [1893] = {.lex_state = 2, .external_lex_state = 3}, [1894] = {.lex_state = 11}, - [1895] = {.lex_state = 11}, + [1895] = {.lex_state = 2, .external_lex_state = 3}, [1896] = {.lex_state = 11}, [1897] = {.lex_state = 11}, [1898] = {.lex_state = 11}, [1899] = {.lex_state = 11}, [1900] = {.lex_state = 11}, - [1901] = {.lex_state = 11}, + [1901] = {.lex_state = 3, .external_lex_state = 2}, [1902] = {.lex_state = 11}, [1903] = {.lex_state = 11}, [1904] = {.lex_state = 11}, [1905] = {.lex_state = 11}, [1906] = {.lex_state = 11}, [1907] = {.lex_state = 11}, - [1908] = {.lex_state = 2, .external_lex_state = 3}, - [1909] = {.lex_state = 3, .external_lex_state = 3}, + [1908] = {.lex_state = 11}, + [1909] = {.lex_state = 11}, [1910] = {.lex_state = 11}, [1911] = {.lex_state = 11}, [1912] = {.lex_state = 11}, @@ -7939,28 +7938,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1917] = {.lex_state = 11}, [1918] = {.lex_state = 11}, [1919] = {.lex_state = 11}, - [1920] = {.lex_state = 2, .external_lex_state = 3}, + [1920] = {.lex_state = 11}, [1921] = {.lex_state = 11}, - [1922] = {.lex_state = 2, .external_lex_state = 3}, - [1923] = {.lex_state = 11}, - [1924] = {.lex_state = 11}, + [1922] = {.lex_state = 11}, + [1923] = {.lex_state = 2, .external_lex_state = 2}, + [1924] = {.lex_state = 2, .external_lex_state = 3}, [1925] = {.lex_state = 11}, - [1926] = {.lex_state = 2, .external_lex_state = 2}, + [1926] = {.lex_state = 11}, [1927] = {.lex_state = 11}, [1928] = {.lex_state = 11}, [1929] = {.lex_state = 11}, - [1930] = {.lex_state = 2, .external_lex_state = 3}, + [1930] = {.lex_state = 3, .external_lex_state = 2}, [1931] = {.lex_state = 11}, [1932] = {.lex_state = 11}, [1933] = {.lex_state = 11}, [1934] = {.lex_state = 11}, - [1935] = {.lex_state = 2, .external_lex_state = 2}, + [1935] = {.lex_state = 11}, [1936] = {.lex_state = 11}, - [1937] = {.lex_state = 2, .external_lex_state = 2}, + [1937] = {.lex_state = 11}, [1938] = {.lex_state = 11}, [1939] = {.lex_state = 11}, [1940] = {.lex_state = 11}, - [1941] = {.lex_state = 11}, + [1941] = {.lex_state = 2, .external_lex_state = 2}, [1942] = {.lex_state = 11}, [1943] = {.lex_state = 11}, [1944] = {.lex_state = 11}, @@ -7969,22 +7968,22 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1947] = {.lex_state = 11}, [1948] = {.lex_state = 11}, [1949] = {.lex_state = 11}, - [1950] = {.lex_state = 3, .external_lex_state = 3}, + [1950] = {.lex_state = 11}, [1951] = {.lex_state = 11}, [1952] = {.lex_state = 11}, [1953] = {.lex_state = 11}, - [1954] = {.lex_state = 2, .external_lex_state = 3}, - [1955] = {.lex_state = 3, .external_lex_state = 3}, + [1954] = {.lex_state = 11}, + [1955] = {.lex_state = 11}, [1956] = {.lex_state = 11}, [1957] = {.lex_state = 11}, [1958] = {.lex_state = 11}, [1959] = {.lex_state = 11}, [1960] = {.lex_state = 11}, [1961] = {.lex_state = 11}, - [1962] = {.lex_state = 3, .external_lex_state = 3}, + [1962] = {.lex_state = 11}, [1963] = {.lex_state = 11}, - [1964] = {.lex_state = 11}, - [1965] = {.lex_state = 3, .external_lex_state = 3}, + [1964] = {.lex_state = 2, .external_lex_state = 3}, + [1965] = {.lex_state = 11}, [1966] = {.lex_state = 11}, [1967] = {.lex_state = 11}, [1968] = {.lex_state = 11}, @@ -7995,12 +7994,12 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1973] = {.lex_state = 11}, [1974] = {.lex_state = 11}, [1975] = {.lex_state = 11}, - [1976] = {.lex_state = 11}, + [1976] = {.lex_state = 2, .external_lex_state = 3}, [1977] = {.lex_state = 11}, [1978] = {.lex_state = 11}, - [1979] = {.lex_state = 2, .external_lex_state = 3}, + [1979] = {.lex_state = 11}, [1980] = {.lex_state = 11}, - [1981] = {.lex_state = 11}, + [1981] = {.lex_state = 2, .external_lex_state = 2}, [1982] = {.lex_state = 11}, [1983] = {.lex_state = 11}, [1984] = {.lex_state = 11}, @@ -8008,7 +8007,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1986] = {.lex_state = 11}, [1987] = {.lex_state = 11}, [1988] = {.lex_state = 11}, - [1989] = {.lex_state = 2, .external_lex_state = 3}, + [1989] = {.lex_state = 11}, [1990] = {.lex_state = 11}, [1991] = {.lex_state = 11}, [1992] = {.lex_state = 11}, @@ -8018,118 +8017,118 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1996] = {.lex_state = 11}, [1997] = {.lex_state = 11}, [1998] = {.lex_state = 11}, - [1999] = {.lex_state = 2, .external_lex_state = 2}, + [1999] = {.lex_state = 11}, [2000] = {.lex_state = 11}, [2001] = {.lex_state = 11}, [2002] = {.lex_state = 11}, - [2003] = {.lex_state = 11}, + [2003] = {.lex_state = 2, .external_lex_state = 2}, [2004] = {.lex_state = 11}, [2005] = {.lex_state = 11}, [2006] = {.lex_state = 11}, [2007] = {.lex_state = 11}, - [2008] = {.lex_state = 11}, - [2009] = {.lex_state = 13}, - [2010] = {.lex_state = 2, .external_lex_state = 3}, - [2011] = {.lex_state = 2, .external_lex_state = 3}, - [2012] = {.lex_state = 2, .external_lex_state = 3}, - [2013] = {.lex_state = 2, .external_lex_state = 3}, - [2014] = {.lex_state = 3, .external_lex_state = 3}, + [2008] = {.lex_state = 2, .external_lex_state = 3}, + [2009] = {.lex_state = 2, .external_lex_state = 2}, + [2010] = {.lex_state = 2, .external_lex_state = 2}, + [2011] = {.lex_state = 2, .external_lex_state = 2}, + [2012] = {.lex_state = 2, .external_lex_state = 2}, + [2013] = {.lex_state = 2, .external_lex_state = 2}, + [2014] = {.lex_state = 2, .external_lex_state = 2}, [2015] = {.lex_state = 2, .external_lex_state = 3}, [2016] = {.lex_state = 2, .external_lex_state = 2}, [2017] = {.lex_state = 2, .external_lex_state = 3}, - [2018] = {.lex_state = 3, .external_lex_state = 3}, - [2019] = {.lex_state = 2, .external_lex_state = 3}, - [2020] = {.lex_state = 2, .external_lex_state = 3}, - [2021] = {.lex_state = 2, .external_lex_state = 3}, - [2022] = {.lex_state = 2, .external_lex_state = 2}, - [2023] = {.lex_state = 2, .external_lex_state = 3}, - [2024] = {.lex_state = 2, .external_lex_state = 3}, - [2025] = {.lex_state = 2, .external_lex_state = 3}, - [2026] = {.lex_state = 2, .external_lex_state = 3}, - [2027] = {.lex_state = 2, .external_lex_state = 3}, - [2028] = {.lex_state = 3, .external_lex_state = 3}, - [2029] = {.lex_state = 2, .external_lex_state = 3}, - [2030] = {.lex_state = 2, .external_lex_state = 3}, - [2031] = {.lex_state = 2, .external_lex_state = 3}, + [2018] = {.lex_state = 2, .external_lex_state = 2}, + [2019] = {.lex_state = 2, .external_lex_state = 2}, + [2020] = {.lex_state = 2, .external_lex_state = 2}, + [2021] = {.lex_state = 2, .external_lex_state = 2}, + [2022] = {.lex_state = 2, .external_lex_state = 3}, + [2023] = {.lex_state = 2, .external_lex_state = 2}, + [2024] = {.lex_state = 2, .external_lex_state = 2}, + [2025] = {.lex_state = 2, .external_lex_state = 2}, + [2026] = {.lex_state = 2, .external_lex_state = 2}, + [2027] = {.lex_state = 13}, + [2028] = {.lex_state = 2, .external_lex_state = 2}, + [2029] = {.lex_state = 2, .external_lex_state = 2}, + [2030] = {.lex_state = 13}, + [2031] = {.lex_state = 2, .external_lex_state = 2}, [2032] = {.lex_state = 2, .external_lex_state = 2}, - [2033] = {.lex_state = 13}, - [2034] = {.lex_state = 2, .external_lex_state = 3}, - [2035] = {.lex_state = 2, .external_lex_state = 2}, - [2036] = {.lex_state = 2, .external_lex_state = 3}, + [2033] = {.lex_state = 2, .external_lex_state = 3}, + [2034] = {.lex_state = 3, .external_lex_state = 2}, + [2035] = {.lex_state = 2, .external_lex_state = 3}, + [2036] = {.lex_state = 2, .external_lex_state = 2}, [2037] = {.lex_state = 2, .external_lex_state = 2}, - [2038] = {.lex_state = 2, .external_lex_state = 2}, - [2039] = {.lex_state = 3, .external_lex_state = 3}, - [2040] = {.lex_state = 2, .external_lex_state = 3}, - [2041] = {.lex_state = 2, .external_lex_state = 3}, + [2038] = {.lex_state = 3, .external_lex_state = 2}, + [2039] = {.lex_state = 2, .external_lex_state = 2}, + [2040] = {.lex_state = 3, .external_lex_state = 2}, + [2041] = {.lex_state = 2, .external_lex_state = 2}, [2042] = {.lex_state = 2, .external_lex_state = 3}, - [2043] = {.lex_state = 2, .external_lex_state = 3}, + [2043] = {.lex_state = 2, .external_lex_state = 2}, [2044] = {.lex_state = 2, .external_lex_state = 3}, - [2045] = {.lex_state = 2, .external_lex_state = 3}, - [2046] = {.lex_state = 2, .external_lex_state = 2}, - [2047] = {.lex_state = 2, .external_lex_state = 3}, + [2045] = {.lex_state = 2, .external_lex_state = 2}, + [2046] = {.lex_state = 3, .external_lex_state = 2}, + [2047] = {.lex_state = 2, .external_lex_state = 2}, [2048] = {.lex_state = 2, .external_lex_state = 2}, [2049] = {.lex_state = 2, .external_lex_state = 2}, [2050] = {.lex_state = 2, .external_lex_state = 3}, - [2051] = {.lex_state = 2, .external_lex_state = 3}, - [2052] = {.lex_state = 2, .external_lex_state = 3}, + [2051] = {.lex_state = 2, .external_lex_state = 2}, + [2052] = {.lex_state = 2, .external_lex_state = 2}, [2053] = {.lex_state = 2, .external_lex_state = 2}, - [2054] = {.lex_state = 3, .external_lex_state = 3}, - [2055] = {.lex_state = 2, .external_lex_state = 3}, - [2056] = {.lex_state = 2, .external_lex_state = 3}, - [2057] = {.lex_state = 2, .external_lex_state = 3}, + [2054] = {.lex_state = 3, .external_lex_state = 2}, + [2055] = {.lex_state = 3, .external_lex_state = 2}, + [2056] = {.lex_state = 2, .external_lex_state = 2}, + [2057] = {.lex_state = 2, .external_lex_state = 2}, [2058] = {.lex_state = 2, .external_lex_state = 3}, - [2059] = {.lex_state = 2, .external_lex_state = 3}, - [2060] = {.lex_state = 2, .external_lex_state = 3}, - [2061] = {.lex_state = 3, .external_lex_state = 3}, - [2062] = {.lex_state = 2, .external_lex_state = 3}, - [2063] = {.lex_state = 2, .external_lex_state = 3}, - [2064] = {.lex_state = 2, .external_lex_state = 3}, + [2059] = {.lex_state = 2, .external_lex_state = 2}, + [2060] = {.lex_state = 2, .external_lex_state = 2}, + [2061] = {.lex_state = 2, .external_lex_state = 2}, + [2062] = {.lex_state = 2, .external_lex_state = 2}, + [2063] = {.lex_state = 2, .external_lex_state = 2}, + [2064] = {.lex_state = 2, .external_lex_state = 2}, [2065] = {.lex_state = 2, .external_lex_state = 3}, - [2066] = {.lex_state = 2, .external_lex_state = 3}, - [2067] = {.lex_state = 2, .external_lex_state = 3}, - [2068] = {.lex_state = 2, .external_lex_state = 3}, - [2069] = {.lex_state = 2, .external_lex_state = 3}, - [2070] = {.lex_state = 2, .external_lex_state = 3}, - [2071] = {.lex_state = 2, .external_lex_state = 3}, + [2066] = {.lex_state = 2, .external_lex_state = 2}, + [2067] = {.lex_state = 2, .external_lex_state = 2}, + [2068] = {.lex_state = 2, .external_lex_state = 2}, + [2069] = {.lex_state = 2, .external_lex_state = 2}, + [2070] = {.lex_state = 2, .external_lex_state = 2}, + [2071] = {.lex_state = 2, .external_lex_state = 2}, [2072] = {.lex_state = 2, .external_lex_state = 2}, - [2073] = {.lex_state = 2, .external_lex_state = 3}, - [2074] = {.lex_state = 2, .external_lex_state = 3}, - [2075] = {.lex_state = 2, .external_lex_state = 3}, - [2076] = {.lex_state = 2, .external_lex_state = 3}, - [2077] = {.lex_state = 2, .external_lex_state = 3}, - [2078] = {.lex_state = 2, .external_lex_state = 3}, + [2073] = {.lex_state = 2, .external_lex_state = 2}, + [2074] = {.lex_state = 2, .external_lex_state = 2}, + [2075] = {.lex_state = 2, .external_lex_state = 2}, + [2076] = {.lex_state = 2, .external_lex_state = 2}, + [2077] = {.lex_state = 2, .external_lex_state = 2}, + [2078] = {.lex_state = 2, .external_lex_state = 2}, [2079] = {.lex_state = 2, .external_lex_state = 2}, - [2080] = {.lex_state = 2, .external_lex_state = 3}, - [2081] = {.lex_state = 2, .external_lex_state = 3}, - [2082] = {.lex_state = 2, .external_lex_state = 3}, - [2083] = {.lex_state = 2, .external_lex_state = 3}, - [2084] = {.lex_state = 2, .external_lex_state = 3}, - [2085] = {.lex_state = 2, .external_lex_state = 3}, - [2086] = {.lex_state = 2, .external_lex_state = 3}, + [2080] = {.lex_state = 2, .external_lex_state = 2}, + [2081] = {.lex_state = 2, .external_lex_state = 2}, + [2082] = {.lex_state = 2, .external_lex_state = 2}, + [2083] = {.lex_state = 2, .external_lex_state = 2}, + [2084] = {.lex_state = 2, .external_lex_state = 2}, + [2085] = {.lex_state = 2, .external_lex_state = 2}, + [2086] = {.lex_state = 2, .external_lex_state = 2}, [2087] = {.lex_state = 2, .external_lex_state = 2}, [2088] = {.lex_state = 2, .external_lex_state = 3}, [2089] = {.lex_state = 2, .external_lex_state = 3}, - [2090] = {.lex_state = 2, .external_lex_state = 3}, + [2090] = {.lex_state = 2, .external_lex_state = 2}, [2091] = {.lex_state = 2, .external_lex_state = 3}, - [2092] = {.lex_state = 2, .external_lex_state = 3}, - [2093] = {.lex_state = 2, .external_lex_state = 3}, + [2092] = {.lex_state = 2, .external_lex_state = 2}, + [2093] = {.lex_state = 2, .external_lex_state = 2}, [2094] = {.lex_state = 2, .external_lex_state = 2}, - [2095] = {.lex_state = 2, .external_lex_state = 3}, - [2096] = {.lex_state = 2, .external_lex_state = 3}, - [2097] = {.lex_state = 2, .external_lex_state = 3}, - [2098] = {.lex_state = 2, .external_lex_state = 3}, - [2099] = {.lex_state = 2, .external_lex_state = 3}, - [2100] = {.lex_state = 2, .external_lex_state = 3}, - [2101] = {.lex_state = 2, .external_lex_state = 3}, - [2102] = {.lex_state = 2, .external_lex_state = 3}, - [2103] = {.lex_state = 2, .external_lex_state = 3}, - [2104] = {.lex_state = 2, .external_lex_state = 3}, - [2105] = {.lex_state = 2, .external_lex_state = 3}, - [2106] = {.lex_state = 2, .external_lex_state = 3}, - [2107] = {.lex_state = 2, .external_lex_state = 3}, - [2108] = {.lex_state = 2, .external_lex_state = 3}, - [2109] = {.lex_state = 2, .external_lex_state = 3}, - [2110] = {.lex_state = 2, .external_lex_state = 3}, + [2095] = {.lex_state = 2, .external_lex_state = 2}, + [2096] = {.lex_state = 2, .external_lex_state = 2}, + [2097] = {.lex_state = 2, .external_lex_state = 2}, + [2098] = {.lex_state = 2, .external_lex_state = 2}, + [2099] = {.lex_state = 2, .external_lex_state = 2}, + [2100] = {.lex_state = 2, .external_lex_state = 2}, + [2101] = {.lex_state = 2, .external_lex_state = 2}, + [2102] = {.lex_state = 2, .external_lex_state = 2}, + [2103] = {.lex_state = 2, .external_lex_state = 2}, + [2104] = {.lex_state = 2, .external_lex_state = 2}, + [2105] = {.lex_state = 2, .external_lex_state = 2}, + [2106] = {.lex_state = 2, .external_lex_state = 2}, + [2107] = {.lex_state = 2, .external_lex_state = 2}, + [2108] = {.lex_state = 2, .external_lex_state = 2}, + [2109] = {.lex_state = 2, .external_lex_state = 2}, + [2110] = {.lex_state = 72, .external_lex_state = 5}, [2111] = {.lex_state = 72, .external_lex_state = 5}, [2112] = {.lex_state = 72, .external_lex_state = 5}, [2113] = {.lex_state = 72, .external_lex_state = 5}, @@ -8138,32 +8137,32 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2116] = {.lex_state = 72, .external_lex_state = 5}, [2117] = {.lex_state = 72, .external_lex_state = 5}, [2118] = {.lex_state = 72, .external_lex_state = 5}, - [2119] = {.lex_state = 72, .external_lex_state = 5}, + [2119] = {.lex_state = 11}, [2120] = {.lex_state = 11}, [2121] = {.lex_state = 11}, - [2122] = {.lex_state = 72, .external_lex_state = 5}, - [2123] = {.lex_state = 11}, - [2124] = {.lex_state = 11}, + [2122] = {.lex_state = 11}, + [2123] = {.lex_state = 71, .external_lex_state = 3}, + [2124] = {.lex_state = 72, .external_lex_state = 5}, [2125] = {.lex_state = 11}, [2126] = {.lex_state = 11}, - [2127] = {.lex_state = 71, .external_lex_state = 2}, - [2128] = {.lex_state = 11}, + [2127] = {.lex_state = 11}, + [2128] = {.lex_state = 72, .external_lex_state = 5}, [2129] = {.lex_state = 72, .external_lex_state = 5}, [2130] = {.lex_state = 72, .external_lex_state = 5}, - [2131] = {.lex_state = 72, .external_lex_state = 5}, + [2131] = {.lex_state = 11}, [2132] = {.lex_state = 11}, [2133] = {.lex_state = 11}, [2134] = {.lex_state = 11}, [2135] = {.lex_state = 11}, [2136] = {.lex_state = 11}, - [2137] = {.lex_state = 71, .external_lex_state = 3}, + [2137] = {.lex_state = 11}, [2138] = {.lex_state = 11}, [2139] = {.lex_state = 11}, [2140] = {.lex_state = 11}, [2141] = {.lex_state = 11}, [2142] = {.lex_state = 11}, [2143] = {.lex_state = 11}, - [2144] = {.lex_state = 11}, + [2144] = {.lex_state = 71, .external_lex_state = 2}, [2145] = {.lex_state = 11}, [2146] = {.lex_state = 11}, [2147] = {.lex_state = 11}, @@ -8172,488 +8171,488 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2150] = {.lex_state = 11}, [2151] = {.lex_state = 11}, [2152] = {.lex_state = 11}, - [2153] = {.lex_state = 11}, - [2154] = {.lex_state = 71, .external_lex_state = 2}, + [2153] = {.lex_state = 71, .external_lex_state = 3}, + [2154] = {.lex_state = 71, .external_lex_state = 3}, [2155] = {.lex_state = 71, .external_lex_state = 2}, - [2156] = {.lex_state = 71, .external_lex_state = 2}, - [2157] = {.lex_state = 71, .external_lex_state = 2}, + [2156] = {.lex_state = 71, .external_lex_state = 3}, + [2157] = {.lex_state = 71, .external_lex_state = 3}, [2158] = {.lex_state = 71, .external_lex_state = 2}, - [2159] = {.lex_state = 71, .external_lex_state = 2}, + [2159] = {.lex_state = 71, .external_lex_state = 3}, [2160] = {.lex_state = 71, .external_lex_state = 2}, - [2161] = {.lex_state = 71, .external_lex_state = 3}, - [2162] = {.lex_state = 71, .external_lex_state = 3}, + [2161] = {.lex_state = 71, .external_lex_state = 2}, + [2162] = {.lex_state = 71, .external_lex_state = 2}, [2163] = {.lex_state = 71, .external_lex_state = 3}, [2164] = {.lex_state = 71, .external_lex_state = 3}, - [2165] = {.lex_state = 71, .external_lex_state = 3}, - [2166] = {.lex_state = 11}, + [2165] = {.lex_state = 71, .external_lex_state = 2}, + [2166] = {.lex_state = 71, .external_lex_state = 2}, [2167] = {.lex_state = 71, .external_lex_state = 3}, - [2168] = {.lex_state = 71, .external_lex_state = 2}, - [2169] = {.lex_state = 71, .external_lex_state = 3}, + [2168] = {.lex_state = 71, .external_lex_state = 3}, + [2169] = {.lex_state = 71, .external_lex_state = 2}, [2170] = {.lex_state = 71, .external_lex_state = 3}, [2171] = {.lex_state = 71, .external_lex_state = 3}, - [2172] = {.lex_state = 71, .external_lex_state = 3}, + [2172] = {.lex_state = 71, .external_lex_state = 2}, [2173] = {.lex_state = 71, .external_lex_state = 2}, - [2174] = {.lex_state = 71, .external_lex_state = 3}, - [2175] = {.lex_state = 71, .external_lex_state = 3}, - [2176] = {.lex_state = 71, .external_lex_state = 3}, - [2177] = {.lex_state = 71, .external_lex_state = 3}, - [2178] = {.lex_state = 71, .external_lex_state = 3}, - [2179] = {.lex_state = 71, .external_lex_state = 3}, - [2180] = {.lex_state = 71, .external_lex_state = 3}, + [2174] = {.lex_state = 71, .external_lex_state = 2}, + [2175] = {.lex_state = 71, .external_lex_state = 2}, + [2176] = {.lex_state = 71, .external_lex_state = 2}, + [2177] = {.lex_state = 71, .external_lex_state = 2}, + [2178] = {.lex_state = 71, .external_lex_state = 2}, + [2179] = {.lex_state = 71, .external_lex_state = 2}, + [2180] = {.lex_state = 71, .external_lex_state = 2}, [2181] = {.lex_state = 71, .external_lex_state = 3}, [2182] = {.lex_state = 71, .external_lex_state = 3}, - [2183] = {.lex_state = 71, .external_lex_state = 3}, - [2184] = {.lex_state = 5, .external_lex_state = 3}, - [2185] = {.lex_state = 71, .external_lex_state = 3}, + [2183] = {.lex_state = 71, .external_lex_state = 2}, + [2184] = {.lex_state = 71, .external_lex_state = 2}, + [2185] = {.lex_state = 71, .external_lex_state = 2}, [2186] = {.lex_state = 71, .external_lex_state = 3}, [2187] = {.lex_state = 71, .external_lex_state = 3}, [2188] = {.lex_state = 71, .external_lex_state = 3}, - [2189] = {.lex_state = 71, .external_lex_state = 3}, - [2190] = {.lex_state = 71, .external_lex_state = 3}, - [2191] = {.lex_state = 71, .external_lex_state = 3}, - [2192] = {.lex_state = 71, .external_lex_state = 3}, - [2193] = {.lex_state = 71, .external_lex_state = 3}, - [2194] = {.lex_state = 71, .external_lex_state = 3}, - [2195] = {.lex_state = 71, .external_lex_state = 3}, - [2196] = {.lex_state = 71, .external_lex_state = 3}, - [2197] = {.lex_state = 71, .external_lex_state = 3}, - [2198] = {.lex_state = 71, .external_lex_state = 3}, - [2199] = {.lex_state = 71, .external_lex_state = 3}, + [2189] = {.lex_state = 71, .external_lex_state = 2}, + [2190] = {.lex_state = 71, .external_lex_state = 2}, + [2191] = {.lex_state = 11}, + [2192] = {.lex_state = 71, .external_lex_state = 2}, + [2193] = {.lex_state = 71, .external_lex_state = 2}, + [2194] = {.lex_state = 71, .external_lex_state = 2}, + [2195] = {.lex_state = 71, .external_lex_state = 2}, + [2196] = {.lex_state = 71, .external_lex_state = 2}, + [2197] = {.lex_state = 71, .external_lex_state = 2}, + [2198] = {.lex_state = 71, .external_lex_state = 2}, + [2199] = {.lex_state = 71, .external_lex_state = 2}, [2200] = {.lex_state = 71, .external_lex_state = 3}, [2201] = {.lex_state = 71, .external_lex_state = 3}, - [2202] = {.lex_state = 71, .external_lex_state = 3}, + [2202] = {.lex_state = 11}, [2203] = {.lex_state = 71, .external_lex_state = 3}, [2204] = {.lex_state = 71, .external_lex_state = 3}, [2205] = {.lex_state = 71, .external_lex_state = 2}, - [2206] = {.lex_state = 71, .external_lex_state = 3}, - [2207] = {.lex_state = 71, .external_lex_state = 3}, - [2208] = {.lex_state = 71, .external_lex_state = 3}, + [2206] = {.lex_state = 71, .external_lex_state = 2}, + [2207] = {.lex_state = 71, .external_lex_state = 2}, + [2208] = {.lex_state = 71, .external_lex_state = 2}, [2209] = {.lex_state = 71, .external_lex_state = 3}, - [2210] = {.lex_state = 71, .external_lex_state = 2}, + [2210] = {.lex_state = 71, .external_lex_state = 3}, [2211] = {.lex_state = 71, .external_lex_state = 2}, - [2212] = {.lex_state = 11}, - [2213] = {.lex_state = 71, .external_lex_state = 2}, + [2212] = {.lex_state = 71, .external_lex_state = 2}, + [2213] = {.lex_state = 5, .external_lex_state = 2}, [2214] = {.lex_state = 71, .external_lex_state = 2}, [2215] = {.lex_state = 71, .external_lex_state = 3}, [2216] = {.lex_state = 71, .external_lex_state = 3}, [2217] = {.lex_state = 71, .external_lex_state = 3}, - [2218] = {.lex_state = 71, .external_lex_state = 2}, + [2218] = {.lex_state = 71, .external_lex_state = 3}, [2219] = {.lex_state = 71, .external_lex_state = 2}, - [2220] = {.lex_state = 71, .external_lex_state = 3}, + [2220] = {.lex_state = 71, .external_lex_state = 2}, [2221] = {.lex_state = 71, .external_lex_state = 3}, [2222] = {.lex_state = 71, .external_lex_state = 3}, - [2223] = {.lex_state = 71, .external_lex_state = 3}, - [2224] = {.lex_state = 71, .external_lex_state = 3}, - [2225] = {.lex_state = 71, .external_lex_state = 3}, - [2226] = {.lex_state = 71, .external_lex_state = 3}, + [2223] = {.lex_state = 71, .external_lex_state = 2}, + [2224] = {.lex_state = 71, .external_lex_state = 2}, + [2225] = {.lex_state = 71, .external_lex_state = 2}, + [2226] = {.lex_state = 71, .external_lex_state = 2}, [2227] = {.lex_state = 71, .external_lex_state = 2}, - [2228] = {.lex_state = 71, .external_lex_state = 3}, - [2229] = {.lex_state = 71, .external_lex_state = 3}, - [2230] = {.lex_state = 11}, - [2231] = {.lex_state = 71, .external_lex_state = 3}, + [2228] = {.lex_state = 71, .external_lex_state = 2}, + [2229] = {.lex_state = 71, .external_lex_state = 2}, + [2230] = {.lex_state = 71, .external_lex_state = 2}, + [2231] = {.lex_state = 71, .external_lex_state = 2}, [2232] = {.lex_state = 71, .external_lex_state = 2}, - [2233] = {.lex_state = 71, .external_lex_state = 3}, - [2234] = {.lex_state = 71, .external_lex_state = 3}, - [2235] = {.lex_state = 71, .external_lex_state = 3}, - [2236] = {.lex_state = 71, .external_lex_state = 3}, - [2237] = {.lex_state = 71, .external_lex_state = 3}, + [2233] = {.lex_state = 11}, + [2234] = {.lex_state = 71, .external_lex_state = 2}, + [2235] = {.lex_state = 71, .external_lex_state = 2}, + [2236] = {.lex_state = 71, .external_lex_state = 2}, + [2237] = {.lex_state = 71, .external_lex_state = 2}, [2238] = {.lex_state = 71, .external_lex_state = 3}, - [2239] = {.lex_state = 71, .external_lex_state = 2}, + [2239] = {.lex_state = 71, .external_lex_state = 3}, [2240] = {.lex_state = 71, .external_lex_state = 2}, - [2241] = {.lex_state = 71, .external_lex_state = 2}, - [2242] = {.lex_state = 71, .external_lex_state = 3}, - [2243] = {.lex_state = 71, .external_lex_state = 3}, - [2244] = {.lex_state = 71, .external_lex_state = 2}, + [2241] = {.lex_state = 11}, + [2242] = {.lex_state = 71, .external_lex_state = 2}, + [2243] = {.lex_state = 71, .external_lex_state = 2}, + [2244] = {.lex_state = 71, .external_lex_state = 3}, [2245] = {.lex_state = 71, .external_lex_state = 2}, - [2246] = {.lex_state = 71, .external_lex_state = 3}, + [2246] = {.lex_state = 11}, [2247] = {.lex_state = 71, .external_lex_state = 3}, [2248] = {.lex_state = 71, .external_lex_state = 2}, [2249] = {.lex_state = 71, .external_lex_state = 2}, - [2250] = {.lex_state = 71, .external_lex_state = 3}, - [2251] = {.lex_state = 71, .external_lex_state = 2}, + [2250] = {.lex_state = 71, .external_lex_state = 2}, + [2251] = {.lex_state = 71, .external_lex_state = 3}, [2252] = {.lex_state = 71, .external_lex_state = 3}, - [2253] = {.lex_state = 71, .external_lex_state = 2}, - [2254] = {.lex_state = 71, .external_lex_state = 3}, - [2255] = {.lex_state = 71, .external_lex_state = 3}, - [2256] = {.lex_state = 71, .external_lex_state = 3}, - [2257] = {.lex_state = 71, .external_lex_state = 3}, - [2258] = {.lex_state = 71, .external_lex_state = 3}, - [2259] = {.lex_state = 71, .external_lex_state = 2}, - [2260] = {.lex_state = 71, .external_lex_state = 3}, - [2261] = {.lex_state = 71, .external_lex_state = 3}, - [2262] = {.lex_state = 71, .external_lex_state = 3}, - [2263] = {.lex_state = 71, .external_lex_state = 3}, - [2264] = {.lex_state = 71, .external_lex_state = 3}, + [2253] = {.lex_state = 71, .external_lex_state = 3}, + [2254] = {.lex_state = 71, .external_lex_state = 2}, + [2255] = {.lex_state = 71, .external_lex_state = 2}, + [2256] = {.lex_state = 71, .external_lex_state = 2}, + [2257] = {.lex_state = 71, .external_lex_state = 2}, + [2258] = {.lex_state = 71, .external_lex_state = 2}, + [2259] = {.lex_state = 11}, + [2260] = {.lex_state = 71, .external_lex_state = 2}, + [2261] = {.lex_state = 71, .external_lex_state = 2}, + [2262] = {.lex_state = 71, .external_lex_state = 2}, + [2263] = {.lex_state = 71, .external_lex_state = 2}, + [2264] = {.lex_state = 71, .external_lex_state = 2}, [2265] = {.lex_state = 71, .external_lex_state = 2}, - [2266] = {.lex_state = 71, .external_lex_state = 3}, + [2266] = {.lex_state = 71, .external_lex_state = 2}, [2267] = {.lex_state = 71, .external_lex_state = 2}, - [2268] = {.lex_state = 71, .external_lex_state = 3}, - [2269] = {.lex_state = 11}, + [2268] = {.lex_state = 71, .external_lex_state = 2}, + [2269] = {.lex_state = 71, .external_lex_state = 2}, [2270] = {.lex_state = 71, .external_lex_state = 2}, [2271] = {.lex_state = 71, .external_lex_state = 2}, - [2272] = {.lex_state = 71, .external_lex_state = 3}, - [2273] = {.lex_state = 71, .external_lex_state = 3}, + [2272] = {.lex_state = 71, .external_lex_state = 2}, + [2273] = {.lex_state = 71, .external_lex_state = 2}, [2274] = {.lex_state = 71, .external_lex_state = 3}, [2275] = {.lex_state = 71, .external_lex_state = 2}, - [2276] = {.lex_state = 71, .external_lex_state = 2}, - [2277] = {.lex_state = 71, .external_lex_state = 3}, + [2276] = {.lex_state = 71, .external_lex_state = 3}, + [2277] = {.lex_state = 71, .external_lex_state = 2}, [2278] = {.lex_state = 71, .external_lex_state = 3}, - [2279] = {.lex_state = 71, .external_lex_state = 3}, - [2280] = {.lex_state = 71, .external_lex_state = 3}, + [2279] = {.lex_state = 71, .external_lex_state = 2}, + [2280] = {.lex_state = 71, .external_lex_state = 2}, [2281] = {.lex_state = 71, .external_lex_state = 2}, - [2282] = {.lex_state = 71, .external_lex_state = 3}, + [2282] = {.lex_state = 71, .external_lex_state = 2}, [2283] = {.lex_state = 71, .external_lex_state = 2}, [2284] = {.lex_state = 71, .external_lex_state = 2}, - [2285] = {.lex_state = 71, .external_lex_state = 3}, - [2286] = {.lex_state = 71, .external_lex_state = 3}, - [2287] = {.lex_state = 71, .external_lex_state = 3}, - [2288] = {.lex_state = 11}, - [2289] = {.lex_state = 71, .external_lex_state = 3}, - [2290] = {.lex_state = 71, .external_lex_state = 3}, - [2291] = {.lex_state = 71, .external_lex_state = 3}, - [2292] = {.lex_state = 71, .external_lex_state = 3}, - [2293] = {.lex_state = 71, .external_lex_state = 3}, - [2294] = {.lex_state = 71, .external_lex_state = 3}, - [2295] = {.lex_state = 11}, - [2296] = {.lex_state = 71, .external_lex_state = 3}, - [2297] = {.lex_state = 71, .external_lex_state = 3}, - [2298] = {.lex_state = 71, .external_lex_state = 3}, - [2299] = {.lex_state = 71, .external_lex_state = 3}, - [2300] = {.lex_state = 71, .external_lex_state = 3}, - [2301] = {.lex_state = 71, .external_lex_state = 3}, - [2302] = {.lex_state = 71, .external_lex_state = 3}, + [2285] = {.lex_state = 71, .external_lex_state = 2}, + [2286] = {.lex_state = 71, .external_lex_state = 2}, + [2287] = {.lex_state = 71, .external_lex_state = 2}, + [2288] = {.lex_state = 71, .external_lex_state = 2}, + [2289] = {.lex_state = 71, .external_lex_state = 2}, + [2290] = {.lex_state = 71, .external_lex_state = 2}, + [2291] = {.lex_state = 71, .external_lex_state = 2}, + [2292] = {.lex_state = 71, .external_lex_state = 2}, + [2293] = {.lex_state = 71, .external_lex_state = 2}, + [2294] = {.lex_state = 71, .external_lex_state = 2}, + [2295] = {.lex_state = 71, .external_lex_state = 2}, + [2296] = {.lex_state = 71, .external_lex_state = 2}, + [2297] = {.lex_state = 71, .external_lex_state = 2}, + [2298] = {.lex_state = 71, .external_lex_state = 2}, + [2299] = {.lex_state = 71, .external_lex_state = 2}, + [2300] = {.lex_state = 11}, + [2301] = {.lex_state = 71, .external_lex_state = 2}, + [2302] = {.lex_state = 71, .external_lex_state = 2}, [2303] = {.lex_state = 71, .external_lex_state = 2}, - [2304] = {.lex_state = 71, .external_lex_state = 3}, - [2305] = {.lex_state = 71, .external_lex_state = 3}, - [2306] = {.lex_state = 71, .external_lex_state = 3}, - [2307] = {.lex_state = 71, .external_lex_state = 3}, - [2308] = {.lex_state = 71, .external_lex_state = 2}, - [2309] = {.lex_state = 71, .external_lex_state = 3}, - [2310] = {.lex_state = 71, .external_lex_state = 3}, - [2311] = {.lex_state = 71, .external_lex_state = 3}, - [2312] = {.lex_state = 71, .external_lex_state = 3}, - [2313] = {.lex_state = 71, .external_lex_state = 3}, + [2304] = {.lex_state = 71, .external_lex_state = 2}, + [2305] = {.lex_state = 71, .external_lex_state = 2}, + [2306] = {.lex_state = 71, .external_lex_state = 2}, + [2307] = {.lex_state = 71, .external_lex_state = 2}, + [2308] = {.lex_state = 71, .external_lex_state = 3}, + [2309] = {.lex_state = 71, .external_lex_state = 2}, + [2310] = {.lex_state = 71, .external_lex_state = 2}, + [2311] = {.lex_state = 11}, + [2312] = {.lex_state = 71, .external_lex_state = 2}, + [2313] = {.lex_state = 71, .external_lex_state = 2}, [2314] = {.lex_state = 71, .external_lex_state = 3}, - [2315] = {.lex_state = 71, .external_lex_state = 3}, - [2316] = {.lex_state = 71, .external_lex_state = 3}, - [2317] = {.lex_state = 71, .external_lex_state = 3}, + [2315] = {.lex_state = 71, .external_lex_state = 2}, + [2316] = {.lex_state = 71, .external_lex_state = 2}, + [2317] = {.lex_state = 71, .external_lex_state = 2}, [2318] = {.lex_state = 71, .external_lex_state = 3}, - [2319] = {.lex_state = 71, .external_lex_state = 3}, - [2320] = {.lex_state = 71, .external_lex_state = 3}, - [2321] = {.lex_state = 11}, - [2322] = {.lex_state = 71, .external_lex_state = 3}, - [2323] = {.lex_state = 71, .external_lex_state = 3}, - [2324] = {.lex_state = 71, .external_lex_state = 3}, - [2325] = {.lex_state = 71, .external_lex_state = 3}, - [2326] = {.lex_state = 71, .external_lex_state = 3}, - [2327] = {.lex_state = 71, .external_lex_state = 3}, - [2328] = {.lex_state = 71, .external_lex_state = 3}, - [2329] = {.lex_state = 71, .external_lex_state = 3}, - [2330] = {.lex_state = 71, .external_lex_state = 3}, - [2331] = {.lex_state = 71, .external_lex_state = 3}, - [2332] = {.lex_state = 11}, - [2333] = {.lex_state = 71, .external_lex_state = 3}, - [2334] = {.lex_state = 71, .external_lex_state = 3}, + [2319] = {.lex_state = 71, .external_lex_state = 2}, + [2320] = {.lex_state = 71, .external_lex_state = 2}, + [2321] = {.lex_state = 71, .external_lex_state = 2}, + [2322] = {.lex_state = 71, .external_lex_state = 2}, + [2323] = {.lex_state = 71, .external_lex_state = 2}, + [2324] = {.lex_state = 71, .external_lex_state = 2}, + [2325] = {.lex_state = 71, .external_lex_state = 2}, + [2326] = {.lex_state = 71, .external_lex_state = 2}, + [2327] = {.lex_state = 71, .external_lex_state = 2}, + [2328] = {.lex_state = 71, .external_lex_state = 2}, + [2329] = {.lex_state = 71, .external_lex_state = 2}, + [2330] = {.lex_state = 71, .external_lex_state = 2}, + [2331] = {.lex_state = 71, .external_lex_state = 2}, + [2332] = {.lex_state = 71, .external_lex_state = 2}, + [2333] = {.lex_state = 71, .external_lex_state = 2}, + [2334] = {.lex_state = 71, .external_lex_state = 2}, [2335] = {.lex_state = 71, .external_lex_state = 2}, [2336] = {.lex_state = 71, .external_lex_state = 2}, - [2337] = {.lex_state = 71, .external_lex_state = 3}, + [2337] = {.lex_state = 71, .external_lex_state = 2}, [2338] = {.lex_state = 71, .external_lex_state = 2}, [2339] = {.lex_state = 71, .external_lex_state = 3}, - [2340] = {.lex_state = 71, .external_lex_state = 3}, - [2341] = {.lex_state = 71, .external_lex_state = 3}, - [2342] = {.lex_state = 71, .external_lex_state = 3}, - [2343] = {.lex_state = 71, .external_lex_state = 3}, - [2344] = {.lex_state = 71, .external_lex_state = 4}, + [2340] = {.lex_state = 71, .external_lex_state = 2}, + [2341] = {.lex_state = 71, .external_lex_state = 2}, + [2342] = {.lex_state = 71, .external_lex_state = 2}, + [2343] = {.lex_state = 71, .external_lex_state = 4}, + [2344] = {.lex_state = 72}, [2345] = {.lex_state = 71, .external_lex_state = 4}, - [2346] = {.lex_state = 72}, - [2347] = {.lex_state = 71, .external_lex_state = 4}, + [2346] = {.lex_state = 71, .external_lex_state = 2}, + [2347] = {.lex_state = 71, .external_lex_state = 2}, [2348] = {.lex_state = 71, .external_lex_state = 4}, - [2349] = {.lex_state = 72}, - [2350] = {.lex_state = 71, .external_lex_state = 4}, + [2349] = {.lex_state = 71, .external_lex_state = 2}, + [2350] = {.lex_state = 71, .external_lex_state = 2}, [2351] = {.lex_state = 71, .external_lex_state = 4}, - [2352] = {.lex_state = 71, .external_lex_state = 4}, - [2353] = {.lex_state = 5, .external_lex_state = 2}, + [2352] = {.lex_state = 72}, + [2353] = {.lex_state = 72}, [2354] = {.lex_state = 71, .external_lex_state = 4}, - [2355] = {.lex_state = 71, .external_lex_state = 4}, - [2356] = {.lex_state = 71, .external_lex_state = 4}, - [2357] = {.lex_state = 71, .external_lex_state = 4}, - [2358] = {.lex_state = 71, .external_lex_state = 4}, - [2359] = {.lex_state = 71, .external_lex_state = 3}, - [2360] = {.lex_state = 71, .external_lex_state = 4}, - [2361] = {.lex_state = 71, .external_lex_state = 3}, + [2355] = {.lex_state = 72}, + [2356] = {.lex_state = 72}, + [2357] = {.lex_state = 72}, + [2358] = {.lex_state = 72}, + [2359] = {.lex_state = 71, .external_lex_state = 2}, + [2360] = {.lex_state = 72}, + [2361] = {.lex_state = 5, .external_lex_state = 3}, [2362] = {.lex_state = 71, .external_lex_state = 4}, - [2363] = {.lex_state = 71, .external_lex_state = 2}, + [2363] = {.lex_state = 71, .external_lex_state = 4}, [2364] = {.lex_state = 71, .external_lex_state = 4}, - [2365] = {.lex_state = 72}, + [2365] = {.lex_state = 71, .external_lex_state = 2}, [2366] = {.lex_state = 71, .external_lex_state = 4}, [2367] = {.lex_state = 71, .external_lex_state = 4}, [2368] = {.lex_state = 72}, - [2369] = {.lex_state = 71, .external_lex_state = 4}, - [2370] = {.lex_state = 72}, - [2371] = {.lex_state = 72}, + [2369] = {.lex_state = 72}, + [2370] = {.lex_state = 71, .external_lex_state = 4}, + [2371] = {.lex_state = 71, .external_lex_state = 4}, [2372] = {.lex_state = 71, .external_lex_state = 4}, [2373] = {.lex_state = 71, .external_lex_state = 4}, - [2374] = {.lex_state = 71, .external_lex_state = 2}, - [2375] = {.lex_state = 72}, - [2376] = {.lex_state = 71, .external_lex_state = 2}, - [2377] = {.lex_state = 71, .external_lex_state = 3}, + [2374] = {.lex_state = 71, .external_lex_state = 4}, + [2375] = {.lex_state = 71, .external_lex_state = 4}, + [2376] = {.lex_state = 71, .external_lex_state = 4}, + [2377] = {.lex_state = 72}, [2378] = {.lex_state = 71, .external_lex_state = 4}, [2379] = {.lex_state = 71, .external_lex_state = 4}, - [2380] = {.lex_state = 71, .external_lex_state = 2}, - [2381] = {.lex_state = 71, .external_lex_state = 4}, + [2380] = {.lex_state = 71, .external_lex_state = 3}, + [2381] = {.lex_state = 71, .external_lex_state = 3}, [2382] = {.lex_state = 71, .external_lex_state = 4}, [2383] = {.lex_state = 71, .external_lex_state = 3}, - [2384] = {.lex_state = 71, .external_lex_state = 4}, - [2385] = {.lex_state = 72}, - [2386] = {.lex_state = 71, .external_lex_state = 3}, - [2387] = {.lex_state = 72}, - [2388] = {.lex_state = 71, .external_lex_state = 3}, - [2389] = {.lex_state = 72}, - [2390] = {.lex_state = 72}, + [2384] = {.lex_state = 71, .external_lex_state = 3}, + [2385] = {.lex_state = 71, .external_lex_state = 4}, + [2386] = {.lex_state = 71, .external_lex_state = 4}, + [2387] = {.lex_state = 71, .external_lex_state = 4}, + [2388] = {.lex_state = 71, .external_lex_state = 4}, + [2389] = {.lex_state = 71, .external_lex_state = 4}, + [2390] = {.lex_state = 71, .external_lex_state = 2}, [2391] = {.lex_state = 71, .external_lex_state = 2}, - [2392] = {.lex_state = 71, .external_lex_state = 2}, - [2393] = {.lex_state = 71, .external_lex_state = 2}, + [2392] = {.lex_state = 71, .external_lex_state = 3}, + [2393] = {.lex_state = 71, .external_lex_state = 3}, [2394] = {.lex_state = 71, .external_lex_state = 3}, - [2395] = {.lex_state = 71, .external_lex_state = 2}, - [2396] = {.lex_state = 71, .external_lex_state = 2}, - [2397] = {.lex_state = 71, .external_lex_state = 2}, - [2398] = {.lex_state = 71, .external_lex_state = 2}, - [2399] = {.lex_state = 71, .external_lex_state = 2}, - [2400] = {.lex_state = 71, .external_lex_state = 2}, + [2395] = {.lex_state = 71, .external_lex_state = 3}, + [2396] = {.lex_state = 71, .external_lex_state = 4}, + [2397] = {.lex_state = 71, .external_lex_state = 4}, + [2398] = {.lex_state = 71, .external_lex_state = 3}, + [2399] = {.lex_state = 71, .external_lex_state = 3}, + [2400] = {.lex_state = 71, .external_lex_state = 3}, [2401] = {.lex_state = 71, .external_lex_state = 3}, - [2402] = {.lex_state = 71, .external_lex_state = 4}, - [2403] = {.lex_state = 71, .external_lex_state = 4}, - [2404] = {.lex_state = 71, .external_lex_state = 2}, - [2405] = {.lex_state = 71, .external_lex_state = 2}, - [2406] = {.lex_state = 71, .external_lex_state = 2}, + [2402] = {.lex_state = 71, .external_lex_state = 3}, + [2403] = {.lex_state = 71, .external_lex_state = 3}, + [2404] = {.lex_state = 71, .external_lex_state = 3}, + [2405] = {.lex_state = 71, .external_lex_state = 3}, + [2406] = {.lex_state = 71, .external_lex_state = 3}, [2407] = {.lex_state = 71, .external_lex_state = 2}, - [2408] = {.lex_state = 71, .external_lex_state = 2}, + [2408] = {.lex_state = 71, .external_lex_state = 3}, [2409] = {.lex_state = 71, .external_lex_state = 4}, - [2410] = {.lex_state = 71, .external_lex_state = 2}, - [2411] = {.lex_state = 71, .external_lex_state = 2}, - [2412] = {.lex_state = 71, .external_lex_state = 2}, - [2413] = {.lex_state = 71, .external_lex_state = 4}, - [2414] = {.lex_state = 71, .external_lex_state = 2}, - [2415] = {.lex_state = 71, .external_lex_state = 4}, - [2416] = {.lex_state = 71, .external_lex_state = 2}, - [2417] = {.lex_state = 71, .external_lex_state = 4}, - [2418] = {.lex_state = 71, .external_lex_state = 4}, + [2410] = {.lex_state = 71, .external_lex_state = 3}, + [2411] = {.lex_state = 71, .external_lex_state = 3}, + [2412] = {.lex_state = 71, .external_lex_state = 3}, + [2413] = {.lex_state = 71, .external_lex_state = 3}, + [2414] = {.lex_state = 71, .external_lex_state = 3}, + [2415] = {.lex_state = 71, .external_lex_state = 3}, + [2416] = {.lex_state = 71, .external_lex_state = 3}, + [2417] = {.lex_state = 71, .external_lex_state = 3}, + [2418] = {.lex_state = 71, .external_lex_state = 2}, [2419] = {.lex_state = 71, .external_lex_state = 3}, [2420] = {.lex_state = 71, .external_lex_state = 2}, [2421] = {.lex_state = 71, .external_lex_state = 2}, - [2422] = {.lex_state = 71, .external_lex_state = 2}, - [2423] = {.lex_state = 71, .external_lex_state = 2}, - [2424] = {.lex_state = 71, .external_lex_state = 3}, - [2425] = {.lex_state = 71, .external_lex_state = 2}, + [2422] = {.lex_state = 71, .external_lex_state = 3}, + [2423] = {.lex_state = 71, .external_lex_state = 3}, + [2424] = {.lex_state = 71, .external_lex_state = 2}, + [2425] = {.lex_state = 71, .external_lex_state = 3}, [2426] = {.lex_state = 71, .external_lex_state = 3}, - [2427] = {.lex_state = 71, .external_lex_state = 3}, - [2428] = {.lex_state = 71, .external_lex_state = 3}, - [2429] = {.lex_state = 71, .external_lex_state = 3}, + [2427] = {.lex_state = 71, .external_lex_state = 2}, + [2428] = {.lex_state = 71, .external_lex_state = 2}, + [2429] = {.lex_state = 71, .external_lex_state = 2}, [2430] = {.lex_state = 71, .external_lex_state = 2}, - [2431] = {.lex_state = 71, .external_lex_state = 4}, - [2432] = {.lex_state = 71, .external_lex_state = 4}, - [2433] = {.lex_state = 71, .external_lex_state = 4}, - [2434] = {.lex_state = 71, .external_lex_state = 3}, + [2431] = {.lex_state = 71, .external_lex_state = 2}, + [2432] = {.lex_state = 71, .external_lex_state = 2}, + [2433] = {.lex_state = 71, .external_lex_state = 2}, + [2434] = {.lex_state = 71, .external_lex_state = 4}, [2435] = {.lex_state = 71, .external_lex_state = 4}, - [2436] = {.lex_state = 71, .external_lex_state = 3}, + [2436] = {.lex_state = 71, .external_lex_state = 4}, [2437] = {.lex_state = 71, .external_lex_state = 2}, - [2438] = {.lex_state = 71, .external_lex_state = 2}, + [2438] = {.lex_state = 71, .external_lex_state = 4}, [2439] = {.lex_state = 71, .external_lex_state = 2}, [2440] = {.lex_state = 71, .external_lex_state = 2}, - [2441] = {.lex_state = 71, .external_lex_state = 2}, - [2442] = {.lex_state = 71, .external_lex_state = 3}, + [2441] = {.lex_state = 71, .external_lex_state = 3}, + [2442] = {.lex_state = 71, .external_lex_state = 2}, [2443] = {.lex_state = 71, .external_lex_state = 2}, [2444] = {.lex_state = 71, .external_lex_state = 2}, - [2445] = {.lex_state = 71, .external_lex_state = 4}, - [2446] = {.lex_state = 71, .external_lex_state = 4}, - [2447] = {.lex_state = 71, .external_lex_state = 4}, + [2445] = {.lex_state = 71, .external_lex_state = 3}, + [2446] = {.lex_state = 71, .external_lex_state = 3}, + [2447] = {.lex_state = 71, .external_lex_state = 2}, [2448] = {.lex_state = 71, .external_lex_state = 4}, [2449] = {.lex_state = 71, .external_lex_state = 4}, [2450] = {.lex_state = 71, .external_lex_state = 4}, [2451] = {.lex_state = 71, .external_lex_state = 4}, - [2452] = {.lex_state = 71, .external_lex_state = 2}, - [2453] = {.lex_state = 71, .external_lex_state = 3}, - [2454] = {.lex_state = 71, .external_lex_state = 2}, - [2455] = {.lex_state = 71, .external_lex_state = 2}, + [2452] = {.lex_state = 71, .external_lex_state = 4}, + [2453] = {.lex_state = 71, .external_lex_state = 4}, + [2454] = {.lex_state = 71, .external_lex_state = 4}, + [2455] = {.lex_state = 71, .external_lex_state = 3}, [2456] = {.lex_state = 71, .external_lex_state = 2}, - [2457] = {.lex_state = 71, .external_lex_state = 2}, - [2458] = {.lex_state = 71, .external_lex_state = 2}, - [2459] = {.lex_state = 71, .external_lex_state = 4}, - [2460] = {.lex_state = 71, .external_lex_state = 4}, - [2461] = {.lex_state = 71, .external_lex_state = 2}, - [2462] = {.lex_state = 71, .external_lex_state = 2}, + [2457] = {.lex_state = 71, .external_lex_state = 3}, + [2458] = {.lex_state = 71, .external_lex_state = 3}, + [2459] = {.lex_state = 71, .external_lex_state = 3}, + [2460] = {.lex_state = 71, .external_lex_state = 3}, + [2461] = {.lex_state = 71, .external_lex_state = 3}, + [2462] = {.lex_state = 71, .external_lex_state = 3}, [2463] = {.lex_state = 71, .external_lex_state = 2}, - [2464] = {.lex_state = 71, .external_lex_state = 2}, - [2465] = {.lex_state = 71, .external_lex_state = 2}, + [2464] = {.lex_state = 71, .external_lex_state = 3}, + [2465] = {.lex_state = 71, .external_lex_state = 3}, [2466] = {.lex_state = 71, .external_lex_state = 3}, [2467] = {.lex_state = 71, .external_lex_state = 3}, - [2468] = {.lex_state = 71, .external_lex_state = 2}, + [2468] = {.lex_state = 71, .external_lex_state = 3}, [2469] = {.lex_state = 71, .external_lex_state = 2}, - [2470] = {.lex_state = 71, .external_lex_state = 4}, - [2471] = {.lex_state = 71, .external_lex_state = 4}, - [2472] = {.lex_state = 71, .external_lex_state = 4}, - [2473] = {.lex_state = 71, .external_lex_state = 2}, - [2474] = {.lex_state = 71, .external_lex_state = 2}, - [2475] = {.lex_state = 71, .external_lex_state = 2}, - [2476] = {.lex_state = 71, .external_lex_state = 2}, - [2477] = {.lex_state = 71, .external_lex_state = 2}, - [2478] = {.lex_state = 71, .external_lex_state = 2}, - [2479] = {.lex_state = 71, .external_lex_state = 2}, - [2480] = {.lex_state = 71, .external_lex_state = 2}, - [2481] = {.lex_state = 71, .external_lex_state = 2}, - [2482] = {.lex_state = 71, .external_lex_state = 2}, - [2483] = {.lex_state = 71, .external_lex_state = 2}, - [2484] = {.lex_state = 71, .external_lex_state = 2}, - [2485] = {.lex_state = 71, .external_lex_state = 2}, + [2470] = {.lex_state = 71, .external_lex_state = 2}, + [2471] = {.lex_state = 71, .external_lex_state = 2}, + [2472] = {.lex_state = 71, .external_lex_state = 2}, + [2473] = {.lex_state = 71, .external_lex_state = 4}, + [2474] = {.lex_state = 71, .external_lex_state = 4}, + [2475] = {.lex_state = 71, .external_lex_state = 4}, + [2476] = {.lex_state = 71, .external_lex_state = 4}, + [2477] = {.lex_state = 71, .external_lex_state = 3}, + [2478] = {.lex_state = 71, .external_lex_state = 3}, + [2479] = {.lex_state = 71, .external_lex_state = 3}, + [2480] = {.lex_state = 71, .external_lex_state = 3}, + [2481] = {.lex_state = 71, .external_lex_state = 3}, + [2482] = {.lex_state = 71, .external_lex_state = 3}, + [2483] = {.lex_state = 71, .external_lex_state = 3}, + [2484] = {.lex_state = 71, .external_lex_state = 3}, + [2485] = {.lex_state = 71, .external_lex_state = 3}, [2486] = {.lex_state = 71, .external_lex_state = 2}, - [2487] = {.lex_state = 71, .external_lex_state = 4}, + [2487] = {.lex_state = 71, .external_lex_state = 3}, [2488] = {.lex_state = 71, .external_lex_state = 2}, [2489] = {.lex_state = 71, .external_lex_state = 2}, - [2490] = {.lex_state = 71, .external_lex_state = 2}, - [2491] = {.lex_state = 71, .external_lex_state = 2}, - [2492] = {.lex_state = 71, .external_lex_state = 2}, - [2493] = {.lex_state = 71, .external_lex_state = 2}, - [2494] = {.lex_state = 71, .external_lex_state = 2}, - [2495] = {.lex_state = 71, .external_lex_state = 2}, - [2496] = {.lex_state = 71, .external_lex_state = 2}, - [2497] = {.lex_state = 71, .external_lex_state = 2}, + [2490] = {.lex_state = 71, .external_lex_state = 4}, + [2491] = {.lex_state = 71, .external_lex_state = 3}, + [2492] = {.lex_state = 71, .external_lex_state = 3}, + [2493] = {.lex_state = 71, .external_lex_state = 3}, + [2494] = {.lex_state = 71, .external_lex_state = 3}, + [2495] = {.lex_state = 71, .external_lex_state = 3}, + [2496] = {.lex_state = 71, .external_lex_state = 3}, + [2497] = {.lex_state = 71, .external_lex_state = 3}, [2498] = {.lex_state = 71, .external_lex_state = 2}, [2499] = {.lex_state = 71, .external_lex_state = 3}, - [2500] = {.lex_state = 71, .external_lex_state = 2}, + [2500] = {.lex_state = 71, .external_lex_state = 3}, [2501] = {.lex_state = 71, .external_lex_state = 3}, - [2502] = {.lex_state = 71, .external_lex_state = 2}, + [2502] = {.lex_state = 71, .external_lex_state = 3}, [2503] = {.lex_state = 71, .external_lex_state = 3}, - [2504] = {.lex_state = 71, .external_lex_state = 2}, - [2505] = {.lex_state = 71, .external_lex_state = 2}, - [2506] = {.lex_state = 71, .external_lex_state = 2}, - [2507] = {.lex_state = 71, .external_lex_state = 2}, - [2508] = {.lex_state = 71, .external_lex_state = 2}, - [2509] = {.lex_state = 71, .external_lex_state = 2}, - [2510] = {.lex_state = 71, .external_lex_state = 2}, - [2511] = {.lex_state = 71, .external_lex_state = 2}, - [2512] = {.lex_state = 71, .external_lex_state = 2}, - [2513] = {.lex_state = 71, .external_lex_state = 2}, - [2514] = {.lex_state = 71, .external_lex_state = 2}, - [2515] = {.lex_state = 71, .external_lex_state = 2}, - [2516] = {.lex_state = 71, .external_lex_state = 4}, - [2517] = {.lex_state = 71, .external_lex_state = 2}, - [2518] = {.lex_state = 71, .external_lex_state = 2}, + [2504] = {.lex_state = 71, .external_lex_state = 3}, + [2505] = {.lex_state = 71, .external_lex_state = 3}, + [2506] = {.lex_state = 71, .external_lex_state = 3}, + [2507] = {.lex_state = 71, .external_lex_state = 3}, + [2508] = {.lex_state = 71, .external_lex_state = 3}, + [2509] = {.lex_state = 71, .external_lex_state = 3}, + [2510] = {.lex_state = 71, .external_lex_state = 3}, + [2511] = {.lex_state = 71, .external_lex_state = 3}, + [2512] = {.lex_state = 71, .external_lex_state = 3}, + [2513] = {.lex_state = 71, .external_lex_state = 3}, + [2514] = {.lex_state = 71, .external_lex_state = 3}, + [2515] = {.lex_state = 71, .external_lex_state = 3}, + [2516] = {.lex_state = 71, .external_lex_state = 3}, + [2517] = {.lex_state = 71, .external_lex_state = 4}, + [2518] = {.lex_state = 71, .external_lex_state = 3}, [2519] = {.lex_state = 71, .external_lex_state = 2}, - [2520] = {.lex_state = 71, .external_lex_state = 2}, - [2521] = {.lex_state = 71, .external_lex_state = 2}, - [2522] = {.lex_state = 71, .external_lex_state = 2}, - [2523] = {.lex_state = 71, .external_lex_state = 2}, + [2520] = {.lex_state = 71, .external_lex_state = 3}, + [2521] = {.lex_state = 71, .external_lex_state = 3}, + [2522] = {.lex_state = 71, .external_lex_state = 3}, + [2523] = {.lex_state = 71, .external_lex_state = 3}, [2524] = {.lex_state = 71, .external_lex_state = 2}, - [2525] = {.lex_state = 71, .external_lex_state = 2}, - [2526] = {.lex_state = 71, .external_lex_state = 4}, + [2525] = {.lex_state = 71, .external_lex_state = 3}, + [2526] = {.lex_state = 71, .external_lex_state = 3}, [2527] = {.lex_state = 71, .external_lex_state = 3}, [2528] = {.lex_state = 71, .external_lex_state = 3}, [2529] = {.lex_state = 71, .external_lex_state = 3}, [2530] = {.lex_state = 71, .external_lex_state = 3}, - [2531] = {.lex_state = 71, .external_lex_state = 2}, - [2532] = {.lex_state = 71, .external_lex_state = 2}, + [2531] = {.lex_state = 71, .external_lex_state = 3}, + [2532] = {.lex_state = 71, .external_lex_state = 3}, [2533] = {.lex_state = 71, .external_lex_state = 3}, - [2534] = {.lex_state = 71, .external_lex_state = 2}, + [2534] = {.lex_state = 71, .external_lex_state = 3}, [2535] = {.lex_state = 71, .external_lex_state = 3}, [2536] = {.lex_state = 71, .external_lex_state = 3}, - [2537] = {.lex_state = 71, .external_lex_state = 2}, - [2538] = {.lex_state = 71, .external_lex_state = 2}, - [2539] = {.lex_state = 71, .external_lex_state = 3}, + [2537] = {.lex_state = 71, .external_lex_state = 3}, + [2538] = {.lex_state = 71, .external_lex_state = 3}, + [2539] = {.lex_state = 71, .external_lex_state = 4}, [2540] = {.lex_state = 71, .external_lex_state = 3}, [2541] = {.lex_state = 71, .external_lex_state = 3}, - [2542] = {.lex_state = 71, .external_lex_state = 2}, - [2543] = {.lex_state = 71, .external_lex_state = 2}, - [2544] = {.lex_state = 71, .external_lex_state = 2}, - [2545] = {.lex_state = 71, .external_lex_state = 2}, - [2546] = {.lex_state = 71, .external_lex_state = 2}, - [2547] = {.lex_state = 71, .external_lex_state = 2}, - [2548] = {.lex_state = 71, .external_lex_state = 2}, - [2549] = {.lex_state = 71, .external_lex_state = 2}, - [2550] = {.lex_state = 71, .external_lex_state = 2}, - [2551] = {.lex_state = 71, .external_lex_state = 2}, + [2542] = {.lex_state = 71, .external_lex_state = 3}, + [2543] = {.lex_state = 71, .external_lex_state = 4}, + [2544] = {.lex_state = 71, .external_lex_state = 4}, + [2545] = {.lex_state = 71, .external_lex_state = 4}, + [2546] = {.lex_state = 71, .external_lex_state = 3}, + [2547] = {.lex_state = 71, .external_lex_state = 3}, + [2548] = {.lex_state = 71, .external_lex_state = 3}, + [2549] = {.lex_state = 71, .external_lex_state = 4}, + [2550] = {.lex_state = 71, .external_lex_state = 3}, + [2551] = {.lex_state = 71, .external_lex_state = 4}, [2552] = {.lex_state = 71, .external_lex_state = 3}, - [2553] = {.lex_state = 71, .external_lex_state = 2}, - [2554] = {.lex_state = 71, .external_lex_state = 2}, - [2555] = {.lex_state = 71, .external_lex_state = 2}, - [2556] = {.lex_state = 71, .external_lex_state = 2}, - [2557] = {.lex_state = 71, .external_lex_state = 2}, - [2558] = {.lex_state = 71, .external_lex_state = 4}, - [2559] = {.lex_state = 71, .external_lex_state = 2}, - [2560] = {.lex_state = 71, .external_lex_state = 2}, - [2561] = {.lex_state = 71, .external_lex_state = 3}, - [2562] = {.lex_state = 71, .external_lex_state = 2}, + [2553] = {.lex_state = 71, .external_lex_state = 3}, + [2554] = {.lex_state = 71, .external_lex_state = 3}, + [2555] = {.lex_state = 71, .external_lex_state = 3}, + [2556] = {.lex_state = 71, .external_lex_state = 3}, + [2557] = {.lex_state = 71, .external_lex_state = 3}, + [2558] = {.lex_state = 71, .external_lex_state = 3}, + [2559] = {.lex_state = 71, .external_lex_state = 3}, + [2560] = {.lex_state = 71, .external_lex_state = 3}, + [2561] = {.lex_state = 71, .external_lex_state = 4}, + [2562] = {.lex_state = 71, .external_lex_state = 3}, [2563] = {.lex_state = 71, .external_lex_state = 3}, [2564] = {.lex_state = 71, .external_lex_state = 3}, [2565] = {.lex_state = 71, .external_lex_state = 3}, [2566] = {.lex_state = 71, .external_lex_state = 3}, - [2567] = {.lex_state = 71, .external_lex_state = 2}, - [2568] = {.lex_state = 71, .external_lex_state = 2}, - [2569] = {.lex_state = 71, .external_lex_state = 2}, - [2570] = {.lex_state = 71, .external_lex_state = 2}, - [2571] = {.lex_state = 71, .external_lex_state = 2}, - [2572] = {.lex_state = 71, .external_lex_state = 2}, - [2573] = {.lex_state = 71, .external_lex_state = 2}, - [2574] = {.lex_state = 71, .external_lex_state = 2}, - [2575] = {.lex_state = 71, .external_lex_state = 2}, - [2576] = {.lex_state = 71, .external_lex_state = 2}, - [2577] = {.lex_state = 71, .external_lex_state = 2}, - [2578] = {.lex_state = 71, .external_lex_state = 2}, + [2567] = {.lex_state = 71, .external_lex_state = 3}, + [2568] = {.lex_state = 71, .external_lex_state = 3}, + [2569] = {.lex_state = 71, .external_lex_state = 3}, + [2570] = {.lex_state = 71, .external_lex_state = 3}, + [2571] = {.lex_state = 71, .external_lex_state = 3}, + [2572] = {.lex_state = 71, .external_lex_state = 3}, + [2573] = {.lex_state = 71, .external_lex_state = 3}, + [2574] = {.lex_state = 71, .external_lex_state = 3}, + [2575] = {.lex_state = 71, .external_lex_state = 3}, + [2576] = {.lex_state = 71, .external_lex_state = 3}, + [2577] = {.lex_state = 71, .external_lex_state = 3}, + [2578] = {.lex_state = 71, .external_lex_state = 3}, [2579] = {.lex_state = 71, .external_lex_state = 2}, [2580] = {.lex_state = 71, .external_lex_state = 2}, [2581] = {.lex_state = 71, .external_lex_state = 3}, - [2582] = {.lex_state = 71, .external_lex_state = 3}, - [2583] = {.lex_state = 71, .external_lex_state = 3}, - [2584] = {.lex_state = 71, .external_lex_state = 2}, - [2585] = {.lex_state = 71, .external_lex_state = 4}, - [2586] = {.lex_state = 72}, - [2587] = {.lex_state = 71, .external_lex_state = 2}, + [2582] = {.lex_state = 71, .external_lex_state = 2}, + [2583] = {.lex_state = 72}, + [2584] = {.lex_state = 71, .external_lex_state = 3}, + [2585] = {.lex_state = 71, .external_lex_state = 3}, + [2586] = {.lex_state = 71, .external_lex_state = 2}, + [2587] = {.lex_state = 71, .external_lex_state = 3}, [2588] = {.lex_state = 71, .external_lex_state = 3}, - [2589] = {.lex_state = 71, .external_lex_state = 3}, - [2590] = {.lex_state = 71, .external_lex_state = 2}, + [2589] = {.lex_state = 71, .external_lex_state = 4}, + [2590] = {.lex_state = 71, .external_lex_state = 3}, [2591] = {.lex_state = 71, .external_lex_state = 3}, [2592] = {.lex_state = 71, .external_lex_state = 3}, [2593] = {.lex_state = 71, .external_lex_state = 3}, - [2594] = {.lex_state = 71, .external_lex_state = 2}, + [2594] = {.lex_state = 71, .external_lex_state = 3}, [2595] = {.lex_state = 71, .external_lex_state = 2}, [2596] = {.lex_state = 71, .external_lex_state = 2}, - [2597] = {.lex_state = 71, .external_lex_state = 3}, - [2598] = {.lex_state = 71, .external_lex_state = 3}, - [2599] = {.lex_state = 71, .external_lex_state = 3}, - [2600] = {.lex_state = 71, .external_lex_state = 4}, + [2597] = {.lex_state = 71, .external_lex_state = 2}, + [2598] = {.lex_state = 71, .external_lex_state = 2}, + [2599] = {.lex_state = 71, .external_lex_state = 2}, + [2600] = {.lex_state = 71, .external_lex_state = 2}, [2601] = {.lex_state = 71, .external_lex_state = 4}, - [2602] = {.lex_state = 71, .external_lex_state = 3}, - [2603] = {.lex_state = 71, .external_lex_state = 4}, - [2604] = {.lex_state = 71, .external_lex_state = 3}, - [2605] = {.lex_state = 71, .external_lex_state = 4}, - [2606] = {.lex_state = 71, .external_lex_state = 3}, - [2607] = {.lex_state = 71, .external_lex_state = 2}, - [2608] = {.lex_state = 71, .external_lex_state = 2}, - [2609] = {.lex_state = 71, .external_lex_state = 4}, + [2602] = {.lex_state = 71, .external_lex_state = 4}, + [2603] = {.lex_state = 71, .external_lex_state = 2}, + [2604] = {.lex_state = 71, .external_lex_state = 4}, + [2605] = {.lex_state = 71, .external_lex_state = 3}, + [2606] = {.lex_state = 71, .external_lex_state = 2}, + [2607] = {.lex_state = 71, .external_lex_state = 3}, + [2608] = {.lex_state = 71, .external_lex_state = 3}, + [2609] = {.lex_state = 71, .external_lex_state = 3}, [2610] = {.lex_state = 71, .external_lex_state = 3}, [2611] = {.lex_state = 71, .external_lex_state = 3}, [2612] = {.lex_state = 71, .external_lex_state = 3}, - [2613] = {.lex_state = 71, .external_lex_state = 3}, + [2613] = {.lex_state = 71, .external_lex_state = 4}, [2614] = {.lex_state = 71, .external_lex_state = 3}, - [2615] = {.lex_state = 71, .external_lex_state = 2}, + [2615] = {.lex_state = 71, .external_lex_state = 3}, [2616] = {.lex_state = 71, .external_lex_state = 3}, - [2617] = {.lex_state = 71, .external_lex_state = 2}, - [2618] = {.lex_state = 71, .external_lex_state = 2}, + [2617] = {.lex_state = 71, .external_lex_state = 3}, + [2618] = {.lex_state = 71, .external_lex_state = 3}, [2619] = {.lex_state = 71, .external_lex_state = 3}, - [2620] = {.lex_state = 71, .external_lex_state = 2}, - [2621] = {.lex_state = 4, .external_lex_state = 3}, + [2620] = {.lex_state = 71, .external_lex_state = 3}, + [2621] = {.lex_state = 71, .external_lex_state = 3}, [2622] = {.lex_state = 71, .external_lex_state = 3}, [2623] = {.lex_state = 71, .external_lex_state = 3}, - [2624] = {.lex_state = 71, .external_lex_state = 3}, - [2625] = {.lex_state = 71, .external_lex_state = 3}, + [2624] = {.lex_state = 71, .external_lex_state = 2}, + [2625] = {.lex_state = 71, .external_lex_state = 2}, [2626] = {.lex_state = 71, .external_lex_state = 2}, - [2627] = {.lex_state = 71, .external_lex_state = 3}, + [2627] = {.lex_state = 71, .external_lex_state = 2}, [2628] = {.lex_state = 71, .external_lex_state = 2}, [2629] = {.lex_state = 71, .external_lex_state = 2}, - [2630] = {.lex_state = 71, .external_lex_state = 3}, - [2631] = {.lex_state = 71, .external_lex_state = 3}, - [2632] = {.lex_state = 71, .external_lex_state = 3}, - [2633] = {.lex_state = 71, .external_lex_state = 3}, - [2634] = {.lex_state = 71, .external_lex_state = 3}, + [2630] = {.lex_state = 71, .external_lex_state = 2}, + [2631] = {.lex_state = 71, .external_lex_state = 2}, + [2632] = {.lex_state = 71, .external_lex_state = 2}, + [2633] = {.lex_state = 71, .external_lex_state = 2}, + [2634] = {.lex_state = 71, .external_lex_state = 2}, [2635] = {.lex_state = 71, .external_lex_state = 2}, [2636] = {.lex_state = 71, .external_lex_state = 2}, [2637] = {.lex_state = 71, .external_lex_state = 2}, @@ -8663,1118 +8662,1118 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2641] = {.lex_state = 71, .external_lex_state = 2}, [2642] = {.lex_state = 71, .external_lex_state = 2}, [2643] = {.lex_state = 71, .external_lex_state = 2}, - [2644] = {.lex_state = 71, .external_lex_state = 3}, - [2645] = {.lex_state = 71, .external_lex_state = 3}, + [2644] = {.lex_state = 71, .external_lex_state = 2}, + [2645] = {.lex_state = 71, .external_lex_state = 2}, [2646] = {.lex_state = 71, .external_lex_state = 2}, [2647] = {.lex_state = 71, .external_lex_state = 2}, - [2648] = {.lex_state = 5, .external_lex_state = 4}, + [2648] = {.lex_state = 71, .external_lex_state = 2}, [2649] = {.lex_state = 71, .external_lex_state = 2}, [2650] = {.lex_state = 71, .external_lex_state = 2}, - [2651] = {.lex_state = 71, .external_lex_state = 2}, - [2652] = {.lex_state = 71, .external_lex_state = 2}, - [2653] = {.lex_state = 71, .external_lex_state = 2}, - [2654] = {.lex_state = 71, .external_lex_state = 3}, + [2651] = {.lex_state = 71, .external_lex_state = 3}, + [2652] = {.lex_state = 71, .external_lex_state = 3}, + [2653] = {.lex_state = 71, .external_lex_state = 4}, + [2654] = {.lex_state = 5, .external_lex_state = 4}, [2655] = {.lex_state = 71, .external_lex_state = 3}, - [2656] = {.lex_state = 71, .external_lex_state = 3}, - [2657] = {.lex_state = 71, .external_lex_state = 2}, - [2658] = {.lex_state = 71, .external_lex_state = 3}, - [2659] = {.lex_state = 71, .external_lex_state = 3}, - [2660] = {.lex_state = 71, .external_lex_state = 3}, - [2661] = {.lex_state = 71, .external_lex_state = 2}, - [2662] = {.lex_state = 71, .external_lex_state = 3}, - [2663] = {.lex_state = 71, .external_lex_state = 3}, - [2664] = {.lex_state = 71, .external_lex_state = 3}, - [2665] = {.lex_state = 71, .external_lex_state = 3}, - [2666] = {.lex_state = 71, .external_lex_state = 3}, - [2667] = {.lex_state = 71, .external_lex_state = 3}, - [2668] = {.lex_state = 71, .external_lex_state = 3}, - [2669] = {.lex_state = 71, .external_lex_state = 3}, - [2670] = {.lex_state = 71, .external_lex_state = 3}, - [2671] = {.lex_state = 71, .external_lex_state = 2}, - [2672] = {.lex_state = 71, .external_lex_state = 3}, - [2673] = {.lex_state = 71, .external_lex_state = 3}, - [2674] = {.lex_state = 4, .external_lex_state = 3}, - [2675] = {.lex_state = 4, .external_lex_state = 3}, - [2676] = {.lex_state = 4, .external_lex_state = 3}, - [2677] = {.lex_state = 71, .external_lex_state = 4}, - [2678] = {.lex_state = 71, .external_lex_state = 4}, - [2679] = {.lex_state = 4, .external_lex_state = 3}, - [2680] = {.lex_state = 71, .external_lex_state = 3}, - [2681] = {.lex_state = 71, .external_lex_state = 3}, - [2682] = {.lex_state = 4, .external_lex_state = 3}, - [2683] = {.lex_state = 4, .external_lex_state = 3}, - [2684] = {.lex_state = 71, .external_lex_state = 3}, - [2685] = {.lex_state = 71, .external_lex_state = 3}, - [2686] = {.lex_state = 4, .external_lex_state = 3}, - [2687] = {.lex_state = 71, .external_lex_state = 4}, - [2688] = {.lex_state = 4, .external_lex_state = 3}, + [2656] = {.lex_state = 71, .external_lex_state = 2}, + [2657] = {.lex_state = 71, .external_lex_state = 4}, + [2658] = {.lex_state = 71, .external_lex_state = 2}, + [2659] = {.lex_state = 71, .external_lex_state = 2}, + [2660] = {.lex_state = 71, .external_lex_state = 2}, + [2661] = {.lex_state = 4, .external_lex_state = 2}, + [2662] = {.lex_state = 4, .external_lex_state = 2}, + [2663] = {.lex_state = 4, .external_lex_state = 2}, + [2664] = {.lex_state = 4, .external_lex_state = 2}, + [2665] = {.lex_state = 4, .external_lex_state = 2}, + [2666] = {.lex_state = 4, .external_lex_state = 2}, + [2667] = {.lex_state = 71, .external_lex_state = 2}, + [2668] = {.lex_state = 4, .external_lex_state = 2}, + [2669] = {.lex_state = 4, .external_lex_state = 2}, + [2670] = {.lex_state = 4, .external_lex_state = 2}, + [2671] = {.lex_state = 4, .external_lex_state = 2}, + [2672] = {.lex_state = 4, .external_lex_state = 2}, + [2673] = {.lex_state = 4, .external_lex_state = 2}, + [2674] = {.lex_state = 4, .external_lex_state = 2}, + [2675] = {.lex_state = 4, .external_lex_state = 2}, + [2676] = {.lex_state = 4, .external_lex_state = 2}, + [2677] = {.lex_state = 4, .external_lex_state = 2}, + [2678] = {.lex_state = 4, .external_lex_state = 2}, + [2679] = {.lex_state = 4, .external_lex_state = 2}, + [2680] = {.lex_state = 4, .external_lex_state = 2}, + [2681] = {.lex_state = 4, .external_lex_state = 2}, + [2682] = {.lex_state = 4, .external_lex_state = 2}, + [2683] = {.lex_state = 4, .external_lex_state = 2}, + [2684] = {.lex_state = 4, .external_lex_state = 2}, + [2685] = {.lex_state = 4, .external_lex_state = 2}, + [2686] = {.lex_state = 4, .external_lex_state = 2}, + [2687] = {.lex_state = 71, .external_lex_state = 3}, + [2688] = {.lex_state = 71, .external_lex_state = 2}, [2689] = {.lex_state = 71, .external_lex_state = 3}, - [2690] = {.lex_state = 4, .external_lex_state = 3}, - [2691] = {.lex_state = 4, .external_lex_state = 3}, - [2692] = {.lex_state = 4, .external_lex_state = 3}, - [2693] = {.lex_state = 71, .external_lex_state = 3}, + [2690] = {.lex_state = 71, .external_lex_state = 3}, + [2691] = {.lex_state = 4, .external_lex_state = 2}, + [2692] = {.lex_state = 71, .external_lex_state = 2}, + [2693] = {.lex_state = 71, .external_lex_state = 2}, [2694] = {.lex_state = 71, .external_lex_state = 3}, [2695] = {.lex_state = 71, .external_lex_state = 3}, - [2696] = {.lex_state = 71, .external_lex_state = 3}, - [2697] = {.lex_state = 71, .external_lex_state = 3}, - [2698] = {.lex_state = 71, .external_lex_state = 3}, - [2699] = {.lex_state = 71, .external_lex_state = 3}, - [2700] = {.lex_state = 71, .external_lex_state = 3}, + [2696] = {.lex_state = 71, .external_lex_state = 2}, + [2697] = {.lex_state = 71, .external_lex_state = 2}, + [2698] = {.lex_state = 71, .external_lex_state = 2}, + [2699] = {.lex_state = 71, .external_lex_state = 2}, + [2700] = {.lex_state = 71, .external_lex_state = 4}, [2701] = {.lex_state = 71, .external_lex_state = 3}, - [2702] = {.lex_state = 4, .external_lex_state = 3}, - [2703] = {.lex_state = 71, .external_lex_state = 3}, - [2704] = {.lex_state = 4, .external_lex_state = 3}, - [2705] = {.lex_state = 71, .external_lex_state = 3}, - [2706] = {.lex_state = 71, .external_lex_state = 3}, - [2707] = {.lex_state = 4, .external_lex_state = 3}, - [2708] = {.lex_state = 4, .external_lex_state = 3}, - [2709] = {.lex_state = 4, .external_lex_state = 3}, - [2710] = {.lex_state = 4, .external_lex_state = 3}, - [2711] = {.lex_state = 71, .external_lex_state = 4}, - [2712] = {.lex_state = 4, .external_lex_state = 3}, - [2713] = {.lex_state = 4, .external_lex_state = 3}, - [2714] = {.lex_state = 71, .external_lex_state = 3}, - [2715] = {.lex_state = 4, .external_lex_state = 3}, - [2716] = {.lex_state = 4, .external_lex_state = 3}, - [2717] = {.lex_state = 4, .external_lex_state = 3}, - [2718] = {.lex_state = 4, .external_lex_state = 3}, - [2719] = {.lex_state = 4, .external_lex_state = 3}, - [2720] = {.lex_state = 4, .external_lex_state = 3}, + [2702] = {.lex_state = 71, .external_lex_state = 2}, + [2703] = {.lex_state = 71, .external_lex_state = 2}, + [2704] = {.lex_state = 71, .external_lex_state = 3}, + [2705] = {.lex_state = 71, .external_lex_state = 4}, + [2706] = {.lex_state = 71, .external_lex_state = 2}, + [2707] = {.lex_state = 71, .external_lex_state = 4}, + [2708] = {.lex_state = 71, .external_lex_state = 2}, + [2709] = {.lex_state = 71, .external_lex_state = 2}, + [2710] = {.lex_state = 71, .external_lex_state = 2}, + [2711] = {.lex_state = 71, .external_lex_state = 2}, + [2712] = {.lex_state = 71, .external_lex_state = 2}, + [2713] = {.lex_state = 71, .external_lex_state = 2}, + [2714] = {.lex_state = 71, .external_lex_state = 2}, + [2715] = {.lex_state = 71, .external_lex_state = 2}, + [2716] = {.lex_state = 71, .external_lex_state = 2}, + [2717] = {.lex_state = 71, .external_lex_state = 2}, + [2718] = {.lex_state = 71, .external_lex_state = 2}, + [2719] = {.lex_state = 71, .external_lex_state = 2}, + [2720] = {.lex_state = 71, .external_lex_state = 4}, [2721] = {.lex_state = 71, .external_lex_state = 2}, [2722] = {.lex_state = 71, .external_lex_state = 2}, - [2723] = {.lex_state = 71, .external_lex_state = 3}, - [2724] = {.lex_state = 71, .external_lex_state = 3}, - [2725] = {.lex_state = 71, .external_lex_state = 3}, - [2726] = {.lex_state = 71, .external_lex_state = 3}, + [2723] = {.lex_state = 71, .external_lex_state = 2}, + [2724] = {.lex_state = 71, .external_lex_state = 2}, + [2725] = {.lex_state = 71, .external_lex_state = 2}, + [2726] = {.lex_state = 71, .external_lex_state = 2}, [2727] = {.lex_state = 71, .external_lex_state = 3}, - [2728] = {.lex_state = 71, .external_lex_state = 2}, + [2728] = {.lex_state = 71, .external_lex_state = 3}, [2729] = {.lex_state = 71, .external_lex_state = 2}, - [2730] = {.lex_state = 71, .external_lex_state = 3}, - [2731] = {.lex_state = 71, .external_lex_state = 4}, - [2732] = {.lex_state = 71, .external_lex_state = 4}, - [2733] = {.lex_state = 71, .external_lex_state = 4}, - [2734] = {.lex_state = 71, .external_lex_state = 4}, - [2735] = {.lex_state = 71, .external_lex_state = 4}, - [2736] = {.lex_state = 71, .external_lex_state = 3}, - [2737] = {.lex_state = 71, .external_lex_state = 3}, - [2738] = {.lex_state = 71, .external_lex_state = 3}, - [2739] = {.lex_state = 71, .external_lex_state = 3}, - [2740] = {.lex_state = 71, .external_lex_state = 3}, - [2741] = {.lex_state = 71, .external_lex_state = 3}, - [2742] = {.lex_state = 71, .external_lex_state = 3}, + [2730] = {.lex_state = 71, .external_lex_state = 2}, + [2731] = {.lex_state = 71, .external_lex_state = 2}, + [2732] = {.lex_state = 71, .external_lex_state = 2}, + [2733] = {.lex_state = 71, .external_lex_state = 2}, + [2734] = {.lex_state = 71, .external_lex_state = 2}, + [2735] = {.lex_state = 71, .external_lex_state = 2}, + [2736] = {.lex_state = 71, .external_lex_state = 2}, + [2737] = {.lex_state = 71, .external_lex_state = 2}, + [2738] = {.lex_state = 71, .external_lex_state = 2}, + [2739] = {.lex_state = 71, .external_lex_state = 2}, + [2740] = {.lex_state = 71, .external_lex_state = 2}, + [2741] = {.lex_state = 71, .external_lex_state = 2}, + [2742] = {.lex_state = 71, .external_lex_state = 2}, [2743] = {.lex_state = 71, .external_lex_state = 4}, - [2744] = {.lex_state = 71, .external_lex_state = 4}, - [2745] = {.lex_state = 71, .external_lex_state = 3}, + [2744] = {.lex_state = 71, .external_lex_state = 3}, + [2745] = {.lex_state = 71, .external_lex_state = 2}, [2746] = {.lex_state = 71, .external_lex_state = 4}, - [2747] = {.lex_state = 71, .external_lex_state = 3}, - [2748] = {.lex_state = 71, .external_lex_state = 3}, - [2749] = {.lex_state = 71, .external_lex_state = 3}, - [2750] = {.lex_state = 71, .external_lex_state = 3}, - [2751] = {.lex_state = 71, .external_lex_state = 3}, - [2752] = {.lex_state = 71, .external_lex_state = 3}, + [2747] = {.lex_state = 71, .external_lex_state = 2}, + [2748] = {.lex_state = 71, .external_lex_state = 2}, + [2749] = {.lex_state = 71, .external_lex_state = 4}, + [2750] = {.lex_state = 71, .external_lex_state = 4}, + [2751] = {.lex_state = 71, .external_lex_state = 2}, + [2752] = {.lex_state = 71, .external_lex_state = 4}, [2753] = {.lex_state = 71, .external_lex_state = 2}, - [2754] = {.lex_state = 71, .external_lex_state = 3}, - [2755] = {.lex_state = 71, .external_lex_state = 3}, - [2756] = {.lex_state = 71, .external_lex_state = 3}, - [2757] = {.lex_state = 71, .external_lex_state = 3}, - [2758] = {.lex_state = 71, .external_lex_state = 3}, - [2759] = {.lex_state = 71, .external_lex_state = 3}, - [2760] = {.lex_state = 71, .external_lex_state = 3}, - [2761] = {.lex_state = 71, .external_lex_state = 2}, - [2762] = {.lex_state = 71, .external_lex_state = 4}, - [2763] = {.lex_state = 4, .external_lex_state = 3}, - [2764] = {.lex_state = 71, .external_lex_state = 3}, - [2765] = {.lex_state = 71, .external_lex_state = 3}, - [2766] = {.lex_state = 4, .external_lex_state = 3}, - [2767] = {.lex_state = 4, .external_lex_state = 3}, - [2768] = {.lex_state = 4, .external_lex_state = 3}, - [2769] = {.lex_state = 71, .external_lex_state = 3}, - [2770] = {.lex_state = 4, .external_lex_state = 3}, - [2771] = {.lex_state = 4, .external_lex_state = 3}, + [2754] = {.lex_state = 71, .external_lex_state = 2}, + [2755] = {.lex_state = 71, .external_lex_state = 2}, + [2756] = {.lex_state = 71, .external_lex_state = 2}, + [2757] = {.lex_state = 71, .external_lex_state = 4}, + [2758] = {.lex_state = 71, .external_lex_state = 4}, + [2759] = {.lex_state = 71, .external_lex_state = 4}, + [2760] = {.lex_state = 4, .external_lex_state = 2}, + [2761] = {.lex_state = 71, .external_lex_state = 4}, + [2762] = {.lex_state = 71, .external_lex_state = 3}, + [2763] = {.lex_state = 71, .external_lex_state = 3}, + [2764] = {.lex_state = 71, .external_lex_state = 2}, + [2765] = {.lex_state = 71, .external_lex_state = 2}, + [2766] = {.lex_state = 71, .external_lex_state = 4}, + [2767] = {.lex_state = 71, .external_lex_state = 3}, + [2768] = {.lex_state = 71, .external_lex_state = 4}, + [2769] = {.lex_state = 71, .external_lex_state = 4}, + [2770] = {.lex_state = 71, .external_lex_state = 4}, + [2771] = {.lex_state = 71, .external_lex_state = 4}, [2772] = {.lex_state = 71, .external_lex_state = 4}, [2773] = {.lex_state = 71, .external_lex_state = 4}, [2774] = {.lex_state = 71, .external_lex_state = 4}, - [2775] = {.lex_state = 71, .external_lex_state = 2}, - [2776] = {.lex_state = 71, .external_lex_state = 4}, - [2777] = {.lex_state = 71, .external_lex_state = 3}, + [2775] = {.lex_state = 71, .external_lex_state = 3}, + [2776] = {.lex_state = 71, .external_lex_state = 3}, + [2777] = {.lex_state = 71, .external_lex_state = 2}, [2778] = {.lex_state = 71, .external_lex_state = 4}, [2779] = {.lex_state = 71, .external_lex_state = 4}, - [2780] = {.lex_state = 71, .external_lex_state = 4}, - [2781] = {.lex_state = 4, .external_lex_state = 3}, - [2782] = {.lex_state = 71, .external_lex_state = 4}, - [2783] = {.lex_state = 71, .external_lex_state = 4}, + [2780] = {.lex_state = 71, .external_lex_state = 2}, + [2781] = {.lex_state = 71, .external_lex_state = 2}, + [2782] = {.lex_state = 71, .external_lex_state = 2}, + [2783] = {.lex_state = 71, .external_lex_state = 2}, [2784] = {.lex_state = 71, .external_lex_state = 4}, - [2785] = {.lex_state = 71, .external_lex_state = 4}, - [2786] = {.lex_state = 4, .external_lex_state = 3}, - [2787] = {.lex_state = 4, .external_lex_state = 3}, + [2785] = {.lex_state = 71, .external_lex_state = 3}, + [2786] = {.lex_state = 71, .external_lex_state = 2}, + [2787] = {.lex_state = 71, .external_lex_state = 2}, [2788] = {.lex_state = 71, .external_lex_state = 4}, - [2789] = {.lex_state = 4, .external_lex_state = 3}, - [2790] = {.lex_state = 71, .external_lex_state = 4}, + [2789] = {.lex_state = 71, .external_lex_state = 2}, + [2790] = {.lex_state = 71, .external_lex_state = 2}, [2791] = {.lex_state = 71, .external_lex_state = 4}, [2792] = {.lex_state = 71, .external_lex_state = 4}, - [2793] = {.lex_state = 71, .external_lex_state = 4}, - [2794] = {.lex_state = 4, .external_lex_state = 3}, - [2795] = {.lex_state = 4, .external_lex_state = 3}, - [2796] = {.lex_state = 71, .external_lex_state = 4}, - [2797] = {.lex_state = 71, .external_lex_state = 4}, + [2793] = {.lex_state = 71, .external_lex_state = 2}, + [2794] = {.lex_state = 71, .external_lex_state = 2}, + [2795] = {.lex_state = 71, .external_lex_state = 2}, + [2796] = {.lex_state = 71, .external_lex_state = 2}, + [2797] = {.lex_state = 71, .external_lex_state = 2}, [2798] = {.lex_state = 71, .external_lex_state = 4}, - [2799] = {.lex_state = 71, .external_lex_state = 4}, + [2799] = {.lex_state = 71, .external_lex_state = 2}, [2800] = {.lex_state = 71, .external_lex_state = 4}, [2801] = {.lex_state = 71, .external_lex_state = 4}, - [2802] = {.lex_state = 71, .external_lex_state = 4}, - [2803] = {.lex_state = 71, .external_lex_state = 4}, - [2804] = {.lex_state = 4, .external_lex_state = 3}, + [2802] = {.lex_state = 71, .external_lex_state = 2}, + [2803] = {.lex_state = 71, .external_lex_state = 2}, + [2804] = {.lex_state = 71, .external_lex_state = 2}, [2805] = {.lex_state = 71, .external_lex_state = 4}, - [2806] = {.lex_state = 71, .external_lex_state = 4}, - [2807] = {.lex_state = 71, .external_lex_state = 3}, + [2806] = {.lex_state = 71, .external_lex_state = 2}, + [2807] = {.lex_state = 71, .external_lex_state = 2}, [2808] = {.lex_state = 71, .external_lex_state = 2}, - [2809] = {.lex_state = 4, .external_lex_state = 3}, - [2810] = {.lex_state = 71, .external_lex_state = 2}, - [2811] = {.lex_state = 71, .external_lex_state = 4}, - [2812] = {.lex_state = 71, .external_lex_state = 4}, + [2809] = {.lex_state = 71, .external_lex_state = 2}, + [2810] = {.lex_state = 71, .external_lex_state = 4}, + [2811] = {.lex_state = 71, .external_lex_state = 2}, + [2812] = {.lex_state = 71, .external_lex_state = 2}, [2813] = {.lex_state = 71, .external_lex_state = 4}, - [2814] = {.lex_state = 4, .external_lex_state = 3}, + [2814] = {.lex_state = 71, .external_lex_state = 4}, [2815] = {.lex_state = 71, .external_lex_state = 4}, - [2816] = {.lex_state = 71, .external_lex_state = 4}, - [2817] = {.lex_state = 71, .external_lex_state = 2}, - [2818] = {.lex_state = 71, .external_lex_state = 4}, - [2819] = {.lex_state = 71, .external_lex_state = 4}, + [2816] = {.lex_state = 71, .external_lex_state = 2}, + [2817] = {.lex_state = 71, .external_lex_state = 4}, + [2818] = {.lex_state = 71, .external_lex_state = 2}, + [2819] = {.lex_state = 71, .external_lex_state = 2}, [2820] = {.lex_state = 71, .external_lex_state = 2}, - [2821] = {.lex_state = 71, .external_lex_state = 4}, - [2822] = {.lex_state = 71, .external_lex_state = 4}, - [2823] = {.lex_state = 71, .external_lex_state = 4}, + [2821] = {.lex_state = 71, .external_lex_state = 3}, + [2822] = {.lex_state = 71, .external_lex_state = 3}, + [2823] = {.lex_state = 71, .external_lex_state = 3}, [2824] = {.lex_state = 71, .external_lex_state = 4}, - [2825] = {.lex_state = 71, .external_lex_state = 2}, - [2826] = {.lex_state = 71, .external_lex_state = 3}, - [2827] = {.lex_state = 71, .external_lex_state = 4}, - [2828] = {.lex_state = 71, .external_lex_state = 4}, + [2825] = {.lex_state = 71, .external_lex_state = 4}, + [2826] = {.lex_state = 71, .external_lex_state = 4}, + [2827] = {.lex_state = 71, .external_lex_state = 3}, + [2828] = {.lex_state = 71, .external_lex_state = 2}, [2829] = {.lex_state = 71, .external_lex_state = 4}, - [2830] = {.lex_state = 71, .external_lex_state = 2}, - [2831] = {.lex_state = 71, .external_lex_state = 4}, - [2832] = {.lex_state = 71, .external_lex_state = 4}, - [2833] = {.lex_state = 71, .external_lex_state = 2}, - [2834] = {.lex_state = 71, .external_lex_state = 4}, - [2835] = {.lex_state = 4, .external_lex_state = 2}, - [2836] = {.lex_state = 71, .external_lex_state = 4}, + [2830] = {.lex_state = 71, .external_lex_state = 4}, + [2831] = {.lex_state = 71, .external_lex_state = 3}, + [2832] = {.lex_state = 71, .external_lex_state = 3}, + [2833] = {.lex_state = 71, .external_lex_state = 3}, + [2834] = {.lex_state = 71, .external_lex_state = 2}, + [2835] = {.lex_state = 71, .external_lex_state = 3}, + [2836] = {.lex_state = 71, .external_lex_state = 3}, [2837] = {.lex_state = 71, .external_lex_state = 3}, [2838] = {.lex_state = 71, .external_lex_state = 4}, [2839] = {.lex_state = 71, .external_lex_state = 4}, [2840] = {.lex_state = 71, .external_lex_state = 4}, [2841] = {.lex_state = 71, .external_lex_state = 4}, [2842] = {.lex_state = 71, .external_lex_state = 4}, - [2843] = {.lex_state = 71, .external_lex_state = 4}, + [2843] = {.lex_state = 71, .external_lex_state = 3}, [2844] = {.lex_state = 71, .external_lex_state = 4}, [2845] = {.lex_state = 71, .external_lex_state = 4}, [2846] = {.lex_state = 71, .external_lex_state = 4}, - [2847] = {.lex_state = 71, .external_lex_state = 4}, - [2848] = {.lex_state = 71, .external_lex_state = 3}, + [2847] = {.lex_state = 71, .external_lex_state = 2}, + [2848] = {.lex_state = 71, .external_lex_state = 2}, [2849] = {.lex_state = 71, .external_lex_state = 4}, - [2850] = {.lex_state = 71, .external_lex_state = 3}, - [2851] = {.lex_state = 71, .external_lex_state = 4}, + [2850] = {.lex_state = 71, .external_lex_state = 4}, + [2851] = {.lex_state = 71, .external_lex_state = 2}, [2852] = {.lex_state = 71, .external_lex_state = 4}, [2853] = {.lex_state = 71, .external_lex_state = 4}, [2854] = {.lex_state = 71, .external_lex_state = 4}, [2855] = {.lex_state = 71, .external_lex_state = 4}, [2856] = {.lex_state = 71, .external_lex_state = 4}, - [2857] = {.lex_state = 71, .external_lex_state = 2}, - [2858] = {.lex_state = 71, .external_lex_state = 4}, + [2857] = {.lex_state = 71, .external_lex_state = 4}, + [2858] = {.lex_state = 71, .external_lex_state = 3}, [2859] = {.lex_state = 71, .external_lex_state = 3}, [2860] = {.lex_state = 71, .external_lex_state = 4}, - [2861] = {.lex_state = 71, .external_lex_state = 4}, - [2862] = {.lex_state = 71, .external_lex_state = 3}, + [2861] = {.lex_state = 71, .external_lex_state = 2}, + [2862] = {.lex_state = 71, .external_lex_state = 4}, [2863] = {.lex_state = 71, .external_lex_state = 3}, - [2864] = {.lex_state = 71, .external_lex_state = 4}, + [2864] = {.lex_state = 71, .external_lex_state = 3}, [2865] = {.lex_state = 71, .external_lex_state = 4}, - [2866] = {.lex_state = 71, .external_lex_state = 4}, - [2867] = {.lex_state = 71, .external_lex_state = 4}, - [2868] = {.lex_state = 4, .external_lex_state = 3}, - [2869] = {.lex_state = 71, .external_lex_state = 4}, - [2870] = {.lex_state = 71, .external_lex_state = 4}, - [2871] = {.lex_state = 4, .external_lex_state = 3}, - [2872] = {.lex_state = 71, .external_lex_state = 4}, + [2866] = {.lex_state = 71, .external_lex_state = 3}, + [2867] = {.lex_state = 71, .external_lex_state = 2}, + [2868] = {.lex_state = 71, .external_lex_state = 2}, + [2869] = {.lex_state = 71, .external_lex_state = 2}, + [2870] = {.lex_state = 71, .external_lex_state = 2}, + [2871] = {.lex_state = 71, .external_lex_state = 3}, + [2872] = {.lex_state = 71, .external_lex_state = 2}, [2873] = {.lex_state = 71, .external_lex_state = 4}, - [2874] = {.lex_state = 4, .external_lex_state = 3}, - [2875] = {.lex_state = 71, .external_lex_state = 4}, - [2876] = {.lex_state = 4, .external_lex_state = 3}, - [2877] = {.lex_state = 4, .external_lex_state = 3}, - [2878] = {.lex_state = 71, .external_lex_state = 4}, - [2879] = {.lex_state = 71, .external_lex_state = 4}, + [2874] = {.lex_state = 71, .external_lex_state = 2}, + [2875] = {.lex_state = 4, .external_lex_state = 2}, + [2876] = {.lex_state = 71, .external_lex_state = 2}, + [2877] = {.lex_state = 71, .external_lex_state = 2}, + [2878] = {.lex_state = 71, .external_lex_state = 2}, + [2879] = {.lex_state = 71, .external_lex_state = 2}, [2880] = {.lex_state = 71, .external_lex_state = 2}, - [2881] = {.lex_state = 71, .external_lex_state = 4}, - [2882] = {.lex_state = 71, .external_lex_state = 3}, - [2883] = {.lex_state = 71, .external_lex_state = 3}, + [2881] = {.lex_state = 71, .external_lex_state = 2}, + [2882] = {.lex_state = 71, .external_lex_state = 4}, + [2883] = {.lex_state = 71, .external_lex_state = 4}, [2884] = {.lex_state = 71, .external_lex_state = 4}, - [2885] = {.lex_state = 71, .external_lex_state = 3}, - [2886] = {.lex_state = 71, .external_lex_state = 3}, - [2887] = {.lex_state = 71, .external_lex_state = 3}, - [2888] = {.lex_state = 71, .external_lex_state = 3}, - [2889] = {.lex_state = 71, .external_lex_state = 4}, - [2890] = {.lex_state = 71, .external_lex_state = 4}, - [2891] = {.lex_state = 71, .external_lex_state = 4}, - [2892] = {.lex_state = 71, .external_lex_state = 3}, - [2893] = {.lex_state = 71, .external_lex_state = 3}, - [2894] = {.lex_state = 71, .external_lex_state = 3}, - [2895] = {.lex_state = 4, .external_lex_state = 3}, - [2896] = {.lex_state = 71, .external_lex_state = 3}, - [2897] = {.lex_state = 71, .external_lex_state = 3}, + [2885] = {.lex_state = 71, .external_lex_state = 4}, + [2886] = {.lex_state = 71, .external_lex_state = 4}, + [2887] = {.lex_state = 71, .external_lex_state = 4}, + [2888] = {.lex_state = 71, .external_lex_state = 2}, + [2889] = {.lex_state = 71, .external_lex_state = 2}, + [2890] = {.lex_state = 71, .external_lex_state = 2}, + [2891] = {.lex_state = 71, .external_lex_state = 2}, + [2892] = {.lex_state = 71, .external_lex_state = 2}, + [2893] = {.lex_state = 71, .external_lex_state = 2}, + [2894] = {.lex_state = 71, .external_lex_state = 2}, + [2895] = {.lex_state = 71, .external_lex_state = 2}, + [2896] = {.lex_state = 71, .external_lex_state = 2}, + [2897] = {.lex_state = 71, .external_lex_state = 2}, [2898] = {.lex_state = 71, .external_lex_state = 2}, - [2899] = {.lex_state = 71, .external_lex_state = 3}, - [2900] = {.lex_state = 71, .external_lex_state = 4}, - [2901] = {.lex_state = 71, .external_lex_state = 4}, - [2902] = {.lex_state = 71, .external_lex_state = 3}, - [2903] = {.lex_state = 71, .external_lex_state = 4}, - [2904] = {.lex_state = 71, .external_lex_state = 4}, - [2905] = {.lex_state = 71, .external_lex_state = 3}, - [2906] = {.lex_state = 71, .external_lex_state = 3}, - [2907] = {.lex_state = 71, .external_lex_state = 2}, - [2908] = {.lex_state = 71, .external_lex_state = 4}, - [2909] = {.lex_state = 71, .external_lex_state = 4}, - [2910] = {.lex_state = 71, .external_lex_state = 4}, - [2911] = {.lex_state = 71, .external_lex_state = 4}, - [2912] = {.lex_state = 71, .external_lex_state = 2}, - [2913] = {.lex_state = 71, .external_lex_state = 3}, - [2914] = {.lex_state = 71, .external_lex_state = 2}, + [2899] = {.lex_state = 71, .external_lex_state = 2}, + [2900] = {.lex_state = 71, .external_lex_state = 2}, + [2901] = {.lex_state = 71, .external_lex_state = 2}, + [2902] = {.lex_state = 71, .external_lex_state = 2}, + [2903] = {.lex_state = 4, .external_lex_state = 2}, + [2904] = {.lex_state = 4, .external_lex_state = 2}, + [2905] = {.lex_state = 71, .external_lex_state = 2}, + [2906] = {.lex_state = 4, .external_lex_state = 2}, + [2907] = {.lex_state = 4, .external_lex_state = 2}, + [2908] = {.lex_state = 4, .external_lex_state = 2}, + [2909] = {.lex_state = 71, .external_lex_state = 3}, + [2910] = {.lex_state = 71, .external_lex_state = 2}, + [2911] = {.lex_state = 4, .external_lex_state = 2}, + [2912] = {.lex_state = 71, .external_lex_state = 4}, + [2913] = {.lex_state = 71, .external_lex_state = 4}, + [2914] = {.lex_state = 71, .external_lex_state = 3}, [2915] = {.lex_state = 71, .external_lex_state = 3}, - [2916] = {.lex_state = 71, .external_lex_state = 4}, - [2917] = {.lex_state = 71, .external_lex_state = 4}, - [2918] = {.lex_state = 71, .external_lex_state = 2}, - [2919] = {.lex_state = 71, .external_lex_state = 4}, + [2916] = {.lex_state = 71, .external_lex_state = 3}, + [2917] = {.lex_state = 71, .external_lex_state = 3}, + [2918] = {.lex_state = 71, .external_lex_state = 3}, + [2919] = {.lex_state = 71, .external_lex_state = 3}, [2920] = {.lex_state = 71, .external_lex_state = 3}, - [2921] = {.lex_state = 71, .external_lex_state = 3}, - [2922] = {.lex_state = 71, .external_lex_state = 2}, - [2923] = {.lex_state = 71, .external_lex_state = 2}, - [2924] = {.lex_state = 71, .external_lex_state = 2}, + [2921] = {.lex_state = 71, .external_lex_state = 4}, + [2922] = {.lex_state = 71, .external_lex_state = 3}, + [2923] = {.lex_state = 71, .external_lex_state = 4}, + [2924] = {.lex_state = 71, .external_lex_state = 3}, [2925] = {.lex_state = 71, .external_lex_state = 3}, - [2926] = {.lex_state = 71, .external_lex_state = 2}, - [2927] = {.lex_state = 71, .external_lex_state = 4}, - [2928] = {.lex_state = 71, .external_lex_state = 3}, - [2929] = {.lex_state = 71, .external_lex_state = 3}, - [2930] = {.lex_state = 71, .external_lex_state = 2}, - [2931] = {.lex_state = 71, .external_lex_state = 3}, - [2932] = {.lex_state = 71, .external_lex_state = 3}, - [2933] = {.lex_state = 71, .external_lex_state = 3}, - [2934] = {.lex_state = 5, .external_lex_state = 3}, - [2935] = {.lex_state = 71, .external_lex_state = 3}, - [2936] = {.lex_state = 71, .external_lex_state = 2}, - [2937] = {.lex_state = 71, .external_lex_state = 3}, - [2938] = {.lex_state = 71, .external_lex_state = 3}, + [2926] = {.lex_state = 5, .external_lex_state = 2}, + [2927] = {.lex_state = 4, .external_lex_state = 3}, + [2928] = {.lex_state = 71, .external_lex_state = 4}, + [2929] = {.lex_state = 71, .external_lex_state = 4}, + [2930] = {.lex_state = 71, .external_lex_state = 4}, + [2931] = {.lex_state = 71, .external_lex_state = 4}, + [2932] = {.lex_state = 71, .external_lex_state = 4}, + [2933] = {.lex_state = 71, .external_lex_state = 4}, + [2934] = {.lex_state = 71, .external_lex_state = 4}, + [2935] = {.lex_state = 71, .external_lex_state = 4}, + [2936] = {.lex_state = 71, .external_lex_state = 4}, + [2937] = {.lex_state = 4, .external_lex_state = 2}, + [2938] = {.lex_state = 71, .external_lex_state = 2}, [2939] = {.lex_state = 71, .external_lex_state = 4}, - [2940] = {.lex_state = 71, .external_lex_state = 4}, - [2941] = {.lex_state = 71, .external_lex_state = 2}, + [2940] = {.lex_state = 4, .external_lex_state = 2}, + [2941] = {.lex_state = 71, .external_lex_state = 4}, [2942] = {.lex_state = 71, .external_lex_state = 4}, [2943] = {.lex_state = 71, .external_lex_state = 2}, [2944] = {.lex_state = 71, .external_lex_state = 4}, [2945] = {.lex_state = 71, .external_lex_state = 4}, - [2946] = {.lex_state = 71, .external_lex_state = 2}, - [2947] = {.lex_state = 71, .external_lex_state = 2}, - [2948] = {.lex_state = 71, .external_lex_state = 4}, + [2946] = {.lex_state = 71, .external_lex_state = 4}, + [2947] = {.lex_state = 71, .external_lex_state = 4}, + [2948] = {.lex_state = 71, .external_lex_state = 3}, [2949] = {.lex_state = 71, .external_lex_state = 4}, - [2950] = {.lex_state = 71, .external_lex_state = 2}, - [2951] = {.lex_state = 71, .external_lex_state = 2}, + [2950] = {.lex_state = 71, .external_lex_state = 4}, + [2951] = {.lex_state = 71, .external_lex_state = 4}, [2952] = {.lex_state = 71, .external_lex_state = 3}, [2953] = {.lex_state = 71, .external_lex_state = 3}, - [2954] = {.lex_state = 71, .external_lex_state = 3}, - [2955] = {.lex_state = 71, .external_lex_state = 3}, - [2956] = {.lex_state = 71, .external_lex_state = 3}, - [2957] = {.lex_state = 71, .external_lex_state = 3}, - [2958] = {.lex_state = 71, .external_lex_state = 3}, - [2959] = {.lex_state = 4, .external_lex_state = 3}, - [2960] = {.lex_state = 71, .external_lex_state = 3}, - [2961] = {.lex_state = 71, .external_lex_state = 2}, - [2962] = {.lex_state = 71, .external_lex_state = 2}, - [2963] = {.lex_state = 71, .external_lex_state = 2}, - [2964] = {.lex_state = 71, .external_lex_state = 2}, - [2965] = {.lex_state = 71, .external_lex_state = 4}, - [2966] = {.lex_state = 71, .external_lex_state = 2}, - [2967] = {.lex_state = 71, .external_lex_state = 3}, - [2968] = {.lex_state = 71, .external_lex_state = 4}, - [2969] = {.lex_state = 71, .external_lex_state = 2}, - [2970] = {.lex_state = 71, .external_lex_state = 3}, + [2954] = {.lex_state = 71, .external_lex_state = 4}, + [2955] = {.lex_state = 4, .external_lex_state = 2}, + [2956] = {.lex_state = 4, .external_lex_state = 2}, + [2957] = {.lex_state = 71, .external_lex_state = 4}, + [2958] = {.lex_state = 71, .external_lex_state = 4}, + [2959] = {.lex_state = 71, .external_lex_state = 4}, + [2960] = {.lex_state = 71, .external_lex_state = 4}, + [2961] = {.lex_state = 71, .external_lex_state = 4}, + [2962] = {.lex_state = 71, .external_lex_state = 4}, + [2963] = {.lex_state = 71, .external_lex_state = 4}, + [2964] = {.lex_state = 71, .external_lex_state = 4}, + [2965] = {.lex_state = 4, .external_lex_state = 2}, + [2966] = {.lex_state = 71, .external_lex_state = 4}, + [2967] = {.lex_state = 71, .external_lex_state = 4}, + [2968] = {.lex_state = 4, .external_lex_state = 2}, + [2969] = {.lex_state = 71, .external_lex_state = 4}, + [2970] = {.lex_state = 71, .external_lex_state = 4}, [2971] = {.lex_state = 71, .external_lex_state = 4}, [2972] = {.lex_state = 71, .external_lex_state = 3}, - [2973] = {.lex_state = 71, .external_lex_state = 3}, + [2973] = {.lex_state = 71, .external_lex_state = 4}, [2974] = {.lex_state = 71, .external_lex_state = 4}, [2975] = {.lex_state = 71, .external_lex_state = 4}, [2976] = {.lex_state = 71, .external_lex_state = 4}, - [2977] = {.lex_state = 71, .external_lex_state = 3}, - [2978] = {.lex_state = 71, .external_lex_state = 3}, - [2979] = {.lex_state = 71, .external_lex_state = 3}, - [2980] = {.lex_state = 71, .external_lex_state = 3}, - [2981] = {.lex_state = 71, .external_lex_state = 3}, - [2982] = {.lex_state = 71, .external_lex_state = 3}, + [2977] = {.lex_state = 71, .external_lex_state = 4}, + [2978] = {.lex_state = 71, .external_lex_state = 4}, + [2979] = {.lex_state = 4, .external_lex_state = 2}, + [2980] = {.lex_state = 71, .external_lex_state = 4}, + [2981] = {.lex_state = 4, .external_lex_state = 2}, + [2982] = {.lex_state = 71, .external_lex_state = 4}, [2983] = {.lex_state = 71, .external_lex_state = 4}, - [2984] = {.lex_state = 71, .external_lex_state = 3}, + [2984] = {.lex_state = 4, .external_lex_state = 2}, [2985] = {.lex_state = 71, .external_lex_state = 4}, [2986] = {.lex_state = 71, .external_lex_state = 4}, - [2987] = {.lex_state = 71, .external_lex_state = 2}, - [2988] = {.lex_state = 71, .external_lex_state = 3}, + [2987] = {.lex_state = 71, .external_lex_state = 4}, + [2988] = {.lex_state = 4, .external_lex_state = 2}, [2989] = {.lex_state = 71, .external_lex_state = 4}, [2990] = {.lex_state = 71, .external_lex_state = 4}, - [2991] = {.lex_state = 71, .external_lex_state = 3}, - [2992] = {.lex_state = 71, .external_lex_state = 3}, + [2991] = {.lex_state = 71, .external_lex_state = 4}, + [2992] = {.lex_state = 71, .external_lex_state = 4}, [2993] = {.lex_state = 71, .external_lex_state = 4}, - [2994] = {.lex_state = 71, .external_lex_state = 3}, - [2995] = {.lex_state = 71, .external_lex_state = 4}, - [2996] = {.lex_state = 71, .external_lex_state = 4}, + [2994] = {.lex_state = 71, .external_lex_state = 4}, + [2995] = {.lex_state = 4, .external_lex_state = 2}, + [2996] = {.lex_state = 4, .external_lex_state = 2}, [2997] = {.lex_state = 71, .external_lex_state = 4}, - [2998] = {.lex_state = 4, .external_lex_state = 3}, - [2999] = {.lex_state = 4, .external_lex_state = 3}, - [3000] = {.lex_state = 4, .external_lex_state = 3}, - [3001] = {.lex_state = 71, .external_lex_state = 3}, - [3002] = {.lex_state = 4, .external_lex_state = 3}, - [3003] = {.lex_state = 4, .external_lex_state = 3}, - [3004] = {.lex_state = 71, .external_lex_state = 3}, - [3005] = {.lex_state = 4, .external_lex_state = 3}, - [3006] = {.lex_state = 71, .external_lex_state = 2}, - [3007] = {.lex_state = 71, .external_lex_state = 3}, - [3008] = {.lex_state = 71, .external_lex_state = 4}, + [2998] = {.lex_state = 4, .external_lex_state = 2}, + [2999] = {.lex_state = 4, .external_lex_state = 2}, + [3000] = {.lex_state = 71, .external_lex_state = 4}, + [3001] = {.lex_state = 4, .external_lex_state = 2}, + [3002] = {.lex_state = 4, .external_lex_state = 2}, + [3003] = {.lex_state = 4, .external_lex_state = 2}, + [3004] = {.lex_state = 71, .external_lex_state = 4}, + [3005] = {.lex_state = 71, .external_lex_state = 4}, + [3006] = {.lex_state = 71, .external_lex_state = 4}, + [3007] = {.lex_state = 4, .external_lex_state = 2}, + [3008] = {.lex_state = 4, .external_lex_state = 2}, [3009] = {.lex_state = 71, .external_lex_state = 2}, - [3010] = {.lex_state = 71, .external_lex_state = 2}, + [3010] = {.lex_state = 4, .external_lex_state = 2}, [3011] = {.lex_state = 71, .external_lex_state = 2}, - [3012] = {.lex_state = 4, .external_lex_state = 3}, - [3013] = {.lex_state = 71, .external_lex_state = 3}, - [3014] = {.lex_state = 71, .external_lex_state = 2}, - [3015] = {.lex_state = 71, .external_lex_state = 2}, - [3016] = {.lex_state = 72, .external_lex_state = 5}, - [3017] = {.lex_state = 11}, - [3018] = {.lex_state = 71, .external_lex_state = 2}, - [3019] = {.lex_state = 71, .external_lex_state = 3}, - [3020] = {.lex_state = 11}, - [3021] = {.lex_state = 72, .external_lex_state = 5}, - [3022] = {.lex_state = 71, .external_lex_state = 3}, - [3023] = {.lex_state = 71, .external_lex_state = 2}, - [3024] = {.lex_state = 72, .external_lex_state = 5}, - [3025] = {.lex_state = 72, .external_lex_state = 5}, - [3026] = {.lex_state = 72, .external_lex_state = 5}, + [3012] = {.lex_state = 4, .external_lex_state = 2}, + [3013] = {.lex_state = 71, .external_lex_state = 2}, + [3014] = {.lex_state = 71, .external_lex_state = 3}, + [3015] = {.lex_state = 71, .external_lex_state = 3}, + [3016] = {.lex_state = 71, .external_lex_state = 2}, + [3017] = {.lex_state = 71, .external_lex_state = 3}, + [3018] = {.lex_state = 71, .external_lex_state = 3}, + [3019] = {.lex_state = 71, .external_lex_state = 2}, + [3020] = {.lex_state = 71, .external_lex_state = 3}, + [3021] = {.lex_state = 71, .external_lex_state = 3}, + [3022] = {.lex_state = 71, .external_lex_state = 2}, + [3023] = {.lex_state = 71, .external_lex_state = 4}, + [3024] = {.lex_state = 11}, + [3025] = {.lex_state = 71, .external_lex_state = 2}, + [3026] = {.lex_state = 71, .external_lex_state = 2}, [3027] = {.lex_state = 71, .external_lex_state = 2}, [3028] = {.lex_state = 71, .external_lex_state = 2}, - [3029] = {.lex_state = 71, .external_lex_state = 2}, - [3030] = {.lex_state = 71, .external_lex_state = 2}, - [3031] = {.lex_state = 71, .external_lex_state = 2}, - [3032] = {.lex_state = 72, .external_lex_state = 5}, - [3033] = {.lex_state = 71, .external_lex_state = 2}, - [3034] = {.lex_state = 71, .external_lex_state = 2}, + [3029] = {.lex_state = 71, .external_lex_state = 3}, + [3030] = {.lex_state = 71, .external_lex_state = 3}, + [3031] = {.lex_state = 71, .external_lex_state = 3}, + [3032] = {.lex_state = 71, .external_lex_state = 3}, + [3033] = {.lex_state = 71, .external_lex_state = 3}, + [3034] = {.lex_state = 71, .external_lex_state = 3}, [3035] = {.lex_state = 71, .external_lex_state = 3}, [3036] = {.lex_state = 71, .external_lex_state = 3}, - [3037] = {.lex_state = 71, .external_lex_state = 2}, + [3037] = {.lex_state = 71, .external_lex_state = 3}, [3038] = {.lex_state = 71, .external_lex_state = 3}, [3039] = {.lex_state = 71, .external_lex_state = 3}, - [3040] = {.lex_state = 71, .external_lex_state = 2}, - [3041] = {.lex_state = 71, .external_lex_state = 2}, + [3040] = {.lex_state = 71, .external_lex_state = 3}, + [3041] = {.lex_state = 4, .external_lex_state = 2}, [3042] = {.lex_state = 71, .external_lex_state = 3}, - [3043] = {.lex_state = 11}, - [3044] = {.lex_state = 71, .external_lex_state = 3}, - [3045] = {.lex_state = 11}, + [3043] = {.lex_state = 72, .external_lex_state = 5}, + [3044] = {.lex_state = 72, .external_lex_state = 5}, + [3045] = {.lex_state = 71, .external_lex_state = 3}, [3046] = {.lex_state = 71, .external_lex_state = 3}, - [3047] = {.lex_state = 71, .external_lex_state = 3}, + [3047] = {.lex_state = 4, .external_lex_state = 2}, [3048] = {.lex_state = 72, .external_lex_state = 5}, [3049] = {.lex_state = 71, .external_lex_state = 3}, - [3050] = {.lex_state = 71, .external_lex_state = 2}, + [3050] = {.lex_state = 11}, [3051] = {.lex_state = 71, .external_lex_state = 2}, - [3052] = {.lex_state = 11}, - [3053] = {.lex_state = 71, .external_lex_state = 2}, - [3054] = {.lex_state = 72, .external_lex_state = 5}, - [3055] = {.lex_state = 72, .external_lex_state = 5}, - [3056] = {.lex_state = 71, .external_lex_state = 3}, - [3057] = {.lex_state = 72, .external_lex_state = 5}, + [3052] = {.lex_state = 71, .external_lex_state = 3}, + [3053] = {.lex_state = 4, .external_lex_state = 2}, + [3054] = {.lex_state = 11}, + [3055] = {.lex_state = 71, .external_lex_state = 3}, + [3056] = {.lex_state = 4, .external_lex_state = 2}, + [3057] = {.lex_state = 71, .external_lex_state = 2}, [3058] = {.lex_state = 71, .external_lex_state = 3}, - [3059] = {.lex_state = 71, .external_lex_state = 3}, + [3059] = {.lex_state = 72, .external_lex_state = 5}, [3060] = {.lex_state = 71, .external_lex_state = 3}, - [3061] = {.lex_state = 71, .external_lex_state = 3}, - [3062] = {.lex_state = 4, .external_lex_state = 3}, - [3063] = {.lex_state = 4, .external_lex_state = 3}, - [3064] = {.lex_state = 71, .external_lex_state = 2}, - [3065] = {.lex_state = 4, .external_lex_state = 3}, - [3066] = {.lex_state = 71, .external_lex_state = 2}, - [3067] = {.lex_state = 71, .external_lex_state = 3}, - [3068] = {.lex_state = 11}, - [3069] = {.lex_state = 72, .external_lex_state = 5}, - [3070] = {.lex_state = 11}, - [3071] = {.lex_state = 71, .external_lex_state = 2}, - [3072] = {.lex_state = 11}, - [3073] = {.lex_state = 71, .external_lex_state = 2}, - [3074] = {.lex_state = 71, .external_lex_state = 2}, - [3075] = {.lex_state = 71, .external_lex_state = 2}, + [3061] = {.lex_state = 72, .external_lex_state = 5}, + [3062] = {.lex_state = 71, .external_lex_state = 3}, + [3063] = {.lex_state = 72, .external_lex_state = 5}, + [3064] = {.lex_state = 72, .external_lex_state = 5}, + [3065] = {.lex_state = 71, .external_lex_state = 3}, + [3066] = {.lex_state = 71, .external_lex_state = 3}, + [3067] = {.lex_state = 72, .external_lex_state = 5}, + [3068] = {.lex_state = 71, .external_lex_state = 3}, + [3069] = {.lex_state = 11}, + [3070] = {.lex_state = 72, .external_lex_state = 5}, + [3071] = {.lex_state = 71, .external_lex_state = 3}, + [3072] = {.lex_state = 71, .external_lex_state = 3}, + [3073] = {.lex_state = 71, .external_lex_state = 3}, + [3074] = {.lex_state = 4, .external_lex_state = 2}, + [3075] = {.lex_state = 71, .external_lex_state = 3}, [3076] = {.lex_state = 71, .external_lex_state = 3}, [3077] = {.lex_state = 71, .external_lex_state = 3}, - [3078] = {.lex_state = 71, .external_lex_state = 2}, + [3078] = {.lex_state = 71, .external_lex_state = 3}, [3079] = {.lex_state = 71, .external_lex_state = 2}, - [3080] = {.lex_state = 71, .external_lex_state = 4}, + [3080] = {.lex_state = 71, .external_lex_state = 3}, [3081] = {.lex_state = 71, .external_lex_state = 2}, [3082] = {.lex_state = 71, .external_lex_state = 3}, - [3083] = {.lex_state = 71, .external_lex_state = 2}, - [3084] = {.lex_state = 4, .external_lex_state = 2}, + [3083] = {.lex_state = 71, .external_lex_state = 3}, + [3084] = {.lex_state = 71, .external_lex_state = 3}, [3085] = {.lex_state = 71, .external_lex_state = 3}, - [3086] = {.lex_state = 71, .external_lex_state = 3}, - [3087] = {.lex_state = 71, .external_lex_state = 4}, + [3086] = {.lex_state = 71, .external_lex_state = 2}, + [3087] = {.lex_state = 71, .external_lex_state = 3}, [3088] = {.lex_state = 71, .external_lex_state = 3}, - [3089] = {.lex_state = 71, .external_lex_state = 2}, + [3089] = {.lex_state = 71, .external_lex_state = 3}, [3090] = {.lex_state = 71, .external_lex_state = 3}, [3091] = {.lex_state = 71, .external_lex_state = 3}, - [3092] = {.lex_state = 71, .external_lex_state = 2}, - [3093] = {.lex_state = 71, .external_lex_state = 2}, - [3094] = {.lex_state = 71, .external_lex_state = 2}, + [3092] = {.lex_state = 71, .external_lex_state = 3}, + [3093] = {.lex_state = 71, .external_lex_state = 3}, + [3094] = {.lex_state = 71, .external_lex_state = 3}, [3095] = {.lex_state = 71, .external_lex_state = 2}, - [3096] = {.lex_state = 72, .external_lex_state = 5}, - [3097] = {.lex_state = 72, .external_lex_state = 5}, - [3098] = {.lex_state = 71, .external_lex_state = 2}, - [3099] = {.lex_state = 4, .external_lex_state = 3}, - [3100] = {.lex_state = 72, .external_lex_state = 5}, - [3101] = {.lex_state = 72, .external_lex_state = 5}, - [3102] = {.lex_state = 71, .external_lex_state = 2}, + [3096] = {.lex_state = 71, .external_lex_state = 2}, + [3097] = {.lex_state = 71, .external_lex_state = 3}, + [3098] = {.lex_state = 71, .external_lex_state = 3}, + [3099] = {.lex_state = 72, .external_lex_state = 5}, + [3100] = {.lex_state = 71, .external_lex_state = 3}, + [3101] = {.lex_state = 71, .external_lex_state = 3}, + [3102] = {.lex_state = 71, .external_lex_state = 3}, [3103] = {.lex_state = 72, .external_lex_state = 5}, [3104] = {.lex_state = 72, .external_lex_state = 5}, [3105] = {.lex_state = 71, .external_lex_state = 3}, [3106] = {.lex_state = 72, .external_lex_state = 5}, - [3107] = {.lex_state = 71, .external_lex_state = 3}, - [3108] = {.lex_state = 5, .external_lex_state = 3}, + [3107] = {.lex_state = 72, .external_lex_state = 5}, + [3108] = {.lex_state = 72, .external_lex_state = 5}, [3109] = {.lex_state = 71, .external_lex_state = 3}, - [3110] = {.lex_state = 71, .external_lex_state = 2}, - [3111] = {.lex_state = 71, .external_lex_state = 3}, - [3112] = {.lex_state = 71, .external_lex_state = 3}, - [3113] = {.lex_state = 72, .external_lex_state = 5}, - [3114] = {.lex_state = 72, .external_lex_state = 5}, - [3115] = {.lex_state = 72, .external_lex_state = 5}, + [3110] = {.lex_state = 71, .external_lex_state = 4}, + [3111] = {.lex_state = 11}, + [3112] = {.lex_state = 71, .external_lex_state = 2}, + [3113] = {.lex_state = 71, .external_lex_state = 3}, + [3114] = {.lex_state = 71, .external_lex_state = 3}, + [3115] = {.lex_state = 71, .external_lex_state = 2}, [3116] = {.lex_state = 71, .external_lex_state = 2}, - [3117] = {.lex_state = 71, .external_lex_state = 3}, - [3118] = {.lex_state = 71, .external_lex_state = 3}, - [3119] = {.lex_state = 71, .external_lex_state = 2}, + [3117] = {.lex_state = 71, .external_lex_state = 2}, + [3118] = {.lex_state = 71, .external_lex_state = 4}, + [3119] = {.lex_state = 72, .external_lex_state = 5}, [3120] = {.lex_state = 71, .external_lex_state = 2}, - [3121] = {.lex_state = 71, .external_lex_state = 3}, - [3122] = {.lex_state = 71, .external_lex_state = 3}, - [3123] = {.lex_state = 71, .external_lex_state = 2}, - [3124] = {.lex_state = 71, .external_lex_state = 3}, - [3125] = {.lex_state = 4, .external_lex_state = 3}, + [3121] = {.lex_state = 71, .external_lex_state = 2}, + [3122] = {.lex_state = 72, .external_lex_state = 5}, + [3123] = {.lex_state = 71, .external_lex_state = 3}, + [3124] = {.lex_state = 71, .external_lex_state = 2}, + [3125] = {.lex_state = 72, .external_lex_state = 5}, [3126] = {.lex_state = 71, .external_lex_state = 2}, - [3127] = {.lex_state = 71, .external_lex_state = 2}, - [3128] = {.lex_state = 71, .external_lex_state = 3}, + [3127] = {.lex_state = 11}, + [3128] = {.lex_state = 4, .external_lex_state = 2}, [3129] = {.lex_state = 71, .external_lex_state = 3}, - [3130] = {.lex_state = 71, .external_lex_state = 3}, - [3131] = {.lex_state = 71, .external_lex_state = 2}, - [3132] = {.lex_state = 71, .external_lex_state = 2}, + [3130] = {.lex_state = 71, .external_lex_state = 2}, + [3131] = {.lex_state = 71, .external_lex_state = 3}, + [3132] = {.lex_state = 4, .external_lex_state = 2}, [3133] = {.lex_state = 71, .external_lex_state = 2}, - [3134] = {.lex_state = 71, .external_lex_state = 3}, + [3134] = {.lex_state = 5, .external_lex_state = 3}, [3135] = {.lex_state = 71, .external_lex_state = 3}, - [3136] = {.lex_state = 71, .external_lex_state = 3}, - [3137] = {.lex_state = 71, .external_lex_state = 4}, - [3138] = {.lex_state = 71, .external_lex_state = 2}, - [3139] = {.lex_state = 71, .external_lex_state = 3}, - [3140] = {.lex_state = 71, .external_lex_state = 3}, + [3136] = {.lex_state = 71, .external_lex_state = 2}, + [3137] = {.lex_state = 71, .external_lex_state = 2}, + [3138] = {.lex_state = 4, .external_lex_state = 2}, + [3139] = {.lex_state = 11}, + [3140] = {.lex_state = 71, .external_lex_state = 2}, [3141] = {.lex_state = 71, .external_lex_state = 3}, [3142] = {.lex_state = 71, .external_lex_state = 3}, - [3143] = {.lex_state = 71, .external_lex_state = 2}, - [3144] = {.lex_state = 71, .external_lex_state = 3}, - [3145] = {.lex_state = 4, .external_lex_state = 3}, - [3146] = {.lex_state = 4, .external_lex_state = 3}, - [3147] = {.lex_state = 71, .external_lex_state = 3}, - [3148] = {.lex_state = 4, .external_lex_state = 2}, - [3149] = {.lex_state = 71, .external_lex_state = 3}, - [3150] = {.lex_state = 11}, - [3151] = {.lex_state = 71, .external_lex_state = 3}, - [3152] = {.lex_state = 71, .external_lex_state = 3}, - [3153] = {.lex_state = 71, .external_lex_state = 2}, + [3143] = {.lex_state = 71, .external_lex_state = 4}, + [3144] = {.lex_state = 71, .external_lex_state = 2}, + [3145] = {.lex_state = 7, .external_lex_state = 2}, + [3146] = {.lex_state = 71, .external_lex_state = 2}, + [3147] = {.lex_state = 4, .external_lex_state = 2}, + [3148] = {.lex_state = 71, .external_lex_state = 2}, + [3149] = {.lex_state = 71, .external_lex_state = 2}, + [3150] = {.lex_state = 71, .external_lex_state = 2}, + [3151] = {.lex_state = 71, .external_lex_state = 2}, + [3152] = {.lex_state = 11}, + [3153] = {.lex_state = 4, .external_lex_state = 2}, [3154] = {.lex_state = 11}, [3155] = {.lex_state = 71, .external_lex_state = 3}, - [3156] = {.lex_state = 4, .external_lex_state = 3}, - [3157] = {.lex_state = 11}, - [3158] = {.lex_state = 11}, + [3156] = {.lex_state = 71, .external_lex_state = 2}, + [3157] = {.lex_state = 71, .external_lex_state = 2}, + [3158] = {.lex_state = 71, .external_lex_state = 2}, [3159] = {.lex_state = 71, .external_lex_state = 2}, - [3160] = {.lex_state = 71, .external_lex_state = 3}, - [3161] = {.lex_state = 71, .external_lex_state = 2}, - [3162] = {.lex_state = 4, .external_lex_state = 3}, - [3163] = {.lex_state = 5, .external_lex_state = 2}, - [3164] = {.lex_state = 71, .external_lex_state = 2}, - [3165] = {.lex_state = 71, .external_lex_state = 4}, - [3166] = {.lex_state = 11}, - [3167] = {.lex_state = 72, .external_lex_state = 5}, + [3160] = {.lex_state = 4, .external_lex_state = 2}, + [3161] = {.lex_state = 11}, + [3162] = {.lex_state = 71, .external_lex_state = 2}, + [3163] = {.lex_state = 71, .external_lex_state = 3}, + [3164] = {.lex_state = 71, .external_lex_state = 3}, + [3165] = {.lex_state = 71, .external_lex_state = 2}, + [3166] = {.lex_state = 71, .external_lex_state = 2}, + [3167] = {.lex_state = 71, .external_lex_state = 2}, [3168] = {.lex_state = 71, .external_lex_state = 2}, - [3169] = {.lex_state = 71, .external_lex_state = 3}, - [3170] = {.lex_state = 71, .external_lex_state = 3}, - [3171] = {.lex_state = 71, .external_lex_state = 3}, + [3169] = {.lex_state = 71, .external_lex_state = 2}, + [3170] = {.lex_state = 72, .external_lex_state = 5}, + [3171] = {.lex_state = 72, .external_lex_state = 5}, [3172] = {.lex_state = 72, .external_lex_state = 5}, - [3173] = {.lex_state = 72, .external_lex_state = 5}, + [3173] = {.lex_state = 4, .external_lex_state = 2}, [3174] = {.lex_state = 71, .external_lex_state = 2}, - [3175] = {.lex_state = 71, .external_lex_state = 3}, - [3176] = {.lex_state = 71, .external_lex_state = 4}, - [3177] = {.lex_state = 71, .external_lex_state = 3}, + [3175] = {.lex_state = 71, .external_lex_state = 2}, + [3176] = {.lex_state = 71, .external_lex_state = 2}, + [3177] = {.lex_state = 71, .external_lex_state = 2}, [3178] = {.lex_state = 71, .external_lex_state = 2}, [3179] = {.lex_state = 71, .external_lex_state = 2}, - [3180] = {.lex_state = 71, .external_lex_state = 3}, - [3181] = {.lex_state = 71, .external_lex_state = 3}, - [3182] = {.lex_state = 71, .external_lex_state = 4}, - [3183] = {.lex_state = 71, .external_lex_state = 2}, + [3180] = {.lex_state = 71, .external_lex_state = 2}, + [3181] = {.lex_state = 4, .external_lex_state = 2}, + [3182] = {.lex_state = 71, .external_lex_state = 3}, + [3183] = {.lex_state = 11}, [3184] = {.lex_state = 71, .external_lex_state = 2}, - [3185] = {.lex_state = 71, .external_lex_state = 2}, - [3186] = {.lex_state = 71, .external_lex_state = 2}, - [3187] = {.lex_state = 71, .external_lex_state = 4}, - [3188] = {.lex_state = 71, .external_lex_state = 3}, - [3189] = {.lex_state = 71, .external_lex_state = 4}, - [3190] = {.lex_state = 71, .external_lex_state = 3}, - [3191] = {.lex_state = 71, .external_lex_state = 3}, + [3185] = {.lex_state = 71, .external_lex_state = 3}, + [3186] = {.lex_state = 71, .external_lex_state = 3}, + [3187] = {.lex_state = 71, .external_lex_state = 2}, + [3188] = {.lex_state = 71, .external_lex_state = 2}, + [3189] = {.lex_state = 5, .external_lex_state = 2}, + [3190] = {.lex_state = 71, .external_lex_state = 2}, + [3191] = {.lex_state = 71, .external_lex_state = 4}, [3192] = {.lex_state = 71, .external_lex_state = 2}, - [3193] = {.lex_state = 71, .external_lex_state = 2}, - [3194] = {.lex_state = 71, .external_lex_state = 2}, - [3195] = {.lex_state = 71, .external_lex_state = 2}, - [3196] = {.lex_state = 71, .external_lex_state = 3}, - [3197] = {.lex_state = 71, .external_lex_state = 4}, - [3198] = {.lex_state = 7, .external_lex_state = 3}, - [3199] = {.lex_state = 71, .external_lex_state = 3}, - [3200] = {.lex_state = 11}, + [3193] = {.lex_state = 4, .external_lex_state = 3}, + [3194] = {.lex_state = 4, .external_lex_state = 2}, + [3195] = {.lex_state = 71, .external_lex_state = 3}, + [3196] = {.lex_state = 71, .external_lex_state = 4}, + [3197] = {.lex_state = 11}, + [3198] = {.lex_state = 11}, + [3199] = {.lex_state = 71, .external_lex_state = 2}, + [3200] = {.lex_state = 71, .external_lex_state = 2}, [3201] = {.lex_state = 71, .external_lex_state = 2}, - [3202] = {.lex_state = 71, .external_lex_state = 3}, - [3203] = {.lex_state = 71, .external_lex_state = 3}, + [3202] = {.lex_state = 71, .external_lex_state = 2}, + [3203] = {.lex_state = 11}, [3204] = {.lex_state = 71, .external_lex_state = 2}, - [3205] = {.lex_state = 71, .external_lex_state = 3}, + [3205] = {.lex_state = 71, .external_lex_state = 2}, [3206] = {.lex_state = 71, .external_lex_state = 2}, - [3207] = {.lex_state = 71, .external_lex_state = 3}, - [3208] = {.lex_state = 71, .external_lex_state = 2}, - [3209] = {.lex_state = 71, .external_lex_state = 2}, + [3207] = {.lex_state = 72, .external_lex_state = 5}, + [3208] = {.lex_state = 72, .external_lex_state = 5}, + [3209] = {.lex_state = 72, .external_lex_state = 5}, [3210] = {.lex_state = 71, .external_lex_state = 2}, [3211] = {.lex_state = 71, .external_lex_state = 2}, - [3212] = {.lex_state = 71, .external_lex_state = 3}, - [3213] = {.lex_state = 11}, - [3214] = {.lex_state = 4, .external_lex_state = 3}, - [3215] = {.lex_state = 72, .external_lex_state = 5}, - [3216] = {.lex_state = 72, .external_lex_state = 5}, - [3217] = {.lex_state = 72, .external_lex_state = 5}, + [3212] = {.lex_state = 71, .external_lex_state = 2}, + [3213] = {.lex_state = 71, .external_lex_state = 3}, + [3214] = {.lex_state = 71, .external_lex_state = 3}, + [3215] = {.lex_state = 71, .external_lex_state = 2}, + [3216] = {.lex_state = 71, .external_lex_state = 2}, + [3217] = {.lex_state = 71, .external_lex_state = 3}, [3218] = {.lex_state = 71, .external_lex_state = 3}, - [3219] = {.lex_state = 71, .external_lex_state = 3}, - [3220] = {.lex_state = 71, .external_lex_state = 2}, - [3221] = {.lex_state = 71, .external_lex_state = 2}, - [3222] = {.lex_state = 71, .external_lex_state = 3}, + [3219] = {.lex_state = 71, .external_lex_state = 2}, + [3220] = {.lex_state = 72, .external_lex_state = 5}, + [3221] = {.lex_state = 72, .external_lex_state = 5}, + [3222] = {.lex_state = 72, .external_lex_state = 5}, [3223] = {.lex_state = 71, .external_lex_state = 2}, [3224] = {.lex_state = 71, .external_lex_state = 2}, [3225] = {.lex_state = 71, .external_lex_state = 3}, - [3226] = {.lex_state = 4, .external_lex_state = 3}, - [3227] = {.lex_state = 71, .external_lex_state = 3}, + [3226] = {.lex_state = 71, .external_lex_state = 3}, + [3227] = {.lex_state = 71, .external_lex_state = 2}, [3228] = {.lex_state = 71, .external_lex_state = 3}, - [3229] = {.lex_state = 4, .external_lex_state = 3}, - [3230] = {.lex_state = 71, .external_lex_state = 2}, + [3229] = {.lex_state = 71, .external_lex_state = 2}, + [3230] = {.lex_state = 71, .external_lex_state = 4}, [3231] = {.lex_state = 71, .external_lex_state = 2}, - [3232] = {.lex_state = 71, .external_lex_state = 3}, - [3233] = {.lex_state = 71, .external_lex_state = 2}, - [3234] = {.lex_state = 71, .external_lex_state = 3}, + [3232] = {.lex_state = 71, .external_lex_state = 2}, + [3233] = {.lex_state = 4, .external_lex_state = 3}, + [3234] = {.lex_state = 71, .external_lex_state = 2}, [3235] = {.lex_state = 71, .external_lex_state = 2}, [3236] = {.lex_state = 71, .external_lex_state = 2}, [3237] = {.lex_state = 71, .external_lex_state = 2}, - [3238] = {.lex_state = 71, .external_lex_state = 2}, - [3239] = {.lex_state = 4, .external_lex_state = 3}, - [3240] = {.lex_state = 71, .external_lex_state = 3}, - [3241] = {.lex_state = 71, .external_lex_state = 2}, - [3242] = {.lex_state = 71, .external_lex_state = 2}, + [3238] = {.lex_state = 71, .external_lex_state = 3}, + [3239] = {.lex_state = 71, .external_lex_state = 2}, + [3240] = {.lex_state = 71, .external_lex_state = 2}, + [3241] = {.lex_state = 71, .external_lex_state = 3}, + [3242] = {.lex_state = 71, .external_lex_state = 3}, [3243] = {.lex_state = 71, .external_lex_state = 3}, - [3244] = {.lex_state = 71, .external_lex_state = 3}, - [3245] = {.lex_state = 4, .external_lex_state = 3}, - [3246] = {.lex_state = 4, .external_lex_state = 3}, - [3247] = {.lex_state = 71, .external_lex_state = 2}, - [3248] = {.lex_state = 71, .external_lex_state = 3}, - [3249] = {.lex_state = 71, .external_lex_state = 3}, - [3250] = {.lex_state = 71, .external_lex_state = 3}, + [3244] = {.lex_state = 71, .external_lex_state = 4}, + [3245] = {.lex_state = 4, .external_lex_state = 2}, + [3246] = {.lex_state = 71, .external_lex_state = 2}, + [3247] = {.lex_state = 71, .external_lex_state = 3}, + [3248] = {.lex_state = 71, .external_lex_state = 4}, + [3249] = {.lex_state = 11}, + [3250] = {.lex_state = 4, .external_lex_state = 2}, [3251] = {.lex_state = 71, .external_lex_state = 2}, - [3252] = {.lex_state = 71, .external_lex_state = 3}, - [3253] = {.lex_state = 71, .external_lex_state = 3}, - [3254] = {.lex_state = 4, .external_lex_state = 3}, - [3255] = {.lex_state = 71, .external_lex_state = 3}, - [3256] = {.lex_state = 72, .external_lex_state = 5}, - [3257] = {.lex_state = 71, .external_lex_state = 3}, - [3258] = {.lex_state = 71, .external_lex_state = 3}, - [3259] = {.lex_state = 72, .external_lex_state = 5}, - [3260] = {.lex_state = 71, .external_lex_state = 3}, - [3261] = {.lex_state = 4, .external_lex_state = 3}, - [3262] = {.lex_state = 4, .external_lex_state = 3}, - [3263] = {.lex_state = 72, .external_lex_state = 5}, - [3264] = {.lex_state = 4, .external_lex_state = 3}, - [3265] = {.lex_state = 4, .external_lex_state = 3}, - [3266] = {.lex_state = 4, .external_lex_state = 3}, - [3267] = {.lex_state = 4, .external_lex_state = 3}, - [3268] = {.lex_state = 4, .external_lex_state = 3}, - [3269] = {.lex_state = 71, .external_lex_state = 3}, - [3270] = {.lex_state = 71, .external_lex_state = 3}, - [3271] = {.lex_state = 4, .external_lex_state = 3}, - [3272] = {.lex_state = 72, .external_lex_state = 5}, + [3252] = {.lex_state = 4, .external_lex_state = 2}, + [3253] = {.lex_state = 4, .external_lex_state = 2}, + [3254] = {.lex_state = 71, .external_lex_state = 2}, + [3255] = {.lex_state = 4, .external_lex_state = 2}, + [3256] = {.lex_state = 4, .external_lex_state = 2}, + [3257] = {.lex_state = 4, .external_lex_state = 2}, + [3258] = {.lex_state = 4, .external_lex_state = 2}, + [3259] = {.lex_state = 4, .external_lex_state = 2}, + [3260] = {.lex_state = 5, .external_lex_state = 2}, + [3261] = {.lex_state = 71, .external_lex_state = 2}, + [3262] = {.lex_state = 4, .external_lex_state = 2}, + [3263] = {.lex_state = 4, .external_lex_state = 2}, + [3264] = {.lex_state = 4, .external_lex_state = 2}, + [3265] = {.lex_state = 4, .external_lex_state = 2}, + [3266] = {.lex_state = 71, .external_lex_state = 2}, + [3267] = {.lex_state = 71, .external_lex_state = 3}, + [3268] = {.lex_state = 4, .external_lex_state = 2}, + [3269] = {.lex_state = 4, .external_lex_state = 2}, + [3270] = {.lex_state = 71, .external_lex_state = 2}, + [3271] = {.lex_state = 71, .external_lex_state = 2}, + [3272] = {.lex_state = 71, .external_lex_state = 2}, [3273] = {.lex_state = 71, .external_lex_state = 2}, - [3274] = {.lex_state = 72, .external_lex_state = 5}, - [3275] = {.lex_state = 4, .external_lex_state = 3}, - [3276] = {.lex_state = 71, .external_lex_state = 3}, - [3277] = {.lex_state = 4, .external_lex_state = 3}, - [3278] = {.lex_state = 71, .external_lex_state = 3}, - [3279] = {.lex_state = 4, .external_lex_state = 3}, - [3280] = {.lex_state = 71, .external_lex_state = 3}, - [3281] = {.lex_state = 4, .external_lex_state = 3}, - [3282] = {.lex_state = 71, .external_lex_state = 2}, - [3283] = {.lex_state = 4, .external_lex_state = 3}, - [3284] = {.lex_state = 71, .external_lex_state = 3}, - [3285] = {.lex_state = 71, .external_lex_state = 3}, - [3286] = {.lex_state = 71, .external_lex_state = 3}, - [3287] = {.lex_state = 71, .external_lex_state = 3}, - [3288] = {.lex_state = 4, .external_lex_state = 3}, + [3274] = {.lex_state = 4, .external_lex_state = 2}, + [3275] = {.lex_state = 71, .external_lex_state = 2}, + [3276] = {.lex_state = 4, .external_lex_state = 2}, + [3277] = {.lex_state = 4, .external_lex_state = 2}, + [3278] = {.lex_state = 71, .external_lex_state = 2}, + [3279] = {.lex_state = 71, .external_lex_state = 2}, + [3280] = {.lex_state = 4, .external_lex_state = 2}, + [3281] = {.lex_state = 4, .external_lex_state = 2}, + [3282] = {.lex_state = 4, .external_lex_state = 2}, + [3283] = {.lex_state = 71, .external_lex_state = 2}, + [3284] = {.lex_state = 71, .external_lex_state = 2}, + [3285] = {.lex_state = 4, .external_lex_state = 2}, + [3286] = {.lex_state = 4, .external_lex_state = 2}, + [3287] = {.lex_state = 4, .external_lex_state = 2}, + [3288] = {.lex_state = 4, .external_lex_state = 2}, [3289] = {.lex_state = 71, .external_lex_state = 2}, - [3290] = {.lex_state = 71, .external_lex_state = 3}, - [3291] = {.lex_state = 71, .external_lex_state = 3}, - [3292] = {.lex_state = 71, .external_lex_state = 3}, - [3293] = {.lex_state = 71, .external_lex_state = 3}, - [3294] = {.lex_state = 71, .external_lex_state = 3}, - [3295] = {.lex_state = 4, .external_lex_state = 3}, - [3296] = {.lex_state = 4, .external_lex_state = 3}, - [3297] = {.lex_state = 71, .external_lex_state = 3}, - [3298] = {.lex_state = 71, .external_lex_state = 3}, + [3290] = {.lex_state = 71, .external_lex_state = 2}, + [3291] = {.lex_state = 4, .external_lex_state = 2}, + [3292] = {.lex_state = 71, .external_lex_state = 2}, + [3293] = {.lex_state = 71, .external_lex_state = 2}, + [3294] = {.lex_state = 71, .external_lex_state = 2}, + [3295] = {.lex_state = 71, .external_lex_state = 2}, + [3296] = {.lex_state = 71, .external_lex_state = 2}, + [3297] = {.lex_state = 71, .external_lex_state = 2}, + [3298] = {.lex_state = 4, .external_lex_state = 2}, [3299] = {.lex_state = 71, .external_lex_state = 2}, - [3300] = {.lex_state = 72, .external_lex_state = 5}, - [3301] = {.lex_state = 71, .external_lex_state = 3}, - [3302] = {.lex_state = 71, .external_lex_state = 3}, - [3303] = {.lex_state = 4, .external_lex_state = 3}, - [3304] = {.lex_state = 4, .external_lex_state = 3}, - [3305] = {.lex_state = 71, .external_lex_state = 3}, + [3300] = {.lex_state = 71, .external_lex_state = 2}, + [3301] = {.lex_state = 71, .external_lex_state = 2}, + [3302] = {.lex_state = 71, .external_lex_state = 2}, + [3303] = {.lex_state = 71, .external_lex_state = 2}, + [3304] = {.lex_state = 4, .external_lex_state = 2}, + [3305] = {.lex_state = 71, .external_lex_state = 2}, [3306] = {.lex_state = 71, .external_lex_state = 2}, [3307] = {.lex_state = 71, .external_lex_state = 3}, - [3308] = {.lex_state = 71, .external_lex_state = 3}, - [3309] = {.lex_state = 71, .external_lex_state = 3}, - [3310] = {.lex_state = 71, .external_lex_state = 3}, - [3311] = {.lex_state = 71, .external_lex_state = 3}, - [3312] = {.lex_state = 71, .external_lex_state = 3}, - [3313] = {.lex_state = 71, .external_lex_state = 3}, - [3314] = {.lex_state = 71, .external_lex_state = 3}, - [3315] = {.lex_state = 71, .external_lex_state = 3}, - [3316] = {.lex_state = 71, .external_lex_state = 3}, - [3317] = {.lex_state = 71, .external_lex_state = 3}, - [3318] = {.lex_state = 71, .external_lex_state = 3}, - [3319] = {.lex_state = 71, .external_lex_state = 3}, - [3320] = {.lex_state = 71, .external_lex_state = 3}, - [3321] = {.lex_state = 4, .external_lex_state = 3}, - [3322] = {.lex_state = 72, .external_lex_state = 5}, - [3323] = {.lex_state = 72, .external_lex_state = 5}, - [3324] = {.lex_state = 71, .external_lex_state = 3}, - [3325] = {.lex_state = 71, .external_lex_state = 3}, - [3326] = {.lex_state = 72, .external_lex_state = 5}, - [3327] = {.lex_state = 71, .external_lex_state = 3}, - [3328] = {.lex_state = 4, .external_lex_state = 3}, - [3329] = {.lex_state = 72, .external_lex_state = 5}, - [3330] = {.lex_state = 71, .external_lex_state = 2}, - [3331] = {.lex_state = 71, .external_lex_state = 3}, - [3332] = {.lex_state = 4, .external_lex_state = 3}, - [3333] = {.lex_state = 4, .external_lex_state = 3}, - [3334] = {.lex_state = 4, .external_lex_state = 3}, - [3335] = {.lex_state = 72, .external_lex_state = 5}, - [3336] = {.lex_state = 71, .external_lex_state = 3}, - [3337] = {.lex_state = 71, .external_lex_state = 3}, - [3338] = {.lex_state = 4, .external_lex_state = 3}, - [3339] = {.lex_state = 4, .external_lex_state = 3}, - [3340] = {.lex_state = 71, .external_lex_state = 3}, - [3341] = {.lex_state = 71, .external_lex_state = 3}, - [3342] = {.lex_state = 4, .external_lex_state = 3}, - [3343] = {.lex_state = 71, .external_lex_state = 3}, - [3344] = {.lex_state = 71, .external_lex_state = 3}, - [3345] = {.lex_state = 71, .external_lex_state = 3}, - [3346] = {.lex_state = 4, .external_lex_state = 3}, - [3347] = {.lex_state = 71, .external_lex_state = 3}, - [3348] = {.lex_state = 4, .external_lex_state = 3}, - [3349] = {.lex_state = 4, .external_lex_state = 3}, - [3350] = {.lex_state = 4, .external_lex_state = 3}, - [3351] = {.lex_state = 4, .external_lex_state = 3}, - [3352] = {.lex_state = 4, .external_lex_state = 3}, - [3353] = {.lex_state = 4, .external_lex_state = 3}, - [3354] = {.lex_state = 71, .external_lex_state = 3}, - [3355] = {.lex_state = 71, .external_lex_state = 3}, - [3356] = {.lex_state = 4, .external_lex_state = 3}, - [3357] = {.lex_state = 71, .external_lex_state = 3}, - [3358] = {.lex_state = 71, .external_lex_state = 3}, - [3359] = {.lex_state = 4, .external_lex_state = 3}, - [3360] = {.lex_state = 71, .external_lex_state = 3}, - [3361] = {.lex_state = 4, .external_lex_state = 3}, - [3362] = {.lex_state = 71, .external_lex_state = 3}, - [3363] = {.lex_state = 71, .external_lex_state = 3}, - [3364] = {.lex_state = 4, .external_lex_state = 3}, - [3365] = {.lex_state = 4, .external_lex_state = 3}, - [3366] = {.lex_state = 4, .external_lex_state = 3}, - [3367] = {.lex_state = 5, .external_lex_state = 3}, - [3368] = {.lex_state = 4, .external_lex_state = 3}, - [3369] = {.lex_state = 4, .external_lex_state = 3}, - [3370] = {.lex_state = 4, .external_lex_state = 3}, - [3371] = {.lex_state = 4, .external_lex_state = 3}, - [3372] = {.lex_state = 71, .external_lex_state = 3}, - [3373] = {.lex_state = 4, .external_lex_state = 3}, - [3374] = {.lex_state = 71, .external_lex_state = 3}, - [3375] = {.lex_state = 4, .external_lex_state = 3}, - [3376] = {.lex_state = 4, .external_lex_state = 3}, - [3377] = {.lex_state = 71, .external_lex_state = 3}, - [3378] = {.lex_state = 71, .external_lex_state = 3}, - [3379] = {.lex_state = 71, .external_lex_state = 3}, - [3380] = {.lex_state = 4, .external_lex_state = 3}, - [3381] = {.lex_state = 4, .external_lex_state = 3}, - [3382] = {.lex_state = 71, .external_lex_state = 3}, - [3383] = {.lex_state = 4, .external_lex_state = 3}, - [3384] = {.lex_state = 71, .external_lex_state = 3}, - [3385] = {.lex_state = 4, .external_lex_state = 3}, - [3386] = {.lex_state = 4, .external_lex_state = 3}, - [3387] = {.lex_state = 71, .external_lex_state = 3}, - [3388] = {.lex_state = 71, .external_lex_state = 3}, - [3389] = {.lex_state = 71, .external_lex_state = 3}, - [3390] = {.lex_state = 4, .external_lex_state = 3}, - [3391] = {.lex_state = 71, .external_lex_state = 3}, - [3392] = {.lex_state = 4, .external_lex_state = 3}, - [3393] = {.lex_state = 4, .external_lex_state = 3}, - [3394] = {.lex_state = 4, .external_lex_state = 3}, - [3395] = {.lex_state = 4, .external_lex_state = 3}, - [3396] = {.lex_state = 4, .external_lex_state = 3}, - [3397] = {.lex_state = 4, .external_lex_state = 3}, - [3398] = {.lex_state = 71, .external_lex_state = 3}, - [3399] = {.lex_state = 4, .external_lex_state = 3}, + [3308] = {.lex_state = 72, .external_lex_state = 5}, + [3309] = {.lex_state = 4, .external_lex_state = 2}, + [3310] = {.lex_state = 4, .external_lex_state = 2}, + [3311] = {.lex_state = 4, .external_lex_state = 2}, + [3312] = {.lex_state = 71, .external_lex_state = 2}, + [3313] = {.lex_state = 71, .external_lex_state = 2}, + [3314] = {.lex_state = 72, .external_lex_state = 5}, + [3315] = {.lex_state = 71, .external_lex_state = 2}, + [3316] = {.lex_state = 4, .external_lex_state = 2}, + [3317] = {.lex_state = 71, .external_lex_state = 2}, + [3318] = {.lex_state = 71, .external_lex_state = 2}, + [3319] = {.lex_state = 71, .external_lex_state = 2}, + [3320] = {.lex_state = 71, .external_lex_state = 2}, + [3321] = {.lex_state = 4, .external_lex_state = 2}, + [3322] = {.lex_state = 71, .external_lex_state = 2}, + [3323] = {.lex_state = 4, .external_lex_state = 2}, + [3324] = {.lex_state = 4, .external_lex_state = 2}, + [3325] = {.lex_state = 4, .external_lex_state = 2}, + [3326] = {.lex_state = 4, .external_lex_state = 2}, + [3327] = {.lex_state = 71, .external_lex_state = 2}, + [3328] = {.lex_state = 4, .external_lex_state = 2}, + [3329] = {.lex_state = 4, .external_lex_state = 2}, + [3330] = {.lex_state = 4, .external_lex_state = 2}, + [3331] = {.lex_state = 4, .external_lex_state = 2}, + [3332] = {.lex_state = 4, .external_lex_state = 2}, + [3333] = {.lex_state = 71, .external_lex_state = 2}, + [3334] = {.lex_state = 71, .external_lex_state = 2}, + [3335] = {.lex_state = 71, .external_lex_state = 2}, + [3336] = {.lex_state = 4, .external_lex_state = 2}, + [3337] = {.lex_state = 71, .external_lex_state = 2}, + [3338] = {.lex_state = 71, .external_lex_state = 2}, + [3339] = {.lex_state = 71, .external_lex_state = 2}, + [3340] = {.lex_state = 4, .external_lex_state = 2}, + [3341] = {.lex_state = 4, .external_lex_state = 2}, + [3342] = {.lex_state = 4, .external_lex_state = 2}, + [3343] = {.lex_state = 4, .external_lex_state = 2}, + [3344] = {.lex_state = 71, .external_lex_state = 2}, + [3345] = {.lex_state = 71, .external_lex_state = 2}, + [3346] = {.lex_state = 4, .external_lex_state = 2}, + [3347] = {.lex_state = 4, .external_lex_state = 2}, + [3348] = {.lex_state = 71, .external_lex_state = 2}, + [3349] = {.lex_state = 4, .external_lex_state = 2}, + [3350] = {.lex_state = 4, .external_lex_state = 2}, + [3351] = {.lex_state = 71, .external_lex_state = 2}, + [3352] = {.lex_state = 4, .external_lex_state = 2}, + [3353] = {.lex_state = 72, .external_lex_state = 5}, + [3354] = {.lex_state = 4, .external_lex_state = 2}, + [3355] = {.lex_state = 4, .external_lex_state = 2}, + [3356] = {.lex_state = 4, .external_lex_state = 2}, + [3357] = {.lex_state = 4, .external_lex_state = 2}, + [3358] = {.lex_state = 71, .external_lex_state = 2}, + [3359] = {.lex_state = 71, .external_lex_state = 2}, + [3360] = {.lex_state = 71, .external_lex_state = 2}, + [3361] = {.lex_state = 72, .external_lex_state = 5}, + [3362] = {.lex_state = 72, .external_lex_state = 5}, + [3363] = {.lex_state = 72, .external_lex_state = 5}, + [3364] = {.lex_state = 7, .external_lex_state = 2}, + [3365] = {.lex_state = 71, .external_lex_state = 2}, + [3366] = {.lex_state = 71, .external_lex_state = 2}, + [3367] = {.lex_state = 71, .external_lex_state = 2}, + [3368] = {.lex_state = 71, .external_lex_state = 2}, + [3369] = {.lex_state = 71, .external_lex_state = 2}, + [3370] = {.lex_state = 71, .external_lex_state = 2}, + [3371] = {.lex_state = 4, .external_lex_state = 2}, + [3372] = {.lex_state = 4, .external_lex_state = 2}, + [3373] = {.lex_state = 4, .external_lex_state = 2}, + [3374] = {.lex_state = 71, .external_lex_state = 2}, + [3375] = {.lex_state = 4, .external_lex_state = 2}, + [3376] = {.lex_state = 71, .external_lex_state = 2}, + [3377] = {.lex_state = 71, .external_lex_state = 2}, + [3378] = {.lex_state = 4, .external_lex_state = 2}, + [3379] = {.lex_state = 71, .external_lex_state = 2}, + [3380] = {.lex_state = 71, .external_lex_state = 2}, + [3381] = {.lex_state = 71, .external_lex_state = 2}, + [3382] = {.lex_state = 71, .external_lex_state = 2}, + [3383] = {.lex_state = 4, .external_lex_state = 2}, + [3384] = {.lex_state = 71, .external_lex_state = 2}, + [3385] = {.lex_state = 71, .external_lex_state = 3}, + [3386] = {.lex_state = 71, .external_lex_state = 2}, + [3387] = {.lex_state = 4, .external_lex_state = 2}, + [3388] = {.lex_state = 71, .external_lex_state = 2}, + [3389] = {.lex_state = 71, .external_lex_state = 2}, + [3390] = {.lex_state = 71, .external_lex_state = 2}, + [3391] = {.lex_state = 71, .external_lex_state = 2}, + [3392] = {.lex_state = 71, .external_lex_state = 2}, + [3393] = {.lex_state = 71, .external_lex_state = 2}, + [3394] = {.lex_state = 71, .external_lex_state = 2}, + [3395] = {.lex_state = 4, .external_lex_state = 2}, + [3396] = {.lex_state = 71, .external_lex_state = 2}, + [3397] = {.lex_state = 4, .external_lex_state = 2}, + [3398] = {.lex_state = 71, .external_lex_state = 2}, + [3399] = {.lex_state = 72, .external_lex_state = 5}, [3400] = {.lex_state = 71, .external_lex_state = 3}, - [3401] = {.lex_state = 4, .external_lex_state = 3}, - [3402] = {.lex_state = 71, .external_lex_state = 3}, - [3403] = {.lex_state = 71, .external_lex_state = 3}, - [3404] = {.lex_state = 4, .external_lex_state = 3}, - [3405] = {.lex_state = 71, .external_lex_state = 3}, - [3406] = {.lex_state = 4, .external_lex_state = 3}, - [3407] = {.lex_state = 4, .external_lex_state = 3}, - [3408] = {.lex_state = 4, .external_lex_state = 3}, - [3409] = {.lex_state = 71, .external_lex_state = 3}, - [3410] = {.lex_state = 71, .external_lex_state = 3}, - [3411] = {.lex_state = 4, .external_lex_state = 3}, - [3412] = {.lex_state = 4, .external_lex_state = 3}, - [3413] = {.lex_state = 4, .external_lex_state = 3}, - [3414] = {.lex_state = 4, .external_lex_state = 3}, - [3415] = {.lex_state = 71, .external_lex_state = 3}, - [3416] = {.lex_state = 4, .external_lex_state = 3}, - [3417] = {.lex_state = 4, .external_lex_state = 3}, - [3418] = {.lex_state = 4, .external_lex_state = 3}, - [3419] = {.lex_state = 71, .external_lex_state = 3}, - [3420] = {.lex_state = 4, .external_lex_state = 3}, - [3421] = {.lex_state = 71, .external_lex_state = 3}, - [3422] = {.lex_state = 71, .external_lex_state = 3}, - [3423] = {.lex_state = 71, .external_lex_state = 3}, - [3424] = {.lex_state = 71, .external_lex_state = 3}, - [3425] = {.lex_state = 71, .external_lex_state = 3}, - [3426] = {.lex_state = 71, .external_lex_state = 3}, - [3427] = {.lex_state = 4, .external_lex_state = 3}, - [3428] = {.lex_state = 4, .external_lex_state = 3}, - [3429] = {.lex_state = 71, .external_lex_state = 3}, - [3430] = {.lex_state = 71, .external_lex_state = 3}, - [3431] = {.lex_state = 4, .external_lex_state = 3}, - [3432] = {.lex_state = 4, .external_lex_state = 3}, - [3433] = {.lex_state = 4, .external_lex_state = 3}, - [3434] = {.lex_state = 4, .external_lex_state = 3}, - [3435] = {.lex_state = 71, .external_lex_state = 3}, - [3436] = {.lex_state = 71, .external_lex_state = 3}, - [3437] = {.lex_state = 71, .external_lex_state = 3}, - [3438] = {.lex_state = 4, .external_lex_state = 3}, - [3439] = {.lex_state = 4, .external_lex_state = 3}, - [3440] = {.lex_state = 4, .external_lex_state = 3}, + [3401] = {.lex_state = 71, .external_lex_state = 2}, + [3402] = {.lex_state = 71, .external_lex_state = 2}, + [3403] = {.lex_state = 4, .external_lex_state = 2}, + [3404] = {.lex_state = 4, .external_lex_state = 2}, + [3405] = {.lex_state = 71, .external_lex_state = 2}, + [3406] = {.lex_state = 71, .external_lex_state = 2}, + [3407] = {.lex_state = 4, .external_lex_state = 2}, + [3408] = {.lex_state = 71, .external_lex_state = 2}, + [3409] = {.lex_state = 4, .external_lex_state = 2}, + [3410] = {.lex_state = 71, .external_lex_state = 2}, + [3411] = {.lex_state = 4, .external_lex_state = 2}, + [3412] = {.lex_state = 71, .external_lex_state = 2}, + [3413] = {.lex_state = 4, .external_lex_state = 2}, + [3414] = {.lex_state = 4, .external_lex_state = 2}, + [3415] = {.lex_state = 71, .external_lex_state = 2}, + [3416] = {.lex_state = 4, .external_lex_state = 2}, + [3417] = {.lex_state = 4, .external_lex_state = 2}, + [3418] = {.lex_state = 4, .external_lex_state = 2}, + [3419] = {.lex_state = 4, .external_lex_state = 2}, + [3420] = {.lex_state = 4, .external_lex_state = 2}, + [3421] = {.lex_state = 71, .external_lex_state = 2}, + [3422] = {.lex_state = 71, .external_lex_state = 2}, + [3423] = {.lex_state = 4, .external_lex_state = 2}, + [3424] = {.lex_state = 71, .external_lex_state = 2}, + [3425] = {.lex_state = 71, .external_lex_state = 2}, + [3426] = {.lex_state = 4, .external_lex_state = 2}, + [3427] = {.lex_state = 4, .external_lex_state = 2}, + [3428] = {.lex_state = 71, .external_lex_state = 2}, + [3429] = {.lex_state = 71, .external_lex_state = 2}, + [3430] = {.lex_state = 71, .external_lex_state = 2}, + [3431] = {.lex_state = 4, .external_lex_state = 2}, + [3432] = {.lex_state = 71, .external_lex_state = 2}, + [3433] = {.lex_state = 71, .external_lex_state = 2}, + [3434] = {.lex_state = 71, .external_lex_state = 2}, + [3435] = {.lex_state = 71, .external_lex_state = 2}, + [3436] = {.lex_state = 71, .external_lex_state = 2}, + [3437] = {.lex_state = 71, .external_lex_state = 2}, + [3438] = {.lex_state = 4, .external_lex_state = 2}, + [3439] = {.lex_state = 71, .external_lex_state = 2}, + [3440] = {.lex_state = 71, .external_lex_state = 2}, [3441] = {.lex_state = 71, .external_lex_state = 3}, - [3442] = {.lex_state = 4, .external_lex_state = 3}, - [3443] = {.lex_state = 4, .external_lex_state = 3}, - [3444] = {.lex_state = 71, .external_lex_state = 3}, - [3445] = {.lex_state = 71, .external_lex_state = 3}, - [3446] = {.lex_state = 71, .external_lex_state = 3}, - [3447] = {.lex_state = 71, .external_lex_state = 3}, - [3448] = {.lex_state = 4, .external_lex_state = 3}, - [3449] = {.lex_state = 4, .external_lex_state = 3}, - [3450] = {.lex_state = 4, .external_lex_state = 3}, - [3451] = {.lex_state = 4, .external_lex_state = 3}, - [3452] = {.lex_state = 71, .external_lex_state = 3}, - [3453] = {.lex_state = 4, .external_lex_state = 3}, - [3454] = {.lex_state = 71, .external_lex_state = 3}, - [3455] = {.lex_state = 4, .external_lex_state = 3}, - [3456] = {.lex_state = 71, .external_lex_state = 3}, - [3457] = {.lex_state = 4, .external_lex_state = 3}, - [3458] = {.lex_state = 71, .external_lex_state = 3}, - [3459] = {.lex_state = 71, .external_lex_state = 3}, - [3460] = {.lex_state = 4, .external_lex_state = 3}, - [3461] = {.lex_state = 71, .external_lex_state = 3}, - [3462] = {.lex_state = 71, .external_lex_state = 3}, + [3442] = {.lex_state = 71, .external_lex_state = 2}, + [3443] = {.lex_state = 71, .external_lex_state = 2}, + [3444] = {.lex_state = 71, .external_lex_state = 2}, + [3445] = {.lex_state = 4, .external_lex_state = 2}, + [3446] = {.lex_state = 4, .external_lex_state = 2}, + [3447] = {.lex_state = 71, .external_lex_state = 2}, + [3448] = {.lex_state = 71, .external_lex_state = 2}, + [3449] = {.lex_state = 71, .external_lex_state = 2}, + [3450] = {.lex_state = 4, .external_lex_state = 2}, + [3451] = {.lex_state = 4, .external_lex_state = 2}, + [3452] = {.lex_state = 4, .external_lex_state = 2}, + [3453] = {.lex_state = 4, .external_lex_state = 2}, + [3454] = {.lex_state = 4, .external_lex_state = 2}, + [3455] = {.lex_state = 4, .external_lex_state = 2}, + [3456] = {.lex_state = 71, .external_lex_state = 2}, + [3457] = {.lex_state = 72, .external_lex_state = 5}, + [3458] = {.lex_state = 71, .external_lex_state = 2}, + [3459] = {.lex_state = 4, .external_lex_state = 2}, + [3460] = {.lex_state = 4, .external_lex_state = 2}, + [3461] = {.lex_state = 71, .external_lex_state = 2}, + [3462] = {.lex_state = 4, .external_lex_state = 2}, [3463] = {.lex_state = 71, .external_lex_state = 3}, - [3464] = {.lex_state = 71, .external_lex_state = 3}, - [3465] = {.lex_state = 4, .external_lex_state = 3}, - [3466] = {.lex_state = 71, .external_lex_state = 3}, - [3467] = {.lex_state = 4, .external_lex_state = 3}, - [3468] = {.lex_state = 4, .external_lex_state = 3}, - [3469] = {.lex_state = 4, .external_lex_state = 3}, - [3470] = {.lex_state = 71, .external_lex_state = 3}, - [3471] = {.lex_state = 4, .external_lex_state = 3}, - [3472] = {.lex_state = 7, .external_lex_state = 3}, - [3473] = {.lex_state = 4, .external_lex_state = 3}, - [3474] = {.lex_state = 71, .external_lex_state = 3}, - [3475] = {.lex_state = 4, .external_lex_state = 3}, - [3476] = {.lex_state = 71, .external_lex_state = 3}, - [3477] = {.lex_state = 71, .external_lex_state = 3}, - [3478] = {.lex_state = 4, .external_lex_state = 3}, - [3479] = {.lex_state = 4, .external_lex_state = 3}, - [3480] = {.lex_state = 71, .external_lex_state = 3}, - [3481] = {.lex_state = 71, .external_lex_state = 3}, - [3482] = {.lex_state = 71, .external_lex_state = 3}, - [3483] = {.lex_state = 4, .external_lex_state = 3}, - [3484] = {.lex_state = 71, .external_lex_state = 3}, - [3485] = {.lex_state = 71, .external_lex_state = 3}, - [3486] = {.lex_state = 4, .external_lex_state = 3}, + [3464] = {.lex_state = 72, .external_lex_state = 5}, + [3465] = {.lex_state = 4, .external_lex_state = 2}, + [3466] = {.lex_state = 71, .external_lex_state = 2}, + [3467] = {.lex_state = 71, .external_lex_state = 2}, + [3468] = {.lex_state = 4, .external_lex_state = 2}, + [3469] = {.lex_state = 4, .external_lex_state = 2}, + [3470] = {.lex_state = 4, .external_lex_state = 2}, + [3471] = {.lex_state = 72, .external_lex_state = 5}, + [3472] = {.lex_state = 4, .external_lex_state = 2}, + [3473] = {.lex_state = 4, .external_lex_state = 2}, + [3474] = {.lex_state = 72, .external_lex_state = 5}, + [3475] = {.lex_state = 71, .external_lex_state = 2}, + [3476] = {.lex_state = 72, .external_lex_state = 5}, + [3477] = {.lex_state = 4, .external_lex_state = 2}, + [3478] = {.lex_state = 4, .external_lex_state = 2}, + [3479] = {.lex_state = 4, .external_lex_state = 2}, + [3480] = {.lex_state = 4, .external_lex_state = 2}, + [3481] = {.lex_state = 71, .external_lex_state = 2}, + [3482] = {.lex_state = 71, .external_lex_state = 2}, + [3483] = {.lex_state = 71, .external_lex_state = 2}, + [3484] = {.lex_state = 4, .external_lex_state = 2}, + [3485] = {.lex_state = 71, .external_lex_state = 2}, + [3486] = {.lex_state = 4, .external_lex_state = 2}, [3487] = {.lex_state = 71, .external_lex_state = 3}, - [3488] = {.lex_state = 4, .external_lex_state = 3}, - [3489] = {.lex_state = 4, .external_lex_state = 3}, - [3490] = {.lex_state = 4, .external_lex_state = 3}, - [3491] = {.lex_state = 4, .external_lex_state = 3}, - [3492] = {.lex_state = 71, .external_lex_state = 3}, - [3493] = {.lex_state = 71, .external_lex_state = 3}, - [3494] = {.lex_state = 4, .external_lex_state = 3}, - [3495] = {.lex_state = 4, .external_lex_state = 3}, - [3496] = {.lex_state = 71, .external_lex_state = 3}, - [3497] = {.lex_state = 4, .external_lex_state = 3}, - [3498] = {.lex_state = 71, .external_lex_state = 3}, - [3499] = {.lex_state = 71, .external_lex_state = 3}, - [3500] = {.lex_state = 71, .external_lex_state = 3}, - [3501] = {.lex_state = 71, .external_lex_state = 3}, - [3502] = {.lex_state = 4, .external_lex_state = 3}, - [3503] = {.lex_state = 4, .external_lex_state = 3}, - [3504] = {.lex_state = 4, .external_lex_state = 3}, - [3505] = {.lex_state = 72, .external_lex_state = 5}, - [3506] = {.lex_state = 71, .external_lex_state = 3}, + [3488] = {.lex_state = 4, .external_lex_state = 2}, + [3489] = {.lex_state = 71, .external_lex_state = 2}, + [3490] = {.lex_state = 4, .external_lex_state = 2}, + [3491] = {.lex_state = 4, .external_lex_state = 2}, + [3492] = {.lex_state = 71, .external_lex_state = 2}, + [3493] = {.lex_state = 4, .external_lex_state = 2}, + [3494] = {.lex_state = 4, .external_lex_state = 2}, + [3495] = {.lex_state = 4, .external_lex_state = 2}, + [3496] = {.lex_state = 71, .external_lex_state = 2}, + [3497] = {.lex_state = 71, .external_lex_state = 2}, + [3498] = {.lex_state = 71, .external_lex_state = 2}, + [3499] = {.lex_state = 4, .external_lex_state = 2}, + [3500] = {.lex_state = 4, .external_lex_state = 2}, + [3501] = {.lex_state = 71, .external_lex_state = 2}, + [3502] = {.lex_state = 4, .external_lex_state = 2}, + [3503] = {.lex_state = 71, .external_lex_state = 2}, + [3504] = {.lex_state = 71, .external_lex_state = 2}, + [3505] = {.lex_state = 71, .external_lex_state = 2}, + [3506] = {.lex_state = 72, .external_lex_state = 5}, [3507] = {.lex_state = 71, .external_lex_state = 2}, [3508] = {.lex_state = 71, .external_lex_state = 3}, - [3509] = {.lex_state = 71, .external_lex_state = 3}, - [3510] = {.lex_state = 71, .external_lex_state = 3}, + [3509] = {.lex_state = 71, .external_lex_state = 2}, + [3510] = {.lex_state = 71, .external_lex_state = 2}, [3511] = {.lex_state = 71, .external_lex_state = 2}, - [3512] = {.lex_state = 71, .external_lex_state = 3}, - [3513] = {.lex_state = 71, .external_lex_state = 2}, - [3514] = {.lex_state = 71, .external_lex_state = 2}, + [3512] = {.lex_state = 71, .external_lex_state = 2}, + [3513] = {.lex_state = 71, .external_lex_state = 3}, + [3514] = {.lex_state = 71, .external_lex_state = 3}, [3515] = {.lex_state = 71, .external_lex_state = 2}, - [3516] = {.lex_state = 71, .external_lex_state = 3}, - [3517] = {.lex_state = 72}, - [3518] = {.lex_state = 71, .external_lex_state = 3}, - [3519] = {.lex_state = 72}, - [3520] = {.lex_state = 71, .external_lex_state = 2}, - [3521] = {.lex_state = 71, .external_lex_state = 3}, - [3522] = {.lex_state = 71, .external_lex_state = 3}, + [3516] = {.lex_state = 71, .external_lex_state = 2}, + [3517] = {.lex_state = 71, .external_lex_state = 2}, + [3518] = {.lex_state = 71, .external_lex_state = 2}, + [3519] = {.lex_state = 72, .external_lex_state = 5}, + [3520] = {.lex_state = 72, .external_lex_state = 5}, + [3521] = {.lex_state = 71, .external_lex_state = 2}, + [3522] = {.lex_state = 71, .external_lex_state = 2}, [3523] = {.lex_state = 71, .external_lex_state = 2}, - [3524] = {.lex_state = 72, .external_lex_state = 5}, - [3525] = {.lex_state = 72, .external_lex_state = 5}, + [3524] = {.lex_state = 71, .external_lex_state = 2}, + [3525] = {.lex_state = 71, .external_lex_state = 2}, [3526] = {.lex_state = 72, .external_lex_state = 5}, - [3527] = {.lex_state = 71, .external_lex_state = 3}, - [3528] = {.lex_state = 71, .external_lex_state = 3}, + [3527] = {.lex_state = 71, .external_lex_state = 2}, + [3528] = {.lex_state = 72}, [3529] = {.lex_state = 71, .external_lex_state = 3}, - [3530] = {.lex_state = 72, .external_lex_state = 5}, - [3531] = {.lex_state = 71, .external_lex_state = 3}, - [3532] = {.lex_state = 71, .external_lex_state = 3}, + [3530] = {.lex_state = 71, .external_lex_state = 3}, + [3531] = {.lex_state = 71, .external_lex_state = 2}, + [3532] = {.lex_state = 72, .external_lex_state = 5}, [3533] = {.lex_state = 71, .external_lex_state = 2}, - [3534] = {.lex_state = 71, .external_lex_state = 3}, - [3535] = {.lex_state = 71, .external_lex_state = 3}, - [3536] = {.lex_state = 71, .external_lex_state = 3}, - [3537] = {.lex_state = 71, .external_lex_state = 2}, - [3538] = {.lex_state = 71, .external_lex_state = 3}, - [3539] = {.lex_state = 72, .external_lex_state = 5}, - [3540] = {.lex_state = 72, .external_lex_state = 5}, - [3541] = {.lex_state = 71, .external_lex_state = 3}, + [3534] = {.lex_state = 71, .external_lex_state = 2}, + [3535] = {.lex_state = 72}, + [3536] = {.lex_state = 72, .external_lex_state = 5}, + [3537] = {.lex_state = 72, .external_lex_state = 5}, + [3538] = {.lex_state = 71, .external_lex_state = 2}, + [3539] = {.lex_state = 71, .external_lex_state = 3}, + [3540] = {.lex_state = 71, .external_lex_state = 2}, + [3541] = {.lex_state = 71, .external_lex_state = 2}, [3542] = {.lex_state = 71, .external_lex_state = 3}, - [3543] = {.lex_state = 72, .external_lex_state = 5}, - [3544] = {.lex_state = 72, .external_lex_state = 5}, - [3545] = {.lex_state = 71, .external_lex_state = 3}, - [3546] = {.lex_state = 71, .external_lex_state = 2}, - [3547] = {.lex_state = 71, .external_lex_state = 3}, - [3548] = {.lex_state = 71, .external_lex_state = 3}, - [3549] = {.lex_state = 72, .external_lex_state = 5}, + [3543] = {.lex_state = 71, .external_lex_state = 3}, + [3544] = {.lex_state = 71, .external_lex_state = 3}, + [3545] = {.lex_state = 71, .external_lex_state = 2}, + [3546] = {.lex_state = 72, .external_lex_state = 5}, + [3547] = {.lex_state = 72, .external_lex_state = 5}, + [3548] = {.lex_state = 72, .external_lex_state = 5}, + [3549] = {.lex_state = 71, .external_lex_state = 2}, [3550] = {.lex_state = 71, .external_lex_state = 3}, - [3551] = {.lex_state = 72, .external_lex_state = 5}, - [3552] = {.lex_state = 72}, - [3553] = {.lex_state = 72}, - [3554] = {.lex_state = 72, .external_lex_state = 5}, + [3551] = {.lex_state = 71, .external_lex_state = 2}, + [3552] = {.lex_state = 72, .external_lex_state = 5}, + [3553] = {.lex_state = 72, .external_lex_state = 5}, + [3554] = {.lex_state = 71, .external_lex_state = 2}, [3555] = {.lex_state = 72, .external_lex_state = 5}, [3556] = {.lex_state = 72, .external_lex_state = 5}, [3557] = {.lex_state = 72}, [3558] = {.lex_state = 72}, [3559] = {.lex_state = 72, .external_lex_state = 5}, - [3560] = {.lex_state = 72, .external_lex_state = 5}, + [3560] = {.lex_state = 72}, [3561] = {.lex_state = 72}, - [3562] = {.lex_state = 72, .external_lex_state = 5}, - [3563] = {.lex_state = 71, .external_lex_state = 3}, - [3564] = {.lex_state = 72, .external_lex_state = 5}, + [3562] = {.lex_state = 71, .external_lex_state = 2}, + [3563] = {.lex_state = 72}, + [3564] = {.lex_state = 71, .external_lex_state = 2}, [3565] = {.lex_state = 72}, [3566] = {.lex_state = 72}, [3567] = {.lex_state = 72}, - [3568] = {.lex_state = 72}, - [3569] = {.lex_state = 72}, + [3568] = {.lex_state = 72, .external_lex_state = 5}, + [3569] = {.lex_state = 72, .external_lex_state = 5}, [3570] = {.lex_state = 72}, - [3571] = {.lex_state = 72, .external_lex_state = 5}, - [3572] = {.lex_state = 72, .external_lex_state = 5}, - [3573] = {.lex_state = 71, .external_lex_state = 3}, - [3574] = {.lex_state = 72}, - [3575] = {.lex_state = 72}, - [3576] = {.lex_state = 72}, - [3577] = {.lex_state = 72}, - [3578] = {.lex_state = 72}, - [3579] = {.lex_state = 71, .external_lex_state = 3}, - [3580] = {.lex_state = 72}, - [3581] = {.lex_state = 72, .external_lex_state = 5}, - [3582] = {.lex_state = 72, .external_lex_state = 5}, - [3583] = {.lex_state = 72}, - [3584] = {.lex_state = 71, .external_lex_state = 3}, - [3585] = {.lex_state = 72, .external_lex_state = 5}, - [3586] = {.lex_state = 71, .external_lex_state = 3}, - [3587] = {.lex_state = 72, .external_lex_state = 5}, - [3588] = {.lex_state = 71, .external_lex_state = 3}, - [3589] = {.lex_state = 72, .external_lex_state = 5}, - [3590] = {.lex_state = 72}, - [3591] = {.lex_state = 72, .external_lex_state = 5}, - [3592] = {.lex_state = 71, .external_lex_state = 3}, + [3571] = {.lex_state = 71, .external_lex_state = 2}, + [3572] = {.lex_state = 72}, + [3573] = {.lex_state = 72, .external_lex_state = 5}, + [3574] = {.lex_state = 71, .external_lex_state = 2}, + [3575] = {.lex_state = 72, .external_lex_state = 5}, + [3576] = {.lex_state = 72, .external_lex_state = 5}, + [3577] = {.lex_state = 71, .external_lex_state = 2}, + [3578] = {.lex_state = 71, .external_lex_state = 2}, + [3579] = {.lex_state = 71, .external_lex_state = 2}, + [3580] = {.lex_state = 71, .external_lex_state = 2}, + [3581] = {.lex_state = 71, .external_lex_state = 2}, + [3582] = {.lex_state = 72}, + [3583] = {.lex_state = 71, .external_lex_state = 2}, + [3584] = {.lex_state = 72, .external_lex_state = 5}, + [3585] = {.lex_state = 72}, + [3586] = {.lex_state = 71, .external_lex_state = 2}, + [3587] = {.lex_state = 71, .external_lex_state = 2}, + [3588] = {.lex_state = 72}, + [3589] = {.lex_state = 72}, + [3590] = {.lex_state = 71, .external_lex_state = 2}, + [3591] = {.lex_state = 71, .external_lex_state = 2}, + [3592] = {.lex_state = 72, .external_lex_state = 5}, [3593] = {.lex_state = 72, .external_lex_state = 5}, - [3594] = {.lex_state = 71, .external_lex_state = 3}, - [3595] = {.lex_state = 72, .external_lex_state = 5}, + [3594] = {.lex_state = 72, .external_lex_state = 5}, + [3595] = {.lex_state = 72}, [3596] = {.lex_state = 72, .external_lex_state = 5}, [3597] = {.lex_state = 72, .external_lex_state = 5}, - [3598] = {.lex_state = 72}, + [3598] = {.lex_state = 72, .external_lex_state = 5}, [3599] = {.lex_state = 72, .external_lex_state = 5}, [3600] = {.lex_state = 72}, [3601] = {.lex_state = 72}, [3602] = {.lex_state = 72}, [3603] = {.lex_state = 72}, - [3604] = {.lex_state = 72, .external_lex_state = 5}, - [3605] = {.lex_state = 72, .external_lex_state = 5}, + [3604] = {.lex_state = 72}, + [3605] = {.lex_state = 71, .external_lex_state = 2}, [3606] = {.lex_state = 72, .external_lex_state = 5}, - [3607] = {.lex_state = 72}, + [3607] = {.lex_state = 72, .external_lex_state = 5}, [3608] = {.lex_state = 72}, - [3609] = {.lex_state = 71, .external_lex_state = 3}, + [3609] = {.lex_state = 71, .external_lex_state = 2}, [3610] = {.lex_state = 72, .external_lex_state = 5}, - [3611] = {.lex_state = 72}, - [3612] = {.lex_state = 72}, - [3613] = {.lex_state = 72, .external_lex_state = 5}, + [3611] = {.lex_state = 72, .external_lex_state = 5}, + [3612] = {.lex_state = 72, .external_lex_state = 5}, + [3613] = {.lex_state = 72}, [3614] = {.lex_state = 72}, - [3615] = {.lex_state = 72, .external_lex_state = 5}, + [3615] = {.lex_state = 72}, [3616] = {.lex_state = 72}, [3617] = {.lex_state = 72}, - [3618] = {.lex_state = 71, .external_lex_state = 3}, - [3619] = {.lex_state = 72, .external_lex_state = 5}, - [3620] = {.lex_state = 72}, - [3621] = {.lex_state = 71, .external_lex_state = 3}, - [3622] = {.lex_state = 71, .external_lex_state = 3}, - [3623] = {.lex_state = 71, .external_lex_state = 3}, + [3618] = {.lex_state = 72}, + [3619] = {.lex_state = 72}, + [3620] = {.lex_state = 72, .external_lex_state = 5}, + [3621] = {.lex_state = 72, .external_lex_state = 5}, + [3622] = {.lex_state = 72}, + [3623] = {.lex_state = 72}, [3624] = {.lex_state = 72}, [3625] = {.lex_state = 72}, [3626] = {.lex_state = 72}, [3627] = {.lex_state = 72}, - [3628] = {.lex_state = 72}, - [3629] = {.lex_state = 71, .external_lex_state = 3}, - [3630] = {.lex_state = 71, .external_lex_state = 3}, - [3631] = {.lex_state = 72, .external_lex_state = 5}, - [3632] = {.lex_state = 71, .external_lex_state = 3}, + [3628] = {.lex_state = 72, .external_lex_state = 5}, + [3629] = {.lex_state = 72, .external_lex_state = 5}, + [3630] = {.lex_state = 72}, + [3631] = {.lex_state = 72}, + [3632] = {.lex_state = 72}, [3633] = {.lex_state = 72, .external_lex_state = 5}, - [3634] = {.lex_state = 72}, - [3635] = {.lex_state = 72}, - [3636] = {.lex_state = 72, .external_lex_state = 5}, - [3637] = {.lex_state = 72, .external_lex_state = 5}, + [3634] = {.lex_state = 72, .external_lex_state = 5}, + [3635] = {.lex_state = 72, .external_lex_state = 5}, + [3636] = {.lex_state = 72}, + [3637] = {.lex_state = 72}, [3638] = {.lex_state = 72}, - [3639] = {.lex_state = 71, .external_lex_state = 3}, - [3640] = {.lex_state = 72}, + [3639] = {.lex_state = 72}, + [3640] = {.lex_state = 72, .external_lex_state = 5}, [3641] = {.lex_state = 72, .external_lex_state = 5}, - [3642] = {.lex_state = 72}, - [3643] = {.lex_state = 71, .external_lex_state = 3}, - [3644] = {.lex_state = 71, .external_lex_state = 3}, + [3642] = {.lex_state = 71, .external_lex_state = 2}, + [3643] = {.lex_state = 71, .external_lex_state = 2}, + [3644] = {.lex_state = 71, .external_lex_state = 2}, [3645] = {.lex_state = 72, .external_lex_state = 5}, [3646] = {.lex_state = 72, .external_lex_state = 5}, - [3647] = {.lex_state = 72}, - [3648] = {.lex_state = 71, .external_lex_state = 3}, - [3649] = {.lex_state = 72, .external_lex_state = 5}, - [3650] = {.lex_state = 72}, - [3651] = {.lex_state = 13}, + [3647] = {.lex_state = 72, .external_lex_state = 5}, + [3648] = {.lex_state = 72}, + [3649] = {.lex_state = 72}, + [3650] = {.lex_state = 13}, + [3651] = {.lex_state = 72}, [3652] = {.lex_state = 72}, - [3653] = {.lex_state = 72}, - [3654] = {.lex_state = 72, .external_lex_state = 5}, + [3653] = {.lex_state = 13}, + [3654] = {.lex_state = 72}, [3655] = {.lex_state = 72, .external_lex_state = 5}, [3656] = {.lex_state = 72, .external_lex_state = 5}, - [3657] = {.lex_state = 72, .external_lex_state = 5}, - [3658] = {.lex_state = 72}, + [3657] = {.lex_state = 13}, + [3658] = {.lex_state = 72, .external_lex_state = 5}, [3659] = {.lex_state = 72, .external_lex_state = 5}, [3660] = {.lex_state = 72}, [3661] = {.lex_state = 72}, - [3662] = {.lex_state = 72, .external_lex_state = 5}, + [3662] = {.lex_state = 72}, [3663] = {.lex_state = 72, .external_lex_state = 5}, - [3664] = {.lex_state = 72, .external_lex_state = 5}, - [3665] = {.lex_state = 72, .external_lex_state = 5}, - [3666] = {.lex_state = 72}, + [3664] = {.lex_state = 72}, + [3665] = {.lex_state = 72}, + [3666] = {.lex_state = 72, .external_lex_state = 5}, [3667] = {.lex_state = 72, .external_lex_state = 5}, - [3668] = {.lex_state = 72}, - [3669] = {.lex_state = 72}, - [3670] = {.lex_state = 72, .external_lex_state = 5}, - [3671] = {.lex_state = 72, .external_lex_state = 5}, + [3668] = {.lex_state = 72, .external_lex_state = 5}, + [3669] = {.lex_state = 72, .external_lex_state = 5}, + [3670] = {.lex_state = 72}, + [3671] = {.lex_state = 72}, [3672] = {.lex_state = 72, .external_lex_state = 5}, - [3673] = {.lex_state = 72}, + [3673] = {.lex_state = 72, .external_lex_state = 5}, [3674] = {.lex_state = 72, .external_lex_state = 5}, [3675] = {.lex_state = 72, .external_lex_state = 5}, - [3676] = {.lex_state = 72, .external_lex_state = 5}, - [3677] = {.lex_state = 72}, + [3676] = {.lex_state = 72}, + [3677] = {.lex_state = 72, .external_lex_state = 5}, [3678] = {.lex_state = 72}, - [3679] = {.lex_state = 72}, - [3680] = {.lex_state = 13}, - [3681] = {.lex_state = 72}, + [3679] = {.lex_state = 72, .external_lex_state = 5}, + [3680] = {.lex_state = 72, .external_lex_state = 5}, + [3681] = {.lex_state = 13}, [3682] = {.lex_state = 72, .external_lex_state = 5}, - [3683] = {.lex_state = 72, .external_lex_state = 5}, - [3684] = {.lex_state = 72}, + [3683] = {.lex_state = 13}, + [3684] = {.lex_state = 72, .external_lex_state = 5}, [3685] = {.lex_state = 72, .external_lex_state = 5}, [3686] = {.lex_state = 72}, [3687] = {.lex_state = 72, .external_lex_state = 5}, [3688] = {.lex_state = 72}, [3689] = {.lex_state = 72}, - [3690] = {.lex_state = 72, .external_lex_state = 5}, + [3690] = {.lex_state = 72}, [3691] = {.lex_state = 72}, [3692] = {.lex_state = 72}, [3693] = {.lex_state = 72}, [3694] = {.lex_state = 72}, - [3695] = {.lex_state = 72, .external_lex_state = 5}, + [3695] = {.lex_state = 72}, [3696] = {.lex_state = 72}, [3697] = {.lex_state = 72}, - [3698] = {.lex_state = 72}, + [3698] = {.lex_state = 72, .external_lex_state = 5}, [3699] = {.lex_state = 72}, [3700] = {.lex_state = 72}, [3701] = {.lex_state = 72, .external_lex_state = 5}, [3702] = {.lex_state = 72}, [3703] = {.lex_state = 72}, [3704] = {.lex_state = 72}, - [3705] = {.lex_state = 72}, + [3705] = {.lex_state = 72, .external_lex_state = 5}, [3706] = {.lex_state = 72}, [3707] = {.lex_state = 72}, [3708] = {.lex_state = 72}, - [3709] = {.lex_state = 13}, + [3709] = {.lex_state = 72}, [3710] = {.lex_state = 72}, [3711] = {.lex_state = 72}, [3712] = {.lex_state = 72}, [3713] = {.lex_state = 72}, - [3714] = {.lex_state = 13}, + [3714] = {.lex_state = 72}, [3715] = {.lex_state = 72}, [3716] = {.lex_state = 13}, - [3717] = {.lex_state = 13}, + [3717] = {.lex_state = 72}, [3718] = {.lex_state = 72}, - [3719] = {.lex_state = 13}, + [3719] = {.lex_state = 72}, [3720] = {.lex_state = 72}, - [3721] = {.lex_state = 72}, + [3721] = {.lex_state = 13}, [3722] = {.lex_state = 72}, [3723] = {.lex_state = 72}, - [3724] = {.lex_state = 72}, + [3724] = {.lex_state = 11, .external_lex_state = 5}, [3725] = {.lex_state = 11, .external_lex_state = 5}, - [3726] = {.lex_state = 72}, + [3726] = {.lex_state = 11, .external_lex_state = 5}, [3727] = {.lex_state = 72}, [3728] = {.lex_state = 11, .external_lex_state = 5}, [3729] = {.lex_state = 72}, [3730] = {.lex_state = 72}, - [3731] = {.lex_state = 72}, + [3731] = {.lex_state = 11, .external_lex_state = 5}, [3732] = {.lex_state = 11, .external_lex_state = 5}, [3733] = {.lex_state = 11, .external_lex_state = 5}, [3734] = {.lex_state = 11, .external_lex_state = 5}, [3735] = {.lex_state = 11, .external_lex_state = 5}, - [3736] = {.lex_state = 72}, - [3737] = {.lex_state = 11, .external_lex_state = 5}, + [3736] = {.lex_state = 11, .external_lex_state = 5}, + [3737] = {.lex_state = 72}, [3738] = {.lex_state = 11, .external_lex_state = 5}, [3739] = {.lex_state = 11, .external_lex_state = 5}, [3740] = {.lex_state = 11, .external_lex_state = 5}, [3741] = {.lex_state = 11, .external_lex_state = 5}, [3742] = {.lex_state = 11, .external_lex_state = 5}, - [3743] = {.lex_state = 72}, + [3743] = {.lex_state = 11, .external_lex_state = 5}, [3744] = {.lex_state = 11, .external_lex_state = 5}, [3745] = {.lex_state = 11, .external_lex_state = 5}, [3746] = {.lex_state = 11, .external_lex_state = 5}, - [3747] = {.lex_state = 72}, + [3747] = {.lex_state = 11, .external_lex_state = 5}, [3748] = {.lex_state = 11, .external_lex_state = 5}, - [3749] = {.lex_state = 11, .external_lex_state = 5}, + [3749] = {.lex_state = 72}, [3750] = {.lex_state = 72}, [3751] = {.lex_state = 11, .external_lex_state = 5}, - [3752] = {.lex_state = 11, .external_lex_state = 5}, - [3753] = {.lex_state = 11, .external_lex_state = 5}, - [3754] = {.lex_state = 11, .external_lex_state = 5}, - [3755] = {.lex_state = 11, .external_lex_state = 5}, + [3752] = {.lex_state = 72}, + [3753] = {.lex_state = 72}, + [3754] = {.lex_state = 72}, + [3755] = {.lex_state = 72}, [3756] = {.lex_state = 11, .external_lex_state = 5}, [3757] = {.lex_state = 72}, [3758] = {.lex_state = 72}, @@ -9798,10 +9797,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3776] = {.lex_state = 72}, [3777] = {.lex_state = 72}, [3778] = {.lex_state = 72}, - [3779] = {.lex_state = 11}, + [3779] = {.lex_state = 72}, [3780] = {.lex_state = 72}, [3781] = {.lex_state = 72}, - [3782] = {.lex_state = 72}, + [3782] = {.lex_state = 11}, [3783] = {.lex_state = 72}, [3784] = {.lex_state = 72}, [3785] = {.lex_state = 72}, @@ -9851,16 +9850,16 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3829] = {.lex_state = 2}, [3830] = {.lex_state = 2}, [3831] = {.lex_state = 2}, - [3832] = {.lex_state = 2}, - [3833] = {.lex_state = 2}, + [3832] = {.lex_state = 72}, + [3833] = {.lex_state = 72}, [3834] = {.lex_state = 2}, [3835] = {.lex_state = 2}, [3836] = {.lex_state = 2}, [3837] = {.lex_state = 2}, [3838] = {.lex_state = 2}, [3839] = {.lex_state = 2}, - [3840] = {.lex_state = 72}, - [3841] = {.lex_state = 2}, + [3840] = {.lex_state = 2}, + [3841] = {.lex_state = 72}, [3842] = {.lex_state = 2}, [3843] = {.lex_state = 2}, [3844] = {.lex_state = 2}, @@ -9869,63 +9868,63 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3847] = {.lex_state = 2}, [3848] = {.lex_state = 2}, [3849] = {.lex_state = 2}, - [3850] = {.lex_state = 72, .external_lex_state = 5}, - [3851] = {.lex_state = 72, .external_lex_state = 5}, + [3850] = {.lex_state = 2}, + [3851] = {.lex_state = 2}, [3852] = {.lex_state = 72, .external_lex_state = 5}, - [3853] = {.lex_state = 72}, + [3853] = {.lex_state = 72, .external_lex_state = 5}, [3854] = {.lex_state = 72, .external_lex_state = 5}, [3855] = {.lex_state = 72, .external_lex_state = 5}, [3856] = {.lex_state = 72, .external_lex_state = 5}, [3857] = {.lex_state = 72, .external_lex_state = 5}, [3858] = {.lex_state = 72, .external_lex_state = 5}, - [3859] = {.lex_state = 72}, - [3860] = {.lex_state = 72, .external_lex_state = 5}, - [3861] = {.lex_state = 72}, + [3859] = {.lex_state = 72, .external_lex_state = 5}, + [3860] = {.lex_state = 72}, + [3861] = {.lex_state = 72, .external_lex_state = 5}, [3862] = {.lex_state = 72}, - [3863] = {.lex_state = 72, .external_lex_state = 5}, + [3863] = {.lex_state = 72}, [3864] = {.lex_state = 72}, [3865] = {.lex_state = 72}, [3866] = {.lex_state = 72}, [3867] = {.lex_state = 72}, [3868] = {.lex_state = 72}, [3869] = {.lex_state = 72}, - [3870] = {.lex_state = 72}, + [3870] = {.lex_state = 72, .external_lex_state = 5}, [3871] = {.lex_state = 72}, - [3872] = {.lex_state = 72}, + [3872] = {.lex_state = 72, .external_lex_state = 5}, [3873] = {.lex_state = 72}, - [3874] = {.lex_state = 72}, - [3875] = {.lex_state = 72, .external_lex_state = 5}, - [3876] = {.lex_state = 72, .external_lex_state = 5}, + [3874] = {.lex_state = 72, .external_lex_state = 5}, + [3875] = {.lex_state = 72}, + [3876] = {.lex_state = 72}, [3877] = {.lex_state = 72}, - [3878] = {.lex_state = 72, .external_lex_state = 5}, + [3878] = {.lex_state = 72}, [3879] = {.lex_state = 72}, [3880] = {.lex_state = 72}, - [3881] = {.lex_state = 72}, - [3882] = {.lex_state = 72, .external_lex_state = 5}, + [3881] = {.lex_state = 72, .external_lex_state = 5}, + [3882] = {.lex_state = 72}, [3883] = {.lex_state = 72}, [3884] = {.lex_state = 72}, [3885] = {.lex_state = 72, .external_lex_state = 5}, [3886] = {.lex_state = 72}, [3887] = {.lex_state = 72, .external_lex_state = 5}, - [3888] = {.lex_state = 72}, - [3889] = {.lex_state = 72}, - [3890] = {.lex_state = 72, .external_lex_state = 5}, - [3891] = {.lex_state = 72, .external_lex_state = 5}, + [3888] = {.lex_state = 72, .external_lex_state = 5}, + [3889] = {.lex_state = 72, .external_lex_state = 5}, + [3890] = {.lex_state = 72}, + [3891] = {.lex_state = 72}, [3892] = {.lex_state = 72}, [3893] = {.lex_state = 72}, [3894] = {.lex_state = 72, .external_lex_state = 5}, - [3895] = {.lex_state = 72}, + [3895] = {.lex_state = 72, .external_lex_state = 5}, [3896] = {.lex_state = 72}, [3897] = {.lex_state = 72}, [3898] = {.lex_state = 72, .external_lex_state = 5}, [3899] = {.lex_state = 72, .external_lex_state = 5}, - [3900] = {.lex_state = 72, .external_lex_state = 6}, + [3900] = {.lex_state = 72, .external_lex_state = 5}, [3901] = {.lex_state = 72, .external_lex_state = 5}, [3902] = {.lex_state = 72, .external_lex_state = 5}, [3903] = {.lex_state = 72, .external_lex_state = 5}, [3904] = {.lex_state = 72, .external_lex_state = 5}, [3905] = {.lex_state = 72, .external_lex_state = 5}, - [3906] = {.lex_state = 72, .external_lex_state = 5}, + [3906] = {.lex_state = 72}, [3907] = {.lex_state = 72, .external_lex_state = 5}, [3908] = {.lex_state = 72, .external_lex_state = 5}, [3909] = {.lex_state = 72, .external_lex_state = 5}, @@ -9939,18 +9938,18 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3917] = {.lex_state = 72, .external_lex_state = 5}, [3918] = {.lex_state = 72, .external_lex_state = 5}, [3919] = {.lex_state = 72, .external_lex_state = 5}, - [3920] = {.lex_state = 72}, + [3920] = {.lex_state = 72, .external_lex_state = 6}, [3921] = {.lex_state = 72, .external_lex_state = 5}, [3922] = {.lex_state = 72, .external_lex_state = 5}, [3923] = {.lex_state = 72, .external_lex_state = 5}, [3924] = {.lex_state = 72, .external_lex_state = 5}, [3925] = {.lex_state = 72, .external_lex_state = 5}, [3926] = {.lex_state = 72, .external_lex_state = 5}, - [3927] = {.lex_state = 72, .external_lex_state = 5}, + [3927] = {.lex_state = 72}, [3928] = {.lex_state = 72, .external_lex_state = 5}, - [3929] = {.lex_state = 72, .external_lex_state = 5}, + [3929] = {.lex_state = 72, .external_lex_state = 6}, [3930] = {.lex_state = 72, .external_lex_state = 5}, - [3931] = {.lex_state = 72, .external_lex_state = 5}, + [3931] = {.lex_state = 72}, [3932] = {.lex_state = 72, .external_lex_state = 5}, [3933] = {.lex_state = 72, .external_lex_state = 5}, [3934] = {.lex_state = 72, .external_lex_state = 5}, @@ -9959,10 +9958,10 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3937] = {.lex_state = 72, .external_lex_state = 5}, [3938] = {.lex_state = 72, .external_lex_state = 5}, [3939] = {.lex_state = 72, .external_lex_state = 5}, - [3940] = {.lex_state = 72, .external_lex_state = 5}, + [3940] = {.lex_state = 72}, [3941] = {.lex_state = 72, .external_lex_state = 5}, [3942] = {.lex_state = 72, .external_lex_state = 5}, - [3943] = {.lex_state = 72, .external_lex_state = 5}, + [3943] = {.lex_state = 72}, [3944] = {.lex_state = 72, .external_lex_state = 5}, [3945] = {.lex_state = 72, .external_lex_state = 5}, [3946] = {.lex_state = 72, .external_lex_state = 5}, @@ -9970,58 +9969,58 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [3948] = {.lex_state = 72, .external_lex_state = 5}, [3949] = {.lex_state = 72, .external_lex_state = 5}, [3950] = {.lex_state = 72, .external_lex_state = 5}, - [3951] = {.lex_state = 72}, - [3952] = {.lex_state = 72, .external_lex_state = 5}, + [3951] = {.lex_state = 72, .external_lex_state = 5}, + [3952] = {.lex_state = 72}, [3953] = {.lex_state = 72, .external_lex_state = 5}, [3954] = {.lex_state = 72, .external_lex_state = 5}, [3955] = {.lex_state = 72, .external_lex_state = 5}, [3956] = {.lex_state = 72, .external_lex_state = 5}, - [3957] = {.lex_state = 72}, + [3957] = {.lex_state = 72, .external_lex_state = 5}, [3958] = {.lex_state = 72, .external_lex_state = 5}, [3959] = {.lex_state = 72, .external_lex_state = 5}, - [3960] = {.lex_state = 72}, - [3961] = {.lex_state = 72}, - [3962] = {.lex_state = 72}, - [3963] = {.lex_state = 72, .external_lex_state = 5}, + [3960] = {.lex_state = 72, .external_lex_state = 5}, + [3961] = {.lex_state = 72, .external_lex_state = 5}, + [3962] = {.lex_state = 72, .external_lex_state = 5}, + [3963] = {.lex_state = 72}, [3964] = {.lex_state = 72, .external_lex_state = 5}, [3965] = {.lex_state = 72, .external_lex_state = 5}, - [3966] = {.lex_state = 72, .external_lex_state = 6}, + [3966] = {.lex_state = 72, .external_lex_state = 5}, [3967] = {.lex_state = 72, .external_lex_state = 5}, [3968] = {.lex_state = 72, .external_lex_state = 5}, - [3969] = {.lex_state = 72}, - [3970] = {.lex_state = 72}, - [3971] = {.lex_state = 72, .external_lex_state = 5}, + [3969] = {.lex_state = 72, .external_lex_state = 5}, + [3970] = {.lex_state = 72, .external_lex_state = 5}, + [3971] = {.lex_state = 72}, [3972] = {.lex_state = 72, .external_lex_state = 5}, - [3973] = {.lex_state = 72}, + [3973] = {.lex_state = 72, .external_lex_state = 5}, [3974] = {.lex_state = 72}, - [3975] = {.lex_state = 72}, - [3976] = {.lex_state = 72}, - [3977] = {.lex_state = 72, .external_lex_state = 5}, - [3978] = {.lex_state = 72, .external_lex_state = 5}, + [3975] = {.lex_state = 72, .external_lex_state = 5}, + [3976] = {.lex_state = 72, .external_lex_state = 5}, + [3977] = {.lex_state = 72}, + [3978] = {.lex_state = 72}, [3979] = {.lex_state = 72, .external_lex_state = 5}, [3980] = {.lex_state = 72}, - [3981] = {.lex_state = 72, .external_lex_state = 5}, - [3982] = {.lex_state = 72}, + [3981] = {.lex_state = 72}, + [3982] = {.lex_state = 72, .external_lex_state = 5}, [3983] = {.lex_state = 72}, - [3984] = {.lex_state = 72, .external_lex_state = 6}, + [3984] = {.lex_state = 72, .external_lex_state = 5}, [3985] = {.lex_state = 72, .external_lex_state = 5}, - [3986] = {.lex_state = 72, .external_lex_state = 5}, + [3986] = {.lex_state = 72}, [3987] = {.lex_state = 72}, [3988] = {.lex_state = 72}, - [3989] = {.lex_state = 72}, - [3990] = {.lex_state = 72}, - [3991] = {.lex_state = 72, .external_lex_state = 5}, - [3992] = {.lex_state = 72, .external_lex_state = 5}, + [3989] = {.lex_state = 72, .external_lex_state = 5}, + [3990] = {.lex_state = 72, .external_lex_state = 5}, + [3991] = {.lex_state = 72}, + [3992] = {.lex_state = 72}, [3993] = {.lex_state = 72}, [3994] = {.lex_state = 72}, - [3995] = {.lex_state = 72, .external_lex_state = 5}, + [3995] = {.lex_state = 72, .external_lex_state = 6}, [3996] = {.lex_state = 72}, - [3997] = {.lex_state = 72, .external_lex_state = 5}, - [3998] = {.lex_state = 72}, - [3999] = {.lex_state = 72, .external_lex_state = 5}, + [3997] = {.lex_state = 72}, + [3998] = {.lex_state = 72, .external_lex_state = 5}, + [3999] = {.lex_state = 72, .external_lex_state = 6}, [4000] = {.lex_state = 72}, - [4001] = {.lex_state = 72, .external_lex_state = 6}, - [4002] = {.lex_state = 72}, + [4001] = {.lex_state = 72, .external_lex_state = 5}, + [4002] = {.lex_state = 72, .external_lex_state = 5}, [4003] = {.lex_state = 72}, [4004] = {.lex_state = 72}, [4005] = {.lex_state = 72}, @@ -10032,33 +10031,33 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4010] = {.lex_state = 72}, [4011] = {.lex_state = 72}, [4012] = {.lex_state = 72}, - [4013] = {.lex_state = 72, .external_lex_state = 5}, + [4013] = {.lex_state = 72}, [4014] = {.lex_state = 72}, - [4015] = {.lex_state = 72, .external_lex_state = 6}, + [4015] = {.lex_state = 72, .external_lex_state = 5}, [4016] = {.lex_state = 72}, [4017] = {.lex_state = 72}, [4018] = {.lex_state = 72}, - [4019] = {.lex_state = 72, .external_lex_state = 5}, + [4019] = {.lex_state = 72}, [4020] = {.lex_state = 72}, [4021] = {.lex_state = 72, .external_lex_state = 5}, - [4022] = {.lex_state = 72, .external_lex_state = 5}, - [4023] = {.lex_state = 72}, + [4022] = {.lex_state = 72}, + [4023] = {.lex_state = 72, .external_lex_state = 5}, [4024] = {.lex_state = 72}, - [4025] = {.lex_state = 72}, + [4025] = {.lex_state = 72, .external_lex_state = 5}, [4026] = {.lex_state = 72}, - [4027] = {.lex_state = 72, .external_lex_state = 5}, - [4028] = {.lex_state = 72}, + [4027] = {.lex_state = 72}, + [4028] = {.lex_state = 72, .external_lex_state = 5}, [4029] = {.lex_state = 72}, - [4030] = {.lex_state = 72}, + [4030] = {.lex_state = 72, .external_lex_state = 5}, [4031] = {.lex_state = 72}, [4032] = {.lex_state = 72}, [4033] = {.lex_state = 72}, - [4034] = {.lex_state = 72}, - [4035] = {.lex_state = 72}, + [4034] = {.lex_state = 72, .external_lex_state = 5}, + [4035] = {.lex_state = 72, .external_lex_state = 6}, [4036] = {.lex_state = 72}, [4037] = {.lex_state = 72}, - [4038] = {.lex_state = 72, .external_lex_state = 5}, - [4039] = {.lex_state = 72}, + [4038] = {.lex_state = 72}, + [4039] = {.lex_state = 72, .external_lex_state = 5}, [4040] = {.lex_state = 72}, [4041] = {.lex_state = 72}, [4042] = {.lex_state = 72}, @@ -10067,28 +10066,28 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4045] = {.lex_state = 72}, [4046] = {.lex_state = 72}, [4047] = {.lex_state = 72}, - [4048] = {.lex_state = 72}, - [4049] = {.lex_state = 72, .external_lex_state = 5}, - [4050] = {.lex_state = 72, .external_lex_state = 5}, + [4048] = {.lex_state = 72, .external_lex_state = 5}, + [4049] = {.lex_state = 72}, + [4050] = {.lex_state = 72}, [4051] = {.lex_state = 72}, [4052] = {.lex_state = 72}, [4053] = {.lex_state = 72}, [4054] = {.lex_state = 72}, - [4055] = {.lex_state = 72, .external_lex_state = 5}, + [4055] = {.lex_state = 72}, [4056] = {.lex_state = 72}, [4057] = {.lex_state = 72}, [4058] = {.lex_state = 72}, - [4059] = {.lex_state = 72, .external_lex_state = 5}, + [4059] = {.lex_state = 72}, [4060] = {.lex_state = 72}, [4061] = {.lex_state = 72}, [4062] = {.lex_state = 72}, [4063] = {.lex_state = 72}, [4064] = {.lex_state = 72, .external_lex_state = 6}, [4065] = {.lex_state = 72, .external_lex_state = 6}, - [4066] = {.lex_state = 72, .external_lex_state = 6}, + [4066] = {.lex_state = 72}, [4067] = {.lex_state = 72, .external_lex_state = 6}, - [4068] = {.lex_state = 72, .external_lex_state = 5}, - [4069] = {.lex_state = 72, .external_lex_state = 5}, + [4068] = {.lex_state = 72, .external_lex_state = 6}, + [4069] = {.lex_state = 72, .external_lex_state = 6}, [4070] = {.lex_state = 72, .external_lex_state = 6}, [4071] = {.lex_state = 72, .external_lex_state = 6}, [4072] = {.lex_state = 72}, @@ -10099,98 +10098,98 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4077] = {.lex_state = 72, .external_lex_state = 6}, [4078] = {.lex_state = 72, .external_lex_state = 6}, [4079] = {.lex_state = 72, .external_lex_state = 6}, - [4080] = {.lex_state = 72, .external_lex_state = 6}, + [4080] = {.lex_state = 72}, [4081] = {.lex_state = 72, .external_lex_state = 6}, - [4082] = {.lex_state = 72, .external_lex_state = 5}, + [4082] = {.lex_state = 72, .external_lex_state = 6}, [4083] = {.lex_state = 72, .external_lex_state = 6}, - [4084] = {.lex_state = 72}, - [4085] = {.lex_state = 72}, - [4086] = {.lex_state = 72}, + [4084] = {.lex_state = 72, .external_lex_state = 5}, + [4085] = {.lex_state = 72, .external_lex_state = 6}, + [4086] = {.lex_state = 72, .external_lex_state = 6}, [4087] = {.lex_state = 72, .external_lex_state = 6}, [4088] = {.lex_state = 72, .external_lex_state = 6}, - [4089] = {.lex_state = 72, .external_lex_state = 5}, + [4089] = {.lex_state = 72, .external_lex_state = 6}, [4090] = {.lex_state = 72, .external_lex_state = 6}, [4091] = {.lex_state = 72, .external_lex_state = 6}, - [4092] = {.lex_state = 72, .external_lex_state = 6}, - [4093] = {.lex_state = 72, .external_lex_state = 6}, - [4094] = {.lex_state = 72, .external_lex_state = 5}, + [4092] = {.lex_state = 72}, + [4093] = {.lex_state = 72, .external_lex_state = 5}, + [4094] = {.lex_state = 72, .external_lex_state = 6}, [4095] = {.lex_state = 72, .external_lex_state = 6}, [4096] = {.lex_state = 72, .external_lex_state = 6}, [4097] = {.lex_state = 72, .external_lex_state = 6}, - [4098] = {.lex_state = 72, .external_lex_state = 6}, - [4099] = {.lex_state = 72, .external_lex_state = 6}, - [4100] = {.lex_state = 72, .external_lex_state = 5}, - [4101] = {.lex_state = 72, .external_lex_state = 6}, + [4098] = {.lex_state = 72, .external_lex_state = 5}, + [4099] = {.lex_state = 72}, + [4100] = {.lex_state = 72, .external_lex_state = 6}, + [4101] = {.lex_state = 72, .external_lex_state = 5}, [4102] = {.lex_state = 72, .external_lex_state = 6}, [4103] = {.lex_state = 72, .external_lex_state = 6}, - [4104] = {.lex_state = 72, .external_lex_state = 5}, - [4105] = {.lex_state = 72}, - [4106] = {.lex_state = 72, .external_lex_state = 5}, + [4104] = {.lex_state = 72, .external_lex_state = 6}, + [4105] = {.lex_state = 72, .external_lex_state = 5}, + [4106] = {.lex_state = 72, .external_lex_state = 6}, [4107] = {.lex_state = 72, .external_lex_state = 6}, - [4108] = {.lex_state = 72}, - [4109] = {.lex_state = 72, .external_lex_state = 5}, - [4110] = {.lex_state = 72}, - [4111] = {.lex_state = 72, .external_lex_state = 6}, - [4112] = {.lex_state = 72, .external_lex_state = 6}, - [4113] = {.lex_state = 72, .external_lex_state = 6}, - [4114] = {.lex_state = 72, .external_lex_state = 6}, - [4115] = {.lex_state = 72, .external_lex_state = 6}, - [4116] = {.lex_state = 72, .external_lex_state = 6}, - [4117] = {.lex_state = 72, .external_lex_state = 6}, + [4108] = {.lex_state = 72, .external_lex_state = 6}, + [4109] = {.lex_state = 72, .external_lex_state = 6}, + [4110] = {.lex_state = 72, .external_lex_state = 6}, + [4111] = {.lex_state = 72, .external_lex_state = 5}, + [4112] = {.lex_state = 72, .external_lex_state = 5}, + [4113] = {.lex_state = 72, .external_lex_state = 5}, + [4114] = {.lex_state = 72, .external_lex_state = 5}, + [4115] = {.lex_state = 72, .external_lex_state = 5}, + [4116] = {.lex_state = 72}, + [4117] = {.lex_state = 72, .external_lex_state = 5}, [4118] = {.lex_state = 72, .external_lex_state = 6}, - [4119] = {.lex_state = 72, .external_lex_state = 6}, - [4120] = {.lex_state = 72, .external_lex_state = 6}, + [4119] = {.lex_state = 72}, + [4120] = {.lex_state = 72}, [4121] = {.lex_state = 72, .external_lex_state = 6}, [4122] = {.lex_state = 72, .external_lex_state = 6}, [4123] = {.lex_state = 72, .external_lex_state = 6}, - [4124] = {.lex_state = 72, .external_lex_state = 5}, + [4124] = {.lex_state = 72, .external_lex_state = 6}, [4125] = {.lex_state = 72, .external_lex_state = 6}, - [4126] = {.lex_state = 72}, - [4127] = {.lex_state = 72, .external_lex_state = 5}, + [4126] = {.lex_state = 72, .external_lex_state = 6}, + [4127] = {.lex_state = 72, .external_lex_state = 6}, [4128] = {.lex_state = 72}, [4129] = {.lex_state = 72}, [4130] = {.lex_state = 72}, - [4131] = {.lex_state = 72}, - [4132] = {.lex_state = 72}, + [4131] = {.lex_state = 72, .external_lex_state = 5}, + [4132] = {.lex_state = 72, .external_lex_state = 5}, [4133] = {.lex_state = 72, .external_lex_state = 5}, - [4134] = {.lex_state = 72}, - [4135] = {.lex_state = 72}, - [4136] = {.lex_state = 72, .external_lex_state = 5}, + [4134] = {.lex_state = 0, .external_lex_state = 5}, + [4135] = {.lex_state = 72, .external_lex_state = 5}, + [4136] = {.lex_state = 72}, [4137] = {.lex_state = 72}, [4138] = {.lex_state = 72}, - [4139] = {.lex_state = 72}, + [4139] = {.lex_state = 72, .external_lex_state = 5}, [4140] = {.lex_state = 72}, - [4141] = {.lex_state = 72}, + [4141] = {.lex_state = 72, .external_lex_state = 5}, [4142] = {.lex_state = 72}, - [4143] = {.lex_state = 72}, - [4144] = {.lex_state = 0, .external_lex_state = 5}, - [4145] = {.lex_state = 72}, + [4143] = {.lex_state = 72, .external_lex_state = 5}, + [4144] = {.lex_state = 72}, + [4145] = {.lex_state = 72, .external_lex_state = 5}, [4146] = {.lex_state = 72, .external_lex_state = 5}, - [4147] = {.lex_state = 72}, + [4147] = {.lex_state = 72, .external_lex_state = 5}, [4148] = {.lex_state = 72, .external_lex_state = 5}, - [4149] = {.lex_state = 72}, + [4149] = {.lex_state = 0, .external_lex_state = 5}, [4150] = {.lex_state = 72}, [4151] = {.lex_state = 72}, [4152] = {.lex_state = 72}, - [4153] = {.lex_state = 72, .external_lex_state = 5}, + [4153] = {.lex_state = 72}, [4154] = {.lex_state = 72}, [4155] = {.lex_state = 72}, - [4156] = {.lex_state = 72}, + [4156] = {.lex_state = 72, .external_lex_state = 5}, [4157] = {.lex_state = 72}, [4158] = {.lex_state = 72}, - [4159] = {.lex_state = 72}, - [4160] = {.lex_state = 0, .external_lex_state = 5}, - [4161] = {.lex_state = 72}, + [4159] = {.lex_state = 72, .external_lex_state = 6}, + [4160] = {.lex_state = 72}, + [4161] = {.lex_state = 72, .external_lex_state = 5}, [4162] = {.lex_state = 72}, [4163] = {.lex_state = 72, .external_lex_state = 5}, [4164] = {.lex_state = 72}, [4165] = {.lex_state = 72}, - [4166] = {.lex_state = 72, .external_lex_state = 5}, + [4166] = {.lex_state = 10}, [4167] = {.lex_state = 72}, - [4168] = {.lex_state = 72}, + [4168] = {.lex_state = 0, .external_lex_state = 5}, [4169] = {.lex_state = 72}, [4170] = {.lex_state = 72}, - [4171] = {.lex_state = 72, .external_lex_state = 5}, + [4171] = {.lex_state = 72}, [4172] = {.lex_state = 72}, [4173] = {.lex_state = 72}, [4174] = {.lex_state = 72}, @@ -10198,29 +10197,29 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4176] = {.lex_state = 72}, [4177] = {.lex_state = 72}, [4178] = {.lex_state = 72}, - [4179] = {.lex_state = 72}, - [4180] = {.lex_state = 72, .external_lex_state = 5}, - [4181] = {.lex_state = 72}, + [4179] = {.lex_state = 72, .external_lex_state = 5}, + [4180] = {.lex_state = 72}, + [4181] = {.lex_state = 72, .external_lex_state = 5}, [4182] = {.lex_state = 72}, [4183] = {.lex_state = 72}, [4184] = {.lex_state = 72}, [4185] = {.lex_state = 72}, [4186] = {.lex_state = 72}, - [4187] = {.lex_state = 72}, + [4187] = {.lex_state = 72, .external_lex_state = 5}, [4188] = {.lex_state = 72}, - [4189] = {.lex_state = 72}, + [4189] = {.lex_state = 0, .external_lex_state = 5}, [4190] = {.lex_state = 72}, [4191] = {.lex_state = 72}, - [4192] = {.lex_state = 72}, + [4192] = {.lex_state = 72, .external_lex_state = 5}, [4193] = {.lex_state = 72}, [4194] = {.lex_state = 72}, [4195] = {.lex_state = 72}, [4196] = {.lex_state = 72, .external_lex_state = 5}, - [4197] = {.lex_state = 72}, - [4198] = {.lex_state = 72}, - [4199] = {.lex_state = 72}, + [4197] = {.lex_state = 72, .external_lex_state = 5}, + [4198] = {.lex_state = 72, .external_lex_state = 5}, + [4199] = {.lex_state = 72, .external_lex_state = 5}, [4200] = {.lex_state = 72}, - [4201] = {.lex_state = 0, .external_lex_state = 5}, + [4201] = {.lex_state = 72, .external_lex_state = 5}, [4202] = {.lex_state = 72}, [4203] = {.lex_state = 72}, [4204] = {.lex_state = 72}, @@ -10228,630 +10227,630 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4206] = {.lex_state = 72}, [4207] = {.lex_state = 72}, [4208] = {.lex_state = 72}, - [4209] = {.lex_state = 0, .external_lex_state = 5}, + [4209] = {.lex_state = 72, .external_lex_state = 5}, [4210] = {.lex_state = 72}, [4211] = {.lex_state = 72}, [4212] = {.lex_state = 72}, [4213] = {.lex_state = 72, .external_lex_state = 5}, - [4214] = {.lex_state = 72}, + [4214] = {.lex_state = 72, .external_lex_state = 5}, [4215] = {.lex_state = 72}, - [4216] = {.lex_state = 10}, + [4216] = {.lex_state = 72}, [4217] = {.lex_state = 72}, [4218] = {.lex_state = 72}, [4219] = {.lex_state = 72}, - [4220] = {.lex_state = 72, .external_lex_state = 5}, + [4220] = {.lex_state = 72}, [4221] = {.lex_state = 72}, [4222] = {.lex_state = 72, .external_lex_state = 5}, - [4223] = {.lex_state = 72, .external_lex_state = 5}, - [4224] = {.lex_state = 72}, + [4223] = {.lex_state = 72}, + [4224] = {.lex_state = 72, .external_lex_state = 5}, [4225] = {.lex_state = 72}, [4226] = {.lex_state = 72}, - [4227] = {.lex_state = 72}, - [4228] = {.lex_state = 0, .external_lex_state = 5}, - [4229] = {.lex_state = 72}, - [4230] = {.lex_state = 72}, + [4227] = {.lex_state = 72, .external_lex_state = 5}, + [4228] = {.lex_state = 72, .external_lex_state = 5}, + [4229] = {.lex_state = 72, .external_lex_state = 5}, + [4230] = {.lex_state = 0, .external_lex_state = 5}, [4231] = {.lex_state = 72}, - [4232] = {.lex_state = 72, .external_lex_state = 5}, - [4233] = {.lex_state = 72, .external_lex_state = 5}, + [4232] = {.lex_state = 0, .external_lex_state = 5}, + [4233] = {.lex_state = 72}, [4234] = {.lex_state = 72}, - [4235] = {.lex_state = 72, .external_lex_state = 5}, - [4236] = {.lex_state = 72, .external_lex_state = 5}, - [4237] = {.lex_state = 72, .external_lex_state = 5}, - [4238] = {.lex_state = 0, .external_lex_state = 5}, - [4239] = {.lex_state = 72, .external_lex_state = 5}, + [4235] = {.lex_state = 72}, + [4236] = {.lex_state = 72}, + [4237] = {.lex_state = 72}, + [4238] = {.lex_state = 72}, + [4239] = {.lex_state = 72}, [4240] = {.lex_state = 72}, - [4241] = {.lex_state = 0, .external_lex_state = 5}, + [4241] = {.lex_state = 72}, [4242] = {.lex_state = 72}, - [4243] = {.lex_state = 72, .external_lex_state = 5}, - [4244] = {.lex_state = 0, .external_lex_state = 5}, + [4243] = {.lex_state = 72}, + [4244] = {.lex_state = 72}, [4245] = {.lex_state = 72}, - [4246] = {.lex_state = 72, .external_lex_state = 5}, + [4246] = {.lex_state = 72}, [4247] = {.lex_state = 72}, - [4248] = {.lex_state = 72, .external_lex_state = 5}, + [4248] = {.lex_state = 72}, [4249] = {.lex_state = 72}, - [4250] = {.lex_state = 72, .external_lex_state = 5}, - [4251] = {.lex_state = 72, .external_lex_state = 5}, + [4250] = {.lex_state = 0, .external_lex_state = 5}, + [4251] = {.lex_state = 72}, [4252] = {.lex_state = 72}, [4253] = {.lex_state = 72, .external_lex_state = 5}, [4254] = {.lex_state = 72, .external_lex_state = 5}, - [4255] = {.lex_state = 72}, - [4256] = {.lex_state = 72, .external_lex_state = 5}, + [4255] = {.lex_state = 72, .external_lex_state = 5}, + [4256] = {.lex_state = 72}, [4257] = {.lex_state = 72}, [4258] = {.lex_state = 72}, - [4259] = {.lex_state = 72, .external_lex_state = 5}, - [4260] = {.lex_state = 72, .external_lex_state = 5}, - [4261] = {.lex_state = 72, .external_lex_state = 5}, + [4259] = {.lex_state = 72}, + [4260] = {.lex_state = 72}, + [4261] = {.lex_state = 72}, [4262] = {.lex_state = 72}, - [4263] = {.lex_state = 72, .external_lex_state = 5}, + [4263] = {.lex_state = 10}, [4264] = {.lex_state = 72}, - [4265] = {.lex_state = 72, .external_lex_state = 5}, - [4266] = {.lex_state = 72}, + [4265] = {.lex_state = 72}, + [4266] = {.lex_state = 0, .external_lex_state = 5}, [4267] = {.lex_state = 72}, - [4268] = {.lex_state = 72, .external_lex_state = 6}, - [4269] = {.lex_state = 72, .external_lex_state = 5}, + [4268] = {.lex_state = 72}, + [4269] = {.lex_state = 72}, [4270] = {.lex_state = 72}, [4271] = {.lex_state = 72}, [4272] = {.lex_state = 72}, - [4273] = {.lex_state = 72, .external_lex_state = 5}, + [4273] = {.lex_state = 72}, [4274] = {.lex_state = 72}, - [4275] = {.lex_state = 10}, + [4275] = {.lex_state = 72}, [4276] = {.lex_state = 72}, - [4277] = {.lex_state = 72}, + [4277] = {.lex_state = 72, .external_lex_state = 5}, [4278] = {.lex_state = 15}, - [4279] = {.lex_state = 72}, + [4279] = {.lex_state = 15, .external_lex_state = 7}, [4280] = {.lex_state = 72}, - [4281] = {.lex_state = 72}, - [4282] = {.lex_state = 15, .external_lex_state = 7}, - [4283] = {.lex_state = 72, .external_lex_state = 5}, + [4281] = {.lex_state = 0, .external_lex_state = 5}, + [4282] = {.lex_state = 72}, + [4283] = {.lex_state = 72}, [4284] = {.lex_state = 72}, - [4285] = {.lex_state = 72}, + [4285] = {.lex_state = 0, .external_lex_state = 5}, [4286] = {.lex_state = 15, .external_lex_state = 7}, [4287] = {.lex_state = 72}, - [4288] = {.lex_state = 72, .external_lex_state = 5}, + [4288] = {.lex_state = 0, .external_lex_state = 5}, [4289] = {.lex_state = 72}, [4290] = {.lex_state = 0, .external_lex_state = 5}, [4291] = {.lex_state = 72}, - [4292] = {.lex_state = 72, .external_lex_state = 5}, - [4293] = {.lex_state = 0, .external_lex_state = 5}, - [4294] = {.lex_state = 72}, - [4295] = {.lex_state = 72, .external_lex_state = 5}, + [4292] = {.lex_state = 72}, + [4293] = {.lex_state = 72}, + [4294] = {.lex_state = 0, .external_lex_state = 5}, + [4295] = {.lex_state = 0, .external_lex_state = 5}, [4296] = {.lex_state = 0, .external_lex_state = 5}, - [4297] = {.lex_state = 0, .external_lex_state = 5}, - [4298] = {.lex_state = 72}, + [4297] = {.lex_state = 72}, + [4298] = {.lex_state = 15, .external_lex_state = 7}, [4299] = {.lex_state = 72}, - [4300] = {.lex_state = 72, .external_lex_state = 5}, + [4300] = {.lex_state = 72}, [4301] = {.lex_state = 72, .external_lex_state = 5}, - [4302] = {.lex_state = 72}, - [4303] = {.lex_state = 72, .external_lex_state = 5}, - [4304] = {.lex_state = 0, .external_lex_state = 5}, - [4305] = {.lex_state = 0, .external_lex_state = 5}, - [4306] = {.lex_state = 72, .external_lex_state = 5}, - [4307] = {.lex_state = 15, .external_lex_state = 7}, + [4302] = {.lex_state = 72, .external_lex_state = 5}, + [4303] = {.lex_state = 0, .external_lex_state = 5}, + [4304] = {.lex_state = 10}, + [4305] = {.lex_state = 72}, + [4306] = {.lex_state = 72}, + [4307] = {.lex_state = 72}, [4308] = {.lex_state = 72}, - [4309] = {.lex_state = 15}, + [4309] = {.lex_state = 72}, [4310] = {.lex_state = 72}, [4311] = {.lex_state = 0, .external_lex_state = 5}, - [4312] = {.lex_state = 0, .external_lex_state = 5}, + [4312] = {.lex_state = 0}, [4313] = {.lex_state = 72}, [4314] = {.lex_state = 72}, - [4315] = {.lex_state = 72}, - [4316] = {.lex_state = 15}, - [4317] = {.lex_state = 15, .external_lex_state = 7}, - [4318] = {.lex_state = 15}, - [4319] = {.lex_state = 15}, + [4315] = {.lex_state = 0, .external_lex_state = 5}, + [4316] = {.lex_state = 72}, + [4317] = {.lex_state = 72}, + [4318] = {.lex_state = 72}, + [4319] = {.lex_state = 72}, [4320] = {.lex_state = 72}, - [4321] = {.lex_state = 72}, - [4322] = {.lex_state = 0, .external_lex_state = 5}, - [4323] = {.lex_state = 0, .external_lex_state = 5}, + [4321] = {.lex_state = 0, .external_lex_state = 5}, + [4322] = {.lex_state = 72}, + [4323] = {.lex_state = 72}, [4324] = {.lex_state = 72}, - [4325] = {.lex_state = 0, .external_lex_state = 5}, - [4326] = {.lex_state = 72, .external_lex_state = 5}, + [4325] = {.lex_state = 72}, + [4326] = {.lex_state = 0, .external_lex_state = 5}, [4327] = {.lex_state = 72}, [4328] = {.lex_state = 72}, [4329] = {.lex_state = 72}, [4330] = {.lex_state = 72}, [4331] = {.lex_state = 72}, [4332] = {.lex_state = 0, .external_lex_state = 5}, - [4333] = {.lex_state = 0, .external_lex_state = 5}, + [4333] = {.lex_state = 72}, [4334] = {.lex_state = 72}, - [4335] = {.lex_state = 15}, + [4335] = {.lex_state = 72}, [4336] = {.lex_state = 72}, [4337] = {.lex_state = 72}, - [4338] = {.lex_state = 15, .external_lex_state = 7}, - [4339] = {.lex_state = 72}, - [4340] = {.lex_state = 72}, + [4338] = {.lex_state = 72}, + [4339] = {.lex_state = 0, .external_lex_state = 5}, + [4340] = {.lex_state = 72, .external_lex_state = 5}, [4341] = {.lex_state = 0, .external_lex_state = 5}, - [4342] = {.lex_state = 15, .external_lex_state = 7}, - [4343] = {.lex_state = 72}, + [4342] = {.lex_state = 72, .external_lex_state = 5}, + [4343] = {.lex_state = 72, .external_lex_state = 5}, [4344] = {.lex_state = 72}, [4345] = {.lex_state = 72}, [4346] = {.lex_state = 72}, - [4347] = {.lex_state = 72}, - [4348] = {.lex_state = 72}, - [4349] = {.lex_state = 72, .external_lex_state = 5}, - [4350] = {.lex_state = 72}, + [4347] = {.lex_state = 0, .external_lex_state = 5}, + [4348] = {.lex_state = 15}, + [4349] = {.lex_state = 72}, + [4350] = {.lex_state = 72, .external_lex_state = 5}, [4351] = {.lex_state = 72}, - [4352] = {.lex_state = 0, .external_lex_state = 5}, - [4353] = {.lex_state = 72}, - [4354] = {.lex_state = 72}, - [4355] = {.lex_state = 15}, - [4356] = {.lex_state = 72, .external_lex_state = 5}, - [4357] = {.lex_state = 15}, - [4358] = {.lex_state = 15, .external_lex_state = 7}, - [4359] = {.lex_state = 72}, - [4360] = {.lex_state = 72}, - [4361] = {.lex_state = 10}, - [4362] = {.lex_state = 72}, + [4352] = {.lex_state = 72}, + [4353] = {.lex_state = 72, .external_lex_state = 5}, + [4354] = {.lex_state = 72, .external_lex_state = 5}, + [4355] = {.lex_state = 72, .external_lex_state = 5}, + [4356] = {.lex_state = 15, .external_lex_state = 7}, + [4357] = {.lex_state = 0, .external_lex_state = 5}, + [4358] = {.lex_state = 72}, + [4359] = {.lex_state = 72, .external_lex_state = 5}, + [4360] = {.lex_state = 72, .external_lex_state = 5}, + [4361] = {.lex_state = 72}, + [4362] = {.lex_state = 72, .external_lex_state = 5}, [4363] = {.lex_state = 72}, [4364] = {.lex_state = 72}, - [4365] = {.lex_state = 72}, - [4366] = {.lex_state = 72}, - [4367] = {.lex_state = 72}, + [4365] = {.lex_state = 15, .external_lex_state = 7}, + [4366] = {.lex_state = 0, .external_lex_state = 5}, + [4367] = {.lex_state = 15, .external_lex_state = 7}, [4368] = {.lex_state = 72}, [4369] = {.lex_state = 72}, [4370] = {.lex_state = 72}, - [4371] = {.lex_state = 15, .external_lex_state = 7}, - [4372] = {.lex_state = 72}, - [4373] = {.lex_state = 72, .external_lex_state = 5}, + [4371] = {.lex_state = 0, .external_lex_state = 5}, + [4372] = {.lex_state = 0, .external_lex_state = 5}, + [4373] = {.lex_state = 0, .external_lex_state = 5}, [4374] = {.lex_state = 72}, [4375] = {.lex_state = 72}, - [4376] = {.lex_state = 0, .external_lex_state = 5}, - [4377] = {.lex_state = 0}, + [4376] = {.lex_state = 72, .external_lex_state = 5}, + [4377] = {.lex_state = 0, .external_lex_state = 5}, [4378] = {.lex_state = 0, .external_lex_state = 5}, - [4379] = {.lex_state = 72}, - [4380] = {.lex_state = 0, .external_lex_state = 5}, + [4379] = {.lex_state = 72, .external_lex_state = 5}, + [4380] = {.lex_state = 72, .external_lex_state = 5}, [4381] = {.lex_state = 72}, [4382] = {.lex_state = 72, .external_lex_state = 5}, - [4383] = {.lex_state = 72}, + [4383] = {.lex_state = 0}, [4384] = {.lex_state = 72}, - [4385] = {.lex_state = 72}, + [4385] = {.lex_state = 10}, [4386] = {.lex_state = 72}, [4387] = {.lex_state = 72}, - [4388] = {.lex_state = 72}, + [4388] = {.lex_state = 15}, [4389] = {.lex_state = 72}, [4390] = {.lex_state = 0, .external_lex_state = 5}, - [4391] = {.lex_state = 0, .external_lex_state = 5}, - [4392] = {.lex_state = 0, .external_lex_state = 5}, + [4391] = {.lex_state = 72}, + [4392] = {.lex_state = 72}, [4393] = {.lex_state = 72}, - [4394] = {.lex_state = 72, .external_lex_state = 5}, + [4394] = {.lex_state = 0, .external_lex_state = 5}, [4395] = {.lex_state = 0, .external_lex_state = 5}, [4396] = {.lex_state = 72}, [4397] = {.lex_state = 72}, [4398] = {.lex_state = 72}, - [4399] = {.lex_state = 0, .external_lex_state = 5}, - [4400] = {.lex_state = 72}, - [4401] = {.lex_state = 72, .external_lex_state = 5}, + [4399] = {.lex_state = 15}, + [4400] = {.lex_state = 15, .external_lex_state = 7}, + [4401] = {.lex_state = 15}, [4402] = {.lex_state = 72}, [4403] = {.lex_state = 72}, - [4404] = {.lex_state = 72, .external_lex_state = 5}, - [4405] = {.lex_state = 0, .external_lex_state = 5}, + [4404] = {.lex_state = 15}, + [4405] = {.lex_state = 72}, [4406] = {.lex_state = 72}, - [4407] = {.lex_state = 0, .external_lex_state = 5}, - [4408] = {.lex_state = 72, .external_lex_state = 5}, - [4409] = {.lex_state = 0, .external_lex_state = 5}, - [4410] = {.lex_state = 72}, - [4411] = {.lex_state = 15, .external_lex_state = 7}, + [4407] = {.lex_state = 72}, + [4408] = {.lex_state = 72}, + [4409] = {.lex_state = 72}, + [4410] = {.lex_state = 15}, + [4411] = {.lex_state = 72, .external_lex_state = 5}, [4412] = {.lex_state = 72}, [4413] = {.lex_state = 72}, - [4414] = {.lex_state = 15}, - [4415] = {.lex_state = 72}, + [4414] = {.lex_state = 0, .external_lex_state = 5}, + [4415] = {.lex_state = 15, .external_lex_state = 7}, [4416] = {.lex_state = 72}, - [4417] = {.lex_state = 0, .external_lex_state = 5}, - [4418] = {.lex_state = 72}, + [4417] = {.lex_state = 72}, + [4418] = {.lex_state = 0, .external_lex_state = 5}, [4419] = {.lex_state = 0, .external_lex_state = 5}, - [4420] = {.lex_state = 0, .external_lex_state = 5}, - [4421] = {.lex_state = 72}, - [4422] = {.lex_state = 0, .external_lex_state = 5}, - [4423] = {.lex_state = 0}, + [4420] = {.lex_state = 72}, + [4421] = {.lex_state = 15, .external_lex_state = 7}, + [4422] = {.lex_state = 15}, + [4423] = {.lex_state = 15}, [4424] = {.lex_state = 72}, [4425] = {.lex_state = 72}, - [4426] = {.lex_state = 0}, - [4427] = {.lex_state = 0}, + [4426] = {.lex_state = 72}, + [4427] = {.lex_state = 0, .external_lex_state = 5}, [4428] = {.lex_state = 72}, - [4429] = {.lex_state = 72}, - [4430] = {.lex_state = 72}, - [4431] = {.lex_state = 72}, - [4432] = {.lex_state = 0}, - [4433] = {.lex_state = 0}, + [4429] = {.lex_state = 0, .external_lex_state = 5}, + [4430] = {.lex_state = 0, .external_lex_state = 5}, + [4431] = {.lex_state = 0, .external_lex_state = 5}, + [4432] = {.lex_state = 72}, + [4433] = {.lex_state = 72}, [4434] = {.lex_state = 72}, [4435] = {.lex_state = 72}, - [4436] = {.lex_state = 72}, - [4437] = {.lex_state = 0}, + [4436] = {.lex_state = 0}, + [4437] = {.lex_state = 0, .external_lex_state = 5}, [4438] = {.lex_state = 72}, [4439] = {.lex_state = 72}, [4440] = {.lex_state = 72}, - [4441] = {.lex_state = 0}, - [4442] = {.lex_state = 0, .external_lex_state = 5}, - [4443] = {.lex_state = 72}, - [4444] = {.lex_state = 72}, + [4441] = {.lex_state = 0, .external_lex_state = 5}, + [4442] = {.lex_state = 0}, + [4443] = {.lex_state = 0}, + [4444] = {.lex_state = 72, .external_lex_state = 5}, [4445] = {.lex_state = 72}, [4446] = {.lex_state = 72}, - [4447] = {.lex_state = 72}, - [4448] = {.lex_state = 72}, - [4449] = {.lex_state = 72}, - [4450] = {.lex_state = 0, .external_lex_state = 5}, + [4447] = {.lex_state = 0}, + [4448] = {.lex_state = 72, .external_lex_state = 5}, + [4449] = {.lex_state = 0, .external_lex_state = 5}, + [4450] = {.lex_state = 72}, [4451] = {.lex_state = 72}, [4452] = {.lex_state = 72}, - [4453] = {.lex_state = 72}, - [4454] = {.lex_state = 72}, + [4453] = {.lex_state = 0, .external_lex_state = 5}, + [4454] = {.lex_state = 72, .external_lex_state = 5}, [4455] = {.lex_state = 72}, - [4456] = {.lex_state = 72}, - [4457] = {.lex_state = 72, .external_lex_state = 6}, - [4458] = {.lex_state = 10}, - [4459] = {.lex_state = 0}, - [4460] = {.lex_state = 72}, + [4456] = {.lex_state = 0, .external_lex_state = 5}, + [4457] = {.lex_state = 72}, + [4458] = {.lex_state = 72}, + [4459] = {.lex_state = 0, .external_lex_state = 5}, + [4460] = {.lex_state = 0, .external_lex_state = 5}, [4461] = {.lex_state = 72}, - [4462] = {.lex_state = 72}, + [4462] = {.lex_state = 0, .external_lex_state = 5}, [4463] = {.lex_state = 72}, - [4464] = {.lex_state = 72}, + [4464] = {.lex_state = 72, .external_lex_state = 5}, [4465] = {.lex_state = 72}, - [4466] = {.lex_state = 72}, + [4466] = {.lex_state = 0, .external_lex_state = 5}, [4467] = {.lex_state = 72}, - [4468] = {.lex_state = 72, .external_lex_state = 6}, + [4468] = {.lex_state = 72}, [4469] = {.lex_state = 72, .external_lex_state = 5}, [4470] = {.lex_state = 72}, - [4471] = {.lex_state = 72}, - [4472] = {.lex_state = 72}, - [4473] = {.lex_state = 72}, - [4474] = {.lex_state = 72}, - [4475] = {.lex_state = 72}, - [4476] = {.lex_state = 72}, - [4477] = {.lex_state = 72}, + [4471] = {.lex_state = 0, .external_lex_state = 5}, + [4472] = {.lex_state = 0, .external_lex_state = 5}, + [4473] = {.lex_state = 0, .external_lex_state = 5}, + [4474] = {.lex_state = 72, .external_lex_state = 5}, + [4475] = {.lex_state = 0, .external_lex_state = 5}, + [4476] = {.lex_state = 0, .external_lex_state = 5}, + [4477] = {.lex_state = 0, .external_lex_state = 5}, [4478] = {.lex_state = 72}, - [4479] = {.lex_state = 0, .external_lex_state = 5}, + [4479] = {.lex_state = 72}, [4480] = {.lex_state = 0, .external_lex_state = 5}, - [4481] = {.lex_state = 0}, - [4482] = {.lex_state = 72}, - [4483] = {.lex_state = 72}, - [4484] = {.lex_state = 72}, - [4485] = {.lex_state = 72}, - [4486] = {.lex_state = 72, .external_lex_state = 5}, - [4487] = {.lex_state = 72}, - [4488] = {.lex_state = 72, .external_lex_state = 6}, - [4489] = {.lex_state = 0}, - [4490] = {.lex_state = 0}, - [4491] = {.lex_state = 0}, - [4492] = {.lex_state = 72}, - [4493] = {.lex_state = 72}, - [4494] = {.lex_state = 72, .external_lex_state = 6}, - [4495] = {.lex_state = 72, .external_lex_state = 5}, - [4496] = {.lex_state = 72}, - [4497] = {.lex_state = 72}, + [4481] = {.lex_state = 0, .external_lex_state = 5}, + [4482] = {.lex_state = 0, .external_lex_state = 5}, + [4483] = {.lex_state = 0, .external_lex_state = 5}, + [4484] = {.lex_state = 0, .external_lex_state = 5}, + [4485] = {.lex_state = 0}, + [4486] = {.lex_state = 0, .external_lex_state = 5}, + [4487] = {.lex_state = 0, .external_lex_state = 5}, + [4488] = {.lex_state = 0, .external_lex_state = 5}, + [4489] = {.lex_state = 0, .external_lex_state = 5}, + [4490] = {.lex_state = 0, .external_lex_state = 5}, + [4491] = {.lex_state = 72}, + [4492] = {.lex_state = 0}, + [4493] = {.lex_state = 0, .external_lex_state = 5}, + [4494] = {.lex_state = 0, .external_lex_state = 5}, + [4495] = {.lex_state = 0, .external_lex_state = 5}, + [4496] = {.lex_state = 0, .external_lex_state = 5}, + [4497] = {.lex_state = 0, .external_lex_state = 5}, [4498] = {.lex_state = 0, .external_lex_state = 5}, - [4499] = {.lex_state = 72}, - [4500] = {.lex_state = 72}, - [4501] = {.lex_state = 72}, - [4502] = {.lex_state = 72}, + [4499] = {.lex_state = 0, .external_lex_state = 5}, + [4500] = {.lex_state = 0, .external_lex_state = 5}, + [4501] = {.lex_state = 0, .external_lex_state = 5}, + [4502] = {.lex_state = 0, .external_lex_state = 5}, [4503] = {.lex_state = 0, .external_lex_state = 5}, [4504] = {.lex_state = 0, .external_lex_state = 5}, - [4505] = {.lex_state = 0, .external_lex_state = 5}, + [4505] = {.lex_state = 10}, [4506] = {.lex_state = 0, .external_lex_state = 5}, [4507] = {.lex_state = 0, .external_lex_state = 5}, [4508] = {.lex_state = 0, .external_lex_state = 5}, [4509] = {.lex_state = 0, .external_lex_state = 5}, - [4510] = {.lex_state = 72}, - [4511] = {.lex_state = 72}, - [4512] = {.lex_state = 72, .external_lex_state = 5}, - [4513] = {.lex_state = 72, .external_lex_state = 5}, + [4510] = {.lex_state = 0, .external_lex_state = 5}, + [4511] = {.lex_state = 0, .external_lex_state = 5}, + [4512] = {.lex_state = 72}, + [4513] = {.lex_state = 0, .external_lex_state = 5}, [4514] = {.lex_state = 0, .external_lex_state = 5}, - [4515] = {.lex_state = 0, .external_lex_state = 5}, - [4516] = {.lex_state = 72, .external_lex_state = 5}, - [4517] = {.lex_state = 72}, + [4515] = {.lex_state = 72}, + [4516] = {.lex_state = 72}, + [4517] = {.lex_state = 72, .external_lex_state = 5}, [4518] = {.lex_state = 0}, - [4519] = {.lex_state = 72}, - [4520] = {.lex_state = 72}, + [4519] = {.lex_state = 0, .external_lex_state = 5}, + [4520] = {.lex_state = 0, .external_lex_state = 5}, [4521] = {.lex_state = 0, .external_lex_state = 5}, [4522] = {.lex_state = 0, .external_lex_state = 5}, - [4523] = {.lex_state = 72}, + [4523] = {.lex_state = 0, .external_lex_state = 5}, [4524] = {.lex_state = 0, .external_lex_state = 5}, [4525] = {.lex_state = 0, .external_lex_state = 5}, - [4526] = {.lex_state = 0, .external_lex_state = 5}, + [4526] = {.lex_state = 72, .external_lex_state = 5}, [4527] = {.lex_state = 0, .external_lex_state = 5}, [4528] = {.lex_state = 0, .external_lex_state = 5}, - [4529] = {.lex_state = 0, .external_lex_state = 5}, - [4530] = {.lex_state = 72, .external_lex_state = 5}, - [4531] = {.lex_state = 72}, - [4532] = {.lex_state = 72, .external_lex_state = 5}, - [4533] = {.lex_state = 72, .external_lex_state = 5}, + [4529] = {.lex_state = 0}, + [4530] = {.lex_state = 0, .external_lex_state = 5}, + [4531] = {.lex_state = 0, .external_lex_state = 5}, + [4532] = {.lex_state = 0, .external_lex_state = 5}, + [4533] = {.lex_state = 0, .external_lex_state = 5}, [4534] = {.lex_state = 0, .external_lex_state = 5}, - [4535] = {.lex_state = 72}, - [4536] = {.lex_state = 72, .external_lex_state = 5}, - [4537] = {.lex_state = 72}, - [4538] = {.lex_state = 72}, - [4539] = {.lex_state = 72, .external_lex_state = 5}, - [4540] = {.lex_state = 72}, + [4535] = {.lex_state = 0, .external_lex_state = 5}, + [4536] = {.lex_state = 0, .external_lex_state = 5}, + [4537] = {.lex_state = 0, .external_lex_state = 5}, + [4538] = {.lex_state = 0}, + [4539] = {.lex_state = 0, .external_lex_state = 5}, + [4540] = {.lex_state = 0, .external_lex_state = 5}, [4541] = {.lex_state = 72}, - [4542] = {.lex_state = 72}, + [4542] = {.lex_state = 0, .external_lex_state = 5}, [4543] = {.lex_state = 0, .external_lex_state = 5}, - [4544] = {.lex_state = 72}, + [4544] = {.lex_state = 0, .external_lex_state = 5}, [4545] = {.lex_state = 0, .external_lex_state = 5}, [4546] = {.lex_state = 0, .external_lex_state = 5}, [4547] = {.lex_state = 0, .external_lex_state = 5}, - [4548] = {.lex_state = 0, .external_lex_state = 5}, + [4548] = {.lex_state = 0}, [4549] = {.lex_state = 0, .external_lex_state = 5}, - [4550] = {.lex_state = 0, .external_lex_state = 5}, - [4551] = {.lex_state = 72, .external_lex_state = 5}, - [4552] = {.lex_state = 72}, - [4553] = {.lex_state = 72, .external_lex_state = 5}, + [4550] = {.lex_state = 72}, + [4551] = {.lex_state = 0, .external_lex_state = 5}, + [4552] = {.lex_state = 0, .external_lex_state = 5}, + [4553] = {.lex_state = 0, .external_lex_state = 5}, [4554] = {.lex_state = 0, .external_lex_state = 5}, - [4555] = {.lex_state = 72, .external_lex_state = 5}, - [4556] = {.lex_state = 0, .external_lex_state = 5}, - [4557] = {.lex_state = 72, .external_lex_state = 5}, + [4555] = {.lex_state = 0, .external_lex_state = 5}, + [4556] = {.lex_state = 72, .external_lex_state = 5}, + [4557] = {.lex_state = 72}, [4558] = {.lex_state = 72}, - [4559] = {.lex_state = 72}, + [4559] = {.lex_state = 0, .external_lex_state = 5}, [4560] = {.lex_state = 0, .external_lex_state = 5}, - [4561] = {.lex_state = 72}, + [4561] = {.lex_state = 0, .external_lex_state = 5}, [4562] = {.lex_state = 0, .external_lex_state = 5}, - [4563] = {.lex_state = 0, .external_lex_state = 5}, - [4564] = {.lex_state = 0, .external_lex_state = 5}, + [4563] = {.lex_state = 72, .external_lex_state = 5}, + [4564] = {.lex_state = 72}, [4565] = {.lex_state = 0, .external_lex_state = 5}, - [4566] = {.lex_state = 72}, + [4566] = {.lex_state = 0, .external_lex_state = 5}, [4567] = {.lex_state = 0, .external_lex_state = 5}, - [4568] = {.lex_state = 0, .external_lex_state = 5}, - [4569] = {.lex_state = 72, .external_lex_state = 5}, - [4570] = {.lex_state = 72}, - [4571] = {.lex_state = 72, .external_lex_state = 5}, - [4572] = {.lex_state = 0, .external_lex_state = 5}, + [4568] = {.lex_state = 72, .external_lex_state = 6}, + [4569] = {.lex_state = 72}, + [4570] = {.lex_state = 0}, + [4571] = {.lex_state = 0, .external_lex_state = 5}, + [4572] = {.lex_state = 72, .external_lex_state = 6}, [4573] = {.lex_state = 0, .external_lex_state = 5}, - [4574] = {.lex_state = 72, .external_lex_state = 5}, - [4575] = {.lex_state = 0, .external_lex_state = 5}, + [4574] = {.lex_state = 0, .external_lex_state = 5}, + [4575] = {.lex_state = 72}, [4576] = {.lex_state = 72}, - [4577] = {.lex_state = 0, .external_lex_state = 5}, + [4577] = {.lex_state = 72, .external_lex_state = 6}, [4578] = {.lex_state = 0, .external_lex_state = 5}, [4579] = {.lex_state = 72}, [4580] = {.lex_state = 72}, - [4581] = {.lex_state = 0, .external_lex_state = 5}, - [4582] = {.lex_state = 72, .external_lex_state = 5}, - [4583] = {.lex_state = 72, .external_lex_state = 5}, - [4584] = {.lex_state = 72}, - [4585] = {.lex_state = 0, .external_lex_state = 5}, - [4586] = {.lex_state = 0, .external_lex_state = 5}, + [4581] = {.lex_state = 72}, + [4582] = {.lex_state = 72}, + [4583] = {.lex_state = 72, .external_lex_state = 6}, + [4584] = {.lex_state = 72, .external_lex_state = 6}, + [4585] = {.lex_state = 72, .external_lex_state = 5}, + [4586] = {.lex_state = 72}, [4587] = {.lex_state = 72}, - [4588] = {.lex_state = 72}, - [4589] = {.lex_state = 0, .external_lex_state = 5}, + [4588] = {.lex_state = 0, .external_lex_state = 5}, + [4589] = {.lex_state = 72}, [4590] = {.lex_state = 72}, - [4591] = {.lex_state = 72, .external_lex_state = 5}, + [4591] = {.lex_state = 0, .external_lex_state = 5}, [4592] = {.lex_state = 72}, [4593] = {.lex_state = 72}, - [4594] = {.lex_state = 0, .external_lex_state = 5}, + [4594] = {.lex_state = 72, .external_lex_state = 5}, [4595] = {.lex_state = 0, .external_lex_state = 5}, - [4596] = {.lex_state = 0, .external_lex_state = 5}, + [4596] = {.lex_state = 72}, [4597] = {.lex_state = 72}, [4598] = {.lex_state = 72}, - [4599] = {.lex_state = 0, .external_lex_state = 5}, - [4600] = {.lex_state = 0, .external_lex_state = 5}, - [4601] = {.lex_state = 72}, - [4602] = {.lex_state = 72}, - [4603] = {.lex_state = 0, .external_lex_state = 5}, - [4604] = {.lex_state = 72}, - [4605] = {.lex_state = 0, .external_lex_state = 5}, - [4606] = {.lex_state = 0, .external_lex_state = 5}, - [4607] = {.lex_state = 0, .external_lex_state = 5}, + [4599] = {.lex_state = 72}, + [4600] = {.lex_state = 72}, + [4601] = {.lex_state = 0, .external_lex_state = 5}, + [4602] = {.lex_state = 72, .external_lex_state = 5}, + [4603] = {.lex_state = 72, .external_lex_state = 5}, + [4604] = {.lex_state = 0}, + [4605] = {.lex_state = 72}, + [4606] = {.lex_state = 72, .external_lex_state = 5}, + [4607] = {.lex_state = 72}, [4608] = {.lex_state = 72}, [4609] = {.lex_state = 0, .external_lex_state = 5}, - [4610] = {.lex_state = 0, .external_lex_state = 5}, - [4611] = {.lex_state = 0, .external_lex_state = 5}, - [4612] = {.lex_state = 0, .external_lex_state = 5}, - [4613] = {.lex_state = 0}, - [4614] = {.lex_state = 0, .external_lex_state = 5}, + [4610] = {.lex_state = 0}, + [4611] = {.lex_state = 72}, + [4612] = {.lex_state = 72}, + [4613] = {.lex_state = 0, .external_lex_state = 5}, + [4614] = {.lex_state = 72}, [4615] = {.lex_state = 0, .external_lex_state = 5}, [4616] = {.lex_state = 0, .external_lex_state = 5}, [4617] = {.lex_state = 0, .external_lex_state = 5}, - [4618] = {.lex_state = 0, .external_lex_state = 5}, + [4618] = {.lex_state = 72}, [4619] = {.lex_state = 0, .external_lex_state = 5}, [4620] = {.lex_state = 0, .external_lex_state = 5}, - [4621] = {.lex_state = 0, .external_lex_state = 5}, + [4621] = {.lex_state = 72}, [4622] = {.lex_state = 0, .external_lex_state = 5}, [4623] = {.lex_state = 0, .external_lex_state = 5}, - [4624] = {.lex_state = 0, .external_lex_state = 5}, - [4625] = {.lex_state = 0, .external_lex_state = 5}, - [4626] = {.lex_state = 0, .external_lex_state = 5}, - [4627] = {.lex_state = 0, .external_lex_state = 5}, - [4628] = {.lex_state = 0, .external_lex_state = 5}, - [4629] = {.lex_state = 0, .external_lex_state = 5}, - [4630] = {.lex_state = 72}, - [4631] = {.lex_state = 0, .external_lex_state = 5}, - [4632] = {.lex_state = 0, .external_lex_state = 5}, - [4633] = {.lex_state = 0, .external_lex_state = 5}, + [4624] = {.lex_state = 72}, + [4625] = {.lex_state = 72}, + [4626] = {.lex_state = 0}, + [4627] = {.lex_state = 72}, + [4628] = {.lex_state = 72}, + [4629] = {.lex_state = 72}, + [4630] = {.lex_state = 72, .external_lex_state = 6}, + [4631] = {.lex_state = 72}, + [4632] = {.lex_state = 72}, + [4633] = {.lex_state = 10}, [4634] = {.lex_state = 72}, - [4635] = {.lex_state = 72}, - [4636] = {.lex_state = 0}, - [4637] = {.lex_state = 0, .external_lex_state = 5}, + [4635] = {.lex_state = 0}, + [4636] = {.lex_state = 72}, + [4637] = {.lex_state = 72, .external_lex_state = 5}, [4638] = {.lex_state = 72}, [4639] = {.lex_state = 72}, - [4640] = {.lex_state = 0, .external_lex_state = 5}, + [4640] = {.lex_state = 72}, [4641] = {.lex_state = 0, .external_lex_state = 5}, - [4642] = {.lex_state = 0, .external_lex_state = 5}, + [4642] = {.lex_state = 72}, [4643] = {.lex_state = 0, .external_lex_state = 5}, - [4644] = {.lex_state = 72}, - [4645] = {.lex_state = 72}, - [4646] = {.lex_state = 0, .external_lex_state = 5}, - [4647] = {.lex_state = 0, .external_lex_state = 5}, - [4648] = {.lex_state = 0, .external_lex_state = 5}, - [4649] = {.lex_state = 10}, - [4650] = {.lex_state = 0}, - [4651] = {.lex_state = 0, .external_lex_state = 5}, - [4652] = {.lex_state = 0, .external_lex_state = 5}, - [4653] = {.lex_state = 0, .external_lex_state = 5}, + [4644] = {.lex_state = 72, .external_lex_state = 6}, + [4645] = {.lex_state = 72, .external_lex_state = 5}, + [4646] = {.lex_state = 72, .external_lex_state = 5}, + [4647] = {.lex_state = 72, .external_lex_state = 5}, + [4648] = {.lex_state = 72}, + [4649] = {.lex_state = 72}, + [4650] = {.lex_state = 72}, + [4651] = {.lex_state = 72}, + [4652] = {.lex_state = 72}, + [4653] = {.lex_state = 72, .external_lex_state = 6}, [4654] = {.lex_state = 0, .external_lex_state = 5}, - [4655] = {.lex_state = 0, .external_lex_state = 5}, + [4655] = {.lex_state = 0}, [4656] = {.lex_state = 0, .external_lex_state = 5}, - [4657] = {.lex_state = 0, .external_lex_state = 5}, + [4657] = {.lex_state = 0}, [4658] = {.lex_state = 0, .external_lex_state = 5}, [4659] = {.lex_state = 0}, [4660] = {.lex_state = 0, .external_lex_state = 5}, [4661] = {.lex_state = 0, .external_lex_state = 5}, [4662] = {.lex_state = 0, .external_lex_state = 5}, - [4663] = {.lex_state = 0, .external_lex_state = 5}, + [4663] = {.lex_state = 72}, [4664] = {.lex_state = 0, .external_lex_state = 5}, - [4665] = {.lex_state = 0, .external_lex_state = 5}, + [4665] = {.lex_state = 72, .external_lex_state = 6}, [4666] = {.lex_state = 0, .external_lex_state = 5}, [4667] = {.lex_state = 0, .external_lex_state = 5}, - [4668] = {.lex_state = 0, .external_lex_state = 5}, - [4669] = {.lex_state = 0, .external_lex_state = 5}, - [4670] = {.lex_state = 0, .external_lex_state = 5}, - [4671] = {.lex_state = 0, .external_lex_state = 5}, - [4672] = {.lex_state = 0, .external_lex_state = 5}, - [4673] = {.lex_state = 0, .external_lex_state = 5}, - [4674] = {.lex_state = 0, .external_lex_state = 5}, + [4668] = {.lex_state = 72, .external_lex_state = 5}, + [4669] = {.lex_state = 72}, + [4670] = {.lex_state = 72}, + [4671] = {.lex_state = 72}, + [4672] = {.lex_state = 72}, + [4673] = {.lex_state = 0}, + [4674] = {.lex_state = 72}, [4675] = {.lex_state = 0, .external_lex_state = 5}, [4676] = {.lex_state = 0, .external_lex_state = 5}, - [4677] = {.lex_state = 0, .external_lex_state = 5}, + [4677] = {.lex_state = 72}, [4678] = {.lex_state = 72}, - [4679] = {.lex_state = 72, .external_lex_state = 6}, - [4680] = {.lex_state = 72, .external_lex_state = 6}, - [4681] = {.lex_state = 72, .external_lex_state = 6}, - [4682] = {.lex_state = 72, .external_lex_state = 6}, - [4683] = {.lex_state = 72, .external_lex_state = 6}, - [4684] = {.lex_state = 0, .external_lex_state = 5}, - [4685] = {.lex_state = 0, .external_lex_state = 5}, - [4686] = {.lex_state = 10}, + [4679] = {.lex_state = 72, .external_lex_state = 5}, + [4680] = {.lex_state = 72, .external_lex_state = 5}, + [4681] = {.lex_state = 0, .external_lex_state = 5}, + [4682] = {.lex_state = 72}, + [4683] = {.lex_state = 72}, + [4684] = {.lex_state = 72, .external_lex_state = 6}, + [4685] = {.lex_state = 72, .external_lex_state = 6}, + [4686] = {.lex_state = 72}, [4687] = {.lex_state = 72}, - [4688] = {.lex_state = 72}, - [4689] = {.lex_state = 72, .external_lex_state = 6}, + [4688] = {.lex_state = 0}, + [4689] = {.lex_state = 0}, [4690] = {.lex_state = 10}, [4691] = {.lex_state = 72}, - [4692] = {.lex_state = 72}, + [4692] = {.lex_state = 0}, [4693] = {.lex_state = 72}, [4694] = {.lex_state = 72}, [4695] = {.lex_state = 0}, [4696] = {.lex_state = 72}, [4697] = {.lex_state = 72, .external_lex_state = 6}, - [4698] = {.lex_state = 72, .external_lex_state = 5}, + [4698] = {.lex_state = 72}, [4699] = {.lex_state = 72}, - [4700] = {.lex_state = 72, .external_lex_state = 6}, - [4701] = {.lex_state = 0}, - [4702] = {.lex_state = 0}, - [4703] = {.lex_state = 0}, - [4704] = {.lex_state = 0}, - [4705] = {.lex_state = 0}, + [4700] = {.lex_state = 0, .external_lex_state = 5}, + [4701] = {.lex_state = 72}, + [4702] = {.lex_state = 72}, + [4703] = {.lex_state = 72}, + [4704] = {.lex_state = 0, .external_lex_state = 5}, + [4705] = {.lex_state = 0, .external_lex_state = 5}, [4706] = {.lex_state = 72}, - [4707] = {.lex_state = 72, .external_lex_state = 6}, - [4708] = {.lex_state = 0, .external_lex_state = 5}, - [4709] = {.lex_state = 72, .external_lex_state = 5}, - [4710] = {.lex_state = 0}, - [4711] = {.lex_state = 0, .external_lex_state = 5}, - [4712] = {.lex_state = 0}, - [4713] = {.lex_state = 0}, - [4714] = {.lex_state = 0, .external_lex_state = 5}, - [4715] = {.lex_state = 72, .external_lex_state = 5}, - [4716] = {.lex_state = 0, .external_lex_state = 5}, + [4707] = {.lex_state = 72}, + [4708] = {.lex_state = 72}, + [4709] = {.lex_state = 0}, + [4710] = {.lex_state = 72, .external_lex_state = 6}, + [4711] = {.lex_state = 72, .external_lex_state = 5}, + [4712] = {.lex_state = 72}, + [4713] = {.lex_state = 72}, + [4714] = {.lex_state = 0}, + [4715] = {.lex_state = 72}, + [4716] = {.lex_state = 72}, [4717] = {.lex_state = 72}, - [4718] = {.lex_state = 72}, - [4719] = {.lex_state = 72}, - [4720] = {.lex_state = 72}, + [4718] = {.lex_state = 0}, + [4719] = {.lex_state = 0}, + [4720] = {.lex_state = 0}, [4721] = {.lex_state = 72}, [4722] = {.lex_state = 72, .external_lex_state = 6}, - [4723] = {.lex_state = 72, .external_lex_state = 6}, - [4724] = {.lex_state = 0}, - [4725] = {.lex_state = 14}, - [4726] = {.lex_state = 14}, - [4727] = {.lex_state = 72}, + [4723] = {.lex_state = 72}, + [4724] = {.lex_state = 72}, + [4725] = {.lex_state = 72}, + [4726] = {.lex_state = 72, .external_lex_state = 5}, + [4727] = {.lex_state = 72, .external_lex_state = 6}, [4728] = {.lex_state = 72}, [4729] = {.lex_state = 72}, [4730] = {.lex_state = 72}, [4731] = {.lex_state = 72}, - [4732] = {.lex_state = 72}, - [4733] = {.lex_state = 72}, - [4734] = {.lex_state = 17}, + [4732] = {.lex_state = 17}, + [4733] = {.lex_state = 14}, + [4734] = {.lex_state = 72}, [4735] = {.lex_state = 72}, [4736] = {.lex_state = 72}, - [4737] = {.lex_state = 72}, - [4738] = {.lex_state = 14}, + [4737] = {.lex_state = 0}, + [4738] = {.lex_state = 72}, [4739] = {.lex_state = 72}, [4740] = {.lex_state = 72}, - [4741] = {.lex_state = 17}, + [4741] = {.lex_state = 72}, [4742] = {.lex_state = 72}, [4743] = {.lex_state = 72}, [4744] = {.lex_state = 72}, - [4745] = {.lex_state = 72}, - [4746] = {.lex_state = 14}, - [4747] = {.lex_state = 17}, - [4748] = {.lex_state = 72}, + [4745] = {.lex_state = 0, .external_lex_state = 5}, + [4746] = {.lex_state = 72}, + [4747] = {.lex_state = 72}, + [4748] = {.lex_state = 14}, [4749] = {.lex_state = 72}, - [4750] = {.lex_state = 72}, + [4750] = {.lex_state = 0}, [4751] = {.lex_state = 72}, - [4752] = {.lex_state = 17}, - [4753] = {.lex_state = 72}, - [4754] = {.lex_state = 72}, + [4752] = {.lex_state = 72}, + [4753] = {.lex_state = 14}, + [4754] = {.lex_state = 17}, [4755] = {.lex_state = 72}, - [4756] = {.lex_state = 0}, - [4757] = {.lex_state = 0}, + [4756] = {.lex_state = 72}, + [4757] = {.lex_state = 72}, [4758] = {.lex_state = 72}, [4759] = {.lex_state = 72}, - [4760] = {.lex_state = 0}, + [4760] = {.lex_state = 72}, [4761] = {.lex_state = 0}, - [4762] = {.lex_state = 17}, - [4763] = {.lex_state = 14}, - [4764] = {.lex_state = 0}, + [4762] = {.lex_state = 72}, + [4763] = {.lex_state = 72}, + [4764] = {.lex_state = 72, .external_lex_state = 5}, [4765] = {.lex_state = 0}, [4766] = {.lex_state = 0}, - [4767] = {.lex_state = 14}, - [4768] = {.lex_state = 17}, - [4769] = {.lex_state = 14}, - [4770] = {.lex_state = 17}, + [4767] = {.lex_state = 72}, + [4768] = {.lex_state = 72}, + [4769] = {.lex_state = 72}, + [4770] = {.lex_state = 0}, [4771] = {.lex_state = 72}, - [4772] = {.lex_state = 17}, - [4773] = {.lex_state = 14}, - [4774] = {.lex_state = 72}, - [4775] = {.lex_state = 72}, + [4772] = {.lex_state = 72}, + [4773] = {.lex_state = 72}, + [4774] = {.lex_state = 17}, + [4775] = {.lex_state = 14}, [4776] = {.lex_state = 72}, [4777] = {.lex_state = 72}, - [4778] = {.lex_state = 72, .external_lex_state = 5}, + [4778] = {.lex_state = 72}, [4779] = {.lex_state = 72}, [4780] = {.lex_state = 72}, [4781] = {.lex_state = 72}, - [4782] = {.lex_state = 14}, + [4782] = {.lex_state = 15, .external_lex_state = 7}, [4783] = {.lex_state = 72}, - [4784] = {.lex_state = 72}, + [4784] = {.lex_state = 0}, [4785] = {.lex_state = 72}, [4786] = {.lex_state = 72}, [4787] = {.lex_state = 72}, - [4788] = {.lex_state = 14}, - [4789] = {.lex_state = 17}, + [4788] = {.lex_state = 0, .external_lex_state = 5}, + [4789] = {.lex_state = 14}, [4790] = {.lex_state = 72}, - [4791] = {.lex_state = 72}, + [4791] = {.lex_state = 0}, [4792] = {.lex_state = 72}, [4793] = {.lex_state = 72}, [4794] = {.lex_state = 72}, - [4795] = {.lex_state = 72}, + [4795] = {.lex_state = 17}, [4796] = {.lex_state = 72}, - [4797] = {.lex_state = 17}, + [4797] = {.lex_state = 14}, [4798] = {.lex_state = 72}, [4799] = {.lex_state = 72}, [4800] = {.lex_state = 72}, - [4801] = {.lex_state = 72}, - [4802] = {.lex_state = 72}, - [4803] = {.lex_state = 72}, - [4804] = {.lex_state = 0, .external_lex_state = 5}, - [4805] = {.lex_state = 14}, - [4806] = {.lex_state = 72}, + [4801] = {.lex_state = 17}, + [4802] = {.lex_state = 17}, + [4803] = {.lex_state = 17}, + [4804] = {.lex_state = 14}, + [4805] = {.lex_state = 72}, + [4806] = {.lex_state = 14}, [4807] = {.lex_state = 17}, [4808] = {.lex_state = 72}, - [4809] = {.lex_state = 0}, - [4810] = {.lex_state = 0}, + [4809] = {.lex_state = 72}, + [4810] = {.lex_state = 72}, [4811] = {.lex_state = 72}, - [4812] = {.lex_state = 72}, + [4812] = {.lex_state = 0}, [4813] = {.lex_state = 72}, [4814] = {.lex_state = 72}, - [4815] = {.lex_state = 72}, + [4815] = {.lex_state = 0}, [4816] = {.lex_state = 72}, [4817] = {.lex_state = 72}, [4818] = {.lex_state = 72}, [4819] = {.lex_state = 72}, [4820] = {.lex_state = 72}, - [4821] = {.lex_state = 72}, - [4822] = {.lex_state = 72}, - [4823] = {.lex_state = 0}, - [4824] = {.lex_state = 0, .external_lex_state = 5}, - [4825] = {.lex_state = 14}, - [4826] = {.lex_state = 17}, - [4827] = {.lex_state = 17}, + [4821] = {.lex_state = 0, .external_lex_state = 5}, + [4822] = {.lex_state = 14}, + [4823] = {.lex_state = 72}, + [4824] = {.lex_state = 17}, + [4825] = {.lex_state = 17}, + [4826] = {.lex_state = 14}, + [4827] = {.lex_state = 72}, [4828] = {.lex_state = 0}, - [4829] = {.lex_state = 14}, - [4830] = {.lex_state = 15, .external_lex_state = 7}, + [4829] = {.lex_state = 72}, + [4830] = {.lex_state = 17}, [4831] = {.lex_state = 72}, - [4832] = {.lex_state = 72}, + [4832] = {.lex_state = 14}, [4833] = {.lex_state = 72}, [4834] = {.lex_state = 72}, [4835] = {.lex_state = 72}, @@ -10861,744 +10860,744 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [4839] = {.lex_state = 72}, [4840] = {.lex_state = 72}, [4841] = {.lex_state = 72}, - [4842] = {.lex_state = 72, .external_lex_state = 6}, + [4842] = {.lex_state = 72}, [4843] = {.lex_state = 72}, - [4844] = {.lex_state = 72, .external_lex_state = 6}, + [4844] = {.lex_state = 0}, [4845] = {.lex_state = 72}, [4846] = {.lex_state = 72}, [4847] = {.lex_state = 72}, - [4848] = {.lex_state = 14}, - [4849] = {.lex_state = 17}, - [4850] = {.lex_state = 72}, - [4851] = {.lex_state = 72, .external_lex_state = 6}, - [4852] = {.lex_state = 72, .external_lex_state = 6}, - [4853] = {.lex_state = 72}, - [4854] = {.lex_state = 72}, - [4855] = {.lex_state = 72}, - [4856] = {.lex_state = 72}, + [4848] = {.lex_state = 72}, + [4849] = {.lex_state = 72}, + [4850] = {.lex_state = 72, .external_lex_state = 6}, + [4851] = {.lex_state = 17}, + [4852] = {.lex_state = 72}, + [4853] = {.lex_state = 72, .external_lex_state = 6}, + [4854] = {.lex_state = 14}, + [4855] = {.lex_state = 72, .external_lex_state = 6}, + [4856] = {.lex_state = 72, .external_lex_state = 6}, [4857] = {.lex_state = 72}, - [4858] = {.lex_state = 0}, + [4858] = {.lex_state = 72}, [4859] = {.lex_state = 72}, [4860] = {.lex_state = 72}, - [4861] = {.lex_state = 72}, - [4862] = {.lex_state = 0, .external_lex_state = 5}, + [4861] = {.lex_state = 17}, + [4862] = {.lex_state = 14}, [4863] = {.lex_state = 72}, - [4864] = {.lex_state = 72}, - [4865] = {.lex_state = 0}, + [4864] = {.lex_state = 0}, + [4865] = {.lex_state = 72}, [4866] = {.lex_state = 72}, [4867] = {.lex_state = 72}, [4868] = {.lex_state = 14}, - [4869] = {.lex_state = 72}, + [4869] = {.lex_state = 0}, [4870] = {.lex_state = 72}, - [4871] = {.lex_state = 72}, - [4872] = {.lex_state = 17}, - [4873] = {.lex_state = 0, .external_lex_state = 5}, - [4874] = {.lex_state = 14}, - [4875] = {.lex_state = 72}, - [4876] = {.lex_state = 72}, - [4877] = {.lex_state = 0, .external_lex_state = 5}, + [4871] = {.lex_state = 17}, + [4872] = {.lex_state = 0}, + [4873] = {.lex_state = 72}, + [4874] = {.lex_state = 0}, + [4875] = {.lex_state = 10}, + [4876] = {.lex_state = 0}, + [4877] = {.lex_state = 10}, [4878] = {.lex_state = 72}, - [4879] = {.lex_state = 72, .external_lex_state = 5}, - [4880] = {.lex_state = 72}, - [4881] = {.lex_state = 72}, - [4882] = {.lex_state = 0, .external_lex_state = 5}, - [4883] = {.lex_state = 0, .external_lex_state = 5}, - [4884] = {.lex_state = 0}, - [4885] = {.lex_state = 72}, + [4879] = {.lex_state = 72}, + [4880] = {.lex_state = 0}, + [4881] = {.lex_state = 0}, + [4882] = {.lex_state = 10}, + [4883] = {.lex_state = 17}, + [4884] = {.lex_state = 72}, + [4885] = {.lex_state = 72, .external_lex_state = 5}, [4886] = {.lex_state = 72}, - [4887] = {.lex_state = 0}, - [4888] = {.lex_state = 17}, - [4889] = {.lex_state = 14}, + [4887] = {.lex_state = 0, .external_lex_state = 5}, + [4888] = {.lex_state = 72}, + [4889] = {.lex_state = 72}, [4890] = {.lex_state = 72}, [4891] = {.lex_state = 72}, [4892] = {.lex_state = 72}, [4893] = {.lex_state = 72}, - [4894] = {.lex_state = 72}, - [4895] = {.lex_state = 72}, - [4896] = {.lex_state = 0}, - [4897] = {.lex_state = 72}, - [4898] = {.lex_state = 72}, - [4899] = {.lex_state = 72}, - [4900] = {.lex_state = 0, .external_lex_state = 5}, - [4901] = {.lex_state = 0, .external_lex_state = 5}, + [4894] = {.lex_state = 0, .external_lex_state = 5}, + [4895] = {.lex_state = 14}, + [4896] = {.lex_state = 72}, + [4897] = {.lex_state = 17}, + [4898] = {.lex_state = 0, .external_lex_state = 5}, + [4899] = {.lex_state = 0}, + [4900] = {.lex_state = 14}, + [4901] = {.lex_state = 72}, [4902] = {.lex_state = 72}, - [4903] = {.lex_state = 72}, + [4903] = {.lex_state = 0, .external_lex_state = 5}, [4904] = {.lex_state = 72}, - [4905] = {.lex_state = 72}, - [4906] = {.lex_state = 0}, - [4907] = {.lex_state = 17}, + [4905] = {.lex_state = 0, .external_lex_state = 5}, + [4906] = {.lex_state = 72}, + [4907] = {.lex_state = 72}, [4908] = {.lex_state = 72}, - [4909] = {.lex_state = 0, .external_lex_state = 5}, - [4910] = {.lex_state = 0}, - [4911] = {.lex_state = 0}, - [4912] = {.lex_state = 0}, - [4913] = {.lex_state = 0}, + [4909] = {.lex_state = 72}, + [4910] = {.lex_state = 0, .external_lex_state = 5}, + [4911] = {.lex_state = 72}, + [4912] = {.lex_state = 72}, + [4913] = {.lex_state = 72}, [4914] = {.lex_state = 0}, - [4915] = {.lex_state = 0}, - [4916] = {.lex_state = 0}, + [4915] = {.lex_state = 17}, + [4916] = {.lex_state = 14}, [4917] = {.lex_state = 72}, [4918] = {.lex_state = 0}, [4919] = {.lex_state = 0}, [4920] = {.lex_state = 0}, - [4921] = {.lex_state = 0}, + [4921] = {.lex_state = 72}, [4922] = {.lex_state = 72}, - [4923] = {.lex_state = 72}, - [4924] = {.lex_state = 72}, - [4925] = {.lex_state = 72}, + [4923] = {.lex_state = 0}, + [4924] = {.lex_state = 0}, + [4925] = {.lex_state = 0, .external_lex_state = 5}, [4926] = {.lex_state = 0}, [4927] = {.lex_state = 0}, - [4928] = {.lex_state = 0, .external_lex_state = 5}, - [4929] = {.lex_state = 72}, - [4930] = {.lex_state = 0}, - [4931] = {.lex_state = 72}, - [4932] = {.lex_state = 72}, + [4928] = {.lex_state = 72}, + [4929] = {.lex_state = 0}, + [4930] = {.lex_state = 72}, + [4931] = {.lex_state = 0}, + [4932] = {.lex_state = 0, .external_lex_state = 5}, [4933] = {.lex_state = 0}, - [4934] = {.lex_state = 0}, - [4935] = {.lex_state = 72}, - [4936] = {.lex_state = 0}, - [4937] = {.lex_state = 0}, - [4938] = {.lex_state = 72}, - [4939] = {.lex_state = 0}, - [4940] = {.lex_state = 0}, + [4934] = {.lex_state = 0, .external_lex_state = 5}, + [4935] = {.lex_state = 0}, + [4936] = {.lex_state = 0, .external_lex_state = 5}, + [4937] = {.lex_state = 72}, + [4938] = {.lex_state = 0}, + [4939] = {.lex_state = 0, .external_lex_state = 5}, + [4940] = {.lex_state = 0, .external_lex_state = 5}, [4941] = {.lex_state = 72}, - [4942] = {.lex_state = 0}, + [4942] = {.lex_state = 0, .external_lex_state = 5}, [4943] = {.lex_state = 0}, - [4944] = {.lex_state = 72}, + [4944] = {.lex_state = 0, .external_lex_state = 5}, [4945] = {.lex_state = 0}, [4946] = {.lex_state = 0}, - [4947] = {.lex_state = 72}, + [4947] = {.lex_state = 0}, [4948] = {.lex_state = 0}, [4949] = {.lex_state = 0}, - [4950] = {.lex_state = 0}, + [4950] = {.lex_state = 0, .external_lex_state = 5}, [4951] = {.lex_state = 0}, - [4952] = {.lex_state = 72}, - [4953] = {.lex_state = 72}, - [4954] = {.lex_state = 72}, - [4955] = {.lex_state = 72}, - [4956] = {.lex_state = 72}, - [4957] = {.lex_state = 0, .external_lex_state = 5}, + [4952] = {.lex_state = 0}, + [4953] = {.lex_state = 0}, + [4954] = {.lex_state = 0}, + [4955] = {.lex_state = 0}, + [4956] = {.lex_state = 0}, + [4957] = {.lex_state = 0}, [4958] = {.lex_state = 0}, - [4959] = {.lex_state = 0}, - [4960] = {.lex_state = 0}, - [4961] = {.lex_state = 0}, - [4962] = {.lex_state = 0}, - [4963] = {.lex_state = 0, .external_lex_state = 5}, - [4964] = {.lex_state = 0}, - [4965] = {.lex_state = 0}, - [4966] = {.lex_state = 0}, + [4959] = {.lex_state = 72}, + [4960] = {.lex_state = 0, .external_lex_state = 5}, + [4961] = {.lex_state = 0, .external_lex_state = 5}, + [4962] = {.lex_state = 0, .external_lex_state = 5}, + [4963] = {.lex_state = 72}, + [4964] = {.lex_state = 72}, + [4965] = {.lex_state = 72}, + [4966] = {.lex_state = 72}, [4967] = {.lex_state = 0}, - [4968] = {.lex_state = 0}, - [4969] = {.lex_state = 0}, - [4970] = {.lex_state = 0, .external_lex_state = 5}, - [4971] = {.lex_state = 0, .external_lex_state = 5}, - [4972] = {.lex_state = 0, .external_lex_state = 5}, - [4973] = {.lex_state = 0, .external_lex_state = 5}, - [4974] = {.lex_state = 0}, - [4975] = {.lex_state = 0}, - [4976] = {.lex_state = 0}, - [4977] = {.lex_state = 72}, - [4978] = {.lex_state = 0}, - [4979] = {.lex_state = 72}, + [4968] = {.lex_state = 72}, + [4969] = {.lex_state = 72}, + [4970] = {.lex_state = 0}, + [4971] = {.lex_state = 0}, + [4972] = {.lex_state = 0}, + [4973] = {.lex_state = 0}, + [4974] = {.lex_state = 0, .external_lex_state = 5}, + [4975] = {.lex_state = 0, .external_lex_state = 5}, + [4976] = {.lex_state = 0, .external_lex_state = 5}, + [4977] = {.lex_state = 0}, + [4978] = {.lex_state = 72}, + [4979] = {.lex_state = 0}, [4980] = {.lex_state = 0}, - [4981] = {.lex_state = 0}, - [4982] = {.lex_state = 0}, - [4983] = {.lex_state = 0}, + [4981] = {.lex_state = 0, .external_lex_state = 5}, + [4982] = {.lex_state = 72}, + [4983] = {.lex_state = 72}, [4984] = {.lex_state = 72}, - [4985] = {.lex_state = 0}, + [4985] = {.lex_state = 0, .external_lex_state = 5}, [4986] = {.lex_state = 0}, [4987] = {.lex_state = 0}, - [4988] = {.lex_state = 0, .external_lex_state = 5}, - [4989] = {.lex_state = 72}, + [4988] = {.lex_state = 0}, + [4989] = {.lex_state = 0, .external_lex_state = 5}, [4990] = {.lex_state = 0}, [4991] = {.lex_state = 0}, - [4992] = {.lex_state = 72}, - [4993] = {.lex_state = 72}, + [4992] = {.lex_state = 0}, + [4993] = {.lex_state = 0, .external_lex_state = 5}, [4994] = {.lex_state = 0}, - [4995] = {.lex_state = 0, .external_lex_state = 5}, - [4996] = {.lex_state = 72}, - [4997] = {.lex_state = 0}, - [4998] = {.lex_state = 72}, - [4999] = {.lex_state = 0}, + [4995] = {.lex_state = 0}, + [4996] = {.lex_state = 0}, + [4997] = {.lex_state = 0, .external_lex_state = 5}, + [4998] = {.lex_state = 0}, + [4999] = {.lex_state = 72}, [5000] = {.lex_state = 0}, [5001] = {.lex_state = 0}, - [5002] = {.lex_state = 0, .external_lex_state = 5}, + [5002] = {.lex_state = 0}, [5003] = {.lex_state = 0}, [5004] = {.lex_state = 0}, [5005] = {.lex_state = 0}, - [5006] = {.lex_state = 72}, + [5006] = {.lex_state = 0}, [5007] = {.lex_state = 0}, [5008] = {.lex_state = 0}, [5009] = {.lex_state = 72}, - [5010] = {.lex_state = 72}, + [5010] = {.lex_state = 0}, [5011] = {.lex_state = 0}, [5012] = {.lex_state = 0}, - [5013] = {.lex_state = 0}, + [5013] = {.lex_state = 72}, [5014] = {.lex_state = 0}, [5015] = {.lex_state = 0}, [5016] = {.lex_state = 0}, [5017] = {.lex_state = 72}, - [5018] = {.lex_state = 72}, + [5018] = {.lex_state = 0}, [5019] = {.lex_state = 0}, [5020] = {.lex_state = 72}, [5021] = {.lex_state = 0}, - [5022] = {.lex_state = 72}, - [5023] = {.lex_state = 0}, + [5022] = {.lex_state = 0, .external_lex_state = 5}, + [5023] = {.lex_state = 72}, [5024] = {.lex_state = 72}, - [5025] = {.lex_state = 0}, - [5026] = {.lex_state = 0, .external_lex_state = 5}, + [5025] = {.lex_state = 72}, + [5026] = {.lex_state = 72}, [5027] = {.lex_state = 0}, - [5028] = {.lex_state = 0}, + [5028] = {.lex_state = 72}, [5029] = {.lex_state = 0}, - [5030] = {.lex_state = 0, .external_lex_state = 5}, - [5031] = {.lex_state = 0}, - [5032] = {.lex_state = 0, .external_lex_state = 5}, - [5033] = {.lex_state = 0, .external_lex_state = 5}, - [5034] = {.lex_state = 72}, - [5035] = {.lex_state = 10}, - [5036] = {.lex_state = 0, .external_lex_state = 5}, - [5037] = {.lex_state = 0, .external_lex_state = 5}, - [5038] = {.lex_state = 72}, + [5030] = {.lex_state = 72}, + [5031] = {.lex_state = 72}, + [5032] = {.lex_state = 0}, + [5033] = {.lex_state = 72}, + [5034] = {.lex_state = 0}, + [5035] = {.lex_state = 72}, + [5036] = {.lex_state = 0}, + [5037] = {.lex_state = 72}, + [5038] = {.lex_state = 0}, [5039] = {.lex_state = 0}, [5040] = {.lex_state = 0}, [5041] = {.lex_state = 0}, [5042] = {.lex_state = 0}, - [5043] = {.lex_state = 0}, + [5043] = {.lex_state = 10}, [5044] = {.lex_state = 0}, - [5045] = {.lex_state = 72}, - [5046] = {.lex_state = 0}, - [5047] = {.lex_state = 72}, - [5048] = {.lex_state = 0}, - [5049] = {.lex_state = 0}, - [5050] = {.lex_state = 0}, - [5051] = {.lex_state = 0}, + [5045] = {.lex_state = 0}, + [5046] = {.lex_state = 0, .external_lex_state = 5}, + [5047] = {.lex_state = 0, .external_lex_state = 5}, + [5048] = {.lex_state = 0, .external_lex_state = 5}, + [5049] = {.lex_state = 0, .external_lex_state = 5}, + [5050] = {.lex_state = 0, .external_lex_state = 5}, + [5051] = {.lex_state = 72}, [5052] = {.lex_state = 0}, [5053] = {.lex_state = 0}, [5054] = {.lex_state = 0}, [5055] = {.lex_state = 0}, - [5056] = {.lex_state = 0}, + [5056] = {.lex_state = 0, .external_lex_state = 5}, [5057] = {.lex_state = 0}, - [5058] = {.lex_state = 72}, + [5058] = {.lex_state = 0, .external_lex_state = 5}, [5059] = {.lex_state = 0}, - [5060] = {.lex_state = 72}, - [5061] = {.lex_state = 0, .external_lex_state = 5}, + [5060] = {.lex_state = 0}, + [5061] = {.lex_state = 0}, [5062] = {.lex_state = 0, .external_lex_state = 5}, - [5063] = {.lex_state = 72}, - [5064] = {.lex_state = 72}, - [5065] = {.lex_state = 72}, + [5063] = {.lex_state = 0}, + [5064] = {.lex_state = 0}, + [5065] = {.lex_state = 0, .external_lex_state = 5}, [5066] = {.lex_state = 0, .external_lex_state = 5}, - [5067] = {.lex_state = 72}, - [5068] = {.lex_state = 72}, - [5069] = {.lex_state = 72}, - [5070] = {.lex_state = 10}, - [5071] = {.lex_state = 0}, - [5072] = {.lex_state = 72}, - [5073] = {.lex_state = 72}, - [5074] = {.lex_state = 0, .external_lex_state = 5}, - [5075] = {.lex_state = 0, .external_lex_state = 5}, - [5076] = {.lex_state = 0, .external_lex_state = 5}, - [5077] = {.lex_state = 0, .external_lex_state = 5}, - [5078] = {.lex_state = 0, .external_lex_state = 5}, - [5079] = {.lex_state = 72, .external_lex_state = 5}, - [5080] = {.lex_state = 72}, - [5081] = {.lex_state = 0, .external_lex_state = 5}, - [5082] = {.lex_state = 0}, - [5083] = {.lex_state = 0, .external_lex_state = 5}, - [5084] = {.lex_state = 0, .external_lex_state = 5}, + [5067] = {.lex_state = 0}, + [5068] = {.lex_state = 0}, + [5069] = {.lex_state = 0}, + [5070] = {.lex_state = 0}, + [5071] = {.lex_state = 72}, + [5072] = {.lex_state = 0}, + [5073] = {.lex_state = 0}, + [5074] = {.lex_state = 0}, + [5075] = {.lex_state = 72}, + [5076] = {.lex_state = 72}, + [5077] = {.lex_state = 0}, + [5078] = {.lex_state = 0}, + [5079] = {.lex_state = 10}, + [5080] = {.lex_state = 0}, + [5081] = {.lex_state = 0}, + [5082] = {.lex_state = 72}, + [5083] = {.lex_state = 72}, + [5084] = {.lex_state = 72}, [5085] = {.lex_state = 0}, - [5086] = {.lex_state = 72, .external_lex_state = 5}, - [5087] = {.lex_state = 72}, + [5086] = {.lex_state = 72}, + [5087] = {.lex_state = 0}, [5088] = {.lex_state = 72}, - [5089] = {.lex_state = 72}, - [5090] = {.lex_state = 10}, - [5091] = {.lex_state = 72}, + [5089] = {.lex_state = 0}, + [5090] = {.lex_state = 72}, + [5091] = {.lex_state = 0}, [5092] = {.lex_state = 0}, [5093] = {.lex_state = 0}, [5094] = {.lex_state = 0}, - [5095] = {.lex_state = 0}, - [5096] = {.lex_state = 72}, - [5097] = {.lex_state = 0}, + [5095] = {.lex_state = 72}, + [5096] = {.lex_state = 0}, + [5097] = {.lex_state = 72}, [5098] = {.lex_state = 72}, - [5099] = {.lex_state = 72}, - [5100] = {.lex_state = 0}, + [5099] = {.lex_state = 10}, + [5100] = {.lex_state = 72}, [5101] = {.lex_state = 72}, - [5102] = {.lex_state = 72}, + [5102] = {.lex_state = 0}, [5103] = {.lex_state = 72}, [5104] = {.lex_state = 72}, [5105] = {.lex_state = 72}, [5106] = {.lex_state = 72}, [5107] = {.lex_state = 72}, - [5108] = {.lex_state = 0, .external_lex_state = 5}, - [5109] = {.lex_state = 72}, - [5110] = {.lex_state = 0}, + [5108] = {.lex_state = 0}, + [5109] = {.lex_state = 0}, + [5110] = {.lex_state = 72}, [5111] = {.lex_state = 0}, - [5112] = {.lex_state = 0, .external_lex_state = 5}, - [5113] = {.lex_state = 0, .external_lex_state = 5}, - [5114] = {.lex_state = 0}, - [5115] = {.lex_state = 72}, - [5116] = {.lex_state = 0}, + [5112] = {.lex_state = 72, .external_lex_state = 5}, + [5113] = {.lex_state = 0}, + [5114] = {.lex_state = 72}, + [5115] = {.lex_state = 0}, + [5116] = {.lex_state = 72}, [5117] = {.lex_state = 0, .external_lex_state = 5}, - [5118] = {.lex_state = 72}, - [5119] = {.lex_state = 0}, - [5120] = {.lex_state = 0, .external_lex_state = 5}, - [5121] = {.lex_state = 0}, - [5122] = {.lex_state = 0}, - [5123] = {.lex_state = 0, .external_lex_state = 5}, - [5124] = {.lex_state = 72}, - [5125] = {.lex_state = 72}, - [5126] = {.lex_state = 0, .external_lex_state = 5}, - [5127] = {.lex_state = 0, .external_lex_state = 5}, - [5128] = {.lex_state = 0, .external_lex_state = 5}, - [5129] = {.lex_state = 0, .external_lex_state = 5}, + [5118] = {.lex_state = 72, .external_lex_state = 5}, + [5119] = {.lex_state = 72}, + [5120] = {.lex_state = 72}, + [5121] = {.lex_state = 72}, + [5122] = {.lex_state = 0, .external_lex_state = 5}, + [5123] = {.lex_state = 72}, + [5124] = {.lex_state = 0, .external_lex_state = 5}, + [5125] = {.lex_state = 0, .external_lex_state = 5}, + [5126] = {.lex_state = 72}, + [5127] = {.lex_state = 72}, + [5128] = {.lex_state = 72}, + [5129] = {.lex_state = 72}, [5130] = {.lex_state = 72}, [5131] = {.lex_state = 72}, - [5132] = {.lex_state = 72}, + [5132] = {.lex_state = 0, .external_lex_state = 5}, [5133] = {.lex_state = 0, .external_lex_state = 5}, [5134] = {.lex_state = 72}, [5135] = {.lex_state = 72}, [5136] = {.lex_state = 0, .external_lex_state = 5}, - [5137] = {.lex_state = 0}, - [5138] = {.lex_state = 0, .external_lex_state = 5}, - [5139] = {.lex_state = 0, .external_lex_state = 5}, + [5137] = {.lex_state = 0, .external_lex_state = 5}, + [5138] = {.lex_state = 0}, + [5139] = {.lex_state = 72}, [5140] = {.lex_state = 0, .external_lex_state = 5}, - [5141] = {.lex_state = 72}, - [5142] = {.lex_state = 0, .external_lex_state = 5}, - [5143] = {.lex_state = 0, .external_lex_state = 5}, + [5141] = {.lex_state = 0, .external_lex_state = 5}, + [5142] = {.lex_state = 72}, + [5143] = {.lex_state = 72}, [5144] = {.lex_state = 72}, [5145] = {.lex_state = 72}, - [5146] = {.lex_state = 0}, + [5146] = {.lex_state = 72}, [5147] = {.lex_state = 0, .external_lex_state = 5}, [5148] = {.lex_state = 72}, - [5149] = {.lex_state = 0}, + [5149] = {.lex_state = 72}, [5150] = {.lex_state = 0, .external_lex_state = 5}, [5151] = {.lex_state = 72}, - [5152] = {.lex_state = 0}, - [5153] = {.lex_state = 72}, + [5152] = {.lex_state = 0, .external_lex_state = 5}, + [5153] = {.lex_state = 0, .external_lex_state = 5}, [5154] = {.lex_state = 0}, [5155] = {.lex_state = 72}, - [5156] = {.lex_state = 0}, + [5156] = {.lex_state = 72}, [5157] = {.lex_state = 72}, [5158] = {.lex_state = 0}, - [5159] = {.lex_state = 72}, - [5160] = {.lex_state = 0}, + [5159] = {.lex_state = 0, .external_lex_state = 5}, + [5160] = {.lex_state = 0, .external_lex_state = 5}, [5161] = {.lex_state = 0}, [5162] = {.lex_state = 72}, [5163] = {.lex_state = 0}, [5164] = {.lex_state = 0}, [5165] = {.lex_state = 72}, - [5166] = {.lex_state = 72}, + [5166] = {.lex_state = 0}, [5167] = {.lex_state = 0}, - [5168] = {.lex_state = 0}, - [5169] = {.lex_state = 72}, - [5170] = {.lex_state = 72}, + [5168] = {.lex_state = 72}, + [5169] = {.lex_state = 0}, + [5170] = {.lex_state = 0}, [5171] = {.lex_state = 72}, [5172] = {.lex_state = 0}, - [5173] = {.lex_state = 0}, - [5174] = {.lex_state = 72}, - [5175] = {.lex_state = 72}, - [5176] = {.lex_state = 0}, + [5173] = {.lex_state = 72}, + [5174] = {.lex_state = 0}, + [5175] = {.lex_state = 0}, + [5176] = {.lex_state = 72}, [5177] = {.lex_state = 0}, [5178] = {.lex_state = 0}, - [5179] = {.lex_state = 72}, - [5180] = {.lex_state = 0}, - [5181] = {.lex_state = 72}, + [5179] = {.lex_state = 0}, + [5180] = {.lex_state = 72}, + [5181] = {.lex_state = 0}, [5182] = {.lex_state = 0}, [5183] = {.lex_state = 0}, - [5184] = {.lex_state = 72}, + [5184] = {.lex_state = 0}, [5185] = {.lex_state = 0}, - [5186] = {.lex_state = 0}, + [5186] = {.lex_state = 72}, [5187] = {.lex_state = 0}, [5188] = {.lex_state = 0}, [5189] = {.lex_state = 0}, - [5190] = {.lex_state = 0}, - [5191] = {.lex_state = 72}, + [5190] = {.lex_state = 72}, + [5191] = {.lex_state = 0}, [5192] = {.lex_state = 0}, - [5193] = {.lex_state = 0, .external_lex_state = 5}, + [5193] = {.lex_state = 0}, [5194] = {.lex_state = 0}, [5195] = {.lex_state = 72}, [5196] = {.lex_state = 0}, - [5197] = {.lex_state = 72}, - [5198] = {.lex_state = 0, .external_lex_state = 5}, - [5199] = {.lex_state = 0}, - [5200] = {.lex_state = 0}, - [5201] = {.lex_state = 0}, - [5202] = {.lex_state = 72}, - [5203] = {.lex_state = 72}, - [5204] = {.lex_state = 0}, + [5197] = {.lex_state = 0}, + [5198] = {.lex_state = 0}, + [5199] = {.lex_state = 0, .external_lex_state = 5}, + [5200] = {.lex_state = 72}, + [5201] = {.lex_state = 72}, + [5202] = {.lex_state = 0, .external_lex_state = 5}, + [5203] = {.lex_state = 0}, + [5204] = {.lex_state = 72}, [5205] = {.lex_state = 72}, [5206] = {.lex_state = 0}, [5207] = {.lex_state = 0}, - [5208] = {.lex_state = 72}, - [5209] = {.lex_state = 72}, - [5210] = {.lex_state = 72}, - [5211] = {.lex_state = 0, .external_lex_state = 5}, - [5212] = {.lex_state = 72}, - [5213] = {.lex_state = 72}, - [5214] = {.lex_state = 0, .external_lex_state = 5}, - [5215] = {.lex_state = 72}, + [5208] = {.lex_state = 0}, + [5209] = {.lex_state = 0}, + [5210] = {.lex_state = 0}, + [5211] = {.lex_state = 0}, + [5212] = {.lex_state = 0}, + [5213] = {.lex_state = 0}, + [5214] = {.lex_state = 0}, + [5215] = {.lex_state = 0}, [5216] = {.lex_state = 0}, [5217] = {.lex_state = 0}, - [5218] = {.lex_state = 72}, - [5219] = {.lex_state = 0}, - [5220] = {.lex_state = 72}, + [5218] = {.lex_state = 0}, + [5219] = {.lex_state = 72}, + [5220] = {.lex_state = 0, .external_lex_state = 5}, [5221] = {.lex_state = 72}, - [5222] = {.lex_state = 0}, - [5223] = {.lex_state = 72}, - [5224] = {.lex_state = 72}, - [5225] = {.lex_state = 0, .external_lex_state = 5}, - [5226] = {.lex_state = 0}, - [5227] = {.lex_state = 0, .external_lex_state = 5}, + [5222] = {.lex_state = 72}, + [5223] = {.lex_state = 0, .external_lex_state = 5}, + [5224] = {.lex_state = 0}, + [5225] = {.lex_state = 0}, + [5226] = {.lex_state = 72}, + [5227] = {.lex_state = 72}, [5228] = {.lex_state = 0}, - [5229] = {.lex_state = 0, .external_lex_state = 5}, - [5230] = {.lex_state = 0}, - [5231] = {.lex_state = 0, .external_lex_state = 5}, - [5232] = {.lex_state = 72}, - [5233] = {.lex_state = 72}, - [5234] = {.lex_state = 72}, - [5235] = {.lex_state = 72}, + [5229] = {.lex_state = 0}, + [5230] = {.lex_state = 0, .external_lex_state = 5}, + [5231] = {.lex_state = 72}, + [5232] = {.lex_state = 0, .external_lex_state = 5}, + [5233] = {.lex_state = 0, .external_lex_state = 5}, + [5234] = {.lex_state = 0}, + [5235] = {.lex_state = 0, .external_lex_state = 5}, [5236] = {.lex_state = 72}, [5237] = {.lex_state = 0}, - [5238] = {.lex_state = 72}, - [5239] = {.lex_state = 72}, + [5238] = {.lex_state = 0}, + [5239] = {.lex_state = 0}, [5240] = {.lex_state = 72}, - [5241] = {.lex_state = 72}, - [5242] = {.lex_state = 72}, + [5241] = {.lex_state = 0}, + [5242] = {.lex_state = 0}, [5243] = {.lex_state = 72}, [5244] = {.lex_state = 0}, [5245] = {.lex_state = 0}, [5246] = {.lex_state = 72}, - [5247] = {.lex_state = 0}, - [5248] = {.lex_state = 72}, + [5247] = {.lex_state = 72}, + [5248] = {.lex_state = 0, .external_lex_state = 5}, [5249] = {.lex_state = 72}, - [5250] = {.lex_state = 0}, - [5251] = {.lex_state = 0}, + [5250] = {.lex_state = 72}, + [5251] = {.lex_state = 72}, [5252] = {.lex_state = 72}, - [5253] = {.lex_state = 72}, - [5254] = {.lex_state = 72}, + [5253] = {.lex_state = 0, .external_lex_state = 5}, + [5254] = {.lex_state = 0, .external_lex_state = 5}, [5255] = {.lex_state = 0}, [5256] = {.lex_state = 72}, - [5257] = {.lex_state = 72}, - [5258] = {.lex_state = 72}, - [5259] = {.lex_state = 72}, - [5260] = {.lex_state = 72}, - [5261] = {.lex_state = 72}, - [5262] = {.lex_state = 72}, + [5257] = {.lex_state = 0, .external_lex_state = 5}, + [5258] = {.lex_state = 0, .external_lex_state = 5}, + [5259] = {.lex_state = 0}, + [5260] = {.lex_state = 0}, + [5261] = {.lex_state = 0}, + [5262] = {.lex_state = 0}, [5263] = {.lex_state = 72}, [5264] = {.lex_state = 0}, [5265] = {.lex_state = 72}, - [5266] = {.lex_state = 72}, + [5266] = {.lex_state = 0}, [5267] = {.lex_state = 72}, - [5268] = {.lex_state = 72}, + [5268] = {.lex_state = 0, .external_lex_state = 5}, [5269] = {.lex_state = 72}, - [5270] = {.lex_state = 0, .external_lex_state = 5}, + [5270] = {.lex_state = 0}, [5271] = {.lex_state = 72}, - [5272] = {.lex_state = 72}, + [5272] = {.lex_state = 0}, [5273] = {.lex_state = 72}, [5274] = {.lex_state = 72}, - [5275] = {.lex_state = 72}, - [5276] = {.lex_state = 72}, - [5277] = {.lex_state = 72}, - [5278] = {.lex_state = 72}, - [5279] = {.lex_state = 0, .external_lex_state = 5}, - [5280] = {.lex_state = 0, .external_lex_state = 5}, - [5281] = {.lex_state = 72}, - [5282] = {.lex_state = 72}, - [5283] = {.lex_state = 72}, - [5284] = {.lex_state = 0}, + [5275] = {.lex_state = 0, .external_lex_state = 5}, + [5276] = {.lex_state = 0, .external_lex_state = 5}, + [5277] = {.lex_state = 0, .external_lex_state = 5}, + [5278] = {.lex_state = 0}, + [5279] = {.lex_state = 72}, + [5280] = {.lex_state = 72}, + [5281] = {.lex_state = 0}, + [5282] = {.lex_state = 0}, + [5283] = {.lex_state = 0}, + [5284] = {.lex_state = 72}, [5285] = {.lex_state = 72}, [5286] = {.lex_state = 0}, [5287] = {.lex_state = 72}, - [5288] = {.lex_state = 72}, - [5289] = {.lex_state = 72}, - [5290] = {.lex_state = 72}, + [5288] = {.lex_state = 0}, + [5289] = {.lex_state = 0}, + [5290] = {.lex_state = 0}, [5291] = {.lex_state = 72}, - [5292] = {.lex_state = 0}, + [5292] = {.lex_state = 72}, [5293] = {.lex_state = 72}, [5294] = {.lex_state = 72}, - [5295] = {.lex_state = 72}, + [5295] = {.lex_state = 0}, [5296] = {.lex_state = 72}, - [5297] = {.lex_state = 0}, - [5298] = {.lex_state = 0}, - [5299] = {.lex_state = 72}, - [5300] = {.lex_state = 0}, + [5297] = {.lex_state = 72}, + [5298] = {.lex_state = 72}, + [5299] = {.lex_state = 0}, + [5300] = {.lex_state = 72}, [5301] = {.lex_state = 72}, [5302] = {.lex_state = 72}, [5303] = {.lex_state = 72}, - [5304] = {.lex_state = 0}, + [5304] = {.lex_state = 72}, [5305] = {.lex_state = 72}, - [5306] = {.lex_state = 72}, - [5307] = {.lex_state = 0, .external_lex_state = 5}, + [5306] = {.lex_state = 0}, + [5307] = {.lex_state = 0}, [5308] = {.lex_state = 72}, [5309] = {.lex_state = 0}, - [5310] = {.lex_state = 0}, + [5310] = {.lex_state = 72}, [5311] = {.lex_state = 72}, [5312] = {.lex_state = 72}, - [5313] = {.lex_state = 72}, + [5313] = {.lex_state = 0}, [5314] = {.lex_state = 72}, - [5315] = {.lex_state = 0, .external_lex_state = 5}, - [5316] = {.lex_state = 72}, - [5317] = {.lex_state = 0}, - [5318] = {.lex_state = 0}, - [5319] = {.lex_state = 0, .external_lex_state = 5}, + [5315] = {.lex_state = 72}, + [5316] = {.lex_state = 0}, + [5317] = {.lex_state = 72}, + [5318] = {.lex_state = 72}, + [5319] = {.lex_state = 0}, [5320] = {.lex_state = 72}, [5321] = {.lex_state = 72}, [5322] = {.lex_state = 72}, - [5323] = {.lex_state = 0}, + [5323] = {.lex_state = 72}, [5324] = {.lex_state = 72}, [5325] = {.lex_state = 72}, [5326] = {.lex_state = 72}, - [5327] = {.lex_state = 72}, + [5327] = {.lex_state = 0}, [5328] = {.lex_state = 72}, [5329] = {.lex_state = 72}, - [5330] = {.lex_state = 72}, - [5331] = {.lex_state = 72}, - [5332] = {.lex_state = 0}, - [5333] = {.lex_state = 0}, + [5330] = {.lex_state = 0}, + [5331] = {.lex_state = 0}, + [5332] = {.lex_state = 72}, + [5333] = {.lex_state = 0, .external_lex_state = 5}, [5334] = {.lex_state = 72}, - [5335] = {.lex_state = 0}, + [5335] = {.lex_state = 72}, [5336] = {.lex_state = 72}, - [5337] = {.lex_state = 0}, + [5337] = {.lex_state = 72}, [5338] = {.lex_state = 0}, [5339] = {.lex_state = 72}, - [5340] = {.lex_state = 0}, - [5341] = {.lex_state = 0}, + [5340] = {.lex_state = 72}, + [5341] = {.lex_state = 72}, [5342] = {.lex_state = 0}, - [5343] = {.lex_state = 0, .external_lex_state = 5}, - [5344] = {.lex_state = 0}, - [5345] = {.lex_state = 0}, - [5346] = {.lex_state = 72}, - [5347] = {.lex_state = 0}, + [5343] = {.lex_state = 0}, + [5344] = {.lex_state = 0, .external_lex_state = 5}, + [5345] = {.lex_state = 72}, + [5346] = {.lex_state = 0}, + [5347] = {.lex_state = 72}, [5348] = {.lex_state = 0}, [5349] = {.lex_state = 72}, - [5350] = {.lex_state = 0}, + [5350] = {.lex_state = 72}, [5351] = {.lex_state = 72}, - [5352] = {.lex_state = 0}, - [5353] = {.lex_state = 0}, - [5354] = {.lex_state = 0}, + [5352] = {.lex_state = 72}, + [5353] = {.lex_state = 0, .external_lex_state = 5}, + [5354] = {.lex_state = 72}, [5355] = {.lex_state = 72}, [5356] = {.lex_state = 72}, - [5357] = {.lex_state = 72}, - [5358] = {.lex_state = 0}, - [5359] = {.lex_state = 0}, + [5357] = {.lex_state = 0}, + [5358] = {.lex_state = 72}, + [5359] = {.lex_state = 72}, [5360] = {.lex_state = 72}, - [5361] = {.lex_state = 72}, + [5361] = {.lex_state = 0}, [5362] = {.lex_state = 72}, [5363] = {.lex_state = 0}, [5364] = {.lex_state = 72}, - [5365] = {.lex_state = 0}, + [5365] = {.lex_state = 72}, [5366] = {.lex_state = 72}, [5367] = {.lex_state = 72}, [5368] = {.lex_state = 0}, [5369] = {.lex_state = 72}, - [5370] = {.lex_state = 0}, + [5370] = {.lex_state = 72}, [5371] = {.lex_state = 72}, [5372] = {.lex_state = 72}, - [5373] = {.lex_state = 0, .external_lex_state = 5}, - [5374] = {.lex_state = 0}, - [5375] = {.lex_state = 72}, - [5376] = {.lex_state = 0}, - [5377] = {.lex_state = 0, .external_lex_state = 5}, + [5373] = {.lex_state = 72}, + [5374] = {.lex_state = 72}, + [5375] = {.lex_state = 0}, + [5376] = {.lex_state = 72}, + [5377] = {.lex_state = 72}, [5378] = {.lex_state = 0}, - [5379] = {.lex_state = 0}, - [5380] = {.lex_state = 0}, + [5379] = {.lex_state = 72}, + [5380] = {.lex_state = 72}, [5381] = {.lex_state = 72}, [5382] = {.lex_state = 72}, [5383] = {.lex_state = 72}, [5384] = {.lex_state = 72}, [5385] = {.lex_state = 72}, - [5386] = {.lex_state = 0}, - [5387] = {.lex_state = 0}, - [5388] = {.lex_state = 0, .external_lex_state = 5}, - [5389] = {.lex_state = 72}, + [5386] = {.lex_state = 72}, + [5387] = {.lex_state = 72}, + [5388] = {.lex_state = 0}, + [5389] = {.lex_state = 0}, [5390] = {.lex_state = 72}, [5391] = {.lex_state = 72}, - [5392] = {.lex_state = 0}, + [5392] = {.lex_state = 72}, [5393] = {.lex_state = 72}, [5394] = {.lex_state = 72}, - [5395] = {.lex_state = 0}, - [5396] = {.lex_state = 72}, - [5397] = {.lex_state = 72}, + [5395] = {.lex_state = 72}, + [5396] = {.lex_state = 0}, + [5397] = {.lex_state = 0}, [5398] = {.lex_state = 72}, [5399] = {.lex_state = 72}, [5400] = {.lex_state = 72}, - [5401] = {.lex_state = 72}, + [5401] = {.lex_state = 0}, [5402] = {.lex_state = 0}, [5403] = {.lex_state = 72}, - [5404] = {.lex_state = 72}, - [5405] = {.lex_state = 0}, - [5406] = {.lex_state = 0}, - [5407] = {.lex_state = 0}, + [5404] = {.lex_state = 0}, + [5405] = {.lex_state = 0, .external_lex_state = 5}, + [5406] = {.lex_state = 72}, + [5407] = {.lex_state = 72}, [5408] = {.lex_state = 72}, [5409] = {.lex_state = 0}, [5410] = {.lex_state = 0}, - [5411] = {.lex_state = 0, .external_lex_state = 5}, - [5412] = {.lex_state = 0}, + [5411] = {.lex_state = 0}, + [5412] = {.lex_state = 72}, [5413] = {.lex_state = 72}, - [5414] = {.lex_state = 0}, - [5415] = {.lex_state = 0}, - [5416] = {.lex_state = 0}, + [5414] = {.lex_state = 72}, + [5415] = {.lex_state = 0, .external_lex_state = 5}, + [5416] = {.lex_state = 0, .external_lex_state = 5}, [5417] = {.lex_state = 72}, [5418] = {.lex_state = 72}, [5419] = {.lex_state = 72}, [5420] = {.lex_state = 72}, - [5421] = {.lex_state = 0, .external_lex_state = 5}, - [5422] = {.lex_state = 0, .external_lex_state = 5}, - [5423] = {.lex_state = 0}, - [5424] = {.lex_state = 72}, + [5421] = {.lex_state = 72}, + [5422] = {.lex_state = 72}, + [5423] = {.lex_state = 72}, + [5424] = {.lex_state = 0}, [5425] = {.lex_state = 72}, [5426] = {.lex_state = 72}, - [5427] = {.lex_state = 0}, - [5428] = {.lex_state = 72}, - [5429] = {.lex_state = 0}, - [5430] = {.lex_state = 0}, - [5431] = {.lex_state = 0}, + [5427] = {.lex_state = 72}, + [5428] = {.lex_state = 0}, + [5429] = {.lex_state = 72}, + [5430] = {.lex_state = 72}, + [5431] = {.lex_state = 72}, [5432] = {.lex_state = 0}, - [5433] = {.lex_state = 0}, + [5433] = {.lex_state = 72}, [5434] = {.lex_state = 72}, [5435] = {.lex_state = 72}, [5436] = {.lex_state = 0}, - [5437] = {.lex_state = 0}, - [5438] = {.lex_state = 72}, + [5437] = {.lex_state = 72}, + [5438] = {.lex_state = 0}, [5439] = {.lex_state = 0}, - [5440] = {.lex_state = 72}, - [5441] = {.lex_state = 0, .external_lex_state = 5}, - [5442] = {.lex_state = 0}, - [5443] = {.lex_state = 0}, - [5444] = {.lex_state = 0}, - [5445] = {.lex_state = 0, .external_lex_state = 5}, - [5446] = {.lex_state = 0, .external_lex_state = 5}, + [5440] = {.lex_state = 0}, + [5441] = {.lex_state = 0}, + [5442] = {.lex_state = 72}, + [5443] = {.lex_state = 72}, + [5444] = {.lex_state = 72}, + [5445] = {.lex_state = 72}, + [5446] = {.lex_state = 72}, [5447] = {.lex_state = 0}, - [5448] = {.lex_state = 0, .external_lex_state = 5}, - [5449] = {.lex_state = 0}, + [5448] = {.lex_state = 72}, + [5449] = {.lex_state = 0, .external_lex_state = 5}, [5450] = {.lex_state = 0}, - [5451] = {.lex_state = 0}, + [5451] = {.lex_state = 72}, [5452] = {.lex_state = 72}, [5453] = {.lex_state = 0}, [5454] = {.lex_state = 72}, - [5455] = {.lex_state = 0}, + [5455] = {.lex_state = 0, .external_lex_state = 5}, [5456] = {.lex_state = 0}, [5457] = {.lex_state = 0}, - [5458] = {.lex_state = 0}, - [5459] = {.lex_state = 72}, + [5458] = {.lex_state = 72}, + [5459] = {.lex_state = 0}, [5460] = {.lex_state = 0}, [5461] = {.lex_state = 0}, - [5462] = {.lex_state = 0}, + [5462] = {.lex_state = 72}, [5463] = {.lex_state = 0}, - [5464] = {.lex_state = 0}, + [5464] = {.lex_state = 72}, [5465] = {.lex_state = 0}, - [5466] = {.lex_state = 0}, + [5466] = {.lex_state = 72}, [5467] = {.lex_state = 0}, [5468] = {.lex_state = 0}, [5469] = {.lex_state = 0}, - [5470] = {.lex_state = 72}, + [5470] = {.lex_state = 0}, [5471] = {.lex_state = 0}, - [5472] = {.lex_state = 72}, + [5472] = {.lex_state = 0}, [5473] = {.lex_state = 0}, - [5474] = {.lex_state = 72}, + [5474] = {.lex_state = 0}, [5475] = {.lex_state = 0}, - [5476] = {.lex_state = 72}, + [5476] = {.lex_state = 1}, [5477] = {.lex_state = 0}, [5478] = {.lex_state = 0}, [5479] = {.lex_state = 0}, - [5480] = {.lex_state = 0}, - [5481] = {.lex_state = 72}, + [5480] = {.lex_state = 72}, + [5481] = {.lex_state = 0}, [5482] = {.lex_state = 0}, [5483] = {.lex_state = 0}, - [5484] = {.lex_state = 0}, + [5484] = {.lex_state = 72}, [5485] = {.lex_state = 0}, - [5486] = {.lex_state = 0}, + [5486] = {.lex_state = 72}, [5487] = {.lex_state = 0}, [5488] = {.lex_state = 0}, [5489] = {.lex_state = 0}, [5490] = {.lex_state = 0}, - [5491] = {.lex_state = 0}, + [5491] = {.lex_state = 72}, [5492] = {.lex_state = 0}, - [5493] = {.lex_state = 72}, + [5493] = {.lex_state = 0}, [5494] = {.lex_state = 0}, [5495] = {.lex_state = 0}, - [5496] = {.lex_state = 0}, + [5496] = {.lex_state = 72}, [5497] = {.lex_state = 0}, [5498] = {.lex_state = 0}, [5499] = {.lex_state = 0}, [5500] = {.lex_state = 0}, [5501] = {.lex_state = 0}, [5502] = {.lex_state = 0}, - [5503] = {.lex_state = 72}, - [5504] = {.lex_state = 72}, - [5505] = {.lex_state = 0}, + [5503] = {.lex_state = 0}, + [5504] = {.lex_state = 0}, + [5505] = {.lex_state = 72}, [5506] = {.lex_state = 0}, [5507] = {.lex_state = 0}, - [5508] = {.lex_state = 72}, - [5509] = {.lex_state = 72}, + [5508] = {.lex_state = 0}, + [5509] = {.lex_state = 0}, [5510] = {.lex_state = 72}, - [5511] = {.lex_state = 0}, + [5511] = {.lex_state = 72}, [5512] = {.lex_state = 0}, [5513] = {.lex_state = 0}, [5514] = {.lex_state = 72}, - [5515] = {.lex_state = 72}, + [5515] = {.lex_state = 0}, [5516] = {.lex_state = 0}, [5517] = {.lex_state = 0}, [5518] = {.lex_state = 0}, [5519] = {.lex_state = 0}, - [5520] = {.lex_state = 0}, + [5520] = {.lex_state = 72}, [5521] = {.lex_state = 0}, - [5522] = {.lex_state = 72}, + [5522] = {.lex_state = 0}, [5523] = {.lex_state = 0}, - [5524] = {.lex_state = 0}, - [5525] = {.lex_state = 0}, + [5524] = {.lex_state = 72}, + [5525] = {.lex_state = 72}, [5526] = {.lex_state = 0}, - [5527] = {.lex_state = 72}, + [5527] = {.lex_state = 0}, [5528] = {.lex_state = 0}, [5529] = {.lex_state = 0}, [5530] = {.lex_state = 0}, - [5531] = {.lex_state = 72}, + [5531] = {.lex_state = 0}, [5532] = {.lex_state = 0}, - [5533] = {.lex_state = 72}, + [5533] = {.lex_state = 0}, [5534] = {.lex_state = 0}, [5535] = {.lex_state = 0}, - [5536] = {.lex_state = 11}, + [5536] = {.lex_state = 0}, [5537] = {.lex_state = 0}, - [5538] = {.lex_state = 0}, - [5539] = {.lex_state = 0}, + [5538] = {.lex_state = 11}, + [5539] = {.lex_state = 72}, [5540] = {.lex_state = 0}, - [5541] = {.lex_state = 0}, + [5541] = {.lex_state = 72}, [5542] = {.lex_state = 0}, - [5543] = {.lex_state = 0}, + [5543] = {.lex_state = 72}, [5544] = {.lex_state = 0}, [5545] = {.lex_state = 0}, [5546] = {.lex_state = 0}, [5547] = {.lex_state = 0}, [5548] = {.lex_state = 0}, [5549] = {.lex_state = 0}, - [5550] = {.lex_state = 72}, - [5551] = {.lex_state = 72}, + [5550] = {.lex_state = 0}, + [5551] = {.lex_state = 11}, [5552] = {.lex_state = 0}, - [5553] = {.lex_state = 0}, + [5553] = {.lex_state = 72}, [5554] = {.lex_state = 0}, [5555] = {.lex_state = 0}, - [5556] = {.lex_state = 72}, + [5556] = {.lex_state = 0}, [5557] = {.lex_state = 0}, [5558] = {.lex_state = 0}, [5559] = {.lex_state = 0}, - [5560] = {.lex_state = 0}, + [5560] = {.lex_state = 72}, [5561] = {.lex_state = 72}, [5562] = {.lex_state = 0}, [5563] = {.lex_state = 0}, [5564] = {.lex_state = 0}, [5565] = {.lex_state = 72}, - [5566] = {.lex_state = 72}, - [5567] = {.lex_state = 0}, + [5566] = {.lex_state = 0}, + [5567] = {.lex_state = 72}, [5568] = {.lex_state = 0}, - [5569] = {.lex_state = 0}, + [5569] = {.lex_state = 72}, [5570] = {.lex_state = 0}, - [5571] = {.lex_state = 72}, + [5571] = {.lex_state = 0}, [5572] = {.lex_state = 72}, [5573] = {.lex_state = 0}, - [5574] = {.lex_state = 72}, - [5575] = {.lex_state = 1}, - [5576] = {.lex_state = 0}, + [5574] = {.lex_state = 0}, + [5575] = {.lex_state = 0}, + [5576] = {.lex_state = 72}, [5577] = {.lex_state = 0}, - [5578] = {.lex_state = 72}, - [5579] = {.lex_state = 72}, + [5578] = {.lex_state = 0}, + [5579] = {.lex_state = 0}, [5580] = {.lex_state = 0}, [5581] = {.lex_state = 0}, [5582] = {.lex_state = 0}, @@ -11607,24 +11606,24 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [5585] = {.lex_state = 0}, [5586] = {.lex_state = 0}, [5587] = {.lex_state = 0}, - [5588] = {.lex_state = 0}, + [5588] = {.lex_state = 72}, [5589] = {.lex_state = 0}, - [5590] = {.lex_state = 0}, + [5590] = {.lex_state = 72}, [5591] = {.lex_state = 0}, - [5592] = {.lex_state = 72}, + [5592] = {.lex_state = 0}, [5593] = {.lex_state = 0}, - [5594] = {.lex_state = 0}, + [5594] = {.lex_state = 72}, [5595] = {.lex_state = 0}, [5596] = {.lex_state = 0}, [5597] = {.lex_state = 0}, - [5598] = {.lex_state = 0}, + [5598] = {.lex_state = 72}, [5599] = {.lex_state = 0}, [5600] = {.lex_state = 0}, [5601] = {.lex_state = 0}, [5602] = {.lex_state = 0}, - [5603] = {.lex_state = 72}, - [5604] = {.lex_state = 0}, - [5605] = {.lex_state = 1}, + [5603] = {.lex_state = 0}, + [5604] = {.lex_state = 1}, + [5605] = {.lex_state = 0}, [5606] = {.lex_state = 0}, [5607] = {.lex_state = 0}, [5608] = {.lex_state = 0}, @@ -11636,21 +11635,21 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [5614] = {.lex_state = 0}, [5615] = {.lex_state = 0}, [5616] = {.lex_state = 0}, - [5617] = {.lex_state = 0}, - [5618] = {.lex_state = 11}, + [5617] = {.lex_state = 72}, + [5618] = {.lex_state = 0}, [5619] = {.lex_state = 0}, [5620] = {.lex_state = 0}, - [5621] = {.lex_state = 0}, + [5621] = {.lex_state = 11}, [5622] = {.lex_state = 0}, [5623] = {.lex_state = 0}, [5624] = {.lex_state = 0}, [5625] = {.lex_state = 0}, [5626] = {.lex_state = 0}, - [5627] = {.lex_state = 0}, + [5627] = {.lex_state = 72}, [5628] = {.lex_state = 0}, [5629] = {.lex_state = 0}, [5630] = {.lex_state = 72}, - [5631] = {.lex_state = 1}, + [5631] = {.lex_state = 0}, [5632] = {.lex_state = 0}, [5633] = {.lex_state = 0}, [5634] = {.lex_state = 0}, @@ -11658,198 +11657,208 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [5636] = {.lex_state = 0}, [5637] = {.lex_state = 72}, [5638] = {.lex_state = 0}, - [5639] = {.lex_state = 72}, - [5640] = {.lex_state = 72}, - [5641] = {.lex_state = 0}, - [5642] = {.lex_state = 1}, - [5643] = {.lex_state = 72}, - [5644] = {.lex_state = 11}, + [5639] = {.lex_state = 0}, + [5640] = {.lex_state = 0}, + [5641] = {.lex_state = 72}, + [5642] = {.lex_state = 0}, + [5643] = {.lex_state = 0}, + [5644] = {.lex_state = 72}, [5645] = {.lex_state = 0}, [5646] = {.lex_state = 0}, - [5647] = {.lex_state = 72}, - [5648] = {.lex_state = 11}, + [5647] = {.lex_state = 0}, + [5648] = {.lex_state = 0}, [5649] = {.lex_state = 72}, [5650] = {.lex_state = 72}, [5651] = {.lex_state = 0}, [5652] = {.lex_state = 72}, [5653] = {.lex_state = 0}, [5654] = {.lex_state = 0}, - [5655] = {.lex_state = 0}, + [5655] = {.lex_state = 11}, [5656] = {.lex_state = 0}, - [5657] = {.lex_state = 0}, - [5658] = {.lex_state = 0}, - [5659] = {.lex_state = 0}, - [5660] = {.lex_state = 0}, + [5657] = {.lex_state = 72}, + [5658] = {.lex_state = 11}, + [5659] = {.lex_state = 72}, + [5660] = {.lex_state = 72}, [5661] = {.lex_state = 0}, - [5662] = {.lex_state = 0}, - [5663] = {.lex_state = 72}, + [5662] = {.lex_state = 72}, + [5663] = {.lex_state = 0}, [5664] = {.lex_state = 0}, - [5665] = {.lex_state = 72}, - [5666] = {.lex_state = 0}, + [5665] = {.lex_state = 0}, + [5666] = {.lex_state = 72}, [5667] = {.lex_state = 0}, [5668] = {.lex_state = 0}, - [5669] = {.lex_state = 72}, + [5669] = {.lex_state = 0}, [5670] = {.lex_state = 0}, [5671] = {.lex_state = 0}, - [5672] = {.lex_state = 0}, - [5673] = {.lex_state = 0}, + [5672] = {.lex_state = 72}, + [5673] = {.lex_state = 72}, [5674] = {.lex_state = 0}, [5675] = {.lex_state = 72}, - [5676] = {.lex_state = 72}, - [5677] = {.lex_state = 72}, + [5676] = {.lex_state = 0}, + [5677] = {.lex_state = 0}, [5678] = {.lex_state = 0}, - [5679] = {.lex_state = 0}, - [5680] = {.lex_state = 72}, - [5681] = {.lex_state = 72}, + [5679] = {.lex_state = 72}, + [5680] = {.lex_state = 0}, + [5681] = {.lex_state = 0}, [5682] = {.lex_state = 0}, [5683] = {.lex_state = 0}, [5684] = {.lex_state = 0}, - [5685] = {.lex_state = 0}, - [5686] = {.lex_state = 0}, - [5687] = {.lex_state = 72}, - [5688] = {.lex_state = 72}, - [5689] = {.lex_state = 0}, + [5685] = {.lex_state = 72}, + [5686] = {.lex_state = 72}, + [5687] = {.lex_state = 0}, + [5688] = {.lex_state = 0}, + [5689] = {.lex_state = 72}, [5690] = {.lex_state = 72}, - [5691] = {.lex_state = 0}, - [5692] = {.lex_state = 0}, - [5693] = {.lex_state = 72}, + [5691] = {.lex_state = 72}, + [5692] = {.lex_state = 1}, + [5693] = {.lex_state = 0}, [5694] = {.lex_state = 0}, - [5695] = {.lex_state = 0}, + [5695] = {.lex_state = 11}, [5696] = {.lex_state = 0}, [5697] = {.lex_state = 0}, - [5698] = {.lex_state = 0}, + [5698] = {.lex_state = 72}, [5699] = {.lex_state = 0}, [5700] = {.lex_state = 72}, - [5701] = {.lex_state = 72}, - [5702] = {.lex_state = 11}, - [5703] = {.lex_state = 0}, + [5701] = {.lex_state = 0}, + [5702] = {.lex_state = 0}, + [5703] = {.lex_state = 72}, [5704] = {.lex_state = 0}, [5705] = {.lex_state = 0}, [5706] = {.lex_state = 0}, - [5707] = {.lex_state = 72}, + [5707] = {.lex_state = 0}, [5708] = {.lex_state = 0}, - [5709] = {.lex_state = 0}, - [5710] = {.lex_state = 0}, - [5711] = {.lex_state = 0}, - [5712] = {.lex_state = 0}, - [5713] = {.lex_state = 11}, - [5714] = {.lex_state = 0}, + [5709] = {.lex_state = 72}, + [5710] = {.lex_state = 72}, + [5711] = {.lex_state = 72}, + [5712] = {.lex_state = 11}, + [5713] = {.lex_state = 0}, + [5714] = {.lex_state = 72}, [5715] = {.lex_state = 0}, [5716] = {.lex_state = 0}, - [5717] = {.lex_state = 0}, + [5717] = {.lex_state = 72}, [5718] = {.lex_state = 0}, [5719] = {.lex_state = 0}, [5720] = {.lex_state = 0}, [5721] = {.lex_state = 0}, - [5722] = {.lex_state = 72}, + [5722] = {.lex_state = 0}, [5723] = {.lex_state = 0}, [5724] = {.lex_state = 0}, [5725] = {.lex_state = 0}, [5726] = {.lex_state = 0}, - [5727] = {.lex_state = 1}, + [5727] = {.lex_state = 0}, [5728] = {.lex_state = 0}, [5729] = {.lex_state = 0}, [5730] = {.lex_state = 0}, - [5731] = {.lex_state = 72}, + [5731] = {.lex_state = 0}, [5732] = {.lex_state = 72}, - [5733] = {.lex_state = 72}, + [5733] = {.lex_state = 0}, [5734] = {.lex_state = 0}, [5735] = {.lex_state = 0}, [5736] = {.lex_state = 0}, [5737] = {.lex_state = 0}, [5738] = {.lex_state = 0}, - [5739] = {.lex_state = 72}, + [5739] = {.lex_state = 11}, [5740] = {.lex_state = 0}, [5741] = {.lex_state = 0}, [5742] = {.lex_state = 0}, [5743] = {.lex_state = 0}, - [5744] = {.lex_state = 72}, - [5745] = {.lex_state = 72}, + [5744] = {.lex_state = 0}, + [5745] = {.lex_state = 0}, [5746] = {.lex_state = 0}, [5747] = {.lex_state = 0}, [5748] = {.lex_state = 72}, [5749] = {.lex_state = 72}, - [5750] = {.lex_state = 72}, + [5750] = {.lex_state = 0}, [5751] = {.lex_state = 0}, [5752] = {.lex_state = 0}, [5753] = {.lex_state = 0}, [5754] = {.lex_state = 0}, - [5755] = {.lex_state = 0}, + [5755] = {.lex_state = 72}, [5756] = {.lex_state = 0}, - [5757] = {.lex_state = 11}, - [5758] = {.lex_state = 0}, - [5759] = {.lex_state = 0}, - [5760] = {.lex_state = 0}, - [5761] = {.lex_state = 72}, - [5762] = {.lex_state = 72}, + [5757] = {.lex_state = 0}, + [5758] = {.lex_state = 72}, + [5759] = {.lex_state = 72}, + [5760] = {.lex_state = 1}, + [5761] = {.lex_state = 0}, + [5762] = {.lex_state = 0}, [5763] = {.lex_state = 0}, [5764] = {.lex_state = 0}, [5765] = {.lex_state = 0}, - [5766] = {.lex_state = 0}, + [5766] = {.lex_state = 72}, [5767] = {.lex_state = 0}, - [5768] = {.lex_state = 72}, + [5768] = {.lex_state = 0}, [5769] = {.lex_state = 0}, [5770] = {.lex_state = 0}, - [5771] = {.lex_state = 11}, + [5771] = {.lex_state = 72}, [5772] = {.lex_state = 0}, - [5773] = {.lex_state = 0}, + [5773] = {.lex_state = 11}, [5774] = {.lex_state = 0}, - [5775] = {.lex_state = 1}, + [5775] = {.lex_state = 0}, [5776] = {.lex_state = 0}, [5777] = {.lex_state = 0}, - [5778] = {.lex_state = 72}, - [5779] = {.lex_state = 72}, - [5780] = {.lex_state = 72}, - [5781] = {.lex_state = 72}, + [5778] = {.lex_state = 0}, + [5779] = {.lex_state = 0}, + [5780] = {.lex_state = 0}, + [5781] = {.lex_state = 0}, [5782] = {.lex_state = 0}, [5783] = {.lex_state = 0}, [5784] = {.lex_state = 0}, [5785] = {.lex_state = 0}, [5786] = {.lex_state = 0}, [5787] = {.lex_state = 0}, - [5788] = {.lex_state = 0}, - [5789] = {.lex_state = 0}, - [5790] = {.lex_state = 0}, - [5791] = {.lex_state = 0}, - [5792] = {.lex_state = 72}, - [5793] = {.lex_state = 72}, + [5788] = {.lex_state = 72}, + [5789] = {.lex_state = 72}, + [5790] = {.lex_state = 72}, + [5791] = {.lex_state = 72}, + [5792] = {.lex_state = 1}, + [5793] = {.lex_state = 0}, [5794] = {.lex_state = 72}, - [5795] = {.lex_state = 0}, + [5795] = {.lex_state = 72}, [5796] = {.lex_state = 0}, [5797] = {.lex_state = 0}, - [5798] = {.lex_state = 72}, - [5799] = {.lex_state = 1}, + [5798] = {.lex_state = 0}, + [5799] = {.lex_state = 0}, [5800] = {.lex_state = 0}, [5801] = {.lex_state = 0}, [5802] = {.lex_state = 72}, - [5803] = {.lex_state = 0}, - [5804] = {.lex_state = 0}, + [5803] = {.lex_state = 72}, + [5804] = {.lex_state = 72}, [5805] = {.lex_state = 0}, - [5806] = {.lex_state = 0}, + [5806] = {.lex_state = 72}, [5807] = {.lex_state = 0}, - [5808] = {.lex_state = 0}, - [5809] = {.lex_state = 72}, - [5810] = {.lex_state = 1}, + [5808] = {.lex_state = 72}, + [5809] = {.lex_state = 1}, + [5810] = {.lex_state = 0}, [5811] = {.lex_state = 0}, [5812] = {.lex_state = 0}, [5813] = {.lex_state = 0}, - [5814] = {.lex_state = 72}, + [5814] = {.lex_state = 1}, [5815] = {.lex_state = 0}, [5816] = {.lex_state = 0}, [5817] = {.lex_state = 0}, - [5818] = {.lex_state = 72}, - [5819] = {.lex_state = 1}, - [5820] = {.lex_state = 11}, - [5821] = {.lex_state = 0}, - [5822] = {.lex_state = 0}, + [5818] = {.lex_state = 0}, + [5819] = {.lex_state = 0}, + [5820] = {.lex_state = 0}, + [5821] = {.lex_state = 72}, + [5822] = {.lex_state = 72}, [5823] = {.lex_state = 72}, [5824] = {.lex_state = 0}, [5825] = {.lex_state = 0}, [5826] = {.lex_state = 0}, [5827] = {.lex_state = 0}, - [5828] = {.lex_state = 0}, - [5829] = {.lex_state = 0}, + [5828] = {.lex_state = 72}, + [5829] = {.lex_state = 1}, [5830] = {.lex_state = 0}, + [5831] = {.lex_state = 1}, + [5832] = {.lex_state = 0}, + [5833] = {.lex_state = 0}, + [5834] = {.lex_state = 0}, + [5835] = {.lex_state = 0}, + [5836] = {.lex_state = 0}, + [5837] = {.lex_state = 0}, + [5838] = {.lex_state = 0}, + [5839] = {.lex_state = 0}, + [5840] = {.lex_state = 0}, }; enum { @@ -11874,10 +11883,10 @@ static bool ts_external_scanner_states[8][EXTERNAL_TOKEN_COUNT] = { [ts_external_token__function_signature_automatic_semicolon] = true, }, [2] = { - [ts_external_token__automatic_semicolon] = true, [ts_external_token_PIPE_PIPE] = true, }, [3] = { + [ts_external_token__automatic_semicolon] = true, [ts_external_token_PIPE_PIPE] = true, }, [4] = { @@ -12046,82 +12055,82 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__function_signature_automatic_semicolon] = ACTIONS(1), }, [1] = { - [sym_program] = STATE(5791), - [sym_export_statement] = STATE(22), - [sym_declaration] = STATE(22), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(22), - [sym_expression_statement] = STATE(22), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_program] = STATE(5801), + [sym_export_statement] = STATE(23), + [sym_declaration] = STATE(23), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(23), + [sym_expression_statement] = STATE(23), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(22), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(23), + [aux_sym_export_statement_repeat1] = STATE(4407), [ts_builtin_sym_end] = ACTIONS(5), [sym_identifier] = ACTIONS(7), [sym_hash_bang_line] = ACTIONS(9), @@ -12196,92 +12205,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [2] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(5057), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(4956), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(5057), - [sym_pair] = STATE(5057), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(4956), + [sym_pair] = STATE(4956), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(5055), - [aux_sym_object_pattern_repeat1] = STATE(5048), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(4955), + [aux_sym_object_pattern_repeat1] = STATE(5085), [sym_identifier] = ACTIONS(107), [anon_sym_export] = ACTIONS(109), [anon_sym_STAR] = ACTIONS(111), @@ -12359,92 +12368,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [3] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(4950), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(4956), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(4950), - [sym_pair] = STATE(4950), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(4956), + [sym_pair] = STATE(4956), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(4949), - [aux_sym_object_pattern_repeat1] = STATE(5048), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(4955), + [aux_sym_object_pattern_repeat1] = STATE(5085), [sym_identifier] = ACTIONS(145), [anon_sym_export] = ACTIONS(147), [anon_sym_STAR] = ACTIONS(111), @@ -12522,92 +12531,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [4] = { - [sym_export_statement] = STATE(23), - [sym_declaration] = STATE(23), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(5050), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(5089), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(5050), - [sym_pair] = STATE(5050), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(5089), + [sym_pair] = STATE(5089), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(5051), - [aux_sym_object_pattern_repeat1] = STATE(5048), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(5087), + [aux_sym_object_pattern_repeat1] = STATE(5085), [sym_identifier] = ACTIONS(171), [anon_sym_export] = ACTIONS(173), [anon_sym_STAR] = ACTIONS(111), @@ -12687,11 +12696,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [5] = { [sym_export_statement] = STATE(28), [sym_declaration] = STATE(28), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(28), [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(28), [sym_if_statement] = STATE(28), [sym_switch_statement] = STATE(28), @@ -12708,69 +12717,69 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(28), [sym_empty_statement] = STATE(28), [sym_labeled_statement] = STATE(28), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(5057), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(5081), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(5057), - [sym_pair] = STATE(5057), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(5081), + [sym_pair] = STATE(5081), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(5055), - [aux_sym_object_pattern_repeat1] = STATE(5048), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(5078), + [aux_sym_object_pattern_repeat1] = STATE(5085), [sym_identifier] = ACTIONS(197), [anon_sym_export] = ACTIONS(199), [anon_sym_STAR] = ACTIONS(111), @@ -12848,100 +12857,100 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [6] = { - [sym_export_statement] = STATE(28), - [sym_declaration] = STATE(28), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(5057), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(4956), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(5057), - [sym_pair] = STATE(5057), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(4956), + [sym_pair] = STATE(4956), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(5055), - [aux_sym_object_pattern_repeat1] = STATE(5048), - [sym_identifier] = ACTIONS(197), - [anon_sym_export] = ACTIONS(199), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(4955), + [aux_sym_object_pattern_repeat1] = STATE(5085), + [sym_identifier] = ACTIONS(223), + [anon_sym_export] = ACTIONS(225), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), + [anon_sym_type] = ACTIONS(227), + [anon_sym_namespace] = ACTIONS(229), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(223), + [anon_sym_RBRACE] = ACTIONS(153), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -12968,7 +12977,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(207), + [anon_sym_async] = ACTIONS(231), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -12992,119 +13001,119 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(209), - [anon_sym_readonly] = ACTIONS(211), - [anon_sym_get] = ACTIONS(213), - [anon_sym_set] = ACTIONS(213), - [anon_sym_declare] = ACTIONS(215), - [anon_sym_public] = ACTIONS(217), - [anon_sym_private] = ACTIONS(217), - [anon_sym_protected] = ACTIONS(217), - [anon_sym_module] = ACTIONS(219), - [anon_sym_any] = ACTIONS(221), - [anon_sym_number] = ACTIONS(221), - [anon_sym_boolean] = ACTIONS(221), - [anon_sym_string] = ACTIONS(221), - [anon_sym_symbol] = ACTIONS(221), + [anon_sym_static] = ACTIONS(233), + [anon_sym_readonly] = ACTIONS(235), + [anon_sym_get] = ACTIONS(237), + [anon_sym_set] = ACTIONS(237), + [anon_sym_declare] = ACTIONS(239), + [anon_sym_public] = ACTIONS(241), + [anon_sym_private] = ACTIONS(241), + [anon_sym_protected] = ACTIONS(241), + [anon_sym_module] = ACTIONS(243), + [anon_sym_any] = ACTIONS(245), + [anon_sym_number] = ACTIONS(245), + [anon_sym_boolean] = ACTIONS(245), + [anon_sym_string] = ACTIONS(245), + [anon_sym_symbol] = ACTIONS(245), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [7] = { - [sym_export_statement] = STATE(27), - [sym_declaration] = STATE(27), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(4976), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(5089), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(4976), - [sym_pair] = STATE(4976), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(5089), + [sym_pair] = STATE(5089), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(4974), - [aux_sym_object_pattern_repeat1] = STATE(5048), - [sym_identifier] = ACTIONS(225), - [anon_sym_export] = ACTIONS(227), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(5087), + [aux_sym_object_pattern_repeat1] = STATE(5085), + [sym_identifier] = ACTIONS(171), + [anon_sym_export] = ACTIONS(173), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(229), - [anon_sym_namespace] = ACTIONS(231), + [anon_sym_type] = ACTIONS(175), + [anon_sym_namespace] = ACTIONS(177), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(233), + [anon_sym_RBRACE] = ACTIONS(247), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13131,7 +13140,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(235), + [anon_sym_async] = ACTIONS(181), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -13155,119 +13164,119 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(237), - [anon_sym_readonly] = ACTIONS(239), - [anon_sym_get] = ACTIONS(241), - [anon_sym_set] = ACTIONS(241), - [anon_sym_declare] = ACTIONS(243), - [anon_sym_public] = ACTIONS(245), - [anon_sym_private] = ACTIONS(245), - [anon_sym_protected] = ACTIONS(245), - [anon_sym_module] = ACTIONS(247), - [anon_sym_any] = ACTIONS(249), - [anon_sym_number] = ACTIONS(249), - [anon_sym_boolean] = ACTIONS(249), - [anon_sym_string] = ACTIONS(249), - [anon_sym_symbol] = ACTIONS(249), + [anon_sym_static] = ACTIONS(183), + [anon_sym_readonly] = ACTIONS(185), + [anon_sym_get] = ACTIONS(187), + [anon_sym_set] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_public] = ACTIONS(191), + [anon_sym_private] = ACTIONS(191), + [anon_sym_protected] = ACTIONS(191), + [anon_sym_module] = ACTIONS(193), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [8] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(4950), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(34), + [sym_declaration] = STATE(34), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_for_in_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_with_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_debugger_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_empty_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(5053), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(4950), - [sym_pair] = STATE(4950), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(5053), + [sym_pair] = STATE(5053), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(4949), - [aux_sym_object_pattern_repeat1] = STATE(5048), - [sym_identifier] = ACTIONS(251), - [anon_sym_export] = ACTIONS(253), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(5054), + [aux_sym_object_pattern_repeat1] = STATE(5085), + [sym_identifier] = ACTIONS(249), + [anon_sym_export] = ACTIONS(251), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(255), - [anon_sym_namespace] = ACTIONS(257), + [anon_sym_type] = ACTIONS(253), + [anon_sym_namespace] = ACTIONS(255), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(153), + [anon_sym_RBRACE] = ACTIONS(257), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13337,100 +13346,100 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [9] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(4950), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(30), + [sym_declaration] = STATE(30), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_for_in_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_with_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_debugger_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym_empty_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(5089), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(4950), - [sym_pair] = STATE(4950), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(5089), + [sym_pair] = STATE(5089), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(4949), - [aux_sym_object_pattern_repeat1] = STATE(5048), - [sym_identifier] = ACTIONS(275), - [anon_sym_export] = ACTIONS(277), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(5087), + [aux_sym_object_pattern_repeat1] = STATE(5085), + [sym_identifier] = ACTIONS(171), + [anon_sym_export] = ACTIONS(173), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(279), - [anon_sym_namespace] = ACTIONS(281), + [anon_sym_type] = ACTIONS(175), + [anon_sym_namespace] = ACTIONS(177), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(283), + [anon_sym_RBRACE] = ACTIONS(275), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13457,7 +13466,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(285), + [anon_sym_async] = ACTIONS(181), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -13481,119 +13490,119 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(287), - [anon_sym_readonly] = ACTIONS(289), - [anon_sym_get] = ACTIONS(291), - [anon_sym_set] = ACTIONS(291), - [anon_sym_declare] = ACTIONS(293), - [anon_sym_public] = ACTIONS(295), - [anon_sym_private] = ACTIONS(295), - [anon_sym_protected] = ACTIONS(295), - [anon_sym_module] = ACTIONS(297), - [anon_sym_any] = ACTIONS(299), - [anon_sym_number] = ACTIONS(299), - [anon_sym_boolean] = ACTIONS(299), - [anon_sym_string] = ACTIONS(299), - [anon_sym_symbol] = ACTIONS(299), + [anon_sym_static] = ACTIONS(183), + [anon_sym_readonly] = ACTIONS(185), + [anon_sym_get] = ACTIONS(187), + [anon_sym_set] = ACTIONS(187), + [anon_sym_declare] = ACTIONS(189), + [anon_sym_public] = ACTIONS(191), + [anon_sym_private] = ACTIONS(191), + [anon_sym_protected] = ACTIONS(191), + [anon_sym_module] = ACTIONS(193), + [anon_sym_any] = ACTIONS(195), + [anon_sym_number] = ACTIONS(195), + [anon_sym_boolean] = ACTIONS(195), + [anon_sym_string] = ACTIONS(195), + [anon_sym_symbol] = ACTIONS(195), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [10] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5770), - [sym_object_assignment_pattern] = STATE(5059), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5770), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5770), - [sym_spread_element] = STATE(5057), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(3306), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(30), + [sym_declaration] = STATE(30), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_for_in_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_with_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_debugger_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym_empty_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5780), + [sym_object_assignment_pattern] = STATE(5093), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5780), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5780), + [sym_spread_element] = STATE(5089), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(3307), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_rest_pattern] = STATE(5059), - [sym_method_definition] = STATE(5057), - [sym_pair] = STATE(5057), - [sym_pair_pattern] = STATE(5059), - [sym__property_name] = STATE(4169), - [sym_computed_property_name] = STATE(4169), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), + [sym_formal_parameters] = STATE(4485), + [sym_rest_pattern] = STATE(5093), + [sym_method_definition] = STATE(5089), + [sym_pair] = STATE(5089), + [sym_pair_pattern] = STATE(5093), + [sym__property_name] = STATE(4245), + [sym_computed_property_name] = STATE(4245), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), [sym_accessibility_modifier] = STATE(3784), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4389), - [aux_sym_object_repeat1] = STATE(5055), - [aux_sym_object_pattern_repeat1] = STATE(5048), - [sym_identifier] = ACTIONS(197), - [anon_sym_export] = ACTIONS(199), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(4407), + [aux_sym_object_repeat1] = STATE(5087), + [aux_sym_object_pattern_repeat1] = STATE(5085), + [sym_identifier] = ACTIONS(277), + [anon_sym_export] = ACTIONS(279), [anon_sym_STAR] = ACTIONS(111), - [anon_sym_type] = ACTIONS(201), - [anon_sym_namespace] = ACTIONS(203), + [anon_sym_type] = ACTIONS(281), + [anon_sym_namespace] = ACTIONS(283), [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_COMMA] = ACTIONS(117), - [anon_sym_RBRACE] = ACTIONS(301), + [anon_sym_RBRACE] = ACTIONS(285), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -13620,7 +13629,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(207), + [anon_sym_async] = ACTIONS(287), [anon_sym_function] = ACTIONS(73), [anon_sym_new] = ACTIONS(75), [anon_sym_DOT_DOT_DOT] = ACTIONS(125), @@ -13644,20 +13653,20 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(209), - [anon_sym_readonly] = ACTIONS(211), - [anon_sym_get] = ACTIONS(213), - [anon_sym_set] = ACTIONS(213), - [anon_sym_declare] = ACTIONS(215), - [anon_sym_public] = ACTIONS(217), - [anon_sym_private] = ACTIONS(217), - [anon_sym_protected] = ACTIONS(217), - [anon_sym_module] = ACTIONS(219), - [anon_sym_any] = ACTIONS(221), - [anon_sym_number] = ACTIONS(221), - [anon_sym_boolean] = ACTIONS(221), - [anon_sym_string] = ACTIONS(221), - [anon_sym_symbol] = ACTIONS(221), + [anon_sym_static] = ACTIONS(289), + [anon_sym_readonly] = ACTIONS(291), + [anon_sym_get] = ACTIONS(293), + [anon_sym_set] = ACTIONS(293), + [anon_sym_declare] = ACTIONS(295), + [anon_sym_public] = ACTIONS(297), + [anon_sym_private] = ACTIONS(297), + [anon_sym_protected] = ACTIONS(297), + [anon_sym_module] = ACTIONS(299), + [anon_sym_any] = ACTIONS(301), + [anon_sym_number] = ACTIONS(301), + [anon_sym_boolean] = ACTIONS(301), + [anon_sym_string] = ACTIONS(301), + [anon_sym_symbol] = ACTIONS(301), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), @@ -13665,11 +13674,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [11] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -13686,58 +13695,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), [ts_builtin_sym_end] = ACTIONS(303), [sym_identifier] = ACTIONS(305), [anon_sym_export] = ACTIONS(308), @@ -13816,11 +13825,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [12] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -13837,58 +13846,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(454), @@ -13964,81 +13973,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [13] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(15), + [sym_declaration] = STATE(15), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(15), + [sym_expression_statement] = STATE(15), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(15), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(458), @@ -14116,11 +14125,11 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [14] = { [sym_export_statement] = STATE(12), [sym_declaration] = STATE(12), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(12), [sym_expression_statement] = STATE(12), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(12), [sym_if_statement] = STATE(12), [sym_switch_statement] = STATE(12), @@ -14137,58 +14146,58 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(12), [sym_empty_statement] = STATE(12), [sym_labeled_statement] = STATE(12), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(12), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_default] = ACTIONS(462), @@ -14264,163 +14273,13 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [15] = { - [sym_export_statement] = STATE(13), - [sym_declaration] = STATE(13), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(13), - [sym_expression_statement] = STATE(13), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(13), - [aux_sym_export_statement_repeat1] = STATE(4389), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_default] = ACTIONS(466), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(468), - [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(466), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), - [anon_sym_abstract] = ACTIONS(101), - [anon_sym_interface] = ACTIONS(103), - [anon_sym_enum] = ACTIONS(105), - }, - [16] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -14437,64 +14296,65 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), + [anon_sym_default] = ACTIONS(466), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(470), + [anon_sym_RBRACE] = ACTIONS(468), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14516,6 +14376,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(466), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), @@ -14561,88 +14422,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [17] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [16] = { + [sym_export_statement] = STATE(31), + [sym_declaration] = STATE(31), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(31), + [sym_expression_statement] = STATE(31), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(31), + [sym_if_statement] = STATE(31), + [sym_switch_statement] = STATE(31), + [sym_for_statement] = STATE(31), + [sym_for_in_statement] = STATE(31), + [sym_while_statement] = STATE(31), + [sym_do_statement] = STATE(31), + [sym_try_statement] = STATE(31), + [sym_with_statement] = STATE(31), + [sym_break_statement] = STATE(31), + [sym_continue_statement] = STATE(31), + [sym_debugger_statement] = STATE(31), + [sym_return_statement] = STATE(31), + [sym_throw_statement] = STATE(31), + [sym_empty_statement] = STATE(31), + [sym_labeled_statement] = STATE(31), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(31), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(472), + [anon_sym_RBRACE] = ACTIONS(470), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14709,14 +14570,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [18] = { + [17] = { [sym_export_statement] = STATE(32), [sym_declaration] = STATE(32), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(32), [sym_expression_statement] = STATE(32), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(32), [sym_if_statement] = STATE(32), [sym_switch_statement] = STATE(32), @@ -14733,64 +14594,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(32), [sym_empty_statement] = STATE(32), [sym_labeled_statement] = STATE(32), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(32), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), + [ts_builtin_sym_end] = ACTIONS(472), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(474), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -14857,88 +14718,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [19] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [18] = { + [sym_export_statement] = STATE(22), + [sym_declaration] = STATE(22), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(22), + [sym_expression_statement] = STATE(22), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), - [ts_builtin_sym_end] = ACTIONS(476), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(22), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(474), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15005,14 +14866,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [20] = { + [19] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -15029,64 +14890,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(478), + [anon_sym_RBRACE] = ACTIONS(476), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15153,14 +15014,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [21] = { + [20] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -15177,64 +15038,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(480), + [anon_sym_RBRACE] = ACTIONS(478), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15301,88 +15162,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [22] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [21] = { + [sym_export_statement] = STATE(28), + [sym_declaration] = STATE(28), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(28), + [sym_expression_statement] = STATE(28), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), - [ts_builtin_sym_end] = ACTIONS(482), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(28), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(480), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15449,14 +15310,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [23] = { + [22] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -15473,64 +15334,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(484), + [anon_sym_RBRACE] = ACTIONS(482), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15597,88 +15458,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [24] = { - [sym_export_statement] = STATE(28), - [sym_declaration] = STATE(28), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(28), - [sym_expression_statement] = STATE(28), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [23] = { + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(28), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4407), + [ts_builtin_sym_end] = ACTIONS(472), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15745,88 +15606,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [25] = { - [sym_export_statement] = STATE(21), - [sym_declaration] = STATE(21), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(21), - [sym_expression_statement] = STATE(21), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [24] = { + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(21), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(488), + [anon_sym_RBRACE] = ACTIONS(484), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -15893,88 +15754,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [26] = { - [sym_export_statement] = STATE(17), - [sym_declaration] = STATE(17), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(17), - [sym_expression_statement] = STATE(17), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [25] = { + [sym_export_statement] = STATE(34), + [sym_declaration] = STATE(34), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(34), + [sym_expression_statement] = STATE(34), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(34), + [sym_if_statement] = STATE(34), + [sym_switch_statement] = STATE(34), + [sym_for_statement] = STATE(34), + [sym_for_in_statement] = STATE(34), + [sym_while_statement] = STATE(34), + [sym_do_statement] = STATE(34), + [sym_try_statement] = STATE(34), + [sym_with_statement] = STATE(34), + [sym_break_statement] = STATE(34), + [sym_continue_statement] = STATE(34), + [sym_debugger_statement] = STATE(34), + [sym_return_statement] = STATE(34), + [sym_throw_statement] = STATE(34), + [sym_empty_statement] = STATE(34), + [sym_labeled_statement] = STATE(34), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(17), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(34), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(490), + [anon_sym_RBRACE] = ACTIONS(486), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16041,88 +15902,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [27] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [26] = { + [sym_export_statement] = STATE(24), + [sym_declaration] = STATE(24), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(24), + [sym_expression_statement] = STATE(24), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(24), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(492), + [anon_sym_RBRACE] = ACTIONS(488), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16189,88 +16050,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [28] = { - [sym_export_statement] = STATE(11), - [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(11), - [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [27] = { + [sym_export_statement] = STATE(20), + [sym_declaration] = STATE(20), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(20), + [sym_expression_statement] = STATE(20), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(20), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(494), + [anon_sym_RBRACE] = ACTIONS(490), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16337,88 +16198,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [29] = { - [sym_export_statement] = STATE(23), - [sym_declaration] = STATE(23), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(23), - [sym_expression_statement] = STATE(23), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [28] = { + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(23), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(496), + [anon_sym_RBRACE] = ACTIONS(492), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16485,88 +16346,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [30] = { - [sym_export_statement] = STATE(19), - [sym_declaration] = STATE(19), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(19), - [sym_expression_statement] = STATE(19), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [29] = { + [sym_export_statement] = STATE(30), + [sym_declaration] = STATE(30), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(30), + [sym_expression_statement] = STATE(30), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(30), + [sym_if_statement] = STATE(30), + [sym_switch_statement] = STATE(30), + [sym_for_statement] = STATE(30), + [sym_for_in_statement] = STATE(30), + [sym_while_statement] = STATE(30), + [sym_do_statement] = STATE(30), + [sym_try_statement] = STATE(30), + [sym_with_statement] = STATE(30), + [sym_break_statement] = STATE(30), + [sym_continue_statement] = STATE(30), + [sym_debugger_statement] = STATE(30), + [sym_return_statement] = STATE(30), + [sym_throw_statement] = STATE(30), + [sym_empty_statement] = STATE(30), + [sym_labeled_statement] = STATE(30), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(19), - [aux_sym_export_statement_repeat1] = STATE(4389), - [ts_builtin_sym_end] = ACTIONS(482), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(30), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(494), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16633,88 +16494,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [31] = { - [sym_export_statement] = STATE(27), - [sym_declaration] = STATE(27), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(27), - [sym_expression_statement] = STATE(27), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [30] = { + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(27), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(498), + [anon_sym_RBRACE] = ACTIONS(496), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16781,14 +16642,14 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [32] = { + [31] = { [sym_export_statement] = STATE(11), [sym_declaration] = STATE(11), - [sym_import] = STATE(2576), + [sym_import] = STATE(2403), [sym_import_statement] = STATE(11), [sym_expression_statement] = STATE(11), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), [sym_statement_block] = STATE(11), [sym_if_statement] = STATE(11), [sym_switch_statement] = STATE(11), @@ -16805,64 +16666,64 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_throw_statement] = STATE(11), [sym_empty_statement] = STATE(11), [sym_labeled_statement] = STATE(11), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), [aux_sym_program_repeat1] = STATE(11), - [aux_sym_export_statement_repeat1] = STATE(4389), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(500), + [anon_sym_RBRACE] = ACTIONS(498), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -16929,88 +16790,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [33] = { - [sym_export_statement] = STATE(16), - [sym_declaration] = STATE(16), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(16), - [sym_expression_statement] = STATE(16), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [32] = { + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(16), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4407), + [ts_builtin_sym_end] = ACTIONS(500), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17077,88 +16938,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [34] = { - [sym_export_statement] = STATE(20), - [sym_declaration] = STATE(20), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(20), - [sym_expression_statement] = STATE(20), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [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(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [33] = { + [sym_export_statement] = STATE(19), + [sym_declaration] = STATE(19), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(19), + [sym_expression_statement] = STATE(19), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_program_repeat1] = STATE(20), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(19), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), [anon_sym_namespace] = ACTIONS(15), [anon_sym_LBRACE] = ACTIONS(17), - [anon_sym_RBRACE] = ACTIONS(504), + [anon_sym_RBRACE] = ACTIONS(502), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), @@ -17225,101 +17086,103 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [35] = { - [sym_export_statement] = STATE(1128), - [sym_declaration] = STATE(1128), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1128), - [sym_expression_statement] = STATE(1128), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1128), - [sym_if_statement] = STATE(1128), - [sym_switch_statement] = STATE(1128), - [sym_for_statement] = STATE(1128), - [sym_for_in_statement] = STATE(1128), - [sym_while_statement] = STATE(1128), - [sym_do_statement] = STATE(1128), - [sym_try_statement] = STATE(1128), - [sym_with_statement] = STATE(1128), - [sym_break_statement] = STATE(1128), - [sym_continue_statement] = STATE(1128), - [sym_debugger_statement] = STATE(1128), - [sym_return_statement] = STATE(1128), - [sym_throw_statement] = STATE(1128), - [sym_empty_statement] = STATE(1128), - [sym_labeled_statement] = STATE(1128), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [34] = { + [sym_export_statement] = STATE(11), + [sym_declaration] = STATE(11), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(11), + [sym_expression_statement] = STATE(11), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [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(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(514), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_program_repeat1] = STATE(11), + [aux_sym_export_statement_repeat1] = STATE(4407), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), + [anon_sym_RBRACE] = ACTIONS(504), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17330,9 +17193,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(524), - [anon_sym_async] = ACTIONS(526), - [anon_sym_function] = ACTIONS(528), + [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), @@ -17353,119 +17216,119 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [36] = { - [sym_export_statement] = STATE(1153), - [sym_declaration] = STATE(1151), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1150), - [sym_expression_statement] = STATE(1149), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1148), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1146), - [sym_for_statement] = STATE(1071), - [sym_for_in_statement] = STATE(1144), - [sym_while_statement] = STATE(1143), - [sym_do_statement] = STATE(1142), - [sym_try_statement] = STATE(1141), - [sym_with_statement] = STATE(1140), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1137), - [sym_debugger_statement] = STATE(1136), - [sym_return_statement] = STATE(1134), - [sym_throw_statement] = STATE(1133), - [sym_empty_statement] = STATE(1132), - [sym_labeled_statement] = STATE(1131), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [35] = { + [sym_export_statement] = STATE(1118), + [sym_declaration] = STATE(1116), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1111), + [sym_expression_statement] = STATE(1189), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1110), + [sym_if_statement] = STATE(1107), + [sym_switch_statement] = STATE(1095), + [sym_for_statement] = STATE(1094), + [sym_for_in_statement] = STATE(1093), + [sym_while_statement] = STATE(1091), + [sym_do_statement] = STATE(1089), + [sym_try_statement] = STATE(1088), + [sym_with_statement] = STATE(1078), + [sym_break_statement] = STATE(1154), + [sym_continue_statement] = STATE(1162), + [sym_debugger_statement] = STATE(1191), + [sym_return_statement] = STATE(1206), + [sym_throw_statement] = STATE(1213), + [sym_empty_statement] = STATE(1212), + [sym_labeled_statement] = STATE(1199), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(514), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -17476,9 +17339,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(524), - [anon_sym_async] = ACTIONS(526), - [anon_sym_function] = ACTIONS(528), + [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), @@ -17499,99 +17362,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [37] = { - [sym_export_statement] = STATE(1152), - [sym_declaration] = STATE(1130), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1127), - [sym_expression_statement] = STATE(1126), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1125), - [sym_if_statement] = STATE(1122), - [sym_switch_statement] = STATE(1070), - [sym_for_statement] = STATE(1114), - [sym_for_in_statement] = STATE(1112), - [sym_while_statement] = STATE(1111), - [sym_do_statement] = STATE(1110), - [sym_try_statement] = STATE(1109), - [sym_with_statement] = STATE(1108), - [sym_break_statement] = STATE(1107), - [sym_continue_statement] = STATE(1105), - [sym_debugger_statement] = STATE(1104), - [sym_return_statement] = STATE(1101), - [sym_throw_statement] = STATE(1100), - [sym_empty_statement] = STATE(1099), - [sym_labeled_statement] = STATE(1098), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [36] = { + [sym_export_statement] = STATE(1160), + [sym_declaration] = STATE(1160), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1160), + [sym_expression_statement] = STATE(1160), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_switch_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_for_in_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_do_statement] = STATE(1160), + [sym_try_statement] = STATE(1160), + [sym_with_statement] = STATE(1160), + [sym_break_statement] = STATE(1160), + [sym_continue_statement] = STATE(1160), + [sym_debugger_statement] = STATE(1160), + [sym_return_statement] = STATE(1160), + [sym_throw_statement] = STATE(1160), + [sym_empty_statement] = STATE(1160), + [sym_labeled_statement] = STATE(1160), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -17663,81 +17526,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [38] = { - [sym_export_statement] = STATE(1057), - [sym_declaration] = STATE(1057), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1057), - [sym_expression_statement] = STATE(1057), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1057), - [sym_if_statement] = STATE(1057), - [sym_switch_statement] = STATE(1057), - [sym_for_statement] = STATE(1057), - [sym_for_in_statement] = STATE(1057), - [sym_while_statement] = STATE(1057), - [sym_do_statement] = STATE(1057), - [sym_try_statement] = STATE(1057), - [sym_with_statement] = STATE(1057), - [sym_break_statement] = STATE(1057), - [sym_continue_statement] = STATE(1057), - [sym_debugger_statement] = STATE(1057), - [sym_return_statement] = STATE(1057), - [sym_throw_statement] = STATE(1057), - [sym_empty_statement] = STATE(1057), - [sym_labeled_statement] = STATE(1057), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [37] = { + [sym_export_statement] = STATE(1182), + [sym_declaration] = STATE(1182), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1182), + [sym_expression_statement] = STATE(1182), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1182), + [sym_if_statement] = STATE(1182), + [sym_switch_statement] = STATE(1182), + [sym_for_statement] = STATE(1182), + [sym_for_in_statement] = STATE(1182), + [sym_while_statement] = STATE(1182), + [sym_do_statement] = STATE(1182), + [sym_try_statement] = STATE(1182), + [sym_with_statement] = STATE(1182), + [sym_break_statement] = STATE(1182), + [sym_continue_statement] = STATE(1182), + [sym_debugger_statement] = STATE(1182), + [sym_return_statement] = STATE(1182), + [sym_throw_statement] = STATE(1182), + [sym_empty_statement] = STATE(1182), + [sym_labeled_statement] = STATE(1182), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -17809,81 +17672,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [39] = { - [sym_export_statement] = STATE(1205), - [sym_declaration] = STATE(1205), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1205), - [sym_expression_statement] = STATE(1205), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1205), - [sym_if_statement] = STATE(1205), - [sym_switch_statement] = STATE(1205), - [sym_for_statement] = STATE(1205), - [sym_for_in_statement] = STATE(1205), - [sym_while_statement] = STATE(1205), - [sym_do_statement] = STATE(1205), - [sym_try_statement] = STATE(1205), - [sym_with_statement] = STATE(1205), - [sym_break_statement] = STATE(1205), - [sym_continue_statement] = STATE(1205), - [sym_debugger_statement] = STATE(1205), - [sym_return_statement] = STATE(1205), - [sym_throw_statement] = STATE(1205), - [sym_empty_statement] = STATE(1205), - [sym_labeled_statement] = STATE(1205), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [38] = { + [sym_export_statement] = STATE(1068), + [sym_declaration] = STATE(1068), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1068), + [sym_expression_statement] = STATE(1068), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1068), + [sym_if_statement] = STATE(1068), + [sym_switch_statement] = STATE(1068), + [sym_for_statement] = STATE(1068), + [sym_for_in_statement] = STATE(1068), + [sym_while_statement] = STATE(1068), + [sym_do_statement] = STATE(1068), + [sym_try_statement] = STATE(1068), + [sym_with_statement] = STATE(1068), + [sym_break_statement] = STATE(1068), + [sym_continue_statement] = STATE(1068), + [sym_debugger_statement] = STATE(1068), + [sym_return_statement] = STATE(1068), + [sym_throw_statement] = STATE(1068), + [sym_empty_statement] = STATE(1068), + [sym_labeled_statement] = STATE(1068), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -17955,81 +17818,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [40] = { - [sym_export_statement] = STATE(1152), - [sym_declaration] = STATE(1130), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1127), - [sym_expression_statement] = STATE(1126), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1125), - [sym_if_statement] = STATE(1122), - [sym_switch_statement] = STATE(1070), - [sym_for_statement] = STATE(1114), - [sym_for_in_statement] = STATE(1112), - [sym_while_statement] = STATE(1111), - [sym_do_statement] = STATE(1110), - [sym_try_statement] = STATE(1109), - [sym_with_statement] = STATE(1108), - [sym_break_statement] = STATE(1107), - [sym_continue_statement] = STATE(1105), - [sym_debugger_statement] = STATE(1104), - [sym_return_statement] = STATE(1101), - [sym_throw_statement] = STATE(1100), - [sym_empty_statement] = STATE(1099), - [sym_labeled_statement] = STATE(1098), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [39] = { + [sym_export_statement] = STATE(1138), + [sym_declaration] = STATE(1138), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1138), + [sym_if_statement] = STATE(1138), + [sym_switch_statement] = STATE(1138), + [sym_for_statement] = STATE(1138), + [sym_for_in_statement] = STATE(1138), + [sym_while_statement] = STATE(1138), + [sym_do_statement] = STATE(1138), + [sym_try_statement] = STATE(1138), + [sym_with_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_debugger_statement] = STATE(1138), + [sym_return_statement] = STATE(1138), + [sym_throw_statement] = STATE(1138), + [sym_empty_statement] = STATE(1138), + [sym_labeled_statement] = STATE(1138), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -18101,81 +17964,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [41] = { - [sym_export_statement] = STATE(1129), - [sym_declaration] = STATE(1129), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1129), - [sym_expression_statement] = STATE(1129), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1129), - [sym_if_statement] = STATE(1129), - [sym_switch_statement] = STATE(1129), - [sym_for_statement] = STATE(1129), - [sym_for_in_statement] = STATE(1129), - [sym_while_statement] = STATE(1129), - [sym_do_statement] = STATE(1129), - [sym_try_statement] = STATE(1129), - [sym_with_statement] = STATE(1129), - [sym_break_statement] = STATE(1129), - [sym_continue_statement] = STATE(1129), - [sym_debugger_statement] = STATE(1129), - [sym_return_statement] = STATE(1129), - [sym_throw_statement] = STATE(1129), - [sym_empty_statement] = STATE(1129), - [sym_labeled_statement] = STATE(1129), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [40] = { + [sym_export_statement] = STATE(1182), + [sym_declaration] = STATE(1182), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1182), + [sym_expression_statement] = STATE(1182), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1182), + [sym_if_statement] = STATE(1182), + [sym_switch_statement] = STATE(1182), + [sym_for_statement] = STATE(1182), + [sym_for_in_statement] = STATE(1182), + [sym_while_statement] = STATE(1182), + [sym_do_statement] = STATE(1182), + [sym_try_statement] = STATE(1182), + [sym_with_statement] = STATE(1182), + [sym_break_statement] = STATE(1182), + [sym_continue_statement] = STATE(1182), + [sym_debugger_statement] = STATE(1182), + [sym_return_statement] = STATE(1182), + [sym_throw_statement] = STATE(1182), + [sym_empty_statement] = STATE(1182), + [sym_labeled_statement] = STATE(1182), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -18247,101 +18110,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [42] = { - [sym_export_statement] = STATE(1205), - [sym_declaration] = STATE(1205), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1205), - [sym_expression_statement] = STATE(1205), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1205), - [sym_if_statement] = STATE(1205), - [sym_switch_statement] = STATE(1205), - [sym_for_statement] = STATE(1205), - [sym_for_in_statement] = STATE(1205), - [sym_while_statement] = STATE(1205), - [sym_do_statement] = STATE(1205), - [sym_try_statement] = STATE(1205), - [sym_with_statement] = STATE(1205), - [sym_break_statement] = STATE(1205), - [sym_continue_statement] = STATE(1205), - [sym_debugger_statement] = STATE(1205), - [sym_return_statement] = STATE(1205), - [sym_throw_statement] = STATE(1205), - [sym_empty_statement] = STATE(1205), - [sym_labeled_statement] = STATE(1205), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [41] = { + [sym_export_statement] = STATE(1144), + [sym_declaration] = STATE(1144), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1144), + [sym_expression_statement] = STATE(1144), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_switch_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_for_in_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_do_statement] = STATE(1144), + [sym_try_statement] = STATE(1144), + [sym_with_statement] = STATE(1144), + [sym_break_statement] = STATE(1144), + [sym_continue_statement] = STATE(1144), + [sym_debugger_statement] = STATE(1144), + [sym_return_statement] = STATE(1144), + [sym_throw_statement] = STATE(1144), + [sym_empty_statement] = STATE(1144), + [sym_labeled_statement] = STATE(1144), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(514), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18352,9 +18215,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(524), - [anon_sym_async] = ACTIONS(526), - [anon_sym_function] = ACTIONS(528), + [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), @@ -18375,99 +18238,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [43] = { - [sym_export_statement] = STATE(1182), - [sym_declaration] = STATE(1182), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1182), - [sym_expression_statement] = STATE(1182), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1182), - [sym_if_statement] = STATE(1182), - [sym_switch_statement] = STATE(1182), - [sym_for_statement] = STATE(1182), - [sym_for_in_statement] = STATE(1182), - [sym_while_statement] = STATE(1182), - [sym_do_statement] = STATE(1182), - [sym_try_statement] = STATE(1182), - [sym_with_statement] = STATE(1182), - [sym_break_statement] = STATE(1182), - [sym_continue_statement] = STATE(1182), - [sym_debugger_statement] = STATE(1182), - [sym_return_statement] = STATE(1182), - [sym_throw_statement] = STATE(1182), - [sym_empty_statement] = STATE(1182), - [sym_labeled_statement] = STATE(1182), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [42] = { + [sym_export_statement] = STATE(1119), + [sym_declaration] = STATE(1119), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1119), + [sym_expression_statement] = STATE(1119), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1119), + [sym_if_statement] = STATE(1119), + [sym_switch_statement] = STATE(1119), + [sym_for_statement] = STATE(1119), + [sym_for_in_statement] = STATE(1119), + [sym_while_statement] = STATE(1119), + [sym_do_statement] = STATE(1119), + [sym_try_statement] = STATE(1119), + [sym_with_statement] = STATE(1119), + [sym_break_statement] = STATE(1119), + [sym_continue_statement] = STATE(1119), + [sym_debugger_statement] = STATE(1119), + [sym_return_statement] = STATE(1119), + [sym_throw_statement] = STATE(1119), + [sym_empty_statement] = STATE(1119), + [sym_labeled_statement] = STATE(1119), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -18539,81 +18402,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [44] = { - [sym_export_statement] = STATE(1165), - [sym_declaration] = STATE(1165), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1165), - [sym_expression_statement] = STATE(1165), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1165), - [sym_if_statement] = STATE(1165), - [sym_switch_statement] = STATE(1165), - [sym_for_statement] = STATE(1165), - [sym_for_in_statement] = STATE(1165), - [sym_while_statement] = STATE(1165), - [sym_do_statement] = STATE(1165), - [sym_try_statement] = STATE(1165), - [sym_with_statement] = STATE(1165), - [sym_break_statement] = STATE(1165), - [sym_continue_statement] = STATE(1165), - [sym_debugger_statement] = STATE(1165), - [sym_return_statement] = STATE(1165), - [sym_throw_statement] = STATE(1165), - [sym_empty_statement] = STATE(1165), - [sym_labeled_statement] = STATE(1165), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [43] = { + [sym_export_statement] = STATE(1090), + [sym_declaration] = STATE(1090), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1090), + [sym_expression_statement] = STATE(1090), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1090), + [sym_if_statement] = STATE(1090), + [sym_switch_statement] = STATE(1090), + [sym_for_statement] = STATE(1090), + [sym_for_in_statement] = STATE(1090), + [sym_while_statement] = STATE(1090), + [sym_do_statement] = STATE(1090), + [sym_try_statement] = STATE(1090), + [sym_with_statement] = STATE(1090), + [sym_break_statement] = STATE(1090), + [sym_continue_statement] = STATE(1090), + [sym_debugger_statement] = STATE(1090), + [sym_return_statement] = STATE(1090), + [sym_throw_statement] = STATE(1090), + [sym_empty_statement] = STATE(1090), + [sym_labeled_statement] = STATE(1090), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -18685,101 +18548,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [45] = { - [sym_export_statement] = STATE(1182), - [sym_declaration] = STATE(1182), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1182), - [sym_expression_statement] = STATE(1182), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1182), - [sym_if_statement] = STATE(1182), - [sym_switch_statement] = STATE(1182), - [sym_for_statement] = STATE(1182), - [sym_for_in_statement] = STATE(1182), - [sym_while_statement] = STATE(1182), - [sym_do_statement] = STATE(1182), - [sym_try_statement] = STATE(1182), - [sym_with_statement] = STATE(1182), - [sym_break_statement] = STATE(1182), - [sym_continue_statement] = STATE(1182), - [sym_debugger_statement] = STATE(1182), - [sym_return_statement] = STATE(1182), - [sym_throw_statement] = STATE(1182), - [sym_empty_statement] = STATE(1182), - [sym_labeled_statement] = STATE(1182), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [44] = { + [sym_export_statement] = STATE(1160), + [sym_declaration] = STATE(1160), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1160), + [sym_expression_statement] = STATE(1160), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1160), + [sym_if_statement] = STATE(1160), + [sym_switch_statement] = STATE(1160), + [sym_for_statement] = STATE(1160), + [sym_for_in_statement] = STATE(1160), + [sym_while_statement] = STATE(1160), + [sym_do_statement] = STATE(1160), + [sym_try_statement] = STATE(1160), + [sym_with_statement] = STATE(1160), + [sym_break_statement] = STATE(1160), + [sym_continue_statement] = STATE(1160), + [sym_debugger_statement] = STATE(1160), + [sym_return_statement] = STATE(1160), + [sym_throw_statement] = STATE(1160), + [sym_empty_statement] = STATE(1160), + [sym_labeled_statement] = STATE(1160), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), - [sym_identifier] = ACTIONS(506), - [anon_sym_export] = ACTIONS(508), - [anon_sym_type] = ACTIONS(510), - [anon_sym_namespace] = ACTIONS(512), - [anon_sym_LBRACE] = ACTIONS(514), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), + [sym_identifier] = ACTIONS(7), + [anon_sym_export] = ACTIONS(11), + [anon_sym_type] = ACTIONS(13), + [anon_sym_namespace] = ACTIONS(15), + [anon_sym_LBRACE] = ACTIONS(17), [anon_sym_typeof] = ACTIONS(19), [anon_sym_import] = ACTIONS(21), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), [anon_sym_BANG] = ACTIONS(29), - [anon_sym_if] = ACTIONS(516), + [anon_sym_if] = ACTIONS(31), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(518), + [anon_sym_for] = ACTIONS(35), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(520), + [anon_sym_while] = ACTIONS(41), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(522), + [anon_sym_with] = ACTIONS(47), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -18790,9 +18653,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(524), - [anon_sym_async] = ACTIONS(526), - [anon_sym_function] = ACTIONS(528), + [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), @@ -18813,99 +18676,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(530), - [anon_sym_readonly] = ACTIONS(530), - [anon_sym_get] = ACTIONS(530), - [anon_sym_set] = ACTIONS(530), - [anon_sym_declare] = ACTIONS(532), - [anon_sym_public] = ACTIONS(530), - [anon_sym_private] = ACTIONS(530), - [anon_sym_protected] = ACTIONS(530), - [anon_sym_module] = ACTIONS(534), - [anon_sym_any] = ACTIONS(530), - [anon_sym_number] = ACTIONS(530), - [anon_sym_boolean] = ACTIONS(530), - [anon_sym_string] = ACTIONS(530), - [anon_sym_symbol] = ACTIONS(530), + [anon_sym_static] = ACTIONS(95), + [anon_sym_readonly] = ACTIONS(95), + [anon_sym_get] = ACTIONS(95), + [anon_sym_set] = ACTIONS(95), + [anon_sym_declare] = ACTIONS(97), + [anon_sym_public] = ACTIONS(95), + [anon_sym_private] = ACTIONS(95), + [anon_sym_protected] = ACTIONS(95), + [anon_sym_module] = ACTIONS(99), + [anon_sym_any] = ACTIONS(95), + [anon_sym_number] = ACTIONS(95), + [anon_sym_boolean] = ACTIONS(95), + [anon_sym_string] = ACTIONS(95), + [anon_sym_symbol] = ACTIONS(95), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [46] = { - [sym_export_statement] = STATE(1089), - [sym_declaration] = STATE(1089), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1089), - [sym_expression_statement] = STATE(1089), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_switch_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_for_in_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_do_statement] = STATE(1089), - [sym_try_statement] = STATE(1089), - [sym_with_statement] = STATE(1089), - [sym_break_statement] = STATE(1089), - [sym_continue_statement] = STATE(1089), - [sym_debugger_statement] = STATE(1089), - [sym_return_statement] = STATE(1089), - [sym_throw_statement] = STATE(1089), - [sym_empty_statement] = STATE(1089), - [sym_labeled_statement] = STATE(1089), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [45] = { + [sym_export_statement] = STATE(5128), + [sym_declaration] = STATE(5128), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(5128), + [sym_expression_statement] = STATE(5128), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(5128), + [sym_if_statement] = STATE(5128), + [sym_switch_statement] = STATE(5128), + [sym_for_statement] = STATE(5128), + [sym_for_in_statement] = STATE(5128), + [sym_while_statement] = STATE(5128), + [sym_do_statement] = STATE(5128), + [sym_try_statement] = STATE(5128), + [sym_with_statement] = STATE(5128), + [sym_break_statement] = STATE(5128), + [sym_continue_statement] = STATE(5128), + [sym_debugger_statement] = STATE(5128), + [sym_return_statement] = STATE(5128), + [sym_throw_statement] = STATE(5128), + [sym_empty_statement] = STATE(5128), + [sym_labeled_statement] = STATE(5128), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -18977,81 +18840,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [47] = { - [sym_export_statement] = STATE(1089), - [sym_declaration] = STATE(1089), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1089), - [sym_expression_statement] = STATE(1089), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1089), - [sym_if_statement] = STATE(1089), - [sym_switch_statement] = STATE(1089), - [sym_for_statement] = STATE(1089), - [sym_for_in_statement] = STATE(1089), - [sym_while_statement] = STATE(1089), - [sym_do_statement] = STATE(1089), - [sym_try_statement] = STATE(1089), - [sym_with_statement] = STATE(1089), - [sym_break_statement] = STATE(1089), - [sym_continue_statement] = STATE(1089), - [sym_debugger_statement] = STATE(1089), - [sym_return_statement] = STATE(1089), - [sym_throw_statement] = STATE(1089), - [sym_empty_statement] = STATE(1089), - [sym_labeled_statement] = STATE(1089), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [46] = { + [sym_export_statement] = STATE(1090), + [sym_declaration] = STATE(1090), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1090), + [sym_expression_statement] = STATE(1090), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1090), + [sym_if_statement] = STATE(1090), + [sym_switch_statement] = STATE(1090), + [sym_for_statement] = STATE(1090), + [sym_for_in_statement] = STATE(1090), + [sym_while_statement] = STATE(1090), + [sym_do_statement] = STATE(1090), + [sym_try_statement] = STATE(1090), + [sym_with_statement] = STATE(1090), + [sym_break_statement] = STATE(1090), + [sym_continue_statement] = STATE(1090), + [sym_debugger_statement] = STATE(1090), + [sym_return_statement] = STATE(1090), + [sym_throw_statement] = STATE(1090), + [sym_empty_statement] = STATE(1090), + [sym_labeled_statement] = STATE(1090), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -19123,101 +18986,101 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [48] = { - [sym_export_statement] = STATE(1128), - [sym_declaration] = STATE(1128), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1128), - [sym_expression_statement] = STATE(1128), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1128), - [sym_if_statement] = STATE(1128), - [sym_switch_statement] = STATE(1128), - [sym_for_statement] = STATE(1128), - [sym_for_in_statement] = STATE(1128), - [sym_while_statement] = STATE(1128), - [sym_do_statement] = STATE(1128), - [sym_try_statement] = STATE(1128), - [sym_with_statement] = STATE(1128), - [sym_break_statement] = STATE(1128), - [sym_continue_statement] = STATE(1128), - [sym_debugger_statement] = STATE(1128), - [sym_return_statement] = STATE(1128), - [sym_throw_statement] = STATE(1128), - [sym_empty_statement] = STATE(1128), - [sym_labeled_statement] = STATE(1128), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [47] = { + [sym_export_statement] = STATE(1119), + [sym_declaration] = STATE(1119), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1119), + [sym_expression_statement] = STATE(1119), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1119), + [sym_if_statement] = STATE(1119), + [sym_switch_statement] = STATE(1119), + [sym_for_statement] = STATE(1119), + [sym_for_in_statement] = STATE(1119), + [sym_while_statement] = STATE(1119), + [sym_do_statement] = STATE(1119), + [sym_try_statement] = STATE(1119), + [sym_with_statement] = STATE(1119), + [sym_break_statement] = STATE(1119), + [sym_continue_statement] = STATE(1119), + [sym_debugger_statement] = STATE(1119), + [sym_return_statement] = STATE(1119), + [sym_throw_statement] = STATE(1119), + [sym_empty_statement] = STATE(1119), + [sym_labeled_statement] = STATE(1119), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(514), [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(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19228,9 +19091,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(524), + [anon_sym_async] = ACTIONS(526), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -19251,119 +19114,119 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [49] = { - [sym_export_statement] = STATE(1165), - [sym_declaration] = STATE(1165), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1165), - [sym_expression_statement] = STATE(1165), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1165), - [sym_if_statement] = STATE(1165), - [sym_switch_statement] = STATE(1165), - [sym_for_statement] = STATE(1165), - [sym_for_in_statement] = STATE(1165), - [sym_while_statement] = STATE(1165), - [sym_do_statement] = STATE(1165), - [sym_try_statement] = STATE(1165), - [sym_with_statement] = STATE(1165), - [sym_break_statement] = STATE(1165), - [sym_continue_statement] = STATE(1165), - [sym_debugger_statement] = STATE(1165), - [sym_return_statement] = STATE(1165), - [sym_throw_statement] = STATE(1165), - [sym_empty_statement] = STATE(1165), - [sym_labeled_statement] = STATE(1165), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [48] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1126), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1127), + [sym_expression_statement] = STATE(1168), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1130), + [sym_if_statement] = STATE(1131), + [sym_switch_statement] = STATE(1132), + [sym_for_statement] = STATE(1135), + [sym_for_in_statement] = STATE(1136), + [sym_while_statement] = STATE(1140), + [sym_do_statement] = STATE(1071), + [sym_try_statement] = STATE(1145), + [sym_with_statement] = STATE(1146), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1148), + [sym_debugger_statement] = STATE(1150), + [sym_return_statement] = STATE(1151), + [sym_throw_statement] = STATE(1152), + [sym_empty_statement] = STATE(1153), + [sym_labeled_statement] = STATE(1155), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(514), [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(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19374,9 +19237,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(524), + [anon_sym_async] = ACTIONS(526), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -19397,99 +19260,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, - [50] = { - [sym_export_statement] = STATE(1153), - [sym_declaration] = STATE(1151), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1150), - [sym_expression_statement] = STATE(1149), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1148), - [sym_if_statement] = STATE(1147), - [sym_switch_statement] = STATE(1146), - [sym_for_statement] = STATE(1071), - [sym_for_in_statement] = STATE(1144), - [sym_while_statement] = STATE(1143), - [sym_do_statement] = STATE(1142), - [sym_try_statement] = STATE(1141), - [sym_with_statement] = STATE(1140), - [sym_break_statement] = STATE(1138), - [sym_continue_statement] = STATE(1137), - [sym_debugger_statement] = STATE(1136), - [sym_return_statement] = STATE(1134), - [sym_throw_statement] = STATE(1133), - [sym_empty_statement] = STATE(1132), - [sym_labeled_statement] = STATE(1131), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [49] = { + [sym_export_statement] = STATE(1122), + [sym_declaration] = STATE(1126), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1127), + [sym_expression_statement] = STATE(1168), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1130), + [sym_if_statement] = STATE(1131), + [sym_switch_statement] = STATE(1132), + [sym_for_statement] = STATE(1135), + [sym_for_in_statement] = STATE(1136), + [sym_while_statement] = STATE(1140), + [sym_do_statement] = STATE(1071), + [sym_try_statement] = STATE(1145), + [sym_with_statement] = STATE(1146), + [sym_break_statement] = STATE(1147), + [sym_continue_statement] = STATE(1148), + [sym_debugger_statement] = STATE(1150), + [sym_return_statement] = STATE(1151), + [sym_throw_statement] = STATE(1152), + [sym_empty_statement] = STATE(1153), + [sym_labeled_statement] = STATE(1155), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4407), [sym_identifier] = ACTIONS(7), [anon_sym_export] = ACTIONS(11), [anon_sym_type] = ACTIONS(13), @@ -19561,101 +19424,247 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, + [50] = { + [sym_export_statement] = STATE(1138), + [sym_declaration] = STATE(1138), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1138), + [sym_expression_statement] = STATE(1138), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1138), + [sym_if_statement] = STATE(1138), + [sym_switch_statement] = STATE(1138), + [sym_for_statement] = STATE(1138), + [sym_for_in_statement] = STATE(1138), + [sym_while_statement] = STATE(1138), + [sym_do_statement] = STATE(1138), + [sym_try_statement] = STATE(1138), + [sym_with_statement] = STATE(1138), + [sym_break_statement] = STATE(1138), + [sym_continue_statement] = STATE(1138), + [sym_debugger_statement] = STATE(1138), + [sym_return_statement] = STATE(1138), + [sym_throw_statement] = STATE(1138), + [sym_empty_statement] = STATE(1138), + [sym_labeled_statement] = STATE(1138), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(514), + [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(516), + [anon_sym_switch] = ACTIONS(33), + [anon_sym_for] = ACTIONS(518), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_while] = ACTIONS(520), + [anon_sym_do] = ACTIONS(43), + [anon_sym_try] = ACTIONS(45), + [anon_sym_with] = ACTIONS(522), + [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(524), + [anon_sym_async] = ACTIONS(526), + [anon_sym_function] = ACTIONS(528), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), + [anon_sym_abstract] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(103), + [anon_sym_enum] = ACTIONS(105), + }, [51] = { - [sym_export_statement] = STATE(1129), - [sym_declaration] = STATE(1129), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(1129), - [sym_expression_statement] = STATE(1129), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(1129), - [sym_if_statement] = STATE(1129), - [sym_switch_statement] = STATE(1129), - [sym_for_statement] = STATE(1129), - [sym_for_in_statement] = STATE(1129), - [sym_while_statement] = STATE(1129), - [sym_do_statement] = STATE(1129), - [sym_try_statement] = STATE(1129), - [sym_with_statement] = STATE(1129), - [sym_break_statement] = STATE(1129), - [sym_continue_statement] = STATE(1129), - [sym_debugger_statement] = STATE(1129), - [sym_return_statement] = STATE(1129), - [sym_throw_statement] = STATE(1129), - [sym_empty_statement] = STATE(1129), - [sym_labeled_statement] = STATE(1129), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(1118), + [sym_declaration] = STATE(1116), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1111), + [sym_expression_statement] = STATE(1189), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1110), + [sym_if_statement] = STATE(1107), + [sym_switch_statement] = STATE(1095), + [sym_for_statement] = STATE(1094), + [sym_for_in_statement] = STATE(1093), + [sym_while_statement] = STATE(1091), + [sym_do_statement] = STATE(1089), + [sym_try_statement] = STATE(1088), + [sym_with_statement] = STATE(1078), + [sym_break_statement] = STATE(1154), + [sym_continue_statement] = STATE(1162), + [sym_debugger_statement] = STATE(1191), + [sym_return_statement] = STATE(1206), + [sym_throw_statement] = STATE(1213), + [sym_empty_statement] = STATE(1212), + [sym_labeled_statement] = STATE(1199), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4389), - [sym_identifier] = ACTIONS(7), - [anon_sym_export] = ACTIONS(11), - [anon_sym_type] = ACTIONS(13), - [anon_sym_namespace] = ACTIONS(15), - [anon_sym_LBRACE] = ACTIONS(17), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), + [sym_identifier] = ACTIONS(506), + [anon_sym_export] = ACTIONS(508), + [anon_sym_type] = ACTIONS(510), + [anon_sym_namespace] = ACTIONS(512), + [anon_sym_LBRACE] = ACTIONS(514), [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(516), [anon_sym_switch] = ACTIONS(33), - [anon_sym_for] = ACTIONS(35), + [anon_sym_for] = ACTIONS(518), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_while] = ACTIONS(41), + [anon_sym_while] = ACTIONS(520), [anon_sym_do] = ACTIONS(43), [anon_sym_try] = ACTIONS(45), - [anon_sym_with] = ACTIONS(47), + [anon_sym_with] = ACTIONS(522), [anon_sym_break] = ACTIONS(49), [anon_sym_continue] = ACTIONS(51), [anon_sym_debugger] = ACTIONS(53), @@ -19666,9 +19675,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(524), + [anon_sym_async] = ACTIONS(526), + [anon_sym_function] = ACTIONS(528), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -19689,99 +19698,99 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(95), - [anon_sym_readonly] = ACTIONS(95), - [anon_sym_get] = ACTIONS(95), - [anon_sym_set] = ACTIONS(95), - [anon_sym_declare] = ACTIONS(97), - [anon_sym_public] = ACTIONS(95), - [anon_sym_private] = ACTIONS(95), - [anon_sym_protected] = ACTIONS(95), - [anon_sym_module] = ACTIONS(99), - [anon_sym_any] = ACTIONS(95), - [anon_sym_number] = ACTIONS(95), - [anon_sym_boolean] = ACTIONS(95), - [anon_sym_string] = ACTIONS(95), - [anon_sym_symbol] = ACTIONS(95), + [anon_sym_static] = ACTIONS(530), + [anon_sym_readonly] = ACTIONS(530), + [anon_sym_get] = ACTIONS(530), + [anon_sym_set] = ACTIONS(530), + [anon_sym_declare] = ACTIONS(532), + [anon_sym_public] = ACTIONS(530), + [anon_sym_private] = ACTIONS(530), + [anon_sym_protected] = ACTIONS(530), + [anon_sym_module] = ACTIONS(534), + [anon_sym_any] = ACTIONS(530), + [anon_sym_number] = ACTIONS(530), + [anon_sym_boolean] = ACTIONS(530), + [anon_sym_string] = ACTIONS(530), + [anon_sym_symbol] = ACTIONS(530), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [52] = { - [sym_export_statement] = STATE(5739), - [sym_declaration] = STATE(5739), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(5739), - [sym_expression_statement] = STATE(5739), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(5739), - [sym_if_statement] = STATE(5739), - [sym_switch_statement] = STATE(5739), - [sym_for_statement] = STATE(5739), - [sym_for_in_statement] = STATE(5739), - [sym_while_statement] = STATE(5739), - [sym_do_statement] = STATE(5739), - [sym_try_statement] = STATE(5739), - [sym_with_statement] = STATE(5739), - [sym_break_statement] = STATE(5739), - [sym_continue_statement] = STATE(5739), - [sym_debugger_statement] = STATE(5739), - [sym_return_statement] = STATE(5739), - [sym_throw_statement] = STATE(5739), - [sym_empty_statement] = STATE(5739), - [sym_labeled_statement] = STATE(5739), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(5749), + [sym_declaration] = STATE(5749), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(5749), + [sym_expression_statement] = STATE(5749), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(5749), + [sym_if_statement] = STATE(5749), + [sym_switch_statement] = STATE(5749), + [sym_for_statement] = STATE(5749), + [sym_for_in_statement] = STATE(5749), + [sym_while_statement] = STATE(5749), + [sym_do_statement] = STATE(5749), + [sym_try_statement] = STATE(5749), + [sym_with_statement] = STATE(5749), + [sym_break_statement] = STATE(5749), + [sym_continue_statement] = STATE(5749), + [sym_debugger_statement] = STATE(5749), + [sym_return_statement] = STATE(5749), + [sym_throw_statement] = STATE(5749), + [sym_empty_statement] = STATE(5749), + [sym_labeled_statement] = STATE(5749), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -19854,80 +19863,80 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [53] = { - [sym_export_statement] = STATE(4938), - [sym_declaration] = STATE(4938), - [sym_import] = STATE(2576), - [sym_import_statement] = STATE(4938), - [sym_expression_statement] = STATE(4938), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_statement_block] = STATE(4938), - [sym_if_statement] = STATE(4938), - [sym_switch_statement] = STATE(4938), - [sym_for_statement] = STATE(4938), - [sym_for_in_statement] = STATE(4938), - [sym_while_statement] = STATE(4938), - [sym_do_statement] = STATE(4938), - [sym_try_statement] = STATE(4938), - [sym_with_statement] = STATE(4938), - [sym_break_statement] = STATE(4938), - [sym_continue_statement] = STATE(4938), - [sym_debugger_statement] = STATE(4938), - [sym_return_statement] = STATE(4938), - [sym_throw_statement] = STATE(4938), - [sym_empty_statement] = STATE(4938), - [sym_labeled_statement] = STATE(4938), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_statement] = STATE(1144), + [sym_declaration] = STATE(1144), + [sym_import] = STATE(2403), + [sym_import_statement] = STATE(1144), + [sym_expression_statement] = STATE(1144), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_statement_block] = STATE(1144), + [sym_if_statement] = STATE(1144), + [sym_switch_statement] = STATE(1144), + [sym_for_statement] = STATE(1144), + [sym_for_in_statement] = STATE(1144), + [sym_while_statement] = STATE(1144), + [sym_do_statement] = STATE(1144), + [sym_try_statement] = STATE(1144), + [sym_with_statement] = STATE(1144), + [sym_break_statement] = STATE(1144), + [sym_continue_statement] = STATE(1144), + [sym_debugger_statement] = STATE(1144), + [sym_return_statement] = STATE(1144), + [sym_throw_statement] = STATE(1144), + [sym_empty_statement] = STATE(1144), + [sym_labeled_statement] = STATE(1144), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4363), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4369), [sym_identifier] = ACTIONS(506), [anon_sym_export] = ACTIONS(508), [anon_sym_type] = ACTIONS(510), @@ -20000,81 +20009,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(105), }, [54] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2777), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5053), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5054), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -20138,81 +20147,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [55] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2893), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4966), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2851), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5059), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5029), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5063), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -20276,81 +20285,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [56] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -20414,81 +20423,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [57] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2777), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5053), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5054), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -20552,81 +20561,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [58] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2893), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4966), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5029), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -20690,81 +20699,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [59] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -20828,81 +20837,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [60] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -20966,81 +20975,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [61] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -21104,81 +21113,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [62] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -21242,81 +21251,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [63] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -21380,81 +21389,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [64] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -21518,81 +21527,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [65] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -21656,81 +21665,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [66] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2764), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5077), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5074), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -21794,81 +21803,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [67] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2851), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5059), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5063), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -21932,81 +21941,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [68] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -22070,81 +22079,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [69] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2764), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5077), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5074), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -22208,81 +22217,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [70] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5100), - [sym_optional_tuple_parameter] = STATE(5100), - [sym_optional_type] = STATE(5100), - [sym_rest_type] = STATE(5100), - [sym__tuple_type_member] = STATE(5100), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5102), + [sym_optional_tuple_parameter] = STATE(5102), + [sym_optional_type] = STATE(5102), + [sym_rest_type] = STATE(5102), + [sym__tuple_type_member] = STATE(5102), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -22346,81 +22355,81 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [71] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3550), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3549), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4724), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5192), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4720), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5272), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(536), [anon_sym_export] = ACTIONS(538), [anon_sym_STAR] = ACTIONS(540), @@ -22484,78 +22493,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [72] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2724), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5696), - [sym_string] = STATE(3253), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5648), + [sym_string] = STATE(3293), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4695), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4902), - [sym_constructor_type] = STATE(4902), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4902), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5402), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4902), - [sym_union_type] = STATE(4902), - [sym_intersection_type] = STATE(4902), - [sym_function_type] = STATE(4902), - [aux_sym_export_statement_repeat1] = STATE(3721), + [sym_formal_parameters] = STATE(4635), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4835), + [sym_constructor_type] = STATE(4835), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4835), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5178), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4835), + [sym_union_type] = STATE(4835), + [sym_intersection_type] = STATE(4835), + [sym_function_type] = STATE(4835), + [aux_sym_export_statement_repeat1] = STATE(3712), [sym_identifier] = ACTIONS(652), [anon_sym_export] = ACTIONS(654), [anon_sym_STAR] = ACTIONS(540), @@ -22618,78 +22627,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [73] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5766), - [sym_string] = STATE(3253), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5750), + [sym_string] = STATE(3293), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4695), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4753), - [sym_constructor_type] = STATE(4753), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4753), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5402), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4753), - [sym_union_type] = STATE(4753), - [sym_intersection_type] = STATE(4753), - [sym_function_type] = STATE(4753), - [aux_sym_export_statement_repeat1] = STATE(3721), + [sym_formal_parameters] = STATE(4635), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4835), + [sym_constructor_type] = STATE(4835), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4835), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5178), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4835), + [sym_union_type] = STATE(4835), + [sym_intersection_type] = STATE(4835), + [sym_function_type] = STATE(4835), + [aux_sym_export_statement_repeat1] = STATE(3712), [sym_identifier] = ACTIONS(652), [anon_sym_export] = ACTIONS(654), [anon_sym_STAR] = ACTIONS(540), @@ -22752,78 +22761,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [74] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5766), - [sym_string] = STATE(3253), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2706), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5586), + [sym_string] = STATE(3293), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4695), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4902), - [sym_constructor_type] = STATE(4902), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4902), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5402), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4902), - [sym_union_type] = STATE(4902), - [sym_intersection_type] = STATE(4902), - [sym_function_type] = STATE(4902), - [aux_sym_export_statement_repeat1] = STATE(3721), + [sym_formal_parameters] = STATE(4635), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4835), + [sym_constructor_type] = STATE(4835), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4835), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5178), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4835), + [sym_union_type] = STATE(4835), + [sym_intersection_type] = STATE(4835), + [sym_function_type] = STATE(4835), + [aux_sym_export_statement_repeat1] = STATE(3712), [sym_identifier] = ACTIONS(652), [anon_sym_export] = ACTIONS(654), [anon_sym_STAR] = ACTIONS(540), @@ -22886,78 +22895,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [75] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2685), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5756), - [sym_string] = STATE(3253), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5558), + [sym_string] = STATE(3293), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4695), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4902), - [sym_constructor_type] = STATE(4902), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4902), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5402), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4902), - [sym_union_type] = STATE(4902), - [sym_intersection_type] = STATE(4902), - [sym_function_type] = STATE(4902), - [aux_sym_export_statement_repeat1] = STATE(3721), + [sym_formal_parameters] = STATE(4635), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4835), + [sym_constructor_type] = STATE(4835), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4835), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5178), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4835), + [sym_union_type] = STATE(4835), + [sym_intersection_type] = STATE(4835), + [sym_function_type] = STATE(4835), + [aux_sym_export_statement_repeat1] = STATE(3712), [sym_identifier] = ACTIONS(652), [anon_sym_export] = ACTIONS(654), [anon_sym_STAR] = ACTIONS(540), @@ -23020,78 +23029,78 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [76] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5740), - [sym_string] = STATE(3253), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5558), + [sym_string] = STATE(3293), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4695), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4902), - [sym_constructor_type] = STATE(4902), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4902), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5402), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4902), - [sym_union_type] = STATE(4902), - [sym_intersection_type] = STATE(4902), - [sym_function_type] = STATE(4902), - [aux_sym_export_statement_repeat1] = STATE(3721), + [sym_formal_parameters] = STATE(4635), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4763), + [sym_constructor_type] = STATE(4763), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4763), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5178), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4763), + [sym_union_type] = STATE(4763), + [sym_intersection_type] = STATE(4763), + [sym_function_type] = STATE(4763), + [aux_sym_export_statement_repeat1] = STATE(3712), [sym_identifier] = ACTIONS(652), [anon_sym_export] = ACTIONS(654), [anon_sym_STAR] = ACTIONS(540), @@ -23154,72 +23163,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [77] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5114), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5114), - [sym_nested_identifier] = STATE(5804), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5114), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2817), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3187), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5109), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5109), + [sym_nested_identifier] = STATE(5671), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5109), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2918), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4613), - [sym_pattern] = STATE(5433), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3890), - [sym__type] = STATE(4049), - [sym_constructor_type] = STATE(4049), - [sym__primary_type] = STATE(3954), - [sym_infer_type] = STATE(4049), - [sym_conditional_type] = STATE(3945), - [sym_generic_type] = STATE(3945), - [sym_type_query] = STATE(3945), - [sym_index_type_query] = STATE(3945), - [sym_lookup_type] = STATE(3945), - [sym_literal_type] = STATE(3945), - [sym__number] = STATE(3963), - [sym_existential_type] = STATE(3945), - [sym_flow_maybe_type] = STATE(3945), - [sym_parenthesized_type] = STATE(3945), - [sym_predefined_type] = STATE(3945), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3945), - [sym_type_parameters] = STATE(5318), - [sym_array_type] = STATE(3945), - [sym_tuple_type] = STATE(3945), - [sym_readonly_type] = STATE(4049), - [sym_union_type] = STATE(4049), - [sym_intersection_type] = STATE(4049), - [sym_function_type] = STATE(4049), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4492), + [sym_pattern] = STATE(5436), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3885), + [sym__type] = STATE(4028), + [sym_constructor_type] = STATE(4028), + [sym__primary_type] = STATE(3959), + [sym_infer_type] = STATE(4028), + [sym_conditional_type] = STATE(3956), + [sym_generic_type] = STATE(3956), + [sym_type_query] = STATE(3956), + [sym_index_type_query] = STATE(3956), + [sym_lookup_type] = STATE(3956), + [sym_literal_type] = STATE(3956), + [sym__number] = STATE(3960), + [sym_existential_type] = STATE(3956), + [sym_flow_maybe_type] = STATE(3956), + [sym_parenthesized_type] = STATE(3956), + [sym_predefined_type] = STATE(3956), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3956), + [sym_type_parameters] = STATE(5330), + [sym_array_type] = STATE(3956), + [sym_tuple_type] = STATE(3956), + [sym_readonly_type] = STATE(4028), + [sym_union_type] = STATE(4028), + [sym_intersection_type] = STATE(4028), + [sym_function_type] = STATE(4028), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(694), [anon_sym_export] = ACTIONS(696), [anon_sym_STAR] = ACTIONS(698), @@ -23281,70 +23290,70 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE_PIPE] = ACTIONS(738), }, [78] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(3289), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2799), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2317), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(600), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4796), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(853), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(740), [anon_sym_export] = ACTIONS(742), [anon_sym_STAR] = ACTIONS(540), @@ -23352,42 +23361,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(744), [anon_sym_LBRACE] = ACTIONS(746), [anon_sym_typeof] = ACTIONS(748), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(754), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(760), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(756), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(770), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(778), - [anon_sym_DASH] = ACTIONS(778), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(780), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(762), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(770), + [anon_sym_DASH] = ACTIONS(770), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(772), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(786), - [sym_this] = ACTIONS(788), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(790), - [sym_false] = ACTIONS(790), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(778), + [sym_this] = ACTIONS(780), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(782), + [sym_false] = ACTIONS(782), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(786), [anon_sym_get] = ACTIONS(742), [anon_sym_set] = ACTIONS(742), [anon_sym_declare] = ACTIONS(742), @@ -23395,353 +23404,477 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(742), [anon_sym_protected] = ACTIONS(742), [anon_sym_module] = ACTIONS(742), - [anon_sym_any] = ACTIONS(796), - [anon_sym_number] = ACTIONS(796), - [anon_sym_boolean] = ACTIONS(796), - [anon_sym_string] = ACTIONS(796), - [anon_sym_symbol] = ACTIONS(796), + [anon_sym_any] = ACTIONS(788), + [anon_sym_number] = ACTIONS(788), + [anon_sym_boolean] = ACTIONS(788), + [anon_sym_string] = ACTIONS(788), + [anon_sym_symbol] = ACTIONS(788), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [79] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2788), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3029), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(3400), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(852), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(800), - [anon_sym_export] = ACTIONS(802), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(552), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(792), + [anon_sym_export] = ACTIONS(794), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(806), - [anon_sym_typeof] = ACTIONS(808), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(820), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(798), + [anon_sym_typeof] = ACTIONS(800), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(812), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(830), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(832), - [anon_sym_DASH] = ACTIONS(832), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(834), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(846), - [sym_this] = ACTIONS(848), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(852), - [sym_false] = ACTIONS(852), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(820), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(822), + [anon_sym_DASH] = ACTIONS(822), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(824), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(830), + [sym_this] = ACTIONS(832), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(834), + [sym_false] = ACTIONS(834), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(856), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(858), - [anon_sym_number] = ACTIONS(858), - [anon_sym_boolean] = ACTIONS(858), - [anon_sym_string] = ACTIONS(858), - [anon_sym_symbol] = ACTIONS(858), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(838), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(840), + [anon_sym_number] = ACTIONS(840), + [anon_sym_boolean] = ACTIONS(840), + [anon_sym_string] = ACTIONS(840), + [anon_sym_symbol] = ACTIONS(840), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [80] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2245), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2493), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2317), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(704), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(860), - [anon_sym_export] = ACTIONS(862), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(744), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(842), + [anon_sym_export] = ACTIONS(844), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(866), - [anon_sym_typeof] = ACTIONS(868), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(754), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(876), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_typeof] = ACTIONS(848), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(756), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(880), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(882), - [anon_sym_DASH] = ACTIONS(882), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(884), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(858), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(860), + [anon_sym_DASH] = ACTIONS(860), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(862), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(778), + [sym_this] = ACTIONS(780), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(782), + [sym_false] = ACTIONS(782), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(870), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(872), + [anon_sym_number] = ACTIONS(872), + [anon_sym_boolean] = ACTIONS(872), + [anon_sym_string] = ACTIONS(872), + [anon_sym_symbol] = ACTIONS(872), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), + }, + [81] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2612), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(3163), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(578), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(874), + [anon_sym_export] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(880), + [anon_sym_typeof] = ACTIONS(882), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(884), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(888), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(890), + [anon_sym_DASH] = ACTIONS(890), + [anon_sym_TILDE] = ACTIONS(29), + [anon_sym_void] = ACTIONS(892), + [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(890), - [sym_this] = ACTIONS(892), + [sym_number] = ACTIONS(894), + [sym_this] = ACTIONS(896), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), + [sym_true] = ACTIONS(898), + [sym_false] = ACTIONS(898), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(898), - [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(900), - [anon_sym_number] = ACTIONS(900), - [anon_sym_boolean] = ACTIONS(900), - [anon_sym_string] = ACTIONS(900), - [anon_sym_symbol] = ACTIONS(900), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(900), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(902), + [anon_sym_number] = ACTIONS(902), + [anon_sym_boolean] = ACTIONS(902), + [anon_sym_string] = ACTIONS(902), + [anon_sym_symbol] = ACTIONS(902), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [81] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2194), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2277), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [82] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2723), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2317), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(631), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(902), - [anon_sym_export] = ACTIONS(904), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(760), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(904), + [anon_sym_export] = ACTIONS(906), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_typeof] = ACTIONS(910), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(910), + [anon_sym_typeof] = ACTIONS(912), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), + [anon_sym_BANG] = ACTIONS(914), [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(920), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(924), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), [anon_sym_PLUS] = ACTIONS(926), [anon_sym_DASH] = ACTIONS(926), - [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_TILDE] = ACTIONS(914), [anon_sym_void] = ACTIONS(928), [anon_sym_delete] = ACTIONS(930), [anon_sym_PLUS_PLUS] = ACTIONS(932), @@ -23750,469 +23883,469 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(934), - [sym_this] = ACTIONS(936), + [sym_number] = ACTIONS(778), + [sym_this] = ACTIONS(780), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), + [sym_true] = ACTIONS(782), + [sym_false] = ACTIONS(782), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(942), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(944), - [anon_sym_number] = ACTIONS(944), - [anon_sym_boolean] = ACTIONS(944), - [anon_sym_string] = ACTIONS(944), - [anon_sym_symbol] = ACTIONS(944), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(936), + [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(938), + [anon_sym_number] = ACTIONS(938), + [anon_sym_boolean] = ACTIONS(938), + [anon_sym_string] = ACTIONS(938), + [anon_sym_symbol] = ACTIONS(938), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [82] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3085), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2749), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [83] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2881), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2390), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(876), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(946), - [anon_sym_export] = ACTIONS(948), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(673), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(940), + [anon_sym_export] = ACTIONS(942), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(952), - [anon_sym_typeof] = ACTIONS(954), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_typeof] = ACTIONS(948), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), + [anon_sym_BANG] = ACTIONS(950), [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(956), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(966), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(968), - [anon_sym_DASH] = ACTIONS(968), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(970), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(962), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(964), + [anon_sym_DASH] = ACTIONS(964), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(966), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(976), - [sym_this] = ACTIONS(978), + [sym_number] = ACTIONS(972), + [sym_this] = ACTIONS(974), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(984), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(986), - [anon_sym_number] = ACTIONS(986), - [anon_sym_boolean] = ACTIONS(986), - [anon_sym_string] = ACTIONS(986), - [anon_sym_symbol] = ACTIONS(986), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(980), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [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_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [83] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3023), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), + [84] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(3330), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2805), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(565), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(988), - [anon_sym_export] = ACTIONS(990), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(626), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(984), + [anon_sym_export] = ACTIONS(986), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(994), - [anon_sym_typeof] = ACTIONS(996), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(754), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [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_yield] = ACTIONS(1002), [anon_sym_LBRACK] = ACTIONS(1004), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1008), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1010), - [anon_sym_DASH] = ACTIONS(1010), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1012), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1018), - [sym_this] = ACTIONS(1020), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1022), - [sym_false] = ACTIONS(1022), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1014), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1016), + [anon_sym_DASH] = ACTIONS(1016), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1018), + [anon_sym_delete] = ACTIONS(1020), + [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(1034), + [sym_true] = ACTIONS(1036), + [sym_false] = ACTIONS(1036), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(1026), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(1028), - [anon_sym_number] = ACTIONS(1028), - [anon_sym_boolean] = ACTIONS(1028), - [anon_sym_string] = ACTIONS(1028), - [anon_sym_symbol] = ACTIONS(1028), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(1040), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(1042), + [anon_sym_number] = ACTIONS(1042), + [anon_sym_boolean] = ACTIONS(1042), + [anon_sym_string] = ACTIONS(1042), + [anon_sym_symbol] = ACTIONS(1042), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [84] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2493), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [85] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2324), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(538), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1030), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1036), - [anon_sym_typeof] = ACTIONS(1038), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(754), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1050), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1052), - [anon_sym_DASH] = ACTIONS(1052), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1054), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_STAR] = ACTIONS(1046), + [anon_sym_type] = ACTIONS(844), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(864), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1054), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_await] = ACTIONS(852), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(570), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [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(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(890), - [sym_this] = ACTIONS(892), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(894), - [sym_false] = ACTIONS(894), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1062), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1064), - [anon_sym_number] = ACTIONS(1064), - [anon_sym_boolean] = ACTIONS(1064), - [anon_sym_string] = ACTIONS(1064), - [anon_sym_symbol] = ACTIONS(1064), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), + [anon_sym_extends] = ACTIONS(1048), }, - [85] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2642), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(3132), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [86] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2446), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(652), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4796), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(563), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4781), [sym_identifier] = ACTIONS(1066), [anon_sym_export] = ACTIONS(1068), [anon_sym_STAR] = ACTIONS(540), @@ -24220,42 +24353,42 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_namespace] = ACTIONS(1070), [anon_sym_LBRACE] = ACTIONS(1072), [anon_sym_typeof] = ACTIONS(1074), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(754), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(1076), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1082), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1080), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1082), - [anon_sym_DASH] = ACTIONS(1082), - [anon_sym_TILDE] = ACTIONS(29), - [anon_sym_void] = ACTIONS(1084), - [anon_sym_delete] = ACTIONS(19), - [anon_sym_PLUS_PLUS] = ACTIONS(79), - [anon_sym_DASH_DASH] = ACTIONS(79), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1088), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1090), + [anon_sym_DASH] = ACTIONS(1090), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1092), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(1086), - [sym_this] = ACTIONS(1088), + [sym_number] = ACTIONS(1098), + [sym_this] = ACTIONS(1100), [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(1090), - [sym_false] = ACTIONS(1090), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1092), + [anon_sym_readonly] = ACTIONS(1106), [anon_sym_get] = ACTIONS(1068), [anon_sym_set] = ACTIONS(1068), [anon_sym_declare] = ACTIONS(1068), @@ -24263,476 +24396,724 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_private] = ACTIONS(1068), [anon_sym_protected] = ACTIONS(1068), [anon_sym_module] = ACTIONS(1068), - [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_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_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [86] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2736), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2277), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [87] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3327), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3305), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(628), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1096), - [anon_sym_export] = ACTIONS(1098), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(724), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1110), + [anon_sym_export] = ACTIONS(1112), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1102), - [anon_sym_typeof] = ACTIONS(1104), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1116), + [anon_sym_typeof] = ACTIONS(1118), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1112), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1126), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1116), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1118), - [anon_sym_DASH] = ACTIONS(1118), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1120), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1130), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1132), + [anon_sym_DASH] = ACTIONS(1132), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1134), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(934), - [sym_this] = ACTIONS(936), + [sym_number] = ACTIONS(1140), + [sym_this] = ACTIONS(1142), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), + [sym_true] = ACTIONS(1144), + [sym_false] = ACTIONS(1144), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1128), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1130), - [anon_sym_number] = ACTIONS(1130), - [anon_sym_boolean] = ACTIONS(1130), - [anon_sym_string] = ACTIONS(1130), - [anon_sym_symbol] = ACTIONS(1130), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = ACTIONS(1148), + [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(1150), + [anon_sym_number] = ACTIONS(1150), + [anon_sym_boolean] = ACTIONS(1150), + [anon_sym_string] = ACTIONS(1150), + [anon_sym_symbol] = ACTIONS(1150), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [87] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2277), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [88] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3451), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(576), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1152), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1158), + [anon_sym_typeof] = ACTIONS(1160), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1172), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1182), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1184), + [anon_sym_DASH] = ACTIONS(1184), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1186), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1198), + [sym_this] = ACTIONS(1200), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1204), + [sym_false] = ACTIONS(1204), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1208), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1210), + [anon_sym_number] = ACTIONS(1210), + [anon_sym_boolean] = ACTIONS(1210), + [anon_sym_string] = ACTIONS(1210), + [anon_sym_symbol] = ACTIONS(1210), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), + }, + [89] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2798), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(611), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1212), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1218), + [anon_sym_typeof] = ACTIONS(1220), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1228), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1232), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1234), + [anon_sym_DASH] = ACTIONS(1234), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1236), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1242), + [sym_this] = ACTIONS(1244), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1246), + [sym_false] = ACTIONS(1246), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = ACTIONS(1250), + [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(1252), + [anon_sym_number] = ACTIONS(1252), + [anon_sym_boolean] = ACTIONS(1252), + [anon_sym_string] = ACTIONS(1252), + [anon_sym_symbol] = ACTIONS(1252), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), + }, + [90] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2317), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(539), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1132), - [anon_sym_export] = ACTIONS(1134), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(875), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1254), + [anon_sym_export] = ACTIONS(1256), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_typeof] = ACTIONS(1138), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(746), + [anon_sym_typeof] = ACTIONS(1260), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), + [anon_sym_BANG] = ACTIONS(1262), [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(756), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1150), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1152), - [anon_sym_DASH] = ACTIONS(1152), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1154), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1272), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1274), + [anon_sym_DASH] = ACTIONS(1274), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1276), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(934), - [sym_this] = ACTIONS(936), + [sym_number] = ACTIONS(778), + [sym_this] = ACTIONS(780), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), + [sym_true] = ACTIONS(782), + [sym_false] = ACTIONS(782), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1162), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1164), - [anon_sym_number] = ACTIONS(1164), - [anon_sym_boolean] = ACTIONS(1164), - [anon_sym_string] = ACTIONS(1164), - [anon_sym_symbol] = ACTIONS(1164), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1284), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1286), + [anon_sym_number] = ACTIONS(1286), + [anon_sym_boolean] = ACTIONS(1286), + [anon_sym_string] = ACTIONS(1286), + [anon_sym_symbol] = ACTIONS(1286), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [88] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3249), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2749), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [91] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3212), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2755), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(726), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1166), - [anon_sym_export] = ACTIONS(1168), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(912), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1288), + [anon_sym_export] = ACTIONS(1290), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_typeof] = ACTIONS(1174), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(1296), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), + [anon_sym_BANG] = ACTIONS(1298), [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(962), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1304), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1184), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1186), - [anon_sym_DASH] = ACTIONS(1186), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1188), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1308), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1310), + [anon_sym_DASH] = ACTIONS(1310), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1312), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(976), - [sym_this] = ACTIONS(978), + [sym_number] = ACTIONS(1318), + [sym_this] = ACTIONS(1320), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1196), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [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_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1326), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1328), + [anon_sym_number] = ACTIONS(1328), + [anon_sym_boolean] = ACTIONS(1328), + [anon_sym_string] = ACTIONS(1328), + [anon_sym_symbol] = ACTIONS(1328), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [89] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2552), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2540), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [92] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4766), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4766), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4766), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3534), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1200), - [anon_sym_export] = ACTIONS(1202), + [sym_formal_parameters] = STATE(4436), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4723), + [sym_constructor_type] = STATE(4723), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4723), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5409), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4723), + [sym_union_type] = STATE(4723), + [sym_intersection_type] = STATE(4723), + [sym_function_type] = STATE(4723), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1330), + [anon_sym_export] = ACTIONS(1332), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_typeof] = ACTIONS(1208), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1336), + [anon_sym_typeof] = ACTIONS(1338), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), [anon_sym_LPAREN] = ACTIONS(554), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_LBRACK] = ACTIONS(1340), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1214), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1216), - [anon_sym_DASH] = ACTIONS(1216), + [anon_sym_new] = ACTIONS(1344), + [anon_sym_QMARK] = ACTIONS(1346), + [anon_sym_AMP] = ACTIONS(1348), + [anon_sym_PIPE] = ACTIONS(1350), + [anon_sym_PLUS] = ACTIONS(1352), + [anon_sym_DASH] = ACTIONS(1352), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(584), [anon_sym_delete] = ACTIONS(586), @@ -24742,369 +25123,121 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1218), - [sym_this] = ACTIONS(1220), + [sym_number] = ACTIONS(1354), + [sym_this] = ACTIONS(1356), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), + [sym_true] = ACTIONS(1358), + [sym_false] = ACTIONS(1358), [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1224), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1226), - [anon_sym_number] = ACTIONS(1226), - [anon_sym_boolean] = ACTIONS(1226), - [anon_sym_string] = ACTIONS(1226), - [anon_sym_symbol] = ACTIONS(1226), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1360), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1362), + [anon_sym_number] = ACTIONS(1362), + [anon_sym_boolean] = ACTIONS(1362), + [anon_sym_string] = ACTIONS(1362), + [anon_sym_symbol] = ACTIONS(1362), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(1364), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [90] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2749), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(792), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1228), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1172), - [anon_sym_typeof] = ACTIONS(1234), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(962), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1244), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1246), - [anon_sym_DASH] = ACTIONS(1246), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1248), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(976), - [sym_this] = ACTIONS(978), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(980), - [sym_false] = ACTIONS(980), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = ACTIONS(1256), - [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(1258), - [anon_sym_number] = ACTIONS(1258), - [anon_sym_boolean] = ACTIONS(1258), - [anon_sym_string] = ACTIONS(1258), - [anon_sym_symbol] = ACTIONS(1258), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, - [91] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2265), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_STAR] = ACTIONS(1262), - [anon_sym_type] = ACTIONS(862), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1270), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [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(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [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(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_extends] = ACTIONS(1264), - [anon_sym_PIPE_RBRACE] = ACTIONS(1268), - [sym__automatic_semicolon] = ACTIONS(1268), - }, - [92] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4761), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4761), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4761), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3536), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [93] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2390), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4426), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4482), - [sym_constructor_type] = STATE(4482), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4482), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(496), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5194), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4482), - [sym_union_type] = STATE(4482), - [sym_intersection_type] = STATE(4482), - [sym_function_type] = STATE(4482), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1276), - [anon_sym_export] = ACTIONS(1202), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(874), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1366), + [anon_sym_export] = ACTIONS(1332), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1278), - [anon_sym_typeof] = ACTIONS(1280), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(946), + [anon_sym_typeof] = ACTIONS(1368), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), [anon_sym_LPAREN] = ACTIONS(554), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1282), + [anon_sym_LBRACK] = ACTIONS(956), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1284), - [anon_sym_QMARK] = ACTIONS(1286), - [anon_sym_AMP] = ACTIONS(1288), - [anon_sym_PIPE] = ACTIONS(1290), - [anon_sym_PLUS] = ACTIONS(1292), - [anon_sym_DASH] = ACTIONS(1292), + [anon_sym_new] = ACTIONS(1370), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1372), + [anon_sym_DASH] = ACTIONS(1372), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(584), [anon_sym_delete] = ACTIONS(586), @@ -25114,1361 +25247,1114 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1294), - [sym_this] = ACTIONS(1296), + [sym_number] = ACTIONS(972), + [sym_this] = ACTIONS(974), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(1298), - [sym_false] = ACTIONS(1298), + [sym_true] = ACTIONS(976), + [sym_false] = ACTIONS(976), [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1300), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1302), - [anon_sym_number] = ACTIONS(1302), - [anon_sym_boolean] = ACTIONS(1302), - [anon_sym_string] = ACTIONS(1302), - [anon_sym_symbol] = ACTIONS(1302), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1374), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1376), + [anon_sym_number] = ACTIONS(1376), + [anon_sym_boolean] = ACTIONS(1376), + [anon_sym_string] = ACTIONS(1376), + [anon_sym_symbol] = ACTIONS(1376), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(1304), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [93] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2300), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [94] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3157), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2755), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_STAR] = ACTIONS(1308), - [anon_sym_type] = ACTIONS(904), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(791), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1378), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1384), + [anon_sym_typeof] = ACTIONS(1386), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1312), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_await] = ACTIONS(914), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(554), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1304), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1396), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1398), + [anon_sym_DASH] = ACTIONS(1398), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1400), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), + [sym_number] = ACTIONS(1318), + [sym_this] = ACTIONS(1320), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - [anon_sym_extends] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1408), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1410), + [anon_sym_number] = ACTIONS(1410), + [anon_sym_boolean] = ACTIONS(1410), + [anon_sym_string] = ACTIONS(1410), + [anon_sym_symbol] = ACTIONS(1410), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [94] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2804), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3266), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [95] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3462), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(550), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1322), - [anon_sym_export] = ACTIONS(1324), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(493), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1412), + [anon_sym_export] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1328), - [anon_sym_typeof] = ACTIONS(1330), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1342), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1418), + [anon_sym_typeof] = ACTIONS(1420), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1166), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1428), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1352), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1354), - [anon_sym_DASH] = ACTIONS(1354), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1356), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1368), - [sym_this] = ACTIONS(1370), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1374), - [sym_false] = ACTIONS(1374), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1434), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1436), + [anon_sym_DASH] = ACTIONS(1436), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1438), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1444), + [sym_this] = ACTIONS(1446), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1448), + [sym_false] = ACTIONS(1448), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1378), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1380), - [anon_sym_number] = ACTIONS(1380), - [anon_sym_boolean] = ACTIONS(1380), - [anon_sym_string] = ACTIONS(1380), - [anon_sym_symbol] = ACTIONS(1380), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1452), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1454), + [anon_sym_number] = ACTIONS(1454), + [anon_sym_boolean] = ACTIONS(1454), + [anon_sym_string] = ACTIONS(1454), + [anon_sym_symbol] = ACTIONS(1454), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [95] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3419), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3308), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [96] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2204), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_STAR] = ACTIONS(1460), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1468), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [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(1482), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + [anon_sym_extends] = ACTIONS(1048), + [anon_sym_PIPE_RBRACE] = ACTIONS(1052), + [sym__automatic_semicolon] = ACTIONS(1052), + }, + [97] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2740), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2755), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(661), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1382), - [anon_sym_export] = ACTIONS(1384), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(651), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1484), + [anon_sym_export] = ACTIONS(1486), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1388), - [anon_sym_typeof] = ACTIONS(1390), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1294), + [anon_sym_typeof] = ACTIONS(1490), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_BANG] = ACTIONS(1492), [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1304), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1402), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1404), - [anon_sym_DASH] = ACTIONS(1404), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1406), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1500), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1502), + [anon_sym_DASH] = ACTIONS(1502), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1504), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1412), - [sym_this] = ACTIONS(1414), + [sym_number] = ACTIONS(1318), + [sym_this] = ACTIONS(1320), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), + [sym_true] = ACTIONS(1322), + [sym_false] = ACTIONS(1322), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1420), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1422), - [anon_sym_number] = ACTIONS(1422), - [anon_sym_boolean] = ACTIONS(1422), - [anon_sym_string] = ACTIONS(1422), - [anon_sym_symbol] = ACTIONS(1422), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1512), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1514), + [anon_sym_number] = ACTIONS(1514), + [anon_sym_boolean] = ACTIONS(1514), + [anon_sym_string] = ACTIONS(1514), + [anon_sym_symbol] = ACTIONS(1514), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [96] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2894), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2540), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [98] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3297), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3305), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(612), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1424), - [anon_sym_export] = ACTIONS(1426), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(498), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1516), + [anon_sym_export] = ACTIONS(1518), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1206), - [anon_sym_typeof] = ACTIONS(1430), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1522), + [anon_sym_typeof] = ACTIONS(1524), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), + [anon_sym_BANG] = ACTIONS(1526), [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1210), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1126), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1442), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1444), - [anon_sym_DASH] = ACTIONS(1444), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1446), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1534), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1536), + [anon_sym_DASH] = ACTIONS(1536), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1538), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1218), - [sym_this] = ACTIONS(1220), + [sym_number] = ACTIONS(1140), + [sym_this] = ACTIONS(1142), [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(1222), - [sym_false] = ACTIONS(1222), + [sym_true] = ACTIONS(1144), + [sym_false] = ACTIONS(1144), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1454), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1456), - [anon_sym_number] = ACTIONS(1456), - [anon_sym_boolean] = ACTIONS(1456), - [anon_sym_string] = ACTIONS(1456), - [anon_sym_symbol] = ACTIONS(1456), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, - [97] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2780), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(563), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1458), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1464), - [anon_sym_typeof] = ACTIONS(1466), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(814), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1474), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1478), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1480), - [anon_sym_DASH] = ACTIONS(1480), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1482), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1488), - [sym_this] = ACTIONS(1490), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(1492), - [sym_false] = ACTIONS(1492), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = ACTIONS(1496), - [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(1498), - [anon_sym_number] = ACTIONS(1498), - [anon_sym_boolean] = ACTIONS(1498), - [anon_sym_string] = ACTIONS(1498), - [anon_sym_symbol] = ACTIONS(1498), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, - [98] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2690), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3262), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(766), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1500), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1506), - [anon_sym_typeof] = ACTIONS(1508), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1336), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1516), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1522), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1524), - [anon_sym_DASH] = ACTIONS(1524), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1526), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1532), - [sym_this] = ACTIONS(1534), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1536), - [sym_false] = ACTIONS(1536), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = ACTIONS(1540), - [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(1542), - [anon_sym_number] = ACTIONS(1542), - [anon_sym_boolean] = ACTIONS(1542), - [anon_sym_string] = ACTIONS(1542), - [anon_sym_symbol] = ACTIONS(1542), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = ACTIONS(1546), + [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(1548), + [anon_sym_number] = ACTIONS(1548), + [anon_sym_boolean] = ACTIONS(1548), + [anon_sym_string] = ACTIONS(1548), + [anon_sym_symbol] = ACTIONS(1548), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [99] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3430), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3308), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2914), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(3487), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(908), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1544), - [anon_sym_export] = ACTIONS(1546), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(550), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1550), + [anon_sym_export] = ACTIONS(1552), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1550), - [anon_sym_typeof] = ACTIONS(1552), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1398), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1556), + [anon_sym_typeof] = ACTIONS(1558), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(1566), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1562), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1564), - [anon_sym_DASH] = ACTIONS(1564), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1566), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1570), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1572), + [anon_sym_DASH] = ACTIONS(1572), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1574), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1412), - [sym_this] = ACTIONS(1414), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(1416), - [sym_false] = ACTIONS(1416), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1580), + [sym_this] = ACTIONS(1582), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1584), + [sym_false] = ACTIONS(1584), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1574), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1576), - [anon_sym_number] = ACTIONS(1576), - [anon_sym_boolean] = ACTIONS(1576), - [anon_sym_string] = ACTIONS(1576), - [anon_sym_symbol] = ACTIONS(1576), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = ACTIONS(1588), + [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(1590), + [anon_sym_number] = ACTIONS(1590), + [anon_sym_boolean] = ACTIONS(1590), + [anon_sym_string] = ACTIONS(1590), + [anon_sym_symbol] = ACTIONS(1590), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [100] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2977), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2277), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2274), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2446), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4459), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4313), - [sym_constructor_type] = STATE(4313), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4313), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_type_arguments] = STATE(552), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5414), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4313), - [sym_union_type] = STATE(4313), - [sym_intersection_type] = STATE(4313), - [sym_function_type] = STATE(4313), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1578), - [anon_sym_export] = ACTIONS(1580), + [sym_formal_parameters] = STATE(4695), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4375), + [sym_constructor_type] = STATE(4375), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4375), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_type_arguments] = STATE(807), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5410), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4375), + [sym_union_type] = STATE(4375), + [sym_intersection_type] = STATE(4375), + [sym_function_type] = STATE(4375), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1592), + [anon_sym_export] = ACTIONS(1458), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(908), - [anon_sym_typeof] = ACTIONS(1584), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(554), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(918), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1594), + [anon_sym_typeof] = ACTIONS(1596), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(806), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1598), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1594), - [anon_sym_QMARK] = ACTIONS(772), - [anon_sym_AMP] = ACTIONS(774), - [anon_sym_PIPE] = ACTIONS(776), - [anon_sym_PLUS] = ACTIONS(1596), - [anon_sym_DASH] = ACTIONS(1596), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1598), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1600), + [anon_sym_QMARK] = ACTIONS(764), + [anon_sym_AMP] = ACTIONS(766), + [anon_sym_PIPE] = ACTIONS(768), + [anon_sym_PLUS] = ACTIONS(1602), + [anon_sym_DASH] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1604), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(934), - [sym_this] = ACTIONS(936), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(938), - [sym_false] = ACTIONS(938), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(1098), + [sym_this] = ACTIONS(1100), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(1102), + [sym_false] = ACTIONS(1102), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1458), [anon_sym_readonly] = ACTIONS(1606), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), [anon_sym_any] = ACTIONS(1608), [anon_sym_number] = ACTIONS(1608), [anon_sym_boolean] = ACTIONS(1608), [anon_sym_string] = ACTIONS(1608), [anon_sym_symbol] = ACTIONS(1608), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [101] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4443), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4141), - [sym_constructor_type] = STATE(4141), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4141), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4141), - [sym_union_type] = STATE(4141), - [sym_intersection_type] = STATE(4141), - [sym_function_type] = STATE(4141), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1616), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(1638), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(1642), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1644), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1646), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(1658), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(692), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, - [102] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2382), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2563), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_STAR] = ACTIONS(1668), - [anon_sym_type] = ACTIONS(802), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1672), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_STAR] = ACTIONS(1612), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1616), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - [anon_sym_extends] = ACTIONS(1264), - [sym__automatic_semicolon] = ACTIONS(1268), - [sym__function_signature_automatic_semicolon] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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_extends] = ACTIONS(1048), + [sym__automatic_semicolon] = ACTIONS(1052), }, - [103] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2424), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [102] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2469), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_STAR] = ACTIONS(1684), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_STAR] = ACTIONS(1624), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1686), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1268), + [anon_sym_BANG] = ACTIONS(1626), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1052), [anon_sym_await] = ACTIONS(556), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1268), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1052), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_DOT] = ACTIONS(1048), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -26478,7 +26364,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -26486,355 +26372,478 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [104] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2542), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [103] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2345), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_STAR] = ACTIONS(1692), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1696), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_STAR] = ACTIONS(1632), + [anon_sym_type] = ACTIONS(986), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1636), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_extends] = ACTIONS(1264), - [sym__automatic_semicolon] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + [anon_sym_extends] = ACTIONS(1048), + [sym__automatic_semicolon] = ACTIONS(1052), + [sym__function_signature_automatic_semicolon] = ACTIONS(1052), + }, + [104] = { + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4628), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4151), + [sym_constructor_type] = STATE(4151), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4151), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4151), + [sym_union_type] = STATE(4151), + [sym_intersection_type] = STATE(4151), + [sym_function_type] = STATE(4151), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(1678), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1680), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1682), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(1694), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(1648), + [anon_sym_private] = ACTIONS(1648), + [anon_sym_protected] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(692), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [105] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2665), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2545), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), + [anon_sym_export] = ACTIONS(1214), [anon_sym_STAR] = ACTIONS(1704), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_EQ] = ACTIONS(1264), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1708), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1706), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - [anon_sym_extends] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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_extends] = ACTIONS(1048), + [sym__automatic_semicolon] = ACTIONS(1052), + [sym__function_signature_automatic_semicolon] = ACTIONS(1052), }, [106] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2608), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2588), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_STAR] = ACTIONS(1716), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_RBRACE] = ACTIONS(1268), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_STAR] = ACTIONS(1712), + [anon_sym_type] = ACTIONS(876), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_RBRACE] = ACTIONS(1052), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(77), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1052), [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(75), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), [anon_sym_TILDE] = ACTIONS(29), [anon_sym_void] = ACTIONS(19), [anon_sym_delete] = ACTIONS(19), @@ -26852,1670 +26861,1670 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_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), - [sym__automatic_semicolon] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + [sym__automatic_semicolon] = ACTIONS(1052), }, [107] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2418), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2702), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_STAR] = ACTIONS(1720), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1722), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_STAR] = ACTIONS(1716), + [anon_sym_type] = ACTIONS(906), + [anon_sym_EQ] = ACTIONS(1048), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(930), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1720), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_await] = ACTIONS(916), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(570), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1724), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(1264), - [sym__automatic_semicolon] = ACTIONS(1268), - [sym__function_signature_automatic_semicolon] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_module] = ACTIONS(906), + [anon_sym_any] = ACTIONS(906), + [anon_sym_number] = ACTIONS(906), + [anon_sym_boolean] = ACTIONS(906), + [anon_sym_string] = ACTIONS(906), + [anon_sym_symbol] = ACTIONS(906), + [anon_sym_extends] = ACTIONS(1048), }, [108] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2928), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2848), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), + [anon_sym_export] = ACTIONS(742), [anon_sym_STAR] = ACTIONS(1728), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(1600), + [anon_sym_type] = ACTIONS(742), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(1730), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(1048), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_EQ_GT] = ACTIONS(1052), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1732), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(1730), [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), - [anon_sym_extends] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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_extends] = ACTIONS(1048), }, [109] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2668), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2713), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), + [anon_sym_export] = ACTIONS(1486), [anon_sym_STAR] = ACTIONS(1736), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1738), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1146), - [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1740), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(1052), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(1048), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), - [anon_sym_implements] = ACTIONS(1264), - [anon_sym_extends] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_extends] = ACTIONS(1048), }, [110] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2719), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2835), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_STAR] = ACTIONS(1744), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1748), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_STAR] = ACTIONS(1748), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1750), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(1264), - [anon_sym_LBRACE_PIPE] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + [anon_sym_extends] = ACTIONS(1048), + [sym__automatic_semicolon] = ACTIONS(1052), }, [111] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2616), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2662), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_STAR] = ACTIONS(1756), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1760), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + [anon_sym_extends] = ACTIONS(1048), + [anon_sym_LBRACE_PIPE] = ACTIONS(1052), + }, + [112] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2625), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_STAR] = ACTIONS(1760), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_STAR] = ACTIONS(1772), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1764), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(1268), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_BANG] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_DOT] = ACTIONS(1048), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_QMARK_DOT] = ACTIONS(1052), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_extends] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + [anon_sym_implements] = ACTIONS(1048), + [anon_sym_extends] = ACTIONS(1048), }, - [112] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2810), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), + [113] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2794), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_STAR] = ACTIONS(1772), - [anon_sym_type] = ACTIONS(742), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1774), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_QMARK_DOT] = ACTIONS(1268), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_extends] = ACTIONS(1264), - [sym__automatic_semicolon] = ACTIONS(1268), - }, - [113] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3184), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), + [anon_sym_export] = ACTIONS(942), [anon_sym_STAR] = ACTIONS(1780), - [anon_sym_type] = ACTIONS(990), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), + [anon_sym_type] = ACTIONS(942), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(1782), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(570), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1784), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(1782), [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1024), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - [sym__automatic_semicolon] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_implements] = ACTIONS(1048), }, [114] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(3000), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3176), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), + [anon_sym_export] = ACTIONS(1290), [anon_sym_STAR] = ACTIONS(1788), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(1746), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(1790), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_EQ_GT] = ACTIONS(1052), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1792), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - [anon_sym_LBRACE_PIPE] = ACTIONS(1268), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), + [anon_sym_extends] = ACTIONS(1048), }, [115] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2937), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3116), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), + [anon_sym_export] = ACTIONS(1380), [anon_sym_STAR] = ACTIONS(1796), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(1268), - [anon_sym_typeof] = ACTIONS(1448), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(1798), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(1048), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1800), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(1798), [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - [anon_sym_implements] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), + [anon_sym_extends] = ACTIONS(1048), }, [116] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3076), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3238), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), + [anon_sym_export] = ACTIONS(794), [anon_sym_STAR] = ACTIONS(1804), - [anon_sym_type] = ACTIONS(948), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), - [anon_sym_import] = ACTIONS(550), + [anon_sym_type] = ACTIONS(794), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(1806), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), - [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_SEMI] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1808), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(1806), [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [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(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - [anon_sym_extends] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + [sym__automatic_semicolon] = ACTIONS(1052), }, [117] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3171), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2906), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), + [anon_sym_export] = ACTIONS(1414), [anon_sym_STAR] = ACTIONS(1812), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(550), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(1758), + [anon_sym_COMMA] = ACTIONS(1052), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), [anon_sym_BANG] = ACTIONS(1814), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(1264), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_function] = ACTIONS(570), - [anon_sym_EQ_GT] = ACTIONS(1268), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(1048), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1816), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(1814), [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), - [anon_sym_extends] = ACTIONS(1264), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + [anon_sym_LBRACE_PIPE] = ACTIONS(1052), }, [118] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3317), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3369), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), + [anon_sym_export] = ACTIONS(1518), [anon_sym_STAR] = ACTIONS(1820), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(1822), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(1268), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_RBRACK] = ACTIONS(1052), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_DOT] = ACTIONS(1048), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1824), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, [119] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3341), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3382), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), + [anon_sym_export] = ACTIONS(1112), [anon_sym_STAR] = ACTIONS(1828), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_as] = ACTIONS(1264), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_as] = ACTIONS(1048), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(1830), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_in] = ACTIONS(1264), - [anon_sym_COLON] = ACTIONS(1268), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(1272), - [anon_sym_GT] = ACTIONS(1264), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_in] = ACTIONS(1048), + [anon_sym_COLON] = ACTIONS(1052), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(1060), + [anon_sym_GT] = ACTIONS(1048), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(1264), + [anon_sym_DOT] = ACTIONS(1048), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_QMARK_DOT] = ACTIONS(1268), + [anon_sym_QMARK_DOT] = ACTIONS(1052), [anon_sym_new] = ACTIONS(1832), - [anon_sym_QMARK] = ACTIONS(1264), - [anon_sym_AMP_AMP] = ACTIONS(1268), - [anon_sym_PIPE_PIPE] = ACTIONS(1268), - [anon_sym_GT_GT] = ACTIONS(1264), - [anon_sym_GT_GT_GT] = ACTIONS(1268), - [anon_sym_LT_LT] = ACTIONS(1268), - [anon_sym_AMP] = ACTIONS(1264), - [anon_sym_CARET] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1264), + [anon_sym_QMARK] = ACTIONS(1048), + [anon_sym_AMP_AMP] = ACTIONS(1052), + [anon_sym_PIPE_PIPE] = ACTIONS(1052), + [anon_sym_GT_GT] = ACTIONS(1048), + [anon_sym_GT_GT_GT] = ACTIONS(1052), + [anon_sym_LT_LT] = ACTIONS(1052), + [anon_sym_AMP] = ACTIONS(1048), + [anon_sym_CARET] = ACTIONS(1052), + [anon_sym_PIPE] = ACTIONS(1048), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_PERCENT] = ACTIONS(1268), - [anon_sym_STAR_STAR] = ACTIONS(1268), - [anon_sym_LT_EQ] = ACTIONS(1268), - [anon_sym_EQ_EQ] = ACTIONS(1264), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1268), - [anon_sym_BANG_EQ] = ACTIONS(1264), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1268), - [anon_sym_GT_EQ] = ACTIONS(1268), - [anon_sym_QMARK_QMARK] = ACTIONS(1268), - [anon_sym_instanceof] = ACTIONS(1264), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_PERCENT] = ACTIONS(1052), + [anon_sym_STAR_STAR] = ACTIONS(1052), + [anon_sym_LT_EQ] = ACTIONS(1052), + [anon_sym_EQ_EQ] = ACTIONS(1048), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1052), + [anon_sym_BANG_EQ] = ACTIONS(1048), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1052), + [anon_sym_GT_EQ] = ACTIONS(1052), + [anon_sym_QMARK_QMARK] = ACTIONS(1052), + [anon_sym_instanceof] = ACTIONS(1048), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, [120] = { - [sym_declaration] = STATE(1196), - [sym_import] = STATE(2576), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3110), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_declaration] = STATE(1073), + [sym_import] = STATE(2403), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3076), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4428), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4550), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), [anon_sym_type] = ACTIONS(1834), [anon_sym_namespace] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), [anon_sym_import] = ACTIONS(1838), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(69), [anon_sym_async] = ACTIONS(1840), [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -28526,109 +28535,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), [anon_sym_declare] = ACTIONS(1842), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), [anon_sym_module] = ACTIONS(1844), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [121] = { - [sym_declaration] = STATE(1196), - [sym_import] = STATE(2576), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3110), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_declaration] = STATE(1192), + [sym_import] = STATE(2403), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3217), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4464), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4467), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), [anon_sym_type] = ACTIONS(1834), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), [anon_sym_import] = ACTIONS(1838), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(524), [anon_sym_async] = ACTIONS(1846), [anon_sym_function] = ACTIONS(528), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -28639,109 +28648,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), [anon_sym_declare] = ACTIONS(1842), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), [anon_sym_module] = ACTIONS(1844), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [122] = { - [sym_declaration] = STATE(1194), - [sym_import] = STATE(2576), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3241), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_declaration] = STATE(4519), + [sym_import] = STATE(2403), + [sym_variable_declaration] = STATE(4475), + [sym_lexical_declaration] = STATE(4475), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3100), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(4475), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(4475), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(4475), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(3011), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4464), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(1834), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(1838), - [anon_sym_var] = ACTIONS(23), - [anon_sym_let] = ACTIONS(25), - [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_function_signature] = STATE(4475), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(4475), + [sym_abstract_class_declaration] = STATE(4475), + [sym_module] = STATE(4475), + [sym_internal_module] = STATE(3068), + [sym_import_alias] = STATE(4475), + [sym_interface_declaration] = STATE(4475), + [sym_enum_declaration] = STATE(4475), + [sym_type_alias_declaration] = STATE(4475), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4586), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(1848), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(1850), + [anon_sym_var] = ACTIONS(1852), + [anon_sym_let] = ACTIONS(1854), + [anon_sym_const] = ACTIONS(1856), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(524), - [anon_sym_async] = ACTIONS(1846), - [anon_sym_function] = ACTIONS(528), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(1858), + [anon_sym_async] = ACTIONS(1860), + [anon_sym_function] = ACTIONS(1862), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -28752,109 +28761,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(1842), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(1844), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - [anon_sym_abstract] = ACTIONS(101), - [anon_sym_interface] = ACTIONS(103), - [anon_sym_enum] = ACTIONS(105), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(1864), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(1866), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + [anon_sym_abstract] = ACTIONS(1868), + [anon_sym_interface] = ACTIONS(1870), + [anon_sym_enum] = ACTIONS(1872), }, [123] = { - [sym_declaration] = STATE(4603), - [sym_import] = STATE(2576), - [sym_variable_declaration] = STATE(4594), - [sym_lexical_declaration] = STATE(4594), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3094), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(4594), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(4594), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(4594), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_declaration] = STATE(4482), + [sym_import] = STATE(2403), + [sym_variable_declaration] = STATE(4475), + [sym_lexical_declaration] = STATE(4475), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3066), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(4475), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(4475), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(4475), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_function_signature] = STATE(4594), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(4594), - [sym_abstract_class_declaration] = STATE(4594), - [sym_module] = STATE(4594), - [sym_internal_module] = STATE(3230), - [sym_import_alias] = STATE(4594), - [sym_interface_declaration] = STATE(4594), - [sym_enum_declaration] = STATE(4594), - [sym_type_alias_declaration] = STATE(4594), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4576), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_function_signature] = STATE(4475), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(4475), + [sym_abstract_class_declaration] = STATE(4475), + [sym_module] = STATE(4475), + [sym_internal_module] = STATE(3068), + [sym_import_alias] = STATE(4475), + [sym_interface_declaration] = STATE(4475), + [sym_enum_declaration] = STATE(4475), + [sym_type_alias_declaration] = STATE(4475), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4586), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), [anon_sym_type] = ACTIONS(1848), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), [anon_sym_import] = ACTIONS(1850), [anon_sym_var] = ACTIONS(1852), [anon_sym_let] = ACTIONS(1854), [anon_sym_const] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), [anon_sym_class] = ACTIONS(1858), [anon_sym_async] = ACTIONS(1860), [anon_sym_function] = ACTIONS(1862), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -28865,109 +28874,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), [anon_sym_declare] = ACTIONS(1864), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), [anon_sym_module] = ACTIONS(1866), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), [anon_sym_abstract] = ACTIONS(1868), [anon_sym_interface] = ACTIONS(1870), [anon_sym_enum] = ACTIONS(1872), }, [124] = { - [sym_declaration] = STATE(1194), - [sym_import] = STATE(2576), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3241), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(1171), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(1171), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(1171), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_declaration] = STATE(1073), + [sym_import] = STATE(2403), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3076), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_function_signature] = STATE(1171), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(150), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4428), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(3142), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4467), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), [anon_sym_type] = ACTIONS(1834), - [anon_sym_namespace] = ACTIONS(1836), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), [anon_sym_import] = ACTIONS(1838), [anon_sym_var] = ACTIONS(23), [anon_sym_let] = ACTIONS(25), [anon_sym_const] = ACTIONS(27), - [anon_sym_BANG] = ACTIONS(998), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(69), - [anon_sym_async] = ACTIONS(1840), - [anon_sym_function] = ACTIONS(73), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(524), + [anon_sym_async] = ACTIONS(1846), + [anon_sym_function] = ACTIONS(528), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -28978,109 +28987,109 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), [anon_sym_declare] = ACTIONS(1842), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), [anon_sym_module] = ACTIONS(1844), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), [anon_sym_abstract] = ACTIONS(101), [anon_sym_interface] = ACTIONS(103), [anon_sym_enum] = ACTIONS(105), }, [125] = { - [sym_declaration] = STATE(4640), - [sym_import] = STATE(2576), - [sym_variable_declaration] = STATE(4594), - [sym_lexical_declaration] = STATE(4594), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3095), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_class_declaration] = STATE(4594), - [sym_function] = STATE(2576), - [sym_function_declaration] = STATE(4594), - [sym_generator_function] = STATE(2576), - [sym_generator_function_declaration] = STATE(4594), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_declaration] = STATE(1192), + [sym_import] = STATE(2403), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3217), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_class_declaration] = STATE(1205), + [sym_function] = STATE(2403), + [sym_function_declaration] = STATE(1205), + [sym_generator_function] = STATE(2403), + [sym_generator_function_declaration] = STATE(1205), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_function_signature] = STATE(4594), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_ambient_declaration] = STATE(4594), - [sym_abstract_class_declaration] = STATE(4594), - [sym_module] = STATE(4594), - [sym_internal_module] = STATE(3230), - [sym_import_alias] = STATE(4594), - [sym_interface_declaration] = STATE(4594), - [sym_enum_declaration] = STATE(4594), - [sym_type_alias_declaration] = STATE(4594), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4576), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(1848), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(1850), - [anon_sym_var] = ACTIONS(1852), - [anon_sym_let] = ACTIONS(1854), - [anon_sym_const] = ACTIONS(1856), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_function_signature] = STATE(1205), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(147), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4550), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(1834), + [anon_sym_namespace] = ACTIONS(1836), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(1838), + [anon_sym_var] = ACTIONS(23), + [anon_sym_let] = ACTIONS(25), + [anon_sym_const] = ACTIONS(27), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(1858), - [anon_sym_async] = ACTIONS(1860), - [anon_sym_function] = ACTIONS(1862), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(69), + [anon_sym_async] = ACTIONS(1840), + [anon_sym_function] = ACTIONS(73), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -29091,986 +29100,986 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(1864), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(1866), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - [anon_sym_abstract] = ACTIONS(1868), - [anon_sym_interface] = ACTIONS(1870), - [anon_sym_enum] = ACTIONS(1872), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(1842), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(1844), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + [anon_sym_abstract] = ACTIONS(101), + [anon_sym_interface] = ACTIONS(103), + [anon_sym_enum] = ACTIONS(105), }, [126] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1876), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [127] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1898), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), - [anon_sym_PIPE_RBRACE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_PIPE_RBRACE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), }, [128] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(1904), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), }, [129] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), }, [130] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__automatic_semicolon] = ACTIONS(1672), }, [131] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1914), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), + [sym__automatic_semicolon] = ACTIONS(1672), }, [132] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1918), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), }, [133] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1922), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_implements] = ACTIONS(1619), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [134] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), + [sym__automatic_semicolon] = ACTIONS(1672), }, [135] = { - [sym_statement_block] = STATE(167), + [sym_statement_block] = STATE(151), [ts_builtin_sym_end] = ACTIONS(1928), [sym_identifier] = ACTIONS(1930), [anon_sym_export] = ACTIONS(1930), @@ -30175,111 +30184,216 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__automatic_semicolon] = ACTIONS(1928), }, [136] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_statement_block] = STATE(151), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_export] = ACTIONS(1930), + [anon_sym_STAR] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_as] = ACTIONS(1930), + [anon_sym_namespace] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(1932), + [anon_sym_COMMA] = ACTIONS(1928), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(1930), + [anon_sym_import] = ACTIONS(1930), + [anon_sym_var] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1930), + [anon_sym_else] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_await] = ACTIONS(1930), + [anon_sym_in] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_do] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1930), + [anon_sym_with] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_debugger] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_throw] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_case] = ACTIONS(1930), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1930), + [anon_sym_GT] = ACTIONS(1930), + [anon_sym_SLASH] = ACTIONS(1930), + [anon_sym_DOT] = ACTIONS(1930), + [anon_sym_class] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_function] = ACTIONS(1930), + [anon_sym_QMARK_DOT] = ACTIONS(1928), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_QMARK] = ACTIONS(1930), + [anon_sym_AMP_AMP] = ACTIONS(1928), + [anon_sym_PIPE_PIPE] = ACTIONS(1928), + [anon_sym_GT_GT] = ACTIONS(1930), + [anon_sym_GT_GT_GT] = ACTIONS(1928), + [anon_sym_LT_LT] = ACTIONS(1928), + [anon_sym_AMP] = ACTIONS(1930), + [anon_sym_CARET] = ACTIONS(1928), + [anon_sym_PIPE] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_PERCENT] = ACTIONS(1928), + [anon_sym_STAR_STAR] = ACTIONS(1928), + [anon_sym_LT_EQ] = ACTIONS(1928), + [anon_sym_EQ_EQ] = ACTIONS(1930), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1928), + [anon_sym_BANG_EQ] = ACTIONS(1930), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1928), + [anon_sym_GT_EQ] = ACTIONS(1928), + [anon_sym_QMARK_QMARK] = ACTIONS(1928), + [anon_sym_instanceof] = ACTIONS(1930), + [anon_sym_TILDE] = ACTIONS(1928), + [anon_sym_void] = ACTIONS(1930), + [anon_sym_delete] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(1928), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1928), + [sym_this] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1928), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1930), + [anon_sym_set] = ACTIONS(1930), + [anon_sym_declare] = ACTIONS(1930), + [anon_sym_public] = ACTIONS(1930), + [anon_sym_private] = ACTIONS(1930), + [anon_sym_protected] = ACTIONS(1930), + [anon_sym_module] = ACTIONS(1930), + [anon_sym_any] = ACTIONS(1930), + [anon_sym_number] = ACTIONS(1930), + [anon_sym_boolean] = ACTIONS(1930), + [anon_sym_string] = ACTIONS(1930), + [anon_sym_symbol] = ACTIONS(1930), + [anon_sym_abstract] = ACTIONS(1930), + [anon_sym_interface] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + [sym__automatic_semicolon] = ACTIONS(1928), + }, + [137] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1936), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [137] = { + [138] = { [ts_builtin_sym_end] = ACTIONS(1940), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), @@ -30384,425 +30498,112 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1942), [sym__automatic_semicolon] = ACTIONS(1950), }, - [138] = { - [sym_statement_block] = STATE(167), - [ts_builtin_sym_end] = ACTIONS(1928), - [sym_identifier] = ACTIONS(1930), - [anon_sym_export] = ACTIONS(1930), - [anon_sym_STAR] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_as] = ACTIONS(1930), - [anon_sym_namespace] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(1932), - [anon_sym_COMMA] = ACTIONS(1928), - [anon_sym_RBRACE] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(1930), - [anon_sym_import] = ACTIONS(1930), - [anon_sym_var] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1930), - [anon_sym_else] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1928), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_in] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [anon_sym_do] = ACTIONS(1930), - [anon_sym_try] = ACTIONS(1930), - [anon_sym_with] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_debugger] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_throw] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_case] = ACTIONS(1930), - [anon_sym_yield] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1930), - [anon_sym_GT] = ACTIONS(1930), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_DOT] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_function] = ACTIONS(1930), - [anon_sym_QMARK_DOT] = ACTIONS(1928), - [anon_sym_new] = ACTIONS(1930), - [anon_sym_QMARK] = ACTIONS(1930), - [anon_sym_AMP_AMP] = ACTIONS(1928), - [anon_sym_PIPE_PIPE] = ACTIONS(1928), - [anon_sym_GT_GT] = ACTIONS(1930), - [anon_sym_GT_GT_GT] = ACTIONS(1928), - [anon_sym_LT_LT] = ACTIONS(1928), - [anon_sym_AMP] = ACTIONS(1930), - [anon_sym_CARET] = ACTIONS(1928), - [anon_sym_PIPE] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_PERCENT] = ACTIONS(1928), - [anon_sym_STAR_STAR] = ACTIONS(1928), - [anon_sym_LT_EQ] = ACTIONS(1928), - [anon_sym_EQ_EQ] = ACTIONS(1930), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1928), - [anon_sym_BANG_EQ] = ACTIONS(1930), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1928), - [anon_sym_GT_EQ] = ACTIONS(1928), - [anon_sym_QMARK_QMARK] = ACTIONS(1928), - [anon_sym_instanceof] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1928), - [anon_sym_void] = ACTIONS(1930), - [anon_sym_delete] = ACTIONS(1930), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1928), - [sym_this] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_AT] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(1930), - [anon_sym_set] = ACTIONS(1930), - [anon_sym_declare] = ACTIONS(1930), - [anon_sym_public] = ACTIONS(1930), - [anon_sym_private] = ACTIONS(1930), - [anon_sym_protected] = ACTIONS(1930), - [anon_sym_module] = ACTIONS(1930), - [anon_sym_any] = ACTIONS(1930), - [anon_sym_number] = ACTIONS(1930), - [anon_sym_boolean] = ACTIONS(1930), - [anon_sym_string] = ACTIONS(1930), - [anon_sym_symbol] = ACTIONS(1930), - [anon_sym_abstract] = ACTIONS(1930), - [anon_sym_interface] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - [sym__automatic_semicolon] = ACTIONS(1928), - }, [139] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), + [anon_sym_STAR] = ACTIONS(1650), [anon_sym_EQ] = ACTIONS(1952), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_implements] = ACTIONS(1655), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), - [sym__automatic_semicolon] = ACTIONS(1636), }, [140] = { - [ts_builtin_sym_end] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [anon_sym_export] = ACTIONS(1958), - [anon_sym_STAR] = ACTIONS(1960), - [anon_sym_default] = ACTIONS(1958), - [anon_sym_type] = ACTIONS(1958), - [anon_sym_as] = ACTIONS(1960), - [anon_sym_namespace] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_COMMA] = ACTIONS(1962), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym_import] = ACTIONS(1958), - [anon_sym_var] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1958), - [anon_sym_else] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1956), - [anon_sym_await] = ACTIONS(1958), - [anon_sym_in] = ACTIONS(1960), - [anon_sym_while] = ACTIONS(1958), - [anon_sym_do] = ACTIONS(1958), - [anon_sym_try] = ACTIONS(1958), - [anon_sym_with] = ACTIONS(1958), - [anon_sym_break] = ACTIONS(1958), - [anon_sym_continue] = ACTIONS(1958), - [anon_sym_debugger] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1958), - [anon_sym_throw] = ACTIONS(1958), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_case] = ACTIONS(1958), - [anon_sym_yield] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1958), - [anon_sym_GT] = ACTIONS(1960), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_DOT] = ACTIONS(1960), - [anon_sym_class] = ACTIONS(1958), - [anon_sym_async] = ACTIONS(1958), - [anon_sym_function] = ACTIONS(1958), - [anon_sym_QMARK_DOT] = ACTIONS(1962), - [anon_sym_new] = ACTIONS(1958), - [anon_sym_QMARK] = ACTIONS(1960), - [anon_sym_AMP_AMP] = ACTIONS(1962), - [anon_sym_PIPE_PIPE] = ACTIONS(1962), - [anon_sym_GT_GT] = ACTIONS(1960), - [anon_sym_GT_GT_GT] = ACTIONS(1962), - [anon_sym_LT_LT] = ACTIONS(1962), - [anon_sym_AMP] = ACTIONS(1960), - [anon_sym_CARET] = ACTIONS(1962), - [anon_sym_PIPE] = ACTIONS(1960), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_PERCENT] = ACTIONS(1962), - [anon_sym_STAR_STAR] = ACTIONS(1962), - [anon_sym_LT_EQ] = ACTIONS(1962), - [anon_sym_EQ_EQ] = ACTIONS(1960), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1962), - [anon_sym_BANG_EQ] = ACTIONS(1960), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1962), - [anon_sym_GT_EQ] = ACTIONS(1962), - [anon_sym_QMARK_QMARK] = ACTIONS(1962), - [anon_sym_instanceof] = ACTIONS(1960), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_void] = ACTIONS(1958), - [anon_sym_delete] = ACTIONS(1958), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1956), - [sym_number] = ACTIONS(1956), - [sym_this] = ACTIONS(1958), - [sym_super] = ACTIONS(1958), - [sym_true] = ACTIONS(1958), - [sym_false] = ACTIONS(1958), - [sym_null] = ACTIONS(1958), - [sym_undefined] = ACTIONS(1958), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_readonly] = ACTIONS(1958), - [anon_sym_get] = ACTIONS(1958), - [anon_sym_set] = ACTIONS(1958), - [anon_sym_declare] = ACTIONS(1958), - [anon_sym_public] = ACTIONS(1958), - [anon_sym_private] = ACTIONS(1958), - [anon_sym_protected] = ACTIONS(1958), - [anon_sym_module] = ACTIONS(1958), - [anon_sym_any] = ACTIONS(1958), - [anon_sym_number] = ACTIONS(1958), - [anon_sym_boolean] = ACTIONS(1958), - [anon_sym_string] = ACTIONS(1958), - [anon_sym_symbol] = ACTIONS(1958), - [anon_sym_abstract] = ACTIONS(1958), - [anon_sym_interface] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [sym__automatic_semicolon] = ACTIONS(1964), - }, - [141] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_as] = ACTIONS(1968), - [anon_sym_namespace] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_typeof] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1968), - [anon_sym_in] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_with] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_debugger] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_GT] = ACTIONS(1968), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_QMARK_DOT] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_QMARK] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1966), - [anon_sym_PIPE_PIPE] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_GT_GT_GT] = ACTIONS(1966), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_CARET] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PERCENT] = ACTIONS(1966), - [anon_sym_STAR_STAR] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1968), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_BANG_EQ] = ACTIONS(1968), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_QMARK_QMARK] = ACTIONS(1966), - [anon_sym_instanceof] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(1968), - [anon_sym_delete] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1966), - [sym_number] = ACTIONS(1966), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_true] = ACTIONS(1968), - [sym_false] = ACTIONS(1968), - [sym_null] = ACTIONS(1968), - [sym_undefined] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_readonly] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(1968), - [anon_sym_set] = ACTIONS(1968), - [anon_sym_declare] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_module] = ACTIONS(1968), - [anon_sym_any] = ACTIONS(1968), - [anon_sym_number] = ACTIONS(1968), - [anon_sym_boolean] = ACTIONS(1968), - [anon_sym_string] = ACTIONS(1968), - [anon_sym_symbol] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_interface] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [sym__automatic_semicolon] = ACTIONS(1966), - }, - [142] = { [ts_builtin_sym_end] = ACTIONS(1940), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), @@ -30904,2193 +30705,2505 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_abstract] = ACTIONS(1942), [anon_sym_interface] = ACTIONS(1942), [anon_sym_enum] = ACTIONS(1942), - [sym__automatic_semicolon] = ACTIONS(1970), + [sym__automatic_semicolon] = ACTIONS(1956), + }, + [141] = { + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1960), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_STAR] = ACTIONS(1962), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_type] = ACTIONS(1960), + [anon_sym_as] = ACTIONS(1962), + [anon_sym_namespace] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_COMMA] = ACTIONS(1964), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_typeof] = ACTIONS(1960), + [anon_sym_import] = ACTIONS(1960), + [anon_sym_var] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1960), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_await] = ACTIONS(1960), + [anon_sym_in] = ACTIONS(1962), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_with] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_debugger] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_throw] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_case] = ACTIONS(1960), + [anon_sym_yield] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_LT] = ACTIONS(1960), + [anon_sym_GT] = ACTIONS(1962), + [anon_sym_SLASH] = ACTIONS(1960), + [anon_sym_DOT] = ACTIONS(1962), + [anon_sym_class] = ACTIONS(1960), + [anon_sym_async] = ACTIONS(1960), + [anon_sym_function] = ACTIONS(1960), + [anon_sym_QMARK_DOT] = ACTIONS(1964), + [anon_sym_new] = ACTIONS(1960), + [anon_sym_QMARK] = ACTIONS(1962), + [anon_sym_AMP_AMP] = ACTIONS(1964), + [anon_sym_PIPE_PIPE] = ACTIONS(1964), + [anon_sym_GT_GT] = ACTIONS(1962), + [anon_sym_GT_GT_GT] = ACTIONS(1964), + [anon_sym_LT_LT] = ACTIONS(1964), + [anon_sym_AMP] = ACTIONS(1962), + [anon_sym_CARET] = ACTIONS(1964), + [anon_sym_PIPE] = ACTIONS(1962), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_PERCENT] = ACTIONS(1964), + [anon_sym_STAR_STAR] = ACTIONS(1964), + [anon_sym_LT_EQ] = ACTIONS(1964), + [anon_sym_EQ_EQ] = ACTIONS(1962), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1964), + [anon_sym_BANG_EQ] = ACTIONS(1962), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1964), + [anon_sym_GT_EQ] = ACTIONS(1964), + [anon_sym_QMARK_QMARK] = ACTIONS(1964), + [anon_sym_instanceof] = ACTIONS(1962), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_void] = ACTIONS(1960), + [anon_sym_delete] = ACTIONS(1960), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1958), + [sym_number] = ACTIONS(1958), + [sym_this] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_true] = ACTIONS(1960), + [sym_false] = ACTIONS(1960), + [sym_null] = ACTIONS(1960), + [sym_undefined] = ACTIONS(1960), + [anon_sym_AT] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_readonly] = ACTIONS(1960), + [anon_sym_get] = ACTIONS(1960), + [anon_sym_set] = ACTIONS(1960), + [anon_sym_declare] = ACTIONS(1960), + [anon_sym_public] = ACTIONS(1960), + [anon_sym_private] = ACTIONS(1960), + [anon_sym_protected] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_any] = ACTIONS(1960), + [anon_sym_number] = ACTIONS(1960), + [anon_sym_boolean] = ACTIONS(1960), + [anon_sym_string] = ACTIONS(1960), + [anon_sym_symbol] = ACTIONS(1960), + [anon_sym_abstract] = ACTIONS(1960), + [anon_sym_interface] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [sym__automatic_semicolon] = ACTIONS(1966), + }, + [142] = { + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [anon_sym_export] = ACTIONS(1970), + [anon_sym_STAR] = ACTIONS(1972), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_as] = ACTIONS(1972), + [anon_sym_namespace] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_COMMA] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1970), + [anon_sym_import] = ACTIONS(1970), + [anon_sym_var] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1970), + [anon_sym_else] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_await] = ACTIONS(1970), + [anon_sym_in] = ACTIONS(1972), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_do] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [anon_sym_with] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_debugger] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_throw] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1970), + [anon_sym_yield] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1970), + [anon_sym_GT] = ACTIONS(1972), + [anon_sym_SLASH] = ACTIONS(1970), + [anon_sym_DOT] = ACTIONS(1972), + [anon_sym_class] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_function] = ACTIONS(1970), + [anon_sym_QMARK_DOT] = ACTIONS(1974), + [anon_sym_new] = ACTIONS(1970), + [anon_sym_QMARK] = ACTIONS(1972), + [anon_sym_AMP_AMP] = ACTIONS(1974), + [anon_sym_PIPE_PIPE] = ACTIONS(1974), + [anon_sym_GT_GT] = ACTIONS(1972), + [anon_sym_GT_GT_GT] = ACTIONS(1974), + [anon_sym_LT_LT] = ACTIONS(1974), + [anon_sym_AMP] = ACTIONS(1972), + [anon_sym_CARET] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1972), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_PERCENT] = ACTIONS(1974), + [anon_sym_STAR_STAR] = ACTIONS(1974), + [anon_sym_LT_EQ] = ACTIONS(1974), + [anon_sym_EQ_EQ] = ACTIONS(1972), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1974), + [anon_sym_BANG_EQ] = ACTIONS(1972), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1974), + [anon_sym_GT_EQ] = ACTIONS(1974), + [anon_sym_QMARK_QMARK] = ACTIONS(1974), + [anon_sym_instanceof] = ACTIONS(1972), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_void] = ACTIONS(1970), + [anon_sym_delete] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1968), + [sym_number] = ACTIONS(1968), + [sym_this] = ACTIONS(1970), + [sym_super] = ACTIONS(1970), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [sym_null] = ACTIONS(1970), + [sym_undefined] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_readonly] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1970), + [anon_sym_set] = ACTIONS(1970), + [anon_sym_declare] = ACTIONS(1970), + [anon_sym_public] = ACTIONS(1970), + [anon_sym_private] = ACTIONS(1970), + [anon_sym_protected] = ACTIONS(1970), + [anon_sym_module] = ACTIONS(1970), + [anon_sym_any] = ACTIONS(1970), + [anon_sym_number] = ACTIONS(1970), + [anon_sym_boolean] = ACTIONS(1970), + [anon_sym_string] = ACTIONS(1970), + [anon_sym_symbol] = ACTIONS(1970), + [anon_sym_abstract] = ACTIONS(1970), + [anon_sym_interface] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [sym__automatic_semicolon] = ACTIONS(1976), }, [143] = { - [ts_builtin_sym_end] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1974), - [anon_sym_export] = ACTIONS(1974), - [anon_sym_STAR] = ACTIONS(1976), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_type] = ACTIONS(1974), - [anon_sym_as] = ACTIONS(1976), - [anon_sym_namespace] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1972), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1980), + [anon_sym_export] = ACTIONS(1980), + [anon_sym_STAR] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_as] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1978), [anon_sym_COMMA] = ACTIONS(1978), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1974), - [anon_sym_import] = ACTIONS(1974), - [anon_sym_var] = ACTIONS(1974), - [anon_sym_let] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1974), - [anon_sym_else] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_switch] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_await] = ACTIONS(1974), - [anon_sym_in] = ACTIONS(1976), - [anon_sym_while] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_try] = ACTIONS(1974), - [anon_sym_with] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_debugger] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_throw] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_case] = ACTIONS(1974), - [anon_sym_yield] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1974), - [anon_sym_GT] = ACTIONS(1976), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_DOT] = ACTIONS(1976), - [anon_sym_class] = ACTIONS(1974), - [anon_sym_async] = ACTIONS(1974), - [anon_sym_function] = ACTIONS(1974), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_typeof] = ACTIONS(1980), + [anon_sym_import] = ACTIONS(1980), + [anon_sym_var] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1980), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_await] = ACTIONS(1980), + [anon_sym_in] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_with] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_debugger] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_throw] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1980), + [anon_sym_GT] = ACTIONS(1980), + [anon_sym_SLASH] = ACTIONS(1980), + [anon_sym_DOT] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1980), + [anon_sym_async] = ACTIONS(1980), + [anon_sym_function] = ACTIONS(1980), [anon_sym_QMARK_DOT] = ACTIONS(1978), - [anon_sym_new] = ACTIONS(1974), - [anon_sym_QMARK] = ACTIONS(1976), + [anon_sym_new] = ACTIONS(1980), + [anon_sym_QMARK] = ACTIONS(1980), [anon_sym_AMP_AMP] = ACTIONS(1978), [anon_sym_PIPE_PIPE] = ACTIONS(1978), - [anon_sym_GT_GT] = ACTIONS(1976), + [anon_sym_GT_GT] = ACTIONS(1980), [anon_sym_GT_GT_GT] = ACTIONS(1978), [anon_sym_LT_LT] = ACTIONS(1978), - [anon_sym_AMP] = ACTIONS(1976), + [anon_sym_AMP] = ACTIONS(1980), [anon_sym_CARET] = ACTIONS(1978), - [anon_sym_PIPE] = ACTIONS(1976), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_DASH] = ACTIONS(1974), + [anon_sym_PIPE] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_DASH] = ACTIONS(1980), [anon_sym_PERCENT] = ACTIONS(1978), [anon_sym_STAR_STAR] = ACTIONS(1978), [anon_sym_LT_EQ] = ACTIONS(1978), - [anon_sym_EQ_EQ] = ACTIONS(1976), + [anon_sym_EQ_EQ] = ACTIONS(1980), [anon_sym_EQ_EQ_EQ] = ACTIONS(1978), - [anon_sym_BANG_EQ] = ACTIONS(1976), + [anon_sym_BANG_EQ] = ACTIONS(1980), [anon_sym_BANG_EQ_EQ] = ACTIONS(1978), [anon_sym_GT_EQ] = ACTIONS(1978), [anon_sym_QMARK_QMARK] = ACTIONS(1978), - [anon_sym_instanceof] = ACTIONS(1976), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_void] = ACTIONS(1974), - [anon_sym_delete] = ACTIONS(1974), - [anon_sym_PLUS_PLUS] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1972), - [sym_number] = ACTIONS(1972), - [sym_this] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [sym_null] = ACTIONS(1974), - [sym_undefined] = ACTIONS(1974), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_readonly] = 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), - [anon_sym_abstract] = ACTIONS(1974), - [anon_sym_interface] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [sym__automatic_semicolon] = ACTIONS(1980), + [anon_sym_instanceof] = ACTIONS(1980), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_void] = ACTIONS(1980), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1978), + [sym_number] = ACTIONS(1978), + [sym_this] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [sym_null] = ACTIONS(1980), + [sym_undefined] = ACTIONS(1980), + [anon_sym_AT] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_readonly] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1980), + [anon_sym_declare] = ACTIONS(1980), + [anon_sym_public] = ACTIONS(1980), + [anon_sym_private] = ACTIONS(1980), + [anon_sym_protected] = ACTIONS(1980), + [anon_sym_module] = ACTIONS(1980), + [anon_sym_any] = ACTIONS(1980), + [anon_sym_number] = ACTIONS(1980), + [anon_sym_boolean] = ACTIONS(1980), + [anon_sym_string] = ACTIONS(1980), + [anon_sym_symbol] = ACTIONS(1980), + [anon_sym_abstract] = ACTIONS(1980), + [anon_sym_interface] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [sym__automatic_semicolon] = ACTIONS(1978), }, [144] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_STAR] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_as] = ACTIONS(1984), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_COMMA] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_var] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1984), - [anon_sym_else] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_switch] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_in] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_do] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_with] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_debugger] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_throw] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1984), - [anon_sym_GT] = ACTIONS(1984), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(1984), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_QMARK_DOT] = ACTIONS(1982), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_QMARK] = ACTIONS(1984), - [anon_sym_AMP_AMP] = ACTIONS(1982), - [anon_sym_PIPE_PIPE] = ACTIONS(1982), - [anon_sym_GT_GT] = ACTIONS(1984), - [anon_sym_GT_GT_GT] = ACTIONS(1982), - [anon_sym_LT_LT] = ACTIONS(1982), - [anon_sym_AMP] = ACTIONS(1984), - [anon_sym_CARET] = ACTIONS(1982), - [anon_sym_PIPE] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_PERCENT] = ACTIONS(1982), - [anon_sym_STAR_STAR] = ACTIONS(1982), - [anon_sym_LT_EQ] = ACTIONS(1982), - [anon_sym_EQ_EQ] = ACTIONS(1984), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1982), - [anon_sym_BANG_EQ] = ACTIONS(1984), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1982), - [anon_sym_GT_EQ] = ACTIONS(1982), - [anon_sym_QMARK_QMARK] = ACTIONS(1982), - [anon_sym_instanceof] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_number] = ACTIONS(1982), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_abstract] = ACTIONS(1984), - [anon_sym_interface] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - [sym__automatic_semicolon] = ACTIONS(1982), - }, - [145] = { - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_STAR] = ACTIONS(1990), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_as] = ACTIONS(1990), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_COMMA] = ACTIONS(1992), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_typeof] = ACTIONS(1988), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_var] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1988), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_in] = ACTIONS(1990), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [anon_sym_with] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_debugger] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_throw] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1988), - [anon_sym_GT] = ACTIONS(1990), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_DOT] = ACTIONS(1990), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), - [anon_sym_QMARK_DOT] = ACTIONS(1992), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_QMARK] = ACTIONS(1990), - [anon_sym_AMP_AMP] = ACTIONS(1992), - [anon_sym_PIPE_PIPE] = ACTIONS(1992), - [anon_sym_GT_GT] = ACTIONS(1990), - [anon_sym_GT_GT_GT] = ACTIONS(1992), - [anon_sym_LT_LT] = ACTIONS(1992), - [anon_sym_AMP] = ACTIONS(1990), - [anon_sym_CARET] = ACTIONS(1992), - [anon_sym_PIPE] = ACTIONS(1990), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_PERCENT] = ACTIONS(1992), - [anon_sym_STAR_STAR] = ACTIONS(1992), - [anon_sym_LT_EQ] = ACTIONS(1992), - [anon_sym_EQ_EQ] = ACTIONS(1990), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1992), - [anon_sym_BANG_EQ] = ACTIONS(1990), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1992), - [anon_sym_GT_EQ] = ACTIONS(1992), - [anon_sym_QMARK_QMARK] = ACTIONS(1992), - [anon_sym_instanceof] = ACTIONS(1990), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_void] = ACTIONS(1988), - [anon_sym_delete] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1986), - [sym_number] = ACTIONS(1986), - [sym_this] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_undefined] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_abstract] = ACTIONS(1988), - [anon_sym_interface] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [sym__automatic_semicolon] = ACTIONS(1994), - }, - [146] = { - [sym_nested_identifier] = STATE(5804), - [sym_string] = STATE(3944), - [sym_formal_parameters] = STATE(5709), - [sym_nested_type_identifier] = STATE(3890), - [sym__type] = STATE(3977), - [sym_constructor_type] = STATE(3977), - [sym__primary_type] = STATE(3954), - [sym_infer_type] = STATE(3977), - [sym_conditional_type] = STATE(3945), - [sym_generic_type] = STATE(3945), - [sym_type_query] = STATE(3945), - [sym_index_type_query] = STATE(3945), - [sym_lookup_type] = STATE(3945), - [sym_literal_type] = STATE(3945), - [sym__number] = STATE(3963), - [sym_existential_type] = STATE(3945), - [sym_flow_maybe_type] = STATE(3945), - [sym_parenthesized_type] = STATE(3945), - [sym_predefined_type] = STATE(3945), - [sym_object_type] = STATE(3945), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3945), - [sym_tuple_type] = STATE(3945), - [sym_readonly_type] = STATE(3977), - [sym_union_type] = STATE(3977), - [sym_intersection_type] = STATE(3977), - [sym_function_type] = STATE(3977), - [sym_identifier] = ACTIONS(1996), - [anon_sym_STAR] = ACTIONS(1998), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(2000), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_typeof] = ACTIONS(2002), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(2006), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(2008), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2010), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(2012), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(2014), - [anon_sym_PLUS] = ACTIONS(2016), - [anon_sym_DASH] = ACTIONS(2016), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(2018), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2024), - [sym_this] = ACTIONS(2026), - [sym_true] = ACTIONS(2028), - [sym_false] = ACTIONS(2028), - [anon_sym_readonly] = ACTIONS(2030), - [anon_sym_any] = ACTIONS(2018), - [anon_sym_number] = ACTIONS(2018), - [anon_sym_boolean] = ACTIONS(2018), - [anon_sym_string] = ACTIONS(2018), - [anon_sym_symbol] = ACTIONS(2018), - [anon_sym_infer] = ACTIONS(734), - [anon_sym_keyof] = ACTIONS(736), - [anon_sym_LBRACE_PIPE] = ACTIONS(738), - }, - [147] = { - [ts_builtin_sym_end] = ACTIONS(2032), - [sym_identifier] = ACTIONS(2034), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_STAR] = ACTIONS(2036), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_as] = ACTIONS(2036), - [anon_sym_namespace] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_COMMA] = ACTIONS(2038), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(2034), - [anon_sym_import] = ACTIONS(2034), - [anon_sym_var] = ACTIONS(2034), - [anon_sym_let] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2034), - [anon_sym_else] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2034), - [anon_sym_in] = ACTIONS(2036), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_try] = ACTIONS(2034), - [anon_sym_with] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_debugger] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_throw] = ACTIONS(2034), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_yield] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2034), - [anon_sym_GT] = ACTIONS(2036), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_DOT] = ACTIONS(2036), - [anon_sym_class] = ACTIONS(2034), - [anon_sym_async] = ACTIONS(2034), - [anon_sym_function] = ACTIONS(2034), - [anon_sym_QMARK_DOT] = ACTIONS(2038), - [anon_sym_new] = ACTIONS(2034), - [anon_sym_QMARK] = ACTIONS(2036), - [anon_sym_AMP_AMP] = ACTIONS(2038), - [anon_sym_PIPE_PIPE] = ACTIONS(2038), - [anon_sym_GT_GT] = ACTIONS(2036), - [anon_sym_GT_GT_GT] = ACTIONS(2038), - [anon_sym_LT_LT] = ACTIONS(2038), - [anon_sym_AMP] = ACTIONS(2036), - [anon_sym_CARET] = ACTIONS(2038), - [anon_sym_PIPE] = ACTIONS(2036), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_PERCENT] = ACTIONS(2038), - [anon_sym_STAR_STAR] = ACTIONS(2038), - [anon_sym_LT_EQ] = ACTIONS(2038), - [anon_sym_EQ_EQ] = ACTIONS(2036), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2038), - [anon_sym_BANG_EQ] = ACTIONS(2036), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2038), - [anon_sym_GT_EQ] = ACTIONS(2038), - [anon_sym_QMARK_QMARK] = ACTIONS(2038), - [anon_sym_instanceof] = ACTIONS(2036), - [anon_sym_TILDE] = ACTIONS(2032), - [anon_sym_void] = ACTIONS(2034), - [anon_sym_delete] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2032), - [sym_number] = ACTIONS(2032), - [sym_this] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_undefined] = ACTIONS(2034), - [anon_sym_AT] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_readonly] = ACTIONS(2034), - [anon_sym_get] = ACTIONS(2034), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_declare] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_protected] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_any] = ACTIONS(2034), - [anon_sym_number] = ACTIONS(2034), - [anon_sym_boolean] = ACTIONS(2034), - [anon_sym_string] = ACTIONS(2034), - [anon_sym_symbol] = ACTIONS(2034), - [anon_sym_abstract] = ACTIONS(2034), - [anon_sym_interface] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [sym__automatic_semicolon] = ACTIONS(2040), - }, - [148] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2044), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1984), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [149] = { - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_export] = ACTIONS(2048), - [anon_sym_STAR] = ACTIONS(2050), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_as] = ACTIONS(2050), - [anon_sym_namespace] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_COMMA] = ACTIONS(2052), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_typeof] = ACTIONS(2048), - [anon_sym_import] = ACTIONS(2048), - [anon_sym_var] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2048), - [anon_sym_else] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_switch] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_await] = ACTIONS(2048), - [anon_sym_in] = ACTIONS(2050), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [anon_sym_with] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_debugger] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_throw] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_case] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2048), - [anon_sym_GT] = ACTIONS(2050), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_DOT] = ACTIONS(2050), - [anon_sym_class] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_function] = ACTIONS(2048), - [anon_sym_QMARK_DOT] = ACTIONS(2052), - [anon_sym_new] = ACTIONS(2048), - [anon_sym_QMARK] = ACTIONS(2050), - [anon_sym_AMP_AMP] = ACTIONS(2052), - [anon_sym_PIPE_PIPE] = ACTIONS(2052), - [anon_sym_GT_GT] = ACTIONS(2050), - [anon_sym_GT_GT_GT] = ACTIONS(2052), - [anon_sym_LT_LT] = ACTIONS(2052), - [anon_sym_AMP] = ACTIONS(2050), - [anon_sym_CARET] = ACTIONS(2052), - [anon_sym_PIPE] = ACTIONS(2050), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_PERCENT] = ACTIONS(2052), - [anon_sym_STAR_STAR] = ACTIONS(2052), - [anon_sym_LT_EQ] = ACTIONS(2052), - [anon_sym_EQ_EQ] = ACTIONS(2050), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2052), - [anon_sym_BANG_EQ] = ACTIONS(2050), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2052), - [anon_sym_GT_EQ] = ACTIONS(2052), - [anon_sym_QMARK_QMARK] = ACTIONS(2052), - [anon_sym_instanceof] = ACTIONS(2050), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_void] = ACTIONS(2048), - [anon_sym_delete] = ACTIONS(2048), - [anon_sym_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2046), - [sym_number] = ACTIONS(2046), - [sym_this] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_true] = ACTIONS(2048), - [sym_false] = ACTIONS(2048), - [sym_null] = ACTIONS(2048), - [sym_undefined] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2046), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_readonly] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(2048), - [anon_sym_set] = ACTIONS(2048), - [anon_sym_declare] = ACTIONS(2048), - [anon_sym_public] = ACTIONS(2048), - [anon_sym_private] = ACTIONS(2048), - [anon_sym_protected] = ACTIONS(2048), - [anon_sym_module] = ACTIONS(2048), - [anon_sym_any] = ACTIONS(2048), - [anon_sym_number] = ACTIONS(2048), - [anon_sym_boolean] = ACTIONS(2048), - [anon_sym_string] = ACTIONS(2048), - [anon_sym_symbol] = ACTIONS(2048), - [anon_sym_abstract] = ACTIONS(2048), - [anon_sym_interface] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [sym__automatic_semicolon] = ACTIONS(2054), - }, - [150] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2058), - [anon_sym_export] = ACTIONS(2058), - [anon_sym_STAR] = ACTIONS(2060), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_type] = ACTIONS(2058), - [anon_sym_as] = ACTIONS(2060), - [anon_sym_namespace] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_COMMA] = ACTIONS(2062), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym_import] = ACTIONS(2058), - [anon_sym_var] = ACTIONS(2058), - [anon_sym_let] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2058), - [anon_sym_else] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_await] = ACTIONS(2058), - [anon_sym_in] = ACTIONS(2060), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_try] = ACTIONS(2058), - [anon_sym_with] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_debugger] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_throw] = ACTIONS(2058), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_yield] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2058), - [anon_sym_GT] = ACTIONS(2060), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_DOT] = ACTIONS(2060), - [anon_sym_class] = ACTIONS(2058), - [anon_sym_async] = ACTIONS(2058), - [anon_sym_function] = ACTIONS(2058), - [anon_sym_QMARK_DOT] = ACTIONS(2062), - [anon_sym_new] = ACTIONS(2058), - [anon_sym_QMARK] = ACTIONS(2060), - [anon_sym_AMP_AMP] = ACTIONS(2062), - [anon_sym_PIPE_PIPE] = ACTIONS(2062), - [anon_sym_GT_GT] = ACTIONS(2060), - [anon_sym_GT_GT_GT] = ACTIONS(2062), - [anon_sym_LT_LT] = ACTIONS(2062), - [anon_sym_AMP] = ACTIONS(2060), - [anon_sym_CARET] = ACTIONS(2062), - [anon_sym_PIPE] = ACTIONS(2060), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_PERCENT] = ACTIONS(2062), - [anon_sym_STAR_STAR] = ACTIONS(2062), - [anon_sym_LT_EQ] = ACTIONS(2062), - [anon_sym_EQ_EQ] = ACTIONS(2060), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2062), - [anon_sym_BANG_EQ] = ACTIONS(2060), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2062), - [anon_sym_GT_EQ] = ACTIONS(2062), - [anon_sym_QMARK_QMARK] = ACTIONS(2062), - [anon_sym_instanceof] = ACTIONS(2060), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_void] = ACTIONS(2058), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_PLUS_PLUS] = ACTIONS(2056), - [anon_sym_DASH_DASH] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2056), - [sym_number] = ACTIONS(2056), - [sym_this] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_undefined] = ACTIONS(2058), - [anon_sym_AT] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_readonly] = ACTIONS(2058), - [anon_sym_get] = ACTIONS(2058), - [anon_sym_set] = ACTIONS(2058), - [anon_sym_declare] = ACTIONS(2058), - [anon_sym_public] = ACTIONS(2058), - [anon_sym_private] = ACTIONS(2058), - [anon_sym_protected] = ACTIONS(2058), - [anon_sym_module] = ACTIONS(2058), - [anon_sym_any] = ACTIONS(2058), - [anon_sym_number] = ACTIONS(2058), - [anon_sym_boolean] = ACTIONS(2058), - [anon_sym_string] = ACTIONS(2058), - [anon_sym_symbol] = ACTIONS(2058), - [anon_sym_abstract] = ACTIONS(2058), - [anon_sym_interface] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), - [sym__automatic_semicolon] = ACTIONS(2062), - }, - [151] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [145] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2066), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_implements] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [152] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [146] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [147] = { + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [anon_sym_export] = ACTIONS(1996), + [anon_sym_STAR] = ACTIONS(1998), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_type] = ACTIONS(1996), + [anon_sym_as] = ACTIONS(1998), + [anon_sym_namespace] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_COMMA] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_typeof] = ACTIONS(1996), + [anon_sym_import] = ACTIONS(1996), + [anon_sym_var] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1996), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_await] = ACTIONS(1996), + [anon_sym_in] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_with] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_debugger] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_yield] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1996), + [anon_sym_GT] = ACTIONS(1998), + [anon_sym_SLASH] = ACTIONS(1996), + [anon_sym_DOT] = ACTIONS(1998), + [anon_sym_class] = ACTIONS(1996), + [anon_sym_async] = ACTIONS(1996), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_QMARK_DOT] = ACTIONS(2000), + [anon_sym_new] = ACTIONS(1996), + [anon_sym_QMARK] = ACTIONS(1998), + [anon_sym_AMP_AMP] = ACTIONS(2000), + [anon_sym_PIPE_PIPE] = ACTIONS(2000), + [anon_sym_GT_GT] = ACTIONS(1998), + [anon_sym_GT_GT_GT] = ACTIONS(2000), + [anon_sym_LT_LT] = ACTIONS(2000), + [anon_sym_AMP] = ACTIONS(1998), + [anon_sym_CARET] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(1998), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_PERCENT] = ACTIONS(2000), + [anon_sym_STAR_STAR] = ACTIONS(2000), + [anon_sym_LT_EQ] = ACTIONS(2000), + [anon_sym_EQ_EQ] = ACTIONS(1998), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2000), + [anon_sym_BANG_EQ] = ACTIONS(1998), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2000), + [anon_sym_GT_EQ] = ACTIONS(2000), + [anon_sym_QMARK_QMARK] = ACTIONS(2000), + [anon_sym_instanceof] = ACTIONS(1998), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_void] = ACTIONS(1996), + [anon_sym_delete] = ACTIONS(1996), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1994), + [sym_number] = ACTIONS(1994), + [sym_this] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [sym_null] = ACTIONS(1996), + [sym_undefined] = ACTIONS(1996), + [anon_sym_AT] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_readonly] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(1996), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_declare] = ACTIONS(1996), + [anon_sym_public] = ACTIONS(1996), + [anon_sym_private] = ACTIONS(1996), + [anon_sym_protected] = ACTIONS(1996), + [anon_sym_module] = ACTIONS(1996), + [anon_sym_any] = ACTIONS(1996), + [anon_sym_number] = ACTIONS(1996), + [anon_sym_boolean] = ACTIONS(1996), + [anon_sym_string] = ACTIONS(1996), + [anon_sym_symbol] = ACTIONS(1996), + [anon_sym_abstract] = ACTIONS(1996), + [anon_sym_interface] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), + [sym__automatic_semicolon] = ACTIONS(2000), + }, + [148] = { + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2004), + [anon_sym_export] = ACTIONS(2004), + [anon_sym_STAR] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2004), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_COMMA] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym_import] = ACTIONS(2004), + [anon_sym_var] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_await] = ACTIONS(2004), + [anon_sym_in] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_with] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_debugger] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_throw] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_yield] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2004), + [anon_sym_GT] = ACTIONS(2004), + [anon_sym_SLASH] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(2004), + [anon_sym_async] = ACTIONS(2004), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_QMARK_DOT] = ACTIONS(2002), + [anon_sym_new] = ACTIONS(2004), + [anon_sym_QMARK] = ACTIONS(2004), + [anon_sym_AMP_AMP] = ACTIONS(2002), + [anon_sym_PIPE_PIPE] = ACTIONS(2002), + [anon_sym_GT_GT] = ACTIONS(2004), + [anon_sym_GT_GT_GT] = ACTIONS(2002), + [anon_sym_LT_LT] = ACTIONS(2002), + [anon_sym_AMP] = ACTIONS(2004), + [anon_sym_CARET] = ACTIONS(2002), + [anon_sym_PIPE] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_PERCENT] = ACTIONS(2002), + [anon_sym_STAR_STAR] = ACTIONS(2002), + [anon_sym_LT_EQ] = ACTIONS(2002), + [anon_sym_EQ_EQ] = ACTIONS(2004), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2002), + [anon_sym_BANG_EQ] = ACTIONS(2004), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2002), + [anon_sym_GT_EQ] = ACTIONS(2002), + [anon_sym_QMARK_QMARK] = ACTIONS(2002), + [anon_sym_instanceof] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_void] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2004), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2002), + [sym_number] = ACTIONS(2002), + [sym_this] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_undefined] = ACTIONS(2004), + [anon_sym_AT] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(2004), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_declare] = ACTIONS(2004), + [anon_sym_public] = ACTIONS(2004), + [anon_sym_private] = ACTIONS(2004), + [anon_sym_protected] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_any] = ACTIONS(2004), + [anon_sym_number] = ACTIONS(2004), + [anon_sym_boolean] = ACTIONS(2004), + [anon_sym_string] = ACTIONS(2004), + [anon_sym_symbol] = ACTIONS(2004), + [anon_sym_abstract] = ACTIONS(2004), + [anon_sym_interface] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + [sym__automatic_semicolon] = ACTIONS(2002), + }, + [149] = { + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(2008), + [anon_sym_STAR] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_type] = ACTIONS(2008), + [anon_sym_as] = ACTIONS(2008), + [anon_sym_namespace] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_COMMA] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_typeof] = ACTIONS(2008), + [anon_sym_import] = ACTIONS(2008), + [anon_sym_var] = ACTIONS(2008), + [anon_sym_let] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2008), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_await] = ACTIONS(2008), + [anon_sym_in] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_with] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_debugger] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_throw] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_yield] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_LT] = ACTIONS(2008), + [anon_sym_GT] = ACTIONS(2008), + [anon_sym_SLASH] = ACTIONS(2008), + [anon_sym_DOT] = ACTIONS(2008), + [anon_sym_class] = ACTIONS(2008), + [anon_sym_async] = ACTIONS(2008), + [anon_sym_function] = ACTIONS(2008), + [anon_sym_QMARK_DOT] = ACTIONS(2006), + [anon_sym_new] = ACTIONS(2008), + [anon_sym_QMARK] = ACTIONS(2008), + [anon_sym_AMP_AMP] = ACTIONS(2006), + [anon_sym_PIPE_PIPE] = ACTIONS(2006), + [anon_sym_GT_GT] = ACTIONS(2008), + [anon_sym_GT_GT_GT] = ACTIONS(2006), + [anon_sym_LT_LT] = ACTIONS(2006), + [anon_sym_AMP] = ACTIONS(2008), + [anon_sym_CARET] = ACTIONS(2006), + [anon_sym_PIPE] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_PERCENT] = ACTIONS(2006), + [anon_sym_STAR_STAR] = ACTIONS(2006), + [anon_sym_LT_EQ] = ACTIONS(2006), + [anon_sym_EQ_EQ] = ACTIONS(2008), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2006), + [anon_sym_BANG_EQ] = ACTIONS(2008), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2006), + [anon_sym_GT_EQ] = ACTIONS(2006), + [anon_sym_QMARK_QMARK] = ACTIONS(2006), + [anon_sym_instanceof] = ACTIONS(2008), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_void] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2006), + [sym_number] = ACTIONS(2006), + [sym_this] = ACTIONS(2008), + [sym_super] = ACTIONS(2008), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [sym_null] = ACTIONS(2008), + [sym_undefined] = ACTIONS(2008), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_readonly] = ACTIONS(2008), + [anon_sym_get] = ACTIONS(2008), + [anon_sym_set] = ACTIONS(2008), + [anon_sym_declare] = ACTIONS(2008), + [anon_sym_public] = ACTIONS(2008), + [anon_sym_private] = ACTIONS(2008), + [anon_sym_protected] = ACTIONS(2008), + [anon_sym_module] = ACTIONS(2008), + [anon_sym_any] = ACTIONS(2008), + [anon_sym_number] = ACTIONS(2008), + [anon_sym_boolean] = ACTIONS(2008), + [anon_sym_string] = ACTIONS(2008), + [anon_sym_symbol] = ACTIONS(2008), + [anon_sym_abstract] = ACTIONS(2008), + [anon_sym_interface] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), + [sym__automatic_semicolon] = ACTIONS(2006), + }, + [150] = { + [ts_builtin_sym_end] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2012), + [anon_sym_export] = ACTIONS(2012), + [anon_sym_STAR] = ACTIONS(2014), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_as] = ACTIONS(2014), + [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_COMMA] = ACTIONS(2016), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_import] = ACTIONS(2012), + [anon_sym_var] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_await] = ACTIONS(2012), + [anon_sym_in] = ACTIONS(2014), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_with] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_debugger] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_throw] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_yield] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LT] = ACTIONS(2012), + [anon_sym_GT] = ACTIONS(2014), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_DOT] = ACTIONS(2014), + [anon_sym_class] = ACTIONS(2012), + [anon_sym_async] = ACTIONS(2012), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_QMARK_DOT] = ACTIONS(2016), + [anon_sym_new] = ACTIONS(2012), + [anon_sym_QMARK] = ACTIONS(2014), + [anon_sym_AMP_AMP] = ACTIONS(2016), + [anon_sym_PIPE_PIPE] = ACTIONS(2016), + [anon_sym_GT_GT] = ACTIONS(2014), + [anon_sym_GT_GT_GT] = ACTIONS(2016), + [anon_sym_LT_LT] = ACTIONS(2016), + [anon_sym_AMP] = ACTIONS(2014), + [anon_sym_CARET] = ACTIONS(2016), + [anon_sym_PIPE] = ACTIONS(2014), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_PERCENT] = ACTIONS(2016), + [anon_sym_STAR_STAR] = ACTIONS(2016), + [anon_sym_LT_EQ] = ACTIONS(2016), + [anon_sym_EQ_EQ] = ACTIONS(2014), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2016), + [anon_sym_BANG_EQ] = ACTIONS(2014), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2016), + [anon_sym_GT_EQ] = ACTIONS(2016), + [anon_sym_QMARK_QMARK] = ACTIONS(2016), + [anon_sym_instanceof] = ACTIONS(2014), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_void] = ACTIONS(2012), + [anon_sym_delete] = ACTIONS(2012), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2010), + [sym_number] = ACTIONS(2010), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_undefined] = ACTIONS(2012), + [anon_sym_AT] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_readonly] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(2012), + [anon_sym_set] = ACTIONS(2012), + [anon_sym_declare] = ACTIONS(2012), + [anon_sym_public] = ACTIONS(2012), + [anon_sym_private] = ACTIONS(2012), + [anon_sym_protected] = ACTIONS(2012), + [anon_sym_module] = ACTIONS(2012), + [anon_sym_any] = ACTIONS(2012), + [anon_sym_number] = ACTIONS(2012), + [anon_sym_boolean] = ACTIONS(2012), + [anon_sym_string] = ACTIONS(2012), + [anon_sym_symbol] = ACTIONS(2012), + [anon_sym_abstract] = ACTIONS(2012), + [anon_sym_interface] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [sym__automatic_semicolon] = ACTIONS(2018), + }, + [151] = { + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_STAR] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_as] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2022), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2022), + [anon_sym_in] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_with] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_debugger] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2022), + [anon_sym_GT] = ACTIONS(2022), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_DOT] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_QMARK_DOT] = ACTIONS(2020), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_QMARK] = ACTIONS(2022), + [anon_sym_AMP_AMP] = ACTIONS(2020), + [anon_sym_PIPE_PIPE] = ACTIONS(2020), + [anon_sym_GT_GT] = ACTIONS(2022), + [anon_sym_GT_GT_GT] = ACTIONS(2020), + [anon_sym_LT_LT] = ACTIONS(2020), + [anon_sym_AMP] = ACTIONS(2022), + [anon_sym_CARET] = ACTIONS(2020), + [anon_sym_PIPE] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_PERCENT] = ACTIONS(2020), + [anon_sym_STAR_STAR] = ACTIONS(2020), + [anon_sym_LT_EQ] = ACTIONS(2020), + [anon_sym_EQ_EQ] = ACTIONS(2022), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2020), + [anon_sym_BANG_EQ] = ACTIONS(2022), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2020), + [anon_sym_GT_EQ] = ACTIONS(2020), + [anon_sym_QMARK_QMARK] = ACTIONS(2020), + [anon_sym_instanceof] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_void] = ACTIONS(2022), + [anon_sym_delete] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2020), + [sym_number] = ACTIONS(2020), + [sym_this] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_true] = ACTIONS(2022), + [sym_false] = ACTIONS(2022), + [sym_null] = ACTIONS(2022), + [sym_undefined] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), + [sym__automatic_semicolon] = ACTIONS(2020), + }, + [152] = { + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_STAR] = ACTIONS(2028), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_as] = ACTIONS(2028), + [anon_sym_namespace] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_COMMA] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(2026), + [anon_sym_import] = ACTIONS(2026), + [anon_sym_var] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2026), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_switch] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_await] = ACTIONS(2026), + [anon_sym_in] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_with] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_debugger] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_throw] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2026), + [anon_sym_GT] = ACTIONS(2028), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_DOT] = ACTIONS(2028), + [anon_sym_class] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(2026), + [anon_sym_QMARK_DOT] = ACTIONS(2030), + [anon_sym_new] = ACTIONS(2026), + [anon_sym_QMARK] = ACTIONS(2028), + [anon_sym_AMP_AMP] = ACTIONS(2030), + [anon_sym_PIPE_PIPE] = ACTIONS(2030), + [anon_sym_GT_GT] = ACTIONS(2028), + [anon_sym_GT_GT_GT] = ACTIONS(2030), + [anon_sym_LT_LT] = ACTIONS(2030), + [anon_sym_AMP] = ACTIONS(2028), + [anon_sym_CARET] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2028), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_PERCENT] = ACTIONS(2030), + [anon_sym_STAR_STAR] = ACTIONS(2030), + [anon_sym_LT_EQ] = ACTIONS(2030), + [anon_sym_EQ_EQ] = ACTIONS(2028), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2030), + [anon_sym_BANG_EQ] = ACTIONS(2028), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2030), + [anon_sym_GT_EQ] = ACTIONS(2030), + [anon_sym_QMARK_QMARK] = ACTIONS(2030), + [anon_sym_instanceof] = ACTIONS(2028), + [anon_sym_TILDE] = ACTIONS(2024), + [anon_sym_void] = ACTIONS(2026), + [anon_sym_delete] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2024), + [sym_number] = ACTIONS(2024), + [sym_this] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_true] = ACTIONS(2026), + [sym_false] = ACTIONS(2026), + [sym_null] = ACTIONS(2026), + [sym_undefined] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), + [anon_sym_abstract] = ACTIONS(2026), + [anon_sym_interface] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [sym__automatic_semicolon] = ACTIONS(2032), }, [153] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), + [anon_sym_export] = ACTIONS(2036), + [anon_sym_STAR] = ACTIONS(2038), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_as] = ACTIONS(2038), + [anon_sym_namespace] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_COMMA] = ACTIONS(2040), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym_import] = ACTIONS(2036), + [anon_sym_var] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2036), + [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_in] = ACTIONS(2038), + [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(2036), + [anon_sym_GT] = ACTIONS(2038), + [anon_sym_SLASH] = ACTIONS(2036), + [anon_sym_DOT] = ACTIONS(2038), + [anon_sym_class] = ACTIONS(2036), + [anon_sym_async] = ACTIONS(2036), + [anon_sym_function] = ACTIONS(2036), + [anon_sym_QMARK_DOT] = ACTIONS(2040), + [anon_sym_new] = ACTIONS(2036), + [anon_sym_QMARK] = ACTIONS(2038), + [anon_sym_AMP_AMP] = ACTIONS(2040), + [anon_sym_PIPE_PIPE] = ACTIONS(2040), + [anon_sym_GT_GT] = ACTIONS(2038), + [anon_sym_GT_GT_GT] = ACTIONS(2040), + [anon_sym_LT_LT] = ACTIONS(2040), + [anon_sym_AMP] = ACTIONS(2038), + [anon_sym_CARET] = ACTIONS(2040), + [anon_sym_PIPE] = ACTIONS(2038), + [anon_sym_PLUS] = ACTIONS(2036), + [anon_sym_DASH] = ACTIONS(2036), + [anon_sym_PERCENT] = ACTIONS(2040), + [anon_sym_STAR_STAR] = ACTIONS(2040), + [anon_sym_LT_EQ] = ACTIONS(2040), + [anon_sym_EQ_EQ] = ACTIONS(2038), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2040), + [anon_sym_BANG_EQ] = ACTIONS(2038), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2040), + [anon_sym_GT_EQ] = ACTIONS(2040), + [anon_sym_QMARK_QMARK] = ACTIONS(2040), + [anon_sym_instanceof] = ACTIONS(2038), + [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_readonly] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(2036), + [anon_sym_set] = ACTIONS(2036), + [anon_sym_declare] = ACTIONS(2036), + [anon_sym_public] = ACTIONS(2036), + [anon_sym_private] = ACTIONS(2036), + [anon_sym_protected] = ACTIONS(2036), + [anon_sym_module] = ACTIONS(2036), + [anon_sym_any] = ACTIONS(2036), + [anon_sym_number] = ACTIONS(2036), + [anon_sym_boolean] = ACTIONS(2036), + [anon_sym_string] = ACTIONS(2036), + [anon_sym_symbol] = ACTIONS(2036), + [anon_sym_abstract] = ACTIONS(2036), + [anon_sym_interface] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [sym__automatic_semicolon] = ACTIONS(2042), + }, + [154] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(2044), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2074), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(2046), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_implements] = ACTIONS(1619), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, - [154] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4206), - [sym_constructor_type] = STATE(4206), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4206), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4206), - [sym_union_type] = STATE(4206), - [sym_intersection_type] = STATE(4206), - [sym_function_type] = STATE(4206), - [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(1616), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2080), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(2082), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(2084), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(612), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [155] = { - [ts_builtin_sym_end] = ACTIONS(2088), - [sym_identifier] = ACTIONS(2090), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_STAR] = ACTIONS(2090), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_type] = ACTIONS(2090), - [anon_sym_as] = ACTIONS(2090), - [anon_sym_namespace] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_COMMA] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym_import] = ACTIONS(2090), - [anon_sym_var] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2090), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_switch] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_await] = ACTIONS(2090), - [anon_sym_in] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_with] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_debugger] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_throw] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_case] = ACTIONS(2090), - [anon_sym_yield] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2090), - [anon_sym_GT] = ACTIONS(2090), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_DOT] = ACTIONS(2090), - [anon_sym_class] = ACTIONS(2090), - [anon_sym_async] = ACTIONS(2090), - [anon_sym_function] = ACTIONS(2090), - [anon_sym_QMARK_DOT] = ACTIONS(2088), - [anon_sym_new] = ACTIONS(2090), - [anon_sym_QMARK] = ACTIONS(2090), - [anon_sym_AMP_AMP] = ACTIONS(2088), - [anon_sym_PIPE_PIPE] = ACTIONS(2088), - [anon_sym_GT_GT] = ACTIONS(2090), - [anon_sym_GT_GT_GT] = ACTIONS(2088), - [anon_sym_LT_LT] = ACTIONS(2088), - [anon_sym_AMP] = ACTIONS(2090), - [anon_sym_CARET] = ACTIONS(2088), - [anon_sym_PIPE] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_PERCENT] = ACTIONS(2088), - [anon_sym_STAR_STAR] = ACTIONS(2088), - [anon_sym_LT_EQ] = ACTIONS(2088), - [anon_sym_EQ_EQ] = ACTIONS(2090), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2088), - [anon_sym_BANG_EQ] = ACTIONS(2090), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2088), - [anon_sym_GT_EQ] = ACTIONS(2088), - [anon_sym_QMARK_QMARK] = ACTIONS(2088), - [anon_sym_instanceof] = ACTIONS(2090), - [anon_sym_TILDE] = ACTIONS(2088), - [anon_sym_void] = ACTIONS(2090), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [anon_sym_SQUOTE] = ACTIONS(2088), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2088), - [sym_number] = ACTIONS(2088), - [sym_this] = ACTIONS(2090), - [sym_super] = ACTIONS(2090), - [sym_true] = ACTIONS(2090), - [sym_false] = ACTIONS(2090), - [sym_null] = ACTIONS(2090), - [sym_undefined] = ACTIONS(2090), - [anon_sym_AT] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_readonly] = ACTIONS(2090), - [anon_sym_get] = ACTIONS(2090), - [anon_sym_set] = ACTIONS(2090), - [anon_sym_declare] = ACTIONS(2090), - [anon_sym_public] = ACTIONS(2090), - [anon_sym_private] = ACTIONS(2090), - [anon_sym_protected] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_any] = ACTIONS(2090), - [anon_sym_number] = ACTIONS(2090), - [anon_sym_boolean] = ACTIONS(2090), - [anon_sym_string] = ACTIONS(2090), - [anon_sym_symbol] = ACTIONS(2090), - [anon_sym_abstract] = ACTIONS(2090), - [anon_sym_interface] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), - [sym__automatic_semicolon] = ACTIONS(2088), + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2051), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_STAR] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(2051), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_as] = ACTIONS(2051), + [anon_sym_namespace] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_typeof] = ACTIONS(2051), + [anon_sym_import] = ACTIONS(2051), + [anon_sym_var] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(2051), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_switch] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2051), + [anon_sym_in] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_with] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_debugger] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_throw] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_case] = ACTIONS(2051), + [anon_sym_yield] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2051), + [anon_sym_GT] = ACTIONS(2051), + [anon_sym_SLASH] = ACTIONS(2051), + [anon_sym_DOT] = ACTIONS(2051), + [anon_sym_class] = ACTIONS(2051), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_function] = ACTIONS(2051), + [anon_sym_QMARK_DOT] = ACTIONS(2049), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(2051), + [anon_sym_AMP_AMP] = ACTIONS(2049), + [anon_sym_PIPE_PIPE] = ACTIONS(2049), + [anon_sym_GT_GT] = ACTIONS(2051), + [anon_sym_GT_GT_GT] = ACTIONS(2049), + [anon_sym_LT_LT] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2051), + [anon_sym_CARET] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2051), + [anon_sym_PLUS] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_PERCENT] = ACTIONS(2049), + [anon_sym_STAR_STAR] = ACTIONS(2049), + [anon_sym_LT_EQ] = ACTIONS(2049), + [anon_sym_EQ_EQ] = ACTIONS(2051), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2049), + [anon_sym_BANG_EQ] = ACTIONS(2051), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2049), + [anon_sym_GT_EQ] = ACTIONS(2049), + [anon_sym_QMARK_QMARK] = ACTIONS(2049), + [anon_sym_instanceof] = ACTIONS(2051), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_void] = ACTIONS(2051), + [anon_sym_delete] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2049), + [sym_number] = ACTIONS(2049), + [sym_this] = ACTIONS(2051), + [sym_super] = ACTIONS(2051), + [sym_true] = ACTIONS(2051), + [sym_false] = ACTIONS(2051), + [sym_null] = ACTIONS(2051), + [sym_undefined] = ACTIONS(2051), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_get] = ACTIONS(2051), + [anon_sym_set] = ACTIONS(2051), + [anon_sym_declare] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_private] = ACTIONS(2051), + [anon_sym_protected] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_any] = ACTIONS(2051), + [anon_sym_number] = ACTIONS(2051), + [anon_sym_boolean] = ACTIONS(2051), + [anon_sym_string] = ACTIONS(2051), + [anon_sym_symbol] = ACTIONS(2051), + [anon_sym_abstract] = ACTIONS(2051), + [anon_sym_interface] = ACTIONS(2051), + [anon_sym_enum] = ACTIONS(2051), + [sym__automatic_semicolon] = ACTIONS(2049), }, [156] = { - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2094), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_STAR] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_type] = ACTIONS(2094), - [anon_sym_as] = ACTIONS(2094), - [anon_sym_namespace] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_COMMA] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_typeof] = ACTIONS(2094), - [anon_sym_import] = ACTIONS(2094), - [anon_sym_var] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2094), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_await] = ACTIONS(2094), - [anon_sym_in] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_with] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_debugger] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_throw] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_case] = ACTIONS(2094), - [anon_sym_yield] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2094), - [anon_sym_GT] = ACTIONS(2094), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_DOT] = ACTIONS(2094), - [anon_sym_class] = ACTIONS(2094), - [anon_sym_async] = ACTIONS(2094), - [anon_sym_function] = ACTIONS(2094), - [anon_sym_QMARK_DOT] = ACTIONS(2092), - [anon_sym_new] = ACTIONS(2094), - [anon_sym_QMARK] = ACTIONS(2094), - [anon_sym_AMP_AMP] = ACTIONS(2092), - [anon_sym_PIPE_PIPE] = ACTIONS(2092), - [anon_sym_GT_GT] = ACTIONS(2094), - [anon_sym_GT_GT_GT] = ACTIONS(2092), - [anon_sym_LT_LT] = ACTIONS(2092), - [anon_sym_AMP] = ACTIONS(2094), - [anon_sym_CARET] = ACTIONS(2092), - [anon_sym_PIPE] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_PERCENT] = ACTIONS(2092), - [anon_sym_STAR_STAR] = ACTIONS(2092), - [anon_sym_LT_EQ] = ACTIONS(2092), - [anon_sym_EQ_EQ] = ACTIONS(2094), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2092), - [anon_sym_BANG_EQ] = ACTIONS(2094), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2092), - [anon_sym_GT_EQ] = ACTIONS(2092), - [anon_sym_QMARK_QMARK] = ACTIONS(2092), - [anon_sym_instanceof] = ACTIONS(2094), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_void] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2094), - [anon_sym_PLUS_PLUS] = ACTIONS(2092), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2092), - [sym_number] = ACTIONS(2092), - [sym_this] = ACTIONS(2094), - [sym_super] = ACTIONS(2094), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_undefined] = ACTIONS(2094), - [anon_sym_AT] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_readonly] = ACTIONS(2094), - [anon_sym_get] = ACTIONS(2094), - [anon_sym_set] = ACTIONS(2094), - [anon_sym_declare] = ACTIONS(2094), - [anon_sym_public] = ACTIONS(2094), - [anon_sym_private] = ACTIONS(2094), - [anon_sym_protected] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_any] = ACTIONS(2094), - [anon_sym_number] = ACTIONS(2094), - [anon_sym_boolean] = ACTIONS(2094), - [anon_sym_string] = ACTIONS(2094), - [anon_sym_symbol] = ACTIONS(2094), - [anon_sym_abstract] = ACTIONS(2094), - [anon_sym_interface] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [sym__automatic_semicolon] = ACTIONS(2092), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_STAR] = ACTIONS(2057), + [anon_sym_default] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_as] = ACTIONS(2057), + [anon_sym_namespace] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_typeof] = ACTIONS(2055), + [anon_sym_import] = ACTIONS(2055), + [anon_sym_var] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2055), + [anon_sym_else] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_switch] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_await] = ACTIONS(2055), + [anon_sym_in] = ACTIONS(2057), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_with] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_debugger] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_throw] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_case] = ACTIONS(2055), + [anon_sym_yield] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2055), + [anon_sym_GT] = ACTIONS(2057), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_DOT] = ACTIONS(2057), + [anon_sym_class] = ACTIONS(2055), + [anon_sym_async] = ACTIONS(2055), + [anon_sym_function] = ACTIONS(2055), + [anon_sym_QMARK_DOT] = ACTIONS(2059), + [anon_sym_new] = ACTIONS(2055), + [anon_sym_QMARK] = ACTIONS(2057), + [anon_sym_AMP_AMP] = ACTIONS(2059), + [anon_sym_PIPE_PIPE] = ACTIONS(2059), + [anon_sym_GT_GT] = ACTIONS(2057), + [anon_sym_GT_GT_GT] = ACTIONS(2059), + [anon_sym_LT_LT] = ACTIONS(2059), + [anon_sym_AMP] = ACTIONS(2057), + [anon_sym_CARET] = ACTIONS(2059), + [anon_sym_PIPE] = ACTIONS(2057), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_PERCENT] = ACTIONS(2059), + [anon_sym_STAR_STAR] = ACTIONS(2059), + [anon_sym_LT_EQ] = ACTIONS(2059), + [anon_sym_EQ_EQ] = ACTIONS(2057), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2059), + [anon_sym_BANG_EQ] = ACTIONS(2057), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2059), + [anon_sym_GT_EQ] = ACTIONS(2059), + [anon_sym_QMARK_QMARK] = ACTIONS(2059), + [anon_sym_instanceof] = ACTIONS(2057), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_void] = ACTIONS(2055), + [anon_sym_delete] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2053), + [sym_number] = ACTIONS(2053), + [sym_this] = ACTIONS(2055), + [sym_super] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_null] = ACTIONS(2055), + [sym_undefined] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2055), + [anon_sym_readonly] = ACTIONS(2055), + [anon_sym_get] = ACTIONS(2055), + [anon_sym_set] = ACTIONS(2055), + [anon_sym_declare] = ACTIONS(2055), + [anon_sym_public] = ACTIONS(2055), + [anon_sym_private] = ACTIONS(2055), + [anon_sym_protected] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_any] = ACTIONS(2055), + [anon_sym_number] = ACTIONS(2055), + [anon_sym_boolean] = ACTIONS(2055), + [anon_sym_string] = ACTIONS(2055), + [anon_sym_symbol] = ACTIONS(2055), + [anon_sym_abstract] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [sym__automatic_semicolon] = ACTIONS(2061), }, [157] = { - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_identifier] = ACTIONS(2098), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_STAR] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_type] = ACTIONS(2098), - [anon_sym_as] = ACTIONS(2098), - [anon_sym_namespace] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_COMMA] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(2098), - [anon_sym_import] = ACTIONS(2098), - [anon_sym_var] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2098), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_switch] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_await] = ACTIONS(2098), - [anon_sym_in] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_with] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_debugger] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_throw] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_case] = ACTIONS(2098), - [anon_sym_yield] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2098), - [anon_sym_GT] = ACTIONS(2098), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_DOT] = ACTIONS(2098), - [anon_sym_class] = ACTIONS(2098), - [anon_sym_async] = ACTIONS(2098), - [anon_sym_function] = ACTIONS(2098), - [anon_sym_QMARK_DOT] = ACTIONS(2096), - [anon_sym_new] = ACTIONS(2098), - [anon_sym_QMARK] = ACTIONS(2098), - [anon_sym_AMP_AMP] = ACTIONS(2096), - [anon_sym_PIPE_PIPE] = ACTIONS(2096), - [anon_sym_GT_GT] = ACTIONS(2098), - [anon_sym_GT_GT_GT] = ACTIONS(2096), - [anon_sym_LT_LT] = ACTIONS(2096), - [anon_sym_AMP] = ACTIONS(2098), - [anon_sym_CARET] = ACTIONS(2096), - [anon_sym_PIPE] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_PERCENT] = ACTIONS(2096), - [anon_sym_STAR_STAR] = ACTIONS(2096), - [anon_sym_LT_EQ] = ACTIONS(2096), - [anon_sym_EQ_EQ] = ACTIONS(2098), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2096), - [anon_sym_BANG_EQ] = ACTIONS(2098), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2096), - [anon_sym_GT_EQ] = ACTIONS(2096), - [anon_sym_QMARK_QMARK] = ACTIONS(2096), - [anon_sym_instanceof] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2096), - [anon_sym_void] = ACTIONS(2098), - [anon_sym_delete] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2096), - [sym_number] = ACTIONS(2096), - [sym_this] = ACTIONS(2098), - [sym_super] = ACTIONS(2098), - [sym_true] = ACTIONS(2098), - [sym_false] = ACTIONS(2098), - [sym_null] = ACTIONS(2098), - [sym_undefined] = ACTIONS(2098), - [anon_sym_AT] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_readonly] = ACTIONS(2098), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_declare] = ACTIONS(2098), - [anon_sym_public] = ACTIONS(2098), - [anon_sym_private] = ACTIONS(2098), - [anon_sym_protected] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_any] = ACTIONS(2098), - [anon_sym_number] = ACTIONS(2098), - [anon_sym_boolean] = ACTIONS(2098), - [anon_sym_string] = ACTIONS(2098), - [anon_sym_symbol] = ACTIONS(2098), - [anon_sym_abstract] = ACTIONS(2098), - [anon_sym_interface] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [sym__automatic_semicolon] = ACTIONS(2096), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_export] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_as] = ACTIONS(2065), + [anon_sym_namespace] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_typeof] = ACTIONS(2065), + [anon_sym_import] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_switch] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2065), + [anon_sym_in] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_debugger] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_throw] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_case] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_SLASH] = ACTIONS(2065), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_class] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_function] = ACTIONS(2065), + [anon_sym_QMARK_DOT] = ACTIONS(2063), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_QMARK] = ACTIONS(2065), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT_GT] = ACTIONS(2065), + [anon_sym_GT_GT_GT] = ACTIONS(2063), + [anon_sym_LT_LT] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_STAR_STAR] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2063), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_QMARK_QMARK] = ACTIONS(2063), + [anon_sym_instanceof] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_void] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2063), + [sym_number] = ACTIONS(2063), + [sym_this] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_undefined] = ACTIONS(2065), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_readonly] = ACTIONS(2065), + [anon_sym_get] = ACTIONS(2065), + [anon_sym_set] = ACTIONS(2065), + [anon_sym_declare] = ACTIONS(2065), + [anon_sym_public] = ACTIONS(2065), + [anon_sym_private] = ACTIONS(2065), + [anon_sym_protected] = ACTIONS(2065), + [anon_sym_module] = ACTIONS(2065), + [anon_sym_any] = ACTIONS(2065), + [anon_sym_number] = ACTIONS(2065), + [anon_sym_boolean] = ACTIONS(2065), + [anon_sym_string] = ACTIONS(2065), + [anon_sym_symbol] = ACTIONS(2065), + [anon_sym_abstract] = ACTIONS(2065), + [anon_sym_interface] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [sym__automatic_semicolon] = ACTIONS(2067), }, [158] = { - [ts_builtin_sym_end] = ACTIONS(2100), - [sym_identifier] = ACTIONS(2102), - [anon_sym_export] = ACTIONS(2102), - [anon_sym_STAR] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_type] = ACTIONS(2102), - [anon_sym_as] = ACTIONS(2102), - [anon_sym_namespace] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_COMMA] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_typeof] = ACTIONS(2102), - [anon_sym_import] = ACTIONS(2102), - [anon_sym_var] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_switch] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_await] = ACTIONS(2102), - [anon_sym_in] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_debugger] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_throw] = ACTIONS(2102), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_case] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2102), - [anon_sym_GT] = ACTIONS(2102), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_DOT] = ACTIONS(2102), - [anon_sym_class] = ACTIONS(2102), - [anon_sym_async] = ACTIONS(2102), - [anon_sym_function] = ACTIONS(2102), - [anon_sym_QMARK_DOT] = ACTIONS(2100), - [anon_sym_new] = ACTIONS(2102), - [anon_sym_QMARK] = ACTIONS(2102), - [anon_sym_AMP_AMP] = ACTIONS(2100), - [anon_sym_PIPE_PIPE] = ACTIONS(2100), - [anon_sym_GT_GT] = ACTIONS(2102), - [anon_sym_GT_GT_GT] = ACTIONS(2100), - [anon_sym_LT_LT] = ACTIONS(2100), - [anon_sym_AMP] = ACTIONS(2102), - [anon_sym_CARET] = ACTIONS(2100), - [anon_sym_PIPE] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_PERCENT] = ACTIONS(2100), - [anon_sym_STAR_STAR] = ACTIONS(2100), - [anon_sym_LT_EQ] = ACTIONS(2100), - [anon_sym_EQ_EQ] = ACTIONS(2102), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2100), - [anon_sym_BANG_EQ] = ACTIONS(2102), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2100), - [anon_sym_GT_EQ] = ACTIONS(2100), - [anon_sym_QMARK_QMARK] = ACTIONS(2100), - [anon_sym_instanceof] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_void] = ACTIONS(2102), - [anon_sym_delete] = ACTIONS(2102), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2100), - [anon_sym_SQUOTE] = ACTIONS(2100), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2100), - [sym_number] = ACTIONS(2100), - [sym_this] = ACTIONS(2102), - [sym_super] = ACTIONS(2102), - [sym_true] = ACTIONS(2102), - [sym_false] = ACTIONS(2102), - [sym_null] = ACTIONS(2102), - [sym_undefined] = ACTIONS(2102), - [anon_sym_AT] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_readonly] = ACTIONS(2102), - [anon_sym_get] = ACTIONS(2102), - [anon_sym_set] = ACTIONS(2102), - [anon_sym_declare] = ACTIONS(2102), - [anon_sym_public] = ACTIONS(2102), - [anon_sym_private] = ACTIONS(2102), - [anon_sym_protected] = ACTIONS(2102), - [anon_sym_module] = ACTIONS(2102), - [anon_sym_any] = ACTIONS(2102), - [anon_sym_number] = ACTIONS(2102), - [anon_sym_boolean] = ACTIONS(2102), - [anon_sym_string] = ACTIONS(2102), - [anon_sym_symbol] = ACTIONS(2102), - [anon_sym_abstract] = ACTIONS(2102), - [anon_sym_interface] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [sym__automatic_semicolon] = ACTIONS(2100), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_export] = ACTIONS(2065), + [anon_sym_STAR] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_as] = ACTIONS(2065), + [anon_sym_namespace] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_typeof] = ACTIONS(2065), + [anon_sym_import] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2065), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_switch] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2065), + [anon_sym_in] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_debugger] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_throw] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_case] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2065), + [anon_sym_GT] = ACTIONS(2065), + [anon_sym_SLASH] = ACTIONS(2065), + [anon_sym_DOT] = ACTIONS(2065), + [anon_sym_class] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_function] = ACTIONS(2065), + [anon_sym_QMARK_DOT] = ACTIONS(2063), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_QMARK] = ACTIONS(2065), + [anon_sym_AMP_AMP] = ACTIONS(2063), + [anon_sym_PIPE_PIPE] = ACTIONS(2063), + [anon_sym_GT_GT] = ACTIONS(2065), + [anon_sym_GT_GT_GT] = ACTIONS(2063), + [anon_sym_LT_LT] = ACTIONS(2063), + [anon_sym_AMP] = ACTIONS(2065), + [anon_sym_CARET] = ACTIONS(2063), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_PERCENT] = ACTIONS(2063), + [anon_sym_STAR_STAR] = ACTIONS(2063), + [anon_sym_LT_EQ] = ACTIONS(2063), + [anon_sym_EQ_EQ] = ACTIONS(2065), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2063), + [anon_sym_BANG_EQ] = ACTIONS(2065), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2063), + [anon_sym_GT_EQ] = ACTIONS(2063), + [anon_sym_QMARK_QMARK] = ACTIONS(2063), + [anon_sym_instanceof] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_void] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2063), + [sym_number] = ACTIONS(2063), + [sym_this] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_undefined] = ACTIONS(2065), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_readonly] = ACTIONS(2065), + [anon_sym_get] = ACTIONS(2065), + [anon_sym_set] = ACTIONS(2065), + [anon_sym_declare] = ACTIONS(2065), + [anon_sym_public] = ACTIONS(2065), + [anon_sym_private] = ACTIONS(2065), + [anon_sym_protected] = ACTIONS(2065), + [anon_sym_module] = ACTIONS(2065), + [anon_sym_any] = ACTIONS(2065), + [anon_sym_number] = ACTIONS(2065), + [anon_sym_boolean] = ACTIONS(2065), + [anon_sym_string] = ACTIONS(2065), + [anon_sym_symbol] = ACTIONS(2065), + [anon_sym_abstract] = ACTIONS(2065), + [anon_sym_interface] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [sym__automatic_semicolon] = ACTIONS(2063), }, [159] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [anon_sym_export] = ACTIONS(2106), - [anon_sym_STAR] = ACTIONS(2108), - [anon_sym_default] = ACTIONS(2106), - [anon_sym_type] = ACTIONS(2106), - [anon_sym_as] = ACTIONS(2108), - [anon_sym_namespace] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_COMMA] = ACTIONS(2110), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_import] = ACTIONS(2106), - [anon_sym_var] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2106), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_switch] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_await] = ACTIONS(2106), - [anon_sym_in] = ACTIONS(2108), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_with] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_debugger] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_throw] = ACTIONS(2106), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_case] = ACTIONS(2106), - [anon_sym_yield] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2106), - [anon_sym_GT] = ACTIONS(2108), - [anon_sym_SLASH] = ACTIONS(2106), - [anon_sym_DOT] = ACTIONS(2108), - [anon_sym_class] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_function] = ACTIONS(2106), - [anon_sym_QMARK_DOT] = ACTIONS(2110), - [anon_sym_new] = ACTIONS(2106), - [anon_sym_QMARK] = ACTIONS(2108), - [anon_sym_AMP_AMP] = ACTIONS(2110), - [anon_sym_PIPE_PIPE] = ACTIONS(2110), - [anon_sym_GT_GT] = ACTIONS(2108), - [anon_sym_GT_GT_GT] = ACTIONS(2110), - [anon_sym_LT_LT] = ACTIONS(2110), - [anon_sym_AMP] = ACTIONS(2108), - [anon_sym_CARET] = ACTIONS(2110), - [anon_sym_PIPE] = ACTIONS(2108), - [anon_sym_PLUS] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_PERCENT] = ACTIONS(2110), - [anon_sym_STAR_STAR] = ACTIONS(2110), - [anon_sym_LT_EQ] = ACTIONS(2110), - [anon_sym_EQ_EQ] = ACTIONS(2108), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2110), - [anon_sym_BANG_EQ] = ACTIONS(2108), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2110), - [anon_sym_GT_EQ] = ACTIONS(2110), - [anon_sym_QMARK_QMARK] = ACTIONS(2110), - [anon_sym_instanceof] = ACTIONS(2108), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_void] = ACTIONS(2106), - [anon_sym_delete] = ACTIONS(2106), - [anon_sym_PLUS_PLUS] = ACTIONS(2104), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(2104), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2104), - [sym_number] = ACTIONS(2104), - [sym_this] = ACTIONS(2106), - [sym_super] = ACTIONS(2106), - [sym_true] = ACTIONS(2106), - [sym_false] = ACTIONS(2106), - [sym_null] = ACTIONS(2106), - [sym_undefined] = ACTIONS(2106), - [anon_sym_AT] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_readonly] = ACTIONS(2106), - [anon_sym_get] = ACTIONS(2106), - [anon_sym_set] = ACTIONS(2106), - [anon_sym_declare] = ACTIONS(2106), - [anon_sym_public] = ACTIONS(2106), - [anon_sym_private] = ACTIONS(2106), - [anon_sym_protected] = ACTIONS(2106), - [anon_sym_module] = ACTIONS(2106), - [anon_sym_any] = ACTIONS(2106), - [anon_sym_number] = ACTIONS(2106), - [anon_sym_boolean] = ACTIONS(2106), - [anon_sym_string] = ACTIONS(2106), - [anon_sym_symbol] = ACTIONS(2106), - [anon_sym_abstract] = ACTIONS(2106), - [anon_sym_interface] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [sym__automatic_semicolon] = ACTIONS(2112), + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_export] = ACTIONS(2071), + [anon_sym_STAR] = ACTIONS(2073), + [anon_sym_default] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_as] = ACTIONS(2073), + [anon_sym_namespace] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_COMMA] = ACTIONS(2075), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(2071), + [anon_sym_import] = ACTIONS(2071), + [anon_sym_var] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_BANG] = ACTIONS(2071), + [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_in] = ACTIONS(2073), + [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(2071), + [anon_sym_GT] = ACTIONS(2073), + [anon_sym_SLASH] = ACTIONS(2071), + [anon_sym_DOT] = ACTIONS(2073), + [anon_sym_class] = ACTIONS(2071), + [anon_sym_async] = ACTIONS(2071), + [anon_sym_function] = ACTIONS(2071), + [anon_sym_QMARK_DOT] = ACTIONS(2075), + [anon_sym_new] = ACTIONS(2071), + [anon_sym_QMARK] = ACTIONS(2073), + [anon_sym_AMP_AMP] = ACTIONS(2075), + [anon_sym_PIPE_PIPE] = ACTIONS(2075), + [anon_sym_GT_GT] = ACTIONS(2073), + [anon_sym_GT_GT_GT] = ACTIONS(2075), + [anon_sym_LT_LT] = ACTIONS(2075), + [anon_sym_AMP] = ACTIONS(2073), + [anon_sym_CARET] = ACTIONS(2075), + [anon_sym_PIPE] = ACTIONS(2073), + [anon_sym_PLUS] = ACTIONS(2071), + [anon_sym_DASH] = ACTIONS(2071), + [anon_sym_PERCENT] = ACTIONS(2075), + [anon_sym_STAR_STAR] = ACTIONS(2075), + [anon_sym_LT_EQ] = ACTIONS(2075), + [anon_sym_EQ_EQ] = ACTIONS(2073), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2075), + [anon_sym_BANG_EQ] = ACTIONS(2073), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2075), + [anon_sym_GT_EQ] = ACTIONS(2075), + [anon_sym_QMARK_QMARK] = ACTIONS(2075), + [anon_sym_instanceof] = ACTIONS(2073), + [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), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2069), + [sym_number] = ACTIONS(2069), + [sym_this] = ACTIONS(2071), + [sym_super] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_null] = ACTIONS(2071), + [sym_undefined] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2071), + [anon_sym_readonly] = ACTIONS(2071), + [anon_sym_get] = ACTIONS(2071), + [anon_sym_set] = ACTIONS(2071), + [anon_sym_declare] = ACTIONS(2071), + [anon_sym_public] = ACTIONS(2071), + [anon_sym_private] = ACTIONS(2071), + [anon_sym_protected] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_any] = ACTIONS(2071), + [anon_sym_number] = ACTIONS(2071), + [anon_sym_boolean] = ACTIONS(2071), + [anon_sym_string] = ACTIONS(2071), + [anon_sym_symbol] = ACTIONS(2071), + [anon_sym_abstract] = ACTIONS(2071), + [anon_sym_interface] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [sym__automatic_semicolon] = ACTIONS(2077), }, [160] = { - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2116), - [anon_sym_export] = ACTIONS(2116), - [anon_sym_STAR] = ACTIONS(2118), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_type] = ACTIONS(2116), - [anon_sym_as] = ACTIONS(2118), - [anon_sym_namespace] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_COMMA] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_typeof] = ACTIONS(2116), - [anon_sym_import] = ACTIONS(2116), - [anon_sym_var] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2116), - [anon_sym_else] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_switch] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_await] = ACTIONS(2116), - [anon_sym_in] = ACTIONS(2118), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_do] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [anon_sym_with] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_debugger] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_throw] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2116), - [anon_sym_GT] = ACTIONS(2118), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_DOT] = ACTIONS(2118), - [anon_sym_class] = ACTIONS(2116), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_function] = ACTIONS(2116), - [anon_sym_QMARK_DOT] = ACTIONS(2120), - [anon_sym_new] = ACTIONS(2116), - [anon_sym_QMARK] = ACTIONS(2118), - [anon_sym_AMP_AMP] = ACTIONS(2120), - [anon_sym_PIPE_PIPE] = ACTIONS(2120), - [anon_sym_GT_GT] = ACTIONS(2118), - [anon_sym_GT_GT_GT] = ACTIONS(2120), - [anon_sym_LT_LT] = ACTIONS(2120), - [anon_sym_AMP] = ACTIONS(2118), - [anon_sym_CARET] = ACTIONS(2120), - [anon_sym_PIPE] = ACTIONS(2118), - [anon_sym_PLUS] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2116), - [anon_sym_PERCENT] = ACTIONS(2120), - [anon_sym_STAR_STAR] = ACTIONS(2120), - [anon_sym_LT_EQ] = ACTIONS(2120), - [anon_sym_EQ_EQ] = ACTIONS(2118), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2120), - [anon_sym_BANG_EQ] = ACTIONS(2118), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2120), - [anon_sym_GT_EQ] = ACTIONS(2120), - [anon_sym_QMARK_QMARK] = ACTIONS(2120), - [anon_sym_instanceof] = ACTIONS(2118), - [anon_sym_TILDE] = ACTIONS(2114), - [anon_sym_void] = ACTIONS(2116), - [anon_sym_delete] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2114), - [anon_sym_DQUOTE] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2114), - [sym_number] = ACTIONS(2114), - [sym_this] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_true] = ACTIONS(2116), - [sym_false] = ACTIONS(2116), - [sym_null] = ACTIONS(2116), - [sym_undefined] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2114), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_readonly] = ACTIONS(2116), - [anon_sym_get] = ACTIONS(2116), - [anon_sym_set] = ACTIONS(2116), - [anon_sym_declare] = ACTIONS(2116), - [anon_sym_public] = ACTIONS(2116), - [anon_sym_private] = ACTIONS(2116), - [anon_sym_protected] = ACTIONS(2116), - [anon_sym_module] = ACTIONS(2116), - [anon_sym_any] = ACTIONS(2116), - [anon_sym_number] = ACTIONS(2116), - [anon_sym_boolean] = ACTIONS(2116), - [anon_sym_string] = ACTIONS(2116), - [anon_sym_symbol] = ACTIONS(2116), - [anon_sym_abstract] = ACTIONS(2116), - [anon_sym_interface] = ACTIONS(2116), - [anon_sym_enum] = ACTIONS(2116), - [sym__automatic_semicolon] = ACTIONS(2122), + [sym_nested_identifier] = STATE(5671), + [sym_string] = STATE(3954), + [sym_formal_parameters] = STATE(5719), + [sym_nested_type_identifier] = STATE(3885), + [sym__type] = STATE(4001), + [sym_constructor_type] = STATE(4001), + [sym__primary_type] = STATE(3959), + [sym_infer_type] = STATE(4001), + [sym_conditional_type] = STATE(3956), + [sym_generic_type] = STATE(3956), + [sym_type_query] = STATE(3956), + [sym_index_type_query] = STATE(3956), + [sym_lookup_type] = STATE(3956), + [sym_literal_type] = STATE(3956), + [sym__number] = STATE(3960), + [sym_existential_type] = STATE(3956), + [sym_flow_maybe_type] = STATE(3956), + [sym_parenthesized_type] = STATE(3956), + [sym_predefined_type] = STATE(3956), + [sym_object_type] = STATE(3956), + [sym_type_parameters] = STATE(5242), + [sym_array_type] = STATE(3956), + [sym_tuple_type] = STATE(3956), + [sym_readonly_type] = STATE(4001), + [sym_union_type] = STATE(4001), + [sym_intersection_type] = STATE(4001), + [sym_function_type] = STATE(4001), + [sym_identifier] = ACTIONS(2079), + [anon_sym_STAR] = ACTIONS(2081), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(2083), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(2089), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(2091), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2093), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(2095), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(2097), + [anon_sym_PLUS] = ACTIONS(2099), + [anon_sym_DASH] = ACTIONS(2099), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(2101), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2105), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2107), + [sym_this] = ACTIONS(2109), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [anon_sym_readonly] = ACTIONS(2113), + [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_infer] = ACTIONS(734), + [anon_sym_keyof] = ACTIONS(736), + [anon_sym_LBRACE_PIPE] = ACTIONS(738), }, [161] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5822), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4182), - [sym_constructor_type] = STATE(4182), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4182), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5409), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4182), - [sym_union_type] = STATE(4182), - [sym_intersection_type] = STATE(4182), - [sym_function_type] = STATE(4182), - [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_typeof] = ACTIONS(2124), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(2126), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2128), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(2130), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(2132), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2134), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(1304), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_STAR] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_as] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2117), + [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_in] = 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(2117), + [anon_sym_GT] = ACTIONS(2117), + [anon_sym_SLASH] = ACTIONS(2117), + [anon_sym_DOT] = ACTIONS(2117), + [anon_sym_class] = ACTIONS(2117), + [anon_sym_async] = ACTIONS(2117), + [anon_sym_function] = ACTIONS(2117), + [anon_sym_QMARK_DOT] = ACTIONS(2115), + [anon_sym_new] = ACTIONS(2117), + [anon_sym_QMARK] = ACTIONS(2117), + [anon_sym_AMP_AMP] = ACTIONS(2115), + [anon_sym_PIPE_PIPE] = ACTIONS(2115), + [anon_sym_GT_GT] = ACTIONS(2117), + [anon_sym_GT_GT_GT] = ACTIONS(2115), + [anon_sym_LT_LT] = ACTIONS(2115), + [anon_sym_AMP] = ACTIONS(2117), + [anon_sym_CARET] = ACTIONS(2115), + [anon_sym_PIPE] = ACTIONS(2117), + [anon_sym_PLUS] = ACTIONS(2117), + [anon_sym_DASH] = ACTIONS(2117), + [anon_sym_PERCENT] = ACTIONS(2115), + [anon_sym_STAR_STAR] = ACTIONS(2115), + [anon_sym_LT_EQ] = ACTIONS(2115), + [anon_sym_EQ_EQ] = ACTIONS(2117), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2115), + [anon_sym_BANG_EQ] = ACTIONS(2117), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2115), + [anon_sym_GT_EQ] = ACTIONS(2115), + [anon_sym_QMARK_QMARK] = ACTIONS(2115), + [anon_sym_instanceof] = 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_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [sym__automatic_semicolon] = ACTIONS(2115), }, [162] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_STAR] = ACTIONS(2140), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_COMMA] = ACTIONS(2142), - [anon_sym_RBRACE] = ACTIONS(2136), - [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(2138), - [anon_sym_else] = ACTIONS(2138), - [anon_sym_if] = ACTIONS(2138), - [anon_sym_switch] = ACTIONS(2138), - [anon_sym_for] = ACTIONS(2138), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_await] = ACTIONS(2138), - [anon_sym_in] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2138), - [anon_sym_do] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2138), - [anon_sym_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(2138), - [anon_sym_GT] = ACTIONS(2140), - [anon_sym_SLASH] = ACTIONS(2138), - [anon_sym_DOT] = ACTIONS(2140), - [anon_sym_class] = ACTIONS(2138), - [anon_sym_async] = ACTIONS(2138), - [anon_sym_function] = ACTIONS(2138), - [anon_sym_QMARK_DOT] = ACTIONS(2142), - [anon_sym_new] = ACTIONS(2138), - [anon_sym_QMARK] = ACTIONS(2140), - [anon_sym_AMP_AMP] = ACTIONS(2142), - [anon_sym_PIPE_PIPE] = ACTIONS(2142), - [anon_sym_GT_GT] = ACTIONS(2140), - [anon_sym_GT_GT_GT] = ACTIONS(2142), - [anon_sym_LT_LT] = ACTIONS(2142), - [anon_sym_AMP] = ACTIONS(2140), - [anon_sym_CARET] = ACTIONS(2142), - [anon_sym_PIPE] = ACTIONS(2140), - [anon_sym_PLUS] = ACTIONS(2138), - [anon_sym_DASH] = ACTIONS(2138), - [anon_sym_PERCENT] = ACTIONS(2142), - [anon_sym_STAR_STAR] = ACTIONS(2142), - [anon_sym_LT_EQ] = ACTIONS(2142), - [anon_sym_EQ_EQ] = ACTIONS(2140), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2142), - [anon_sym_BANG_EQ] = ACTIONS(2140), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2142), - [anon_sym_GT_EQ] = ACTIONS(2142), - [anon_sym_QMARK_QMARK] = ACTIONS(2142), - [anon_sym_instanceof] = ACTIONS(2140), - [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_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_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_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2144), + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_export] = ACTIONS(2121), + [anon_sym_STAR] = ACTIONS(2123), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_as] = ACTIONS(2123), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_COMMA] = ACTIONS(2125), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(2121), + [anon_sym_import] = ACTIONS(2121), + [anon_sym_var] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2121), + [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_in] = ACTIONS(2123), + [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(2121), + [anon_sym_GT] = ACTIONS(2123), + [anon_sym_SLASH] = ACTIONS(2121), + [anon_sym_DOT] = ACTIONS(2123), + [anon_sym_class] = ACTIONS(2121), + [anon_sym_async] = ACTIONS(2121), + [anon_sym_function] = ACTIONS(2121), + [anon_sym_QMARK_DOT] = ACTIONS(2125), + [anon_sym_new] = ACTIONS(2121), + [anon_sym_QMARK] = ACTIONS(2123), + [anon_sym_AMP_AMP] = ACTIONS(2125), + [anon_sym_PIPE_PIPE] = ACTIONS(2125), + [anon_sym_GT_GT] = ACTIONS(2123), + [anon_sym_GT_GT_GT] = ACTIONS(2125), + [anon_sym_LT_LT] = ACTIONS(2125), + [anon_sym_AMP] = ACTIONS(2123), + [anon_sym_CARET] = ACTIONS(2125), + [anon_sym_PIPE] = ACTIONS(2123), + [anon_sym_PLUS] = ACTIONS(2121), + [anon_sym_DASH] = ACTIONS(2121), + [anon_sym_PERCENT] = ACTIONS(2125), + [anon_sym_STAR_STAR] = ACTIONS(2125), + [anon_sym_LT_EQ] = ACTIONS(2125), + [anon_sym_EQ_EQ] = ACTIONS(2123), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2125), + [anon_sym_BANG_EQ] = ACTIONS(2123), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2125), + [anon_sym_GT_EQ] = ACTIONS(2125), + [anon_sym_QMARK_QMARK] = ACTIONS(2125), + [anon_sym_instanceof] = ACTIONS(2123), + [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_readonly] = ACTIONS(2121), + [anon_sym_get] = ACTIONS(2121), + [anon_sym_set] = ACTIONS(2121), + [anon_sym_declare] = ACTIONS(2121), + [anon_sym_public] = ACTIONS(2121), + [anon_sym_private] = ACTIONS(2121), + [anon_sym_protected] = ACTIONS(2121), + [anon_sym_module] = ACTIONS(2121), + [anon_sym_any] = ACTIONS(2121), + [anon_sym_number] = ACTIONS(2121), + [anon_sym_boolean] = ACTIONS(2121), + [anon_sym_string] = ACTIONS(2121), + [anon_sym_symbol] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [sym__automatic_semicolon] = ACTIONS(2127), }, [163] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4128), + [sym_constructor_type] = STATE(4128), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4128), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5432), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4128), + [sym_union_type] = STATE(4128), + [sym_intersection_type] = STATE(4128), + [sym_function_type] = STATE(4128), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_RBRACK] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2133), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(2135), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(2137), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [164] = { + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_export] = ACTIONS(2143), + [anon_sym_STAR] = ACTIONS(2145), + [anon_sym_default] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_as] = ACTIONS(2145), + [anon_sym_namespace] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_COMMA] = ACTIONS(2147), + [anon_sym_RBRACE] = ACTIONS(2141), + [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(2143), + [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_in] = ACTIONS(2145), + [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(2143), + [anon_sym_GT] = ACTIONS(2145), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_DOT] = ACTIONS(2145), + [anon_sym_class] = ACTIONS(2143), + [anon_sym_async] = ACTIONS(2143), + [anon_sym_function] = ACTIONS(2143), + [anon_sym_QMARK_DOT] = ACTIONS(2147), + [anon_sym_new] = ACTIONS(2143), + [anon_sym_QMARK] = ACTIONS(2145), + [anon_sym_AMP_AMP] = ACTIONS(2147), + [anon_sym_PIPE_PIPE] = ACTIONS(2147), + [anon_sym_GT_GT] = ACTIONS(2145), + [anon_sym_GT_GT_GT] = ACTIONS(2147), + [anon_sym_LT_LT] = ACTIONS(2147), + [anon_sym_AMP] = ACTIONS(2145), + [anon_sym_CARET] = ACTIONS(2147), + [anon_sym_PIPE] = ACTIONS(2145), + [anon_sym_PLUS] = ACTIONS(2143), + [anon_sym_DASH] = ACTIONS(2143), + [anon_sym_PERCENT] = ACTIONS(2147), + [anon_sym_STAR_STAR] = ACTIONS(2147), + [anon_sym_LT_EQ] = ACTIONS(2147), + [anon_sym_EQ_EQ] = ACTIONS(2145), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2147), + [anon_sym_BANG_EQ] = ACTIONS(2145), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2147), + [anon_sym_GT_EQ] = ACTIONS(2147), + [anon_sym_QMARK_QMARK] = ACTIONS(2147), + [anon_sym_instanceof] = ACTIONS(2145), + [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_readonly] = 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_abstract] = ACTIONS(2143), + [anon_sym_interface] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [sym__automatic_semicolon] = ACTIONS(2149), + }, + [165] = { [ts_builtin_sym_end] = ACTIONS(2151), [sym_identifier] = ACTIONS(2153), [anon_sym_export] = ACTIONS(2153), @@ -33194,1011 +33307,701 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2153), [sym__automatic_semicolon] = ACTIONS(2159), }, - [165] = { - [ts_builtin_sym_end] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_STAR] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_as] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [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(2163), - [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_in] = 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(2163), - [anon_sym_GT] = ACTIONS(2163), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_DOT] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_QMARK_DOT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_QMARK] = ACTIONS(2163), - [anon_sym_AMP_AMP] = ACTIONS(2161), - [anon_sym_PIPE_PIPE] = ACTIONS(2161), - [anon_sym_GT_GT] = ACTIONS(2163), - [anon_sym_GT_GT_GT] = ACTIONS(2161), - [anon_sym_LT_LT] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2163), - [anon_sym_CARET] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2163), - [anon_sym_PLUS] = ACTIONS(2163), - [anon_sym_DASH] = ACTIONS(2163), - [anon_sym_PERCENT] = ACTIONS(2161), - [anon_sym_STAR_STAR] = ACTIONS(2161), - [anon_sym_LT_EQ] = ACTIONS(2161), - [anon_sym_EQ_EQ] = ACTIONS(2163), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2161), - [anon_sym_BANG_EQ] = ACTIONS(2163), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2161), - [anon_sym_GT_EQ] = ACTIONS(2161), - [anon_sym_QMARK_QMARK] = ACTIONS(2161), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), - [sym__automatic_semicolon] = ACTIONS(2161), - }, [166] = { - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_STAR] = ACTIONS(2169), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_as] = ACTIONS(2169), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_COMMA] = ACTIONS(2171), - [anon_sym_RBRACE] = ACTIONS(2165), - [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(2167), - [anon_sym_else] = ACTIONS(2167), - [anon_sym_if] = ACTIONS(2167), - [anon_sym_switch] = ACTIONS(2167), - [anon_sym_for] = ACTIONS(2167), - [anon_sym_LPAREN] = ACTIONS(2165), - [anon_sym_await] = ACTIONS(2167), - [anon_sym_in] = ACTIONS(2169), - [anon_sym_while] = ACTIONS(2167), - [anon_sym_do] = ACTIONS(2167), - [anon_sym_try] = ACTIONS(2167), - [anon_sym_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(2167), - [anon_sym_GT] = ACTIONS(2169), - [anon_sym_SLASH] = ACTIONS(2167), - [anon_sym_DOT] = ACTIONS(2169), - [anon_sym_class] = ACTIONS(2167), - [anon_sym_async] = ACTIONS(2167), - [anon_sym_function] = ACTIONS(2167), - [anon_sym_QMARK_DOT] = ACTIONS(2171), - [anon_sym_new] = ACTIONS(2167), - [anon_sym_QMARK] = ACTIONS(2169), - [anon_sym_AMP_AMP] = ACTIONS(2171), - [anon_sym_PIPE_PIPE] = ACTIONS(2171), - [anon_sym_GT_GT] = ACTIONS(2169), - [anon_sym_GT_GT_GT] = ACTIONS(2171), - [anon_sym_LT_LT] = ACTIONS(2171), - [anon_sym_AMP] = ACTIONS(2169), - [anon_sym_CARET] = ACTIONS(2171), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5483), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4165), + [sym_constructor_type] = STATE(4165), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4165), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5404), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4165), + [sym_union_type] = STATE(4165), + [sym_intersection_type] = STATE(4165), + [sym_function_type] = STATE(4165), + [sym_identifier] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(2161), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(2163), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2165), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(2167), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(2169), - [anon_sym_PLUS] = ACTIONS(2167), - [anon_sym_DASH] = ACTIONS(2167), - [anon_sym_PERCENT] = ACTIONS(2171), - [anon_sym_STAR_STAR] = ACTIONS(2171), - [anon_sym_LT_EQ] = ACTIONS(2171), - [anon_sym_EQ_EQ] = ACTIONS(2169), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2171), - [anon_sym_BANG_EQ] = ACTIONS(2169), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2171), - [anon_sym_GT_EQ] = ACTIONS(2171), - [anon_sym_QMARK_QMARK] = ACTIONS(2171), - [anon_sym_instanceof] = ACTIONS(2169), - [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_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_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_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2173), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(1894), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2171), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(1364), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [167] = { - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_export] = ACTIONS(2177), - [anon_sym_STAR] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_as] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_COMMA] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [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(2177), - [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_in] = 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(2177), - [anon_sym_GT] = ACTIONS(2177), - [anon_sym_SLASH] = ACTIONS(2177), - [anon_sym_DOT] = ACTIONS(2177), - [anon_sym_class] = ACTIONS(2177), - [anon_sym_async] = ACTIONS(2177), - [anon_sym_function] = ACTIONS(2177), - [anon_sym_QMARK_DOT] = ACTIONS(2175), - [anon_sym_new] = ACTIONS(2177), - [anon_sym_QMARK] = ACTIONS(2177), - [anon_sym_AMP_AMP] = ACTIONS(2175), - [anon_sym_PIPE_PIPE] = ACTIONS(2175), - [anon_sym_GT_GT] = ACTIONS(2177), - [anon_sym_GT_GT_GT] = ACTIONS(2175), - [anon_sym_LT_LT] = ACTIONS(2175), - [anon_sym_AMP] = ACTIONS(2177), - [anon_sym_CARET] = ACTIONS(2175), - [anon_sym_PIPE] = ACTIONS(2177), - [anon_sym_PLUS] = ACTIONS(2177), - [anon_sym_DASH] = ACTIONS(2177), - [anon_sym_PERCENT] = ACTIONS(2175), - [anon_sym_STAR_STAR] = ACTIONS(2175), - [anon_sym_LT_EQ] = ACTIONS(2175), - [anon_sym_EQ_EQ] = ACTIONS(2177), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2175), - [anon_sym_BANG_EQ] = ACTIONS(2177), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2175), - [anon_sym_GT_EQ] = ACTIONS(2175), - [anon_sym_QMARK_QMARK] = ACTIONS(2175), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), - [sym__automatic_semicolon] = ACTIONS(2175), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_STAR] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_as] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [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(2175), + [anon_sym_else] = ACTIONS(2175), + [anon_sym_if] = ACTIONS(2175), + [anon_sym_switch] = ACTIONS(2175), + [anon_sym_for] = ACTIONS(2175), + [anon_sym_LPAREN] = ACTIONS(2173), + [anon_sym_await] = ACTIONS(2175), + [anon_sym_in] = 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(2175), + [anon_sym_GT] = ACTIONS(2175), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_DOT] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_QMARK_DOT] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2175), + [anon_sym_AMP_AMP] = ACTIONS(2173), + [anon_sym_PIPE_PIPE] = ACTIONS(2173), + [anon_sym_GT_GT] = ACTIONS(2175), + [anon_sym_GT_GT_GT] = ACTIONS(2173), + [anon_sym_LT_LT] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2175), + [anon_sym_CARET] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2175), + [anon_sym_PLUS] = ACTIONS(2175), + [anon_sym_DASH] = ACTIONS(2175), + [anon_sym_PERCENT] = ACTIONS(2173), + [anon_sym_STAR_STAR] = ACTIONS(2173), + [anon_sym_LT_EQ] = ACTIONS(2173), + [anon_sym_EQ_EQ] = ACTIONS(2175), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2173), + [anon_sym_BANG_EQ] = ACTIONS(2175), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2173), + [anon_sym_GT_EQ] = ACTIONS(2173), + [anon_sym_QMARK_QMARK] = ACTIONS(2173), + [anon_sym_instanceof] = 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_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_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_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), + [sym__automatic_semicolon] = ACTIONS(2173), }, [168] = { - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_STAR] = ACTIONS(2183), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_as] = ACTIONS(2183), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_COMMA] = ACTIONS(2185), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2181), - [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_in] = ACTIONS(2183), - [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(2181), - [anon_sym_GT] = ACTIONS(2183), - [anon_sym_SLASH] = ACTIONS(2181), - [anon_sym_DOT] = ACTIONS(2183), - [anon_sym_class] = ACTIONS(2181), - [anon_sym_async] = ACTIONS(2181), - [anon_sym_function] = ACTIONS(2181), - [anon_sym_QMARK_DOT] = ACTIONS(2185), - [anon_sym_new] = ACTIONS(2181), - [anon_sym_QMARK] = ACTIONS(2183), - [anon_sym_AMP_AMP] = ACTIONS(2185), - [anon_sym_PIPE_PIPE] = ACTIONS(2185), - [anon_sym_GT_GT] = ACTIONS(2183), - [anon_sym_GT_GT_GT] = ACTIONS(2185), - [anon_sym_LT_LT] = ACTIONS(2185), - [anon_sym_AMP] = ACTIONS(2183), - [anon_sym_CARET] = ACTIONS(2185), - [anon_sym_PIPE] = ACTIONS(2183), - [anon_sym_PLUS] = ACTIONS(2181), - [anon_sym_DASH] = ACTIONS(2181), - [anon_sym_PERCENT] = ACTIONS(2185), - [anon_sym_STAR_STAR] = ACTIONS(2185), - [anon_sym_LT_EQ] = ACTIONS(2185), - [anon_sym_EQ_EQ] = ACTIONS(2183), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2185), - [anon_sym_BANG_EQ] = ACTIONS(2183), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2185), - [anon_sym_GT_EQ] = ACTIONS(2185), - [anon_sym_QMARK_QMARK] = ACTIONS(2185), - [anon_sym_instanceof] = ACTIONS(2183), - [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_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2187), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_export] = ACTIONS(2179), + [anon_sym_STAR] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_as] = ACTIONS(2179), + [anon_sym_namespace] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [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(2179), + [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_in] = 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(2179), + [anon_sym_GT] = ACTIONS(2179), + [anon_sym_SLASH] = ACTIONS(2179), + [anon_sym_DOT] = ACTIONS(2179), + [anon_sym_class] = ACTIONS(2179), + [anon_sym_async] = ACTIONS(2179), + [anon_sym_function] = ACTIONS(2179), + [anon_sym_QMARK_DOT] = ACTIONS(2177), + [anon_sym_new] = ACTIONS(2179), + [anon_sym_QMARK] = ACTIONS(2179), + [anon_sym_AMP_AMP] = ACTIONS(2177), + [anon_sym_PIPE_PIPE] = ACTIONS(2177), + [anon_sym_GT_GT] = ACTIONS(2179), + [anon_sym_GT_GT_GT] = ACTIONS(2177), + [anon_sym_LT_LT] = ACTIONS(2177), + [anon_sym_AMP] = ACTIONS(2179), + [anon_sym_CARET] = ACTIONS(2177), + [anon_sym_PIPE] = ACTIONS(2179), + [anon_sym_PLUS] = ACTIONS(2179), + [anon_sym_DASH] = ACTIONS(2179), + [anon_sym_PERCENT] = ACTIONS(2177), + [anon_sym_STAR_STAR] = ACTIONS(2177), + [anon_sym_LT_EQ] = ACTIONS(2177), + [anon_sym_EQ_EQ] = ACTIONS(2179), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2177), + [anon_sym_BANG_EQ] = ACTIONS(2179), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2177), + [anon_sym_GT_EQ] = ACTIONS(2177), + [anon_sym_QMARK_QMARK] = ACTIONS(2177), + [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2179), + [anon_sym_interface] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [sym__automatic_semicolon] = ACTIONS(2177), }, [169] = { - [ts_builtin_sym_end] = ACTIONS(2189), - [sym_identifier] = ACTIONS(2191), - [anon_sym_export] = ACTIONS(2191), - [anon_sym_STAR] = ACTIONS(2193), - [anon_sym_default] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2191), - [anon_sym_as] = ACTIONS(2193), - [anon_sym_namespace] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_COMMA] = ACTIONS(2195), - [anon_sym_RBRACE] = ACTIONS(2189), - [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(2191), - [anon_sym_else] = ACTIONS(2191), - [anon_sym_if] = ACTIONS(2191), - [anon_sym_switch] = ACTIONS(2191), - [anon_sym_for] = ACTIONS(2191), - [anon_sym_LPAREN] = ACTIONS(2189), - [anon_sym_await] = ACTIONS(2191), - [anon_sym_in] = ACTIONS(2193), - [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(2191), - [anon_sym_GT] = ACTIONS(2193), - [anon_sym_SLASH] = ACTIONS(2191), - [anon_sym_DOT] = ACTIONS(2193), - [anon_sym_class] = ACTIONS(2191), - [anon_sym_async] = ACTIONS(2191), - [anon_sym_function] = ACTIONS(2191), - [anon_sym_QMARK_DOT] = ACTIONS(2195), - [anon_sym_new] = ACTIONS(2191), - [anon_sym_QMARK] = ACTIONS(2193), - [anon_sym_AMP_AMP] = ACTIONS(2195), - [anon_sym_PIPE_PIPE] = ACTIONS(2195), - [anon_sym_GT_GT] = ACTIONS(2193), - [anon_sym_GT_GT_GT] = ACTIONS(2195), - [anon_sym_LT_LT] = ACTIONS(2195), - [anon_sym_AMP] = ACTIONS(2193), - [anon_sym_CARET] = ACTIONS(2195), - [anon_sym_PIPE] = ACTIONS(2193), - [anon_sym_PLUS] = ACTIONS(2191), - [anon_sym_DASH] = ACTIONS(2191), - [anon_sym_PERCENT] = ACTIONS(2195), - [anon_sym_STAR_STAR] = ACTIONS(2195), - [anon_sym_LT_EQ] = ACTIONS(2195), - [anon_sym_EQ_EQ] = ACTIONS(2193), - [anon_sym_EQ_EQ_EQ] = ACTIONS(2195), - [anon_sym_BANG_EQ] = ACTIONS(2193), - [anon_sym_BANG_EQ_EQ] = ACTIONS(2195), - [anon_sym_GT_EQ] = ACTIONS(2195), - [anon_sym_QMARK_QMARK] = ACTIONS(2195), - [anon_sym_instanceof] = ACTIONS(2193), - [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_readonly] = ACTIONS(2191), - [anon_sym_get] = ACTIONS(2191), - [anon_sym_set] = ACTIONS(2191), - [anon_sym_declare] = ACTIONS(2191), - [anon_sym_public] = ACTIONS(2191), - [anon_sym_private] = ACTIONS(2191), - [anon_sym_protected] = ACTIONS(2191), - [anon_sym_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_abstract] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2191), - [anon_sym_enum] = ACTIONS(2191), - [sym__automatic_semicolon] = ACTIONS(2197), + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_STAR] = ACTIONS(2185), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_as] = ACTIONS(2185), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_COMMA] = ACTIONS(2187), + [anon_sym_RBRACE] = ACTIONS(2181), + [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(2183), + [anon_sym_else] = ACTIONS(2183), + [anon_sym_if] = ACTIONS(2183), + [anon_sym_switch] = ACTIONS(2183), + [anon_sym_for] = ACTIONS(2183), + [anon_sym_LPAREN] = ACTIONS(2181), + [anon_sym_await] = ACTIONS(2183), + [anon_sym_in] = ACTIONS(2185), + [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(2183), + [anon_sym_GT] = ACTIONS(2185), + [anon_sym_SLASH] = ACTIONS(2183), + [anon_sym_DOT] = ACTIONS(2185), + [anon_sym_class] = ACTIONS(2183), + [anon_sym_async] = ACTIONS(2183), + [anon_sym_function] = ACTIONS(2183), + [anon_sym_QMARK_DOT] = ACTIONS(2187), + [anon_sym_new] = ACTIONS(2183), + [anon_sym_QMARK] = ACTIONS(2185), + [anon_sym_AMP_AMP] = ACTIONS(2187), + [anon_sym_PIPE_PIPE] = ACTIONS(2187), + [anon_sym_GT_GT] = ACTIONS(2185), + [anon_sym_GT_GT_GT] = ACTIONS(2187), + [anon_sym_LT_LT] = ACTIONS(2187), + [anon_sym_AMP] = ACTIONS(2185), + [anon_sym_CARET] = ACTIONS(2187), + [anon_sym_PIPE] = ACTIONS(2185), + [anon_sym_PLUS] = ACTIONS(2183), + [anon_sym_DASH] = ACTIONS(2183), + [anon_sym_PERCENT] = ACTIONS(2187), + [anon_sym_STAR_STAR] = ACTIONS(2187), + [anon_sym_LT_EQ] = ACTIONS(2187), + [anon_sym_EQ_EQ] = ACTIONS(2185), + [anon_sym_EQ_EQ_EQ] = ACTIONS(2187), + [anon_sym_BANG_EQ] = ACTIONS(2185), + [anon_sym_BANG_EQ_EQ] = ACTIONS(2187), + [anon_sym_GT_EQ] = ACTIONS(2187), + [anon_sym_QMARK_QMARK] = ACTIONS(2187), + [anon_sym_instanceof] = ACTIONS(2185), + [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_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2189), }, [170] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_STAR] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_as] = ACTIONS(1968), - [anon_sym_namespace] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_typeof] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1968), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1968), - [anon_sym_in] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_with] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_debugger] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1968), - [anon_sym_GT] = ACTIONS(1968), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_DOT] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_QMARK_DOT] = ACTIONS(1966), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_QMARK] = ACTIONS(1968), - [anon_sym_AMP_AMP] = ACTIONS(1966), - [anon_sym_PIPE_PIPE] = ACTIONS(1966), - [anon_sym_GT_GT] = ACTIONS(1968), - [anon_sym_GT_GT_GT] = ACTIONS(1966), - [anon_sym_LT_LT] = ACTIONS(1966), - [anon_sym_AMP] = ACTIONS(1968), - [anon_sym_CARET] = ACTIONS(1966), - [anon_sym_PIPE] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_PERCENT] = ACTIONS(1966), - [anon_sym_STAR_STAR] = ACTIONS(1966), - [anon_sym_LT_EQ] = ACTIONS(1966), - [anon_sym_EQ_EQ] = ACTIONS(1968), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1966), - [anon_sym_BANG_EQ] = ACTIONS(1968), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1966), - [anon_sym_GT_EQ] = ACTIONS(1966), - [anon_sym_QMARK_QMARK] = ACTIONS(1966), - [anon_sym_instanceof] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(1968), - [anon_sym_delete] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1966), - [sym_number] = ACTIONS(1966), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_true] = ACTIONS(1968), - [sym_false] = ACTIONS(1968), - [sym_null] = ACTIONS(1968), - [sym_undefined] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_readonly] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(1968), - [anon_sym_set] = ACTIONS(1968), - [anon_sym_declare] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_module] = ACTIONS(1968), - [anon_sym_any] = ACTIONS(1968), - [anon_sym_number] = ACTIONS(1968), - [anon_sym_boolean] = ACTIONS(1968), - [anon_sym_string] = ACTIONS(1968), - [anon_sym_symbol] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_interface] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [sym__automatic_semicolon] = ACTIONS(2199), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), + [sym_identifier] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(1894), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(1896), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [171] = { - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_STAR] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_as] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2201), + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_STAR] = ACTIONS(2199), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_as] = ACTIONS(2199), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2195), [anon_sym_COMMA] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [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(2203), - [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_in] = 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(2203), - [anon_sym_GT] = ACTIONS(2203), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_DOT] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), + [anon_sym_RBRACE] = ACTIONS(2195), + [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(2197), + [anon_sym_else] = ACTIONS(2197), + [anon_sym_if] = ACTIONS(2197), + [anon_sym_switch] = ACTIONS(2197), + [anon_sym_for] = ACTIONS(2197), + [anon_sym_LPAREN] = ACTIONS(2195), + [anon_sym_await] = ACTIONS(2197), + [anon_sym_in] = ACTIONS(2199), + [anon_sym_while] = ACTIONS(2197), + [anon_sym_do] = ACTIONS(2197), + [anon_sym_try] = ACTIONS(2197), + [anon_sym_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(2197), + [anon_sym_GT] = ACTIONS(2199), + [anon_sym_SLASH] = ACTIONS(2197), + [anon_sym_DOT] = ACTIONS(2199), + [anon_sym_class] = ACTIONS(2197), + [anon_sym_async] = ACTIONS(2197), + [anon_sym_function] = ACTIONS(2197), [anon_sym_QMARK_DOT] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_QMARK] = ACTIONS(2203), + [anon_sym_new] = ACTIONS(2197), + [anon_sym_QMARK] = ACTIONS(2199), [anon_sym_AMP_AMP] = ACTIONS(2201), [anon_sym_PIPE_PIPE] = ACTIONS(2201), - [anon_sym_GT_GT] = ACTIONS(2203), + [anon_sym_GT_GT] = ACTIONS(2199), [anon_sym_GT_GT_GT] = ACTIONS(2201), [anon_sym_LT_LT] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2203), + [anon_sym_AMP] = ACTIONS(2199), [anon_sym_CARET] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2203), - [anon_sym_PLUS] = ACTIONS(2203), - [anon_sym_DASH] = ACTIONS(2203), + [anon_sym_PIPE] = ACTIONS(2199), + [anon_sym_PLUS] = ACTIONS(2197), + [anon_sym_DASH] = ACTIONS(2197), [anon_sym_PERCENT] = ACTIONS(2201), [anon_sym_STAR_STAR] = ACTIONS(2201), [anon_sym_LT_EQ] = ACTIONS(2201), - [anon_sym_EQ_EQ] = ACTIONS(2203), + [anon_sym_EQ_EQ] = ACTIONS(2199), [anon_sym_EQ_EQ_EQ] = ACTIONS(2201), - [anon_sym_BANG_EQ] = ACTIONS(2203), + [anon_sym_BANG_EQ] = ACTIONS(2199), [anon_sym_BANG_EQ_EQ] = ACTIONS(2201), [anon_sym_GT_EQ] = ACTIONS(2201), [anon_sym_QMARK_QMARK] = ACTIONS(2201), - [anon_sym_instanceof] = 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_readonly] = 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_abstract] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), - [sym__automatic_semicolon] = ACTIONS(2201), + [anon_sym_instanceof] = ACTIONS(2199), + [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_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_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_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2203), }, [172] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), - [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2207), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, - [173] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), - [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2211), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, - [174] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2685), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5756), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2586), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5750), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(3721), - [sym_identifier] = ACTIONS(2213), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(3712), + [sym_identifier] = ACTIONS(2205), [anon_sym_export] = ACTIONS(654), [anon_sym_type] = ACTIONS(654), [anon_sym_namespace] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2207), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_RPAREN] = ACTIONS(662), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2209), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(666), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -34208,8 +34011,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(2219), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(2211), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), @@ -34217,7 +34020,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2213), [anon_sym_get] = ACTIONS(654), [anon_sym_set] = ACTIONS(654), [anon_sym_declare] = ACTIONS(654), @@ -34231,180 +34034,283 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(654), [anon_sym_symbol] = ACTIONS(654), }, - [175] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), + [173] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(1655), [anon_sym_LBRACE] = ACTIONS(1878), [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(1636), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(1672), [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), + [anon_sym_CARET] = ACTIONS(1655), [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), + [anon_sym_keyof] = ACTIONS(790), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [176] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2724), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5696), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(3721), - [sym_identifier] = ACTIONS(2213), - [anon_sym_export] = ACTIONS(654), - [anon_sym_type] = ACTIONS(654), - [anon_sym_namespace] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(2215), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(662), + [174] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), + [sym_identifier] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(2221), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(1894), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(1896), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), + }, + [175] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2656), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5558), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(3712), + [sym_identifier] = ACTIONS(2205), + [anon_sym_export] = ACTIONS(654), + [anon_sym_type] = ACTIONS(654), + [anon_sym_namespace] = ACTIONS(656), + [anon_sym_LBRACE] = ACTIONS(2207), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(662), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2209), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(666), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -34414,8 +34320,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(2219), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(2211), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), @@ -34423,7 +34329,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2213), [anon_sym_get] = ACTIONS(654), [anon_sym_set] = ACTIONS(654), [anon_sym_declare] = ACTIONS(654), @@ -34437,180 +34343,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(654), [anon_sym_symbol] = ACTIONS(654), }, - [177] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5705), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4412), - [sym_constructor_type] = STATE(4412), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4412), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5255), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4412), - [sym_union_type] = STATE(4412), - [sym_intersection_type] = STATE(4412), - [sym_function_type] = STATE(4412), - [sym_identifier] = ACTIONS(1874), - [anon_sym_STAR] = ACTIONS(1614), - [anon_sym_EQ] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(1880), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_LT] = ACTIONS(1632), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_EQ_GT] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_new] = ACTIONS(1886), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1888), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1890), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1892), - [anon_sym_PLUS] = ACTIONS(1648), - [anon_sym_DASH] = ACTIONS(1648), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(1896), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(798), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, - [178] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2755), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5766), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [176] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2706), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5586), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(3721), - [sym_identifier] = ACTIONS(2213), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(3712), + [sym_identifier] = ACTIONS(2205), [anon_sym_export] = ACTIONS(654), [anon_sym_type] = ACTIONS(654), [anon_sym_namespace] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2207), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_RPAREN] = ACTIONS(662), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2209), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(666), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -34620,8 +34423,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(2219), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(2211), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), @@ -34629,7 +34432,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2213), [anon_sym_get] = ACTIONS(654), [anon_sym_set] = ACTIONS(654), [anon_sym_declare] = ACTIONS(654), @@ -34643,77 +34446,77 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(654), [anon_sym_symbol] = ACTIONS(654), }, - [179] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2592), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym__formal_parameter] = STATE(5043), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5740), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [177] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2632), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym__formal_parameter] = STATE(5069), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5648), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(3721), - [sym_identifier] = ACTIONS(2213), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(3712), + [sym_identifier] = ACTIONS(2205), [anon_sym_export] = ACTIONS(654), [anon_sym_type] = ACTIONS(654), [anon_sym_namespace] = ACTIONS(656), - [anon_sym_LBRACE] = ACTIONS(2215), + [anon_sym_LBRACE] = ACTIONS(2207), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_RPAREN] = ACTIONS(662), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(2217), + [anon_sym_LBRACK] = ACTIONS(2209), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(666), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -34723,8 +34526,8 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(2219), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(2211), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), @@ -34732,7 +34535,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(654), - [anon_sym_readonly] = ACTIONS(2221), + [anon_sym_readonly] = ACTIONS(2213), [anon_sym_get] = ACTIONS(654), [anon_sym_set] = ACTIONS(654), [anon_sym_declare] = ACTIONS(654), @@ -34746,76 +34549,282 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(654), [anon_sym_symbol] = ACTIONS(654), }, + [178] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), + [sym_identifier] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(2224), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(2226), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(1894), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(1896), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), + }, + [179] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5715), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4284), + [sym_constructor_type] = STATE(4284), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4284), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5244), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4284), + [sym_union_type] = STATE(4284), + [sym_intersection_type] = STATE(4284), + [sym_function_type] = STATE(4284), + [sym_identifier] = ACTIONS(1874), + [anon_sym_STAR] = ACTIONS(1650), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1878), + [anon_sym_typeof] = ACTIONS(1880), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1882), + [anon_sym_LT] = ACTIONS(1668), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_new] = ACTIONS(1886), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1888), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1890), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1892), + [anon_sym_PLUS] = ACTIONS(1684), + [anon_sym_DASH] = ACTIONS(1684), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(1894), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(1896), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(790), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), + }, [180] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2777), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5053), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5054), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_RBRACK] = ACTIONS(2236), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -34825,7 +34834,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -34849,75 +34858,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(538), }, [181] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_RBRACK] = ACTIONS(2240), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -34927,7 +34936,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -34951,75 +34960,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(538), }, [182] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_RBRACK] = ACTIONS(2242), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -35029,7 +35038,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -35053,75 +35062,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(538), }, [183] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2893), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4966), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2403), + [sym_expression_statement] = STATE(238), + [sym_variable_declaration] = STATE(238), + [sym_lexical_declaration] = STATE(238), + [sym_empty_statement] = STATE(238), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(4966), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(4966), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(4966), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5029), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2033), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2246), + [anon_sym_namespace] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2250), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_var] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), + [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(2256), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2258), + [anon_sym_function] = ACTIONS(818), + [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(2260), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2246), + [anon_sym_readonly] = ACTIONS(2246), + [anon_sym_get] = ACTIONS(2246), + [anon_sym_set] = ACTIONS(2246), + [anon_sym_declare] = ACTIONS(2246), + [anon_sym_public] = ACTIONS(2246), + [anon_sym_private] = ACTIONS(2246), + [anon_sym_protected] = ACTIONS(2246), + [anon_sym_module] = ACTIONS(2246), + [anon_sym_any] = ACTIONS(2246), + [anon_sym_number] = ACTIONS(2246), + [anon_sym_boolean] = ACTIONS(2246), + [anon_sym_string] = ACTIONS(2246), + [anon_sym_symbol] = ACTIONS(2246), + }, + [184] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2244), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2262), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -35131,7 +35242,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -35154,76 +35265,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(538), [anon_sym_symbol] = ACTIONS(538), }, - [184] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [185] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2808), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2246), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2240), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -35233,7 +35344,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -35256,76 +35367,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(538), [anon_sym_symbol] = ACTIONS(538), }, - [185] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [186] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2248), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2264), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -35335,7 +35446,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -35358,76 +35469,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(538), [anon_sym_symbol] = ACTIONS(538), }, - [186] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [187] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2250), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2266), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -35437,7 +35548,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -35460,76 +35571,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(538), [anon_sym_symbol] = ACTIONS(538), }, - [187] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2931), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [188] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2764), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5077), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5074), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2268), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -35539,7 +35650,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -35562,76 +35673,76 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(538), [anon_sym_symbol] = ACTIONS(538), }, - [188] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [189] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2777), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5067), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5061), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2254), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2270), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -35641,7 +35752,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -35664,73 +35775,277 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(538), [anon_sym_symbol] = ACTIONS(538), }, - [189] = { - [sym_import] = STATE(2576), - [sym_expression_statement] = STATE(234), - [sym_variable_declaration] = STATE(234), - [sym_lexical_declaration] = STATE(234), - [sym_empty_statement] = STATE(234), - [sym_parenthesized_expression] = STATE(2032), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(4954), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(4954), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2032), - [sym_subscript_expression] = STATE(2032), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(4954), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [190] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2032), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2256), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2262), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), + [sym_identifier] = ACTIONS(2232), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_namespace] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2272), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(538), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_module] = ACTIONS(538), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + }, + [191] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2851), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(5059), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5063), + [aux_sym_array_pattern_repeat1] = STATE(5060), + [sym_identifier] = ACTIONS(2232), + [anon_sym_export] = ACTIONS(538), + [anon_sym_type] = ACTIONS(538), + [anon_sym_namespace] = ACTIONS(542), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(2234), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2274), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(568), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(538), + [anon_sym_readonly] = ACTIONS(538), + [anon_sym_get] = ACTIONS(538), + [anon_sym_set] = ACTIONS(538), + [anon_sym_declare] = ACTIONS(538), + [anon_sym_public] = ACTIONS(538), + [anon_sym_private] = ACTIONS(538), + [anon_sym_protected] = ACTIONS(538), + [anon_sym_module] = ACTIONS(538), + [anon_sym_any] = ACTIONS(538), + [anon_sym_number] = ACTIONS(538), + [anon_sym_boolean] = ACTIONS(538), + [anon_sym_string] = ACTIONS(538), + [anon_sym_symbol] = ACTIONS(538), + }, + [192] = { + [sym_import] = STATE(2403), + [sym_expression_statement] = STATE(239), + [sym_variable_declaration] = STATE(239), + [sym_lexical_declaration] = STATE(239), + [sym_empty_statement] = STATE(239), + [sym_parenthesized_expression] = STATE(2033), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(4966), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(4966), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2033), + [sym_subscript_expression] = STATE(2033), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(4966), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2033), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2244), + [anon_sym_export] = ACTIONS(2246), + [anon_sym_type] = ACTIONS(2246), + [anon_sym_namespace] = ACTIONS(2248), + [anon_sym_LBRACE] = ACTIONS(2250), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), + [anon_sym_import] = ACTIONS(802), + [anon_sym_var] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2254), + [anon_sym_const] = ACTIONS(2254), [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(2268), + [anon_sym_LBRACK] = ACTIONS(2256), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2270), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2258), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -35749,93 +36064,93 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2272), + [sym_undefined] = ACTIONS(2260), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), + [anon_sym_static] = ACTIONS(2246), + [anon_sym_readonly] = ACTIONS(2246), + [anon_sym_get] = ACTIONS(2246), + [anon_sym_set] = ACTIONS(2246), + [anon_sym_declare] = ACTIONS(2246), + [anon_sym_public] = ACTIONS(2246), + [anon_sym_private] = ACTIONS(2246), + [anon_sym_protected] = ACTIONS(2246), + [anon_sym_module] = ACTIONS(2246), + [anon_sym_any] = ACTIONS(2246), + [anon_sym_number] = ACTIONS(2246), + [anon_sym_boolean] = ACTIONS(2246), + [anon_sym_string] = ACTIONS(2246), + [anon_sym_symbol] = ACTIONS(2246), }, - [190] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2956), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(5039), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [193] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2889), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4948), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5025), - [aux_sym_array_pattern_repeat1] = STATE(4980), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4946), + [aux_sym_array_pattern_repeat1] = STATE(5060), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2234), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2252), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2276), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -35845,7 +36160,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -35868,378 +36183,175 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(538), [anon_sym_symbol] = ACTIONS(538), }, - [191] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), - [sym_identifier] = ACTIONS(2232), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2274), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(538), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_module] = ACTIONS(538), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), - }, - [192] = { - [sym_import] = STATE(2576), - [sym_expression_statement] = STATE(233), - [sym_variable_declaration] = STATE(233), - [sym_lexical_declaration] = STATE(233), - [sym_empty_statement] = STATE(233), - [sym_parenthesized_expression] = STATE(2032), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(4954), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(4954), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2032), - [sym_subscript_expression] = STATE(2032), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(4954), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2032), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2256), - [anon_sym_export] = ACTIONS(2258), - [anon_sym_type] = ACTIONS(2258), - [anon_sym_namespace] = ACTIONS(2260), - [anon_sym_LBRACE] = ACTIONS(2262), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_var] = ACTIONS(2264), - [anon_sym_let] = ACTIONS(2266), - [anon_sym_const] = ACTIONS(2266), - [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(2268), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2270), - [anon_sym_function] = ACTIONS(768), - [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(2272), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2258), - [anon_sym_readonly] = ACTIONS(2258), - [anon_sym_get] = ACTIONS(2258), - [anon_sym_set] = ACTIONS(2258), - [anon_sym_declare] = ACTIONS(2258), - [anon_sym_public] = ACTIONS(2258), - [anon_sym_private] = ACTIONS(2258), - [anon_sym_protected] = ACTIONS(2258), - [anon_sym_module] = ACTIONS(2258), - [anon_sym_any] = ACTIONS(2258), - [anon_sym_number] = ACTIONS(2258), - [anon_sym_boolean] = ACTIONS(2258), - [anon_sym_string] = ACTIONS(2258), - [anon_sym_symbol] = ACTIONS(2258), - }, - [193] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2883), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4942), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [194] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3374), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4979), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4979), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4979), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4940), - [aux_sym_array_pattern_repeat1] = STATE(4980), - [sym_identifier] = ACTIONS(2232), - [anon_sym_export] = ACTIONS(538), - [anon_sym_type] = ACTIONS(538), - [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(2234), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_mapped_type_clause] = STATE(5492), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_pattern_repeat1] = STATE(5060), + [sym_identifier] = ACTIONS(2278), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_type] = ACTIONS(2280), + [anon_sym_namespace] = ACTIONS(2282), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2276), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_RBRACK] = ACTIONS(2290), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(568), + [anon_sym_async] = ACTIONS(2292), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_DOT_DOT_DOT] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(538), - [anon_sym_readonly] = ACTIONS(538), - [anon_sym_get] = ACTIONS(538), - [anon_sym_set] = ACTIONS(538), - [anon_sym_declare] = ACTIONS(538), - [anon_sym_public] = ACTIONS(538), - [anon_sym_private] = ACTIONS(538), - [anon_sym_protected] = ACTIONS(538), - [anon_sym_module] = ACTIONS(538), - [anon_sym_any] = ACTIONS(538), - [anon_sym_number] = ACTIONS(538), - [anon_sym_boolean] = ACTIONS(538), - [anon_sym_string] = ACTIONS(538), - [anon_sym_symbol] = ACTIONS(538), + [anon_sym_static] = ACTIONS(2280), + [anon_sym_readonly] = 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), }, - [194] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [195] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_RBRACE] = ACTIONS(2278), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2294), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2294), [anon_sym_await] = ACTIONS(556), - [anon_sym_SEMI] = ACTIONS(2278), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_RBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2280), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_QMARK] = ACTIONS(2294), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -36249,7 +36361,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -36257,193 +36369,88 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_extends] = ACTIONS(2280), - [anon_sym_PIPE_RBRACE] = ACTIONS(2278), - [sym__automatic_semicolon] = ACTIONS(2278), - }, - [195] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3292), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5095), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5095), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5095), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_mapped_type_clause] = STATE(5485), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_pattern_repeat1] = STATE(4980), - [sym_identifier] = ACTIONS(2282), - [anon_sym_export] = ACTIONS(2284), - [anon_sym_type] = ACTIONS(2284), - [anon_sym_namespace] = ACTIONS(2286), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_RBRACK] = ACTIONS(2294), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2296), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2284), - [anon_sym_readonly] = ACTIONS(2284), - [anon_sym_get] = ACTIONS(2284), - [anon_sym_set] = ACTIONS(2284), - [anon_sym_declare] = ACTIONS(2284), - [anon_sym_public] = ACTIONS(2284), - [anon_sym_private] = ACTIONS(2284), - [anon_sym_protected] = ACTIONS(2284), - [anon_sym_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_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), + [anon_sym_extends] = ACTIONS(2296), }, [196] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2278), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_RBRACE] = ACTIONS(2294), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2278), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), + [anon_sym_SEMI] = ACTIONS(2294), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_RBRACK] = ACTIONS(2278), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_QMARK] = ACTIONS(2278), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2296), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -36453,7 +36460,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -36461,90 +36468,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), + [anon_sym_extends] = ACTIONS(2296), + [anon_sym_PIPE_RBRACE] = ACTIONS(2294), + [sym__automatic_semicolon] = ACTIONS(2294), }, [197] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5348), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4930), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2818), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5299), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4980), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4927), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4990), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2298), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2301), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2298), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -36554,7 +36563,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -36578,173 +36587,173 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(538), }, [198] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3286), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5095), - [sym_assignment_pattern] = STATE(5042), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5095), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5095), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3386), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4979), + [sym_assignment_pattern] = STATE(5068), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4979), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4979), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_pattern_repeat1] = STATE(4980), - [sym_identifier] = ACTIONS(2305), - [anon_sym_export] = ACTIONS(2307), - [anon_sym_type] = ACTIONS(2307), - [anon_sym_namespace] = ACTIONS(2309), - [anon_sym_LBRACE] = ACTIONS(2288), - [anon_sym_COMMA] = ACTIONS(2290), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_pattern_repeat1] = STATE(5060), + [sym_identifier] = ACTIONS(2301), + [anon_sym_export] = ACTIONS(2303), + [anon_sym_type] = ACTIONS(2303), + [anon_sym_namespace] = ACTIONS(2305), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(2292), - [anon_sym_RBRACK] = ACTIONS(2294), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(2288), + [anon_sym_RBRACK] = ACTIONS(2290), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2311), + [anon_sym_async] = ACTIONS(2307), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1824), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2307), - [anon_sym_readonly] = ACTIONS(2307), - [anon_sym_get] = ACTIONS(2307), - [anon_sym_set] = ACTIONS(2307), - [anon_sym_declare] = ACTIONS(2307), - [anon_sym_public] = ACTIONS(2307), - [anon_sym_private] = ACTIONS(2307), - [anon_sym_protected] = ACTIONS(2307), - [anon_sym_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_static] = ACTIONS(2303), + [anon_sym_readonly] = 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), }, [199] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5348), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4930), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2818), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5299), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4980), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4927), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4990), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2298), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_RBRACK] = ACTIONS(2298), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_RBRACK] = ACTIONS(2309), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -36754,7 +36763,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -36778,73 +36787,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(538), }, [200] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4351), - [sym_assignment_pattern] = STATE(5348), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4351), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4351), - [sym_spread_element] = STATE(4930), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2818), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4386), + [sym_assignment_pattern] = STATE(5299), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4386), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4386), + [sym_spread_element] = STATE(4980), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(4927), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(4990), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2232), [anon_sym_export] = ACTIONS(538), [anon_sym_type] = ACTIONS(538), [anon_sym_namespace] = ACTIONS(542), - [anon_sym_LBRACE] = ACTIONS(1762), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_COMMA] = ACTIONS(2298), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_RBRACK] = ACTIONS(2313), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(568), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), + [anon_sym_new] = ACTIONS(1628), [anon_sym_DOT_DOT_DOT] = ACTIONS(2238), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -36854,7 +36863,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -36878,565 +36887,565 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(538), }, [201] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2284), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3144), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(2278), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1402), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(896), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), + [anon_sym_extends] = ACTIONS(2296), }, [202] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3345), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3379), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), + [anon_sym_GT] = ACTIONS(2294), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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_extends] = ACTIONS(2296), }, [203] = { - [sym_export_clause] = STATE(4778), - [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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_extends] = ACTIONS(2296), }, [204] = { - [sym_export_clause] = STATE(4778), - [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), - [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [205] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3234), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2895), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_spread_element] = STATE(4923), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4926), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2319), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), + }, + [205] = { + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), + [sym_decorator] = STATE(3823), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [206] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3161), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -37447,678 +37456,1070 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + [anon_sym_extends] = ACTIONS(2296), }, [207] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2885), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1600), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [208] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2697), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_module] = ACTIONS(906), + [anon_sym_any] = ACTIONS(906), + [anon_sym_number] = ACTIONS(906), + [anon_sym_boolean] = ACTIONS(906), + [anon_sym_string] = ACTIONS(906), + [anon_sym_symbol] = ACTIONS(906), + [anon_sym_extends] = ACTIONS(2296), }, - [208] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2760), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_spread_element] = STATE(4930), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [209] = { + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2368), - [anon_sym_typeof] = ACTIONS(586), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [210] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2937), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_nested_identifier] = STATE(5607), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_nested_type_identifier] = STATE(4385), + [sym__extends_type] = STATE(4570), + [sym_functional_extension] = STATE(5041), + [sym_generic_type] = STATE(4570), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [211] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2193), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2368), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_RBRACK] = ACTIONS(2368), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), + [anon_sym_extends] = ACTIONS(2296), }, - [209] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [212] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(2278), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), + [anon_sym_extends] = ACTIONS(2296), }, - [210] = { - [sym_export_clause] = STATE(4778), - [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [213] = { + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, - [211] = { - [sym_export_clause] = STATE(4778), - [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [214] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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_extends] = ACTIONS(2296), }, - [212] = { - [sym_export_clause] = STATE(4778), - [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [215] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2807), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), + [anon_sym_extends] = ACTIONS(2296), }, - [213] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2896), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), + [216] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_spread_element] = STATE(4936), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + [anon_sym_extends] = ACTIONS(2296), + }, + [217] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2901), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_spread_element] = STATE(5018), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4937), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2378), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5015), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2317), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2380), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2382), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -38128,7 +38529,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -38136,87 +38537,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [214] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2807), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_spread_element] = STATE(5119), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [218] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2818), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_spread_element] = STATE(4980), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5122), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2378), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2384), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2382), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2384), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_RBRACK] = ACTIONS(2384), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -38226,7 +38627,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -38234,1067 +38635,871 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [215] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(3005), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - [anon_sym_extends] = ACTIONS(2280), - }, - [216] = { - [sym_export_clause] = STATE(4778), - [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), - [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [217] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [219] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2892), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(4283), + [sym__extends_type] = STATE(4634), + [sym_functional_extension] = STATE(4968), + [sym_generic_type] = STATE(4634), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - [anon_sym_extends] = ACTIONS(2280), - }, - [218] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2761), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_extends] = ACTIONS(2280), - }, - [219] = { - [sym_export_clause] = STATE(4778), - [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), - [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2323), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, [220] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3313), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3366), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), + [anon_sym_GT] = ACTIONS(2294), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1824), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), + [anon_sym_extends] = ACTIONS(2296), }, [221] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(75), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [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(91), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_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_extends] = ACTIONS(2280), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [222] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3222), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1190), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [223] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2606), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(4283), + [sym__extends_type] = STATE(4282), + [sym_functional_extension] = STATE(4809), + [sym_generic_type] = STATE(4282), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2386), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [223] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [224] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2943), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_spread_element] = STATE(5011), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5012), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2317), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [224] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [225] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(75), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + [anon_sym_extends] = ACTIONS(2296), + }, + [226] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2709), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), + [anon_sym_extends] = ACTIONS(2296), }, - [225] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2764), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_spread_element] = STATE(5110), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [227] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2828), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_spread_element] = STATE(5064), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5111), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2378), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5070), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2317), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2390), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2394), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -39304,7 +39509,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -39312,87 +39517,381 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [226] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3001), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_spread_element] = STATE(4967), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [228] = { + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(4968), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2378), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2329), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [229] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2691), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_nested_identifier] = STATE(5607), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_nested_type_identifier] = STATE(4385), + [sym__extends_type] = STATE(4383), + [sym_functional_extension] = STATE(4761), + [sym_generic_type] = STATE(4383), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2376), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [230] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + [anon_sym_extends] = ACTIONS(2296), + }, + [231] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3009), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_spread_element] = STATE(4972), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(4973), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2317), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2392), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2398), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -39402,7 +39901,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -39410,381 +39909,479 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [227] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2932), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [232] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - [anon_sym_extends] = ACTIONS(2280), - }, - [228] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2716), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + [anon_sym_extends] = ACTIONS(2296), }, - [229] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [233] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2905), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(2278), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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_extends] = ACTIONS(2296), }, - [230] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2925), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_spread_element] = STATE(5027), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [234] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + [anon_sym_extends] = ACTIONS(2296), + }, + [235] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2351), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(2294), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + [anon_sym_extends] = ACTIONS(2296), + }, + [236] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2834), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_spread_element] = STATE(5111), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [aux_sym_array_repeat1] = STATE(5028), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_COMMA] = ACTIONS(2378), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [aux_sym_array_repeat1] = STATE(5113), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_COMMA] = ACTIONS(2317), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2394), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2400), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2370), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2321), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -39794,7 +40391,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -39802,268 +40399,170 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [231] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2378), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(2278), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [232] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [237] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2911), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_COMMA] = ACTIONS(2278), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(2278), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_COMMA] = ACTIONS(2294), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(2294), [anon_sym_LT] = ACTIONS(65), - [anon_sym_GT] = ACTIONS(2278), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_AMP] = ACTIONS(2278), - [anon_sym_PIPE] = ACTIONS(2278), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), + [anon_sym_GT] = ACTIONS(2294), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_AMP] = ACTIONS(2294), + [anon_sym_PIPE] = ACTIONS(2294), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - [anon_sym_extends] = ACTIONS(2280), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + [anon_sym_extends] = ACTIONS(2296), }, - [233] = { - [sym_import] = STATE(2576), + [238] = { + [sym_import] = STATE(2403), [sym_expression_statement] = STATE(301), [sym_empty_statement] = STATE(301), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -40072,9 +40571,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -40095,72 +40594,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [234] = { - [sym_import] = STATE(2576), - [sym_expression_statement] = STATE(293), - [sym_empty_statement] = STATE(293), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(3006), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5198), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [239] = { + [sym_import] = STATE(2403), + [sym_expression_statement] = STATE(299), + [sym_empty_statement] = STATE(299), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2767), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5202), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -40169,9 +40668,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -40192,378 +40691,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_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), - }, - [235] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5114), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5114), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5114), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_pattern] = STATE(5433), - [sym_rest_pattern] = STATE(4129), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2396), - [anon_sym_export] = ACTIONS(696), - [anon_sym_type] = ACTIONS(696), - [anon_sym_namespace] = ACTIONS(700), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(710), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(696), - [anon_sym_readonly] = ACTIONS(696), - [anon_sym_get] = ACTIONS(696), - [anon_sym_set] = ACTIONS(696), - [anon_sym_declare] = ACTIONS(696), - [anon_sym_public] = ACTIONS(696), - [anon_sym_private] = ACTIONS(696), - [anon_sym_protected] = ACTIONS(696), - [anon_sym_module] = ACTIONS(696), - [anon_sym_any] = ACTIONS(696), - [anon_sym_number] = ACTIONS(696), - [anon_sym_boolean] = ACTIONS(696), - [anon_sym_string] = ACTIONS(696), - [anon_sym_symbol] = ACTIONS(696), - }, - [236] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2378), - [sym_primary_expression] = STATE(2784), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2398), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - }, - [237] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2634), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(4336), - [sym_generic_type] = STATE(4893), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2400), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [238] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3161), + [240] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3242), [sym_primary_expression] = STATE(2411), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), [sym_identifier] = ACTIONS(2402), [anon_sym_export] = ACTIONS(2404), [anon_sym_type] = ACTIONS(2404), [anon_sym_namespace] = ACTIONS(2406), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), [anon_sym_async] = ACTIONS(2408), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -40574,7 +40785,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2404), [anon_sym_readonly] = ACTIONS(2404), @@ -40591,86 +40802,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2404), [anon_sym_symbol] = ACTIONS(2404), }, - [239] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3222), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [241] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2407), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2410), [anon_sym_export] = ACTIONS(2412), [anon_sym_type] = ACTIONS(2412), [anon_sym_namespace] = ACTIONS(2414), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1190), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(2416), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2412), [anon_sym_readonly] = ACTIONS(2412), @@ -40687,86 +40898,86 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2412), [anon_sym_symbol] = ACTIONS(2412), }, - [240] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2466), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [242] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2418), [anon_sym_export] = ACTIONS(2420), [anon_sym_type] = ACTIONS(2420), [anon_sym_namespace] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2420), [anon_sym_readonly] = ACTIONS(2420), @@ -40783,170 +40994,171 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2420), [anon_sym_symbol] = ACTIONS(2420), }, - [241] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2863), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [243] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1525), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(2761), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1525), + [sym_subscript_expression] = STATE(1525), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(4517), - [sym_generic_type] = STATE(5038), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1525), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5243), + [sym_generic_type] = STATE(2873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), [sym_identifier] = ACTIONS(2426), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_export] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(2436), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_readonly] = 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), }, - [242] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2963), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5229), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [244] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(2411), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2438), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_SEMI] = ACTIONS(2428), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -40957,7 +41169,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -40973,376 +41185,183 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(1068), [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), - [sym__automatic_semicolon] = ACTIONS(2428), }, - [243] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [245] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(2768), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2430), - [anon_sym_export] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1710), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(2440), + [anon_sym_export] = ACTIONS(2442), + [anon_sym_type] = ACTIONS(2442), + [anon_sym_namespace] = ACTIONS(2444), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2436), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2446), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_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_static] = ACTIONS(2442), + [anon_sym_readonly] = ACTIONS(2442), + [anon_sym_get] = ACTIONS(2442), + [anon_sym_set] = ACTIONS(2442), + [anon_sym_declare] = ACTIONS(2442), + [anon_sym_public] = ACTIONS(2442), + [anon_sym_private] = ACTIONS(2442), + [anon_sym_protected] = ACTIONS(2442), + [anon_sym_module] = ACTIONS(2442), + [anon_sym_any] = ACTIONS(2442), + [anon_sym_number] = ACTIONS(2442), + [anon_sym_boolean] = ACTIONS(2442), + [anon_sym_string] = ACTIONS(2442), + [anon_sym_symbol] = ACTIONS(2442), }, - [244] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3234), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [246] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2911), + [sym_primary_expression] = STATE(3291), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2438), - [anon_sym_export] = ACTIONS(2440), - [anon_sym_type] = ACTIONS(2440), - [anon_sym_namespace] = ACTIONS(2442), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2448), + [anon_sym_export] = ACTIONS(2450), + [anon_sym_type] = ACTIONS(2450), + [anon_sym_namespace] = ACTIONS(2452), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2444), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2440), - [anon_sym_readonly] = ACTIONS(2440), - [anon_sym_get] = ACTIONS(2440), - [anon_sym_set] = ACTIONS(2440), - [anon_sym_declare] = ACTIONS(2440), - [anon_sym_public] = ACTIONS(2440), - [anon_sym_private] = ACTIONS(2440), - [anon_sym_protected] = ACTIONS(2440), - [anon_sym_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), - }, - [245] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2446), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - }, - [246] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2534), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5175), - [sym_generic_type] = STATE(3932), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2448), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), [anon_sym_async] = ACTIONS(2454), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [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(2458), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2450), [anon_sym_readonly] = ACTIONS(2450), @@ -41360,362 +41379,170 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2450), }, [247] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2466), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2537), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5433), + [sym_generic_type] = STATE(3925), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2456), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2466), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [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(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_readonly] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_declare] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_protected] = ACTIONS(2462), - [anon_sym_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_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_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), }, [248] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2716), - [sym_primary_expression] = STATE(3279), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2556), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5292), + [sym_generic_type] = STATE(2406), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), [sym_identifier] = ACTIONS(2468), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [249] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2466), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2472), - [anon_sym_type] = ACTIONS(2472), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2476), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_readonly] = 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), - }, - [250] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2761), - [sym_primary_expression] = STATE(2411), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2478), - [anon_sym_export] = ACTIONS(2480), - [anon_sym_type] = ACTIONS(2480), - [anon_sym_namespace] = ACTIONS(2482), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2484), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -41726,92 +41553,92 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2480), - [anon_sym_readonly] = 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_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_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), }, - [251] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2537), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [249] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2556), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5351), - [sym_generic_type] = STATE(2469), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2486), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5292), + [sym_generic_type] = STATE(2406), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2476), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2492), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -41822,199 +41649,391 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_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), + }, + [250] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2243), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5366), + [sym_generic_type] = STATE(2223), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2484), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2490), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_readonly] = 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), + }, + [251] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2351), + [sym_primary_expression] = STATE(2768), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(2492), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(2488), - [anon_sym_set] = ACTIONS(2488), - [anon_sym_declare] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_protected] = ACTIONS(2488), - [anon_sym_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_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, [252] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2411), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2243), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5366), + [sym_generic_type] = STATE(2223), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2494), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2424), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1060), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_readonly] = 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), }, [253] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2171), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2109), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5100), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5100), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2109), + [sym_subscript_expression] = STATE(2109), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5100), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5355), - [sym_generic_type] = STATE(2220), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2109), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2496), [anon_sym_export] = ACTIONS(2498), [anon_sym_type] = ACTIONS(2498), [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_var] = ACTIONS(2504), + [anon_sym_let] = ACTIONS(2504), + [anon_sym_const] = ACTIONS(2504), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(2506), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2502), + [anon_sym_async] = ACTIONS(2508), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(2510), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2498), [anon_sym_readonly] = ACTIONS(2498), @@ -42032,170 +42051,266 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(2498), }, [254] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2110), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5091), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5091), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2110), - [sym_subscript_expression] = STATE(2110), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5091), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3144), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2110), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2504), - [anon_sym_export] = ACTIONS(2506), - [anon_sym_type] = ACTIONS(2506), - [anon_sym_namespace] = ACTIONS(2508), - [anon_sym_LBRACE] = ACTIONS(2510), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2512), + [anon_sym_export] = ACTIONS(2514), + [anon_sym_type] = ACTIONS(2514), + [anon_sym_namespace] = ACTIONS(2516), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_var] = ACTIONS(2512), - [anon_sym_let] = ACTIONS(2512), - [anon_sym_const] = ACTIONS(2512), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(2514), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2518), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1406), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2514), + [anon_sym_readonly] = ACTIONS(2514), + [anon_sym_get] = ACTIONS(2514), + [anon_sym_set] = ACTIONS(2514), + [anon_sym_declare] = ACTIONS(2514), + [anon_sym_public] = ACTIONS(2514), + [anon_sym_private] = ACTIONS(2514), + [anon_sym_protected] = ACTIONS(2514), + [anon_sym_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), + }, + [255] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2407), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2516), + [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(2518), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2506), - [anon_sym_readonly] = ACTIONS(2506), - [anon_sym_get] = ACTIONS(2506), - [anon_sym_set] = ACTIONS(2506), - [anon_sym_declare] = ACTIONS(2506), - [anon_sym_public] = ACTIONS(2506), - [anon_sym_private] = ACTIONS(2506), - [anon_sym_protected] = ACTIONS(2506), - [anon_sym_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_static] = ACTIONS(2420), + [anon_sym_readonly] = 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), }, - [255] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2534), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [256] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2411), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5175), - [sym_generic_type] = STATE(3932), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), [sym_identifier] = ACTIONS(2520), [anon_sym_export] = ACTIONS(2522), [anon_sym_type] = ACTIONS(2522), [anon_sym_namespace] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -42206,7 +42321,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2522), [anon_sym_readonly] = ACTIONS(2522), @@ -42223,171 +42338,75 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2522), [anon_sym_symbol] = ACTIONS(2522), }, - [256] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(3547), - [sym_primary_expression] = STATE(2798), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1464), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5218), - [sym_generic_type] = STATE(2818), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2528), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_namespace] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(2538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_readonly] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_declare] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_protected] = ACTIONS(2530), - [anon_sym_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), - }, [257] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2534), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2556), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5175), - [sym_generic_type] = STATE(3932), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2540), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5292), + [sym_generic_type] = STATE(2406), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2528), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2492), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -42398,87 +42417,279 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(2488), - [anon_sym_set] = ACTIONS(2488), - [anon_sym_declare] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_protected] = ACTIONS(2488), - [anon_sym_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_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_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), }, [258] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(3541), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(3291), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2530), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [259] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2905), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2532), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), + }, + [260] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(3492), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2534), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2540), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -42488,7 +42699,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -42496,6 +42707,102 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), + }, + [261] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2542), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_namespace] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1722), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2544), [anon_sym_readonly] = ACTIONS(2544), [anon_sym_get] = ACTIONS(2544), @@ -42511,555 +42818,555 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2544), [anon_sym_symbol] = ACTIONS(2544), }, - [259] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2171), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [262] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2407), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5355), - [sym_generic_type] = STATE(2220), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2550), - [anon_sym_export] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_namespace] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(2556), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_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_static] = ACTIONS(2552), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_get] = ACTIONS(2552), + [anon_sym_set] = ACTIONS(2552), + [anon_sym_declare] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_protected] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2552), + [anon_sym_any] = ACTIONS(2552), + [anon_sym_number] = ACTIONS(2552), + [anon_sym_boolean] = ACTIONS(2552), + [anon_sym_string] = ACTIONS(2552), + [anon_sym_symbol] = ACTIONS(2552), }, - [260] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2171), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [263] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2697), + [sym_primary_expression] = STATE(3401), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5355), - [sym_generic_type] = STATE(2220), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2552), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2558), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_readonly] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_declare] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_protected] = ACTIONS(2462), - [anon_sym_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_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [261] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2171), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [264] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2407), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5355), - [sym_generic_type] = STATE(2220), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2554), - [anon_sym_export] = ACTIONS(2420), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_namespace] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2560), + [anon_sym_export] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2562), + [anon_sym_namespace] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2566), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_readonly] = 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_static] = ACTIONS(2562), + [anon_sym_readonly] = ACTIONS(2562), + [anon_sym_get] = ACTIONS(2562), + [anon_sym_set] = ACTIONS(2562), + [anon_sym_declare] = ACTIONS(2562), + [anon_sym_public] = ACTIONS(2562), + [anon_sym_private] = ACTIONS(2562), + [anon_sym_protected] = ACTIONS(2562), + [anon_sym_module] = ACTIONS(2562), + [anon_sym_any] = ACTIONS(2562), + [anon_sym_number] = ACTIONS(2562), + [anon_sym_boolean] = ACTIONS(2562), + [anon_sym_string] = ACTIONS(2562), + [anon_sym_symbol] = ACTIONS(2562), }, - [262] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2171), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [265] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2709), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5355), - [sym_generic_type] = STATE(2220), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2556), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2568), + [anon_sym_export] = ACTIONS(2570), + [anon_sym_type] = ACTIONS(2570), + [anon_sym_namespace] = ACTIONS(2572), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2562), + [anon_sym_async] = ACTIONS(2574), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2570), + [anon_sym_readonly] = ACTIONS(2570), + [anon_sym_get] = ACTIONS(2570), + [anon_sym_set] = ACTIONS(2570), + [anon_sym_declare] = ACTIONS(2570), + [anon_sym_public] = ACTIONS(2570), + [anon_sym_private] = ACTIONS(2570), + [anon_sym_protected] = ACTIONS(2570), + [anon_sym_module] = ACTIONS(2570), + [anon_sym_any] = ACTIONS(2570), + [anon_sym_number] = ACTIONS(2570), + [anon_sym_boolean] = ACTIONS(2570), + [anon_sym_string] = ACTIONS(2570), + [anon_sym_symbol] = ACTIONS(2570), }, - [263] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2284), - [sym_primary_expression] = STATE(2411), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [266] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2193), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2564), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2576), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(896), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [264] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(2411), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [267] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2537), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2566), - [anon_sym_export] = ACTIONS(2568), - [anon_sym_type] = ACTIONS(2568), - [anon_sym_namespace] = ACTIONS(2570), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5433), + [sym_generic_type] = STATE(3925), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2578), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2572), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -43070,183 +43377,279 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2568), - [anon_sym_readonly] = ACTIONS(2568), - [anon_sym_get] = ACTIONS(2568), - [anon_sym_set] = ACTIONS(2568), - [anon_sym_declare] = ACTIONS(2568), - [anon_sym_public] = ACTIONS(2568), - [anon_sym_private] = ACTIONS(2568), - [anon_sym_protected] = ACTIONS(2568), - [anon_sym_module] = ACTIONS(2568), - [anon_sym_any] = ACTIONS(2568), - [anon_sym_number] = ACTIONS(2568), - [anon_sym_boolean] = ACTIONS(2568), - [anon_sym_string] = ACTIONS(2568), - [anon_sym_symbol] = ACTIONS(2568), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_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), }, - [265] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2895), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_nested_identifier] = STATE(5596), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [268] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(3541), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_nested_type_identifier] = STATE(4649), - [sym_generic_type] = STATE(4994), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(2574), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2550), + [anon_sym_export] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_namespace] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_get] = ACTIONS(2552), + [anon_sym_set] = ACTIONS(2552), + [anon_sym_declare] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_protected] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2552), + [anon_sym_any] = ACTIONS(2552), + [anon_sym_number] = ACTIONS(2552), + [anon_sym_boolean] = ACTIONS(2552), + [anon_sym_string] = ACTIONS(2552), + [anon_sym_symbol] = ACTIONS(2552), }, - [266] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1578), - [sym_expression] = STATE(3169), - [sym_primary_expression] = STATE(2534), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5682), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1578), - [sym_subscript_expression] = STATE(1578), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [269] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1525), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(3110), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1525), + [sym_subscript_expression] = STATE(1525), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1578), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5175), - [sym_generic_type] = STATE(3932), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2576), - [anon_sym_export] = ACTIONS(2578), - [anon_sym_type] = ACTIONS(2578), - [anon_sym_namespace] = ACTIONS(2580), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1525), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5280), + [sym_generic_type] = STATE(4109), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(2580), + [anon_sym_export] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_namespace] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_readonly] = ACTIONS(2582), + [anon_sym_get] = ACTIONS(2582), + [anon_sym_set] = ACTIONS(2582), + [anon_sym_declare] = ACTIONS(2582), + [anon_sym_public] = ACTIONS(2582), + [anon_sym_private] = ACTIONS(2582), + [anon_sym_protected] = ACTIONS(2582), + [anon_sym_module] = ACTIONS(2582), + [anon_sym_any] = ACTIONS(2582), + [anon_sym_number] = ACTIONS(2582), + [anon_sym_boolean] = ACTIONS(2582), + [anon_sym_string] = ACTIONS(2582), + [anon_sym_symbol] = ACTIONS(2582), + }, + [270] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1545), + [sym_expression] = STATE(3174), + [sym_primary_expression] = STATE(2537), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5488), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1545), + [sym_subscript_expression] = STATE(1545), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1545), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5433), + [sym_generic_type] = STATE(3925), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2588), + [anon_sym_export] = ACTIONS(2590), + [anon_sym_type] = ACTIONS(2590), + [anon_sym_namespace] = ACTIONS(2592), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(552), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2582), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2584), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2594), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2596), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -43262,102 +43665,6 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2586), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2578), - [anon_sym_readonly] = ACTIONS(2578), - [anon_sym_get] = ACTIONS(2578), - [anon_sym_set] = ACTIONS(2578), - [anon_sym_declare] = ACTIONS(2578), - [anon_sym_public] = ACTIONS(2578), - [anon_sym_private] = ACTIONS(2578), - [anon_sym_protected] = ACTIONS(2578), - [anon_sym_module] = ACTIONS(2578), - [anon_sym_any] = ACTIONS(2578), - [anon_sym_number] = ACTIONS(2578), - [anon_sym_boolean] = ACTIONS(2578), - [anon_sym_string] = ACTIONS(2578), - [anon_sym_symbol] = ACTIONS(2578), - }, - [267] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2015), - [sym_expression] = STATE(3508), - [sym_primary_expression] = STATE(3277), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2015), - [sym_subscript_expression] = STATE(2015), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2015), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5171), - [sym_generic_type] = STATE(3431), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(2588), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), [sym_undefined] = ACTIONS(2598), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2590), @@ -43375,1515 +43682,1610 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2590), [anon_sym_symbol] = ACTIONS(2590), }, - [268] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2537), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [271] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3366), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5351), - [sym_generic_type] = STATE(2469), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2600), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [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(2458), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_readonly] = ACTIONS(2450), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_declare] = ACTIONS(2450), - [anon_sym_public] = ACTIONS(2450), - [anon_sym_private] = ACTIONS(2450), - [anon_sym_protected] = ACTIONS(2450), - [anon_sym_module] = ACTIONS(2450), - [anon_sym_any] = ACTIONS(2450), - [anon_sym_number] = ACTIONS(2450), - [anon_sym_boolean] = ACTIONS(2450), - [anon_sym_string] = ACTIONS(2450), - [anon_sym_symbol] = ACTIONS(2450), - }, - [269] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2885), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2602), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [anon_sym_export] = ACTIONS(2602), + [anon_sym_type] = ACTIONS(2602), + [anon_sym_namespace] = ACTIONS(2604), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(2606), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(2602), + [anon_sym_readonly] = ACTIONS(2602), + [anon_sym_get] = ACTIONS(2602), + [anon_sym_set] = ACTIONS(2602), + [anon_sym_declare] = ACTIONS(2602), + [anon_sym_public] = ACTIONS(2602), + [anon_sym_private] = ACTIONS(2602), + [anon_sym_protected] = ACTIONS(2602), + [anon_sym_module] = ACTIONS(2602), + [anon_sym_any] = ACTIONS(2602), + [anon_sym_number] = ACTIONS(2602), + [anon_sym_boolean] = ACTIONS(2602), + [anon_sym_string] = ACTIONS(2602), + [anon_sym_symbol] = ACTIONS(2602), }, - [270] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(3547), - [sym_primary_expression] = STATE(3197), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [272] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2243), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1464), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5246), - [sym_generic_type] = STATE(4099), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2604), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_namespace] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5366), + [sym_generic_type] = STATE(2223), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2608), + [anon_sym_export] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_namespace] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2556), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_readonly] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_declare] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_protected] = ACTIONS(2530), - [anon_sym_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_static] = ACTIONS(2552), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_get] = ACTIONS(2552), + [anon_sym_set] = ACTIONS(2552), + [anon_sym_declare] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_protected] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2552), + [anon_sym_any] = ACTIONS(2552), + [anon_sym_number] = ACTIONS(2552), + [anon_sym_boolean] = ACTIONS(2552), + [anon_sym_string] = ACTIONS(2552), + [anon_sym_symbol] = ACTIONS(2552), }, - [271] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2932), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [273] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2407), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2606), - [anon_sym_export] = ACTIONS(2608), - [anon_sym_type] = ACTIONS(2608), - [anon_sym_namespace] = ACTIONS(2610), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2534), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2612), + [anon_sym_async] = ACTIONS(2540), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2608), - [anon_sym_readonly] = ACTIONS(2608), - [anon_sym_get] = ACTIONS(2608), - [anon_sym_set] = ACTIONS(2608), - [anon_sym_declare] = ACTIONS(2608), - [anon_sym_public] = ACTIONS(2608), - [anon_sym_private] = ACTIONS(2608), - [anon_sym_protected] = ACTIONS(2608), - [anon_sym_module] = ACTIONS(2608), - [anon_sym_any] = ACTIONS(2608), - [anon_sym_number] = ACTIONS(2608), - [anon_sym_boolean] = ACTIONS(2608), - [anon_sym_string] = ACTIONS(2608), - [anon_sym_symbol] = ACTIONS(2608), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), }, - [272] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2466), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [274] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(2411), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2610), + [anon_sym_export] = ACTIONS(2612), + [anon_sym_type] = ACTIONS(2612), + [anon_sym_namespace] = ACTIONS(2614), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2616), + [anon_sym_function] = ACTIONS(818), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2612), + [anon_sym_readonly] = ACTIONS(2612), + [anon_sym_get] = ACTIONS(2612), + [anon_sym_set] = ACTIONS(2612), + [anon_sym_declare] = ACTIONS(2612), + [anon_sym_public] = ACTIONS(2612), + [anon_sym_private] = ACTIONS(2612), + [anon_sym_protected] = ACTIONS(2612), + [anon_sym_module] = ACTIONS(2612), + [anon_sym_any] = ACTIONS(2612), + [anon_sym_number] = ACTIONS(2612), + [anon_sym_boolean] = ACTIONS(2612), + [anon_sym_string] = ACTIONS(2612), + [anon_sym_symbol] = ACTIONS(2612), + }, + [275] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2243), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2614), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5366), + [sym_generic_type] = STATE(2223), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2618), + [anon_sym_export] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2562), + [anon_sym_namespace] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2562), + [anon_sym_async] = ACTIONS(2566), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2562), + [anon_sym_readonly] = ACTIONS(2562), + [anon_sym_get] = ACTIONS(2562), + [anon_sym_set] = ACTIONS(2562), + [anon_sym_declare] = ACTIONS(2562), + [anon_sym_public] = ACTIONS(2562), + [anon_sym_private] = ACTIONS(2562), + [anon_sym_protected] = ACTIONS(2562), + [anon_sym_module] = ACTIONS(2562), + [anon_sym_any] = ACTIONS(2562), + [anon_sym_number] = ACTIONS(2562), + [anon_sym_boolean] = ACTIONS(2562), + [anon_sym_string] = ACTIONS(2562), + [anon_sym_symbol] = ACTIONS(2562), }, - [273] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2466), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [276] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3379), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2430), - [anon_sym_export] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_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_static] = ACTIONS(2420), + [anon_sym_readonly] = 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), }, - [274] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [277] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(3541), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2418), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_readonly] = ACTIONS(2544), - [anon_sym_get] = ACTIONS(2544), - [anon_sym_set] = ACTIONS(2544), - [anon_sym_declare] = ACTIONS(2544), - [anon_sym_public] = ACTIONS(2544), - [anon_sym_private] = ACTIONS(2544), - [anon_sym_protected] = ACTIONS(2544), - [anon_sym_module] = ACTIONS(2544), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_readonly] = 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), }, - [275] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(3311), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [278] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2616), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2620), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, - [276] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(3547), - [sym_primary_expression] = STATE(2798), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [279] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(2411), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1464), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5218), - [sym_generic_type] = STATE(2818), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2618), - [anon_sym_export] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2622), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [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(1482), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + }, + [280] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3512), + [sym_primary_expression] = STATE(3477), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2014), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5263), + [sym_generic_type] = STATE(3354), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2624), + [anon_sym_export] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(2624), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(2632), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(2634), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_readonly] = ACTIONS(2620), - [anon_sym_get] = ACTIONS(2620), - [anon_sym_set] = ACTIONS(2620), - [anon_sym_declare] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_protected] = ACTIONS(2620), - [anon_sym_module] = ACTIONS(2620), - [anon_sym_any] = ACTIONS(2620), - [anon_sym_number] = ACTIONS(2620), - [anon_sym_boolean] = ACTIONS(2620), - [anon_sym_string] = ACTIONS(2620), - [anon_sym_symbol] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_readonly] = ACTIONS(2626), + [anon_sym_get] = ACTIONS(2626), + [anon_sym_set] = ACTIONS(2626), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), }, - [277] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2171), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [281] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2537), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5355), - [sym_generic_type] = STATE(2220), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2626), - [anon_sym_export] = ACTIONS(2472), - [anon_sym_type] = ACTIONS(2472), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5433), + [sym_generic_type] = STATE(3925), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2636), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2476), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [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(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_readonly] = 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_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_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), }, - [278] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3313), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [282] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3187), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5109), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5109), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5109), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2628), - [anon_sym_export] = ACTIONS(2630), - [anon_sym_type] = ACTIONS(2630), - [anon_sym_namespace] = ACTIONS(2632), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_pattern] = STATE(5436), + [sym_rest_pattern] = STATE(4225), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2638), + [anon_sym_export] = ACTIONS(696), + [anon_sym_type] = ACTIONS(696), + [anon_sym_namespace] = ACTIONS(700), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2634), + [anon_sym_async] = ACTIONS(710), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_DOT_DOT_DOT] = ACTIONS(670), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2630), - [anon_sym_readonly] = ACTIONS(2630), - [anon_sym_get] = ACTIONS(2630), - [anon_sym_set] = ACTIONS(2630), - [anon_sym_declare] = ACTIONS(2630), - [anon_sym_public] = ACTIONS(2630), - [anon_sym_private] = ACTIONS(2630), - [anon_sym_protected] = ACTIONS(2630), - [anon_sym_module] = ACTIONS(2630), - [anon_sym_any] = ACTIONS(2630), - [anon_sym_number] = ACTIONS(2630), - [anon_sym_boolean] = ACTIONS(2630), - [anon_sym_string] = ACTIONS(2630), - [anon_sym_symbol] = ACTIONS(2630), + [anon_sym_static] = ACTIONS(696), + [anon_sym_readonly] = ACTIONS(696), + [anon_sym_get] = ACTIONS(696), + [anon_sym_set] = ACTIONS(696), + [anon_sym_declare] = ACTIONS(696), + [anon_sym_public] = ACTIONS(696), + [anon_sym_private] = ACTIONS(696), + [anon_sym_protected] = ACTIONS(696), + [anon_sym_module] = ACTIONS(696), + [anon_sym_any] = ACTIONS(696), + [anon_sym_number] = ACTIONS(696), + [anon_sym_boolean] = ACTIONS(696), + [anon_sym_string] = ACTIONS(696), + [anon_sym_symbol] = ACTIONS(696), }, - [279] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3345), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [283] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2640), + [anon_sym_export] = ACTIONS(2642), + [anon_sym_type] = ACTIONS(2642), + [anon_sym_namespace] = ACTIONS(2644), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2646), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_readonly] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_declare] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_protected] = ACTIONS(2462), - [anon_sym_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_static] = ACTIONS(2642), + [anon_sym_readonly] = ACTIONS(2642), + [anon_sym_get] = ACTIONS(2642), + [anon_sym_set] = ACTIONS(2642), + [anon_sym_declare] = ACTIONS(2642), + [anon_sym_public] = ACTIONS(2642), + [anon_sym_private] = ACTIONS(2642), + [anon_sym_protected] = ACTIONS(2642), + [anon_sym_module] = ACTIONS(2642), + [anon_sym_any] = ACTIONS(2642), + [anon_sym_number] = ACTIONS(2642), + [anon_sym_boolean] = ACTIONS(2642), + [anon_sym_string] = ACTIONS(2642), + [anon_sym_symbol] = ACTIONS(2642), }, - [280] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(3290), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [284] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2243), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2542), - [anon_sym_export] = ACTIONS(2544), - [anon_sym_type] = ACTIONS(2544), - [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5366), + [sym_generic_type] = STATE(2223), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2648), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2548), + [anon_sym_async] = ACTIONS(2416), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2544), - [anon_sym_readonly] = ACTIONS(2544), - [anon_sym_get] = ACTIONS(2544), - [anon_sym_set] = ACTIONS(2544), - [anon_sym_declare] = ACTIONS(2544), - [anon_sym_public] = ACTIONS(2544), - [anon_sym_private] = ACTIONS(2544), - [anon_sym_protected] = ACTIONS(2544), - [anon_sym_module] = ACTIONS(2544), - [anon_sym_any] = ACTIONS(2544), - [anon_sym_number] = ACTIONS(2544), - [anon_sym_boolean] = ACTIONS(2544), - [anon_sym_string] = ACTIONS(2544), - [anon_sym_symbol] = ACTIONS(2544), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_readonly] = 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), }, - [281] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(3541), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [285] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2807), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2650), + [anon_sym_export] = ACTIONS(2652), + [anon_sym_type] = ACTIONS(2652), + [anon_sym_namespace] = ACTIONS(2654), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2656), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_readonly] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_declare] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_protected] = ACTIONS(2462), - [anon_sym_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_static] = ACTIONS(2652), + [anon_sym_readonly] = ACTIONS(2652), + [anon_sym_get] = ACTIONS(2652), + [anon_sym_set] = ACTIONS(2652), + [anon_sym_declare] = ACTIONS(2652), + [anon_sym_public] = ACTIONS(2652), + [anon_sym_private] = ACTIONS(2652), + [anon_sym_protected] = ACTIONS(2652), + [anon_sym_module] = ACTIONS(2652), + [anon_sym_any] = ACTIONS(2652), + [anon_sym_number] = ACTIONS(2652), + [anon_sym_boolean] = ACTIONS(2652), + [anon_sym_string] = ACTIONS(2652), + [anon_sym_symbol] = ACTIONS(2652), }, - [282] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [286] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(3541), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2636), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2534), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(2540), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), }, - [283] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2537), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [287] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2775), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5233), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5351), - [sym_generic_type] = STATE(2469), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2638), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(39), + [anon_sym_SEMI] = ACTIONS(2658), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -44894,103 +45296,104 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_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_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + [sym__automatic_semicolon] = ACTIONS(2658), }, - [284] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(2466), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [288] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2243), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2542), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5366), + [sym_generic_type] = STATE(2223), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2660), [anon_sym_export] = ACTIONS(2544), [anon_sym_type] = ACTIONS(2544), [anon_sym_namespace] = ACTIONS(2546), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(2548), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2544), [anon_sym_readonly] = ACTIONS(2544), @@ -45007,1596 +45410,1023 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2544), [anon_sym_symbol] = ACTIONS(2544), }, - [285] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(2784), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2640), - [anon_sym_export] = ACTIONS(2642), - [anon_sym_type] = ACTIONS(2642), - [anon_sym_namespace] = ACTIONS(2644), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(2646), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2642), - [anon_sym_readonly] = ACTIONS(2642), - [anon_sym_get] = ACTIONS(2642), - [anon_sym_set] = ACTIONS(2642), - [anon_sym_declare] = ACTIONS(2642), - [anon_sym_public] = ACTIONS(2642), - [anon_sym_private] = ACTIONS(2642), - [anon_sym_protected] = ACTIONS(2642), - [anon_sym_module] = ACTIONS(2642), - [anon_sym_any] = ACTIONS(2642), - [anon_sym_number] = ACTIONS(2642), - [anon_sym_boolean] = ACTIONS(2642), - [anon_sym_string] = ACTIONS(2642), - [anon_sym_symbol] = ACTIONS(2642), - }, - [286] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [289] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2268), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2648), - [anon_sym_export] = ACTIONS(2650), - [anon_sym_type] = ACTIONS(2650), - [anon_sym_namespace] = ACTIONS(2652), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2534), + [anon_sym_export] = ACTIONS(2536), + [anon_sym_type] = ACTIONS(2536), + [anon_sym_namespace] = ACTIONS(2538), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2654), + [anon_sym_async] = ACTIONS(2540), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2650), - [anon_sym_readonly] = ACTIONS(2650), - [anon_sym_get] = ACTIONS(2650), - [anon_sym_set] = ACTIONS(2650), - [anon_sym_declare] = ACTIONS(2650), - [anon_sym_public] = ACTIONS(2650), - [anon_sym_private] = ACTIONS(2650), - [anon_sym_protected] = ACTIONS(2650), - [anon_sym_module] = ACTIONS(2650), - [anon_sym_any] = ACTIONS(2650), - [anon_sym_number] = ACTIONS(2650), - [anon_sym_boolean] = ACTIONS(2650), - [anon_sym_string] = ACTIONS(2650), - [anon_sym_symbol] = ACTIONS(2650), - }, - [287] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(3005), - [sym_primary_expression] = STATE(3279), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(2656), - [anon_sym_export] = ACTIONS(2658), - [anon_sym_type] = ACTIONS(2658), - [anon_sym_namespace] = ACTIONS(2660), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(2662), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2658), - [anon_sym_readonly] = ACTIONS(2658), - [anon_sym_get] = ACTIONS(2658), - [anon_sym_set] = ACTIONS(2658), - [anon_sym_declare] = ACTIONS(2658), - [anon_sym_public] = ACTIONS(2658), - [anon_sym_private] = ACTIONS(2658), - [anon_sym_protected] = ACTIONS(2658), - [anon_sym_module] = ACTIONS(2658), - [anon_sym_any] = ACTIONS(2658), - [anon_sym_number] = ACTIONS(2658), - [anon_sym_boolean] = ACTIONS(2658), - [anon_sym_string] = ACTIONS(2658), - [anon_sym_symbol] = ACTIONS(2658), + [anon_sym_static] = ACTIONS(2536), + [anon_sym_readonly] = ACTIONS(2536), + [anon_sym_get] = ACTIONS(2536), + [anon_sym_set] = ACTIONS(2536), + [anon_sym_declare] = ACTIONS(2536), + [anon_sym_public] = ACTIONS(2536), + [anon_sym_private] = ACTIONS(2536), + [anon_sym_protected] = ACTIONS(2536), + [anon_sym_module] = ACTIONS(2536), + [anon_sym_any] = ACTIONS(2536), + [anon_sym_number] = ACTIONS(2536), + [anon_sym_boolean] = ACTIONS(2536), + [anon_sym_string] = ACTIONS(2536), + [anon_sym_symbol] = ACTIONS(2536), }, - [288] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2171), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [290] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1525), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(2761), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1525), + [sym_subscript_expression] = STATE(1525), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5355), - [sym_generic_type] = STATE(2220), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2664), - [anon_sym_export] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1525), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5243), + [sym_generic_type] = STATE(2873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(2662), + [anon_sym_export] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_namespace] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2670), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2434), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_readonly] = ACTIONS(2666), - [anon_sym_get] = ACTIONS(2666), - [anon_sym_set] = ACTIONS(2666), - [anon_sym_declare] = ACTIONS(2666), - [anon_sym_public] = ACTIONS(2666), - [anon_sym_private] = ACTIONS(2666), - [anon_sym_protected] = ACTIONS(2666), - [anon_sym_module] = ACTIONS(2666), - [anon_sym_any] = ACTIONS(2666), - [anon_sym_number] = ACTIONS(2666), - [anon_sym_boolean] = ACTIONS(2666), - [anon_sym_string] = ACTIONS(2666), - [anon_sym_symbol] = ACTIONS(2666), - }, - [289] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2621), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_nested_identifier] = STATE(5596), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_nested_type_identifier] = STATE(4361), - [sym_generic_type] = STATE(4756), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(2672), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(2436), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_readonly] = ACTIONS(2582), + [anon_sym_get] = ACTIONS(2582), + [anon_sym_set] = ACTIONS(2582), + [anon_sym_declare] = ACTIONS(2582), + [anon_sym_public] = ACTIONS(2582), + [anon_sym_private] = ACTIONS(2582), + [anon_sym_protected] = ACTIONS(2582), + [anon_sym_module] = ACTIONS(2582), + [anon_sym_any] = ACTIONS(2582), + [anon_sym_number] = ACTIONS(2582), + [anon_sym_boolean] = ACTIONS(2582), + [anon_sym_string] = ACTIONS(2582), + [anon_sym_symbol] = ACTIONS(2582), }, - [290] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2299), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [291] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2407), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2460), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5328), + [sym_generic_type] = STATE(3873), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2542), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_namespace] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(2548), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_readonly] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_declare] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_protected] = ACTIONS(2462), - [anon_sym_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_static] = ACTIONS(2544), + [anon_sym_readonly] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_declare] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_protected] = ACTIONS(2544), + [anon_sym_module] = ACTIONS(2544), + [anon_sym_any] = ACTIONS(2544), + [anon_sym_number] = ACTIONS(2544), + [anon_sym_boolean] = ACTIONS(2544), + [anon_sym_string] = ACTIONS(2544), + [anon_sym_symbol] = ACTIONS(2544), }, - [291] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(3541), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_nested_identifier] = STATE(5706), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [292] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2243), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_nested_identifier] = STATE(5716), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_nested_type_identifier] = STATE(5367), - [sym_generic_type] = STATE(3864), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2470), - [anon_sym_export] = ACTIONS(2472), - [anon_sym_type] = ACTIONS(2472), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_nested_type_identifier] = STATE(5366), + [sym_generic_type] = STATE(2223), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2664), + [anon_sym_export] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_namespace] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2670), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_readonly] = 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), - }, - [292] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), - [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_get] = ACTIONS(2666), + [anon_sym_set] = ACTIONS(2666), + [anon_sym_declare] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_protected] = ACTIONS(2666), + [anon_sym_module] = ACTIONS(2666), + [anon_sym_any] = ACTIONS(2666), + [anon_sym_number] = ACTIONS(2666), + [anon_sym_boolean] = ACTIONS(2666), + [anon_sym_string] = ACTIONS(2666), + [anon_sym_symbol] = ACTIONS(2666), }, [293] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3205), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5641), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_declaration] = STATE(1204), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2682), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [294] = { - [sym_export_clause] = STATE(4778), [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2684), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2686), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [295] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_declaration] = STATE(1204), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [296] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_declaration] = STATE(1204), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [297] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_declaration] = STATE(1204), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [298] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), - [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [299] = { - [sym_export_clause] = STATE(4778), [sym_declaration] = STATE(1204), - [sym_namespace_import] = STATE(5203), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), - [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [anon_sym_STAR] = ACTIONS(2317), - [anon_sym_default] = ACTIONS(2319), - [anon_sym_type] = ACTIONS(2321), - [anon_sym_EQ] = ACTIONS(2686), - [anon_sym_as] = ACTIONS(2325), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_LBRACE] = ACTIONS(2329), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2358), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [300] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, - [301] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3142), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5590), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [299] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3231), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5578), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_RPAREN] = ACTIONS(2692), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2680), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -46606,7 +46436,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -46614,559 +46444,468 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [302] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [300] = { + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2682), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2684), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, - [303] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2953), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [301] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3199), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5835), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_RPAREN] = ACTIONS(2688), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [304] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2754), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [302] = { + [sym_declaration] = STATE(1204), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1156), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, - [305] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2631), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [303] = { + [sym_export_clause] = STATE(4764), + [sym_declaration] = STATE(1080), + [sym_namespace_import] = STATE(5205), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [anon_sym_STAR] = ACTIONS(2323), + [anon_sym_default] = ACTIONS(2325), + [anon_sym_type] = ACTIONS(2327), + [anon_sym_EQ] = ACTIONS(2684), + [anon_sym_as] = ACTIONS(2331), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_LBRACE] = ACTIONS(2335), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2364), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, - [306] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2632), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), + [304] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2499), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2425), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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), - }, - [307] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2444), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2253), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -47177,184 +46916,184 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [308] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2982), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [305] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4719), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5278), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(2702), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), }, - [309] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [306] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2700), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2704), + [anon_sym_export] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2492), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -47365,101 +47104,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(2488), - [anon_sym_set] = ACTIONS(2488), - [anon_sym_declare] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_protected] = ACTIONS(2488), - [anon_sym_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), - }, - [310] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2015), - [sym_expression] = STATE(3508), - [sym_primary_expression] = STATE(2999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2015), - [sym_subscript_expression] = STATE(2015), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(2015), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(2704), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(2598), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(2706), [anon_sym_readonly] = ACTIONS(2706), @@ -47476,543 +47121,449 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(2706), [anon_sym_symbol] = ACTIONS(2706), }, - [311] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3420), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2683), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [307] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2565), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2619), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [312] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2694), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [313] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2633), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [308] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2896), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [314] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2630), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [309] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3512), + [sym_primary_expression] = STATE(2904), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2014), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(2634), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(2626), + [anon_sym_readonly] = ACTIONS(2626), + [anon_sym_get] = ACTIONS(2626), + [anon_sym_set] = ACTIONS(2626), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), }, - [315] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2759), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [310] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3162), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5535), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [316] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2504), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2465), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [311] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2704), + [anon_sym_export] = ACTIONS(2706), + [anon_sym_type] = ACTIONS(2706), + [anon_sym_namespace] = ACTIONS(2708), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2712), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -48023,837 +47574,743 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(2706), + [anon_sym_readonly] = ACTIONS(2706), + [anon_sym_get] = ACTIONS(2706), + [anon_sym_set] = ACTIONS(2706), + [anon_sym_declare] = ACTIONS(2706), + [anon_sym_public] = ACTIONS(2706), + [anon_sym_private] = ACTIONS(2706), + [anon_sym_protected] = ACTIONS(2706), + [anon_sym_module] = ACTIONS(2706), + [anon_sym_any] = ACTIONS(2706), + [anon_sym_number] = ACTIONS(2706), + [anon_sym_boolean] = ACTIONS(2706), + [anon_sym_string] = ACTIONS(2706), + [anon_sym_symbol] = ACTIONS(2706), }, - [317] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2752), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [312] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2722), + [anon_sym_export] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_namespace] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(2670), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_get] = ACTIONS(2666), + [anon_sym_set] = ACTIONS(2666), + [anon_sym_declare] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_protected] = ACTIONS(2666), + [anon_sym_module] = ACTIONS(2666), + [anon_sym_any] = ACTIONS(2666), + [anon_sym_number] = ACTIONS(2666), + [anon_sym_boolean] = ACTIONS(2666), + [anon_sym_string] = ACTIONS(2666), + [anon_sym_symbol] = ACTIONS(2666), }, - [318] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2751), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [313] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2891), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [319] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2750), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [314] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3505), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [320] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3304), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2708), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [315] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2874), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [321] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3495), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2877), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [316] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1525), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(2549), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1525), + [sym_subscript_expression] = STATE(1525), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1525), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(2726), + [anon_sym_export] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_namespace] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(2436), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_readonly] = ACTIONS(2582), + [anon_sym_get] = ACTIONS(2582), + [anon_sym_set] = ACTIONS(2582), + [anon_sym_declare] = ACTIONS(2582), + [anon_sym_public] = ACTIONS(2582), + [anon_sym_private] = ACTIONS(2582), + [anon_sym_protected] = ACTIONS(2582), + [anon_sym_module] = ACTIONS(2582), + [anon_sym_any] = ACTIONS(2582), + [anon_sym_number] = ACTIONS(2582), + [anon_sym_boolean] = ACTIONS(2582), + [anon_sym_string] = ACTIONS(2582), + [anon_sym_symbol] = ACTIONS(2582), }, - [322] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3468), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2874), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [317] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2827), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5405), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [323] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3453), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2871), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [318] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3201), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [324] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4636), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5264), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [325] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2394), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [319] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2431), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2694), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(2716), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -48863,7 +48320,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -48871,258 +48328,164 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [326] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(3547), - [sym_primary_expression] = STATE(2459), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1464), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(2624), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(2538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_readonly] = ACTIONS(2620), - [anon_sym_get] = ACTIONS(2620), - [anon_sym_set] = ACTIONS(2620), - [anon_sym_declare] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_protected] = ACTIONS(2620), - [anon_sym_module] = ACTIONS(2620), - [anon_sym_any] = ACTIONS(2620), - [anon_sym_number] = ACTIONS(2620), - [anon_sym_boolean] = ACTIONS(2620), - [anon_sym_string] = ACTIONS(2620), - [anon_sym_symbol] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [327] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2748), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [320] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4657), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5174), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(2702), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), }, - [328] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2422), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2650), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [321] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2574), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2608), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(2714), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -49130,9 +48493,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -49153,271 +48516,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [329] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2536), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(4760), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [322] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3408), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [330] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2444), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2491), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [331] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3141), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5589), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [323] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3184), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5545), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -49427,7 +48696,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -49435,83 +48704,83 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [332] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3140), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5587), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [324] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2421), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(2716), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -49521,7 +48790,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -49529,83 +48798,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [333] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3139), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5586), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [325] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), + }, + [326] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2427), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(4765), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -49615,7 +48978,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -49623,276 +48986,276 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [334] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3332), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2676), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [335] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3496), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [327] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2418), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [336] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2964), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [328] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1525), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(2549), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1525), + [sym_subscript_expression] = STATE(1525), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1525), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(2730), + [anon_sym_export] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_readonly] = 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), + }, + [329] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2732), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -49903,1406 +49266,1406 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_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), }, - [337] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3498), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [330] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2734), + [anon_sym_export] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_namespace] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(2556), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_get] = ACTIONS(2552), + [anon_sym_set] = ACTIONS(2552), + [anon_sym_declare] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_protected] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2552), + [anon_sym_any] = ACTIONS(2552), + [anon_sym_number] = ACTIONS(2552), + [anon_sym_boolean] = ACTIONS(2552), + [anon_sym_string] = ACTIONS(2552), + [anon_sym_symbol] = ACTIONS(2552), }, - [338] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3499), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [331] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2488), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [339] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2015), - [sym_expression] = STATE(3508), - [sym_primary_expression] = STATE(2999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2015), - [sym_subscript_expression] = STATE(2015), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(2015), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(2734), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(2598), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_readonly] = ACTIONS(2590), - [anon_sym_get] = ACTIONS(2590), - [anon_sym_set] = ACTIONS(2590), - [anon_sym_declare] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_private] = ACTIONS(2590), - [anon_sym_protected] = ACTIONS(2590), - [anon_sym_module] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2590), - [anon_sym_number] = ACTIONS(2590), - [anon_sym_boolean] = ACTIONS(2590), - [anon_sym_string] = ACTIONS(2590), - [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [340] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2988), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [332] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2489), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [341] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [333] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2870), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_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_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [342] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2695), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [334] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2869), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_typeof] = ACTIONS(1122), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [343] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2991), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [335] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2868), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [344] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2992), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [336] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2498), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [345] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [337] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3028), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2738), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2502), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_readonly] = ACTIONS(2498), - [anon_sym_get] = ACTIONS(2498), - [anon_sym_set] = ACTIONS(2498), - [anon_sym_declare] = ACTIONS(2498), - [anon_sym_public] = ACTIONS(2498), - [anon_sym_private] = ACTIONS(2498), - [anon_sym_protected] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_any] = ACTIONS(2498), - [anon_sym_number] = ACTIONS(2498), - [anon_sym_boolean] = ACTIONS(2498), - [anon_sym_string] = ACTIONS(2498), - [anon_sym_symbol] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [346] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [338] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2722), + [anon_sym_export] = ACTIONS(2666), + [anon_sym_type] = ACTIONS(2666), + [anon_sym_namespace] = ACTIONS(2668), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(2670), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2666), + [anon_sym_readonly] = ACTIONS(2666), + [anon_sym_get] = ACTIONS(2666), + [anon_sym_set] = ACTIONS(2666), + [anon_sym_declare] = ACTIONS(2666), + [anon_sym_public] = ACTIONS(2666), + [anon_sym_private] = ACTIONS(2666), + [anon_sym_protected] = ACTIONS(2666), + [anon_sym_module] = ACTIONS(2666), + [anon_sym_any] = ACTIONS(2666), + [anon_sym_number] = ACTIONS(2666), + [anon_sym_boolean] = ACTIONS(2666), + [anon_sym_string] = ACTIONS(2666), + [anon_sym_symbol] = ACTIONS(2666), + }, + [339] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3512), + [sym_primary_expression] = STATE(2904), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2014), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2736), + [anon_sym_export] = ACTIONS(2738), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_namespace] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(2634), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_readonly] = ACTIONS(2738), + [anon_sym_get] = ACTIONS(2738), + [anon_sym_set] = ACTIONS(2738), + [anon_sym_declare] = ACTIONS(2738), + [anon_sym_public] = ACTIONS(2738), + [anon_sym_private] = ACTIONS(2738), + [anon_sym_protected] = ACTIONS(2738), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2738), + [anon_sym_number] = ACTIONS(2738), + [anon_sym_boolean] = ACTIONS(2738), + [anon_sym_string] = ACTIONS(2738), + [anon_sym_symbol] = ACTIONS(2738), }, - [347] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [340] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2740), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2746), + [anon_sym_type] = ACTIONS(2746), + [anon_sym_namespace] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2562), + [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(2746), + [anon_sym_readonly] = ACTIONS(2746), + [anon_sym_get] = ACTIONS(2746), + [anon_sym_set] = ACTIONS(2746), + [anon_sym_declare] = ACTIONS(2746), + [anon_sym_public] = ACTIONS(2746), + [anon_sym_private] = ACTIONS(2746), + [anon_sym_protected] = ACTIONS(2746), + [anon_sym_module] = ACTIONS(2746), + [anon_sym_any] = ACTIONS(2746), + [anon_sym_number] = ACTIONS(2746), + [anon_sym_boolean] = ACTIONS(2746), + [anon_sym_string] = ACTIONS(2746), + [anon_sym_symbol] = ACTIONS(2746), }, - [348] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [341] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3027), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [349] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3500), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [342] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(2702), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), }, - [350] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2316), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [343] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3026), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [351] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [344] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2540), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3060), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2742), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -51313,461 +50676,649 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_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_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [352] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2188), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [345] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3025), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [353] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2208), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [346] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2540), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2216), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [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(1482), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + }, + [347] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2582), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5536), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [354] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [348] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2993), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2372), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [349] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3146), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4704), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5340), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [355] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2258), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [350] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2781), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [356] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2529), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [351] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3192), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5601), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2694), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -51777,7 +51328,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -51785,1028 +51336,840 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [357] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [352] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2472), - [anon_sym_type] = ACTIONS(2472), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2710), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(2702), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_readonly] = 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_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), }, - [358] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3190), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5653), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [353] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3377), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [359] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [354] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3390), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), - }, - [360] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2270), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [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(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_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), - }, - [361] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2800), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2432), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [362] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3484), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [355] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2782), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [363] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(3547), - [sym_primary_expression] = STATE(2459), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1464), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2730), - [anon_sym_export] = ACTIONS(2620), - [anon_sym_type] = ACTIONS(2620), - [anon_sym_namespace] = ACTIONS(2622), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(2624), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(2538), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2620), - [anon_sym_readonly] = ACTIONS(2620), - [anon_sym_get] = ACTIONS(2620), - [anon_sym_set] = ACTIONS(2620), - [anon_sym_declare] = ACTIONS(2620), - [anon_sym_public] = ACTIONS(2620), - [anon_sym_private] = ACTIONS(2620), - [anon_sym_protected] = ACTIONS(2620), - [anon_sym_module] = ACTIONS(2620), - [anon_sym_any] = ACTIONS(2620), - [anon_sym_number] = ACTIONS(2620), - [anon_sym_boolean] = ACTIONS(2620), - [anon_sym_string] = ACTIONS(2620), - [anon_sym_symbol] = ACTIONS(2620), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [364] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2623), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [356] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2783), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [365] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2654), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5524), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [357] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3512), + [sym_primary_expression] = STATE(2904), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(2014), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2718), + [anon_sym_export] = ACTIONS(2626), + [anon_sym_type] = ACTIONS(2626), + [anon_sym_namespace] = ACTIONS(2628), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_DOT] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(2630), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(2634), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2626), + [anon_sym_readonly] = ACTIONS(2626), + [anon_sym_get] = ACTIONS(2626), + [anon_sym_set] = ACTIONS(2626), + [anon_sym_declare] = ACTIONS(2626), + [anon_sym_public] = ACTIONS(2626), + [anon_sym_private] = ACTIONS(2626), + [anon_sym_protected] = ACTIONS(2626), + [anon_sym_module] = ACTIONS(2626), + [anon_sym_any] = ACTIONS(2626), + [anon_sym_number] = ACTIONS(2626), + [anon_sym_boolean] = ACTIONS(2626), + [anon_sym_string] = ACTIONS(2626), + [anon_sym_symbol] = ACTIONS(2626), + }, + [358] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4442), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5401), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(2702), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), }, - [366] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3061), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [359] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2710), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [367] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2422), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3033), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [360] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2574), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3015), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -52817,1026 +52180,1026 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [368] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2422), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2476), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [361] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3394), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1540), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1060), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [369] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2263), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), + [362] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3397), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2981), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [363] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1525), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(2549), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1525), + [sym_subscript_expression] = STATE(1525), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1525), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(2730), + [anon_sym_export] = ACTIONS(2428), + [anon_sym_type] = ACTIONS(2428), + [anon_sym_namespace] = ACTIONS(2430), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2432), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2428), + [anon_sym_readonly] = 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), + }, + [364] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3396), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [370] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [365] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3013), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2748), - [anon_sym_export] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2754), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_readonly] = ACTIONS(2750), - [anon_sym_get] = ACTIONS(2750), - [anon_sym_set] = ACTIONS(2750), - [anon_sym_declare] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2750), - [anon_sym_private] = ACTIONS(2750), - [anon_sym_protected] = ACTIONS(2750), - [anon_sym_module] = ACTIONS(2750), - [anon_sym_any] = ACTIONS(2750), - [anon_sym_number] = ACTIONS(2750), - [anon_sym_boolean] = ACTIONS(2750), - [anon_sym_string] = ACTIONS(2750), - [anon_sym_symbol] = ACTIONS(2750), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [371] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(2081), + [366] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), [sym_expression] = STATE(3019), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5589), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [372] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2800), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2348), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), + [367] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2756), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_namespace] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2548), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_readonly] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_declare] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_protected] = ACTIONS(2544), + [anon_sym_module] = ACTIONS(2544), + [anon_sym_any] = ACTIONS(2544), + [anon_sym_number] = ACTIONS(2544), + [anon_sym_boolean] = ACTIONS(2544), + [anon_sym_string] = ACTIONS(2544), + [anon_sym_symbol] = ACTIONS(2544), }, - [373] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [368] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3504), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2710), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [374] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2696), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [369] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3503), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - }, - [375] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2504), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2213), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [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(896), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [376] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [370] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(2756), - [anon_sym_export] = ACTIONS(2758), - [anon_sym_type] = ACTIONS(2758), - [anon_sym_namespace] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(2544), + [anon_sym_type] = ACTIONS(2544), + [anon_sym_namespace] = ACTIONS(2546), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2762), + [anon_sym_async] = ACTIONS(2548), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_readonly] = ACTIONS(2758), - [anon_sym_get] = ACTIONS(2758), - [anon_sym_set] = ACTIONS(2758), - [anon_sym_declare] = ACTIONS(2758), - [anon_sym_public] = ACTIONS(2758), - [anon_sym_private] = ACTIONS(2758), - [anon_sym_protected] = ACTIONS(2758), - [anon_sym_module] = ACTIONS(2758), - [anon_sym_any] = ACTIONS(2758), - [anon_sym_number] = ACTIONS(2758), - [anon_sym_boolean] = ACTIONS(2758), - [anon_sym_string] = ACTIONS(2758), - [anon_sym_symbol] = ACTIONS(2758), - }, - [377] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2783), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2347), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(2544), + [anon_sym_readonly] = ACTIONS(2544), + [anon_sym_get] = ACTIONS(2544), + [anon_sym_set] = ACTIONS(2544), + [anon_sym_declare] = ACTIONS(2544), + [anon_sym_public] = ACTIONS(2544), + [anon_sym_private] = ACTIONS(2544), + [anon_sym_protected] = ACTIONS(2544), + [anon_sym_module] = ACTIONS(2544), + [anon_sym_any] = ACTIONS(2544), + [anon_sym_number] = ACTIONS(2544), + [anon_sym_boolean] = ACTIONS(2544), + [anon_sym_string] = ACTIONS(2544), + [anon_sym_symbol] = ACTIONS(2544), }, - [378] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2325), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [371] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2603), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(2694), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2758), [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), [anon_sym_void] = ACTIONS(930), [anon_sym_delete] = ACTIONS(930), [anon_sym_PLUS_PLUS] = ACTIONS(932), @@ -53845,1788 +53208,1036 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - }, - [379] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(3547), - [sym_primary_expression] = STATE(2459), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1464), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2764), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_namespace] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(2536), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(2538), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_readonly] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_declare] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_protected] = ACTIONS(2530), - [anon_sym_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_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [380] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [372] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2600), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2732), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [381] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2870), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2362), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - }, - [382] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2873), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2369), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - }, - [383] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2211), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [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(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_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), - }, - [384] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2783), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2450), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [385] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2954), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [373] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2599), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - }, - [386] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2875), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2372), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [387] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3067), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [374] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3365), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - }, - [388] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2521), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2210), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [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(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_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), - }, - [389] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2422), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2218), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [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(896), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [390] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2952), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [375] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2787), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [391] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3199), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5825), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [376] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2598), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [392] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3135), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5658), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [377] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2597), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [393] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [378] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2596), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2738), - [anon_sym_export] = ACTIONS(2498), - [anon_sym_type] = ACTIONS(2498), - [anon_sym_namespace] = ACTIONS(2500), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(2758), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2502), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2498), - [anon_sym_readonly] = ACTIONS(2498), - [anon_sym_get] = ACTIONS(2498), - [anon_sym_set] = ACTIONS(2498), - [anon_sym_declare] = ACTIONS(2498), - [anon_sym_public] = ACTIONS(2498), - [anon_sym_private] = ACTIONS(2498), - [anon_sym_protected] = ACTIONS(2498), - [anon_sym_module] = ACTIONS(2498), - [anon_sym_any] = ACTIONS(2498), - [anon_sym_number] = ACTIONS(2498), - [anon_sym_boolean] = ACTIONS(2498), - [anon_sym_string] = ACTIONS(2498), - [anon_sym_symbol] = ACTIONS(2498), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [394] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2972), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [379] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2744), + [anon_sym_export] = ACTIONS(2746), + [anon_sym_type] = ACTIONS(2746), + [anon_sym_namespace] = ACTIONS(2748), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(2750), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(2746), + [anon_sym_readonly] = ACTIONS(2746), + [anon_sym_get] = ACTIONS(2746), + [anon_sym_set] = ACTIONS(2746), + [anon_sym_declare] = ACTIONS(2746), + [anon_sym_public] = ACTIONS(2746), + [anon_sym_private] = ACTIONS(2746), + [anon_sym_protected] = ACTIONS(2746), + [anon_sym_module] = ACTIONS(2746), + [anon_sym_any] = ACTIONS(2746), + [anon_sym_number] = ACTIONS(2746), + [anon_sym_boolean] = ACTIONS(2746), + [anon_sym_string] = ACTIONS(2746), + [anon_sym_symbol] = ACTIONS(2746), }, - [395] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3304), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2786), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [380] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3329), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2965), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, - [396] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3445), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [381] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3501), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [397] = { - [sym_import] = STATE(2576), + [382] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2574), [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), + [sym_expression] = STATE(2186), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), [sym_member_expression] = STATE(1451), [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), + [sym_formal_parameters] = STATE(4485), [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2700), - [anon_sym_export] = ACTIONS(2488), - [anon_sym_type] = ACTIONS(2488), - [anon_sym_namespace] = ACTIONS(2490), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2492), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -55637,179 +54248,649 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2488), - [anon_sym_readonly] = ACTIONS(2488), - [anon_sym_get] = ACTIONS(2488), - [anon_sym_set] = ACTIONS(2488), - [anon_sym_declare] = ACTIONS(2488), - [anon_sym_public] = ACTIONS(2488), - [anon_sym_private] = ACTIONS(2488), - [anon_sym_protected] = ACTIONS(2488), - [anon_sym_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_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [398] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [383] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(3004), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2382), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [384] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2565), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3039), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + }, + [385] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3281), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2995), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [386] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3325), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(3003), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [387] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3166), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5468), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2748), - [anon_sym_export] = ACTIONS(2750), - [anon_sym_type] = ACTIONS(2750), - [anon_sym_namespace] = ACTIONS(2752), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2754), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2750), - [anon_sym_readonly] = ACTIONS(2750), - [anon_sym_get] = ACTIONS(2750), - [anon_sym_set] = ACTIONS(2750), - [anon_sym_declare] = ACTIONS(2750), - [anon_sym_public] = ACTIONS(2750), - [anon_sym_private] = ACTIONS(2750), - [anon_sym_protected] = ACTIONS(2750), - [anon_sym_module] = ACTIONS(2750), - [anon_sym_any] = ACTIONS(2750), - [anon_sym_number] = ACTIONS(2750), - [anon_sym_boolean] = ACTIONS(2750), - [anon_sym_string] = ACTIONS(2750), - [anon_sym_symbol] = ACTIONS(2750), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [399] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2535), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [388] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2985), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2385), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2694), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [389] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3057), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5597), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -55819,7 +54900,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -55827,276 +54908,276 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [400] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2015), - [sym_expression] = STATE(3508), - [sym_primary_expression] = STATE(2999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2015), - [sym_subscript_expression] = STATE(2015), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [390] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2494), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3080), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2015), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(2704), - [anon_sym_export] = ACTIONS(2706), - [anon_sym_type] = ACTIONS(2706), - [anon_sym_namespace] = ACTIONS(2708), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(2712), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(2598), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2706), - [anon_sym_readonly] = ACTIONS(2706), - [anon_sym_get] = ACTIONS(2706), - [anon_sym_set] = ACTIONS(2706), - [anon_sym_declare] = ACTIONS(2706), - [anon_sym_public] = ACTIONS(2706), - [anon_sym_private] = ACTIONS(2706), - [anon_sym_protected] = ACTIONS(2706), - [anon_sym_module] = ACTIONS(2706), - [anon_sym_any] = ACTIONS(2706), - [anon_sym_number] = ACTIONS(2706), - [anon_sym_boolean] = ACTIONS(2706), - [anon_sym_string] = ACTIONS(2706), - [anon_sym_symbol] = ACTIONS(2706), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [401] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2533), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [391] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2734), + [anon_sym_export] = ACTIONS(2552), + [anon_sym_type] = ACTIONS(2552), + [anon_sym_namespace] = ACTIONS(2554), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(2556), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(2552), + [anon_sym_readonly] = ACTIONS(2552), + [anon_sym_get] = ACTIONS(2552), + [anon_sym_set] = ACTIONS(2552), + [anon_sym_declare] = ACTIONS(2552), + [anon_sym_public] = ACTIONS(2552), + [anon_sym_private] = ACTIONS(2552), + [anon_sym_protected] = ACTIONS(2552), + [anon_sym_module] = ACTIONS(2552), + [anon_sym_any] = ACTIONS(2552), + [anon_sym_number] = ACTIONS(2552), + [anon_sym_boolean] = ACTIONS(2552), + [anon_sym_string] = ACTIONS(2552), + [anon_sym_symbol] = ACTIONS(2552), }, - [402] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2463), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [392] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2499), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3083), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -56107,179 +55188,555 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [403] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [393] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2500), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3084), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + }, + [394] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2812), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2740), - [anon_sym_export] = ACTIONS(2558), - [anon_sym_type] = ACTIONS(2558), - [anon_sym_namespace] = ACTIONS(2560), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2562), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), + }, + [395] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2912), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2387), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [396] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2980), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2388), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [397] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2804), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2558), - [anon_sym_readonly] = ACTIONS(2558), - [anon_sym_get] = ACTIONS(2558), - [anon_sym_set] = ACTIONS(2558), - [anon_sym_declare] = ACTIONS(2558), - [anon_sym_public] = ACTIONS(2558), - [anon_sym_private] = ACTIONS(2558), - [anon_sym_protected] = ACTIONS(2558), - [anon_sym_module] = ACTIONS(2558), - [anon_sym_any] = ACTIONS(2558), - [anon_sym_number] = ACTIONS(2558), - [anon_sym_boolean] = ACTIONS(2558), - [anon_sym_string] = ACTIONS(2558), - [anon_sym_symbol] = ACTIONS(2558), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [404] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3134), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5525), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [398] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2734), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5670), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -56289,7 +55746,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -56297,88 +55754,276 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [405] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2521), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2462), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [399] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3375), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2984), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [400] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2500), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2953), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + }, + [401] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2499), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2952), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -56389,278 +56034,560 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [406] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3109), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5564), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [402] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2494), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2948), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + }, + [403] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2732), + [anon_sym_export] = ACTIONS(2470), + [anon_sym_type] = ACTIONS(2470), + [anon_sym_namespace] = ACTIONS(2472), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [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(2466), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2470), + [anon_sym_readonly] = ACTIONS(2470), + [anon_sym_get] = ACTIONS(2470), + [anon_sym_set] = ACTIONS(2470), + [anon_sym_declare] = ACTIONS(2470), + [anon_sym_public] = ACTIONS(2470), + [anon_sym_private] = ACTIONS(2470), + [anon_sym_protected] = ACTIONS(2470), + [anon_sym_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), + }, + [404] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3485), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [407] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3160), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [405] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3404), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2979), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_function] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), [anon_sym_new] = ACTIONS(1816), [anon_sym_PLUS] = ACTIONS(1814), [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [406] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3096), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5580), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [408] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [407] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2766), - [anon_sym_export] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_namespace] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2760), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -56671,90 +56598,184 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), + [sym_undefined] = ACTIONS(2466), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_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), + }, + [408] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2014), + [sym_expression] = STATE(3512), + [sym_primary_expression] = STATE(2904), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2014), + [sym_subscript_expression] = STATE(2014), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(2014), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(2736), + [anon_sym_export] = ACTIONS(2738), + [anon_sym_type] = ACTIONS(2738), + [anon_sym_namespace] = ACTIONS(2740), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_DOT] = ACTIONS(2720), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(2742), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(2632), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(2634), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_readonly] = ACTIONS(2768), - [anon_sym_get] = ACTIONS(2768), - [anon_sym_set] = ACTIONS(2768), - [anon_sym_declare] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_module] = ACTIONS(2768), - [anon_sym_any] = ACTIONS(2768), - [anon_sym_number] = ACTIONS(2768), - [anon_sym_boolean] = ACTIONS(2768), - [anon_sym_string] = ACTIONS(2768), - [anon_sym_symbol] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(2738), + [anon_sym_readonly] = ACTIONS(2738), + [anon_sym_get] = ACTIONS(2738), + [anon_sym_set] = ACTIONS(2738), + [anon_sym_declare] = ACTIONS(2738), + [anon_sym_public] = ACTIONS(2738), + [anon_sym_private] = ACTIONS(2738), + [anon_sym_protected] = ACTIONS(2738), + [anon_sym_module] = ACTIONS(2738), + [anon_sym_any] = ACTIONS(2738), + [anon_sym_number] = ACTIONS(2738), + [anon_sym_boolean] = ACTIONS(2738), + [anon_sym_string] = ACTIONS(2738), + [anon_sym_symbol] = ACTIONS(2738), }, [409] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2620), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2500), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2426), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -56765,7 +56786,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -56783,354 +56804,260 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_symbol] = ACTIONS(1068), }, [410] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2528), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3374), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_mapped_type_clause] = STATE(5492), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2762), + [anon_sym_export] = ACTIONS(2764), + [anon_sym_type] = ACTIONS(2764), + [anon_sym_namespace] = ACTIONS(2766), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(2768), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(2764), + [anon_sym_readonly] = ACTIONS(2764), + [anon_sym_get] = ACTIONS(2764), + [anon_sym_set] = ACTIONS(2764), + [anon_sym_declare] = ACTIONS(2764), + [anon_sym_public] = ACTIONS(2764), + [anon_sym_private] = ACTIONS(2764), + [anon_sym_protected] = ACTIONS(2764), + [anon_sym_module] = ACTIONS(2764), + [anon_sym_any] = ACTIONS(2764), + [anon_sym_number] = ACTIONS(2764), + [anon_sym_boolean] = ACTIONS(2764), + [anon_sym_string] = ACTIONS(2764), + [anon_sym_symbol] = ACTIONS(2764), }, [411] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3188), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3374), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_mapped_type_clause] = STATE(5581), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2770), + [anon_sym_export] = ACTIONS(2772), + [anon_sym_type] = ACTIONS(2772), + [anon_sym_namespace] = ACTIONS(2774), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(2776), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(2772), + [anon_sym_readonly] = ACTIONS(2772), + [anon_sym_get] = ACTIONS(2772), + [anon_sym_set] = ACTIONS(2772), + [anon_sym_declare] = ACTIONS(2772), + [anon_sym_public] = ACTIONS(2772), + [anon_sym_private] = ACTIONS(2772), + [anon_sym_protected] = ACTIONS(2772), + [anon_sym_module] = ACTIONS(2772), + [anon_sym_any] = ACTIONS(2772), + [anon_sym_number] = ACTIONS(2772), + [anon_sym_boolean] = ACTIONS(2772), + [anon_sym_string] = ACTIONS(2772), + [anon_sym_symbol] = ACTIONS(2772), }, [412] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2870), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2470), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2494), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2423), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [413] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2898), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5411), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -57141,7 +57068,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -57158,1013 +57085,919 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [414] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2873), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2471), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [413] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2565), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2181), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(1470), [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [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(1482), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + }, + [414] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2778), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [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(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_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), }, [415] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4713), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5226), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2778), + [anon_sym_export] = ACTIONS(2478), + [anon_sym_type] = ACTIONS(2478), + [anon_sym_namespace] = ACTIONS(2480), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2728), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2482), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [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(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(2478), + [anon_sym_readonly] = ACTIONS(2478), + [anon_sym_get] = ACTIONS(2478), + [anon_sym_set] = ACTIONS(2478), + [anon_sym_declare] = ACTIONS(2478), + [anon_sym_public] = ACTIONS(2478), + [anon_sym_private] = ACTIONS(2478), + [anon_sym_protected] = ACTIONS(2478), + [anon_sym_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), }, [416] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3191), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2650), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, [417] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2624), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2579), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, [418] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2697), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2647), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_typeof] = ACTIONS(1122), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, [419] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2915), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2646), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, [420] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3196), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5742), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2645), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, [421] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3444), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), - }, - [422] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2698), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2644), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - }, - [423] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3227), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1190), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, - [424] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [422] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2760), + [anon_sym_export] = ACTIONS(2458), + [anon_sym_type] = ACTIONS(2458), + [anon_sym_namespace] = ACTIONS(2460), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2462), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -58175,1218 +58008,372 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(2458), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2776), - [anon_sym_readonly] = ACTIONS(2776), - [anon_sym_get] = ACTIONS(2776), - [anon_sym_set] = ACTIONS(2776), - [anon_sym_declare] = ACTIONS(2776), - [anon_sym_public] = ACTIONS(2776), - [anon_sym_private] = ACTIONS(2776), - [anon_sym_protected] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2776), - [anon_sym_any] = ACTIONS(2776), - [anon_sym_number] = ACTIONS(2776), - [anon_sym_boolean] = ACTIONS(2776), - [anon_sym_string] = ACTIONS(2776), - [anon_sym_symbol] = ACTIONS(2776), - }, - [425] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3453), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2710), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [426] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2875), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2472), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [427] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2699), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(2716), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(2458), + [anon_sym_readonly] = ACTIONS(2458), + [anon_sym_get] = ACTIONS(2458), + [anon_sym_set] = ACTIONS(2458), + [anon_sym_declare] = ACTIONS(2458), + [anon_sym_public] = ACTIONS(2458), + [anon_sym_private] = ACTIONS(2458), + [anon_sym_protected] = ACTIONS(2458), + [anon_sym_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), }, - [428] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3429), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [423] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3489), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [429] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3039), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), + [424] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3229), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(972), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - }, - [430] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2887), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - }, - [431] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3468), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2712), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [432] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2742), - [anon_sym_export] = ACTIONS(2522), - [anon_sym_type] = ACTIONS(2522), - [anon_sym_namespace] = ACTIONS(2524), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2526), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [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(2458), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2522), - [anon_sym_readonly] = ACTIONS(2522), - [anon_sym_get] = ACTIONS(2522), - [anon_sym_set] = ACTIONS(2522), - [anon_sym_declare] = ACTIONS(2522), - [anon_sym_public] = ACTIONS(2522), - [anon_sym_private] = ACTIONS(2522), - [anon_sym_protected] = ACTIONS(2522), - [anon_sym_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), - }, - [433] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2234), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3425), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5575), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), - }, - [434] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3495), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2713), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [435] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3447), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [425] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2648), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), - }, - [436] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2521), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2728), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(91), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [437] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2729), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [426] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2565), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2412), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -59397,7 +58384,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -59414,73 +58401,73 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [438] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2444), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2636), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [427] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2565), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2924), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -59491,278 +58478,184 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [439] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2859), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [428] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3227), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5574), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - }, - [440] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2015), - [sym_expression] = STATE(3508), - [sym_primary_expression] = STATE(2999), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2015), - [sym_subscript_expression] = STATE(2015), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2015), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(2734), - [anon_sym_export] = ACTIONS(2590), - [anon_sym_type] = ACTIONS(2590), - [anon_sym_namespace] = ACTIONS(2592), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_DOT] = ACTIONS(2710), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(2594), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(2596), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(2598), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2590), - [anon_sym_readonly] = ACTIONS(2590), - [anon_sym_get] = ACTIONS(2590), - [anon_sym_set] = ACTIONS(2590), - [anon_sym_declare] = ACTIONS(2590), - [anon_sym_public] = ACTIONS(2590), - [anon_sym_private] = ACTIONS(2590), - [anon_sym_protected] = ACTIONS(2590), - [anon_sym_module] = ACTIONS(2590), - [anon_sym_any] = ACTIONS(2590), - [anon_sym_number] = ACTIONS(2590), - [anon_sym_boolean] = ACTIONS(2590), - [anon_sym_string] = ACTIONS(2590), - [anon_sym_symbol] = ACTIONS(2590), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [441] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2504), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2753), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [429] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2574), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2462), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -59773,7 +58666,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -59790,914 +58683,538 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [442] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [430] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3215), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5573), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [443] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2237), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3424), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [431] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2649), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), - }, - [444] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [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(2458), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_readonly] = ACTIONS(2450), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_declare] = ACTIONS(2450), - [anon_sym_public] = ACTIONS(2450), - [anon_sym_private] = ACTIONS(2450), - [anon_sym_protected] = ACTIONS(2450), - [anon_sym_module] = ACTIONS(2450), - [anon_sym_any] = ACTIONS(2450), - [anon_sym_number] = ACTIONS(2450), - [anon_sym_boolean] = ACTIONS(2450), - [anon_sym_string] = ACTIONS(2450), - [anon_sym_symbol] = ACTIONS(2450), - }, - [445] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2914), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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), - }, - [446] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2766), - [anon_sym_export] = ACTIONS(2768), - [anon_sym_type] = ACTIONS(2768), - [anon_sym_namespace] = ACTIONS(2770), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2772), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [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(2458), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2768), - [anon_sym_readonly] = ACTIONS(2768), - [anon_sym_get] = ACTIONS(2768), - [anon_sym_set] = ACTIONS(2768), - [anon_sym_declare] = ACTIONS(2768), - [anon_sym_public] = ACTIONS(2768), - [anon_sym_private] = ACTIONS(2768), - [anon_sym_protected] = ACTIONS(2768), - [anon_sym_module] = ACTIONS(2768), - [anon_sym_any] = ACTIONS(2768), - [anon_sym_number] = ACTIONS(2768), - [anon_sym_boolean] = ACTIONS(2768), - [anon_sym_string] = ACTIONS(2768), - [anon_sym_symbol] = ACTIONS(2768), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [447] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3089), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [432] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2958), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2397), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [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(1024), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), }, - [448] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [433] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2658), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2744), - [anon_sym_export] = ACTIONS(2472), - [anon_sym_type] = ACTIONS(2472), - [anon_sym_namespace] = ACTIONS(2474), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2476), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2472), - [anon_sym_readonly] = 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), - }, - [449] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2519), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2497), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(2718), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [450] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [434] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2230), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2277), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2784), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_readonly] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_declare] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_protected] = ACTIONS(2462), - [anon_sym_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_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [451] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2644), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5627), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [435] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3159), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5562), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -60707,7 +59224,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -60715,1404 +59232,840 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [452] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3144), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5535), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [436] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2245), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [453] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3332), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2809), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [454] = { - [sym_import] = STATE(3265), - [sym_statement_block] = STATE(3420), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2795), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2714), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [455] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3480), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [437] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2659), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [456] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [438] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2195), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3236), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2786), - [anon_sym_export] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2670), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_readonly] = ACTIONS(2666), - [anon_sym_get] = ACTIONS(2666), - [anon_sym_set] = ACTIONS(2666), - [anon_sym_declare] = ACTIONS(2666), - [anon_sym_public] = ACTIONS(2666), - [anon_sym_private] = ACTIONS(2666), - [anon_sym_protected] = ACTIONS(2666), - [anon_sym_module] = ACTIONS(2666), - [anon_sym_any] = ACTIONS(2666), - [anon_sym_number] = ACTIONS(2666), - [anon_sym_boolean] = ACTIONS(2666), - [anon_sym_string] = ACTIONS(2666), - [anon_sym_symbol] = ACTIONS(2666), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [457] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [439] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2242), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2786), - [anon_sym_export] = ACTIONS(2666), - [anon_sym_type] = ACTIONS(2666), - [anon_sym_namespace] = ACTIONS(2668), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2670), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2666), - [anon_sym_readonly] = ACTIONS(2666), - [anon_sym_get] = ACTIONS(2666), - [anon_sym_set] = ACTIONS(2666), - [anon_sym_declare] = ACTIONS(2666), - [anon_sym_public] = ACTIONS(2666), - [anon_sym_private] = ACTIONS(2666), - [anon_sym_protected] = ACTIONS(2666), - [anon_sym_module] = ACTIONS(2666), - [anon_sym_any] = ACTIONS(2666), - [anon_sym_number] = ACTIONS(2666), - [anon_sym_boolean] = ACTIONS(2666), - [anon_sym_string] = ACTIONS(2666), - [anon_sym_symbol] = ACTIONS(2666), - }, - [458] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2962), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_sequence_expression] = STATE(5231), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(91), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [459] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3292), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [440] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_mapped_type_clause] = STATE(5614), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2788), - [anon_sym_export] = ACTIONS(2790), - [anon_sym_type] = ACTIONS(2790), - [anon_sym_namespace] = ACTIONS(2792), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2782), + [anon_sym_type] = ACTIONS(2782), + [anon_sym_namespace] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2794), + [anon_sym_async] = ACTIONS(2786), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2790), - [anon_sym_readonly] = ACTIONS(2790), - [anon_sym_get] = ACTIONS(2790), - [anon_sym_set] = ACTIONS(2790), - [anon_sym_declare] = ACTIONS(2790), - [anon_sym_public] = ACTIONS(2790), - [anon_sym_private] = ACTIONS(2790), - [anon_sym_protected] = ACTIONS(2790), - [anon_sym_module] = ACTIONS(2790), - [anon_sym_any] = ACTIONS(2790), - [anon_sym_number] = ACTIONS(2790), - [anon_sym_boolean] = ACTIONS(2790), - [anon_sym_string] = ACTIONS(2790), - [anon_sym_symbol] = ACTIONS(2790), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_readonly] = ACTIONS(2782), + [anon_sym_get] = ACTIONS(2782), + [anon_sym_set] = ACTIONS(2782), + [anon_sym_declare] = ACTIONS(2782), + [anon_sym_public] = ACTIONS(2782), + [anon_sym_private] = ACTIONS(2782), + [anon_sym_protected] = ACTIONS(2782), + [anon_sym_module] = ACTIONS(2782), + [anon_sym_any] = ACTIONS(2782), + [anon_sym_number] = ACTIONS(2782), + [anon_sym_boolean] = ACTIONS(2782), + [anon_sym_string] = ACTIONS(2782), + [anon_sym_symbol] = ACTIONS(2782), }, - [460] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2958), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [441] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2288), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3202), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [461] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2799), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2351), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - }, - [462] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3117), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), + [442] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2236), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), - }, - [463] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2784), - [anon_sym_export] = ACTIONS(2462), - [anon_sym_type] = ACTIONS(2462), - [anon_sym_namespace] = ACTIONS(2464), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2466), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2462), - [anon_sym_readonly] = ACTIONS(2462), - [anon_sym_get] = ACTIONS(2462), - [anon_sym_set] = ACTIONS(2462), - [anon_sym_declare] = ACTIONS(2462), - [anon_sym_public] = ACTIONS(2462), - [anon_sym_private] = ACTIONS(2462), - [anon_sym_protected] = ACTIONS(2462), - [anon_sym_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_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [464] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [443] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2235), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2702), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [465] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2444), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2923), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [466] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2444), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3015), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [444] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2574), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2864), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -62123,85 +60076,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [467] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3147), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5620), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [445] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3216), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5559), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -62211,7 +60164,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -62219,558 +60172,558 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [468] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [446] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2780), + [anon_sym_export] = ACTIONS(2782), + [anon_sym_type] = ACTIONS(2782), + [anon_sym_namespace] = ACTIONS(2784), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(2786), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(2782), + [anon_sym_readonly] = ACTIONS(2782), + [anon_sym_get] = ACTIONS(2782), + [anon_sym_set] = ACTIONS(2782), + [anon_sym_declare] = ACTIONS(2782), + [anon_sym_public] = ACTIONS(2782), + [anon_sym_private] = ACTIONS(2782), + [anon_sym_protected] = ACTIONS(2782), + [anon_sym_module] = ACTIONS(2782), + [anon_sym_any] = ACTIONS(2782), + [anon_sym_number] = ACTIONS(2782), + [anon_sym_boolean] = ACTIONS(2782), + [anon_sym_string] = ACTIONS(2782), + [anon_sym_symbol] = ACTIONS(2782), }, - [469] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2243), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3155), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [447] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2660), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(2696), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [470] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [448] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2667), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2736), - [anon_sym_export] = ACTIONS(2432), - [anon_sym_type] = ACTIONS(2432), - [anon_sym_namespace] = ACTIONS(2434), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2436), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2432), - [anon_sym_readonly] = ACTIONS(2432), - [anon_sym_get] = ACTIONS(2432), - [anon_sym_set] = ACTIONS(2432), - [anon_sym_declare] = ACTIONS(2432), - [anon_sym_public] = ACTIONS(2432), - [anon_sym_private] = ACTIONS(2432), - [anon_sym_protected] = ACTIONS(2432), - [anon_sym_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_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [471] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3013), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5628), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [449] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2540), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2594), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [472] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3292), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [450] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2316), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3188), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_mapped_type_clause] = STATE(5485), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2796), - [anon_sym_export] = ACTIONS(2798), - [anon_sym_type] = ACTIONS(2798), - [anon_sym_namespace] = ACTIONS(2800), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2802), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2798), - [anon_sym_readonly] = ACTIONS(2798), - [anon_sym_get] = ACTIONS(2798), - [anon_sym_set] = ACTIONS(2798), - [anon_sym_declare] = ACTIONS(2798), - [anon_sym_public] = ACTIONS(2798), - [anon_sym_private] = ACTIONS(2798), - [anon_sym_protected] = ACTIONS(2798), - [anon_sym_module] = ACTIONS(2798), - [anon_sym_any] = ACTIONS(2798), - [anon_sym_number] = ACTIONS(2798), - [anon_sym_boolean] = ACTIONS(2798), - [anon_sym_string] = ACTIONS(2798), - [anon_sym_symbol] = ACTIONS(2798), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [473] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2521), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2966), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [451] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2788), + [anon_sym_export] = ACTIONS(2790), + [anon_sym_type] = ACTIONS(2790), + [anon_sym_namespace] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2794), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -62781,748 +60734,654 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(2790), + [anon_sym_readonly] = ACTIONS(2790), + [anon_sym_get] = ACTIONS(2790), + [anon_sym_set] = ACTIONS(2790), + [anon_sym_declare] = ACTIONS(2790), + [anon_sym_public] = ACTIONS(2790), + [anon_sym_private] = ACTIONS(2790), + [anon_sym_protected] = ACTIONS(2790), + [anon_sym_module] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(2790), + [anon_sym_number] = ACTIONS(2790), + [anon_sym_boolean] = ACTIONS(2790), + [anon_sym_string] = ACTIONS(2790), + [anon_sym_symbol] = ACTIONS(2790), }, - [474] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2167), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3056), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [452] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2312), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3169), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - }, - [475] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2774), - [anon_sym_export] = ACTIONS(2776), - [anon_sym_type] = ACTIONS(2776), - [anon_sym_namespace] = ACTIONS(2778), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2780), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [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(2458), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2776), - [anon_sym_readonly] = ACTIONS(2776), - [anon_sym_get] = ACTIONS(2776), - [anon_sym_set] = ACTIONS(2776), - [anon_sym_declare] = ACTIONS(2776), - [anon_sym_public] = ACTIONS(2776), - [anon_sym_private] = ACTIONS(2776), - [anon_sym_protected] = ACTIONS(2776), - [anon_sym_module] = ACTIONS(2776), - [anon_sym_any] = ACTIONS(2776), - [anon_sym_number] = ACTIONS(2776), - [anon_sym_boolean] = ACTIONS(2776), - [anon_sym_string] = ACTIONS(2776), - [anon_sym_symbol] = ACTIONS(2776), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [476] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3091), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_sequence_expression] = STATE(5692), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [453] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3168), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(2724), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [477] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2343), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2436), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [454] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2796), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(2416), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_readonly] = 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), }, - [478] = { - [sym_import] = STATE(2849), - [sym_statement_block] = STATE(2799), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2403), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [455] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2958), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2366), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(2746), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [479] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1464), - [sym_expression] = STATE(3547), - [sym_primary_expression] = STATE(2459), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1464), - [sym_subscript_expression] = STATE(1464), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [456] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1464), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(2764), - [anon_sym_export] = ACTIONS(2530), - [anon_sym_type] = ACTIONS(2530), - [anon_sym_namespace] = ACTIONS(2532), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2798), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_DOT] = ACTIONS(2732), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(2534), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(2536), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2490), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(2538), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2530), - [anon_sym_readonly] = ACTIONS(2530), - [anon_sym_get] = ACTIONS(2530), - [anon_sym_set] = ACTIONS(2530), - [anon_sym_declare] = ACTIONS(2530), - [anon_sym_public] = ACTIONS(2530), - [anon_sym_private] = ACTIONS(2530), - [anon_sym_protected] = ACTIONS(2530), - [anon_sym_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_static] = ACTIONS(2486), + [anon_sym_readonly] = 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), }, - [480] = { - [sym_import] = STATE(2301), - [sym_statement_block] = STATE(2224), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3060), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [457] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(2694), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2798), + [anon_sym_export] = ACTIONS(2486), + [anon_sym_type] = ACTIONS(2486), + [anon_sym_namespace] = ACTIONS(2488), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(2490), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(2486), + [anon_sym_readonly] = 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), }, - [481] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2422), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2950), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [458] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2540), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2495), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(2692), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -63533,560 +61392,748 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [482] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [459] = { + [sym_import] = STATE(2326), + [sym_statement_block] = STATE(2309), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2260), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(2716), + [anon_sym_typeof] = ACTIONS(864), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), + }, + [460] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4432), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5201), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2720), - [anon_sym_export] = ACTIONS(2722), - [anon_sym_type] = ACTIONS(2722), - [anon_sym_namespace] = ACTIONS(2724), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_DOT] = ACTIONS(2728), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2728), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2722), - [anon_sym_readonly] = ACTIONS(2722), - [anon_sym_get] = ACTIONS(2722), - [anon_sym_set] = ACTIONS(2722), - [anon_sym_declare] = ACTIONS(2722), - [anon_sym_public] = ACTIONS(2722), - [anon_sym_private] = ACTIONS(2722), - [anon_sym_protected] = ACTIONS(2722), - [anon_sym_module] = ACTIONS(2722), - [anon_sym_any] = ACTIONS(2722), - [anon_sym_number] = ACTIONS(2722), - [anon_sym_boolean] = ACTIONS(2722), - [anon_sym_string] = ACTIONS(2722), - [anon_sym_symbol] = ACTIONS(2722), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [483] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1451), - [sym_expression] = STATE(3528), - [sym_primary_expression] = STATE(2249), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1451), - [sym_subscript_expression] = STATE(1451), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [461] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1451), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2782), - [anon_sym_export] = ACTIONS(2450), - [anon_sym_type] = ACTIONS(2450), - [anon_sym_namespace] = ACTIONS(2452), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4529), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5346), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_DOT] = ACTIONS(2702), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(2454), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(2456), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(2702), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(2458), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2450), - [anon_sym_readonly] = ACTIONS(2450), - [anon_sym_get] = ACTIONS(2450), - [anon_sym_set] = ACTIONS(2450), - [anon_sym_declare] = ACTIONS(2450), - [anon_sym_public] = ACTIONS(2450), - [anon_sym_private] = ACTIONS(2450), - [anon_sym_protected] = ACTIONS(2450), - [anon_sym_module] = ACTIONS(2450), - [anon_sym_any] = ACTIONS(2450), - [anon_sym_number] = ACTIONS(2450), - [anon_sym_boolean] = ACTIONS(2450), - [anon_sym_string] = ACTIONS(2450), - [anon_sym_symbol] = ACTIONS(2450), + [anon_sym_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), }, - [484] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [462] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2804), - [anon_sym_export] = ACTIONS(2420), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_namespace] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2694), + [anon_sym_export] = ACTIONS(2696), + [anon_sym_type] = ACTIONS(2696), + [anon_sym_namespace] = ACTIONS(2698), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(2702), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_readonly] = 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_static] = ACTIONS(2696), + [anon_sym_readonly] = ACTIONS(2696), + [anon_sym_get] = ACTIONS(2696), + [anon_sym_set] = ACTIONS(2696), + [anon_sym_declare] = ACTIONS(2696), + [anon_sym_public] = ACTIONS(2696), + [anon_sym_private] = ACTIONS(2696), + [anon_sym_protected] = ACTIONS(2696), + [anon_sym_module] = ACTIONS(2696), + [anon_sym_any] = ACTIONS(2696), + [anon_sym_number] = ACTIONS(2696), + [anon_sym_boolean] = ACTIONS(2696), + [anon_sym_string] = ACTIONS(2696), + [anon_sym_symbol] = ACTIONS(2696), }, - [485] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [463] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4490), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5387), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2804), - [anon_sym_export] = ACTIONS(2420), - [anon_sym_type] = ACTIONS(2420), - [anon_sym_namespace] = ACTIONS(2422), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2424), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2420), - [anon_sym_readonly] = 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_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [486] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3509), - [sym_primary_expression] = STATE(2137), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [464] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2756), - [anon_sym_export] = ACTIONS(2758), - [anon_sym_type] = ACTIONS(2758), - [anon_sym_namespace] = ACTIONS(2760), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2796), + [anon_sym_export] = ACTIONS(2412), + [anon_sym_type] = ACTIONS(2412), + [anon_sym_namespace] = ACTIONS(2414), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_DOT] = ACTIONS(2726), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(2762), + [anon_sym_async] = ACTIONS(2416), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(2758), - [anon_sym_readonly] = ACTIONS(2758), - [anon_sym_get] = ACTIONS(2758), - [anon_sym_set] = ACTIONS(2758), - [anon_sym_declare] = ACTIONS(2758), - [anon_sym_public] = ACTIONS(2758), - [anon_sym_private] = ACTIONS(2758), - [anon_sym_protected] = ACTIONS(2758), - [anon_sym_module] = ACTIONS(2758), - [anon_sym_any] = ACTIONS(2758), - [anon_sym_number] = ACTIONS(2758), - [anon_sym_boolean] = ACTIONS(2758), - [anon_sym_string] = ACTIONS(2758), - [anon_sym_symbol] = ACTIONS(2758), + [anon_sym_static] = ACTIONS(2412), + [anon_sym_readonly] = 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), }, - [487] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2521), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3079), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [465] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2993), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2435), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [466] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2500), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2655), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [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(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -64097,90 +62144,184 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [488] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2504), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2961), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [467] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(3004), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2453), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [468] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2499), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2652), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -64191,90 +62332,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [489] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2518), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3078), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [469] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2494), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2171), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -64285,90 +62426,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [490] = { - [sym_import] = STATE(2576), - [sym_statement_block] = STATE(2504), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3075), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [470] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2499), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2276), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(2698), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -64379,182 +62520,278 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [491] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3286), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [471] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2494), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2651), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [492] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2267), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [472] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3329), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2684), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [473] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2500), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2247), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -64565,89 +62802,90 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [493] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2587), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [474] = { + [sym_import] = STATE(2403), + [sym_statement_block] = STATE(2540), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2823), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(2714), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -64658,554 +62896,1312 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [494] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3042), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [475] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2800), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_readonly] = 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), }, - [495] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3164), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [476] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1429), + [sym_expression] = STATE(3511), + [sym_primary_expression] = STATE(2200), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1429), + [sym_subscript_expression] = STATE(1429), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1429), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2788), + [anon_sym_export] = ACTIONS(2790), + [anon_sym_type] = ACTIONS(2790), + [anon_sym_namespace] = ACTIONS(2792), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1120), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_DOT] = ACTIONS(2710), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(2794), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(2464), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2806), + [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(1024), + [sym_undefined] = ACTIONS(2466), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(2790), + [anon_sym_readonly] = ACTIONS(2790), + [anon_sym_get] = ACTIONS(2790), + [anon_sym_set] = ACTIONS(2790), + [anon_sym_declare] = ACTIONS(2790), + [anon_sym_public] = ACTIONS(2790), + [anon_sym_private] = ACTIONS(2790), + [anon_sym_protected] = ACTIONS(2790), + [anon_sym_module] = ACTIONS(2790), + [anon_sym_any] = ACTIONS(2790), + [anon_sym_number] = ACTIONS(2790), + [anon_sym_boolean] = ACTIONS(2790), + [anon_sym_string] = ACTIONS(2790), + [anon_sym_symbol] = ACTIONS(2790), }, - [496] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2419), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [477] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2800), + [anon_sym_export] = ACTIONS(2420), + [anon_sym_type] = ACTIONS(2420), + [anon_sym_namespace] = ACTIONS(2422), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(2424), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(2420), + [anon_sym_readonly] = 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), }, - [497] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3022), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), + [478] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3281), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2681), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [479] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [498] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3354), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [480] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2985), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2473), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [481] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3325), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2672), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [482] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3397), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2669), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [483] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3375), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2670), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [484] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2802), + [anon_sym_export] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2562), + [anon_sym_namespace] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(2566), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(2562), + [anon_sym_readonly] = ACTIONS(2562), + [anon_sym_get] = ACTIONS(2562), + [anon_sym_set] = ACTIONS(2562), + [anon_sym_declare] = ACTIONS(2562), + [anon_sym_public] = ACTIONS(2562), + [anon_sym_private] = ACTIONS(2562), + [anon_sym_protected] = ACTIONS(2562), + [anon_sym_module] = ACTIONS(2562), + [anon_sym_any] = ACTIONS(2562), + [anon_sym_number] = ACTIONS(2562), + [anon_sym_boolean] = ACTIONS(2562), + [anon_sym_string] = ACTIONS(2562), + [anon_sym_symbol] = ACTIONS(2562), }, - [499] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2951), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [485] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2912), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2474), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [486] = { + [sym_import] = STATE(2944), + [sym_statement_block] = STATE(2980), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2475), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(2752), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [487] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1525), + [sym_expression] = STATE(3515), + [sym_primary_expression] = STATE(2549), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1525), + [sym_subscript_expression] = STATE(1525), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1525), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(2726), + [anon_sym_export] = ACTIONS(2582), + [anon_sym_type] = ACTIONS(2582), + [anon_sym_namespace] = ACTIONS(2584), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_DOT] = ACTIONS(2728), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(2586), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(2434), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(2436), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(2582), + [anon_sym_readonly] = ACTIONS(2582), + [anon_sym_get] = ACTIONS(2582), + [anon_sym_set] = ACTIONS(2582), + [anon_sym_declare] = ACTIONS(2582), + [anon_sym_public] = ACTIONS(2582), + [anon_sym_private] = ACTIONS(2582), + [anon_sym_protected] = ACTIONS(2582), + [anon_sym_module] = ACTIONS(2582), + [anon_sym_any] = ACTIONS(2582), + [anon_sym_number] = ACTIONS(2582), + [anon_sym_boolean] = ACTIONS(2582), + [anon_sym_string] = ACTIONS(2582), + [anon_sym_symbol] = ACTIONS(2582), + }, + [488] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2776), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_sequence_expression] = STATE(5235), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -65216,177 +64212,85 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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), - }, - [500] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(3005), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [501] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2434), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [489] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3120), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_sequence_expression] = STATE(5493), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -65396,7 +64300,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -65404,175 +64308,549 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [502] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3292), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [490] = { + [sym_import] = STATE(3427), + [sym_statement_block] = STATE(3404), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2668), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2754), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [491] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3522), + [sym_primary_expression] = STATE(2144), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4689), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5397), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2802), + [anon_sym_export] = ACTIONS(2562), + [anon_sym_type] = ACTIONS(2562), + [anon_sym_namespace] = ACTIONS(2564), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_DOT] = ACTIONS(2700), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(2566), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(2562), + [anon_sym_readonly] = ACTIONS(2562), + [anon_sym_get] = ACTIONS(2562), + [anon_sym_set] = ACTIONS(2562), + [anon_sym_declare] = ACTIONS(2562), + [anon_sym_public] = ACTIONS(2562), + [anon_sym_private] = ACTIONS(2562), + [anon_sym_protected] = ACTIONS(2562), + [anon_sym_module] = ACTIONS(2562), + [anon_sym_any] = ACTIONS(2562), + [anon_sym_number] = ACTIONS(2562), + [anon_sym_boolean] = ACTIONS(2562), + [anon_sym_string] = ACTIONS(2562), + [anon_sym_symbol] = ACTIONS(2562), }, - [503] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), + [492] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2996), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [493] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2955), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [494] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2666), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [495] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3190), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -65582,7 +64860,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -65590,180 +64868,459 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [504] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2737), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), + [496] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2584), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + }, + [497] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3337), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), + }, + [498] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3338), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), + }, + [499] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2715), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [505] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3034), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [500] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2585), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [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(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -65774,182 +65331,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [506] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(3003), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [501] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2664), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(2804), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), }, - [507] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3031), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [502] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2587), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [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(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -65960,84 +65517,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [508] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2426), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [503] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2254), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), + }, + [504] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3187), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -66047,7 +65697,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -66055,87 +65705,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [509] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3030), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [505] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3014), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -66146,275 +65796,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - }, - [510] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(3002), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [511] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3435), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [506] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2907), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, - [512] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3029), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [507] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3017), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -66425,89 +65982,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [513] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3028), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [508] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2622), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [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(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -66518,182 +66075,368 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [514] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3250), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [509] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2908), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [510] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2911), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [511] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2867), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [515] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3027), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [512] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2167), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -66704,182 +66447,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - }, - [516] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3257), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [517] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3023), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [513] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3042), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -66890,177 +66540,84 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - }, - [518] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2770), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [519] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2401), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [514] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3223), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2806), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -67070,7 +66627,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -67078,459 +66635,1017 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [520] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3159), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), + [515] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2490), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [516] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2671), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [517] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2362), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(37), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), [anon_sym_await] = ACTIONS(1000), [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [518] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2252), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), + [sym_number] = ACTIONS(2808), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1482), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + }, + [519] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(2810), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [520] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2673), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), }, [521] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3228), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3150), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, [522] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2293), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2674), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), }, [523] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2588), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3366), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, [524] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3037), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2675), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [525] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3065), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -67541,275 +67656,554 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [525] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3378), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [526] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2676), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), }, - [526] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2590), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [527] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2677), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(91), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), }, - [527] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3050), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [528] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2678), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [529] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2679), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [530] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2680), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [531] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2590), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [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(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -67820,1205 +68214,2879 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [528] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2876), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [532] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2682), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), }, - [529] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2538), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [533] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2709), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1498), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1060), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [530] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3203), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [534] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3381), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [531] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2655), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), + [535] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), + }, + [536] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2710), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [532] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3430), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [537] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2454), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [538] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2452), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [539] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2517), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [540] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2451), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [541] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2450), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [542] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2449), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [543] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2448), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [544] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2438), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [545] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2436), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [546] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2434), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [547] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3018), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + }, + [548] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2409), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [549] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2711), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [533] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3426), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [550] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2821), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + }, + [551] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3335), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1824), [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [534] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2706), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [552] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3075), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + }, + [553] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2544), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [554] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2543), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [555] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2539), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [556] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3095), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [535] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2198), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [557] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2472), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [536] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2705), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [558] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [537] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2703), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [559] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2470), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [538] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2500), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [560] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2683), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), }, - [539] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2747), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [561] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3379), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [540] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2947), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [562] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2564), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -69029,89 +71097,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [541] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2492), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [563] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2521), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -69122,182 +71190,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [542] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2957), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [564] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2812), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [543] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2458), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [565] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2497), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -69308,275 +71376,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [544] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3083), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [566] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2806), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [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(1024), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - }, - [545] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2701), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [546] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2946), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [567] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2822), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -69587,270 +71562,177 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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), - }, - [547] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2814), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [548] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2794), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [568] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3368), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [549] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2428), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [569] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(4766), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(4766), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(4766), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2816), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1738), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -69860,7 +71742,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -69868,366 +71750,180 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [550] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2781), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [551] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2789), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [552] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2882), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [570] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3271), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [553] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2943), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [571] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2239), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -70238,193 +71934,193 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [554] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2700), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [572] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2685), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [573] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2902), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), - }, - [555] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2941), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(742), [anon_sym_readonly] = ACTIONS(742), @@ -70441,165 +72137,72 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(742), [anon_sym_symbol] = ACTIONS(742), }, - [556] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2402), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [557] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2936), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [574] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3029), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -70610,257 +72213,350 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [558] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2693), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [575] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3272), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [559] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2498), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [576] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2686), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), }, - [560] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2607), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [577] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2661), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [578] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2591), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -70868,9 +72564,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -70891,459 +72587,366 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_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), - }, - [561] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3093), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), - [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(1024), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [562] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2689), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [579] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3081), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [563] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2558), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [580] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2621), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [564] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2769), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [581] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2335), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [565] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3098), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [582] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2593), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2818), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [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(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -71354,1670 +72957,1391 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [566] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2756), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), + [583] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2747), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [567] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3047), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [584] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2492), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [568] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2583), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [585] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3386), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [569] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2684), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), + [586] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2710), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [570] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3175), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [587] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2820), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [571] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3476), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [588] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3200), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [572] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2998), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [589] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3204), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1792), [anon_sym_PLUS] = ACTIONS(1790), [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [573] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2244), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(896), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [574] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2680), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [590] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3303), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [575] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3149), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [591] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2624), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), - }, - [576] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2448), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, - [577] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2670), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [592] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3124), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [578] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2930), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [593] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3205), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(792), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [579] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2543), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), + [594] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3206), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1060), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [580] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2329), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [595] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3211), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - }, - [581] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2460), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [582] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2926), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [596] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3212), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(792), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [583] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2924), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [597] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2593), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -73028,554 +74352,368 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [584] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), + [598] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3234), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1060), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [585] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2922), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [599] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3235), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(792), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [586] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3049), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [600] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3237), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - }, - [587] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2516), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [588] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2449), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [589] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2545), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [601] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2621), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(2818), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -73586,554 +74724,461 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [590] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2659), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), + [602] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2742), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [591] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3130), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [603] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3380), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), - }, - [592] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2918), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [593] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2629), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [604] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3232), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(91), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [594] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3058), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [605] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2753), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [595] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2615), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [606] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2572), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -74144,7 +75189,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -74161,253 +75206,160 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [596] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2912), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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), - }, - [597] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [607] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2580), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [598] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4761), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4761), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4761), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [608] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2810), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1762), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -74417,7 +75369,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2822), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -74425,645 +75377,1017 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [599] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3249), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [609] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2396), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [610] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2872), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [600] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2907), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [611] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2561), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), }, - [601] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3343), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [612] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2741), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [602] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3059), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [613] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2748), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [603] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3077), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [614] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2833), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + }, + [615] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2386), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [616] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2751), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [604] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3082), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [617] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2740), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [605] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3192), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [618] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1460), + [sym_expression] = STATE(2551), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5613), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5613), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5609), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1460), + [sym_subscript_expression] = STATE(1460), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3836), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5613), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1460), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(611), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1702), + [anon_sym_export] = ACTIONS(1214), + [anon_sym_type] = ACTIONS(1214), + [anon_sym_namespace] = ACTIONS(1216), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1238), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(1222), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1224), + [anon_sym_yield] = ACTIONS(1226), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1230), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1708), + [anon_sym_PLUS] = ACTIONS(1706), + [anon_sym_DASH] = ACTIONS(1706), + [anon_sym_TILDE] = ACTIONS(1222), + [anon_sym_void] = ACTIONS(1238), + [anon_sym_delete] = ACTIONS(1238), + [anon_sym_PLUS_PLUS] = ACTIONS(1240), + [anon_sym_DASH_DASH] = ACTIONS(1240), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1028), + [sym_number] = ACTIONS(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1248), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1214), + [anon_sym_readonly] = 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), + }, + [619] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2687), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [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(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -75074,554 +76398,554 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [606] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3344), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [620] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2737), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [607] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2938), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), + [621] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2832), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [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(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [608] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3085), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [622] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2736), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [609] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3086), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), + [623] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [610] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3243), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [624] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2595), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5003), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5003), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5003), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(2824), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [611] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3126), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [625] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2831), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -75632,182 +76956,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [612] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2848), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [626] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2367), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [613] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2820), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [627] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2464), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -75818,647 +77142,368 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [614] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3454), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [628] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2876), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [615] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2850), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [629] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2735), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), - }, - [616] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2804), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [617] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2763), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [618] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2862), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [630] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2877), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [619] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2582), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), + [631] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2461), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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), - }, - [620] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -76469,1309 +77514,844 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [621] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2766), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [632] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2363), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [622] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [633] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2878), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [623] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2825), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [634] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2422), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2806), + [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(792), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [624] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2761), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [635] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2585), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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_number] = ACTIONS(2808), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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), - }, - [625] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2767), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [626] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3345), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [627] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3240), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [636] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2879), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [628] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2663), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [637] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2880), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [629] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2544), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [638] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2419), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2806), + [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(1060), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - }, - [630] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2768), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [631] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2200), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - }, - [632] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2771), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [633] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3244), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [639] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2722), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [634] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2590), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [640] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2417), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2806), + [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(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -77788,723 +78368,723 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [635] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2656), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), + [641] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2416), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [636] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2662), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), + [642] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2415), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [637] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2826), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [643] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2811), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [638] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2787), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [644] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2414), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [639] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2345), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [645] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2413), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [640] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3090), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [646] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2410), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [641] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3035), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [647] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2881), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [642] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2857), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [648] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2562), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), [anon_sym_export] = ACTIONS(1068), [anon_sym_type] = ACTIONS(1068), [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -78515,7 +79095,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(1068), [anon_sym_readonly] = ACTIONS(1068), @@ -78532,909 +79112,909 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(1068), [anon_sym_symbol] = ACTIONS(1068), }, - [643] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3004), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [649] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3334), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [644] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2669), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), + [650] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2721), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [645] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2667), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [651] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1880), + [sym_expression] = STATE(2717), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5570), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5570), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5693), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1880), + [sym_subscript_expression] = STATE(1880), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3835), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5570), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1880), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(651), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1734), + [anon_sym_export] = ACTIONS(1486), + [anon_sym_type] = ACTIONS(1486), + [anon_sym_namespace] = ACTIONS(1488), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1506), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1492), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1494), + [anon_sym_yield] = ACTIONS(1496), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1498), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1744), + [anon_sym_PLUS] = ACTIONS(1740), + [anon_sym_DASH] = ACTIONS(1740), + [anon_sym_TILDE] = ACTIONS(1492), + [anon_sym_void] = ACTIONS(1506), + [anon_sym_delete] = ACTIONS(1506), + [anon_sym_PLUS_PLUS] = ACTIONS(1508), + [anon_sym_DASH_DASH] = ACTIONS(1508), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1510), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1486), + [anon_sym_readonly] = ACTIONS(1486), + [anon_sym_get] = ACTIONS(1486), + [anon_sym_set] = ACTIONS(1486), + [anon_sym_declare] = ACTIONS(1486), + [anon_sym_public] = ACTIONS(1486), + [anon_sym_private] = ACTIONS(1486), + [anon_sym_protected] = ACTIONS(1486), + [anon_sym_module] = ACTIONS(1486), + [anon_sym_any] = ACTIONS(1486), + [anon_sym_number] = ACTIONS(1486), + [anon_sym_boolean] = ACTIONS(1486), + [anon_sym_string] = ACTIONS(1486), + [anon_sym_symbol] = ACTIONS(1486), }, - [646] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3405), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [652] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2837), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [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(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [647] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2888), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [653] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2560), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [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(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [648] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2442), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [654] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3306), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [649] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2892), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [655] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2940), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, - [650] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [656] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3415), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2812), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [651] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2672), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [657] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2888), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [652] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2617), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [658] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2863), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -79445,1094 +80025,1838 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [653] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3248), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [659] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2665), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [660] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2890), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [654] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3107), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [661] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2893), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [655] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3218), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [662] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2664), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [663] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2866), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + }, + [664] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2057), + [sym_expression] = STATE(2663), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5786), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5786), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5793), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2057), + [sym_subscript_expression] = STATE(2057), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3838), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5786), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2057), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(576), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1754), + [anon_sym_export] = ACTIONS(1154), + [anon_sym_type] = ACTIONS(1154), + [anon_sym_namespace] = ACTIONS(1156), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1188), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1164), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1168), + [anon_sym_yield] = ACTIONS(1170), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1174), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1178), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1766), + [anon_sym_PLUS] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_TILDE] = ACTIONS(1164), + [anon_sym_void] = ACTIONS(1188), + [anon_sym_delete] = ACTIONS(1188), + [anon_sym_PLUS_PLUS] = ACTIONS(1190), + [anon_sym_DASH_DASH] = ACTIONS(1190), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1206), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1154), + [anon_sym_readonly] = ACTIONS(1154), + [anon_sym_get] = ACTIONS(1154), + [anon_sym_set] = ACTIONS(1154), + [anon_sym_declare] = ACTIONS(1154), + [anon_sym_public] = ACTIONS(1154), + [anon_sym_private] = ACTIONS(1154), + [anon_sym_protected] = ACTIONS(1154), + [anon_sym_module] = ACTIONS(1154), + [anon_sym_any] = ACTIONS(1154), + [anon_sym_number] = ACTIONS(1154), + [anon_sym_boolean] = ACTIONS(1154), + [anon_sym_string] = ACTIONS(1154), + [anon_sym_symbol] = ACTIONS(1154), + }, + [665] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2187), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [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(1482), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + }, + [666] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3312), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [656] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3462), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [667] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3033), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + }, + [668] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3315), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [657] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2984), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [669] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2786), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1732), [anon_sym_PLUS] = ACTIONS(1730), [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [658] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2183), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [670] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2894), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [659] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2894), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [671] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2897), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [660] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3340), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [672] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3317), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [661] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3493), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [673] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2898), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [662] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3492), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [674] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2793), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [663] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [675] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2789), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), + }, + [676] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2908), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(2804), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [677] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3425), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2814), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [664] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2618), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [678] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2609), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2816), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -80540,9 +81864,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -80563,2593 +81887,2779 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [665] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3485), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [679] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2826), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [666] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2187), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [680] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2389), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [681] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3318), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [667] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2196), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [682] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3483), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [668] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3470), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [683] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2562), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(85), + [sym_number] = ACTIONS(2808), + [sym_this] = ACTIONS(89), + [sym_super] = ACTIONS(89), + [sym_true] = ACTIONS(89), + [sym_false] = ACTIONS(89), + [sym_null] = ACTIONS(89), + [sym_undefined] = ACTIONS(1104), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), + }, + [684] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3319), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [669] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2673), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [685] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2620), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + }, + [686] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3320), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [670] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2745), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [687] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3322), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [671] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2664), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [688] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3358), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [672] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3291), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [689] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3327), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [673] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2451), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [690] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(2810), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [674] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2897), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [691] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3344), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [675] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2899), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [692] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3300), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [676] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2902), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [693] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3297), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [677] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2905), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [694] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2170), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [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(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [678] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2906), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [695] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2899), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [679] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2378), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [696] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2168), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [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(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [680] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2920), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [697] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2278), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [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(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [681] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3325), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [698] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2314), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [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(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [682] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3388), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [699] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3345), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [683] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2742), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [700] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3295), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [684] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2659), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [701] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2203), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [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(1482), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + }, + [702] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2909), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + }, + [703] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2323), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [685] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3463), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [704] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3428), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [686] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2189), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [705] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3294), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - }, - [687] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2373), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [688] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2379), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), + [706] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3351), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - }, - [689] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2028), - [sym_expression] = STATE(2658), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5610), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5610), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5461), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2028), - [sym_subscript_expression] = STATE(2028), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3835), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5610), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2028), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(539), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1734), - [anon_sym_export] = ACTIONS(1134), - [anon_sym_type] = ACTIONS(1134), - [anon_sym_namespace] = ACTIONS(1136), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1156), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1140), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1142), - [anon_sym_yield] = ACTIONS(1144), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1146), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1148), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1740), - [anon_sym_PLUS] = ACTIONS(1738), - [anon_sym_DASH] = ACTIONS(1738), - [anon_sym_TILDE] = ACTIONS(1140), - [anon_sym_void] = ACTIONS(1156), - [anon_sym_delete] = ACTIONS(1156), - [anon_sym_PLUS_PLUS] = ACTIONS(1158), - [anon_sym_DASH_DASH] = ACTIONS(1158), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1160), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1134), - [anon_sym_readonly] = ACTIONS(1134), - [anon_sym_get] = ACTIONS(1134), - [anon_sym_set] = ACTIONS(1134), - [anon_sym_declare] = ACTIONS(1134), - [anon_sym_public] = ACTIONS(1134), - [anon_sym_private] = ACTIONS(1134), - [anon_sym_protected] = ACTIONS(1134), - [anon_sym_module] = ACTIONS(1134), - [anon_sym_any] = ACTIONS(1134), - [anon_sym_number] = ACTIONS(1134), - [anon_sym_boolean] = ACTIONS(1134), - [anon_sym_string] = ACTIONS(1134), - [anon_sym_symbol] = ACTIONS(1134), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [690] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2381), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), + [707] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3370), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - }, - [691] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2981), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [692] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [708] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3223), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -83159,7 +84669,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2818), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -83167,906 +84677,627 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [693] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3219), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [709] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(3224), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [694] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2190), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [710] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2274), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [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(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [695] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3222), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [711] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2914), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), - }, - [696] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2447), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [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(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [697] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3464), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [712] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3475), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [698] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2197), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [713] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2915), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [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(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [699] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3219), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [714] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3376), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [700] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2527), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [715] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2618), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [701] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3461), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [702] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2653), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -84074,9 +85305,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -84097,180 +85328,87 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_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), - }, - [703] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3419), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [704] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2281), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [716] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3034), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -84281,461 +85419,275 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_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), - }, - [705] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3415), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [706] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3331), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [707] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [717] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2916), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [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(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [708] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3129), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [718] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3226), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [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(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [709] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2275), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [719] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2218), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -84746,1112 +85698,740 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [710] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3403), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [720] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2322), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [711] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3170), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [721] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3289), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), - }, - [712] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2413), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [713] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2661), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(91), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [714] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3389), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [722] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3391), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [715] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2741), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [723] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2193), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [716] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3387), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [724] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3393), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [717] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), + [725] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), [sym_expression] = STATE(3384), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [718] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2446), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [719] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2622), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(4991), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(4991), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(4991), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [726] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3284), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2820), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), - }, - [720] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [721] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2580), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [727] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2917), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -85862,1391 +86442,926 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_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), - }, - [722] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3212), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [723] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2417), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [728] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2182), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(1470), [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [724] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2613), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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), - }, - [725] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2379), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(2822), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [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(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [726] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3036), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [729] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(3002), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), - [anon_sym_function] = ACTIONS(570), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), [anon_sym_new] = ACTIONS(1816), [anon_sym_PLUS] = ACTIONS(1814), [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), - }, - [727] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2837), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), - }, - [728] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2191), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - }, - [729] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2980), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, [730] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3358), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2364), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, [731] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2979), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3278), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, [732] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2978), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(3007), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, [733] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2666), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(3010), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, [734] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3046), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2760), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, [735] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2929), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(3001), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, [736] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2303), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2999), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [737] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2244), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -87257,89 +87372,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [737] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2276), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [738] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2252), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -87350,89 +87465,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [738] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2284), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [739] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2253), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -87443,554 +87558,554 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_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), - }, - [739] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2765), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, [740] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3344), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(3008), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, [741] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2614), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2998), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), }, [742] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3423), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2354), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, [743] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2977), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2988), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [744] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2250), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [744] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2969), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [745] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2188), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -88001,350 +88116,71 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(792), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(742), - [anon_sym_readonly] = 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), - }, - [745] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2885), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, [746] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3318), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [747] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2740), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - }, - [748] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2617), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -88352,9 +88188,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -88375,362 +88211,1292 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [749] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2738), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [747] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2919), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [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(1586), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), + }, + [748] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2238), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), + [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(1482), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), + }, + [749] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2920), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, [750] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3422), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3035), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + }, + [751] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2968), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [752] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2616), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + }, + [753] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2378), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [754] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2956), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [755] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2623), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + }, + [756] = { + [sym_import] = STATE(3427), + [sym_parenthesized_expression] = STATE(2010), + [sym_expression] = STATE(2903), + [sym_primary_expression] = STATE(3423), + [sym_yield_expression] = STATE(3418), + [sym_object] = STATE(3427), + [sym_object_pattern] = STATE(5563), + [sym_array] = STATE(3427), + [sym_array_pattern] = STATE(5563), + [sym_class] = STATE(3427), + [sym_function] = STATE(3427), + [sym_generator_function] = STATE(3427), + [sym_arrow_function] = STATE(3427), + [sym__call_signature] = STATE(5564), + [sym_call_expression] = STATE(3427), + [sym_new_expression] = STATE(3418), + [sym_await_expression] = STATE(3418), + [sym_member_expression] = STATE(2010), + [sym_subscript_expression] = STATE(2010), + [sym_assignment_expression] = STATE(3418), + [sym__augmented_assignment_lhs] = STATE(3842), + [sym_augmented_assignment_expression] = STATE(3418), + [sym__destructuring_pattern] = STATE(5563), + [sym_ternary_expression] = STATE(3418), + [sym_binary_expression] = STATE(3418), + [sym_unary_expression] = STATE(3418), + [sym_update_expression] = STATE(3418), + [sym_string] = STATE(3427), + [sym_template_string] = STATE(3427), + [sym_regex] = STATE(3427), + [sym_meta_property] = STATE(3427), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2010), + [sym_type_assertion] = STATE(3418), + [sym_as_expression] = STATE(3418), + [sym_internal_module] = STATE(3418), + [sym_type_arguments] = STATE(493), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4834), + [sym_identifier] = ACTIONS(1810), + [anon_sym_export] = ACTIONS(1414), + [anon_sym_type] = ACTIONS(1414), + [anon_sym_namespace] = ACTIONS(1416), + [anon_sym_LBRACE] = ACTIONS(2378), + [anon_sym_typeof] = ACTIONS(1440), + [anon_sym_import] = ACTIONS(1162), + [anon_sym_BANG] = ACTIONS(1422), + [anon_sym_LPAREN] = ACTIONS(1762), + [anon_sym_await] = ACTIONS(1424), + [anon_sym_yield] = ACTIONS(1426), + [anon_sym_LBRACK] = ACTIONS(1764), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1430), + [anon_sym_class] = ACTIONS(1176), + [anon_sym_async] = ACTIONS(1432), + [anon_sym_function] = ACTIONS(1180), + [anon_sym_new] = ACTIONS(1816), + [anon_sym_PLUS] = ACTIONS(1814), + [anon_sym_DASH] = ACTIONS(1814), + [anon_sym_TILDE] = ACTIONS(1422), + [anon_sym_void] = ACTIONS(1440), + [anon_sym_delete] = ACTIONS(1440), + [anon_sym_PLUS_PLUS] = ACTIONS(1442), + [anon_sym_DASH_DASH] = ACTIONS(1442), + [anon_sym_DQUOTE] = ACTIONS(1192), + [anon_sym_SQUOTE] = ACTIONS(1194), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1196), + [sym_number] = ACTIONS(1768), + [sym_this] = ACTIONS(1202), + [sym_super] = ACTIONS(1202), + [sym_true] = ACTIONS(1202), + [sym_false] = ACTIONS(1202), + [sym_null] = ACTIONS(1202), + [sym_undefined] = ACTIONS(1450), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1414), + [anon_sym_readonly] = ACTIONS(1414), + [anon_sym_get] = ACTIONS(1414), + [anon_sym_set] = ACTIONS(1414), + [anon_sym_declare] = ACTIONS(1414), + [anon_sym_public] = ACTIONS(1414), + [anon_sym_private] = ACTIONS(1414), + [anon_sym_protected] = ACTIONS(1414), + [anon_sym_module] = ACTIONS(1414), + [anon_sym_any] = ACTIONS(1414), + [anon_sym_number] = ACTIONS(1414), + [anon_sym_boolean] = ACTIONS(1414), + [anon_sym_string] = ACTIONS(1414), + [anon_sym_symbol] = ACTIONS(1414), + }, + [757] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2615), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + }, + [758] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3273), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1824), [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [751] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2297), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [759] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2790), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [752] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2192), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [760] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2699), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), [anon_sym_void] = ACTIONS(930), [anon_sym_delete] = ACTIONS(930), [anon_sym_PLUS_PLUS] = ACTIONS(932), @@ -88739,277 +89505,370 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [753] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2736), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [761] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2730), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [754] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3436), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [762] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2614), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [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(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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(91), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), + }, + [763] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2729), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [755] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2193), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [764] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2726), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), [anon_sym_void] = ACTIONS(930), [anon_sym_delete] = ACTIONS(930), [anon_sym_PLUS_PLUS] = ACTIONS(932), @@ -89018,277 +89877,277 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [756] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2886), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [765] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3410), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [757] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2730), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [766] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2725), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [758] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2194), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [767] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2724), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), [anon_sym_void] = ACTIONS(930), [anon_sym_delete] = ACTIONS(930), [anon_sym_PLUS_PLUS] = ACTIONS(932), @@ -89297,463 +90156,370 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [759] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3136), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [768] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2723), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [760] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2973), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [769] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2719), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [761] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3456), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [770] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2718), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [762] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2720), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [763] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2293), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [771] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2716), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), [anon_sym_void] = ACTIONS(930), [anon_sym_delete] = ACTIONS(930), [anon_sym_PLUS_PLUS] = ACTIONS(932), @@ -89762,839 +90528,560 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [764] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2765), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [772] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2698), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [765] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2610), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [773] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2714), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - }, - [766] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2674), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [767] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2445), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [774] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2712), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [768] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2675), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [769] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2611), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [775] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2696), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - }, - [770] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2367), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [771] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2530), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [776] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2708), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [772] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2652), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [777] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3241), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(2816), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -90605,647 +91092,368 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(91), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [773] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2435), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [778] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2697), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(922), + [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [774] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2490), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1060), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - }, - [775] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2433), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [776] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [779] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2696), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), - }, - [777] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2366), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [778] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2933), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [780] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2703), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [779] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3174), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [781] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2210), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -91256,182 +91464,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [780] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3409), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [782] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2379), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [781] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3164), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [783] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2044), + [sym_expression] = STATE(2479), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5805), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5805), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5797), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2044), + [sym_subscript_expression] = STATE(2044), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3839), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5805), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2044), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(563), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1610), + [anon_sym_export] = ACTIONS(1068), + [anon_sym_type] = ACTIONS(1068), + [anon_sym_namespace] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1614), + [anon_sym_typeof] = ACTIONS(1094), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1076), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), - [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_await] = ACTIONS(1078), + [anon_sym_yield] = ACTIONS(1080), + [anon_sym_LBRACK] = ACTIONS(1618), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1086), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1620), + [anon_sym_PLUS] = ACTIONS(1616), + [anon_sym_DASH] = ACTIONS(1616), + [anon_sym_TILDE] = ACTIONS(1076), + [anon_sym_void] = ACTIONS(1094), + [anon_sym_delete] = ACTIONS(1094), + [anon_sym_PLUS_PLUS] = ACTIONS(1096), + [anon_sym_DASH_DASH] = ACTIONS(1096), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -91442,89 +91650,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), + [sym_undefined] = ACTIONS(1104), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), + [anon_sym_static] = ACTIONS(1068), + [anon_sym_readonly] = ACTIONS(1068), + [anon_sym_get] = ACTIONS(1068), + [anon_sym_set] = ACTIONS(1068), + [anon_sym_declare] = ACTIONS(1068), + [anon_sym_public] = ACTIONS(1068), + [anon_sym_private] = ACTIONS(1068), + [anon_sym_protected] = ACTIONS(1068), + [anon_sym_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), }, - [782] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2486), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [784] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3247), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -91535,461 +91743,182 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [783] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2285), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [785] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2197), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), - }, - [784] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(2959), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [785] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2364), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, [786] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2994), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3242), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), - }, - [787] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2037), - [sym_expression] = STATE(3161), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5746), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5746), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5747), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2037), - [sym_subscript_expression] = STATE(2037), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3837), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5746), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2037), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(565), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1778), - [anon_sym_export] = ACTIONS(990), - [anon_sym_type] = ACTIONS(990), - [anon_sym_namespace] = ACTIONS(992), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(1014), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(998), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1000), - [anon_sym_yield] = ACTIONS(1002), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1006), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1784), - [anon_sym_PLUS] = ACTIONS(1782), - [anon_sym_DASH] = ACTIONS(1782), - [anon_sym_TILDE] = ACTIONS(998), - [anon_sym_void] = ACTIONS(1014), - [anon_sym_delete] = ACTIONS(1014), - [anon_sym_PLUS_PLUS] = ACTIONS(1016), - [anon_sym_DASH_DASH] = ACTIONS(1016), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -92000,1867 +91929,1309 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1024), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(990), - [anon_sym_readonly] = ACTIONS(990), - [anon_sym_get] = ACTIONS(990), - [anon_sym_set] = ACTIONS(990), - [anon_sym_declare] = ACTIONS(990), - [anon_sym_public] = ACTIONS(990), - [anon_sym_private] = ACTIONS(990), - [anon_sym_protected] = ACTIONS(990), - [anon_sym_module] = ACTIONS(990), - [anon_sym_any] = ACTIONS(990), - [anon_sym_number] = ACTIONS(990), - [anon_sym_boolean] = ACTIONS(990), - [anon_sym_string] = ACTIONS(990), - [anon_sym_symbol] = ACTIONS(990), - }, - [788] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2360), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [789] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3112), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), + [787] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2519), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [790] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3410), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [788] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3432), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1832), [anon_sym_PLUS] = ACTIONS(1830), [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [791] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2280), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [789] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3388), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [792] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2599), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [790] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2322), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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), - }, - [793] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2618), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(91), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [794] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3374), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [791] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3180), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [795] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2727), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [792] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2376), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - }, - [796] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2355), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - }, - [797] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2679), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [798] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2539), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [793] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3179), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [799] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3474), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [794] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2078), + [sym_expression] = STATE(2693), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5592), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5592), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5785), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2078), + [sym_subscript_expression] = STATE(2078), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3829), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5592), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2078), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(760), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1714), + [anon_sym_export] = ACTIONS(906), + [anon_sym_type] = ACTIONS(906), + [anon_sym_namespace] = ACTIONS(908), + [anon_sym_LBRACE] = ACTIONS(1718), + [anon_sym_typeof] = ACTIONS(930), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(914), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(916), + [anon_sym_yield] = ACTIONS(918), + [anon_sym_LBRACK] = ACTIONS(1722), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(922), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1724), + [anon_sym_PLUS] = ACTIONS(1720), + [anon_sym_DASH] = ACTIONS(1720), + [anon_sym_TILDE] = ACTIONS(914), + [anon_sym_void] = ACTIONS(930), + [anon_sym_delete] = ACTIONS(930), + [anon_sym_PLUS_PLUS] = ACTIONS(932), + [anon_sym_DASH_DASH] = ACTIONS(932), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(934), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(906), + [anon_sym_readonly] = ACTIONS(906), + [anon_sym_get] = ACTIONS(906), + [anon_sym_set] = ACTIONS(906), + [anon_sym_declare] = ACTIONS(906), + [anon_sym_public] = ACTIONS(906), + [anon_sym_private] = ACTIONS(906), + [anon_sym_protected] = ACTIONS(906), + [anon_sym_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), }, - [800] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2552), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [795] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3178), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [801] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2561), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [796] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2208), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [802] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2563), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [797] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2333), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [803] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2960), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [798] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2905), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1732), [anon_sym_PLUS] = ACTIONS(1730), [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), - }, - [804] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2564), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [805] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3310), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [799] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2902), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [806] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3316), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), + [800] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2847), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), - }, - [807] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2049), - [sym_expression] = STATE(2808), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5534), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5534), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5532), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2049), - [sym_subscript_expression] = STATE(2049), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3849), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5534), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2049), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(600), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1770), - [anon_sym_export] = ACTIONS(742), - [anon_sym_type] = ACTIONS(742), - [anon_sym_namespace] = ACTIONS(744), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(782), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(752), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(756), - [anon_sym_yield] = ACTIONS(758), - [anon_sym_LBRACK] = ACTIONS(63), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(766), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1776), - [anon_sym_PLUS] = ACTIONS(1774), - [anon_sym_DASH] = ACTIONS(1774), - [anon_sym_TILDE] = ACTIONS(752), - [anon_sym_void] = ACTIONS(782), - [anon_sym_delete] = ACTIONS(782), - [anon_sym_PLUS_PLUS] = ACTIONS(784), - [anon_sym_DASH_DASH] = ACTIONS(784), - [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(792), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), [anon_sym_static] = ACTIONS(742), [anon_sym_readonly] = ACTIONS(742), @@ -93877,537 +93248,630 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_string] = ACTIONS(742), [anon_sym_symbol] = ACTIONS(742), }, - [808] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2682), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [809] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3315), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [801] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2807), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(958), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(960), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [810] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3313), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [802] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2375), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [803] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2374), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [804] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3177), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [811] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2431), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [805] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2373), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [812] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2598), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [806] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3296), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [813] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2259), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [807] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1451), + [sym_expression] = STATE(2201), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5500), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5500), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5498), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1451), + [sym_subscript_expression] = STATE(1451), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3846), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5500), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1451), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(807), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1456), + [anon_sym_export] = ACTIONS(1458), + [anon_sym_type] = ACTIONS(1458), + [anon_sym_namespace] = ACTIONS(1462), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1466), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1478), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(1470), + [anon_sym_yield] = ACTIONS(1472), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1474), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1476), + [anon_sym_PLUS] = ACTIONS(1468), + [anon_sym_DASH] = ACTIONS(1468), + [anon_sym_TILDE] = ACTIONS(1478), + [anon_sym_void] = ACTIONS(1466), + [anon_sym_delete] = ACTIONS(1466), + [anon_sym_PLUS_PLUS] = ACTIONS(1480), + [anon_sym_DASH_DASH] = ACTIONS(1480), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -94418,461 +93882,275 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(1482), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1458), + [anon_sym_readonly] = ACTIONS(1458), + [anon_sym_get] = ACTIONS(1458), + [anon_sym_set] = ACTIONS(1458), + [anon_sym_declare] = ACTIONS(1458), + [anon_sym_public] = ACTIONS(1458), + [anon_sym_private] = ACTIONS(1458), + [anon_sym_protected] = ACTIONS(1458), + [anon_sym_module] = ACTIONS(1458), + [anon_sym_any] = ACTIONS(1458), + [anon_sym_number] = ACTIONS(1458), + [anon_sym_boolean] = ACTIONS(1458), + [anon_sym_string] = ACTIONS(1458), + [anon_sym_symbol] = ACTIONS(1458), }, - [814] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2354), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), - }, - [815] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2059), - [sym_expression] = STATE(3003), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5764), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5764), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5763), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2059), - [sym_subscript_expression] = STATE(2059), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3829), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5764), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [808] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2836), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2059), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), [sym_type_arguments] = STATE(550), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1786), - [anon_sym_export] = ACTIONS(1324), - [anon_sym_type] = ACTIONS(1324), - [anon_sym_namespace] = ACTIONS(1326), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1358), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1334), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1338), - [anon_sym_yield] = ACTIONS(1340), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1344), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1348), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1792), - [anon_sym_PLUS] = ACTIONS(1790), - [anon_sym_DASH] = ACTIONS(1790), - [anon_sym_TILDE] = ACTIONS(1334), - [anon_sym_void] = ACTIONS(1358), - [anon_sym_delete] = ACTIONS(1358), - [anon_sym_PLUS_PLUS] = ACTIONS(1360), - [anon_sym_DASH_DASH] = ACTIONS(1360), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(2824), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1376), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1324), - [anon_sym_readonly] = ACTIONS(1324), - [anon_sym_get] = ACTIONS(1324), - [anon_sym_set] = ACTIONS(1324), - [anon_sym_declare] = ACTIONS(1324), - [anon_sym_public] = ACTIONS(1324), - [anon_sym_private] = ACTIONS(1324), - [anon_sym_protected] = ACTIONS(1324), - [anon_sym_module] = ACTIONS(1324), - [anon_sym_any] = ACTIONS(1324), - [anon_sym_number] = ACTIONS(1324), - [anon_sym_boolean] = ACTIONS(1324), - [anon_sym_string] = ACTIONS(1324), - [anon_sym_symbol] = ACTIONS(1324), - }, - [816] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2686), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), + [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(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [817] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2350), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [809] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3167), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [818] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2251), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [810] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2925), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -94883,926 +94161,833 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [819] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3452), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [811] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3165), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [820] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [812] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3157), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - }, - [821] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2344), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [822] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2565), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [813] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3011), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [823] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2955), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [814] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3151), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1800), [anon_sym_PLUS] = ACTIONS(1798), [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [824] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2248), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [815] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3140), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(896), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [825] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2714), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [816] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3137), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [826] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2245), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [817] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3136), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1394), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(896), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [827] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3258), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [818] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3133), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [828] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2241), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [819] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3131), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -95813,89 +94998,89 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [829] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2240), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [820] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2605), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -95906,554 +95091,368 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [830] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2232), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [821] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2806), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(896), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [831] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2227), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [822] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2055), + [sym_expression] = STATE(2795), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5472), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5472), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5532), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2055), + [sym_subscript_expression] = STATE(2055), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3849), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5472), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2055), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(673), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1778), + [anon_sym_export] = ACTIONS(942), + [anon_sym_type] = ACTIONS(942), + [anon_sym_namespace] = ACTIONS(944), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(968), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(952), + [anon_sym_yield] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(958), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(960), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1784), + [anon_sym_PLUS] = ACTIONS(1782), + [anon_sym_DASH] = ACTIONS(1782), + [anon_sym_TILDE] = ACTIONS(950), + [anon_sym_void] = ACTIONS(968), + [anon_sym_delete] = ACTIONS(968), + [anon_sym_PLUS_PLUS] = ACTIONS(970), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_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), - }, - [832] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2688), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [833] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2690), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(978), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(942), + [anon_sym_readonly] = ACTIONS(942), + [anon_sym_get] = ACTIONS(942), + [anon_sym_set] = ACTIONS(942), + [anon_sym_declare] = ACTIONS(942), + [anon_sym_public] = ACTIONS(942), + [anon_sym_private] = ACTIONS(942), + [anon_sym_protected] = ACTIONS(942), + [anon_sym_module] = ACTIONS(942), + [anon_sym_any] = ACTIONS(942), + [anon_sym_number] = ACTIONS(942), + [anon_sym_boolean] = ACTIONS(942), + [anon_sym_string] = ACTIONS(942), + [anon_sym_symbol] = ACTIONS(942), }, - [834] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2932), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [823] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2796), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [835] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2219), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [824] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2612), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(19), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(39), + [anon_sym_yield] = ACTIONS(61), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), + [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), @@ -96464,363 +95463,270 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_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), - }, - [836] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2691), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [837] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2214), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [825] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2371), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [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(896), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [838] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2933), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [826] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2370), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1800), - [anon_sym_PLUS] = ACTIONS(1798), - [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), }, - [839] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2566), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [827] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2471), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -96830,7 +95736,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -96838,2686 +95744,2035 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [840] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2494), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), + [828] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3175), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - }, - [841] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2593), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [842] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2726), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [829] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3081), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - }, - [843] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2692), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [844] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2702), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [845] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2704), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [846] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2018), - [sym_expression] = STATE(2935), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5462), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5462), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5553), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2018), - [sym_subscript_expression] = STATE(2018), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3843), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5462), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [830] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3148), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2018), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(612), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1794), - [anon_sym_export] = ACTIONS(1426), - [anon_sym_type] = ACTIONS(1426), - [anon_sym_namespace] = ACTIONS(1428), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1448), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1432), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1434), - [anon_sym_yield] = ACTIONS(1436), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1438), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1440), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1800), [anon_sym_PLUS] = ACTIONS(1798), [anon_sym_DASH] = ACTIONS(1798), - [anon_sym_TILDE] = ACTIONS(1432), - [anon_sym_void] = ACTIONS(1448), - [anon_sym_delete] = ACTIONS(1448), - [anon_sym_PLUS_PLUS] = ACTIONS(1450), - [anon_sym_DASH_DASH] = ACTIONS(1450), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1452), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1426), - [anon_sym_readonly] = ACTIONS(1426), - [anon_sym_get] = ACTIONS(1426), - [anon_sym_set] = ACTIONS(1426), - [anon_sym_declare] = ACTIONS(1426), - [anon_sym_public] = ACTIONS(1426), - [anon_sym_private] = ACTIONS(1426), - [anon_sym_protected] = ACTIONS(1426), - [anon_sym_module] = ACTIONS(1426), - [anon_sym_any] = ACTIONS(1426), - [anon_sym_number] = ACTIONS(1426), - [anon_sym_boolean] = ACTIONS(1426), - [anon_sym_string] = ACTIONS(1426), - [anon_sym_symbol] = ACTIONS(1426), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [847] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2597), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [831] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3079), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1306), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, - [848] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3391), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), + [832] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2797), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), + }, + [833] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3271), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1824), [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(2814), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), - }, - [849] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2707), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), }, - [850] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2610), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [834] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3130), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2808), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), - }, - [851] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2352), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [852] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2358), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [835] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3036), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [853] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3287), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [836] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2938), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [854] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3309), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [837] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2325), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), - }, - [855] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2384), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [856] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3255), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [838] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2315), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [857] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2501), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [839] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2343), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(586), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [840] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2348), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [841] = { + [sym_import] = STATE(2944), + [sym_parenthesized_expression] = STATE(1472), + [sym_expression] = STATE(2351), + [sym_primary_expression] = STATE(2945), + [sym_yield_expression] = STATE(2947), + [sym_object] = STATE(2944), + [sym_object_pattern] = STATE(5706), + [sym_array] = STATE(2944), + [sym_array_pattern] = STATE(5706), + [sym_class] = STATE(2944), + [sym_function] = STATE(2944), + [sym_generator_function] = STATE(2944), + [sym_arrow_function] = STATE(2944), + [sym__call_signature] = STATE(5683), + [sym_call_expression] = STATE(2944), + [sym_new_expression] = STATE(2947), + [sym_await_expression] = STATE(2947), + [sym_member_expression] = STATE(1472), + [sym_subscript_expression] = STATE(1472), + [sym_assignment_expression] = STATE(2947), + [sym__augmented_assignment_lhs] = STATE(3837), + [sym_augmented_assignment_expression] = STATE(2947), + [sym__destructuring_pattern] = STATE(5706), + [sym_ternary_expression] = STATE(2947), + [sym_binary_expression] = STATE(2947), + [sym_unary_expression] = STATE(2947), + [sym_update_expression] = STATE(2947), + [sym_string] = STATE(2944), + [sym_template_string] = STATE(2944), + [sym_regex] = STATE(2944), + [sym_meta_property] = STATE(2944), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1472), + [sym_type_assertion] = STATE(2947), + [sym_as_expression] = STATE(2947), + [sym_internal_module] = STATE(2947), + [sym_type_arguments] = STATE(626), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4752), + [sym_identifier] = ACTIONS(1630), + [anon_sym_export] = ACTIONS(986), + [anon_sym_type] = ACTIONS(986), + [anon_sym_namespace] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(1634), + [anon_sym_typeof] = ACTIONS(1020), + [anon_sym_import] = ACTIONS(994), + [anon_sym_BANG] = ACTIONS(996), + [anon_sym_LPAREN] = ACTIONS(1638), + [anon_sym_await] = ACTIONS(1000), + [anon_sym_yield] = ACTIONS(1002), + [anon_sym_LBRACK] = ACTIONS(1640), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1006), + [anon_sym_class] = ACTIONS(1008), + [anon_sym_async] = ACTIONS(1010), + [anon_sym_function] = ACTIONS(1012), + [anon_sym_new] = ACTIONS(1642), + [anon_sym_PLUS] = ACTIONS(1636), + [anon_sym_DASH] = ACTIONS(1636), + [anon_sym_TILDE] = ACTIONS(996), + [anon_sym_void] = ACTIONS(1020), + [anon_sym_delete] = ACTIONS(1020), + [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(1644), + [sym_this] = ACTIONS(1034), + [sym_super] = ACTIONS(1034), + [sym_true] = ACTIONS(1034), + [sym_false] = ACTIONS(1034), + [sym_null] = ACTIONS(1034), + [sym_undefined] = ACTIONS(1038), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(986), + [anon_sym_readonly] = ACTIONS(986), + [anon_sym_get] = ACTIONS(986), + [anon_sym_set] = ACTIONS(986), + [anon_sym_declare] = ACTIONS(986), + [anon_sym_public] = ACTIONS(986), + [anon_sym_private] = ACTIONS(986), + [anon_sym_protected] = ACTIONS(986), + [anon_sym_module] = ACTIONS(986), + [anon_sym_any] = ACTIONS(986), + [anon_sym_number] = ACTIONS(986), + [anon_sym_boolean] = ACTIONS(986), + [anon_sym_string] = ACTIONS(986), + [anon_sym_symbol] = ACTIONS(986), + }, + [842] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2281), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(556), - [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), - [anon_sym_TILDE] = ACTIONS(552), - [anon_sym_void] = ACTIONS(586), - [anon_sym_delete] = ACTIONS(586), - [anon_sym_PLUS_PLUS] = ACTIONS(588), - [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(604), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [858] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2651), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [843] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2900), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_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), - }, - [859] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2709), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [860] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3088), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [844] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2280), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - }, - [861] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2718), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), - }, - [862] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2717), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [863] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3118), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [845] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2275), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), - }, - [864] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2716), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [865] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2660), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [846] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3144), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [866] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3232), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [847] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3148), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [867] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2725), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [848] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2272), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(856), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [868] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2427), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [849] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2463), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -99527,7 +97782,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(2826), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -99535,454 +97790,454 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [869] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2649), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [850] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2444), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(91), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [870] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2647), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [851] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2443), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(91), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [871] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2646), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [852] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2442), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(91), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [872] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2357), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [853] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2910), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [873] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(3128), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [854] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2439), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(2828), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -99992,7 +98247,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -100000,1185 +98255,720 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [874] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2657), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [855] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2486), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(91), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [875] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2085), - [sym_expression] = STATE(2723), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5582), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5582), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5623), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2085), - [sym_subscript_expression] = STATE(2085), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3841), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5582), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [856] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2432), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2085), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(628), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1702), - [anon_sym_export] = ACTIONS(1098), - [anon_sym_type] = ACTIONS(1098), - [anon_sym_namespace] = ACTIONS(1100), - [anon_sym_LBRACE] = ACTIONS(1706), - [anon_sym_typeof] = ACTIONS(1122), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1106), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1108), - [anon_sym_yield] = ACTIONS(1110), - [anon_sym_LBRACK] = ACTIONS(1710), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1114), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1712), - [anon_sym_PLUS] = ACTIONS(1708), - [anon_sym_DASH] = ACTIONS(1708), - [anon_sym_TILDE] = ACTIONS(1106), - [anon_sym_void] = ACTIONS(1122), - [anon_sym_delete] = ACTIONS(1122), - [anon_sym_PLUS_PLUS] = ACTIONS(1124), - [anon_sym_DASH_DASH] = ACTIONS(1124), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1126), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1098), - [anon_sym_readonly] = ACTIONS(1098), - [anon_sym_get] = ACTIONS(1098), - [anon_sym_set] = ACTIONS(1098), - [anon_sym_declare] = ACTIONS(1098), - [anon_sym_public] = ACTIONS(1098), - [anon_sym_private] = ACTIONS(1098), - [anon_sym_protected] = ACTIONS(1098), - [anon_sym_module] = ACTIONS(1098), - [anon_sym_any] = ACTIONS(1098), - [anon_sym_number] = ACTIONS(1098), - [anon_sym_boolean] = ACTIONS(1098), - [anon_sym_string] = ACTIONS(1098), - [anon_sym_symbol] = ACTIONS(1098), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [876] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3122), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), + [857] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2428), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [877] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2643), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [858] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3247), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(29), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(39), - [anon_sym_yield] = ACTIONS(61), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(67), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(91), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_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), - }, - [878] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2475), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - }, - [879] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2485), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), + [sym_number] = ACTIONS(2808), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), - }, - [880] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2681), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), - [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), - [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), - [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), - [sym_this] = ACTIONS(600), - [sym_super] = ACTIONS(600), - [sym_true] = ACTIONS(600), - [sym_false] = ACTIONS(600), - [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, - [881] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3355), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [859] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2424), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [882] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1341), - [sym_expression] = STATE(3294), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5519), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5519), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5518), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1341), - [sym_subscript_expression] = STATE(1341), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3832), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5519), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [860] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2082), + [sym_expression] = STATE(3112), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5608), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5608), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5834), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2082), + [sym_subscript_expression] = STATE(2082), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3840), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5608), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1341), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(661), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1826), - [anon_sym_export] = ACTIONS(1384), - [anon_sym_type] = ACTIONS(1384), - [anon_sym_namespace] = ACTIONS(1386), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1408), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2082), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(791), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1794), + [anon_sym_export] = ACTIONS(1380), + [anon_sym_type] = ACTIONS(1380), + [anon_sym_namespace] = ACTIONS(1382), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1402), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1392), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1394), - [anon_sym_yield] = ACTIONS(1396), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1388), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1390), + [anon_sym_yield] = ACTIONS(1392), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1400), + [anon_sym_async] = ACTIONS(1394), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1832), - [anon_sym_PLUS] = ACTIONS(1830), - [anon_sym_DASH] = ACTIONS(1830), - [anon_sym_TILDE] = ACTIONS(1392), - [anon_sym_void] = ACTIONS(1408), - [anon_sym_delete] = ACTIONS(1408), - [anon_sym_PLUS_PLUS] = ACTIONS(1410), - [anon_sym_DASH_DASH] = ACTIONS(1410), + [anon_sym_new] = ACTIONS(1800), + [anon_sym_PLUS] = ACTIONS(1798), + [anon_sym_DASH] = ACTIONS(1798), + [anon_sym_TILDE] = ACTIONS(1388), + [anon_sym_void] = ACTIONS(1402), + [anon_sym_delete] = ACTIONS(1402), + [anon_sym_PLUS_PLUS] = ACTIONS(1404), + [anon_sym_DASH_DASH] = ACTIONS(1404), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1418), + [sym_undefined] = ACTIONS(1406), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1384), - [anon_sym_readonly] = ACTIONS(1384), - [anon_sym_get] = ACTIONS(1384), - [anon_sym_set] = ACTIONS(1384), - [anon_sym_declare] = ACTIONS(1384), - [anon_sym_public] = ACTIONS(1384), - [anon_sym_private] = ACTIONS(1384), - [anon_sym_protected] = ACTIONS(1384), - [anon_sym_module] = ACTIONS(1384), - [anon_sym_any] = ACTIONS(1384), - [anon_sym_number] = ACTIONS(1384), - [anon_sym_boolean] = ACTIONS(1384), - [anon_sym_string] = ACTIONS(1384), - [anon_sym_symbol] = ACTIONS(1384), + [anon_sym_static] = ACTIONS(1380), + [anon_sym_readonly] = ACTIONS(1380), + [anon_sym_get] = ACTIONS(1380), + [anon_sym_set] = ACTIONS(1380), + [anon_sym_declare] = ACTIONS(1380), + [anon_sym_public] = ACTIONS(1380), + [anon_sym_private] = ACTIONS(1380), + [anon_sym_protected] = ACTIONS(1380), + [anon_sym_module] = ACTIONS(1380), + [anon_sym_any] = ACTIONS(1380), + [anon_sym_number] = ACTIONS(1380), + [anon_sym_boolean] = ACTIONS(1380), + [anon_sym_string] = ACTIONS(1380), + [anon_sym_symbol] = ACTIONS(1380), }, - [883] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2612), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [861] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2391), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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), - }, - [884] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2487), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), - }, - [885] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2642), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), - [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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), - [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(91), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [886] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2641), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [862] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2607), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -101186,9 +98976,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -101209,348 +98999,255 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [887] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2276), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [863] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2261), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), - [anon_sym_LBRACK] = ACTIONS(63), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(2806), - [sym_this] = ACTIONS(89), - [sym_super] = ACTIONS(89), - [sym_true] = ACTIONS(89), - [sym_false] = ACTIONS(89), - [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_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), - }, - [888] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2415), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(2822), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [889] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2084), - [sym_expression] = STATE(2967), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5594), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5594), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5577), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2084), - [sym_subscript_expression] = STATE(2084), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3847), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5594), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [864] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2420), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2084), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(552), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1726), - [anon_sym_export] = ACTIONS(1580), - [anon_sym_type] = ACTIONS(1580), - [anon_sym_namespace] = ACTIONS(1582), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1600), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1586), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1588), - [anon_sym_yield] = ACTIONS(1590), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1592), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1732), - [anon_sym_PLUS] = ACTIONS(1730), - [anon_sym_DASH] = ACTIONS(1730), - [anon_sym_TILDE] = ACTIONS(1586), - [anon_sym_void] = ACTIONS(1600), - [anon_sym_delete] = ACTIONS(1600), - [anon_sym_PLUS_PLUS] = ACTIONS(1602), - [anon_sym_DASH_DASH] = ACTIONS(1602), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1604), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1580), - [anon_sym_readonly] = ACTIONS(1580), - [anon_sym_get] = ACTIONS(1580), - [anon_sym_set] = ACTIONS(1580), - [anon_sym_declare] = ACTIONS(1580), - [anon_sym_public] = ACTIONS(1580), - [anon_sym_private] = ACTIONS(1580), - [anon_sym_protected] = ACTIONS(1580), - [anon_sym_module] = ACTIONS(1580), - [anon_sym_any] = ACTIONS(1580), - [anon_sym_number] = ACTIONS(1580), - [anon_sym_boolean] = ACTIONS(1580), - [anon_sym_string] = ACTIONS(1580), - [anon_sym_symbol] = ACTIONS(1580), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [890] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2637), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [865] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2843), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -101558,9 +99255,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -101581,919 +99278,826 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [891] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2591), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [866] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2780), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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), - }, - [892] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2478), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), - [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [893] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2479), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [867] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2832), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(85), - [sym_number] = ACTIONS(87), + [sym_number] = ACTIONS(2808), [sym_this] = ACTIONS(89), [sym_super] = ACTIONS(89), [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(1060), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [894] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2480), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [868] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2310), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1060), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(868), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), }, - [895] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2613), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [869] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2809), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(758), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(760), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [896] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2483), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [870] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2799), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [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(1060), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [897] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1581), - [sym_expression] = STATE(2409), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5694), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5694), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5685), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1581), - [sym_subscript_expression] = STATE(1581), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3833), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5694), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [871] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2433), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1581), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(563), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1718), - [anon_sym_export] = ACTIONS(1460), - [anon_sym_type] = ACTIONS(1460), - [anon_sym_namespace] = ACTIONS(1462), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(1484), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(1468), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(1470), - [anon_sym_yield] = ACTIONS(1472), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(1476), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1724), - [anon_sym_PLUS] = ACTIONS(1722), - [anon_sym_DASH] = ACTIONS(1722), - [anon_sym_TILDE] = ACTIONS(1468), - [anon_sym_void] = ACTIONS(1484), - [anon_sym_delete] = ACTIONS(1484), - [anon_sym_PLUS_PLUS] = ACTIONS(1486), - [anon_sym_DASH_DASH] = ACTIONS(1486), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(1494), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1460), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [898] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2715), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [872] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2803), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(1756), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), }, - [899] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(2046), - [sym_expression] = STATE(2484), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5568), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5568), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5570), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(2046), - [sym_subscript_expression] = STATE(2046), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3830), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5568), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [873] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3424), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2046), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(538), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1690), - [anon_sym_export] = ACTIONS(1032), - [anon_sym_type] = ACTIONS(1032), - [anon_sym_namespace] = ACTIONS(1034), - [anon_sym_LBRACE] = ACTIONS(1694), - [anon_sym_typeof] = ACTIONS(1056), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(1040), - [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(1042), - [anon_sym_yield] = ACTIONS(1044), - [anon_sym_LBRACK] = ACTIONS(1698), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(1048), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1700), - [anon_sym_PLUS] = ACTIONS(1696), - [anon_sym_DASH] = ACTIONS(1696), - [anon_sym_TILDE] = ACTIONS(1040), - [anon_sym_void] = ACTIONS(1056), - [anon_sym_delete] = ACTIONS(1056), - [anon_sym_PLUS_PLUS] = ACTIONS(1058), - [anon_sym_DASH_DASH] = ACTIONS(1058), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), [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(1060), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1032), - [anon_sym_readonly] = ACTIONS(1032), - [anon_sym_get] = ACTIONS(1032), - [anon_sym_set] = ACTIONS(1032), - [anon_sym_declare] = ACTIONS(1032), - [anon_sym_public] = ACTIONS(1032), - [anon_sym_private] = ACTIONS(1032), - [anon_sym_protected] = ACTIONS(1032), - [anon_sym_module] = ACTIONS(1032), - [anon_sym_any] = ACTIONS(1032), - [anon_sym_number] = ACTIONS(1032), - [anon_sym_boolean] = ACTIONS(1032), - [anon_sym_string] = ACTIONS(1032), - [anon_sym_symbol] = ACTIONS(1032), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, - [900] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1480), - [sym_expression] = STATE(2429), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5682), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5682), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5555), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1480), - [sym_subscript_expression] = STATE(1480), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3838), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5682), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [874] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2440), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1480), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(496), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1682), - [anon_sym_export] = ACTIONS(1202), - [anon_sym_type] = ACTIONS(1202), - [anon_sym_namespace] = ACTIONS(1204), - [anon_sym_LBRACE] = ACTIONS(1310), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), [anon_sym_typeof] = ACTIONS(586), [anon_sym_import] = ACTIONS(550), [anon_sym_BANG] = ACTIONS(552), - [anon_sym_LPAREN] = ACTIONS(1314), + [anon_sym_LPAREN] = ACTIONS(1056), [anon_sym_await] = ACTIONS(556), [anon_sym_yield] = ACTIONS(558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1212), + [anon_sym_async] = ACTIONS(1342), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1688), - [anon_sym_PLUS] = ACTIONS(1686), - [anon_sym_DASH] = ACTIONS(1686), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), [anon_sym_TILDE] = ACTIONS(552), [anon_sym_void] = ACTIONS(586), [anon_sym_delete] = ACTIONS(586), @@ -102503,7 +100107,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), @@ -102511,180 +100115,1389 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(600), [sym_undefined] = ACTIONS(604), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1202), - [anon_sym_readonly] = ACTIONS(1202), - [anon_sym_get] = ACTIONS(1202), - [anon_sym_set] = ACTIONS(1202), - [anon_sym_declare] = ACTIONS(1202), - [anon_sym_public] = ACTIONS(1202), - [anon_sym_private] = ACTIONS(1202), - [anon_sym_protected] = ACTIONS(1202), - [anon_sym_module] = ACTIONS(1202), - [anon_sym_any] = ACTIONS(1202), - [anon_sym_number] = ACTIONS(1202), - [anon_sym_boolean] = ACTIONS(1202), - [anon_sym_string] = ACTIONS(1202), - [anon_sym_symbol] = ACTIONS(1202), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), }, - [901] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2589), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [875] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2643), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, - [902] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1437), - [sym_expression] = STATE(2205), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5490), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5490), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5488), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1437), - [sym_subscript_expression] = STATE(1437), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3848), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5490), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [876] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1483), + [sym_expression] = STATE(2447), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5488), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5488), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5680), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1483), + [sym_subscript_expression] = STATE(1483), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3834), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5488), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1483), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(874), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1622), + [anon_sym_export] = ACTIONS(1332), + [anon_sym_type] = ACTIONS(1332), + [anon_sym_namespace] = ACTIONS(1334), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(586), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(552), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(556), + [anon_sym_yield] = ACTIONS(558), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1342), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1628), + [anon_sym_PLUS] = ACTIONS(1626), + [anon_sym_DASH] = ACTIONS(1626), + [anon_sym_TILDE] = ACTIONS(552), + [anon_sym_void] = ACTIONS(586), + [anon_sym_delete] = ACTIONS(586), + [anon_sym_PLUS_PLUS] = ACTIONS(588), + [anon_sym_DASH_DASH] = ACTIONS(588), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(604), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1332), + [anon_sym_readonly] = ACTIONS(1332), + [anon_sym_get] = ACTIONS(1332), + [anon_sym_set] = ACTIONS(1332), + [anon_sym_declare] = ACTIONS(1332), + [anon_sym_public] = ACTIONS(1332), + [anon_sym_private] = ACTIONS(1332), + [anon_sym_protected] = ACTIONS(1332), + [anon_sym_module] = ACTIONS(1332), + [anon_sym_any] = ACTIONS(1332), + [anon_sym_number] = ACTIONS(1332), + [anon_sym_boolean] = ACTIONS(1332), + [anon_sym_string] = ACTIONS(1332), + [anon_sym_symbol] = ACTIONS(1332), + }, + [877] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2816), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1437), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(704), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1260), - [anon_sym_export] = ACTIONS(862), - [anon_sym_type] = ACTIONS(862), - [anon_sym_namespace] = ACTIONS(864), - [anon_sym_LBRACE] = ACTIONS(1266), - [anon_sym_typeof] = ACTIONS(886), - [anon_sym_import] = ACTIONS(750), - [anon_sym_BANG] = ACTIONS(870), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), + }, + [878] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2642), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [879] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2641), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [880] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1443), + [sym_expression] = STATE(2258), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5533), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5533), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5713), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1443), + [sym_subscript_expression] = STATE(1443), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3845), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5533), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1443), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(744), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1044), + [anon_sym_export] = ACTIONS(844), + [anon_sym_type] = ACTIONS(844), + [anon_sym_namespace] = ACTIONS(846), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(864), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(850), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(852), + [anon_sym_yield] = ACTIONS(854), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(856), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1062), + [anon_sym_PLUS] = ACTIONS(1054), + [anon_sym_DASH] = ACTIONS(1054), + [anon_sym_TILDE] = ACTIONS(850), + [anon_sym_void] = ACTIONS(864), + [anon_sym_delete] = ACTIONS(864), + [anon_sym_PLUS_PLUS] = ACTIONS(866), + [anon_sym_DASH_DASH] = ACTIONS(866), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(868), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(844), + [anon_sym_readonly] = ACTIONS(844), + [anon_sym_get] = ACTIONS(844), + [anon_sym_set] = ACTIONS(844), + [anon_sym_declare] = ACTIONS(844), + [anon_sym_public] = ACTIONS(844), + [anon_sym_private] = ACTIONS(844), + [anon_sym_protected] = ACTIONS(844), + [anon_sym_module] = ACTIONS(844), + [anon_sym_any] = ACTIONS(844), + [anon_sym_number] = ACTIONS(844), + [anon_sym_boolean] = ACTIONS(844), + [anon_sym_string] = ACTIONS(844), + [anon_sym_symbol] = ACTIONS(844), + }, + [881] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2640), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [882] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2639), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [883] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2638), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [884] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2637), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [885] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2636), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [886] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2635), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [887] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2634), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [888] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2633), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [889] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2050), + [sym_expression] = STATE(2972), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5544), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5544), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5542), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2050), + [sym_subscript_expression] = STATE(2050), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3843), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5544), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2050), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(550), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1746), + [anon_sym_export] = ACTIONS(1552), + [anon_sym_type] = ACTIONS(1552), + [anon_sym_namespace] = ACTIONS(1554), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(1576), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(1560), [anon_sym_LPAREN] = ACTIONS(37), - [anon_sym_await] = ACTIONS(872), - [anon_sym_yield] = ACTIONS(874), + [anon_sym_await] = ACTIONS(1562), + [anon_sym_yield] = ACTIONS(1564), [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(762), - [anon_sym_class] = ACTIONS(764), - [anon_sym_async] = ACTIONS(878), - [anon_sym_function] = ACTIONS(768), - [anon_sym_new] = ACTIONS(1274), - [anon_sym_PLUS] = ACTIONS(1270), - [anon_sym_DASH] = ACTIONS(1270), - [anon_sym_TILDE] = ACTIONS(870), - [anon_sym_void] = ACTIONS(886), - [anon_sym_delete] = ACTIONS(886), - [anon_sym_PLUS_PLUS] = ACTIONS(888), - [anon_sym_DASH_DASH] = ACTIONS(888), + [anon_sym_SLASH] = ACTIONS(1084), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(1568), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1752), + [anon_sym_PLUS] = ACTIONS(1750), + [anon_sym_DASH] = ACTIONS(1750), + [anon_sym_TILDE] = ACTIONS(1560), + [anon_sym_void] = ACTIONS(1576), + [anon_sym_delete] = ACTIONS(1576), + [anon_sym_PLUS_PLUS] = ACTIONS(1578), + [anon_sym_DASH_DASH] = ACTIONS(1578), [anon_sym_DQUOTE] = ACTIONS(81), [anon_sym_SQUOTE] = ACTIONS(83), [sym_comment] = ACTIONS(3), @@ -102695,257 +101508,443 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_true] = ACTIONS(89), [sym_false] = ACTIONS(89), [sym_null] = ACTIONS(89), - [sym_undefined] = ACTIONS(896), + [sym_undefined] = ACTIONS(1586), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(862), - [anon_sym_readonly] = ACTIONS(862), - [anon_sym_get] = ACTIONS(862), - [anon_sym_set] = ACTIONS(862), - [anon_sym_declare] = ACTIONS(862), - [anon_sym_public] = ACTIONS(862), - [anon_sym_private] = ACTIONS(862), - [anon_sym_protected] = ACTIONS(862), - [anon_sym_module] = ACTIONS(862), - [anon_sym_any] = ACTIONS(862), - [anon_sym_number] = ACTIONS(862), - [anon_sym_boolean] = ACTIONS(862), - [anon_sym_string] = ACTIONS(862), - [anon_sym_symbol] = ACTIONS(862), + [anon_sym_static] = ACTIONS(1552), + [anon_sym_readonly] = 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), }, - [903] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3379), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [890] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2631), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1824), - [anon_sym_PLUS] = ACTIONS(1822), - [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, - [904] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2081), - [sym_expression] = STATE(3234), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5598), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5598), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5738), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2081), - [sym_subscript_expression] = STATE(2081), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3834), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5598), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [891] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2630), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2081), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(876), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1802), - [anon_sym_export] = ACTIONS(948), - [anon_sym_type] = ACTIONS(948), - [anon_sym_namespace] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(972), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(956), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(958), - [anon_sym_yield] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(964), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1808), - [anon_sym_PLUS] = ACTIONS(1806), - [anon_sym_DASH] = ACTIONS(1806), - [anon_sym_TILDE] = ACTIONS(956), - [anon_sym_void] = ACTIONS(972), - [anon_sym_delete] = ACTIONS(972), - [anon_sym_PLUS_PLUS] = ACTIONS(974), - [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(982), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(948), - [anon_sym_readonly] = ACTIONS(948), - [anon_sym_get] = ACTIONS(948), - [anon_sym_set] = ACTIONS(948), - [anon_sym_declare] = ACTIONS(948), - [anon_sym_public] = ACTIONS(948), - [anon_sym_private] = ACTIONS(948), - [anon_sym_protected] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_any] = ACTIONS(948), - [anon_sym_number] = ACTIONS(948), - [anon_sym_boolean] = ACTIONS(948), - [anon_sym_string] = ACTIONS(948), - [anon_sym_symbol] = ACTIONS(948), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, - [905] = { - [sym_import] = STATE(2576), - [sym_parenthesized_expression] = STATE(1663), - [sym_expression] = STATE(2635), - [sym_primary_expression] = STATE(2575), - [sym_yield_expression] = STATE(2571), - [sym_object] = STATE(2576), - [sym_object_pattern] = STATE(5789), - [sym_array] = STATE(2576), - [sym_array_pattern] = STATE(5789), - [sym_class] = STATE(2576), - [sym_function] = STATE(2576), - [sym_generator_function] = STATE(2576), - [sym_arrow_function] = STATE(2576), - [sym__call_signature] = STATE(5790), - [sym_call_expression] = STATE(2576), - [sym_new_expression] = STATE(2571), - [sym_await_expression] = STATE(2571), - [sym_member_expression] = STATE(1663), - [sym_subscript_expression] = STATE(1663), - [sym_assignment_expression] = STATE(2571), - [sym__augmented_assignment_lhs] = STATE(3836), - [sym_augmented_assignment_expression] = STATE(2571), - [sym__destructuring_pattern] = STATE(5789), - [sym_ternary_expression] = STATE(2571), - [sym_binary_expression] = STATE(2571), - [sym_unary_expression] = STATE(2571), - [sym_update_expression] = STATE(2571), - [sym_string] = STATE(2576), - [sym_template_string] = STATE(2576), - [sym_regex] = STATE(2576), - [sym_meta_property] = STATE(2576), + [892] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1663), - [sym_type_assertion] = STATE(2571), - [sym_as_expression] = STATE(2571), - [sym_internal_module] = STATE(2571), - [sym_type_arguments] = STATE(652), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4796), - [sym_identifier] = ACTIONS(1714), - [anon_sym_export] = ACTIONS(1068), - [anon_sym_type] = ACTIONS(1068), - [anon_sym_namespace] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1266), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(2814), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [893] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2629), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [894] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(1752), + [sym_expression] = STATE(2611), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5799), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5799), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5800), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(1752), + [sym_subscript_expression] = STATE(1752), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3850), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5799), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1752), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(578), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1710), + [anon_sym_export] = ACTIONS(876), + [anon_sym_type] = ACTIONS(876), + [anon_sym_namespace] = ACTIONS(878), + [anon_sym_LBRACE] = ACTIONS(1464), [anon_sym_typeof] = ACTIONS(19), - [anon_sym_import] = ACTIONS(750), + [anon_sym_import] = ACTIONS(802), [anon_sym_BANG] = ACTIONS(29), [anon_sym_LPAREN] = ACTIONS(37), [anon_sym_await] = ACTIONS(39), @@ -102953,9 +101952,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(764), - [anon_sym_async] = ACTIONS(1078), - [anon_sym_function] = ACTIONS(768), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(886), + [anon_sym_function] = ACTIONS(818), [anon_sym_new] = ACTIONS(75), [anon_sym_PLUS] = ACTIONS(77), [anon_sym_DASH] = ACTIONS(77), @@ -102976,9140 +101975,9689 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_null] = ACTIONS(89), [sym_undefined] = ACTIONS(91), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1068), - [anon_sym_readonly] = ACTIONS(1068), - [anon_sym_get] = ACTIONS(1068), - [anon_sym_set] = ACTIONS(1068), - [anon_sym_declare] = ACTIONS(1068), - [anon_sym_public] = ACTIONS(1068), - [anon_sym_private] = ACTIONS(1068), - [anon_sym_protected] = ACTIONS(1068), - [anon_sym_module] = ACTIONS(1068), - [anon_sym_any] = ACTIONS(1068), - [anon_sym_number] = ACTIONS(1068), - [anon_sym_boolean] = ACTIONS(1068), - [anon_sym_string] = ACTIONS(1068), - [anon_sym_symbol] = ACTIONS(1068), + [anon_sym_static] = ACTIONS(876), + [anon_sym_readonly] = ACTIONS(876), + [anon_sym_get] = ACTIONS(876), + [anon_sym_set] = ACTIONS(876), + [anon_sym_declare] = ACTIONS(876), + [anon_sym_public] = ACTIONS(876), + [anon_sym_private] = ACTIONS(876), + [anon_sym_protected] = ACTIONS(876), + [anon_sym_module] = ACTIONS(876), + [anon_sym_any] = ACTIONS(876), + [anon_sym_number] = ACTIONS(876), + [anon_sym_boolean] = ACTIONS(876), + [anon_sym_string] = ACTIONS(876), + [anon_sym_symbol] = ACTIONS(876), }, - [906] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1909), - [sym_expression] = STATE(2619), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5560), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5560), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5506), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1909), - [sym_subscript_expression] = STATE(1909), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3839), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5560), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [895] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2628), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(1268), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1270), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1282), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), + }, + [896] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2627), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1909), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(792), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1758), - [anon_sym_export] = ACTIONS(1230), - [anon_sym_type] = ACTIONS(1230), - [anon_sym_namespace] = ACTIONS(1232), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1250), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1236), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1238), - [anon_sym_yield] = ACTIONS(1240), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1242), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1768), - [anon_sym_PLUS] = ACTIONS(1764), - [anon_sym_DASH] = ACTIONS(1764), - [anon_sym_TILDE] = ACTIONS(1236), - [anon_sym_void] = ACTIONS(1250), - [anon_sym_delete] = ACTIONS(1250), - [anon_sym_PLUS_PLUS] = ACTIONS(1252), - [anon_sym_DASH_DASH] = ACTIONS(1252), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1254), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1230), - [anon_sym_readonly] = 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_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, - [907] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(1452), - [sym_expression] = STATE(2199), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5523), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5523), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5695), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(1452), - [sym_subscript_expression] = STATE(1452), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3842), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5523), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [897] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2040), + [sym_expression] = STATE(2626), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5620), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5620), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5471), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2040), + [sym_subscript_expression] = STATE(2040), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3851), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5620), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1452), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(631), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1306), - [anon_sym_export] = ACTIONS(904), - [anon_sym_type] = ACTIONS(904), - [anon_sym_namespace] = ACTIONS(906), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(930), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2040), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(875), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1770), + [anon_sym_export] = ACTIONS(1256), + [anon_sym_type] = ACTIONS(1256), + [anon_sym_namespace] = ACTIONS(1258), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1278), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(912), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(914), - [anon_sym_yield] = ACTIONS(916), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1262), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1264), + [anon_sym_yield] = ACTIONS(1266), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(1268), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(922), + [anon_sym_async] = ACTIONS(1270), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1318), - [anon_sym_PLUS] = ACTIONS(1312), - [anon_sym_DASH] = ACTIONS(1312), - [anon_sym_TILDE] = ACTIONS(912), - [anon_sym_void] = ACTIONS(930), - [anon_sym_delete] = ACTIONS(930), - [anon_sym_PLUS_PLUS] = ACTIONS(932), - [anon_sym_DASH_DASH] = ACTIONS(932), + [anon_sym_new] = ACTIONS(1776), + [anon_sym_PLUS] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_TILDE] = ACTIONS(1262), + [anon_sym_void] = ACTIONS(1278), + [anon_sym_delete] = ACTIONS(1278), + [anon_sym_PLUS_PLUS] = ACTIONS(1280), + [anon_sym_DASH_DASH] = ACTIONS(1280), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(940), + [sym_undefined] = ACTIONS(1282), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(904), - [anon_sym_readonly] = ACTIONS(904), - [anon_sym_get] = ACTIONS(904), - [anon_sym_set] = ACTIONS(904), - [anon_sym_declare] = ACTIONS(904), - [anon_sym_public] = ACTIONS(904), - [anon_sym_private] = ACTIONS(904), - [anon_sym_protected] = ACTIONS(904), - [anon_sym_module] = ACTIONS(904), - [anon_sym_any] = ACTIONS(904), - [anon_sym_number] = ACTIONS(904), - [anon_sym_boolean] = ACTIONS(904), - [anon_sym_string] = ACTIONS(904), - [anon_sym_symbol] = ACTIONS(904), + [anon_sym_static] = ACTIONS(1256), + [anon_sym_readonly] = ACTIONS(1256), + [anon_sym_get] = ACTIONS(1256), + [anon_sym_set] = ACTIONS(1256), + [anon_sym_declare] = ACTIONS(1256), + [anon_sym_public] = ACTIONS(1256), + [anon_sym_private] = ACTIONS(1256), + [anon_sym_protected] = ACTIONS(1256), + [anon_sym_module] = ACTIONS(1256), + [anon_sym_any] = ACTIONS(1256), + [anon_sym_number] = ACTIONS(1256), + [anon_sym_boolean] = ACTIONS(1256), + [anon_sym_string] = ACTIONS(1256), + [anon_sym_symbol] = ACTIONS(1256), }, - [908] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2090), - [sym_expression] = STATE(3377), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5549), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5549), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5654), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2090), - [sym_subscript_expression] = STATE(2090), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3831), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5549), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [898] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3251), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2090), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(908), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), + }, + [899] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3374), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), [sym_identifier] = ACTIONS(1818), - [anon_sym_export] = ACTIONS(1546), - [anon_sym_type] = ACTIONS(1546), - [anon_sym_namespace] = ACTIONS(1548), - [anon_sym_LBRACE] = ACTIONS(1310), - [anon_sym_typeof] = ACTIONS(1568), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1554), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1556), - [anon_sym_yield] = ACTIONS(1558), - [anon_sym_LBRACK] = ACTIONS(1316), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), [anon_sym_LT] = ACTIONS(65), [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1560), + [anon_sym_async] = ACTIONS(1532), [anon_sym_function] = ACTIONS(570), [anon_sym_new] = ACTIONS(1824), [anon_sym_PLUS] = ACTIONS(1822), [anon_sym_DASH] = ACTIONS(1822), - [anon_sym_TILDE] = ACTIONS(1554), - [anon_sym_void] = ACTIONS(1568), - [anon_sym_delete] = ACTIONS(1568), - [anon_sym_PLUS_PLUS] = ACTIONS(1570), - [anon_sym_DASH_DASH] = ACTIONS(1570), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1572), + [sym_undefined] = ACTIONS(1544), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1546), - [anon_sym_readonly] = ACTIONS(1546), - [anon_sym_get] = ACTIONS(1546), - [anon_sym_set] = ACTIONS(1546), - [anon_sym_declare] = ACTIONS(1546), - [anon_sym_public] = ACTIONS(1546), - [anon_sym_private] = ACTIONS(1546), - [anon_sym_protected] = ACTIONS(1546), - [anon_sym_module] = ACTIONS(1546), - [anon_sym_any] = ACTIONS(1546), - [anon_sym_number] = ACTIONS(1546), - [anon_sym_boolean] = ACTIONS(1546), - [anon_sym_string] = ACTIONS(1546), - [anon_sym_symbol] = ACTIONS(1546), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), + }, + [900] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2069), + [sym_expression] = STATE(3290), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5528), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5528), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5584), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2069), + [sym_subscript_expression] = STATE(2069), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3848), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5528), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2069), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(498), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1818), + [anon_sym_export] = ACTIONS(1518), + [anon_sym_type] = ACTIONS(1518), + [anon_sym_namespace] = ACTIONS(1520), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(1540), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1526), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1528), + [anon_sym_yield] = ACTIONS(1530), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1532), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1824), + [anon_sym_PLUS] = ACTIONS(1822), + [anon_sym_DASH] = ACTIONS(1822), + [anon_sym_TILDE] = ACTIONS(1526), + [anon_sym_void] = ACTIONS(1540), + [anon_sym_delete] = ACTIONS(1540), + [anon_sym_PLUS_PLUS] = ACTIONS(1542), + [anon_sym_DASH_DASH] = ACTIONS(1542), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1544), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1518), + [anon_sym_readonly] = 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), + }, + [901] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3443), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), + }, + [902] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2076), + [sym_expression] = STATE(2802), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5765), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5765), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5769), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2076), + [sym_subscript_expression] = STATE(2076), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3831), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5765), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2076), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(853), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1726), + [anon_sym_export] = ACTIONS(742), + [anon_sym_type] = ACTIONS(742), + [anon_sym_namespace] = ACTIONS(744), + [anon_sym_LBRACE] = ACTIONS(1050), + [anon_sym_typeof] = ACTIONS(774), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(750), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(752), + [anon_sym_yield] = ACTIONS(754), + [anon_sym_LBRACK] = ACTIONS(1058), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(760), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1732), + [anon_sym_PLUS] = ACTIONS(1730), + [anon_sym_DASH] = ACTIONS(1730), + [anon_sym_TILDE] = ACTIONS(750), + [anon_sym_void] = ACTIONS(774), + [anon_sym_delete] = ACTIONS(774), + [anon_sym_PLUS_PLUS] = ACTIONS(776), + [anon_sym_DASH_DASH] = ACTIONS(776), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(784), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(742), + [anon_sym_readonly] = 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), + }, + [903] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3429), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), + }, + [904] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3398), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), + }, + [905] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3117), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), + }, + [906] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3439), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), + }, + [907] = { + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3040), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), + }, + [908] = { + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3283), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(564), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1128), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1146), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, [909] = { - [sym_import] = STATE(3265), - [sym_parenthesized_expression] = STATE(2060), - [sym_expression] = STATE(2717), - [sym_primary_expression] = STATE(3267), - [sym_yield_expression] = STATE(3275), - [sym_object] = STATE(3265), - [sym_object_pattern] = STATE(5489), - [sym_array] = STATE(3265), - [sym_array_pattern] = STATE(5489), - [sym_class] = STATE(3265), - [sym_function] = STATE(3265), - [sym_generator_function] = STATE(3265), - [sym_arrow_function] = STATE(3265), - [sym__call_signature] = STATE(5487), - [sym_call_expression] = STATE(3265), - [sym_new_expression] = STATE(3275), - [sym_await_expression] = STATE(3275), - [sym_member_expression] = STATE(2060), - [sym_subscript_expression] = STATE(2060), - [sym_assignment_expression] = STATE(3275), - [sym__augmented_assignment_lhs] = STATE(3846), - [sym_augmented_assignment_expression] = STATE(3275), - [sym__destructuring_pattern] = STATE(5489), - [sym_ternary_expression] = STATE(3275), - [sym_binary_expression] = STATE(3275), - [sym_unary_expression] = STATE(3275), - [sym_update_expression] = STATE(3275), - [sym_string] = STATE(3265), - [sym_template_string] = STATE(3265), - [sym_regex] = STATE(3265), - [sym_meta_property] = STATE(3265), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3086), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2060), - [sym_type_assertion] = STATE(3275), - [sym_as_expression] = STATE(3275), - [sym_internal_module] = STATE(3275), - [sym_type_arguments] = STATE(766), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4749), - [sym_identifier] = ACTIONS(1742), - [anon_sym_export] = ACTIONS(1502), - [anon_sym_type] = ACTIONS(1502), - [anon_sym_namespace] = ACTIONS(1504), - [anon_sym_LBRACE] = ACTIONS(2384), - [anon_sym_typeof] = ACTIONS(1528), - [anon_sym_import] = ACTIONS(1332), - [anon_sym_BANG] = ACTIONS(1510), - [anon_sym_LPAREN] = ACTIONS(1750), - [anon_sym_await] = ACTIONS(1512), - [anon_sym_yield] = ACTIONS(1514), - [anon_sym_LBRACK] = ACTIONS(1752), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(1518), - [anon_sym_class] = ACTIONS(1346), - [anon_sym_async] = ACTIONS(1520), - [anon_sym_function] = ACTIONS(1350), - [anon_sym_new] = ACTIONS(1754), - [anon_sym_PLUS] = ACTIONS(1748), - [anon_sym_DASH] = ACTIONS(1748), - [anon_sym_TILDE] = ACTIONS(1510), - [anon_sym_void] = ACTIONS(1528), - [anon_sym_delete] = ACTIONS(1528), - [anon_sym_PLUS_PLUS] = ACTIONS(1530), - [anon_sym_DASH_DASH] = ACTIONS(1530), - [anon_sym_DQUOTE] = ACTIONS(1362), - [anon_sym_SQUOTE] = ACTIONS(1364), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1366), - [sym_number] = ACTIONS(2824), - [sym_this] = ACTIONS(1372), - [sym_super] = ACTIONS(1372), - [sym_true] = ACTIONS(1372), - [sym_false] = ACTIONS(1372), - [sym_null] = ACTIONS(1372), - [sym_undefined] = ACTIONS(1538), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1502), - [anon_sym_readonly] = 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), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, [910] = { - [sym_import] = STATE(2849), - [sym_parenthesized_expression] = STATE(1495), - [sym_expression] = STATE(2356), - [sym_primary_expression] = STATE(2847), - [sym_yield_expression] = STATE(2846), - [sym_object] = STATE(2849), - [sym_object_pattern] = STATE(5678), - [sym_array] = STATE(2849), - [sym_array_pattern] = STATE(5678), - [sym_class] = STATE(2849), - [sym_function] = STATE(2849), - [sym_generator_function] = STATE(2849), - [sym_arrow_function] = STATE(2849), - [sym__call_signature] = STATE(5673), - [sym_call_expression] = STATE(2849), - [sym_new_expression] = STATE(2846), - [sym_await_expression] = STATE(2846), - [sym_member_expression] = STATE(1495), - [sym_subscript_expression] = STATE(1495), - [sym_assignment_expression] = STATE(2846), - [sym__augmented_assignment_lhs] = STATE(3844), - [sym_augmented_assignment_expression] = STATE(2846), - [sym__destructuring_pattern] = STATE(5678), - [sym_ternary_expression] = STATE(2846), - [sym_binary_expression] = STATE(2846), - [sym_unary_expression] = STATE(2846), - [sym_update_expression] = STATE(2846), - [sym_string] = STATE(2849), - [sym_template_string] = STATE(2849), - [sym_regex] = STATE(2849), - [sym_meta_property] = STATE(2849), + [sym_import] = STATE(2403), + [sym_parenthesized_expression] = STATE(2022), + [sym_expression] = STATE(3037), + [sym_primary_expression] = STATE(2504), + [sym_yield_expression] = STATE(2455), + [sym_object] = STATE(2403), + [sym_object_pattern] = STATE(5754), + [sym_array] = STATE(2403), + [sym_array_pattern] = STATE(5754), + [sym_class] = STATE(2403), + [sym_function] = STATE(2403), + [sym_generator_function] = STATE(2403), + [sym_arrow_function] = STATE(2403), + [sym__call_signature] = STATE(5756), + [sym_call_expression] = STATE(2403), + [sym_new_expression] = STATE(2455), + [sym_await_expression] = STATE(2455), + [sym_member_expression] = STATE(2022), + [sym_subscript_expression] = STATE(2022), + [sym_assignment_expression] = STATE(2455), + [sym__augmented_assignment_lhs] = STATE(3847), + [sym_augmented_assignment_expression] = STATE(2455), + [sym__destructuring_pattern] = STATE(5754), + [sym_ternary_expression] = STATE(2455), + [sym_binary_expression] = STATE(2455), + [sym_unary_expression] = STATE(2455), + [sym_update_expression] = STATE(2455), + [sym_string] = STATE(2403), + [sym_template_string] = STATE(2403), + [sym_regex] = STATE(2403), + [sym_meta_property] = STATE(2403), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(1495), - [sym_type_assertion] = STATE(2846), - [sym_as_expression] = STATE(2846), - [sym_internal_module] = STATE(2846), - [sym_type_arguments] = STATE(852), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4730), - [sym_identifier] = ACTIONS(1666), - [anon_sym_export] = ACTIONS(802), - [anon_sym_type] = ACTIONS(802), - [anon_sym_namespace] = ACTIONS(804), - [anon_sym_LBRACE] = ACTIONS(1670), - [anon_sym_typeof] = ACTIONS(836), - [anon_sym_import] = ACTIONS(810), - [anon_sym_BANG] = ACTIONS(812), - [anon_sym_LPAREN] = ACTIONS(1674), - [anon_sym_await] = ACTIONS(816), - [anon_sym_yield] = ACTIONS(818), - [anon_sym_LBRACK] = ACTIONS(1676), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2022), + [sym_type_assertion] = STATE(2455), + [sym_as_expression] = STATE(2455), + [sym_internal_module] = STATE(2455), + [sym_type_arguments] = STATE(552), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4781), + [sym_identifier] = ACTIONS(1802), + [anon_sym_export] = ACTIONS(794), + [anon_sym_type] = ACTIONS(794), + [anon_sym_namespace] = ACTIONS(796), + [anon_sym_LBRACE] = ACTIONS(1464), + [anon_sym_typeof] = ACTIONS(826), + [anon_sym_import] = ACTIONS(802), + [anon_sym_BANG] = ACTIONS(804), + [anon_sym_LPAREN] = ACTIONS(37), + [anon_sym_await] = ACTIONS(808), + [anon_sym_yield] = ACTIONS(810), + [anon_sym_LBRACK] = ACTIONS(63), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(822), - [anon_sym_class] = ACTIONS(824), - [anon_sym_async] = ACTIONS(826), - [anon_sym_function] = ACTIONS(828), - [anon_sym_new] = ACTIONS(1678), - [anon_sym_PLUS] = ACTIONS(1672), - [anon_sym_DASH] = ACTIONS(1672), - [anon_sym_TILDE] = ACTIONS(812), - [anon_sym_void] = ACTIONS(836), - [anon_sym_delete] = ACTIONS(836), - [anon_sym_PLUS_PLUS] = ACTIONS(838), - [anon_sym_DASH_DASH] = ACTIONS(838), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(844), - [sym_number] = ACTIONS(1680), - [sym_this] = ACTIONS(850), - [sym_super] = ACTIONS(850), - [sym_true] = ACTIONS(850), - [sym_false] = ACTIONS(850), - [sym_null] = ACTIONS(850), - [sym_undefined] = ACTIONS(854), + [anon_sym_SLASH] = ACTIONS(67), + [anon_sym_class] = ACTIONS(814), + [anon_sym_async] = ACTIONS(816), + [anon_sym_function] = ACTIONS(818), + [anon_sym_new] = ACTIONS(1808), + [anon_sym_PLUS] = ACTIONS(1806), + [anon_sym_DASH] = ACTIONS(1806), + [anon_sym_TILDE] = ACTIONS(804), + [anon_sym_void] = ACTIONS(826), + [anon_sym_delete] = ACTIONS(826), + [anon_sym_PLUS_PLUS] = ACTIONS(828), + [anon_sym_DASH_DASH] = ACTIONS(828), + [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(836), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(802), - [anon_sym_readonly] = ACTIONS(802), - [anon_sym_get] = ACTIONS(802), - [anon_sym_set] = ACTIONS(802), - [anon_sym_declare] = ACTIONS(802), - [anon_sym_public] = ACTIONS(802), - [anon_sym_private] = ACTIONS(802), - [anon_sym_protected] = ACTIONS(802), - [anon_sym_module] = ACTIONS(802), - [anon_sym_any] = ACTIONS(802), - [anon_sym_number] = ACTIONS(802), - [anon_sym_boolean] = ACTIONS(802), - [anon_sym_string] = ACTIONS(802), - [anon_sym_symbol] = ACTIONS(802), + [anon_sym_static] = ACTIONS(794), + [anon_sym_readonly] = ACTIONS(794), + [anon_sym_get] = ACTIONS(794), + [anon_sym_set] = ACTIONS(794), + [anon_sym_declare] = ACTIONS(794), + [anon_sym_public] = ACTIONS(794), + [anon_sym_private] = ACTIONS(794), + [anon_sym_protected] = ACTIONS(794), + [anon_sym_module] = ACTIONS(794), + [anon_sym_any] = ACTIONS(794), + [anon_sym_number] = ACTIONS(794), + [anon_sym_boolean] = ACTIONS(794), + [anon_sym_string] = ACTIONS(794), + [anon_sym_symbol] = ACTIONS(794), }, [911] = { - [sym_import] = STATE(2301), - [sym_parenthesized_expression] = STATE(2070), - [sym_expression] = STATE(3111), - [sym_primary_expression] = STATE(2306), - [sym_yield_expression] = STATE(2309), - [sym_object] = STATE(2301), - [sym_object_pattern] = STATE(5629), - [sym_array] = STATE(2301), - [sym_array_pattern] = STATE(5629), - [sym_class] = STATE(2301), - [sym_function] = STATE(2301), - [sym_generator_function] = STATE(2301), - [sym_arrow_function] = STATE(2301), - [sym__call_signature] = STATE(5545), - [sym_call_expression] = STATE(2301), - [sym_new_expression] = STATE(2309), - [sym_await_expression] = STATE(2309), - [sym_member_expression] = STATE(2070), - [sym_subscript_expression] = STATE(2070), - [sym_assignment_expression] = STATE(2309), - [sym__augmented_assignment_lhs] = STATE(3845), - [sym_augmented_assignment_expression] = STATE(2309), - [sym__destructuring_pattern] = STATE(5629), - [sym_ternary_expression] = STATE(2309), - [sym_binary_expression] = STATE(2309), - [sym_unary_expression] = STATE(2309), - [sym_update_expression] = STATE(2309), - [sym_string] = STATE(2301), - [sym_template_string] = STATE(2301), - [sym_regex] = STATE(2301), - [sym_meta_property] = STATE(2301), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(1359), + [sym_expression] = STATE(3348), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5677), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5677), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5546), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(1359), + [sym_subscript_expression] = STATE(1359), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3844), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5677), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(4423), - [sym_non_null_expression] = STATE(2070), - [sym_type_assertion] = STATE(2309), - [sym_as_expression] = STATE(2309), - [sym_internal_module] = STATE(2309), - [sym_type_arguments] = STATE(726), - [sym_type_parameters] = STATE(5200), - [aux_sym_export_statement_repeat1] = STATE(4854), - [sym_identifier] = ACTIONS(1810), - [anon_sym_export] = ACTIONS(1168), - [anon_sym_type] = ACTIONS(1168), - [anon_sym_namespace] = ACTIONS(1170), - [anon_sym_LBRACE] = ACTIONS(1762), - [anon_sym_typeof] = ACTIONS(1190), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(1359), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(724), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1826), + [anon_sym_export] = ACTIONS(1112), + [anon_sym_type] = ACTIONS(1112), + [anon_sym_namespace] = ACTIONS(1114), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1136), [anon_sym_import] = ACTIONS(550), - [anon_sym_BANG] = ACTIONS(1176), - [anon_sym_LPAREN] = ACTIONS(1314), - [anon_sym_await] = ACTIONS(1178), - [anon_sym_yield] = ACTIONS(1180), - [anon_sym_LBRACK] = ACTIONS(1766), + [anon_sym_BANG] = ACTIONS(1120), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1122), + [anon_sym_yield] = ACTIONS(1124), + [anon_sym_LBRACK] = ACTIONS(1742), [anon_sym_LT] = ACTIONS(65), - [anon_sym_SLASH] = ACTIONS(920), + [anon_sym_SLASH] = ACTIONS(564), [anon_sym_class] = ACTIONS(566), - [anon_sym_async] = ACTIONS(1182), + [anon_sym_async] = ACTIONS(1128), [anon_sym_function] = ACTIONS(570), - [anon_sym_new] = ACTIONS(1816), - [anon_sym_PLUS] = ACTIONS(1814), - [anon_sym_DASH] = ACTIONS(1814), - [anon_sym_TILDE] = ACTIONS(1176), - [anon_sym_void] = ACTIONS(1190), - [anon_sym_delete] = ACTIONS(1190), - [anon_sym_PLUS_PLUS] = ACTIONS(1192), - [anon_sym_DASH_DASH] = ACTIONS(1192), + [anon_sym_new] = ACTIONS(1832), + [anon_sym_PLUS] = ACTIONS(1830), + [anon_sym_DASH] = ACTIONS(1830), + [anon_sym_TILDE] = ACTIONS(1120), + [anon_sym_void] = ACTIONS(1136), + [anon_sym_delete] = ACTIONS(1136), + [anon_sym_PLUS_PLUS] = ACTIONS(1138), + [anon_sym_DASH_DASH] = ACTIONS(1138), [anon_sym_DQUOTE] = ACTIONS(590), [anon_sym_SQUOTE] = ACTIONS(592), [sym_comment] = ACTIONS(3), [anon_sym_BQUOTE] = ACTIONS(594), - [sym_number] = ACTIONS(1320), + [sym_number] = ACTIONS(1064), [sym_this] = ACTIONS(600), [sym_super] = ACTIONS(600), [sym_true] = ACTIONS(600), [sym_false] = ACTIONS(600), [sym_null] = ACTIONS(600), - [sym_undefined] = ACTIONS(1194), + [sym_undefined] = ACTIONS(1146), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1168), - [anon_sym_readonly] = ACTIONS(1168), - [anon_sym_get] = ACTIONS(1168), - [anon_sym_set] = ACTIONS(1168), - [anon_sym_declare] = ACTIONS(1168), - [anon_sym_public] = ACTIONS(1168), - [anon_sym_private] = ACTIONS(1168), - [anon_sym_protected] = ACTIONS(1168), - [anon_sym_module] = ACTIONS(1168), - [anon_sym_any] = ACTIONS(1168), - [anon_sym_number] = ACTIONS(1168), - [anon_sym_boolean] = ACTIONS(1168), - [anon_sym_string] = ACTIONS(1168), - [anon_sym_symbol] = ACTIONS(1168), + [anon_sym_static] = ACTIONS(1112), + [anon_sym_readonly] = 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), }, [912] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_import] = STATE(2326), + [sym_parenthesized_expression] = STATE(2087), + [sym_expression] = STATE(3246), + [sym_primary_expression] = STATE(2327), + [sym_yield_expression] = STATE(2332), + [sym_object] = STATE(2326), + [sym_object_pattern] = STATE(5521), + [sym_array] = STATE(2326), + [sym_array_pattern] = STATE(5521), + [sym_class] = STATE(2326), + [sym_function] = STATE(2326), + [sym_generator_function] = STATE(2326), + [sym_arrow_function] = STATE(2326), + [sym__call_signature] = STATE(5519), + [sym_call_expression] = STATE(2326), + [sym_new_expression] = STATE(2332), + [sym_await_expression] = STATE(2332), + [sym_member_expression] = STATE(2087), + [sym_subscript_expression] = STATE(2087), + [sym_assignment_expression] = STATE(2332), + [sym__augmented_assignment_lhs] = STATE(3830), + [sym_augmented_assignment_expression] = STATE(2332), + [sym__destructuring_pattern] = STATE(5521), + [sym_ternary_expression] = STATE(2332), + [sym_binary_expression] = STATE(2332), + [sym_unary_expression] = STATE(2332), + [sym_update_expression] = STATE(2332), + [sym_string] = STATE(2326), + [sym_template_string] = STATE(2326), + [sym_regex] = STATE(2326), + [sym_meta_property] = STATE(2326), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [sym_formal_parameters] = STATE(4485), + [sym_non_null_expression] = STATE(2087), + [sym_type_assertion] = STATE(2332), + [sym_as_expression] = STATE(2332), + [sym_internal_module] = STATE(2332), + [sym_type_arguments] = STATE(912), + [sym_type_parameters] = STATE(5203), + [aux_sym_export_statement_repeat1] = STATE(4759), + [sym_identifier] = ACTIONS(1786), + [anon_sym_export] = ACTIONS(1290), + [anon_sym_type] = ACTIONS(1290), + [anon_sym_namespace] = ACTIONS(1292), + [anon_sym_LBRACE] = ACTIONS(1738), + [anon_sym_typeof] = ACTIONS(1314), + [anon_sym_import] = ACTIONS(550), + [anon_sym_BANG] = ACTIONS(1298), + [anon_sym_LPAREN] = ACTIONS(1056), + [anon_sym_await] = ACTIONS(1300), + [anon_sym_yield] = ACTIONS(1302), + [anon_sym_LBRACK] = ACTIONS(1742), + [anon_sym_LT] = ACTIONS(65), + [anon_sym_SLASH] = ACTIONS(758), + [anon_sym_class] = ACTIONS(566), + [anon_sym_async] = ACTIONS(1306), + [anon_sym_function] = ACTIONS(570), + [anon_sym_new] = ACTIONS(1792), + [anon_sym_PLUS] = ACTIONS(1790), + [anon_sym_DASH] = ACTIONS(1790), + [anon_sym_TILDE] = ACTIONS(1298), + [anon_sym_void] = ACTIONS(1314), + [anon_sym_delete] = ACTIONS(1314), + [anon_sym_PLUS_PLUS] = ACTIONS(1316), + [anon_sym_DASH_DASH] = ACTIONS(1316), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(594), + [sym_number] = ACTIONS(1064), + [sym_this] = ACTIONS(600), + [sym_super] = ACTIONS(600), + [sym_true] = ACTIONS(600), + [sym_false] = ACTIONS(600), + [sym_null] = ACTIONS(600), + [sym_undefined] = ACTIONS(1324), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_static] = ACTIONS(1290), + [anon_sym_readonly] = ACTIONS(1290), + [anon_sym_get] = ACTIONS(1290), + [anon_sym_set] = ACTIONS(1290), + [anon_sym_declare] = ACTIONS(1290), + [anon_sym_public] = ACTIONS(1290), + [anon_sym_private] = ACTIONS(1290), + [anon_sym_protected] = ACTIONS(1290), + [anon_sym_module] = ACTIONS(1290), + [anon_sym_any] = ACTIONS(1290), + [anon_sym_number] = ACTIONS(1290), + [anon_sym_boolean] = ACTIONS(1290), + [anon_sym_string] = ACTIONS(1290), + [anon_sym_symbol] = ACTIONS(1290), }, [913] = { - [sym__call_signature] = STATE(5686), - [sym_string] = STATE(4315), - [sym_formal_parameters] = STATE(4423), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [sym_type_parameters] = STATE(5200), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2848), + [sym__call_signature] = STATE(5696), + [sym_string] = STATE(4351), + [sym_formal_parameters] = STATE(4485), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [sym_type_parameters] = STATE(5203), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_function] = ACTIONS(2846), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2852), - [anon_sym_set] = ACTIONS(2852), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2850), + [anon_sym_set] = ACTIONS(2850), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [sym__automatic_semicolon] = ACTIONS(1672), }, [914] = { - [sym__call_signature] = STATE(5686), - [sym_string] = STATE(4315), - [sym_formal_parameters] = STATE(4423), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [sym_type_parameters] = STATE(5200), - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(1636), + [sym__call_signature] = STATE(5696), + [sym_string] = STATE(4351), + [sym_formal_parameters] = STATE(4485), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [sym_type_parameters] = STATE(5203), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2848), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_function] = ACTIONS(2846), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2852), - [anon_sym_set] = ACTIONS(2852), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2850), + [anon_sym_set] = ACTIONS(2850), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [sym__automatic_semicolon] = ACTIONS(1672), }, [915] = { - [sym__call_signature] = STATE(5686), - [sym_string] = STATE(4315), - [sym_formal_parameters] = STATE(4423), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [sym_type_parameters] = STATE(5200), - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2848), + [sym__call_signature] = STATE(5696), + [sym_string] = STATE(4351), + [sym_formal_parameters] = STATE(4485), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [sym_type_parameters] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_function] = ACTIONS(2846), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2852), - [anon_sym_set] = ACTIONS(2852), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2850), + [anon_sym_set] = ACTIONS(2850), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [sym__automatic_semicolon] = ACTIONS(1672), }, [916] = { - [sym__call_signature] = STATE(5686), - [sym_string] = STATE(4315), - [sym_formal_parameters] = STATE(4423), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [sym_type_parameters] = STATE(5200), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2848), + [sym__call_signature] = STATE(5696), + [sym_string] = STATE(4351), + [sym_formal_parameters] = STATE(4485), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [sym_type_parameters] = STATE(5203), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_function] = ACTIONS(2846), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2852), - [anon_sym_set] = ACTIONS(2852), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2850), + [anon_sym_set] = ACTIONS(2850), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [sym__automatic_semicolon] = ACTIONS(1672), }, [917] = { - [sym__call_signature] = STATE(5686), - [sym_string] = STATE(4315), - [sym_formal_parameters] = STATE(4423), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [sym_type_parameters] = STATE(5200), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2848), + [sym__call_signature] = STATE(5696), + [sym_string] = STATE(4351), + [sym_formal_parameters] = STATE(4485), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [sym_type_parameters] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_function] = ACTIONS(2846), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2852), - [anon_sym_set] = ACTIONS(2852), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2850), + [anon_sym_set] = ACTIONS(2850), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [sym__automatic_semicolon] = ACTIONS(1672), }, [918] = { - [sym__call_signature] = STATE(5686), - [sym_string] = STATE(4315), - [sym_formal_parameters] = STATE(4423), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [sym_type_parameters] = STATE(5200), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2848), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2852), - [anon_sym_set] = ACTIONS(2852), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [919] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_declaration] = STATE(1204), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [919] = { + [sym__call_signature] = STATE(5696), + [sym_string] = STATE(4351), + [sym_formal_parameters] = STATE(4485), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [sym_type_parameters] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_function] = ACTIONS(2846), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2850), + [anon_sym_set] = ACTIONS(2850), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [sym__automatic_semicolon] = ACTIONS(1672), }, [920] = { - [sym__call_signature] = STATE(5686), - [sym_string] = STATE(4315), - [sym_formal_parameters] = STATE(4423), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [sym_type_parameters] = STATE(5200), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2830), - [anon_sym_export] = ACTIONS(2832), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2832), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2832), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2837), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2844), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2832), - [anon_sym_function] = ACTIONS(2848), + [sym__call_signature] = STATE(5696), + [sym_string] = STATE(4351), + [sym_formal_parameters] = STATE(4485), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [sym_type_parameters] = STATE(5203), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2828), + [anon_sym_export] = ACTIONS(2830), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2830), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2830), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2835), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2842), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2830), + [anon_sym_function] = ACTIONS(2846), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2832), - [anon_sym_readonly] = ACTIONS(2832), - [anon_sym_get] = ACTIONS(2852), - [anon_sym_set] = ACTIONS(2852), - [anon_sym_declare] = ACTIONS(2832), - [anon_sym_public] = ACTIONS(2832), - [anon_sym_private] = ACTIONS(2832), - [anon_sym_protected] = ACTIONS(2832), - [anon_sym_module] = ACTIONS(2832), - [anon_sym_any] = ACTIONS(2832), - [anon_sym_number] = ACTIONS(2832), - [anon_sym_boolean] = ACTIONS(2832), - [anon_sym_string] = ACTIONS(2832), - [anon_sym_symbol] = ACTIONS(2832), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2830), + [anon_sym_readonly] = ACTIONS(2830), + [anon_sym_get] = ACTIONS(2850), + [anon_sym_set] = ACTIONS(2850), + [anon_sym_declare] = ACTIONS(2830), + [anon_sym_public] = ACTIONS(2830), + [anon_sym_private] = ACTIONS(2830), + [anon_sym_protected] = ACTIONS(2830), + [anon_sym_module] = ACTIONS(2830), + [anon_sym_any] = ACTIONS(2830), + [anon_sym_number] = ACTIONS(2830), + [anon_sym_boolean] = ACTIONS(2830), + [anon_sym_string] = ACTIONS(2830), + [anon_sym_symbol] = ACTIONS(2830), + [sym__automatic_semicolon] = ACTIONS(1672), }, [921] = { - [sym_declaration] = STATE(4599), - [sym_variable_declaration] = STATE(4594), - [sym_lexical_declaration] = STATE(4594), - [sym_class_declaration] = STATE(4594), - [sym_function_declaration] = STATE(4594), - [sym_generator_function_declaration] = STATE(4594), + [sym_declaration] = STATE(1204), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(4594), - [sym_ambient_declaration] = STATE(4594), - [sym_abstract_class_declaration] = STATE(4594), - [sym_module] = STATE(4594), - [sym_internal_module] = STATE(4596), - [sym_import_alias] = STATE(4594), - [sym_interface_declaration] = STATE(4594), - [sym_enum_declaration] = STATE(4594), - [sym_type_alias_declaration] = STATE(4594), - [aux_sym_export_statement_repeat1] = STATE(4540), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2854), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2856), - [anon_sym_import] = ACTIONS(2858), - [anon_sym_var] = ACTIONS(2860), - [anon_sym_let] = ACTIONS(2862), - [anon_sym_const] = ACTIONS(2864), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2866), - [anon_sym_async] = ACTIONS(2868), - [anon_sym_function] = ACTIONS(2870), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2872), - [anon_sym_module] = ACTIONS(2874), - [anon_sym_abstract] = ACTIONS(2876), - [anon_sym_global] = ACTIONS(2878), - [anon_sym_interface] = ACTIONS(2880), - [anon_sym_enum] = ACTIONS(2882), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [922] = { - [sym_declaration] = STATE(1093), - [sym_variable_declaration] = STATE(1171), - [sym_lexical_declaration] = STATE(1171), - [sym_class_declaration] = STATE(1171), - [sym_function_declaration] = STATE(1171), - [sym_generator_function_declaration] = STATE(1171), + [sym_declaration] = STATE(1204), + [sym_variable_declaration] = STATE(1205), + [sym_lexical_declaration] = STATE(1205), + [sym_class_declaration] = STATE(1205), + [sym_function_declaration] = STATE(1205), + [sym_generator_function_declaration] = STATE(1205), [sym_decorator] = STATE(3823), - [sym_function_signature] = STATE(1171), - [sym_ambient_declaration] = STATE(1171), - [sym_abstract_class_declaration] = STATE(1171), - [sym_module] = STATE(1171), - [sym_internal_module] = STATE(1203), - [sym_import_alias] = STATE(1171), - [sym_interface_declaration] = STATE(1171), - [sym_enum_declaration] = STATE(1171), - [sym_type_alias_declaration] = STATE(1171), - [aux_sym_export_statement_repeat1] = STATE(4424), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2674), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2327), - [anon_sym_import] = ACTIONS(2333), - [anon_sym_var] = ACTIONS(2335), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2339), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_class] = ACTIONS(2350), - [anon_sym_async] = ACTIONS(2352), - [anon_sym_function] = ACTIONS(2354), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1636), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [sym_function_signature] = STATE(1205), + [sym_ambient_declaration] = STATE(1205), + [sym_abstract_class_declaration] = STATE(1205), + [sym_module] = STATE(1205), + [sym_internal_module] = STATE(1172), + [sym_import_alias] = STATE(1205), + [sym_interface_declaration] = STATE(1205), + [sym_enum_declaration] = STATE(1205), + [sym_type_alias_declaration] = STATE(1205), + [aux_sym_export_statement_repeat1] = STATE(4491), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2672), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2333), + [anon_sym_import] = ACTIONS(2339), + [anon_sym_var] = ACTIONS(2341), + [anon_sym_let] = ACTIONS(2343), + [anon_sym_const] = ACTIONS(2345), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2356), + [anon_sym_async] = ACTIONS(2358), + [anon_sym_function] = ACTIONS(2360), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_AT] = ACTIONS(93), - [anon_sym_declare] = ACTIONS(2356), - [anon_sym_module] = ACTIONS(2678), - [anon_sym_abstract] = ACTIONS(2360), - [anon_sym_global] = ACTIONS(2680), - [anon_sym_interface] = ACTIONS(2362), - [anon_sym_enum] = ACTIONS(2364), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_declare] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2676), + [anon_sym_abstract] = ACTIONS(2366), + [anon_sym_global] = ACTIONS(2678), + [anon_sym_interface] = ACTIONS(2368), + [anon_sym_enum] = ACTIONS(2370), + [sym__automatic_semicolon] = ACTIONS(1672), }, [923] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2884), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2884), - [anon_sym_set] = ACTIONS(2884), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym_declaration] = STATE(4480), + [sym_variable_declaration] = STATE(4475), + [sym_lexical_declaration] = STATE(4475), + [sym_class_declaration] = STATE(4475), + [sym_function_declaration] = STATE(4475), + [sym_generator_function_declaration] = STATE(4475), + [sym_decorator] = STATE(3823), + [sym_function_signature] = STATE(4475), + [sym_ambient_declaration] = STATE(4475), + [sym_abstract_class_declaration] = STATE(4475), + [sym_module] = STATE(4475), + [sym_internal_module] = STATE(4477), + [sym_import_alias] = STATE(4475), + [sym_interface_declaration] = STATE(4475), + [sym_enum_declaration] = STATE(4475), + [sym_type_alias_declaration] = STATE(4475), + [aux_sym_export_statement_repeat1] = STATE(4582), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2854), + [anon_sym_import] = ACTIONS(2856), + [anon_sym_var] = ACTIONS(2858), + [anon_sym_let] = ACTIONS(2860), + [anon_sym_const] = ACTIONS(2862), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_class] = ACTIONS(2864), + [anon_sym_async] = ACTIONS(2866), + [anon_sym_function] = ACTIONS(2868), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1672), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_declare] = ACTIONS(2870), + [anon_sym_module] = ACTIONS(2872), + [anon_sym_abstract] = ACTIONS(2874), + [anon_sym_global] = ACTIONS(2876), + [anon_sym_interface] = ACTIONS(2878), + [anon_sym_enum] = ACTIONS(2880), + [sym__automatic_semicolon] = ACTIONS(1672), }, [924] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2882), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [925] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), + [ts_builtin_sym_end] = ACTIONS(2884), + [sym_identifier] = ACTIONS(2886), + [anon_sym_export] = ACTIONS(2886), + [anon_sym_default] = ACTIONS(2886), + [anon_sym_type] = ACTIONS(2886), + [anon_sym_EQ] = ACTIONS(2886), + [anon_sym_namespace] = ACTIONS(2886), + [anon_sym_LBRACE] = ACTIONS(2884), + [anon_sym_COMMA] = ACTIONS(2884), + [anon_sym_RBRACE] = ACTIONS(2884), + [anon_sym_typeof] = ACTIONS(2886), + [anon_sym_import] = ACTIONS(2886), + [anon_sym_var] = ACTIONS(2886), + [anon_sym_let] = ACTIONS(2886), + [anon_sym_const] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(2884), + [anon_sym_else] = ACTIONS(2886), + [anon_sym_if] = ACTIONS(2886), + [anon_sym_switch] = ACTIONS(2886), + [anon_sym_for] = ACTIONS(2886), + [anon_sym_LPAREN] = ACTIONS(2884), + [anon_sym_RPAREN] = ACTIONS(2884), + [anon_sym_await] = ACTIONS(2886), + [anon_sym_while] = ACTIONS(2886), + [anon_sym_do] = ACTIONS(2886), + [anon_sym_try] = ACTIONS(2886), + [anon_sym_with] = ACTIONS(2886), + [anon_sym_break] = ACTIONS(2886), + [anon_sym_continue] = ACTIONS(2886), + [anon_sym_debugger] = ACTIONS(2886), + [anon_sym_return] = ACTIONS(2886), + [anon_sym_throw] = ACTIONS(2886), + [anon_sym_SEMI] = ACTIONS(2884), + [anon_sym_COLON] = ACTIONS(2884), + [anon_sym_case] = ACTIONS(2886), + [anon_sym_yield] = ACTIONS(2886), + [anon_sym_LBRACK] = ACTIONS(2884), + [anon_sym_RBRACK] = ACTIONS(2884), + [anon_sym_LT] = ACTIONS(2884), + [anon_sym_GT] = ACTIONS(2884), + [anon_sym_SLASH] = ACTIONS(2886), + [anon_sym_class] = ACTIONS(2886), [anon_sym_async] = ACTIONS(2886), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_function] = ACTIONS(2886), + [anon_sym_EQ_GT] = ACTIONS(2884), + [anon_sym_new] = ACTIONS(2886), + [anon_sym_QMARK] = ACTIONS(2884), + [anon_sym_AMP] = ACTIONS(2884), + [anon_sym_PIPE] = ACTIONS(2884), + [anon_sym_PLUS] = ACTIONS(2886), + [anon_sym_DASH] = ACTIONS(2886), + [anon_sym_TILDE] = ACTIONS(2884), + [anon_sym_void] = ACTIONS(2886), + [anon_sym_delete] = ACTIONS(2886), + [anon_sym_PLUS_PLUS] = ACTIONS(2884), + [anon_sym_DASH_DASH] = ACTIONS(2884), + [anon_sym_DQUOTE] = ACTIONS(2884), + [anon_sym_SQUOTE] = ACTIONS(2884), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2884), + [sym_number] = ACTIONS(2884), + [sym_this] = ACTIONS(2886), + [sym_super] = ACTIONS(2886), + [sym_true] = ACTIONS(2886), + [sym_false] = ACTIONS(2886), + [sym_null] = ACTIONS(2886), + [sym_undefined] = ACTIONS(2886), + [anon_sym_AT] = ACTIONS(2884), + [anon_sym_static] = ACTIONS(2886), + [anon_sym_readonly] = ACTIONS(2886), + [anon_sym_get] = ACTIONS(2886), + [anon_sym_set] = ACTIONS(2886), + [anon_sym_declare] = ACTIONS(2886), + [anon_sym_public] = ACTIONS(2886), + [anon_sym_private] = ACTIONS(2886), + [anon_sym_protected] = ACTIONS(2886), + [anon_sym_module] = ACTIONS(2886), + [anon_sym_any] = ACTIONS(2886), + [anon_sym_number] = ACTIONS(2886), + [anon_sym_boolean] = ACTIONS(2886), + [anon_sym_string] = ACTIONS(2886), + [anon_sym_symbol] = ACTIONS(2886), + [anon_sym_abstract] = ACTIONS(2886), + [anon_sym_interface] = ACTIONS(2886), + [anon_sym_extends] = ACTIONS(2886), + [anon_sym_enum] = ACTIONS(2886), }, [926] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2884), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2884), - [anon_sym_set] = ACTIONS(2884), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(2049), + [sym_identifier] = ACTIONS(2051), + [anon_sym_export] = ACTIONS(2051), + [anon_sym_default] = ACTIONS(2051), + [anon_sym_type] = ACTIONS(2051), + [anon_sym_EQ] = ACTIONS(2051), + [anon_sym_namespace] = ACTIONS(2051), + [anon_sym_LBRACE] = ACTIONS(2049), + [anon_sym_COMMA] = ACTIONS(2049), + [anon_sym_RBRACE] = ACTIONS(2049), + [anon_sym_typeof] = ACTIONS(2051), + [anon_sym_import] = ACTIONS(2051), + [anon_sym_var] = ACTIONS(2051), + [anon_sym_let] = ACTIONS(2051), + [anon_sym_const] = ACTIONS(2051), + [anon_sym_BANG] = ACTIONS(2049), + [anon_sym_else] = ACTIONS(2051), + [anon_sym_if] = ACTIONS(2051), + [anon_sym_switch] = ACTIONS(2051), + [anon_sym_for] = ACTIONS(2051), + [anon_sym_LPAREN] = ACTIONS(2049), + [anon_sym_RPAREN] = ACTIONS(2049), + [anon_sym_await] = ACTIONS(2051), + [anon_sym_while] = ACTIONS(2051), + [anon_sym_do] = ACTIONS(2051), + [anon_sym_try] = ACTIONS(2051), + [anon_sym_with] = ACTIONS(2051), + [anon_sym_break] = ACTIONS(2051), + [anon_sym_continue] = ACTIONS(2051), + [anon_sym_debugger] = ACTIONS(2051), + [anon_sym_return] = ACTIONS(2051), + [anon_sym_throw] = ACTIONS(2051), + [anon_sym_SEMI] = ACTIONS(2049), + [anon_sym_COLON] = ACTIONS(2049), + [anon_sym_case] = ACTIONS(2051), + [anon_sym_yield] = ACTIONS(2051), + [anon_sym_LBRACK] = ACTIONS(2049), + [anon_sym_RBRACK] = ACTIONS(2049), + [anon_sym_LT] = ACTIONS(2049), + [anon_sym_GT] = ACTIONS(2049), + [anon_sym_SLASH] = ACTIONS(2051), + [anon_sym_class] = ACTIONS(2051), + [anon_sym_async] = ACTIONS(2051), + [anon_sym_function] = ACTIONS(2051), + [anon_sym_EQ_GT] = ACTIONS(2049), + [anon_sym_new] = ACTIONS(2051), + [anon_sym_QMARK] = ACTIONS(2049), + [anon_sym_AMP] = ACTIONS(2049), + [anon_sym_PIPE] = ACTIONS(2049), + [anon_sym_PLUS] = ACTIONS(2051), + [anon_sym_DASH] = ACTIONS(2051), + [anon_sym_TILDE] = ACTIONS(2049), + [anon_sym_void] = ACTIONS(2051), + [anon_sym_delete] = ACTIONS(2051), + [anon_sym_PLUS_PLUS] = ACTIONS(2049), + [anon_sym_DASH_DASH] = ACTIONS(2049), + [anon_sym_DQUOTE] = ACTIONS(2049), + [anon_sym_SQUOTE] = ACTIONS(2049), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2049), + [sym_number] = ACTIONS(2049), + [sym_this] = ACTIONS(2051), + [sym_super] = ACTIONS(2051), + [sym_true] = ACTIONS(2051), + [sym_false] = ACTIONS(2051), + [sym_null] = ACTIONS(2051), + [sym_undefined] = ACTIONS(2051), + [anon_sym_AT] = ACTIONS(2049), + [anon_sym_static] = ACTIONS(2051), + [anon_sym_readonly] = ACTIONS(2051), + [anon_sym_get] = ACTIONS(2051), + [anon_sym_set] = ACTIONS(2051), + [anon_sym_declare] = ACTIONS(2051), + [anon_sym_public] = ACTIONS(2051), + [anon_sym_private] = ACTIONS(2051), + [anon_sym_protected] = ACTIONS(2051), + [anon_sym_module] = ACTIONS(2051), + [anon_sym_any] = ACTIONS(2051), + [anon_sym_number] = ACTIONS(2051), + [anon_sym_boolean] = ACTIONS(2051), + [anon_sym_string] = ACTIONS(2051), + [anon_sym_symbol] = ACTIONS(2051), + [anon_sym_abstract] = ACTIONS(2051), + [anon_sym_interface] = ACTIONS(2051), + [anon_sym_extends] = ACTIONS(2051), + [anon_sym_enum] = ACTIONS(2051), }, [927] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(2888), + [sym_identifier] = ACTIONS(2890), + [anon_sym_export] = ACTIONS(2890), + [anon_sym_default] = ACTIONS(2890), + [anon_sym_type] = ACTIONS(2890), + [anon_sym_EQ] = ACTIONS(2890), + [anon_sym_namespace] = ACTIONS(2890), + [anon_sym_LBRACE] = ACTIONS(2888), + [anon_sym_COMMA] = ACTIONS(2888), + [anon_sym_RBRACE] = ACTIONS(2888), + [anon_sym_typeof] = ACTIONS(2890), + [anon_sym_import] = ACTIONS(2890), + [anon_sym_var] = ACTIONS(2890), + [anon_sym_let] = ACTIONS(2890), + [anon_sym_const] = ACTIONS(2890), + [anon_sym_BANG] = ACTIONS(2888), + [anon_sym_else] = ACTIONS(2890), + [anon_sym_if] = ACTIONS(2890), + [anon_sym_switch] = ACTIONS(2890), + [anon_sym_for] = ACTIONS(2890), + [anon_sym_LPAREN] = ACTIONS(2888), + [anon_sym_RPAREN] = ACTIONS(2888), + [anon_sym_await] = ACTIONS(2890), + [anon_sym_while] = ACTIONS(2890), + [anon_sym_do] = ACTIONS(2890), + [anon_sym_try] = ACTIONS(2890), + [anon_sym_with] = ACTIONS(2890), + [anon_sym_break] = ACTIONS(2890), + [anon_sym_continue] = ACTIONS(2890), + [anon_sym_debugger] = ACTIONS(2890), + [anon_sym_return] = ACTIONS(2890), + [anon_sym_throw] = ACTIONS(2890), + [anon_sym_SEMI] = ACTIONS(2888), + [anon_sym_COLON] = ACTIONS(2888), + [anon_sym_case] = ACTIONS(2890), + [anon_sym_yield] = ACTIONS(2890), + [anon_sym_LBRACK] = ACTIONS(2888), + [anon_sym_RBRACK] = ACTIONS(2888), + [anon_sym_LT] = ACTIONS(2888), + [anon_sym_GT] = ACTIONS(2888), + [anon_sym_SLASH] = ACTIONS(2890), + [anon_sym_class] = ACTIONS(2890), + [anon_sym_async] = ACTIONS(2890), + [anon_sym_function] = ACTIONS(2890), + [anon_sym_EQ_GT] = ACTIONS(2888), + [anon_sym_new] = ACTIONS(2890), + [anon_sym_QMARK] = ACTIONS(2888), + [anon_sym_AMP] = ACTIONS(2888), + [anon_sym_PIPE] = ACTIONS(2888), + [anon_sym_PLUS] = ACTIONS(2890), + [anon_sym_DASH] = ACTIONS(2890), + [anon_sym_TILDE] = ACTIONS(2888), + [anon_sym_void] = ACTIONS(2890), + [anon_sym_delete] = ACTIONS(2890), + [anon_sym_PLUS_PLUS] = ACTIONS(2888), + [anon_sym_DASH_DASH] = ACTIONS(2888), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_SQUOTE] = ACTIONS(2888), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2888), + [sym_number] = ACTIONS(2888), + [sym_this] = ACTIONS(2890), + [sym_super] = ACTIONS(2890), + [sym_true] = ACTIONS(2890), + [sym_false] = ACTIONS(2890), + [sym_null] = ACTIONS(2890), + [sym_undefined] = ACTIONS(2890), + [anon_sym_AT] = ACTIONS(2888), + [anon_sym_static] = ACTIONS(2890), + [anon_sym_readonly] = ACTIONS(2890), + [anon_sym_get] = ACTIONS(2890), + [anon_sym_set] = ACTIONS(2890), + [anon_sym_declare] = ACTIONS(2890), + [anon_sym_public] = ACTIONS(2890), + [anon_sym_private] = ACTIONS(2890), + [anon_sym_protected] = ACTIONS(2890), + [anon_sym_module] = ACTIONS(2890), + [anon_sym_any] = ACTIONS(2890), + [anon_sym_number] = ACTIONS(2890), + [anon_sym_boolean] = ACTIONS(2890), + [anon_sym_string] = ACTIONS(2890), + [anon_sym_symbol] = ACTIONS(2890), + [anon_sym_abstract] = ACTIONS(2890), + [anon_sym_interface] = ACTIONS(2890), + [anon_sym_extends] = ACTIONS(2890), + [anon_sym_enum] = ACTIONS(2890), }, [928] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2884), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2884), - [anon_sym_set] = ACTIONS(2884), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(2173), + [sym_identifier] = ACTIONS(2175), + [anon_sym_export] = ACTIONS(2175), + [anon_sym_default] = ACTIONS(2175), + [anon_sym_type] = ACTIONS(2175), + [anon_sym_EQ] = ACTIONS(2175), + [anon_sym_namespace] = ACTIONS(2175), + [anon_sym_LBRACE] = ACTIONS(2173), + [anon_sym_COMMA] = ACTIONS(2173), + [anon_sym_RBRACE] = ACTIONS(2173), + [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_RPAREN] = 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_COLON] = ACTIONS(2173), + [anon_sym_case] = ACTIONS(2175), + [anon_sym_yield] = ACTIONS(2175), + [anon_sym_LBRACK] = ACTIONS(2173), + [anon_sym_RBRACK] = ACTIONS(2173), + [anon_sym_LT] = ACTIONS(2173), + [anon_sym_GT] = ACTIONS(2173), + [anon_sym_SLASH] = ACTIONS(2175), + [anon_sym_class] = ACTIONS(2175), + [anon_sym_async] = ACTIONS(2175), + [anon_sym_function] = ACTIONS(2175), + [anon_sym_EQ_GT] = ACTIONS(2173), + [anon_sym_new] = ACTIONS(2175), + [anon_sym_QMARK] = ACTIONS(2173), + [anon_sym_AMP] = ACTIONS(2173), + [anon_sym_PIPE] = ACTIONS(2173), + [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_readonly] = ACTIONS(2175), + [anon_sym_get] = ACTIONS(2175), + [anon_sym_set] = ACTIONS(2175), + [anon_sym_declare] = ACTIONS(2175), + [anon_sym_public] = ACTIONS(2175), + [anon_sym_private] = ACTIONS(2175), + [anon_sym_protected] = ACTIONS(2175), + [anon_sym_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_abstract] = ACTIONS(2175), + [anon_sym_interface] = ACTIONS(2175), + [anon_sym_extends] = ACTIONS(2175), + [anon_sym_enum] = ACTIONS(2175), }, [929] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2882), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [930] = { - [ts_builtin_sym_end] = ACTIONS(2892), - [sym_identifier] = ACTIONS(2894), - [anon_sym_export] = ACTIONS(2894), - [anon_sym_default] = ACTIONS(2894), - [anon_sym_type] = ACTIONS(2894), - [anon_sym_EQ] = ACTIONS(2894), - [anon_sym_namespace] = ACTIONS(2894), - [anon_sym_LBRACE] = ACTIONS(2892), - [anon_sym_COMMA] = ACTIONS(2892), - [anon_sym_RBRACE] = ACTIONS(2892), - [anon_sym_typeof] = ACTIONS(2894), - [anon_sym_import] = ACTIONS(2894), - [anon_sym_var] = ACTIONS(2894), - [anon_sym_let] = ACTIONS(2894), - [anon_sym_const] = ACTIONS(2894), - [anon_sym_BANG] = ACTIONS(2892), - [anon_sym_else] = ACTIONS(2894), - [anon_sym_if] = ACTIONS(2894), - [anon_sym_switch] = ACTIONS(2894), - [anon_sym_for] = ACTIONS(2894), - [anon_sym_LPAREN] = ACTIONS(2892), - [anon_sym_RPAREN] = ACTIONS(2892), - [anon_sym_await] = ACTIONS(2894), - [anon_sym_while] = ACTIONS(2894), - [anon_sym_do] = ACTIONS(2894), - [anon_sym_try] = ACTIONS(2894), - [anon_sym_with] = ACTIONS(2894), - [anon_sym_break] = ACTIONS(2894), - [anon_sym_continue] = ACTIONS(2894), - [anon_sym_debugger] = ACTIONS(2894), - [anon_sym_return] = ACTIONS(2894), - [anon_sym_throw] = ACTIONS(2894), - [anon_sym_SEMI] = ACTIONS(2892), - [anon_sym_COLON] = ACTIONS(2892), - [anon_sym_case] = ACTIONS(2894), - [anon_sym_yield] = ACTIONS(2894), - [anon_sym_LBRACK] = ACTIONS(2892), - [anon_sym_RBRACK] = ACTIONS(2892), - [anon_sym_LT] = ACTIONS(2892), - [anon_sym_GT] = ACTIONS(2892), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_class] = ACTIONS(2894), - [anon_sym_async] = ACTIONS(2894), - [anon_sym_function] = ACTIONS(2894), - [anon_sym_EQ_GT] = ACTIONS(2892), - [anon_sym_new] = ACTIONS(2894), - [anon_sym_QMARK] = ACTIONS(2892), - [anon_sym_AMP] = ACTIONS(2892), - [anon_sym_PIPE] = ACTIONS(2892), - [anon_sym_PLUS] = ACTIONS(2894), - [anon_sym_DASH] = ACTIONS(2894), - [anon_sym_TILDE] = ACTIONS(2892), - [anon_sym_void] = ACTIONS(2894), - [anon_sym_delete] = ACTIONS(2894), - [anon_sym_PLUS_PLUS] = ACTIONS(2892), - [anon_sym_DASH_DASH] = ACTIONS(2892), - [anon_sym_DQUOTE] = ACTIONS(2892), - [anon_sym_SQUOTE] = ACTIONS(2892), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2892), - [sym_number] = ACTIONS(2892), - [sym_this] = ACTIONS(2894), - [sym_super] = ACTIONS(2894), - [sym_true] = ACTIONS(2894), - [sym_false] = ACTIONS(2894), - [sym_null] = ACTIONS(2894), - [sym_undefined] = ACTIONS(2894), - [anon_sym_AT] = ACTIONS(2892), - [anon_sym_static] = ACTIONS(2894), - [anon_sym_readonly] = ACTIONS(2894), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), [anon_sym_get] = ACTIONS(2894), [anon_sym_set] = ACTIONS(2894), - [anon_sym_declare] = ACTIONS(2894), - [anon_sym_public] = ACTIONS(2894), - [anon_sym_private] = ACTIONS(2894), - [anon_sym_protected] = ACTIONS(2894), - [anon_sym_module] = ACTIONS(2894), - [anon_sym_any] = ACTIONS(2894), - [anon_sym_number] = ACTIONS(2894), - [anon_sym_boolean] = ACTIONS(2894), - [anon_sym_string] = ACTIONS(2894), - [anon_sym_symbol] = ACTIONS(2894), - [anon_sym_abstract] = ACTIONS(2894), - [anon_sym_interface] = ACTIONS(2894), - [anon_sym_extends] = ACTIONS(2894), - [anon_sym_enum] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [931] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [932] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2884), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2884), - [anon_sym_set] = ACTIONS(2884), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [933] = { - [ts_builtin_sym_end] = ACTIONS(2896), - [sym_identifier] = ACTIONS(2898), - [anon_sym_export] = ACTIONS(2898), - [anon_sym_default] = ACTIONS(2898), - [anon_sym_type] = ACTIONS(2898), - [anon_sym_EQ] = ACTIONS(2898), - [anon_sym_namespace] = ACTIONS(2898), - [anon_sym_LBRACE] = ACTIONS(2896), - [anon_sym_COMMA] = ACTIONS(2896), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_typeof] = ACTIONS(2898), - [anon_sym_import] = ACTIONS(2898), - [anon_sym_var] = ACTIONS(2898), - [anon_sym_let] = ACTIONS(2898), - [anon_sym_const] = ACTIONS(2898), - [anon_sym_BANG] = ACTIONS(2896), - [anon_sym_else] = ACTIONS(2898), - [anon_sym_if] = ACTIONS(2898), - [anon_sym_switch] = ACTIONS(2898), - [anon_sym_for] = ACTIONS(2898), - [anon_sym_LPAREN] = ACTIONS(2896), - [anon_sym_RPAREN] = ACTIONS(2896), - [anon_sym_await] = ACTIONS(2898), - [anon_sym_while] = ACTIONS(2898), - [anon_sym_do] = ACTIONS(2898), - [anon_sym_try] = ACTIONS(2898), - [anon_sym_with] = ACTIONS(2898), - [anon_sym_break] = ACTIONS(2898), - [anon_sym_continue] = ACTIONS(2898), - [anon_sym_debugger] = ACTIONS(2898), - [anon_sym_return] = ACTIONS(2898), - [anon_sym_throw] = ACTIONS(2898), - [anon_sym_SEMI] = ACTIONS(2896), - [anon_sym_COLON] = ACTIONS(2896), - [anon_sym_case] = ACTIONS(2898), - [anon_sym_yield] = ACTIONS(2898), - [anon_sym_LBRACK] = ACTIONS(2896), - [anon_sym_RBRACK] = ACTIONS(2896), - [anon_sym_LT] = ACTIONS(2896), - [anon_sym_GT] = ACTIONS(2896), - [anon_sym_SLASH] = ACTIONS(2898), - [anon_sym_class] = ACTIONS(2898), - [anon_sym_async] = ACTIONS(2898), - [anon_sym_function] = ACTIONS(2898), - [anon_sym_EQ_GT] = ACTIONS(2896), - [anon_sym_new] = ACTIONS(2898), - [anon_sym_QMARK] = ACTIONS(2896), - [anon_sym_AMP] = ACTIONS(2896), - [anon_sym_PIPE] = ACTIONS(2896), - [anon_sym_PLUS] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_TILDE] = ACTIONS(2896), - [anon_sym_void] = ACTIONS(2898), - [anon_sym_delete] = ACTIONS(2898), - [anon_sym_PLUS_PLUS] = ACTIONS(2896), - [anon_sym_DASH_DASH] = ACTIONS(2896), - [anon_sym_DQUOTE] = ACTIONS(2896), - [anon_sym_SQUOTE] = ACTIONS(2896), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2896), - [sym_number] = ACTIONS(2896), - [sym_this] = ACTIONS(2898), - [sym_super] = ACTIONS(2898), - [sym_true] = ACTIONS(2898), - [sym_false] = ACTIONS(2898), - [sym_null] = ACTIONS(2898), - [sym_undefined] = ACTIONS(2898), - [anon_sym_AT] = ACTIONS(2896), - [anon_sym_static] = ACTIONS(2898), - [anon_sym_readonly] = ACTIONS(2898), - [anon_sym_get] = ACTIONS(2898), - [anon_sym_set] = ACTIONS(2898), - [anon_sym_declare] = ACTIONS(2898), - [anon_sym_public] = ACTIONS(2898), - [anon_sym_private] = ACTIONS(2898), - [anon_sym_protected] = ACTIONS(2898), - [anon_sym_module] = ACTIONS(2898), - [anon_sym_any] = ACTIONS(2898), - [anon_sym_number] = ACTIONS(2898), - [anon_sym_boolean] = ACTIONS(2898), - [anon_sym_string] = ACTIONS(2898), - [anon_sym_symbol] = ACTIONS(2898), - [anon_sym_abstract] = ACTIONS(2898), - [anon_sym_interface] = ACTIONS(2898), - [anon_sym_extends] = ACTIONS(2898), - [anon_sym_enum] = ACTIONS(2898), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2882), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [934] = { - [ts_builtin_sym_end] = ACTIONS(2201), - [sym_identifier] = ACTIONS(2203), - [anon_sym_export] = ACTIONS(2203), - [anon_sym_default] = ACTIONS(2203), - [anon_sym_type] = ACTIONS(2203), - [anon_sym_EQ] = ACTIONS(2203), - [anon_sym_namespace] = ACTIONS(2203), - [anon_sym_LBRACE] = ACTIONS(2201), - [anon_sym_COMMA] = ACTIONS(2201), - [anon_sym_RBRACE] = ACTIONS(2201), - [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_RPAREN] = 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_COLON] = ACTIONS(2201), - [anon_sym_case] = ACTIONS(2203), - [anon_sym_yield] = ACTIONS(2203), - [anon_sym_LBRACK] = ACTIONS(2201), - [anon_sym_RBRACK] = ACTIONS(2201), - [anon_sym_LT] = ACTIONS(2201), - [anon_sym_GT] = ACTIONS(2201), - [anon_sym_SLASH] = ACTIONS(2203), - [anon_sym_class] = ACTIONS(2203), - [anon_sym_async] = ACTIONS(2203), - [anon_sym_function] = ACTIONS(2203), - [anon_sym_EQ_GT] = ACTIONS(2201), - [anon_sym_new] = ACTIONS(2203), - [anon_sym_QMARK] = ACTIONS(2201), - [anon_sym_AMP] = ACTIONS(2201), - [anon_sym_PIPE] = ACTIONS(2201), - [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_readonly] = 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_abstract] = ACTIONS(2203), - [anon_sym_interface] = ACTIONS(2203), - [anon_sym_extends] = ACTIONS(2203), - [anon_sym_enum] = ACTIONS(2203), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [935] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2884), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2884), - [anon_sym_set] = ACTIONS(2884), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(2898), + [sym_identifier] = ACTIONS(2900), + [anon_sym_export] = ACTIONS(2900), + [anon_sym_default] = ACTIONS(2900), + [anon_sym_type] = ACTIONS(2900), + [anon_sym_EQ] = ACTIONS(2900), + [anon_sym_namespace] = ACTIONS(2900), + [anon_sym_LBRACE] = ACTIONS(2898), + [anon_sym_COMMA] = ACTIONS(2898), + [anon_sym_RBRACE] = ACTIONS(2898), + [anon_sym_typeof] = ACTIONS(2900), + [anon_sym_import] = ACTIONS(2900), + [anon_sym_var] = ACTIONS(2900), + [anon_sym_let] = ACTIONS(2900), + [anon_sym_const] = ACTIONS(2900), + [anon_sym_BANG] = ACTIONS(2898), + [anon_sym_else] = ACTIONS(2900), + [anon_sym_if] = ACTIONS(2900), + [anon_sym_switch] = ACTIONS(2900), + [anon_sym_for] = ACTIONS(2900), + [anon_sym_LPAREN] = ACTIONS(2898), + [anon_sym_RPAREN] = ACTIONS(2898), + [anon_sym_await] = ACTIONS(2900), + [anon_sym_while] = ACTIONS(2900), + [anon_sym_do] = ACTIONS(2900), + [anon_sym_try] = ACTIONS(2900), + [anon_sym_with] = ACTIONS(2900), + [anon_sym_break] = ACTIONS(2900), + [anon_sym_continue] = ACTIONS(2900), + [anon_sym_debugger] = ACTIONS(2900), + [anon_sym_return] = ACTIONS(2900), + [anon_sym_throw] = ACTIONS(2900), + [anon_sym_SEMI] = ACTIONS(2898), + [anon_sym_COLON] = ACTIONS(2898), + [anon_sym_case] = ACTIONS(2900), + [anon_sym_yield] = ACTIONS(2900), + [anon_sym_LBRACK] = ACTIONS(2898), + [anon_sym_RBRACK] = ACTIONS(2898), + [anon_sym_LT] = ACTIONS(2898), + [anon_sym_GT] = ACTIONS(2898), + [anon_sym_SLASH] = ACTIONS(2900), + [anon_sym_class] = ACTIONS(2900), + [anon_sym_async] = ACTIONS(2900), + [anon_sym_function] = ACTIONS(2900), + [anon_sym_EQ_GT] = ACTIONS(2898), + [anon_sym_new] = ACTIONS(2900), + [anon_sym_QMARK] = ACTIONS(2898), + [anon_sym_AMP] = ACTIONS(2898), + [anon_sym_PIPE] = ACTIONS(2898), + [anon_sym_PLUS] = ACTIONS(2900), + [anon_sym_DASH] = ACTIONS(2900), + [anon_sym_TILDE] = ACTIONS(2898), + [anon_sym_void] = ACTIONS(2900), + [anon_sym_delete] = ACTIONS(2900), + [anon_sym_PLUS_PLUS] = ACTIONS(2898), + [anon_sym_DASH_DASH] = ACTIONS(2898), + [anon_sym_DQUOTE] = ACTIONS(2898), + [anon_sym_SQUOTE] = ACTIONS(2898), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2898), + [sym_number] = ACTIONS(2898), + [sym_this] = ACTIONS(2900), + [sym_super] = ACTIONS(2900), + [sym_true] = ACTIONS(2900), + [sym_false] = ACTIONS(2900), + [sym_null] = ACTIONS(2900), + [sym_undefined] = ACTIONS(2900), + [anon_sym_AT] = ACTIONS(2898), + [anon_sym_static] = ACTIONS(2900), + [anon_sym_readonly] = ACTIONS(2900), + [anon_sym_get] = ACTIONS(2900), + [anon_sym_set] = ACTIONS(2900), + [anon_sym_declare] = ACTIONS(2900), + [anon_sym_public] = ACTIONS(2900), + [anon_sym_private] = ACTIONS(2900), + [anon_sym_protected] = ACTIONS(2900), + [anon_sym_module] = ACTIONS(2900), + [anon_sym_any] = ACTIONS(2900), + [anon_sym_number] = ACTIONS(2900), + [anon_sym_boolean] = ACTIONS(2900), + [anon_sym_string] = ACTIONS(2900), + [anon_sym_symbol] = ACTIONS(2900), + [anon_sym_abstract] = ACTIONS(2900), + [anon_sym_interface] = ACTIONS(2900), + [anon_sym_extends] = ACTIONS(2900), + [anon_sym_enum] = ACTIONS(2900), }, [936] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [937] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(2902), + [sym_identifier] = ACTIONS(2904), + [anon_sym_export] = ACTIONS(2904), + [anon_sym_default] = ACTIONS(2904), + [anon_sym_type] = ACTIONS(2904), + [anon_sym_EQ] = ACTIONS(2904), + [anon_sym_namespace] = ACTIONS(2904), + [anon_sym_LBRACE] = ACTIONS(2902), + [anon_sym_COMMA] = ACTIONS(2902), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_typeof] = ACTIONS(2904), + [anon_sym_import] = ACTIONS(2904), + [anon_sym_var] = ACTIONS(2904), + [anon_sym_let] = ACTIONS(2904), + [anon_sym_const] = ACTIONS(2904), + [anon_sym_BANG] = ACTIONS(2902), + [anon_sym_else] = ACTIONS(2904), + [anon_sym_if] = ACTIONS(2904), + [anon_sym_switch] = ACTIONS(2904), + [anon_sym_for] = ACTIONS(2904), + [anon_sym_LPAREN] = ACTIONS(2902), + [anon_sym_RPAREN] = ACTIONS(2902), + [anon_sym_await] = ACTIONS(2904), + [anon_sym_while] = ACTIONS(2904), + [anon_sym_do] = ACTIONS(2904), + [anon_sym_try] = ACTIONS(2904), + [anon_sym_with] = ACTIONS(2904), + [anon_sym_break] = ACTIONS(2904), + [anon_sym_continue] = ACTIONS(2904), + [anon_sym_debugger] = ACTIONS(2904), + [anon_sym_return] = ACTIONS(2904), + [anon_sym_throw] = ACTIONS(2904), + [anon_sym_SEMI] = ACTIONS(2902), + [anon_sym_COLON] = ACTIONS(2902), + [anon_sym_case] = ACTIONS(2904), + [anon_sym_yield] = ACTIONS(2904), + [anon_sym_LBRACK] = ACTIONS(2902), + [anon_sym_RBRACK] = ACTIONS(2902), + [anon_sym_LT] = ACTIONS(2902), + [anon_sym_GT] = ACTIONS(2902), + [anon_sym_SLASH] = ACTIONS(2904), + [anon_sym_class] = ACTIONS(2904), + [anon_sym_async] = ACTIONS(2904), + [anon_sym_function] = ACTIONS(2904), + [anon_sym_EQ_GT] = ACTIONS(2902), + [anon_sym_new] = ACTIONS(2904), + [anon_sym_QMARK] = ACTIONS(2902), + [anon_sym_AMP] = ACTIONS(2902), + [anon_sym_PIPE] = ACTIONS(2902), + [anon_sym_PLUS] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_TILDE] = ACTIONS(2902), + [anon_sym_void] = ACTIONS(2904), + [anon_sym_delete] = ACTIONS(2904), + [anon_sym_PLUS_PLUS] = ACTIONS(2902), + [anon_sym_DASH_DASH] = ACTIONS(2902), + [anon_sym_DQUOTE] = ACTIONS(2902), + [anon_sym_SQUOTE] = ACTIONS(2902), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2902), + [sym_number] = ACTIONS(2902), + [sym_this] = ACTIONS(2904), + [sym_super] = ACTIONS(2904), + [sym_true] = ACTIONS(2904), + [sym_false] = ACTIONS(2904), + [sym_null] = ACTIONS(2904), + [sym_undefined] = ACTIONS(2904), + [anon_sym_AT] = ACTIONS(2902), + [anon_sym_static] = ACTIONS(2904), + [anon_sym_readonly] = ACTIONS(2904), + [anon_sym_get] = ACTIONS(2904), + [anon_sym_set] = ACTIONS(2904), + [anon_sym_declare] = ACTIONS(2904), + [anon_sym_public] = ACTIONS(2904), + [anon_sym_private] = ACTIONS(2904), + [anon_sym_protected] = ACTIONS(2904), + [anon_sym_module] = ACTIONS(2904), + [anon_sym_any] = ACTIONS(2904), + [anon_sym_number] = ACTIONS(2904), + [anon_sym_boolean] = ACTIONS(2904), + [anon_sym_string] = ACTIONS(2904), + [anon_sym_symbol] = ACTIONS(2904), + [anon_sym_abstract] = ACTIONS(2904), + [anon_sym_interface] = ACTIONS(2904), + [anon_sym_extends] = ACTIONS(2904), + [anon_sym_enum] = ACTIONS(2904), }, [938] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [939] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [940] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2884), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2884), - [anon_sym_set] = ACTIONS(2884), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(2906), + [sym_identifier] = ACTIONS(2908), + [anon_sym_export] = ACTIONS(2908), + [anon_sym_default] = ACTIONS(2908), + [anon_sym_type] = ACTIONS(2908), + [anon_sym_EQ] = ACTIONS(2908), + [anon_sym_namespace] = ACTIONS(2908), + [anon_sym_LBRACE] = ACTIONS(2906), + [anon_sym_COMMA] = ACTIONS(2906), + [anon_sym_RBRACE] = ACTIONS(2906), + [anon_sym_typeof] = ACTIONS(2908), + [anon_sym_import] = ACTIONS(2908), + [anon_sym_var] = ACTIONS(2908), + [anon_sym_let] = ACTIONS(2908), + [anon_sym_const] = ACTIONS(2908), + [anon_sym_BANG] = ACTIONS(2906), + [anon_sym_else] = ACTIONS(2908), + [anon_sym_if] = ACTIONS(2908), + [anon_sym_switch] = ACTIONS(2908), + [anon_sym_for] = ACTIONS(2908), + [anon_sym_LPAREN] = ACTIONS(2906), + [anon_sym_RPAREN] = ACTIONS(2906), + [anon_sym_await] = ACTIONS(2908), + [anon_sym_while] = ACTIONS(2908), + [anon_sym_do] = ACTIONS(2908), + [anon_sym_try] = ACTIONS(2908), + [anon_sym_with] = ACTIONS(2908), + [anon_sym_break] = ACTIONS(2908), + [anon_sym_continue] = ACTIONS(2908), + [anon_sym_debugger] = ACTIONS(2908), + [anon_sym_return] = ACTIONS(2908), + [anon_sym_throw] = ACTIONS(2908), + [anon_sym_SEMI] = ACTIONS(2906), + [anon_sym_COLON] = ACTIONS(2906), + [anon_sym_case] = ACTIONS(2908), + [anon_sym_yield] = ACTIONS(2908), + [anon_sym_LBRACK] = ACTIONS(2906), + [anon_sym_RBRACK] = ACTIONS(2906), + [anon_sym_LT] = ACTIONS(2906), + [anon_sym_GT] = ACTIONS(2906), + [anon_sym_SLASH] = ACTIONS(2908), + [anon_sym_class] = ACTIONS(2908), + [anon_sym_async] = ACTIONS(2908), + [anon_sym_function] = ACTIONS(2908), + [anon_sym_EQ_GT] = ACTIONS(2906), + [anon_sym_new] = ACTIONS(2908), + [anon_sym_QMARK] = ACTIONS(2906), + [anon_sym_AMP] = ACTIONS(2906), + [anon_sym_PIPE] = ACTIONS(2906), + [anon_sym_PLUS] = ACTIONS(2908), + [anon_sym_DASH] = ACTIONS(2908), + [anon_sym_TILDE] = ACTIONS(2906), + [anon_sym_void] = ACTIONS(2908), + [anon_sym_delete] = ACTIONS(2908), + [anon_sym_PLUS_PLUS] = ACTIONS(2906), + [anon_sym_DASH_DASH] = ACTIONS(2906), + [anon_sym_DQUOTE] = ACTIONS(2906), + [anon_sym_SQUOTE] = ACTIONS(2906), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2906), + [sym_number] = ACTIONS(2906), + [sym_this] = ACTIONS(2908), + [sym_super] = ACTIONS(2908), + [sym_true] = ACTIONS(2908), + [sym_false] = ACTIONS(2908), + [sym_null] = ACTIONS(2908), + [sym_undefined] = ACTIONS(2908), + [anon_sym_AT] = ACTIONS(2906), + [anon_sym_static] = ACTIONS(2908), + [anon_sym_readonly] = ACTIONS(2908), + [anon_sym_get] = ACTIONS(2908), + [anon_sym_set] = ACTIONS(2908), + [anon_sym_declare] = ACTIONS(2908), + [anon_sym_public] = ACTIONS(2908), + [anon_sym_private] = ACTIONS(2908), + [anon_sym_protected] = ACTIONS(2908), + [anon_sym_module] = ACTIONS(2908), + [anon_sym_any] = ACTIONS(2908), + [anon_sym_number] = ACTIONS(2908), + [anon_sym_boolean] = ACTIONS(2908), + [anon_sym_string] = ACTIONS(2908), + [anon_sym_symbol] = ACTIONS(2908), + [anon_sym_abstract] = ACTIONS(2908), + [anon_sym_interface] = ACTIONS(2908), + [anon_sym_extends] = ACTIONS(2908), + [anon_sym_enum] = ACTIONS(2908), }, [941] = { - [ts_builtin_sym_end] = ACTIONS(2900), - [sym_identifier] = ACTIONS(2902), - [anon_sym_export] = ACTIONS(2902), - [anon_sym_default] = ACTIONS(2902), - [anon_sym_type] = ACTIONS(2902), - [anon_sym_EQ] = ACTIONS(2902), - [anon_sym_namespace] = ACTIONS(2902), - [anon_sym_LBRACE] = ACTIONS(2900), - [anon_sym_COMMA] = ACTIONS(2900), - [anon_sym_RBRACE] = ACTIONS(2900), - [anon_sym_typeof] = ACTIONS(2902), - [anon_sym_import] = ACTIONS(2902), - [anon_sym_var] = ACTIONS(2902), - [anon_sym_let] = ACTIONS(2902), - [anon_sym_const] = ACTIONS(2902), - [anon_sym_BANG] = ACTIONS(2900), - [anon_sym_else] = ACTIONS(2902), - [anon_sym_if] = ACTIONS(2902), - [anon_sym_switch] = ACTIONS(2902), - [anon_sym_for] = ACTIONS(2902), - [anon_sym_LPAREN] = ACTIONS(2900), - [anon_sym_RPAREN] = ACTIONS(2900), - [anon_sym_await] = ACTIONS(2902), - [anon_sym_while] = ACTIONS(2902), - [anon_sym_do] = ACTIONS(2902), - [anon_sym_try] = ACTIONS(2902), - [anon_sym_with] = ACTIONS(2902), - [anon_sym_break] = ACTIONS(2902), - [anon_sym_continue] = ACTIONS(2902), - [anon_sym_debugger] = ACTIONS(2902), - [anon_sym_return] = ACTIONS(2902), - [anon_sym_throw] = ACTIONS(2902), - [anon_sym_SEMI] = ACTIONS(2900), - [anon_sym_COLON] = ACTIONS(2900), - [anon_sym_case] = ACTIONS(2902), - [anon_sym_yield] = ACTIONS(2902), - [anon_sym_LBRACK] = ACTIONS(2900), - [anon_sym_RBRACK] = ACTIONS(2900), - [anon_sym_LT] = ACTIONS(2900), - [anon_sym_GT] = ACTIONS(2900), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_class] = ACTIONS(2902), - [anon_sym_async] = ACTIONS(2902), - [anon_sym_function] = ACTIONS(2902), - [anon_sym_EQ_GT] = ACTIONS(2900), - [anon_sym_new] = ACTIONS(2902), - [anon_sym_QMARK] = ACTIONS(2900), - [anon_sym_AMP] = ACTIONS(2900), - [anon_sym_PIPE] = ACTIONS(2900), - [anon_sym_PLUS] = ACTIONS(2902), - [anon_sym_DASH] = ACTIONS(2902), - [anon_sym_TILDE] = ACTIONS(2900), - [anon_sym_void] = ACTIONS(2902), - [anon_sym_delete] = ACTIONS(2902), - [anon_sym_PLUS_PLUS] = ACTIONS(2900), - [anon_sym_DASH_DASH] = ACTIONS(2900), - [anon_sym_DQUOTE] = ACTIONS(2900), - [anon_sym_SQUOTE] = ACTIONS(2900), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2900), - [sym_number] = ACTIONS(2900), - [sym_this] = ACTIONS(2902), - [sym_super] = ACTIONS(2902), - [sym_true] = ACTIONS(2902), - [sym_false] = ACTIONS(2902), - [sym_null] = ACTIONS(2902), - [sym_undefined] = ACTIONS(2902), - [anon_sym_AT] = ACTIONS(2900), - [anon_sym_static] = ACTIONS(2902), - [anon_sym_readonly] = ACTIONS(2902), - [anon_sym_get] = ACTIONS(2902), - [anon_sym_set] = ACTIONS(2902), - [anon_sym_declare] = ACTIONS(2902), - [anon_sym_public] = ACTIONS(2902), - [anon_sym_private] = ACTIONS(2902), - [anon_sym_protected] = ACTIONS(2902), - [anon_sym_module] = ACTIONS(2902), - [anon_sym_any] = ACTIONS(2902), - [anon_sym_number] = ACTIONS(2902), - [anon_sym_boolean] = ACTIONS(2902), - [anon_sym_string] = ACTIONS(2902), - [anon_sym_symbol] = ACTIONS(2902), - [anon_sym_abstract] = ACTIONS(2902), - [anon_sym_interface] = ACTIONS(2902), - [anon_sym_extends] = ACTIONS(2902), - [anon_sym_enum] = ACTIONS(2902), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [942] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2882), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [943] = { - [ts_builtin_sym_end] = ACTIONS(2904), - [sym_identifier] = ACTIONS(2906), - [anon_sym_export] = ACTIONS(2906), - [anon_sym_default] = ACTIONS(2906), - [anon_sym_type] = ACTIONS(2906), - [anon_sym_EQ] = ACTIONS(2906), - [anon_sym_namespace] = ACTIONS(2906), - [anon_sym_LBRACE] = ACTIONS(2904), - [anon_sym_COMMA] = ACTIONS(2904), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_typeof] = ACTIONS(2906), - [anon_sym_import] = ACTIONS(2906), - [anon_sym_var] = ACTIONS(2906), - [anon_sym_let] = ACTIONS(2906), - [anon_sym_const] = ACTIONS(2906), - [anon_sym_BANG] = ACTIONS(2904), - [anon_sym_else] = ACTIONS(2906), - [anon_sym_if] = ACTIONS(2906), - [anon_sym_switch] = ACTIONS(2906), - [anon_sym_for] = ACTIONS(2906), - [anon_sym_LPAREN] = ACTIONS(2904), - [anon_sym_RPAREN] = ACTIONS(2904), - [anon_sym_await] = ACTIONS(2906), - [anon_sym_while] = ACTIONS(2906), - [anon_sym_do] = ACTIONS(2906), - [anon_sym_try] = ACTIONS(2906), - [anon_sym_with] = ACTIONS(2906), - [anon_sym_break] = ACTIONS(2906), - [anon_sym_continue] = ACTIONS(2906), - [anon_sym_debugger] = ACTIONS(2906), - [anon_sym_return] = ACTIONS(2906), - [anon_sym_throw] = ACTIONS(2906), - [anon_sym_SEMI] = ACTIONS(2904), - [anon_sym_COLON] = ACTIONS(2904), - [anon_sym_case] = ACTIONS(2906), - [anon_sym_yield] = ACTIONS(2906), - [anon_sym_LBRACK] = ACTIONS(2904), - [anon_sym_RBRACK] = ACTIONS(2904), - [anon_sym_LT] = ACTIONS(2904), - [anon_sym_GT] = ACTIONS(2904), - [anon_sym_SLASH] = ACTIONS(2906), - [anon_sym_class] = ACTIONS(2906), - [anon_sym_async] = ACTIONS(2906), - [anon_sym_function] = ACTIONS(2906), - [anon_sym_EQ_GT] = ACTIONS(2904), - [anon_sym_new] = ACTIONS(2906), - [anon_sym_QMARK] = ACTIONS(2904), - [anon_sym_AMP] = ACTIONS(2904), - [anon_sym_PIPE] = ACTIONS(2904), - [anon_sym_PLUS] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_TILDE] = ACTIONS(2904), - [anon_sym_void] = ACTIONS(2906), - [anon_sym_delete] = ACTIONS(2906), - [anon_sym_PLUS_PLUS] = ACTIONS(2904), - [anon_sym_DASH_DASH] = ACTIONS(2904), - [anon_sym_DQUOTE] = ACTIONS(2904), - [anon_sym_SQUOTE] = ACTIONS(2904), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2904), - [sym_number] = ACTIONS(2904), - [sym_this] = ACTIONS(2906), - [sym_super] = ACTIONS(2906), - [sym_true] = ACTIONS(2906), - [sym_false] = ACTIONS(2906), - [sym_null] = ACTIONS(2906), - [sym_undefined] = ACTIONS(2906), - [anon_sym_AT] = ACTIONS(2904), - [anon_sym_static] = ACTIONS(2906), - [anon_sym_readonly] = ACTIONS(2906), - [anon_sym_get] = ACTIONS(2906), - [anon_sym_set] = ACTIONS(2906), - [anon_sym_declare] = ACTIONS(2906), - [anon_sym_public] = ACTIONS(2906), - [anon_sym_private] = ACTIONS(2906), - [anon_sym_protected] = ACTIONS(2906), - [anon_sym_module] = ACTIONS(2906), - [anon_sym_any] = ACTIONS(2906), - [anon_sym_number] = ACTIONS(2906), - [anon_sym_boolean] = ACTIONS(2906), - [anon_sym_string] = ACTIONS(2906), - [anon_sym_symbol] = ACTIONS(2906), - [anon_sym_abstract] = ACTIONS(2906), - [anon_sym_interface] = ACTIONS(2906), - [anon_sym_extends] = ACTIONS(2906), - [anon_sym_enum] = ACTIONS(2906), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [944] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2882), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [945] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2882), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [946] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2884), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2884), - [anon_sym_set] = ACTIONS(2884), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [947] = { - [ts_builtin_sym_end] = ACTIONS(2161), - [sym_identifier] = ACTIONS(2163), - [anon_sym_export] = ACTIONS(2163), - [anon_sym_default] = ACTIONS(2163), - [anon_sym_type] = ACTIONS(2163), - [anon_sym_EQ] = ACTIONS(2163), - [anon_sym_namespace] = ACTIONS(2163), - [anon_sym_LBRACE] = ACTIONS(2161), - [anon_sym_COMMA] = ACTIONS(2161), - [anon_sym_RBRACE] = ACTIONS(2161), - [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_RPAREN] = 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_COLON] = ACTIONS(2161), - [anon_sym_case] = ACTIONS(2163), - [anon_sym_yield] = ACTIONS(2163), - [anon_sym_LBRACK] = ACTIONS(2161), - [anon_sym_RBRACK] = ACTIONS(2161), - [anon_sym_LT] = ACTIONS(2161), - [anon_sym_GT] = ACTIONS(2161), - [anon_sym_SLASH] = ACTIONS(2163), - [anon_sym_class] = ACTIONS(2163), - [anon_sym_async] = ACTIONS(2163), - [anon_sym_function] = ACTIONS(2163), - [anon_sym_EQ_GT] = ACTIONS(2161), - [anon_sym_new] = ACTIONS(2163), - [anon_sym_QMARK] = ACTIONS(2161), - [anon_sym_AMP] = ACTIONS(2161), - [anon_sym_PIPE] = ACTIONS(2161), - [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_readonly] = 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_abstract] = ACTIONS(2163), - [anon_sym_interface] = ACTIONS(2163), - [anon_sym_extends] = ACTIONS(2163), - [anon_sym_enum] = ACTIONS(2163), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2882), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2882), + [anon_sym_set] = ACTIONS(2882), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [948] = { - [ts_builtin_sym_end] = ACTIONS(2908), - [sym_identifier] = ACTIONS(2910), - [anon_sym_export] = ACTIONS(2910), - [anon_sym_default] = ACTIONS(2910), - [anon_sym_type] = ACTIONS(2910), - [anon_sym_EQ] = ACTIONS(2910), - [anon_sym_namespace] = ACTIONS(2910), - [anon_sym_LBRACE] = ACTIONS(2908), - [anon_sym_COMMA] = ACTIONS(2908), - [anon_sym_RBRACE] = ACTIONS(2908), - [anon_sym_typeof] = ACTIONS(2910), - [anon_sym_import] = ACTIONS(2910), - [anon_sym_var] = ACTIONS(2910), - [anon_sym_let] = ACTIONS(2910), - [anon_sym_const] = ACTIONS(2910), - [anon_sym_BANG] = ACTIONS(2908), - [anon_sym_else] = ACTIONS(2910), - [anon_sym_if] = ACTIONS(2910), - [anon_sym_switch] = ACTIONS(2910), - [anon_sym_for] = ACTIONS(2910), - [anon_sym_LPAREN] = ACTIONS(2908), - [anon_sym_RPAREN] = ACTIONS(2908), - [anon_sym_await] = ACTIONS(2910), - [anon_sym_while] = ACTIONS(2910), - [anon_sym_do] = ACTIONS(2910), - [anon_sym_try] = ACTIONS(2910), - [anon_sym_with] = ACTIONS(2910), - [anon_sym_break] = ACTIONS(2910), - [anon_sym_continue] = ACTIONS(2910), - [anon_sym_debugger] = ACTIONS(2910), - [anon_sym_return] = ACTIONS(2910), - [anon_sym_throw] = ACTIONS(2910), - [anon_sym_SEMI] = ACTIONS(2908), - [anon_sym_COLON] = ACTIONS(2908), - [anon_sym_case] = ACTIONS(2910), - [anon_sym_yield] = ACTIONS(2910), - [anon_sym_LBRACK] = ACTIONS(2908), - [anon_sym_RBRACK] = ACTIONS(2908), - [anon_sym_LT] = ACTIONS(2908), - [anon_sym_GT] = ACTIONS(2908), - [anon_sym_SLASH] = ACTIONS(2910), - [anon_sym_class] = ACTIONS(2910), - [anon_sym_async] = ACTIONS(2910), - [anon_sym_function] = ACTIONS(2910), - [anon_sym_EQ_GT] = ACTIONS(2908), - [anon_sym_new] = ACTIONS(2910), - [anon_sym_QMARK] = ACTIONS(2908), - [anon_sym_AMP] = ACTIONS(2908), - [anon_sym_PIPE] = ACTIONS(2908), - [anon_sym_PLUS] = ACTIONS(2910), - [anon_sym_DASH] = ACTIONS(2910), - [anon_sym_TILDE] = ACTIONS(2908), - [anon_sym_void] = ACTIONS(2910), - [anon_sym_delete] = ACTIONS(2910), - [anon_sym_PLUS_PLUS] = ACTIONS(2908), - [anon_sym_DASH_DASH] = ACTIONS(2908), - [anon_sym_DQUOTE] = ACTIONS(2908), - [anon_sym_SQUOTE] = ACTIONS(2908), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2908), - [sym_number] = ACTIONS(2908), - [sym_this] = ACTIONS(2910), - [sym_super] = ACTIONS(2910), - [sym_true] = ACTIONS(2910), - [sym_false] = ACTIONS(2910), - [sym_null] = ACTIONS(2910), - [sym_undefined] = ACTIONS(2910), - [anon_sym_AT] = ACTIONS(2908), - [anon_sym_static] = ACTIONS(2910), - [anon_sym_readonly] = ACTIONS(2910), - [anon_sym_get] = ACTIONS(2910), - [anon_sym_set] = ACTIONS(2910), - [anon_sym_declare] = ACTIONS(2910), - [anon_sym_public] = ACTIONS(2910), - [anon_sym_private] = ACTIONS(2910), - [anon_sym_protected] = ACTIONS(2910), - [anon_sym_module] = ACTIONS(2910), - [anon_sym_any] = ACTIONS(2910), - [anon_sym_number] = ACTIONS(2910), - [anon_sym_boolean] = ACTIONS(2910), - [anon_sym_string] = ACTIONS(2910), - [anon_sym_symbol] = ACTIONS(2910), - [anon_sym_abstract] = ACTIONS(2910), - [anon_sym_interface] = ACTIONS(2910), - [anon_sym_extends] = ACTIONS(2910), - [anon_sym_enum] = ACTIONS(2910), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [949] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2884), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [950] = { - [sym_string] = STATE(4315), - [sym__property_name] = STATE(4315), - [sym_computed_property_name] = STATE(4315), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2884), - [anon_sym_export] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2834), - [anon_sym_type] = ACTIONS(2884), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2884), - [anon_sym_COMMA] = ACTIONS(1636), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2841), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2886), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2850), - [sym_private_property_identifier] = ACTIONS(2850), - [anon_sym_static] = ACTIONS(2884), - [anon_sym_readonly] = ACTIONS(2890), - [anon_sym_get] = ACTIONS(2888), - [anon_sym_set] = ACTIONS(2888), - [anon_sym_declare] = ACTIONS(2884), - [anon_sym_public] = ACTIONS(2884), - [anon_sym_private] = ACTIONS(2884), - [anon_sym_protected] = ACTIONS(2884), - [anon_sym_module] = ACTIONS(2884), - [anon_sym_any] = ACTIONS(2884), - [anon_sym_number] = ACTIONS(2884), - [anon_sym_boolean] = ACTIONS(2884), - [anon_sym_string] = ACTIONS(2884), - [anon_sym_symbol] = ACTIONS(2884), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2882), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), }, [951] = { - [sym_object_pattern] = STATE(4129), - [sym_assignment_pattern] = STATE(5042), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_string] = STATE(4351), + [sym__property_name] = STATE(4351), + [sym_computed_property_name] = STATE(4351), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2882), + [anon_sym_export] = ACTIONS(2882), + [anon_sym_STAR] = ACTIONS(2832), + [anon_sym_type] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2882), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2839), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2892), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2848), + [sym_private_property_identifier] = ACTIONS(2848), + [anon_sym_static] = ACTIONS(2882), + [anon_sym_readonly] = ACTIONS(2896), + [anon_sym_get] = ACTIONS(2894), + [anon_sym_set] = ACTIONS(2894), + [anon_sym_declare] = ACTIONS(2882), + [anon_sym_public] = ACTIONS(2882), + [anon_sym_private] = ACTIONS(2882), + [anon_sym_protected] = ACTIONS(2882), + [anon_sym_module] = ACTIONS(2882), + [anon_sym_any] = ACTIONS(2882), + [anon_sym_number] = ACTIONS(2882), + [anon_sym_boolean] = ACTIONS(2882), + [anon_sym_string] = ACTIONS(2882), + [anon_sym_symbol] = ACTIONS(2882), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [952] = { + [sym_object_pattern] = STATE(4225), + [sym_assignment_pattern] = STATE(5068), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_array_pattern_repeat1] = STATE(4980), - [sym_identifier] = ACTIONS(2912), - [anon_sym_export] = ACTIONS(1612), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_array_pattern_repeat1] = STATE(5060), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_RBRACK] = ACTIONS(2920), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_RBRACK] = ACTIONS(2918), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2922), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2928), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(2930), - [anon_sym_number] = ACTIONS(2930), - [anon_sym_boolean] = ACTIONS(2930), - [anon_sym_string] = ACTIONS(2930), - [anon_sym_symbol] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2926), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(1648), + [anon_sym_private] = ACTIONS(1648), + [anon_sym_protected] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(2928), + [anon_sym_number] = ACTIONS(2928), + [anon_sym_boolean] = ACTIONS(2928), + [anon_sym_string] = ACTIONS(2928), + [anon_sym_symbol] = ACTIONS(2928), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [952] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__formal_parameter] = STATE(5043), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4732), - [sym_constructor_type] = STATE(4732), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4732), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4732), - [sym_union_type] = STATE(4732), - [sym_intersection_type] = STATE(4732), - [sym_function_type] = STATE(4732), - [aux_sym_export_statement_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(2932), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(2936), - [anon_sym_private] = ACTIONS(2936), - [anon_sym_protected] = ACTIONS(2936), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(692), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), - }, [953] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__formal_parameter] = STATE(5043), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__formal_parameter] = STATE(5069), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4753), - [sym_constructor_type] = STATE(4753), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4753), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4753), - [sym_union_type] = STATE(4753), - [sym_intersection_type] = STATE(4753), - [sym_function_type] = STATE(4753), - [aux_sym_export_statement_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4904), + [sym_constructor_type] = STATE(4904), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4904), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4904), + [sym_union_type] = STATE(4904), + [sym_intersection_type] = STATE(4904), + [sym_function_type] = STATE(4904), + [aux_sym_export_statement_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1674), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), [anon_sym_QMARK] = ACTIONS(672), [anon_sym_AMP] = ACTIONS(674), [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(2932), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(2936), - [anon_sym_private] = ACTIONS(2936), - [anon_sym_protected] = ACTIONS(2936), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(692), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [954] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__formal_parameter] = STATE(5043), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), - [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4890), - [sym_constructor_type] = STATE(4890), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4890), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4890), - [sym_union_type] = STATE(4890), - [sym_intersection_type] = STATE(4890), - [sym_function_type] = STATE(4890), - [aux_sym_export_statement_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), + [sym_object_pattern] = STATE(4225), + [sym_assignment_pattern] = STATE(5068), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5432), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_array_pattern_repeat1] = STATE(5060), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(2932), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(2936), - [anon_sym_private] = ACTIONS(2936), - [anon_sym_protected] = ACTIONS(2936), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_RBRACK] = ACTIONS(2936), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2922), + [anon_sym_QMARK] = ACTIONS(576), + [anon_sym_AMP] = ACTIONS(578), + [anon_sym_PIPE] = ACTIONS(580), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(1894), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2926), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(1648), + [anon_sym_private] = ACTIONS(1648), + [anon_sym_protected] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(2928), + [anon_sym_number] = ACTIONS(2928), + [anon_sym_boolean] = ACTIONS(2928), + [anon_sym_string] = ACTIONS(2928), + [anon_sym_symbol] = ACTIONS(2928), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(692), + [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [955] = { - [sym_object_pattern] = STATE(4129), - [sym_assignment_pattern] = STATE(5042), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_object_pattern] = STATE(4225), + [sym_assignment_pattern] = STATE(5068), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5019), + [sym_optional_tuple_parameter] = STATE(5019), + [sym_optional_type] = STATE(5019), + [sym_rest_type] = STATE(5019), + [sym__tuple_type_member] = STATE(5019), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_array_pattern_repeat1] = STATE(4980), - [sym_identifier] = ACTIONS(2912), - [anon_sym_export] = ACTIONS(1612), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_array_pattern_repeat1] = STATE(5060), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(2918), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2914), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(2916), [anon_sym_RBRACK] = ACTIONS(2938), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2922), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2928), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(2930), - [anon_sym_number] = ACTIONS(2930), - [anon_sym_boolean] = ACTIONS(2930), - [anon_sym_string] = ACTIONS(2930), - [anon_sym_symbol] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2926), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(1648), + [anon_sym_private] = ACTIONS(1648), + [anon_sym_protected] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(2928), + [anon_sym_number] = ACTIONS(2928), + [anon_sym_boolean] = ACTIONS(2928), + [anon_sym_string] = ACTIONS(2928), + [anon_sym_symbol] = ACTIONS(2928), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [956] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__formal_parameter] = STATE(5043), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__formal_parameter] = STATE(5069), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4814), - [sym_constructor_type] = STATE(4814), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4814), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4814), - [sym_union_type] = STATE(4814), - [sym_intersection_type] = STATE(4814), - [sym_function_type] = STATE(4814), - [aux_sym_export_statement_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4823), + [sym_constructor_type] = STATE(4823), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4823), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4823), + [sym_union_type] = STATE(4823), + [sym_intersection_type] = STATE(4823), + [sym_function_type] = STATE(4823), + [aux_sym_export_statement_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1674), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), [anon_sym_QMARK] = ACTIONS(672), [anon_sym_AMP] = ACTIONS(674), [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(2932), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(2936), - [anon_sym_private] = ACTIONS(2936), - [anon_sym_protected] = ACTIONS(2936), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(692), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [957] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__formal_parameter] = STATE(5043), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__formal_parameter] = STATE(5069), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4902), - [sym_constructor_type] = STATE(4902), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4902), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4902), - [sym_union_type] = STATE(4902), - [sym_intersection_type] = STATE(4902), - [sym_function_type] = STATE(4902), - [aux_sym_export_statement_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4763), + [sym_constructor_type] = STATE(4763), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4763), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4763), + [sym_union_type] = STATE(4763), + [sym_intersection_type] = STATE(4763), + [sym_function_type] = STATE(4763), + [aux_sym_export_statement_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1674), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), [anon_sym_QMARK] = ACTIONS(672), [anon_sym_AMP] = ACTIONS(674), [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(2932), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(2936), - [anon_sym_private] = ACTIONS(2936), - [anon_sym_protected] = ACTIONS(2936), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(692), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [958] = { - [sym_object_pattern] = STATE(4129), - [sym_assignment_pattern] = STATE(5042), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_object_pattern] = STATE(4225), + [sym_assignment_pattern] = STATE(5068), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_pattern] = STATE(4791), + [sym_rest_pattern] = STATE(4714), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5102), + [sym_optional_tuple_parameter] = STATE(5102), + [sym_optional_type] = STATE(5102), + [sym_rest_type] = STATE(5102), + [sym__tuple_type_member] = STATE(5102), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_array_pattern_repeat1] = STATE(4980), - [sym_identifier] = ACTIONS(2912), - [anon_sym_export] = ACTIONS(1612), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [aux_sym_array_pattern_repeat1] = STATE(5060), + [sym_identifier] = ACTIONS(2910), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2916), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_RBRACK] = ACTIONS(2940), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2912), + [anon_sym_COMMA] = ACTIONS(2940), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_LBRACK] = ACTIONS(2916), + [anon_sym_RBRACK] = ACTIONS(2942), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2922), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2928), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(2930), - [anon_sym_number] = ACTIONS(2930), - [anon_sym_boolean] = ACTIONS(2930), - [anon_sym_string] = ACTIONS(2930), - [anon_sym_symbol] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2926), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(1648), + [anon_sym_private] = ACTIONS(1648), + [anon_sym_protected] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(2928), + [anon_sym_number] = ACTIONS(2928), + [anon_sym_boolean] = ACTIONS(2928), + [anon_sym_string] = ACTIONS(2928), + [anon_sym_symbol] = ACTIONS(2928), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [959] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__formal_parameter] = STATE(5043), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__formal_parameter] = STATE(5069), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4759), - [sym_constructor_type] = STATE(4759), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4759), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4759), - [sym_union_type] = STATE(4759), - [sym_intersection_type] = STATE(4759), - [sym_function_type] = STATE(4759), - [aux_sym_export_statement_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4896), + [sym_constructor_type] = STATE(4896), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4896), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4896), + [sym_union_type] = STATE(4896), + [sym_intersection_type] = STATE(4896), + [sym_function_type] = STATE(4896), + [aux_sym_export_statement_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1674), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), [anon_sym_QMARK] = ACTIONS(672), [anon_sym_AMP] = ACTIONS(674), [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(2932), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(2936), - [anon_sym_private] = ACTIONS(2936), - [anon_sym_protected] = ACTIONS(2936), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(692), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [960] = { - [sym_object_pattern] = STATE(4129), - [sym_assignment_pattern] = STATE(5042), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_pattern] = STATE(4810), - [sym_rest_pattern] = STATE(4481), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5100), - [sym_optional_tuple_parameter] = STATE(5100), - [sym_optional_type] = STATE(5100), - [sym_rest_type] = STATE(5100), - [sym__tuple_type_member] = STATE(5100), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [aux_sym_array_pattern_repeat1] = STATE(4980), - [sym_identifier] = ACTIONS(2912), - [anon_sym_export] = ACTIONS(1612), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__formal_parameter] = STATE(5069), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4849), + [sym_constructor_type] = STATE(4849), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4849), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4849), + [sym_union_type] = STATE(4849), + [sym_intersection_type] = STATE(4849), + [sym_function_type] = STATE(4849), + [aux_sym_export_statement_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(2914), - [anon_sym_COMMA] = ACTIONS(2942), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_LBRACK] = ACTIONS(2918), - [anon_sym_RBRACK] = ACTIONS(2944), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2924), - [anon_sym_QMARK] = ACTIONS(576), - [anon_sym_AMP] = ACTIONS(578), - [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2928), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(2930), - [anon_sym_number] = ACTIONS(2930), - [anon_sym_boolean] = ACTIONS(2930), - [anon_sym_string] = ACTIONS(2930), - [anon_sym_symbol] = ACTIONS(2930), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_PIPE] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(612), + [anon_sym_keyof] = ACTIONS(692), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [961] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__formal_parameter] = STATE(5043), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__formal_parameter] = STATE(5069), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), [sym_decorator] = STATE(3823), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4231), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym_accessibility_modifier] = STATE(3792), - [sym_required_parameter] = STATE(5043), - [sym_optional_parameter] = STATE(5043), - [sym__parameter_name] = STATE(4231), - [sym__type] = STATE(4754), - [sym_constructor_type] = STATE(4754), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4754), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4754), - [sym_union_type] = STATE(4754), - [sym_intersection_type] = STATE(4754), - [sym_function_type] = STATE(4754), - [aux_sym_export_statement_repeat1] = STATE(3722), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4820), + [sym_constructor_type] = STATE(4820), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4820), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4820), + [sym_union_type] = STATE(4820), + [sym_intersection_type] = STATE(4820), + [sym_function_type] = STATE(4820), + [aux_sym_export_statement_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_RPAREN] = ACTIONS(662), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1638), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1674), [anon_sym_DOT_DOT_DOT] = ACTIONS(670), [anon_sym_QMARK] = ACTIONS(672), [anon_sym_AMP] = ACTIONS(674), [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(2932), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), [anon_sym_AT] = ACTIONS(93), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(2934), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(2936), - [anon_sym_private] = ACTIONS(2936), - [anon_sym_protected] = ACTIONS(2936), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(692), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [962] = { - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__formal_parameter] = STATE(5069), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), + [sym_decorator] = STATE(3823), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4219), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym_accessibility_modifier] = STATE(3793), + [sym_required_parameter] = STATE(5069), + [sym_optional_parameter] = STATE(5069), + [sym__parameter_name] = STATE(4219), + [sym__type] = STATE(4835), + [sym_constructor_type] = STATE(4835), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4835), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4835), + [sym_union_type] = STATE(4835), + [sym_intersection_type] = STATE(4835), + [sym_function_type] = STATE(4835), + [aux_sym_export_statement_repeat1] = STATE(3723), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(662), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_PIPE] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(2930), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_AT] = ACTIONS(93), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(2932), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(2934), + [anon_sym_private] = ACTIONS(2934), + [anon_sym_protected] = ACTIONS(2934), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(692), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [963] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym__destructuring_pattern] = STATE(4129), - [sym_pattern] = STATE(4443), - [sym_rest_pattern] = STATE(4129), - [sym_identifier] = ACTIONS(2950), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(1616), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(2952), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(2954), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_this] = ACTIONS(2960), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1612), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1612), - [anon_sym_number] = ACTIONS(1612), - [anon_sym_boolean] = ACTIONS(1612), - [anon_sym_string] = ACTIONS(1612), - [anon_sym_symbol] = ACTIONS(1612), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2944), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2946), + [sym_private_property_identifier] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_readonly] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_declare] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_protected] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_any] = ACTIONS(2944), + [anon_sym_number] = ACTIONS(2944), + [anon_sym_boolean] = ACTIONS(2944), + [anon_sym_string] = ACTIONS(2944), + [anon_sym_symbol] = ACTIONS(2944), + [sym__automatic_semicolon] = ACTIONS(1672), }, [964] = { - [sym__call_signature] = STATE(5774), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(1876), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2964), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2964), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2964), - [anon_sym_readonly] = ACTIONS(2964), - [anon_sym_get] = ACTIONS(2964), - [anon_sym_set] = ACTIONS(2964), - [anon_sym_declare] = ACTIONS(2964), - [anon_sym_public] = ACTIONS(2964), - [anon_sym_private] = ACTIONS(2964), - [anon_sym_protected] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2964), - [anon_sym_any] = ACTIONS(2964), - [anon_sym_number] = ACTIONS(2964), - [anon_sym_boolean] = ACTIONS(2964), - [anon_sym_string] = ACTIONS(2964), - [anon_sym_symbol] = ACTIONS(2964), - [anon_sym_extends] = ACTIONS(1619), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2944), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2946), + [sym_private_property_identifier] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_readonly] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_declare] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_protected] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_any] = ACTIONS(2944), + [anon_sym_number] = ACTIONS(2944), + [anon_sym_boolean] = ACTIONS(2944), + [anon_sym_string] = ACTIONS(2944), + [anon_sym_symbol] = ACTIONS(2944), + [sym__automatic_semicolon] = ACTIONS(1672), }, [965] = { - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5507), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2948), + [anon_sym_export] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_readonly] = ACTIONS(2950), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2950), + [anon_sym_public] = ACTIONS(2950), + [anon_sym_private] = ACTIONS(2950), + [anon_sym_protected] = ACTIONS(2950), + [anon_sym_module] = ACTIONS(2950), + [anon_sym_any] = ACTIONS(2950), + [anon_sym_number] = ACTIONS(2950), + [anon_sym_boolean] = ACTIONS(2950), + [anon_sym_string] = ACTIONS(2950), + [anon_sym_symbol] = ACTIONS(2950), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_PIPE_RBRACE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), }, [966] = { - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2946), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2944), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2944), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2946), + [sym_private_property_identifier] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_readonly] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_declare] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_protected] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_any] = ACTIONS(2944), + [anon_sym_number] = ACTIONS(2944), + [anon_sym_boolean] = ACTIONS(2944), + [anon_sym_string] = ACTIONS(2944), + [anon_sym_symbol] = ACTIONS(2944), + [sym__automatic_semicolon] = ACTIONS(1672), }, [967] = { - [sym__call_signature] = STATE(5497), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2974), - [anon_sym_export] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2976), + [sym__call_signature] = STATE(5507), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2948), + [anon_sym_export] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2950), [anon_sym_EQ] = ACTIONS(1898), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2976), - [anon_sym_function] = ACTIONS(2978), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2950), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2958), [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2976), - [anon_sym_readonly] = ACTIONS(2976), - [anon_sym_get] = ACTIONS(2976), - [anon_sym_set] = ACTIONS(2976), - [anon_sym_declare] = ACTIONS(2976), - [anon_sym_public] = ACTIONS(2976), - [anon_sym_private] = ACTIONS(2976), - [anon_sym_protected] = ACTIONS(2976), - [anon_sym_module] = ACTIONS(2976), - [anon_sym_any] = ACTIONS(2976), - [anon_sym_number] = ACTIONS(2976), - [anon_sym_boolean] = ACTIONS(2976), - [anon_sym_string] = ACTIONS(2976), - [anon_sym_symbol] = ACTIONS(2976), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_PIPE_RBRACE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_readonly] = ACTIONS(2950), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2950), + [anon_sym_public] = ACTIONS(2950), + [anon_sym_private] = ACTIONS(2950), + [anon_sym_protected] = ACTIONS(2950), + [anon_sym_module] = ACTIONS(2950), + [anon_sym_any] = ACTIONS(2950), + [anon_sym_number] = ACTIONS(2950), + [anon_sym_boolean] = ACTIONS(2950), + [anon_sym_string] = ACTIONS(2950), + [anon_sym_symbol] = ACTIONS(2950), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_PIPE_RBRACE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), }, [968] = { - [sym__call_signature] = STATE(5774), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2964), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2964), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2964), - [anon_sym_readonly] = ACTIONS(2964), - [anon_sym_get] = ACTIONS(2964), - [anon_sym_set] = ACTIONS(2964), - [anon_sym_declare] = ACTIONS(2964), - [anon_sym_public] = ACTIONS(2964), - [anon_sym_private] = ACTIONS(2964), - [anon_sym_protected] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2964), - [anon_sym_any] = ACTIONS(2964), - [anon_sym_number] = ACTIONS(2964), - [anon_sym_boolean] = ACTIONS(2964), - [anon_sym_string] = ACTIONS(2964), - [anon_sym_symbol] = ACTIONS(2964), - [anon_sym_extends] = ACTIONS(1619), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2944), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2946), + [sym_private_property_identifier] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_readonly] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_declare] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_protected] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_any] = ACTIONS(2944), + [anon_sym_number] = ACTIONS(2944), + [anon_sym_boolean] = ACTIONS(2944), + [anon_sym_string] = ACTIONS(2944), + [anon_sym_symbol] = ACTIONS(2944), + [sym__automatic_semicolon] = ACTIONS(1672), }, [969] = { - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2946), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2944), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2944), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2946), + [sym_private_property_identifier] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_readonly] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_declare] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_protected] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_any] = ACTIONS(2944), + [anon_sym_number] = ACTIONS(2944), + [anon_sym_boolean] = ACTIONS(2944), + [anon_sym_string] = ACTIONS(2944), + [anon_sym_symbol] = ACTIONS(2944), + [sym__automatic_semicolon] = ACTIONS(1672), }, [970] = { - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2946), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2944), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2944), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2946), + [sym_private_property_identifier] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_readonly] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_declare] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_protected] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_any] = ACTIONS(2944), + [anon_sym_number] = ACTIONS(2944), + [anon_sym_boolean] = ACTIONS(2944), + [anon_sym_string] = ACTIONS(2944), + [anon_sym_symbol] = ACTIONS(2944), + [sym__automatic_semicolon] = ACTIONS(1672), }, [971] = { - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2946), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(2944), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(2944), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2944), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(2946), + [anon_sym_SQUOTE] = ACTIONS(2946), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_number] = ACTIONS(2946), + [sym_private_property_identifier] = ACTIONS(2946), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_readonly] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_declare] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_protected] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_any] = ACTIONS(2944), + [anon_sym_number] = ACTIONS(2944), + [anon_sym_boolean] = ACTIONS(2944), + [anon_sym_string] = ACTIONS(2944), + [anon_sym_symbol] = ACTIONS(2944), + [sym__automatic_semicolon] = ACTIONS(1672), }, [972] = { - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(2946), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(2948), - [anon_sym_SQUOTE] = ACTIONS(2948), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_number] = ACTIONS(2948), - [sym_private_property_identifier] = ACTIONS(2948), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym__destructuring_pattern] = STATE(4225), + [sym_pattern] = STATE(4628), + [sym_rest_pattern] = STATE(4225), + [sym_identifier] = ACTIONS(2960), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(2962), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(2964), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_this] = ACTIONS(2970), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1648), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(1648), + [anon_sym_private] = ACTIONS(1648), + [anon_sym_protected] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1648), + [anon_sym_number] = ACTIONS(1648), + [anon_sym_boolean] = ACTIONS(1648), + [anon_sym_string] = ACTIONS(1648), + [anon_sym_symbol] = ACTIONS(1648), }, [973] = { - [sym__call_signature] = STATE(5497), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2974), - [anon_sym_export] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2976), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2976), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2976), - [anon_sym_readonly] = ACTIONS(2976), - [anon_sym_get] = ACTIONS(2976), - [anon_sym_set] = ACTIONS(2976), - [anon_sym_declare] = ACTIONS(2976), - [anon_sym_public] = ACTIONS(2976), - [anon_sym_private] = ACTIONS(2976), - [anon_sym_protected] = ACTIONS(2976), - [anon_sym_module] = ACTIONS(2976), - [anon_sym_any] = ACTIONS(2976), - [anon_sym_number] = ACTIONS(2976), - [anon_sym_boolean] = ACTIONS(2976), - [anon_sym_string] = ACTIONS(2976), - [anon_sym_symbol] = ACTIONS(2976), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_PIPE_RBRACE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5837), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2972), + [anon_sym_export] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2974), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_readonly] = ACTIONS(2974), + [anon_sym_get] = ACTIONS(2974), + [anon_sym_set] = ACTIONS(2974), + [anon_sym_declare] = ACTIONS(2974), + [anon_sym_public] = ACTIONS(2974), + [anon_sym_private] = ACTIONS(2974), + [anon_sym_protected] = ACTIONS(2974), + [anon_sym_module] = ACTIONS(2974), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_extends] = ACTIONS(1655), }, [974] = { - [sym__call_signature] = STATE(5684), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2980), - [anon_sym_export] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2982), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(1904), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_get] = ACTIONS(2982), - [anon_sym_set] = ACTIONS(2982), - [anon_sym_declare] = ACTIONS(2982), - [anon_sym_public] = ACTIONS(2982), - [anon_sym_private] = ACTIONS(2982), - [anon_sym_protected] = ACTIONS(2982), - [anon_sym_module] = ACTIONS(2982), - [anon_sym_any] = ACTIONS(2982), - [anon_sym_number] = ACTIONS(2982), - [anon_sym_boolean] = ACTIONS(2982), - [anon_sym_string] = ACTIONS(2982), - [anon_sym_symbol] = ACTIONS(2982), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5837), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2972), + [anon_sym_export] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(1876), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2974), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_readonly] = ACTIONS(2974), + [anon_sym_get] = ACTIONS(2974), + [anon_sym_set] = ACTIONS(2974), + [anon_sym_declare] = ACTIONS(2974), + [anon_sym_public] = ACTIONS(2974), + [anon_sym_private] = ACTIONS(2974), + [anon_sym_protected] = ACTIONS(2974), + [anon_sym_module] = ACTIONS(2974), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_extends] = ACTIONS(1655), }, [975] = { - [sym__call_signature] = STATE(5684), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2980), - [anon_sym_export] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2982), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(1904), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_get] = ACTIONS(2982), - [anon_sym_set] = ACTIONS(2982), - [anon_sym_declare] = ACTIONS(2982), - [anon_sym_public] = ACTIONS(2982), - [anon_sym_private] = ACTIONS(2982), - [anon_sym_protected] = ACTIONS(2982), - [anon_sym_module] = ACTIONS(2982), - [anon_sym_any] = ACTIONS(2982), - [anon_sym_number] = ACTIONS(2982), - [anon_sym_boolean] = ACTIONS(2982), - [anon_sym_string] = ACTIONS(2982), - [anon_sym_symbol] = ACTIONS(2982), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5507), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2948), + [anon_sym_export] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_readonly] = ACTIONS(2950), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2950), + [anon_sym_public] = ACTIONS(2950), + [anon_sym_private] = ACTIONS(2950), + [anon_sym_protected] = ACTIONS(2950), + [anon_sym_module] = ACTIONS(2950), + [anon_sym_any] = ACTIONS(2950), + [anon_sym_number] = ACTIONS(2950), + [anon_sym_boolean] = ACTIONS(2950), + [anon_sym_string] = ACTIONS(2950), + [anon_sym_symbol] = ACTIONS(2950), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_PIPE_RBRACE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), }, [976] = { - [sym__call_signature] = STATE(5684), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2980), - [anon_sym_export] = ACTIONS(2982), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2982), + [sym__call_signature] = STATE(5837), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2972), + [anon_sym_export] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2974), [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2982), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2982), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(1904), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2982), - [anon_sym_readonly] = ACTIONS(2982), - [anon_sym_get] = ACTIONS(2982), - [anon_sym_set] = ACTIONS(2982), - [anon_sym_declare] = ACTIONS(2982), - [anon_sym_public] = ACTIONS(2982), - [anon_sym_private] = ACTIONS(2982), - [anon_sym_protected] = ACTIONS(2982), - [anon_sym_module] = ACTIONS(2982), - [anon_sym_any] = ACTIONS(2982), - [anon_sym_number] = ACTIONS(2982), - [anon_sym_boolean] = ACTIONS(2982), - [anon_sym_string] = ACTIONS(2982), - [anon_sym_symbol] = ACTIONS(2982), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2974), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_readonly] = ACTIONS(2974), + [anon_sym_get] = ACTIONS(2974), + [anon_sym_set] = ACTIONS(2974), + [anon_sym_declare] = ACTIONS(2974), + [anon_sym_public] = ACTIONS(2974), + [anon_sym_private] = ACTIONS(2974), + [anon_sym_protected] = ACTIONS(2974), + [anon_sym_module] = ACTIONS(2974), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_extends] = ACTIONS(1655), }, [977] = { - [sym__call_signature] = STATE(5774), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2964), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2964), - [anon_sym_readonly] = ACTIONS(2964), - [anon_sym_get] = ACTIONS(2964), - [anon_sym_set] = ACTIONS(2964), - [anon_sym_declare] = ACTIONS(2964), - [anon_sym_public] = ACTIONS(2964), - [anon_sym_private] = ACTIONS(2964), - [anon_sym_protected] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2964), - [anon_sym_any] = ACTIONS(2964), - [anon_sym_number] = ACTIONS(2964), - [anon_sym_boolean] = ACTIONS(2964), - [anon_sym_string] = ACTIONS(2964), - [anon_sym_symbol] = ACTIONS(2964), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5701), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), }, [978] = { - [sym__call_signature] = STATE(5497), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2974), - [anon_sym_export] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2976), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2976), - [anon_sym_readonly] = ACTIONS(2976), - [anon_sym_get] = ACTIONS(2976), - [anon_sym_set] = ACTIONS(2976), - [anon_sym_declare] = ACTIONS(2976), - [anon_sym_public] = ACTIONS(2976), - [anon_sym_private] = ACTIONS(2976), - [anon_sym_protected] = ACTIONS(2976), - [anon_sym_module] = ACTIONS(2976), - [anon_sym_any] = ACTIONS(2976), - [anon_sym_number] = ACTIONS(2976), - [anon_sym_boolean] = ACTIONS(2976), - [anon_sym_string] = ACTIONS(2976), - [anon_sym_symbol] = ACTIONS(2976), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_PIPE_RBRACE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5701), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), }, [979] = { - [sym__call_signature] = STATE(5552), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2986), - [anon_sym_export] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_get] = ACTIONS(2988), - [anon_sym_set] = ACTIONS(2988), - [anon_sym_declare] = ACTIONS(2988), - [anon_sym_public] = ACTIONS(2988), - [anon_sym_private] = ACTIONS(2988), - [anon_sym_protected] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_any] = ACTIONS(2988), - [anon_sym_number] = ACTIONS(2988), - [anon_sym_boolean] = ACTIONS(2988), - [anon_sym_string] = ACTIONS(2988), - [anon_sym_symbol] = ACTIONS(2988), + [sym__call_signature] = STATE(5701), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2978), + [anon_sym_export] = ACTIONS(2980), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2980), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2980), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2980), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2980), + [anon_sym_readonly] = ACTIONS(2980), + [anon_sym_get] = ACTIONS(2980), + [anon_sym_set] = ACTIONS(2980), + [anon_sym_declare] = ACTIONS(2980), + [anon_sym_public] = ACTIONS(2980), + [anon_sym_private] = ACTIONS(2980), + [anon_sym_protected] = ACTIONS(2980), + [anon_sym_module] = ACTIONS(2980), + [anon_sym_any] = ACTIONS(2980), + [anon_sym_number] = ACTIONS(2980), + [anon_sym_boolean] = ACTIONS(2980), + [anon_sym_string] = ACTIONS(2980), + [anon_sym_symbol] = ACTIONS(2980), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), }, [980] = { - [sym__call_signature] = STATE(5497), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2974), - [anon_sym_export] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2976), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2976), - [anon_sym_readonly] = ACTIONS(2976), - [anon_sym_get] = ACTIONS(2976), - [anon_sym_set] = ACTIONS(2976), - [anon_sym_declare] = ACTIONS(2976), - [anon_sym_public] = ACTIONS(2976), - [anon_sym_private] = ACTIONS(2976), - [anon_sym_protected] = ACTIONS(2976), - [anon_sym_module] = ACTIONS(2976), - [anon_sym_any] = ACTIONS(2976), - [anon_sym_number] = ACTIONS(2976), - [anon_sym_boolean] = ACTIONS(2976), - [anon_sym_string] = ACTIONS(2976), - [anon_sym_symbol] = ACTIONS(2976), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5645), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2984), + [anon_sym_export] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2986), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_readonly] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(2986), + [anon_sym_set] = ACTIONS(2986), + [anon_sym_declare] = ACTIONS(2986), + [anon_sym_public] = ACTIONS(2986), + [anon_sym_private] = ACTIONS(2986), + [anon_sym_protected] = ACTIONS(2986), + [anon_sym_module] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2986), + [anon_sym_number] = ACTIONS(2986), + [anon_sym_boolean] = ACTIONS(2986), + [anon_sym_string] = ACTIONS(2986), + [anon_sym_symbol] = ACTIONS(2986), }, [981] = { - [sym__call_signature] = STATE(5721), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2990), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(1914), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5645), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2984), + [anon_sym_export] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2986), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_readonly] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(2986), + [anon_sym_set] = ACTIONS(2986), + [anon_sym_declare] = ACTIONS(2986), + [anon_sym_public] = ACTIONS(2986), + [anon_sym_private] = ACTIONS(2986), + [anon_sym_protected] = ACTIONS(2986), + [anon_sym_module] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2986), + [anon_sym_number] = ACTIONS(2986), + [anon_sym_boolean] = ACTIONS(2986), + [anon_sym_string] = ACTIONS(2986), + [anon_sym_symbol] = ACTIONS(2986), }, [982] = { - [sym__call_signature] = STATE(5552), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2986), - [anon_sym_export] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_get] = ACTIONS(2988), - [anon_sym_set] = ACTIONS(2988), - [anon_sym_declare] = ACTIONS(2988), - [anon_sym_public] = ACTIONS(2988), - [anon_sym_private] = ACTIONS(2988), - [anon_sym_protected] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_any] = ACTIONS(2988), - [anon_sym_number] = ACTIONS(2988), - [anon_sym_boolean] = ACTIONS(2988), - [anon_sym_string] = ACTIONS(2988), - [anon_sym_symbol] = ACTIONS(2988), + [sym__call_signature] = STATE(5507), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2948), + [anon_sym_export] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_readonly] = ACTIONS(2950), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2950), + [anon_sym_public] = ACTIONS(2950), + [anon_sym_private] = ACTIONS(2950), + [anon_sym_protected] = ACTIONS(2950), + [anon_sym_module] = ACTIONS(2950), + [anon_sym_any] = ACTIONS(2950), + [anon_sym_number] = ACTIONS(2950), + [anon_sym_boolean] = ACTIONS(2950), + [anon_sym_string] = ACTIONS(2950), + [anon_sym_symbol] = ACTIONS(2950), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), }, [983] = { - [sym__call_signature] = STATE(5721), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2990), - [anon_sym_export] = ACTIONS(2992), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2992), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2992), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2992), - [anon_sym_function] = ACTIONS(2984), - [anon_sym_EQ_GT] = ACTIONS(1914), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2992), - [anon_sym_readonly] = ACTIONS(2992), - [anon_sym_get] = ACTIONS(2992), - [anon_sym_set] = ACTIONS(2992), - [anon_sym_declare] = ACTIONS(2992), - [anon_sym_public] = ACTIONS(2992), - [anon_sym_private] = ACTIONS(2992), - [anon_sym_protected] = ACTIONS(2992), - [anon_sym_module] = ACTIONS(2992), - [anon_sym_any] = ACTIONS(2992), - [anon_sym_number] = ACTIONS(2992), - [anon_sym_boolean] = ACTIONS(2992), - [anon_sym_string] = ACTIONS(2992), - [anon_sym_symbol] = ACTIONS(2992), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5837), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2972), + [anon_sym_export] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(1936), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2974), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2974), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_readonly] = ACTIONS(2974), + [anon_sym_get] = ACTIONS(2974), + [anon_sym_set] = ACTIONS(2974), + [anon_sym_declare] = ACTIONS(2974), + [anon_sym_public] = ACTIONS(2974), + [anon_sym_private] = ACTIONS(2974), + [anon_sym_protected] = ACTIONS(2974), + [anon_sym_module] = ACTIONS(2974), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_extends] = ACTIONS(1655), }, [984] = { - [sym__call_signature] = STATE(5774), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2964), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2964), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2964), - [anon_sym_readonly] = ACTIONS(2964), - [anon_sym_get] = ACTIONS(2964), - [anon_sym_set] = ACTIONS(2964), - [anon_sym_declare] = ACTIONS(2964), - [anon_sym_public] = ACTIONS(2964), - [anon_sym_private] = ACTIONS(2964), - [anon_sym_protected] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2964), - [anon_sym_any] = ACTIONS(2964), - [anon_sym_number] = ACTIONS(2964), - [anon_sym_boolean] = ACTIONS(2964), - [anon_sym_string] = ACTIONS(2964), - [anon_sym_symbol] = ACTIONS(2964), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5626), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2990), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_EQ_GT] = ACTIONS(1918), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), }, [985] = { - [sym__call_signature] = STATE(5465), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2994), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1922), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_readonly] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(2996), - [anon_sym_set] = ACTIONS(2996), - [anon_sym_declare] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_private] = ACTIONS(2996), - [anon_sym_protected] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_any] = ACTIONS(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), - [anon_sym_implements] = ACTIONS(1619), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5626), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2988), + [anon_sym_export] = ACTIONS(2990), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2990), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2990), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2990), + [anon_sym_function] = ACTIONS(2982), + [anon_sym_EQ_GT] = ACTIONS(1918), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2990), + [anon_sym_readonly] = ACTIONS(2990), + [anon_sym_get] = ACTIONS(2990), + [anon_sym_set] = ACTIONS(2990), + [anon_sym_declare] = ACTIONS(2990), + [anon_sym_public] = ACTIONS(2990), + [anon_sym_private] = ACTIONS(2990), + [anon_sym_protected] = ACTIONS(2990), + [anon_sym_module] = ACTIONS(2990), + [anon_sym_any] = ACTIONS(2990), + [anon_sym_number] = ACTIONS(2990), + [anon_sym_boolean] = ACTIONS(2990), + [anon_sym_string] = ACTIONS(2990), + [anon_sym_symbol] = ACTIONS(2990), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), }, [986] = { - [sym__call_signature] = STATE(5686), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3000), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3000), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(3002), - [anon_sym_of] = ACTIONS(3005), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_readonly] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(3000), - [anon_sym_set] = ACTIONS(3000), - [anon_sym_declare] = ACTIONS(3000), - [anon_sym_public] = ACTIONS(3000), - [anon_sym_private] = ACTIONS(3000), - [anon_sym_protected] = ACTIONS(3000), - [anon_sym_module] = ACTIONS(3000), - [anon_sym_any] = ACTIONS(3000), - [anon_sym_number] = ACTIONS(3000), - [anon_sym_boolean] = ACTIONS(3000), - [anon_sym_string] = ACTIONS(3000), - [anon_sym_symbol] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5820), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2992), + [anon_sym_export] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2994), + [anon_sym_EQ] = ACTIONS(1912), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2994), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2994), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1914), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(2994), + [anon_sym_get] = ACTIONS(2994), + [anon_sym_set] = ACTIONS(2994), + [anon_sym_declare] = ACTIONS(2994), + [anon_sym_public] = ACTIONS(2994), + [anon_sym_private] = ACTIONS(2994), + [anon_sym_protected] = ACTIONS(2994), + [anon_sym_module] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2994), + [anon_sym_number] = ACTIONS(2994), + [anon_sym_boolean] = ACTIONS(2994), + [anon_sym_string] = ACTIONS(2994), + [anon_sym_symbol] = ACTIONS(2994), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), }, [987] = { - [sym__call_signature] = STATE(5520), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3007), - [anon_sym_export] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(2064), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3011), - [anon_sym_EQ_GT] = ACTIONS(2066), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3009), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(3009), - [anon_sym_set] = ACTIONS(3009), - [anon_sym_declare] = ACTIONS(3009), - [anon_sym_public] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3009), - [anon_sym_protected] = ACTIONS(3009), - [anon_sym_module] = ACTIONS(3009), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1636), + [sym__call_signature] = STATE(5475), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2998), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2998), + [anon_sym_readonly] = ACTIONS(2998), + [anon_sym_get] = ACTIONS(2998), + [anon_sym_set] = ACTIONS(2998), + [anon_sym_declare] = ACTIONS(2998), + [anon_sym_public] = ACTIONS(2998), + [anon_sym_private] = ACTIONS(2998), + [anon_sym_protected] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_any] = ACTIONS(2998), + [anon_sym_number] = ACTIONS(2998), + [anon_sym_boolean] = ACTIONS(2998), + [anon_sym_string] = ACTIONS(2998), + [anon_sym_symbol] = ACTIONS(2998), + [anon_sym_implements] = ACTIONS(1655), + [anon_sym_extends] = ACTIONS(1655), }, [988] = { - [sym__call_signature] = STATE(5465), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2994), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(1920), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1922), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_readonly] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(2996), - [anon_sym_set] = ACTIONS(2996), - [anon_sym_declare] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_private] = ACTIONS(2996), - [anon_sym_protected] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_any] = ACTIONS(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), - [anon_sym_implements] = ACTIONS(1619), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(2191), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3002), + [anon_sym_function] = ACTIONS(3004), + [anon_sym_EQ_GT] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_declare] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_module] = ACTIONS(3002), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_LBRACE_PIPE] = ACTIONS(1672), }, [989] = { - [sym__call_signature] = STATE(5520), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3007), - [anon_sym_export] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3011), - [anon_sym_EQ_GT] = ACTIONS(2066), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3009), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(3009), - [anon_sym_set] = ACTIONS(3009), - [anon_sym_declare] = ACTIONS(3009), - [anon_sym_public] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3009), - [anon_sym_protected] = ACTIONS(3009), - [anon_sym_module] = ACTIONS(3009), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1636), + [sym__call_signature] = STATE(5696), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3006), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2686), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(3010), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(1672), }, [990] = { - [sym__call_signature] = STATE(5477), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3013), - [anon_sym_export] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_readonly] = ACTIONS(3015), - [anon_sym_get] = ACTIONS(3015), - [anon_sym_set] = ACTIONS(3015), - [anon_sym_declare] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3015), - [anon_sym_private] = ACTIONS(3015), - [anon_sym_protected] = ACTIONS(3015), - [anon_sym_module] = ACTIONS(3015), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5736), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3012), + [anon_sym_export] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3014), + [anon_sym_EQ] = ACTIONS(1936), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3014), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1938), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_readonly] = ACTIONS(3014), + [anon_sym_get] = ACTIONS(3014), + [anon_sym_set] = ACTIONS(3014), + [anon_sym_declare] = ACTIONS(3014), + [anon_sym_public] = ACTIONS(3014), + [anon_sym_private] = ACTIONS(3014), + [anon_sym_protected] = ACTIONS(3014), + [anon_sym_module] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3014), + [anon_sym_number] = ACTIONS(3014), + [anon_sym_boolean] = ACTIONS(3014), + [anon_sym_string] = ACTIONS(3014), + [anon_sym_symbol] = ACTIONS(3014), + [anon_sym_extends] = ACTIONS(1655), }, [991] = { - [sym__call_signature] = STATE(5520), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3007), - [anon_sym_export] = ACTIONS(3009), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3009), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3009), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3009), - [anon_sym_function] = ACTIONS(3011), - [anon_sym_EQ_GT] = ACTIONS(2066), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3009), - [anon_sym_readonly] = ACTIONS(3009), - [anon_sym_get] = ACTIONS(3009), - [anon_sym_set] = ACTIONS(3009), - [anon_sym_declare] = ACTIONS(3009), - [anon_sym_public] = ACTIONS(3009), - [anon_sym_private] = ACTIONS(3009), - [anon_sym_protected] = ACTIONS(3009), - [anon_sym_module] = ACTIONS(3009), - [anon_sym_any] = ACTIONS(3009), - [anon_sym_number] = ACTIONS(3009), - [anon_sym_boolean] = ACTIONS(3009), - [anon_sym_string] = ACTIONS(3009), - [anon_sym_symbol] = ACTIONS(3009), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_LBRACE_PIPE] = ACTIONS(1636), - }, - [992] = { - [sym__call_signature] = STATE(5686), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3000), + [sym__call_signature] = STATE(5696), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3006), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3008), [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3000), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2688), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(3017), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(2958), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_readonly] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(3000), - [anon_sym_set] = ACTIONS(3000), - [anon_sym_declare] = ACTIONS(3000), - [anon_sym_public] = ACTIONS(3000), - [anon_sym_private] = ACTIONS(3000), - [anon_sym_protected] = ACTIONS(3000), - [anon_sym_module] = ACTIONS(3000), - [anon_sym_any] = ACTIONS(3000), - [anon_sym_number] = ACTIONS(3000), - [anon_sym_boolean] = ACTIONS(3000), - [anon_sym_string] = ACTIONS(3000), - [anon_sym_symbol] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [992] = { + [sym__call_signature] = STATE(5736), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3012), + [anon_sym_export] = ACTIONS(3014), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3014), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3014), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3014), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1938), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3014), + [anon_sym_readonly] = ACTIONS(3014), + [anon_sym_get] = ACTIONS(3014), + [anon_sym_set] = ACTIONS(3014), + [anon_sym_declare] = ACTIONS(3014), + [anon_sym_public] = ACTIONS(3014), + [anon_sym_private] = ACTIONS(3014), + [anon_sym_protected] = ACTIONS(3014), + [anon_sym_module] = ACTIONS(3014), + [anon_sym_any] = ACTIONS(3014), + [anon_sym_number] = ACTIONS(3014), + [anon_sym_boolean] = ACTIONS(3014), + [anon_sym_string] = ACTIONS(3014), + [anon_sym_symbol] = ACTIONS(3014), + [anon_sym_extends] = ACTIONS(1655), }, [993] = { - [sym__call_signature] = STATE(5465), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2994), - [anon_sym_export] = ACTIONS(2996), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2996), - [anon_sym_EQ] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2996), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2996), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1922), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2996), - [anon_sym_readonly] = ACTIONS(2996), - [anon_sym_get] = ACTIONS(2996), - [anon_sym_set] = ACTIONS(2996), - [anon_sym_declare] = ACTIONS(2996), - [anon_sym_public] = ACTIONS(2996), - [anon_sym_private] = ACTIONS(2996), - [anon_sym_protected] = ACTIONS(2996), - [anon_sym_module] = ACTIONS(2996), - [anon_sym_any] = ACTIONS(2996), - [anon_sym_number] = ACTIONS(2996), - [anon_sym_boolean] = ACTIONS(2996), - [anon_sym_string] = ACTIONS(2996), - [anon_sym_symbol] = ACTIONS(2996), - [anon_sym_implements] = ACTIONS(1619), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5507), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2948), + [anon_sym_export] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_EQ] = ACTIONS(1924), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_readonly] = ACTIONS(2950), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2950), + [anon_sym_public] = ACTIONS(2950), + [anon_sym_private] = ACTIONS(2950), + [anon_sym_protected] = ACTIONS(2950), + [anon_sym_module] = ACTIONS(2950), + [anon_sym_any] = ACTIONS(2950), + [anon_sym_number] = ACTIONS(2950), + [anon_sym_boolean] = ACTIONS(2950), + [anon_sym_string] = ACTIONS(2950), + [anon_sym_symbol] = ACTIONS(2950), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), }, [994] = { - [sym__call_signature] = STATE(5500), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3019), - [anon_sym_export] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1918), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3021), - [anon_sym_readonly] = ACTIONS(3021), - [anon_sym_get] = ACTIONS(3021), - [anon_sym_set] = ACTIONS(3021), - [anon_sym_declare] = ACTIONS(3021), - [anon_sym_public] = ACTIONS(3021), - [anon_sym_private] = ACTIONS(3021), - [anon_sym_protected] = ACTIONS(3021), - [anon_sym_module] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3021), - [anon_sym_number] = ACTIONS(3021), - [anon_sym_boolean] = ACTIONS(3021), - [anon_sym_string] = ACTIONS(3021), - [anon_sym_symbol] = ACTIONS(3021), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3002), + [anon_sym_function] = ACTIONS(3004), + [anon_sym_EQ_GT] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_declare] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_module] = ACTIONS(3002), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_LBRACE_PIPE] = ACTIONS(1672), }, [995] = { - [sym__call_signature] = STATE(5686), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3000), - [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3000), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2690), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2848), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_readonly] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(3000), - [anon_sym_set] = ACTIONS(3000), - [anon_sym_declare] = ACTIONS(3000), - [anon_sym_public] = ACTIONS(3000), - [anon_sym_private] = ACTIONS(3000), - [anon_sym_protected] = ACTIONS(3000), - [anon_sym_module] = ACTIONS(3000), - [anon_sym_any] = ACTIONS(3000), - [anon_sym_number] = ACTIONS(3000), - [anon_sym_boolean] = ACTIONS(3000), - [anon_sym_string] = ACTIONS(3000), - [anon_sym_symbol] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5507), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2948), + [anon_sym_export] = ACTIONS(2950), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2950), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2950), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2950), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2950), + [anon_sym_readonly] = ACTIONS(2950), + [anon_sym_get] = ACTIONS(2950), + [anon_sym_set] = ACTIONS(2950), + [anon_sym_declare] = ACTIONS(2950), + [anon_sym_public] = ACTIONS(2950), + [anon_sym_private] = ACTIONS(2950), + [anon_sym_protected] = ACTIONS(2950), + [anon_sym_module] = ACTIONS(2950), + [anon_sym_any] = ACTIONS(2950), + [anon_sym_number] = ACTIONS(2950), + [anon_sym_boolean] = ACTIONS(2950), + [anon_sym_string] = ACTIONS(2950), + [anon_sym_symbol] = ACTIONS(2950), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), }, [996] = { - [sym__call_signature] = STATE(5477), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3013), - [anon_sym_export] = ACTIONS(3015), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3015), - [anon_sym_EQ] = ACTIONS(1924), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3015), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3015), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1926), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3015), - [anon_sym_readonly] = ACTIONS(3015), - [anon_sym_get] = ACTIONS(3015), - [anon_sym_set] = ACTIONS(3015), - [anon_sym_declare] = ACTIONS(3015), - [anon_sym_public] = ACTIONS(3015), - [anon_sym_private] = ACTIONS(3015), - [anon_sym_protected] = ACTIONS(3015), - [anon_sym_module] = ACTIONS(3015), - [anon_sym_any] = ACTIONS(3015), - [anon_sym_number] = ACTIONS(3015), - [anon_sym_boolean] = ACTIONS(3015), - [anon_sym_string] = ACTIONS(3015), - [anon_sym_symbol] = ACTIONS(3015), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5475), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2998), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2998), + [anon_sym_readonly] = ACTIONS(2998), + [anon_sym_get] = ACTIONS(2998), + [anon_sym_set] = ACTIONS(2998), + [anon_sym_declare] = ACTIONS(2998), + [anon_sym_public] = ACTIONS(2998), + [anon_sym_private] = ACTIONS(2998), + [anon_sym_protected] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_any] = ACTIONS(2998), + [anon_sym_number] = ACTIONS(2998), + [anon_sym_boolean] = ACTIONS(2998), + [anon_sym_string] = ACTIONS(2998), + [anon_sym_symbol] = ACTIONS(2998), + [anon_sym_implements] = ACTIONS(1655), + [anon_sym_extends] = ACTIONS(1655), }, [997] = { - [sym__call_signature] = STATE(5497), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2974), - [anon_sym_export] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2976), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2976), - [anon_sym_readonly] = ACTIONS(2976), - [anon_sym_get] = ACTIONS(2976), - [anon_sym_set] = ACTIONS(2976), - [anon_sym_declare] = ACTIONS(2976), - [anon_sym_public] = ACTIONS(2976), - [anon_sym_private] = ACTIONS(2976), - [anon_sym_protected] = ACTIONS(2976), - [anon_sym_module] = ACTIONS(2976), - [anon_sym_any] = ACTIONS(2976), - [anon_sym_number] = ACTIONS(2976), - [anon_sym_boolean] = ACTIONS(2976), - [anon_sym_string] = ACTIONS(2976), - [anon_sym_symbol] = ACTIONS(2976), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5820), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2992), + [anon_sym_export] = ACTIONS(2994), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2994), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2994), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2994), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1914), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2994), + [anon_sym_readonly] = ACTIONS(2994), + [anon_sym_get] = ACTIONS(2994), + [anon_sym_set] = ACTIONS(2994), + [anon_sym_declare] = ACTIONS(2994), + [anon_sym_public] = ACTIONS(2994), + [anon_sym_private] = ACTIONS(2994), + [anon_sym_protected] = ACTIONS(2994), + [anon_sym_module] = ACTIONS(2994), + [anon_sym_any] = ACTIONS(2994), + [anon_sym_number] = ACTIONS(2994), + [anon_sym_boolean] = ACTIONS(2994), + [anon_sym_string] = ACTIONS(2994), + [anon_sym_symbol] = ACTIONS(2994), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), }, [998] = { - [sym__call_signature] = STATE(5497), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2974), - [anon_sym_export] = ACTIONS(2976), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2976), - [anon_sym_EQ] = ACTIONS(1952), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2976), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2976), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2976), - [anon_sym_readonly] = ACTIONS(2976), - [anon_sym_get] = ACTIONS(2976), - [anon_sym_set] = ACTIONS(2976), - [anon_sym_declare] = ACTIONS(2976), - [anon_sym_public] = ACTIONS(2976), - [anon_sym_private] = ACTIONS(2976), - [anon_sym_protected] = ACTIONS(2976), - [anon_sym_module] = ACTIONS(2976), - [anon_sym_any] = ACTIONS(2976), - [anon_sym_number] = ACTIONS(2976), - [anon_sym_boolean] = ACTIONS(2976), - [anon_sym_string] = ACTIONS(2976), - [anon_sym_symbol] = ACTIONS(2976), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5696), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3006), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(1908), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(3016), + [anon_sym_of] = ACTIONS(3019), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(1672), }, [999] = { - [sym__call_signature] = STATE(5686), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3000), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3000), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_readonly] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(3000), - [anon_sym_set] = ACTIONS(3000), - [anon_sym_declare] = ACTIONS(3000), - [anon_sym_public] = ACTIONS(3000), - [anon_sym_private] = ACTIONS(3000), - [anon_sym_protected] = ACTIONS(3000), - [anon_sym_module] = ACTIONS(3000), - [anon_sym_any] = ACTIONS(3000), - [anon_sym_number] = ACTIONS(3000), - [anon_sym_boolean] = ACTIONS(3000), - [anon_sym_string] = ACTIONS(3000), - [anon_sym_symbol] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5475), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2996), + [anon_sym_export] = ACTIONS(2998), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2998), + [anon_sym_EQ] = ACTIONS(1952), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2998), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2998), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1954), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2998), + [anon_sym_readonly] = ACTIONS(2998), + [anon_sym_get] = ACTIONS(2998), + [anon_sym_set] = ACTIONS(2998), + [anon_sym_declare] = ACTIONS(2998), + [anon_sym_public] = ACTIONS(2998), + [anon_sym_private] = ACTIONS(2998), + [anon_sym_protected] = ACTIONS(2998), + [anon_sym_module] = ACTIONS(2998), + [anon_sym_any] = ACTIONS(2998), + [anon_sym_number] = ACTIONS(2998), + [anon_sym_boolean] = ACTIONS(2998), + [anon_sym_string] = ACTIONS(2998), + [anon_sym_symbol] = ACTIONS(2998), + [anon_sym_implements] = ACTIONS(1655), + [anon_sym_extends] = ACTIONS(1655), }, [1000] = { - [sym__call_signature] = STATE(5500), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3019), - [anon_sym_export] = ACTIONS(3021), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3021), - [anon_sym_EQ] = ACTIONS(1916), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3021), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3021), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1918), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3021), - [anon_sym_readonly] = ACTIONS(3021), - [anon_sym_get] = ACTIONS(3021), - [anon_sym_set] = ACTIONS(3021), - [anon_sym_declare] = ACTIONS(3021), - [anon_sym_public] = ACTIONS(3021), - [anon_sym_private] = ACTIONS(3021), - [anon_sym_protected] = ACTIONS(3021), - [anon_sym_module] = ACTIONS(3021), - [anon_sym_any] = ACTIONS(3021), - [anon_sym_number] = ACTIONS(3021), - [anon_sym_boolean] = ACTIONS(3021), - [anon_sym_string] = ACTIONS(3021), - [anon_sym_symbol] = ACTIONS(3021), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1001] = { - [sym__call_signature] = STATE(5686), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2998), - [anon_sym_export] = ACTIONS(3000), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3000), + [sym__call_signature] = STATE(5696), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3006), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3008), [anon_sym_EQ] = ACTIONS(1908), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3000), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3000), - [anon_sym_function] = ACTIONS(2978), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2690), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(2846), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3000), - [anon_sym_readonly] = ACTIONS(3000), - [anon_sym_get] = ACTIONS(3000), - [anon_sym_set] = ACTIONS(3000), - [anon_sym_declare] = ACTIONS(3000), - [anon_sym_public] = ACTIONS(3000), - [anon_sym_private] = ACTIONS(3000), - [anon_sym_protected] = ACTIONS(3000), - [anon_sym_module] = ACTIONS(3000), - [anon_sym_any] = ACTIONS(3000), - [anon_sym_number] = ACTIONS(3000), - [anon_sym_boolean] = ACTIONS(3000), - [anon_sym_string] = ACTIONS(3000), - [anon_sym_symbol] = ACTIONS(3000), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1001] = { + [sym__call_signature] = STATE(5779), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3000), + [anon_sym_export] = ACTIONS(3002), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3002), + [anon_sym_EQ] = ACTIONS(2224), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3002), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3002), + [anon_sym_function] = ACTIONS(3004), + [anon_sym_EQ_GT] = ACTIONS(2193), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3002), + [anon_sym_readonly] = ACTIONS(3002), + [anon_sym_get] = ACTIONS(3002), + [anon_sym_set] = ACTIONS(3002), + [anon_sym_declare] = ACTIONS(3002), + [anon_sym_public] = ACTIONS(3002), + [anon_sym_private] = ACTIONS(3002), + [anon_sym_protected] = ACTIONS(3002), + [anon_sym_module] = ACTIONS(3002), + [anon_sym_any] = ACTIONS(3002), + [anon_sym_number] = ACTIONS(3002), + [anon_sym_boolean] = ACTIONS(3002), + [anon_sym_string] = ACTIONS(3002), + [anon_sym_symbol] = ACTIONS(3002), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_LBRACE_PIPE] = ACTIONS(1672), }, [1002] = { - [sym__call_signature] = STATE(5634), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3023), - [anon_sym_export] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(1936), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3025), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3025), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(3025), - [anon_sym_set] = ACTIONS(3025), - [anon_sym_declare] = ACTIONS(3025), - [anon_sym_public] = ACTIONS(3025), - [anon_sym_private] = ACTIONS(3025), - [anon_sym_protected] = ACTIONS(3025), - [anon_sym_module] = ACTIONS(3025), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5696), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3006), + [anon_sym_export] = ACTIONS(3008), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3008), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3008), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3008), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3008), + [anon_sym_readonly] = ACTIONS(3008), + [anon_sym_get] = ACTIONS(3008), + [anon_sym_set] = ACTIONS(3008), + [anon_sym_declare] = ACTIONS(3008), + [anon_sym_public] = ACTIONS(3008), + [anon_sym_private] = ACTIONS(3008), + [anon_sym_protected] = ACTIONS(3008), + [anon_sym_module] = ACTIONS(3008), + [anon_sym_any] = ACTIONS(3008), + [anon_sym_number] = ACTIONS(3008), + [anon_sym_boolean] = ACTIONS(3008), + [anon_sym_string] = ACTIONS(3008), + [anon_sym_symbol] = ACTIONS(3008), + [sym__automatic_semicolon] = ACTIONS(1672), }, [1003] = { - [sym__call_signature] = STATE(5540), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3027), - [anon_sym_export] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(1952), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3029), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3029), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(3029), - [anon_sym_set] = ACTIONS(3029), - [anon_sym_declare] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_module] = ACTIONS(3029), - [anon_sym_any] = ACTIONS(3029), - [anon_sym_number] = ACTIONS(3029), - [anon_sym_boolean] = ACTIONS(3029), - [anon_sym_string] = ACTIONS(3029), - [anon_sym_symbol] = ACTIONS(3029), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5515), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(2224), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(3004), + [anon_sym_EQ_GT] = ACTIONS(2226), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(1672), }, [1004] = { - [sym__call_signature] = STATE(5774), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2964), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2964), - [anon_sym_readonly] = ACTIONS(2964), - [anon_sym_get] = ACTIONS(2964), - [anon_sym_set] = ACTIONS(2964), - [anon_sym_declare] = ACTIONS(2964), - [anon_sym_public] = ACTIONS(2964), - [anon_sym_private] = ACTIONS(2964), - [anon_sym_protected] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2964), - [anon_sym_any] = ACTIONS(2964), - [anon_sym_number] = ACTIONS(2964), - [anon_sym_boolean] = ACTIONS(2964), - [anon_sym_string] = ACTIONS(2964), - [anon_sym_symbol] = ACTIONS(2964), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5587), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3025), + [anon_sym_export] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_get] = ACTIONS(3027), + [anon_sym_set] = ACTIONS(3027), + [anon_sym_declare] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_any] = ACTIONS(3027), + [anon_sym_number] = ACTIONS(3027), + [anon_sym_boolean] = ACTIONS(3027), + [anon_sym_string] = ACTIONS(3027), + [anon_sym_symbol] = ACTIONS(3027), }, [1005] = { - [sym__call_signature] = STATE(5542), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3031), - [anon_sym_export] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(2072), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3033), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2074), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3033), - [anon_sym_readonly] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(3033), - [anon_sym_set] = ACTIONS(3033), - [anon_sym_declare] = ACTIONS(3033), - [anon_sym_public] = ACTIONS(3033), - [anon_sym_private] = ACTIONS(3033), - [anon_sym_protected] = ACTIONS(3033), - [anon_sym_module] = ACTIONS(3033), - [anon_sym_any] = ACTIONS(3033), - [anon_sym_number] = ACTIONS(3033), - [anon_sym_boolean] = ACTIONS(3033), - [anon_sym_string] = ACTIONS(3033), - [anon_sym_symbol] = ACTIONS(3033), - [anon_sym_implements] = ACTIONS(1619), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5716), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5813), + [sym_pattern] = STATE(4628), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4151), + [sym_constructor_type] = STATE(4151), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4151), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), + [sym_type_parameters] = STATE(5238), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4151), + [sym_union_type] = STATE(4151), + [sym_intersection_type] = STATE(4151), + [sym_function_type] = STATE(4151), + [sym_identifier] = ACTIONS(1646), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(540), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_EQ] = ACTIONS(3032), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(1657), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_typeof] = ACTIONS(1662), + [anon_sym_LPAREN] = ACTIONS(1664), + [anon_sym_RPAREN] = ACTIONS(3032), + [anon_sym_COLON] = ACTIONS(3032), + [anon_sym_LBRACK] = ACTIONS(1666), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(1674), + [anon_sym_DOT_DOT_DOT] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(672), + [anon_sym_AMP] = ACTIONS(674), + [anon_sym_PIPE] = ACTIONS(676), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(1692), + [sym_this] = ACTIONS(1694), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(1698), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(1648), + [anon_sym_private] = ACTIONS(1648), + [anon_sym_protected] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(1700), + [anon_sym_number] = ACTIONS(1700), + [anon_sym_boolean] = ACTIONS(1700), + [anon_sym_string] = ACTIONS(1700), + [anon_sym_symbol] = ACTIONS(1700), + [anon_sym_infer] = ACTIONS(610), + [anon_sym_keyof] = ACTIONS(692), + [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1006] = { - [sym__call_signature] = STATE(5542), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3031), - [anon_sym_export] = ACTIONS(3033), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3033), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3033), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3033), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2074), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3033), - [anon_sym_readonly] = ACTIONS(3033), - [anon_sym_get] = ACTIONS(3033), - [anon_sym_set] = ACTIONS(3033), - [anon_sym_declare] = ACTIONS(3033), - [anon_sym_public] = ACTIONS(3033), - [anon_sym_private] = ACTIONS(3033), - [anon_sym_protected] = ACTIONS(3033), - [anon_sym_module] = ACTIONS(3033), - [anon_sym_any] = ACTIONS(3033), - [anon_sym_number] = ACTIONS(3033), - [anon_sym_boolean] = ACTIONS(3033), - [anon_sym_string] = ACTIONS(3033), - [anon_sym_symbol] = ACTIONS(3033), - [anon_sym_implements] = ACTIONS(1619), - }, - [1007] = { - [sym__call_signature] = STATE(5785), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3035), - [anon_sym_export] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3037), - [anon_sym_function] = ACTIONS(3011), - [anon_sym_EQ_GT] = ACTIONS(2211), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(3037), - [anon_sym_set] = ACTIONS(3037), - [anon_sym_declare] = ACTIONS(3037), - [anon_sym_public] = ACTIONS(3037), - [anon_sym_private] = ACTIONS(3037), - [anon_sym_protected] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_any] = ACTIONS(3037), - [anon_sym_number] = ACTIONS(3037), - [anon_sym_boolean] = ACTIONS(3037), - [anon_sym_string] = ACTIONS(3037), - [anon_sym_symbol] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(1636), - }, - [1008] = { - [sym__call_signature] = STATE(5540), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3027), - [anon_sym_export] = ACTIONS(3029), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3029), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3029), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3029), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(1954), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3029), - [anon_sym_readonly] = ACTIONS(3029), - [anon_sym_get] = ACTIONS(3029), - [anon_sym_set] = ACTIONS(3029), - [anon_sym_declare] = ACTIONS(3029), - [anon_sym_public] = ACTIONS(3029), - [anon_sym_private] = ACTIONS(3029), - [anon_sym_protected] = ACTIONS(3029), - [anon_sym_module] = ACTIONS(3029), - [anon_sym_any] = ACTIONS(3029), - [anon_sym_number] = ACTIONS(3029), - [anon_sym_boolean] = ACTIONS(3029), - [anon_sym_string] = ACTIONS(3029), - [anon_sym_symbol] = ACTIONS(3029), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1009] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_namespace] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_typeof] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_with] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_debugger] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_catch] = ACTIONS(1968), - [anon_sym_finally] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(1968), - [anon_sym_delete] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1966), - [sym_number] = ACTIONS(1966), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_true] = ACTIONS(1968), - [sym_false] = ACTIONS(1968), - [sym_null] = ACTIONS(1968), - [sym_undefined] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_readonly] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(1968), - [anon_sym_set] = ACTIONS(1968), - [anon_sym_declare] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_module] = ACTIONS(1968), - [anon_sym_any] = ACTIONS(1968), - [anon_sym_number] = ACTIONS(1968), - [anon_sym_boolean] = ACTIONS(1968), - [anon_sym_string] = ACTIONS(1968), - [anon_sym_symbol] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_interface] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [sym__automatic_semicolon] = ACTIONS(3039), - }, - [1010] = { - [sym__call_signature] = STATE(5774), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2962), - [anon_sym_export] = ACTIONS(2964), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2964), - [anon_sym_EQ] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2964), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2964), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2964), - [anon_sym_readonly] = ACTIONS(2964), - [anon_sym_get] = ACTIONS(2964), - [anon_sym_set] = ACTIONS(2964), - [anon_sym_declare] = ACTIONS(2964), - [anon_sym_public] = ACTIONS(2964), - [anon_sym_private] = ACTIONS(2964), - [anon_sym_protected] = ACTIONS(2964), - [anon_sym_module] = ACTIONS(2964), - [anon_sym_any] = ACTIONS(2964), - [anon_sym_number] = ACTIONS(2964), - [anon_sym_boolean] = ACTIONS(2964), - [anon_sym_string] = ACTIONS(2964), - [anon_sym_symbol] = ACTIONS(2964), - [anon_sym_extends] = ACTIONS(1619), - }, - [1011] = { - [sym__call_signature] = STATE(5636), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3041), - [anon_sym_export] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3048), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2207), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_readonly] = ACTIONS(3043), - [anon_sym_get] = ACTIONS(3043), - [anon_sym_set] = ACTIONS(3043), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_any] = ACTIONS(3043), - [anon_sym_number] = ACTIONS(3043), - [anon_sym_boolean] = ACTIONS(3043), - [anon_sym_string] = ACTIONS(3043), - [anon_sym_symbol] = ACTIONS(3043), - }, - [1012] = { [ts_builtin_sym_end] = ACTIONS(1940), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), @@ -112190,492 +111738,1059 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(1942), [sym__automatic_semicolon] = ACTIONS(1950), }, + [1007] = { + [sym__call_signature] = STATE(5798), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3036), + [anon_sym_export] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3038), + [anon_sym_EQ] = ACTIONS(1920), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3038), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1922), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3038), + [anon_sym_get] = ACTIONS(3038), + [anon_sym_set] = ACTIONS(3038), + [anon_sym_declare] = ACTIONS(3038), + [anon_sym_public] = ACTIONS(3038), + [anon_sym_private] = ACTIONS(3038), + [anon_sym_protected] = ACTIONS(3038), + [anon_sym_module] = ACTIONS(3038), + [anon_sym_any] = ACTIONS(3038), + [anon_sym_number] = ACTIONS(3038), + [anon_sym_boolean] = ACTIONS(3038), + [anon_sym_string] = ACTIONS(3038), + [anon_sym_symbol] = ACTIONS(3038), + [anon_sym_extends] = ACTIONS(1655), + }, + [1008] = { + [sym__call_signature] = STATE(5798), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3036), + [anon_sym_export] = ACTIONS(3038), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3038), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3038), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3038), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1922), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3038), + [anon_sym_readonly] = ACTIONS(3038), + [anon_sym_get] = ACTIONS(3038), + [anon_sym_set] = ACTIONS(3038), + [anon_sym_declare] = ACTIONS(3038), + [anon_sym_public] = ACTIONS(3038), + [anon_sym_private] = ACTIONS(3038), + [anon_sym_protected] = ACTIONS(3038), + [anon_sym_module] = ACTIONS(3038), + [anon_sym_any] = ACTIONS(3038), + [anon_sym_number] = ACTIONS(3038), + [anon_sym_boolean] = ACTIONS(3038), + [anon_sym_string] = ACTIONS(3038), + [anon_sym_symbol] = ACTIONS(3038), + [anon_sym_extends] = ACTIONS(1655), + }, + [1009] = { + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_export] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_namespace] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_typeof] = ACTIONS(2065), + [anon_sym_import] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_switch] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_debugger] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_throw] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_case] = ACTIONS(2065), + [anon_sym_catch] = ACTIONS(2065), + [anon_sym_finally] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2065), + [anon_sym_class] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_function] = ACTIONS(2065), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_void] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2063), + [sym_number] = ACTIONS(2063), + [sym_this] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_undefined] = ACTIONS(2065), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_readonly] = ACTIONS(2065), + [anon_sym_get] = ACTIONS(2065), + [anon_sym_set] = ACTIONS(2065), + [anon_sym_declare] = ACTIONS(2065), + [anon_sym_public] = ACTIONS(2065), + [anon_sym_private] = ACTIONS(2065), + [anon_sym_protected] = ACTIONS(2065), + [anon_sym_module] = ACTIONS(2065), + [anon_sym_any] = ACTIONS(2065), + [anon_sym_number] = ACTIONS(2065), + [anon_sym_boolean] = ACTIONS(2065), + [anon_sym_string] = ACTIONS(2065), + [anon_sym_symbol] = ACTIONS(2065), + [anon_sym_abstract] = ACTIONS(2065), + [anon_sym_interface] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [sym__automatic_semicolon] = ACTIONS(3040), + }, + [1010] = { + [sym__call_signature] = STATE(5522), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3042), + [anon_sym_export] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_EQ] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_get] = ACTIONS(3044), + [anon_sym_set] = ACTIONS(3044), + [anon_sym_declare] = ACTIONS(3044), + [anon_sym_public] = ACTIONS(3044), + [anon_sym_private] = ACTIONS(3044), + [anon_sym_protected] = ACTIONS(3044), + [anon_sym_module] = ACTIONS(3044), + [anon_sym_any] = ACTIONS(3044), + [anon_sym_number] = ACTIONS(3044), + [anon_sym_boolean] = ACTIONS(3044), + [anon_sym_string] = ACTIONS(3044), + [anon_sym_symbol] = ACTIONS(3044), + [anon_sym_implements] = ACTIONS(1655), + }, + [1011] = { + [sym_catch_clause] = STATE(1049), + [sym_finally_clause] = STATE(1077), + [ts_builtin_sym_end] = ACTIONS(3046), + [sym_identifier] = ACTIONS(3048), + [anon_sym_export] = ACTIONS(3048), + [anon_sym_default] = ACTIONS(3048), + [anon_sym_type] = ACTIONS(3048), + [anon_sym_namespace] = ACTIONS(3048), + [anon_sym_LBRACE] = ACTIONS(3046), + [anon_sym_RBRACE] = ACTIONS(3046), + [anon_sym_typeof] = ACTIONS(3048), + [anon_sym_import] = ACTIONS(3048), + [anon_sym_var] = ACTIONS(3048), + [anon_sym_let] = ACTIONS(3048), + [anon_sym_const] = ACTIONS(3048), + [anon_sym_BANG] = ACTIONS(3046), + [anon_sym_else] = ACTIONS(3048), + [anon_sym_if] = ACTIONS(3048), + [anon_sym_switch] = ACTIONS(3048), + [anon_sym_for] = ACTIONS(3048), + [anon_sym_LPAREN] = ACTIONS(3046), + [anon_sym_await] = ACTIONS(3048), + [anon_sym_while] = ACTIONS(3048), + [anon_sym_do] = ACTIONS(3048), + [anon_sym_try] = ACTIONS(3048), + [anon_sym_with] = ACTIONS(3048), + [anon_sym_break] = ACTIONS(3048), + [anon_sym_continue] = ACTIONS(3048), + [anon_sym_debugger] = ACTIONS(3048), + [anon_sym_return] = ACTIONS(3048), + [anon_sym_throw] = ACTIONS(3048), + [anon_sym_SEMI] = ACTIONS(3046), + [anon_sym_case] = ACTIONS(3048), + [anon_sym_catch] = ACTIONS(3050), + [anon_sym_finally] = ACTIONS(3052), + [anon_sym_yield] = ACTIONS(3048), + [anon_sym_LBRACK] = ACTIONS(3046), + [anon_sym_LT] = ACTIONS(3046), + [anon_sym_SLASH] = ACTIONS(3048), + [anon_sym_class] = ACTIONS(3048), + [anon_sym_async] = ACTIONS(3048), + [anon_sym_function] = ACTIONS(3048), + [anon_sym_new] = ACTIONS(3048), + [anon_sym_PLUS] = ACTIONS(3048), + [anon_sym_DASH] = ACTIONS(3048), + [anon_sym_TILDE] = ACTIONS(3046), + [anon_sym_void] = ACTIONS(3048), + [anon_sym_delete] = ACTIONS(3048), + [anon_sym_PLUS_PLUS] = ACTIONS(3046), + [anon_sym_DASH_DASH] = ACTIONS(3046), + [anon_sym_DQUOTE] = ACTIONS(3046), + [anon_sym_SQUOTE] = ACTIONS(3046), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3046), + [sym_number] = ACTIONS(3046), + [sym_this] = ACTIONS(3048), + [sym_super] = ACTIONS(3048), + [sym_true] = ACTIONS(3048), + [sym_false] = ACTIONS(3048), + [sym_null] = ACTIONS(3048), + [sym_undefined] = ACTIONS(3048), + [anon_sym_AT] = ACTIONS(3046), + [anon_sym_static] = ACTIONS(3048), + [anon_sym_readonly] = ACTIONS(3048), + [anon_sym_get] = ACTIONS(3048), + [anon_sym_set] = ACTIONS(3048), + [anon_sym_declare] = ACTIONS(3048), + [anon_sym_public] = ACTIONS(3048), + [anon_sym_private] = ACTIONS(3048), + [anon_sym_protected] = ACTIONS(3048), + [anon_sym_module] = ACTIONS(3048), + [anon_sym_any] = ACTIONS(3048), + [anon_sym_number] = ACTIONS(3048), + [anon_sym_boolean] = ACTIONS(3048), + [anon_sym_string] = ACTIONS(3048), + [anon_sym_symbol] = ACTIONS(3048), + [anon_sym_abstract] = ACTIONS(3048), + [anon_sym_interface] = ACTIONS(3048), + [anon_sym_enum] = ACTIONS(3048), + }, + [1012] = { + [sym__call_signature] = STATE(5515), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3021), + [anon_sym_export] = ACTIONS(3023), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3023), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3023), + [anon_sym_LBRACE] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3023), + [anon_sym_function] = ACTIONS(3004), + [anon_sym_EQ_GT] = ACTIONS(2226), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3023), + [anon_sym_readonly] = ACTIONS(3023), + [anon_sym_get] = ACTIONS(3023), + [anon_sym_set] = ACTIONS(3023), + [anon_sym_declare] = ACTIONS(3023), + [anon_sym_public] = ACTIONS(3023), + [anon_sym_private] = ACTIONS(3023), + [anon_sym_protected] = ACTIONS(3023), + [anon_sym_module] = ACTIONS(3023), + [anon_sym_any] = ACTIONS(3023), + [anon_sym_number] = ACTIONS(3023), + [anon_sym_boolean] = ACTIONS(3023), + [anon_sym_string] = ACTIONS(3023), + [anon_sym_symbol] = ACTIONS(3023), + [anon_sym_LBRACE_PIPE] = ACTIONS(1672), + }, [1013] = { - [sym__call_signature] = STATE(5552), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2986), - [anon_sym_export] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(1616), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_get] = ACTIONS(2988), - [anon_sym_set] = ACTIONS(2988), - [anon_sym_declare] = ACTIONS(2988), - [anon_sym_public] = ACTIONS(2988), - [anon_sym_private] = ACTIONS(2988), - [anon_sym_protected] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_any] = ACTIONS(2988), - [anon_sym_number] = ACTIONS(2988), - [anon_sym_boolean] = ACTIONS(2988), - [anon_sym_string] = ACTIONS(2988), - [anon_sym_symbol] = ACTIONS(2988), + [sym__call_signature] = STATE(5645), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2984), + [anon_sym_export] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2986), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_readonly] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(2986), + [anon_sym_set] = ACTIONS(2986), + [anon_sym_declare] = ACTIONS(2986), + [anon_sym_public] = ACTIONS(2986), + [anon_sym_private] = ACTIONS(2986), + [anon_sym_protected] = ACTIONS(2986), + [anon_sym_module] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2986), + [anon_sym_number] = ACTIONS(2986), + [anon_sym_boolean] = ACTIONS(2986), + [anon_sym_string] = ACTIONS(2986), + [anon_sym_symbol] = ACTIONS(2986), }, [1014] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5706), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5483), - [sym_pattern] = STATE(4443), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4141), - [sym_constructor_type] = STATE(4141), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4141), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), - [sym_type_parameters] = STATE(5228), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4141), - [sym_union_type] = STATE(4141), - [sym_intersection_type] = STATE(4141), - [sym_function_type] = STATE(4141), - [sym_identifier] = ACTIONS(1610), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(540), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_EQ] = ACTIONS(3048), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(1621), - [anon_sym_COMMA] = ACTIONS(3048), - [anon_sym_typeof] = ACTIONS(1626), - [anon_sym_LPAREN] = ACTIONS(1628), - [anon_sym_RPAREN] = ACTIONS(3048), - [anon_sym_COLON] = ACTIONS(3048), - [anon_sym_LBRACK] = ACTIONS(1630), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(1638), - [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(672), - [anon_sym_AMP] = ACTIONS(674), - [anon_sym_PIPE] = ACTIONS(676), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), - [sym_this] = ACTIONS(1658), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_static] = ACTIONS(1612), - [anon_sym_readonly] = ACTIONS(1662), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(1664), - [anon_sym_number] = ACTIONS(1664), - [anon_sym_boolean] = ACTIONS(1664), - [anon_sym_string] = ACTIONS(1664), - [anon_sym_symbol] = ACTIONS(1664), - [anon_sym_infer] = ACTIONS(610), - [anon_sym_keyof] = ACTIONS(692), - [anon_sym_LBRACE_PIPE] = ACTIONS(614), + [sym__call_signature] = STATE(5522), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3042), + [anon_sym_export] = ACTIONS(3044), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3044), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3044), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3044), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3044), + [anon_sym_readonly] = ACTIONS(3044), + [anon_sym_get] = ACTIONS(3044), + [anon_sym_set] = ACTIONS(3044), + [anon_sym_declare] = ACTIONS(3044), + [anon_sym_public] = ACTIONS(3044), + [anon_sym_private] = ACTIONS(3044), + [anon_sym_protected] = ACTIONS(3044), + [anon_sym_module] = ACTIONS(3044), + [anon_sym_any] = ACTIONS(3044), + [anon_sym_number] = ACTIONS(3044), + [anon_sym_boolean] = ACTIONS(3044), + [anon_sym_string] = ACTIONS(3044), + [anon_sym_symbol] = ACTIONS(3044), + [anon_sym_implements] = ACTIONS(1655), }, [1015] = { - [sym__call_signature] = STATE(5634), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3023), - [anon_sym_export] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3025), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3025), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3025), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1938), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3025), - [anon_sym_readonly] = ACTIONS(3025), - [anon_sym_get] = ACTIONS(3025), - [anon_sym_set] = ACTIONS(3025), - [anon_sym_declare] = ACTIONS(3025), - [anon_sym_public] = ACTIONS(3025), - [anon_sym_private] = ACTIONS(3025), - [anon_sym_protected] = ACTIONS(3025), - [anon_sym_module] = ACTIONS(3025), - [anon_sym_any] = ACTIONS(3025), - [anon_sym_number] = ACTIONS(3025), - [anon_sym_boolean] = ACTIONS(3025), - [anon_sym_string] = ACTIONS(3025), - [anon_sym_symbol] = ACTIONS(3025), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5837), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2972), + [anon_sym_export] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2974), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_readonly] = ACTIONS(2974), + [anon_sym_get] = ACTIONS(2974), + [anon_sym_set] = ACTIONS(2974), + [anon_sym_declare] = ACTIONS(2974), + [anon_sym_public] = ACTIONS(2974), + [anon_sym_private] = ACTIONS(2974), + [anon_sym_protected] = ACTIONS(2974), + [anon_sym_module] = ACTIONS(2974), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_extends] = ACTIONS(1655), }, [1016] = { - [sym_catch_clause] = STATE(1046), - [sym_finally_clause] = STATE(1145), - [ts_builtin_sym_end] = ACTIONS(3052), + [sym__call_signature] = STATE(5550), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), [sym_identifier] = ACTIONS(3054), - [anon_sym_export] = ACTIONS(3054), - [anon_sym_default] = ACTIONS(3054), - [anon_sym_type] = ACTIONS(3054), - [anon_sym_namespace] = ACTIONS(3054), - [anon_sym_LBRACE] = ACTIONS(3052), - [anon_sym_RBRACE] = ACTIONS(3052), - [anon_sym_typeof] = ACTIONS(3054), - [anon_sym_import] = ACTIONS(3054), - [anon_sym_var] = ACTIONS(3054), - [anon_sym_let] = ACTIONS(3054), - [anon_sym_const] = ACTIONS(3054), - [anon_sym_BANG] = ACTIONS(3052), - [anon_sym_else] = ACTIONS(3054), - [anon_sym_if] = ACTIONS(3054), - [anon_sym_switch] = ACTIONS(3054), - [anon_sym_for] = ACTIONS(3054), - [anon_sym_LPAREN] = ACTIONS(3052), - [anon_sym_await] = ACTIONS(3054), - [anon_sym_while] = ACTIONS(3054), - [anon_sym_do] = ACTIONS(3054), - [anon_sym_try] = ACTIONS(3054), - [anon_sym_with] = ACTIONS(3054), - [anon_sym_break] = ACTIONS(3054), - [anon_sym_continue] = ACTIONS(3054), - [anon_sym_debugger] = ACTIONS(3054), - [anon_sym_return] = ACTIONS(3054), - [anon_sym_throw] = ACTIONS(3054), - [anon_sym_SEMI] = ACTIONS(3052), - [anon_sym_case] = ACTIONS(3054), - [anon_sym_catch] = ACTIONS(3056), - [anon_sym_finally] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3054), - [anon_sym_LBRACK] = ACTIONS(3052), - [anon_sym_LT] = ACTIONS(3052), - [anon_sym_SLASH] = ACTIONS(3054), - [anon_sym_class] = ACTIONS(3054), - [anon_sym_async] = ACTIONS(3054), - [anon_sym_function] = ACTIONS(3054), - [anon_sym_new] = ACTIONS(3054), - [anon_sym_PLUS] = ACTIONS(3054), - [anon_sym_DASH] = ACTIONS(3054), - [anon_sym_TILDE] = ACTIONS(3052), - [anon_sym_void] = ACTIONS(3054), - [anon_sym_delete] = ACTIONS(3054), - [anon_sym_PLUS_PLUS] = ACTIONS(3052), - [anon_sym_DASH_DASH] = ACTIONS(3052), - [anon_sym_DQUOTE] = ACTIONS(3052), - [anon_sym_SQUOTE] = ACTIONS(3052), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3052), - [sym_number] = ACTIONS(3052), - [sym_this] = ACTIONS(3054), - [sym_super] = ACTIONS(3054), - [sym_true] = ACTIONS(3054), - [sym_false] = ACTIONS(3054), - [sym_null] = ACTIONS(3054), - [sym_undefined] = ACTIONS(3054), - [anon_sym_AT] = ACTIONS(3052), - [anon_sym_static] = ACTIONS(3054), - [anon_sym_readonly] = ACTIONS(3054), - [anon_sym_get] = ACTIONS(3054), - [anon_sym_set] = ACTIONS(3054), - [anon_sym_declare] = ACTIONS(3054), - [anon_sym_public] = ACTIONS(3054), - [anon_sym_private] = ACTIONS(3054), - [anon_sym_protected] = ACTIONS(3054), - [anon_sym_module] = ACTIONS(3054), - [anon_sym_any] = ACTIONS(3054), - [anon_sym_number] = ACTIONS(3054), - [anon_sym_boolean] = ACTIONS(3054), - [anon_sym_string] = ACTIONS(3054), - [anon_sym_symbol] = ACTIONS(3054), - [anon_sym_abstract] = ACTIONS(3054), - [anon_sym_interface] = ACTIONS(3054), - [anon_sym_enum] = ACTIONS(3054), + [anon_sym_export] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1926), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_readonly] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3056), + [anon_sym_set] = ACTIONS(3056), + [anon_sym_declare] = ACTIONS(3056), + [anon_sym_public] = ACTIONS(3056), + [anon_sym_private] = ACTIONS(3056), + [anon_sym_protected] = ACTIONS(3056), + [anon_sym_module] = ACTIONS(3056), + [anon_sym_any] = ACTIONS(3056), + [anon_sym_number] = ACTIONS(3056), + [anon_sym_boolean] = ACTIONS(3056), + [anon_sym_string] = ACTIONS(3056), + [anon_sym_symbol] = ACTIONS(3056), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), }, [1017] = { - [sym__call_signature] = STATE(5785), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3035), - [anon_sym_export] = ACTIONS(3037), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3037), - [anon_sym_EQ] = ACTIONS(2209), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3037), - [anon_sym_LBRACE] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3037), - [anon_sym_function] = ACTIONS(3011), - [anon_sym_EQ_GT] = ACTIONS(2211), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3037), - [anon_sym_readonly] = ACTIONS(3037), - [anon_sym_get] = ACTIONS(3037), - [anon_sym_set] = ACTIONS(3037), - [anon_sym_declare] = ACTIONS(3037), - [anon_sym_public] = ACTIONS(3037), - [anon_sym_private] = ACTIONS(3037), - [anon_sym_protected] = ACTIONS(3037), - [anon_sym_module] = ACTIONS(3037), - [anon_sym_any] = ACTIONS(3037), - [anon_sym_number] = ACTIONS(3037), - [anon_sym_boolean] = ACTIONS(3037), - [anon_sym_string] = ACTIONS(3037), - [anon_sym_symbol] = ACTIONS(3037), - [anon_sym_LBRACE_PIPE] = ACTIONS(1636), + [sym__call_signature] = STATE(5837), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2972), + [anon_sym_export] = ACTIONS(2974), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2974), + [anon_sym_EQ] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2974), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2974), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2974), + [anon_sym_readonly] = ACTIONS(2974), + [anon_sym_get] = ACTIONS(2974), + [anon_sym_set] = ACTIONS(2974), + [anon_sym_declare] = ACTIONS(2974), + [anon_sym_public] = ACTIONS(2974), + [anon_sym_private] = ACTIONS(2974), + [anon_sym_protected] = ACTIONS(2974), + [anon_sym_module] = ACTIONS(2974), + [anon_sym_any] = ACTIONS(2974), + [anon_sym_number] = ACTIONS(2974), + [anon_sym_boolean] = ACTIONS(2974), + [anon_sym_string] = ACTIONS(2974), + [anon_sym_symbol] = ACTIONS(2974), + [anon_sym_extends] = ACTIONS(1655), }, [1018] = { - [ts_builtin_sym_end] = ACTIONS(2100), - [sym_identifier] = ACTIONS(2102), - [anon_sym_export] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_type] = ACTIONS(2102), - [anon_sym_namespace] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_COMMA] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_typeof] = ACTIONS(2102), - [anon_sym_import] = ACTIONS(2102), - [anon_sym_var] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_switch] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_await] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_debugger] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_throw] = ACTIONS(2102), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_case] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_class] = ACTIONS(2102), - [anon_sym_async] = ACTIONS(2102), - [anon_sym_function] = ACTIONS(2102), - [anon_sym_new] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_void] = ACTIONS(2102), - [anon_sym_delete] = ACTIONS(2102), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2100), - [anon_sym_SQUOTE] = ACTIONS(2100), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2100), - [sym_number] = ACTIONS(2100), - [sym_this] = ACTIONS(2102), - [sym_super] = ACTIONS(2102), - [sym_true] = ACTIONS(2102), - [sym_false] = ACTIONS(2102), - [sym_null] = ACTIONS(2102), - [sym_undefined] = ACTIONS(2102), - [anon_sym_AT] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_readonly] = ACTIONS(2102), - [anon_sym_get] = ACTIONS(2102), - [anon_sym_set] = ACTIONS(2102), - [anon_sym_declare] = ACTIONS(2102), - [anon_sym_public] = ACTIONS(2102), - [anon_sym_private] = ACTIONS(2102), - [anon_sym_protected] = ACTIONS(2102), - [anon_sym_module] = ACTIONS(2102), - [anon_sym_any] = ACTIONS(2102), - [anon_sym_number] = ACTIONS(2102), - [anon_sym_boolean] = ACTIONS(2102), - [anon_sym_string] = ACTIONS(2102), - [anon_sym_symbol] = ACTIONS(2102), - [anon_sym_abstract] = ACTIONS(2102), - [anon_sym_interface] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), - [anon_sym_PIPE_RBRACE] = ACTIONS(2100), - [sym__automatic_semicolon] = ACTIONS(2100), + [sym__call_signature] = STATE(5550), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3054), + [anon_sym_export] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3056), + [anon_sym_EQ] = ACTIONS(1924), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3056), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3056), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1926), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3056), + [anon_sym_readonly] = ACTIONS(3056), + [anon_sym_get] = ACTIONS(3056), + [anon_sym_set] = ACTIONS(3056), + [anon_sym_declare] = ACTIONS(3056), + [anon_sym_public] = ACTIONS(3056), + [anon_sym_private] = ACTIONS(3056), + [anon_sym_protected] = ACTIONS(3056), + [anon_sym_module] = ACTIONS(3056), + [anon_sym_any] = ACTIONS(3056), + [anon_sym_number] = ACTIONS(3056), + [anon_sym_boolean] = ACTIONS(3056), + [anon_sym_string] = ACTIONS(3056), + [anon_sym_symbol] = ACTIONS(3056), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), }, [1019] = { + [sym__call_signature] = STATE(5744), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2046), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_extends] = ACTIONS(1655), + }, + [1020] = { [ts_builtin_sym_end] = ACTIONS(1940), [sym_identifier] = ACTIONS(1942), [anon_sym_export] = ACTIONS(1942), @@ -112753,552 +112868,472 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1942), [anon_sym_enum] = ACTIONS(1942), [anon_sym_PIPE_RBRACE] = ACTIONS(1940), - [sym__automatic_semicolon] = ACTIONS(3060), - }, - [1020] = { - [sym__call_signature] = STATE(5636), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3041), - [anon_sym_export] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(3045), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3043), - [anon_sym_COMMA] = ACTIONS(3048), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2207), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_readonly] = ACTIONS(3043), - [anon_sym_get] = ACTIONS(3043), - [anon_sym_set] = ACTIONS(3043), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_any] = ACTIONS(3043), - [anon_sym_number] = ACTIONS(3043), - [anon_sym_boolean] = ACTIONS(3043), - [anon_sym_string] = ACTIONS(3043), - [anon_sym_symbol] = ACTIONS(3043), + [sym__automatic_semicolon] = ACTIONS(3062), }, [1021] = { - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_identifier] = ACTIONS(2098), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_type] = ACTIONS(2098), - [anon_sym_namespace] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_COMMA] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(2098), - [anon_sym_import] = ACTIONS(2098), - [anon_sym_var] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_switch] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_await] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_with] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_debugger] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_throw] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_case] = ACTIONS(2098), - [anon_sym_yield] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_class] = ACTIONS(2098), - [anon_sym_async] = ACTIONS(2098), - [anon_sym_function] = ACTIONS(2098), - [anon_sym_new] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2096), - [anon_sym_void] = ACTIONS(2098), - [anon_sym_delete] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2096), - [sym_number] = ACTIONS(2096), - [sym_this] = ACTIONS(2098), - [sym_super] = ACTIONS(2098), - [sym_true] = ACTIONS(2098), - [sym_false] = ACTIONS(2098), - [sym_null] = ACTIONS(2098), - [sym_undefined] = ACTIONS(2098), - [anon_sym_AT] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_readonly] = ACTIONS(2098), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_declare] = ACTIONS(2098), - [anon_sym_public] = ACTIONS(2098), - [anon_sym_private] = ACTIONS(2098), - [anon_sym_protected] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_any] = ACTIONS(2098), - [anon_sym_number] = ACTIONS(2098), - [anon_sym_boolean] = ACTIONS(2098), - [anon_sym_string] = ACTIONS(2098), - [anon_sym_symbol] = ACTIONS(2098), - [anon_sym_abstract] = ACTIONS(2098), - [anon_sym_interface] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), - [anon_sym_PIPE_RBRACE] = ACTIONS(2096), - [sym__automatic_semicolon] = ACTIONS(2096), + [sym__call_signature] = STATE(5730), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3064), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(2846), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [sym__automatic_semicolon] = ACTIONS(1672), }, [1022] = { - [sym__call_signature] = STATE(5609), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3062), - [anon_sym_export] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3064), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3064), - [anon_sym_readonly] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(3064), - [anon_sym_set] = ACTIONS(3064), - [anon_sym_declare] = ACTIONS(3064), - [anon_sym_public] = ACTIONS(3064), - [anon_sym_private] = ACTIONS(3064), - [anon_sym_protected] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3064), - [anon_sym_number] = ACTIONS(3064), - [anon_sym_boolean] = ACTIONS(3064), - [anon_sym_string] = ACTIONS(3064), - [anon_sym_symbol] = ACTIONS(3064), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5730), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3064), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3010), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [sym__automatic_semicolon] = ACTIONS(1672), }, [1023] = { - [sym__call_signature] = STATE(5765), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(2042), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2044), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3068), - [anon_sym_readonly] = ACTIONS(3068), - [anon_sym_get] = ACTIONS(3068), - [anon_sym_set] = ACTIONS(3068), - [anon_sym_declare] = ACTIONS(3068), - [anon_sym_public] = ACTIONS(3068), - [anon_sym_private] = ACTIONS(3068), - [anon_sym_protected] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_any] = ACTIONS(3068), - [anon_sym_number] = ACTIONS(3068), - [anon_sym_boolean] = ACTIONS(3068), - [anon_sym_string] = ACTIONS(3068), - [anon_sym_symbol] = ACTIONS(3068), - [anon_sym_extends] = ACTIONS(1619), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_catch] = ACTIONS(2117), + [anon_sym_finally] = 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_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), }, [1024] = { - [sym__call_signature] = STATE(5734), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3070), - [anon_sym_export] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(2848), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_readonly] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(3072), - [anon_sym_set] = ACTIONS(3072), - [anon_sym_declare] = ACTIONS(3072), - [anon_sym_public] = ACTIONS(3072), - [anon_sym_private] = ACTIONS(3072), - [anon_sym_protected] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_any] = ACTIONS(3072), - [anon_sym_number] = ACTIONS(3072), - [anon_sym_boolean] = ACTIONS(3072), - [anon_sym_string] = ACTIONS(3072), - [anon_sym_symbol] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5587), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3025), + [anon_sym_export] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(3068), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_get] = ACTIONS(3027), + [anon_sym_set] = ACTIONS(3027), + [anon_sym_declare] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_any] = ACTIONS(3027), + [anon_sym_number] = ACTIONS(3027), + [anon_sym_boolean] = ACTIONS(3027), + [anon_sym_string] = ACTIONS(3027), + [anon_sym_symbol] = ACTIONS(3027), }, [1025] = { - [sym__call_signature] = STATE(5636), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3041), - [anon_sym_export] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(3074), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2207), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_readonly] = ACTIONS(3043), - [anon_sym_get] = ACTIONS(3043), - [anon_sym_set] = ACTIONS(3043), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_any] = ACTIONS(3043), - [anon_sym_number] = ACTIONS(3043), - [anon_sym_boolean] = ACTIONS(3043), - [anon_sym_string] = ACTIONS(3043), - [anon_sym_symbol] = ACTIONS(3043), + [sym_identifier] = ACTIONS(2944), + [anon_sym_export] = ACTIONS(2944), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2944), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2944), + [anon_sym_LBRACE] = ACTIONS(2946), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1659), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1659), + [anon_sym_LBRACK] = ACTIONS(2946), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1655), + [anon_sym_async] = ACTIONS(2944), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_DOT_DOT_DOT] = ACTIONS(2946), + [anon_sym_QMARK] = ACTIONS(2967), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym_this] = ACTIONS(2944), + [anon_sym_static] = ACTIONS(2944), + [anon_sym_readonly] = ACTIONS(2944), + [anon_sym_get] = ACTIONS(2944), + [anon_sym_set] = ACTIONS(2944), + [anon_sym_declare] = ACTIONS(2944), + [anon_sym_public] = ACTIONS(2944), + [anon_sym_private] = ACTIONS(2944), + [anon_sym_protected] = ACTIONS(2944), + [anon_sym_module] = ACTIONS(2944), + [anon_sym_any] = ACTIONS(2944), + [anon_sym_number] = ACTIONS(2944), + [anon_sym_boolean] = ACTIONS(2944), + [anon_sym_string] = ACTIONS(2944), + [anon_sym_symbol] = ACTIONS(2944), }, [1026] = { - [sym__call_signature] = STATE(5734), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), + [sym__call_signature] = STATE(5836), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), [sym_identifier] = ACTIONS(3070), [anon_sym_export] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1655), [anon_sym_type] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_EQ] = ACTIONS(1982), + [anon_sym_as] = ACTIONS(1655), [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(3017), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1984), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_static] = ACTIONS(3072), [anon_sym_readonly] = ACTIONS(3072), [anon_sym_get] = ACTIONS(3072), @@ -113313,392 +113348,312 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3072), [anon_sym_string] = ACTIONS(3072), [anon_sym_symbol] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_extends] = ACTIONS(1655), }, [1027] = { - [sym__call_signature] = STATE(5765), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3066), - [anon_sym_export] = ACTIONS(3068), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3068), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3068), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3068), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2044), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3068), - [anon_sym_readonly] = ACTIONS(3068), - [anon_sym_get] = ACTIONS(3068), - [anon_sym_set] = ACTIONS(3068), - [anon_sym_declare] = ACTIONS(3068), - [anon_sym_public] = ACTIONS(3068), - [anon_sym_private] = ACTIONS(3068), - [anon_sym_protected] = ACTIONS(3068), - [anon_sym_module] = ACTIONS(3068), - [anon_sym_any] = ACTIONS(3068), - [anon_sym_number] = ACTIONS(3068), - [anon_sym_boolean] = ACTIONS(3068), - [anon_sym_string] = ACTIONS(3068), - [anon_sym_symbol] = ACTIONS(3068), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5730), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3064), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(3074), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [sym__automatic_semicolon] = ACTIONS(1672), }, [1028] = { - [sym__call_signature] = STATE(5734), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3070), - [anon_sym_export] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_readonly] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(3072), - [anon_sym_set] = ACTIONS(3072), - [anon_sym_declare] = ACTIONS(3072), - [anon_sym_public] = ACTIONS(3072), - [anon_sym_private] = ACTIONS(3072), - [anon_sym_protected] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_any] = ACTIONS(3072), - [anon_sym_number] = ACTIONS(3072), - [anon_sym_boolean] = ACTIONS(3072), - [anon_sym_string] = ACTIONS(3072), - [anon_sym_symbol] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym__call_signature] = STATE(5645), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2984), + [anon_sym_export] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2986), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_RBRACE] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_readonly] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(2986), + [anon_sym_set] = ACTIONS(2986), + [anon_sym_declare] = ACTIONS(2986), + [anon_sym_public] = ACTIONS(2986), + [anon_sym_private] = ACTIONS(2986), + [anon_sym_protected] = ACTIONS(2986), + [anon_sym_module] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2986), + [anon_sym_number] = ACTIONS(2986), + [anon_sym_boolean] = ACTIONS(2986), + [anon_sym_string] = ACTIONS(2986), + [anon_sym_symbol] = ACTIONS(2986), }, [1029] = { - [sym_identifier] = ACTIONS(2946), - [anon_sym_export] = ACTIONS(2946), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2946), - [anon_sym_EQ] = ACTIONS(1616), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2946), - [anon_sym_LBRACE] = ACTIONS(2948), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1623), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1623), - [anon_sym_LBRACK] = ACTIONS(2948), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1619), - [anon_sym_async] = ACTIONS(2946), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_DOT_DOT_DOT] = ACTIONS(2948), - [anon_sym_QMARK] = ACTIONS(2957), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym_this] = ACTIONS(2946), - [anon_sym_static] = ACTIONS(2946), - [anon_sym_readonly] = ACTIONS(2946), - [anon_sym_get] = ACTIONS(2946), - [anon_sym_set] = ACTIONS(2946), - [anon_sym_declare] = ACTIONS(2946), - [anon_sym_public] = ACTIONS(2946), - [anon_sym_private] = ACTIONS(2946), - [anon_sym_protected] = ACTIONS(2946), - [anon_sym_module] = ACTIONS(2946), - [anon_sym_any] = ACTIONS(2946), - [anon_sym_number] = ACTIONS(2946), - [anon_sym_boolean] = ACTIONS(2946), - [anon_sym_string] = ACTIONS(2946), - [anon_sym_symbol] = ACTIONS(2946), + [sym__call_signature] = STATE(5730), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3064), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [sym__automatic_semicolon] = ACTIONS(1672), }, [1030] = { - [sym__call_signature] = STATE(5636), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3041), - [anon_sym_export] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(3050), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2207), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_readonly] = ACTIONS(3043), - [anon_sym_get] = ACTIONS(3043), - [anon_sym_set] = ACTIONS(3043), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_any] = ACTIONS(3043), - [anon_sym_number] = ACTIONS(3043), - [anon_sym_boolean] = ACTIONS(3043), - [anon_sym_string] = ACTIONS(3043), - [anon_sym_symbol] = ACTIONS(3043), - }, - [1031] = { - [sym__call_signature] = STATE(5734), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), + [sym__call_signature] = STATE(5836), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), [sym_identifier] = ACTIONS(3070), [anon_sym_export] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(1619), + [anon_sym_STAR] = ACTIONS(1655), [anon_sym_type] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(2068), - [anon_sym_as] = ACTIONS(1619), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(3076), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1984), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), [anon_sym_static] = ACTIONS(3072), [anon_sym_readonly] = ACTIONS(3072), [anon_sym_get] = ACTIONS(3072), @@ -113713,817 +113668,1056 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_boolean] = ACTIONS(3072), [anon_sym_string] = ACTIONS(3072), [anon_sym_symbol] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_extends] = ACTIONS(1655), + }, + [1031] = { + [sym__call_signature] = STATE(5730), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3064), + [anon_sym_export] = ACTIONS(3066), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3066), + [anon_sym_EQ] = ACTIONS(1990), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3066), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3066), + [anon_sym_function] = ACTIONS(2958), + [anon_sym_EQ_GT] = ACTIONS(1992), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3066), + [anon_sym_readonly] = ACTIONS(3066), + [anon_sym_get] = ACTIONS(3066), + [anon_sym_set] = ACTIONS(3066), + [anon_sym_declare] = ACTIONS(3066), + [anon_sym_public] = ACTIONS(3066), + [anon_sym_private] = ACTIONS(3066), + [anon_sym_protected] = ACTIONS(3066), + [anon_sym_module] = ACTIONS(3066), + [anon_sym_any] = ACTIONS(3066), + [anon_sym_number] = ACTIONS(3066), + [anon_sym_boolean] = ACTIONS(3066), + [anon_sym_string] = ACTIONS(3066), + [anon_sym_symbol] = ACTIONS(3066), + [sym__automatic_semicolon] = ACTIONS(1672), }, [1032] = { - [sym__call_signature] = STATE(5609), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3062), - [anon_sym_export] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3064), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3064), - [anon_sym_readonly] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(3064), - [anon_sym_set] = ACTIONS(3064), - [anon_sym_declare] = ACTIONS(3064), - [anon_sym_public] = ACTIONS(3064), - [anon_sym_private] = ACTIONS(3064), - [anon_sym_protected] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3064), - [anon_sym_number] = ACTIONS(3064), - [anon_sym_boolean] = ACTIONS(3064), - [anon_sym_string] = ACTIONS(3064), - [anon_sym_symbol] = ACTIONS(3064), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5587), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3025), + [anon_sym_export] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(3029), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_COMMA] = ACTIONS(3032), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_get] = ACTIONS(3027), + [anon_sym_set] = ACTIONS(3027), + [anon_sym_declare] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_any] = ACTIONS(3027), + [anon_sym_number] = ACTIONS(3027), + [anon_sym_boolean] = ACTIONS(3027), + [anon_sym_string] = ACTIONS(3027), + [anon_sym_symbol] = ACTIONS(3027), }, [1033] = { - [sym__call_signature] = STATE(5734), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3070), - [anon_sym_export] = ACTIONS(3072), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3072), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3072), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3072), - [anon_sym_function] = ACTIONS(2978), - [anon_sym_EQ_GT] = ACTIONS(2070), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3072), - [anon_sym_readonly] = ACTIONS(3072), - [anon_sym_get] = ACTIONS(3072), - [anon_sym_set] = ACTIONS(3072), - [anon_sym_declare] = ACTIONS(3072), - [anon_sym_public] = ACTIONS(3072), - [anon_sym_private] = ACTIONS(3072), - [anon_sym_protected] = ACTIONS(3072), - [anon_sym_module] = ACTIONS(3072), - [anon_sym_any] = ACTIONS(3072), - [anon_sym_number] = ACTIONS(3072), - [anon_sym_boolean] = ACTIONS(3072), - [anon_sym_string] = ACTIONS(3072), - [anon_sym_symbol] = ACTIONS(3072), - [sym__automatic_semicolon] = ACTIONS(1636), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_export] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_namespace] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_typeof] = ACTIONS(2065), + [anon_sym_import] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_switch] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_debugger] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_throw] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_case] = ACTIONS(2065), + [anon_sym_catch] = ACTIONS(2065), + [anon_sym_finally] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2065), + [anon_sym_class] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_function] = ACTIONS(2065), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_void] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2063), + [sym_number] = ACTIONS(2063), + [sym_this] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_undefined] = ACTIONS(2065), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_readonly] = ACTIONS(2065), + [anon_sym_get] = ACTIONS(2065), + [anon_sym_set] = ACTIONS(2065), + [anon_sym_declare] = ACTIONS(2065), + [anon_sym_public] = ACTIONS(2065), + [anon_sym_private] = ACTIONS(2065), + [anon_sym_protected] = ACTIONS(2065), + [anon_sym_module] = ACTIONS(2065), + [anon_sym_any] = ACTIONS(2065), + [anon_sym_number] = ACTIONS(2065), + [anon_sym_boolean] = ACTIONS(2065), + [anon_sym_string] = ACTIONS(2065), + [anon_sym_symbol] = ACTIONS(2065), + [anon_sym_abstract] = ACTIONS(2065), + [anon_sym_interface] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), }, [1034] = { - [sym__call_signature] = STATE(5552), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2986), - [anon_sym_export] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(1616), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1623), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_get] = ACTIONS(2988), - [anon_sym_set] = ACTIONS(2988), - [anon_sym_declare] = ACTIONS(2988), - [anon_sym_public] = ACTIONS(2988), - [anon_sym_private] = ACTIONS(2988), - [anon_sym_protected] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_any] = ACTIONS(2988), - [anon_sym_number] = ACTIONS(2988), - [anon_sym_boolean] = ACTIONS(2988), - [anon_sym_string] = ACTIONS(2988), - [anon_sym_symbol] = ACTIONS(2988), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1980), + [anon_sym_export] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_typeof] = ACTIONS(1980), + [anon_sym_import] = ACTIONS(1980), + [anon_sym_var] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_await] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_with] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_debugger] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_throw] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1980), + [anon_sym_async] = ACTIONS(1980), + [anon_sym_function] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_void] = ACTIONS(1980), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1978), + [sym_number] = ACTIONS(1978), + [sym_this] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [sym_null] = ACTIONS(1980), + [sym_undefined] = ACTIONS(1980), + [anon_sym_AT] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_readonly] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1980), + [anon_sym_declare] = ACTIONS(1980), + [anon_sym_public] = ACTIONS(1980), + [anon_sym_private] = ACTIONS(1980), + [anon_sym_protected] = ACTIONS(1980), + [anon_sym_module] = ACTIONS(1980), + [anon_sym_any] = ACTIONS(1980), + [anon_sym_number] = ACTIONS(1980), + [anon_sym_boolean] = ACTIONS(1980), + [anon_sym_string] = ACTIONS(1980), + [anon_sym_symbol] = ACTIONS(1980), + [anon_sym_abstract] = ACTIONS(1980), + [anon_sym_interface] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), + [anon_sym_PIPE_RBRACE] = ACTIONS(1978), + [sym__automatic_semicolon] = ACTIONS(1978), }, [1035] = { - [ts_builtin_sym_end] = ACTIONS(2100), - [sym_identifier] = ACTIONS(2102), - [anon_sym_export] = ACTIONS(2102), - [anon_sym_default] = ACTIONS(2102), - [anon_sym_type] = ACTIONS(2102), - [anon_sym_namespace] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2100), - [anon_sym_COMMA] = ACTIONS(2100), - [anon_sym_RBRACE] = ACTIONS(2100), - [anon_sym_typeof] = ACTIONS(2102), - [anon_sym_import] = ACTIONS(2102), - [anon_sym_var] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [anon_sym_BANG] = ACTIONS(2100), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_switch] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2100), - [anon_sym_await] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_with] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_debugger] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_throw] = ACTIONS(2102), - [anon_sym_SEMI] = ACTIONS(2100), - [anon_sym_case] = ACTIONS(2102), - [anon_sym_catch] = ACTIONS(2102), - [anon_sym_finally] = ACTIONS(2102), - [anon_sym_yield] = ACTIONS(2102), - [anon_sym_LBRACK] = ACTIONS(2100), - [anon_sym_LT] = ACTIONS(2100), - [anon_sym_SLASH] = ACTIONS(2102), - [anon_sym_class] = ACTIONS(2102), - [anon_sym_async] = ACTIONS(2102), - [anon_sym_function] = ACTIONS(2102), - [anon_sym_new] = ACTIONS(2102), - [anon_sym_PLUS] = ACTIONS(2102), - [anon_sym_DASH] = ACTIONS(2102), - [anon_sym_TILDE] = ACTIONS(2100), - [anon_sym_void] = ACTIONS(2102), - [anon_sym_delete] = ACTIONS(2102), - [anon_sym_PLUS_PLUS] = ACTIONS(2100), - [anon_sym_DASH_DASH] = ACTIONS(2100), - [anon_sym_DQUOTE] = ACTIONS(2100), - [anon_sym_SQUOTE] = ACTIONS(2100), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2100), - [sym_number] = ACTIONS(2100), - [sym_this] = ACTIONS(2102), - [sym_super] = ACTIONS(2102), - [sym_true] = ACTIONS(2102), - [sym_false] = ACTIONS(2102), - [sym_null] = ACTIONS(2102), - [sym_undefined] = ACTIONS(2102), - [anon_sym_AT] = ACTIONS(2100), - [anon_sym_static] = ACTIONS(2102), - [anon_sym_readonly] = ACTIONS(2102), - [anon_sym_get] = ACTIONS(2102), - [anon_sym_set] = ACTIONS(2102), - [anon_sym_declare] = ACTIONS(2102), - [anon_sym_public] = ACTIONS(2102), - [anon_sym_private] = ACTIONS(2102), - [anon_sym_protected] = ACTIONS(2102), - [anon_sym_module] = ACTIONS(2102), - [anon_sym_any] = ACTIONS(2102), - [anon_sym_number] = ACTIONS(2102), - [anon_sym_boolean] = ACTIONS(2102), - [anon_sym_string] = ACTIONS(2102), - [anon_sym_symbol] = ACTIONS(2102), - [anon_sym_abstract] = ACTIONS(2102), - [anon_sym_interface] = ACTIONS(2102), - [anon_sym_enum] = ACTIONS(2102), + [sym__call_signature] = STATE(5744), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2044), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2046), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_extends] = ACTIONS(1655), }, [1036] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_namespace] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_typeof] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_with] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_debugger] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(1968), - [anon_sym_delete] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1966), - [sym_number] = ACTIONS(1966), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_true] = ACTIONS(1968), - [sym_false] = ACTIONS(1968), - [sym_null] = ACTIONS(1968), - [sym_undefined] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_readonly] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(1968), - [anon_sym_set] = ACTIONS(1968), - [anon_sym_declare] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_module] = ACTIONS(1968), - [anon_sym_any] = ACTIONS(1968), - [anon_sym_number] = ACTIONS(1968), - [anon_sym_boolean] = ACTIONS(1968), - [anon_sym_string] = ACTIONS(1968), - [anon_sym_symbol] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_interface] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_PIPE_RBRACE] = ACTIONS(1966), - [sym__automatic_semicolon] = ACTIONS(1966), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_export] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_namespace] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_typeof] = ACTIONS(2065), + [anon_sym_import] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_switch] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_debugger] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_throw] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_case] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2065), + [anon_sym_class] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_function] = ACTIONS(2065), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_void] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2063), + [sym_number] = ACTIONS(2063), + [sym_this] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_undefined] = ACTIONS(2065), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_readonly] = ACTIONS(2065), + [anon_sym_get] = ACTIONS(2065), + [anon_sym_set] = ACTIONS(2065), + [anon_sym_declare] = ACTIONS(2065), + [anon_sym_public] = ACTIONS(2065), + [anon_sym_private] = ACTIONS(2065), + [anon_sym_protected] = ACTIONS(2065), + [anon_sym_module] = ACTIONS(2065), + [anon_sym_any] = ACTIONS(2065), + [anon_sym_number] = ACTIONS(2065), + [anon_sym_boolean] = ACTIONS(2065), + [anon_sym_string] = ACTIONS(2065), + [anon_sym_symbol] = ACTIONS(2065), + [anon_sym_abstract] = ACTIONS(2065), + [anon_sym_interface] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_PIPE_RBRACE] = ACTIONS(2063), + [sym__automatic_semicolon] = ACTIONS(3076), }, [1037] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_namespace] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_typeof] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_with] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_debugger] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_catch] = ACTIONS(1968), - [anon_sym_finally] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(1968), - [anon_sym_delete] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1966), - [sym_number] = ACTIONS(1966), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_true] = ACTIONS(1968), - [sym_false] = ACTIONS(1968), - [sym_null] = ACTIONS(1968), - [sym_undefined] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_readonly] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(1968), - [anon_sym_set] = ACTIONS(1968), - [anon_sym_declare] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_module] = ACTIONS(1968), - [anon_sym_any] = ACTIONS(1968), - [anon_sym_number] = ACTIONS(1968), - [anon_sym_boolean] = ACTIONS(1968), - [anon_sym_string] = ACTIONS(1968), - [anon_sym_symbol] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_interface] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), + [sym__call_signature] = STATE(5744), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3058), + [anon_sym_export] = ACTIONS(3060), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3060), + [anon_sym_EQ] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3060), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3060), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2046), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3060), + [anon_sym_readonly] = ACTIONS(3060), + [anon_sym_get] = ACTIONS(3060), + [anon_sym_set] = ACTIONS(3060), + [anon_sym_declare] = ACTIONS(3060), + [anon_sym_public] = ACTIONS(3060), + [anon_sym_private] = ACTIONS(3060), + [anon_sym_protected] = ACTIONS(3060), + [anon_sym_module] = ACTIONS(3060), + [anon_sym_any] = ACTIONS(3060), + [anon_sym_number] = ACTIONS(3060), + [anon_sym_boolean] = ACTIONS(3060), + [anon_sym_string] = ACTIONS(3060), + [anon_sym_symbol] = ACTIONS(3060), + [anon_sym_extends] = ACTIONS(1655), }, [1038] = { - [sym__call_signature] = STATE(5552), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(2986), - [anon_sym_export] = ACTIONS(2988), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(2988), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(2988), - [anon_sym_COMMA] = ACTIONS(1623), - [anon_sym_RBRACE] = ACTIONS(1623), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(2988), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(1634), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(2988), - [anon_sym_readonly] = ACTIONS(2988), - [anon_sym_get] = ACTIONS(2988), - [anon_sym_set] = ACTIONS(2988), - [anon_sym_declare] = ACTIONS(2988), - [anon_sym_public] = ACTIONS(2988), - [anon_sym_private] = ACTIONS(2988), - [anon_sym_protected] = ACTIONS(2988), - [anon_sym_module] = ACTIONS(2988), - [anon_sym_any] = ACTIONS(2988), - [anon_sym_number] = ACTIONS(2988), - [anon_sym_boolean] = ACTIONS(2988), - [anon_sym_string] = ACTIONS(2988), - [anon_sym_symbol] = ACTIONS(2988), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_export] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_namespace] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_COMMA] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [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_readonly] = 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_abstract] = ACTIONS(2179), + [anon_sym_interface] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), + [anon_sym_PIPE_RBRACE] = ACTIONS(2177), + [sym__automatic_semicolon] = ACTIONS(2177), }, [1039] = { - [ts_builtin_sym_end] = ACTIONS(1966), - [sym_identifier] = ACTIONS(1968), - [anon_sym_export] = ACTIONS(1968), - [anon_sym_default] = ACTIONS(1968), - [anon_sym_type] = ACTIONS(1968), - [anon_sym_namespace] = ACTIONS(1968), - [anon_sym_LBRACE] = ACTIONS(1966), - [anon_sym_COMMA] = ACTIONS(1966), - [anon_sym_RBRACE] = ACTIONS(1966), - [anon_sym_typeof] = ACTIONS(1968), - [anon_sym_import] = ACTIONS(1968), - [anon_sym_var] = ACTIONS(1968), - [anon_sym_let] = ACTIONS(1968), - [anon_sym_const] = ACTIONS(1968), - [anon_sym_BANG] = ACTIONS(1966), - [anon_sym_else] = ACTIONS(1968), - [anon_sym_if] = ACTIONS(1968), - [anon_sym_switch] = ACTIONS(1968), - [anon_sym_for] = ACTIONS(1968), - [anon_sym_LPAREN] = ACTIONS(1966), - [anon_sym_await] = ACTIONS(1968), - [anon_sym_while] = ACTIONS(1968), - [anon_sym_do] = ACTIONS(1968), - [anon_sym_try] = ACTIONS(1968), - [anon_sym_with] = ACTIONS(1968), - [anon_sym_break] = ACTIONS(1968), - [anon_sym_continue] = ACTIONS(1968), - [anon_sym_debugger] = ACTIONS(1968), - [anon_sym_return] = ACTIONS(1968), - [anon_sym_throw] = ACTIONS(1968), - [anon_sym_SEMI] = ACTIONS(1966), - [anon_sym_case] = ACTIONS(1968), - [anon_sym_yield] = ACTIONS(1968), - [anon_sym_LBRACK] = ACTIONS(1966), - [anon_sym_LT] = ACTIONS(1966), - [anon_sym_SLASH] = ACTIONS(1968), - [anon_sym_class] = ACTIONS(1968), - [anon_sym_async] = ACTIONS(1968), - [anon_sym_function] = ACTIONS(1968), - [anon_sym_new] = ACTIONS(1968), - [anon_sym_PLUS] = ACTIONS(1968), - [anon_sym_DASH] = ACTIONS(1968), - [anon_sym_TILDE] = ACTIONS(1966), - [anon_sym_void] = ACTIONS(1968), - [anon_sym_delete] = ACTIONS(1968), - [anon_sym_PLUS_PLUS] = ACTIONS(1966), - [anon_sym_DASH_DASH] = ACTIONS(1966), - [anon_sym_DQUOTE] = ACTIONS(1966), - [anon_sym_SQUOTE] = ACTIONS(1966), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1966), - [sym_number] = ACTIONS(1966), - [sym_this] = ACTIONS(1968), - [sym_super] = ACTIONS(1968), - [sym_true] = ACTIONS(1968), - [sym_false] = ACTIONS(1968), - [sym_null] = ACTIONS(1968), - [sym_undefined] = ACTIONS(1968), - [anon_sym_AT] = ACTIONS(1966), - [anon_sym_static] = ACTIONS(1968), - [anon_sym_readonly] = ACTIONS(1968), - [anon_sym_get] = ACTIONS(1968), - [anon_sym_set] = ACTIONS(1968), - [anon_sym_declare] = ACTIONS(1968), - [anon_sym_public] = ACTIONS(1968), - [anon_sym_private] = ACTIONS(1968), - [anon_sym_protected] = ACTIONS(1968), - [anon_sym_module] = ACTIONS(1968), - [anon_sym_any] = ACTIONS(1968), - [anon_sym_number] = ACTIONS(1968), - [anon_sym_boolean] = ACTIONS(1968), - [anon_sym_string] = ACTIONS(1968), - [anon_sym_symbol] = ACTIONS(1968), - [anon_sym_abstract] = ACTIONS(1968), - [anon_sym_interface] = ACTIONS(1968), - [anon_sym_enum] = ACTIONS(1968), - [anon_sym_PIPE_RBRACE] = ACTIONS(1966), - [sym__automatic_semicolon] = ACTIONS(3078), + [sym__call_signature] = STATE(5587), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3025), + [anon_sym_export] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(3034), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_get] = ACTIONS(3027), + [anon_sym_set] = ACTIONS(3027), + [anon_sym_declare] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_any] = ACTIONS(3027), + [anon_sym_number] = ACTIONS(3027), + [anon_sym_boolean] = ACTIONS(3027), + [anon_sym_string] = ACTIONS(3027), + [anon_sym_symbol] = ACTIONS(3027), }, [1040] = { - [sym__call_signature] = STATE(5609), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3062), - [anon_sym_export] = ACTIONS(3064), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3064), - [anon_sym_EQ] = ACTIONS(2146), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3064), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3064), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2148), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3064), - [anon_sym_readonly] = ACTIONS(3064), - [anon_sym_get] = ACTIONS(3064), - [anon_sym_set] = ACTIONS(3064), - [anon_sym_declare] = ACTIONS(3064), - [anon_sym_public] = ACTIONS(3064), - [anon_sym_private] = ACTIONS(3064), - [anon_sym_protected] = ACTIONS(3064), - [anon_sym_module] = ACTIONS(3064), - [anon_sym_any] = ACTIONS(3064), - [anon_sym_number] = ACTIONS(3064), - [anon_sym_boolean] = ACTIONS(3064), - [anon_sym_string] = ACTIONS(3064), - [anon_sym_symbol] = ACTIONS(3064), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5645), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(2984), + [anon_sym_export] = ACTIONS(2986), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(2986), + [anon_sym_EQ] = ACTIONS(1652), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(2986), + [anon_sym_COMMA] = ACTIONS(1659), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1659), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(2986), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(1670), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(2986), + [anon_sym_readonly] = ACTIONS(2986), + [anon_sym_get] = ACTIONS(2986), + [anon_sym_set] = ACTIONS(2986), + [anon_sym_declare] = ACTIONS(2986), + [anon_sym_public] = ACTIONS(2986), + [anon_sym_private] = ACTIONS(2986), + [anon_sym_protected] = ACTIONS(2986), + [anon_sym_module] = ACTIONS(2986), + [anon_sym_any] = ACTIONS(2986), + [anon_sym_number] = ACTIONS(2986), + [anon_sym_boolean] = ACTIONS(2986), + [anon_sym_string] = ACTIONS(2986), + [anon_sym_symbol] = ACTIONS(2986), }, [1041] = { - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2094), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_type] = ACTIONS(2094), - [anon_sym_namespace] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_COMMA] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_typeof] = ACTIONS(2094), - [anon_sym_import] = ACTIONS(2094), - [anon_sym_var] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_await] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_with] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_debugger] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_throw] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_case] = ACTIONS(2094), - [anon_sym_yield] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_class] = ACTIONS(2094), - [anon_sym_async] = ACTIONS(2094), - [anon_sym_function] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_void] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2094), - [anon_sym_PLUS_PLUS] = ACTIONS(2092), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2092), - [sym_number] = ACTIONS(2092), - [sym_this] = ACTIONS(2094), - [sym_super] = ACTIONS(2094), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_undefined] = ACTIONS(2094), - [anon_sym_AT] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_readonly] = ACTIONS(2094), - [anon_sym_get] = ACTIONS(2094), - [anon_sym_set] = ACTIONS(2094), - [anon_sym_declare] = ACTIONS(2094), - [anon_sym_public] = ACTIONS(2094), - [anon_sym_private] = ACTIONS(2094), - [anon_sym_protected] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_any] = ACTIONS(2094), - [anon_sym_number] = ACTIONS(2094), - [anon_sym_boolean] = ACTIONS(2094), - [anon_sym_string] = ACTIONS(2094), - [anon_sym_symbol] = ACTIONS(2094), - [anon_sym_abstract] = ACTIONS(2094), - [anon_sym_interface] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), - [anon_sym_PIPE_RBRACE] = ACTIONS(2092), - [sym__automatic_semicolon] = ACTIONS(2092), + [ts_builtin_sym_end] = ACTIONS(2115), + [sym_identifier] = ACTIONS(2117), + [anon_sym_export] = ACTIONS(2117), + [anon_sym_default] = ACTIONS(2117), + [anon_sym_type] = ACTIONS(2117), + [anon_sym_namespace] = ACTIONS(2117), + [anon_sym_LBRACE] = ACTIONS(2115), + [anon_sym_COMMA] = ACTIONS(2115), + [anon_sym_RBRACE] = ACTIONS(2115), + [anon_sym_typeof] = ACTIONS(2117), + [anon_sym_import] = ACTIONS(2117), + [anon_sym_var] = ACTIONS(2117), + [anon_sym_let] = ACTIONS(2117), + [anon_sym_const] = ACTIONS(2117), + [anon_sym_BANG] = ACTIONS(2115), + [anon_sym_else] = ACTIONS(2117), + [anon_sym_if] = ACTIONS(2117), + [anon_sym_switch] = ACTIONS(2117), + [anon_sym_for] = ACTIONS(2117), + [anon_sym_LPAREN] = ACTIONS(2115), + [anon_sym_await] = ACTIONS(2117), + [anon_sym_while] = ACTIONS(2117), + [anon_sym_do] = ACTIONS(2117), + [anon_sym_try] = ACTIONS(2117), + [anon_sym_with] = ACTIONS(2117), + [anon_sym_break] = ACTIONS(2117), + [anon_sym_continue] = ACTIONS(2117), + [anon_sym_debugger] = ACTIONS(2117), + [anon_sym_return] = ACTIONS(2117), + [anon_sym_throw] = ACTIONS(2117), + [anon_sym_SEMI] = ACTIONS(2115), + [anon_sym_case] = ACTIONS(2117), + [anon_sym_yield] = ACTIONS(2117), + [anon_sym_LBRACK] = ACTIONS(2115), + [anon_sym_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_readonly] = ACTIONS(2117), + [anon_sym_get] = ACTIONS(2117), + [anon_sym_set] = ACTIONS(2117), + [anon_sym_declare] = ACTIONS(2117), + [anon_sym_public] = ACTIONS(2117), + [anon_sym_private] = ACTIONS(2117), + [anon_sym_protected] = ACTIONS(2117), + [anon_sym_module] = ACTIONS(2117), + [anon_sym_any] = ACTIONS(2117), + [anon_sym_number] = ACTIONS(2117), + [anon_sym_boolean] = ACTIONS(2117), + [anon_sym_string] = ACTIONS(2117), + [anon_sym_symbol] = ACTIONS(2117), + [anon_sym_abstract] = ACTIONS(2117), + [anon_sym_interface] = ACTIONS(2117), + [anon_sym_enum] = ACTIONS(2117), + [anon_sym_PIPE_RBRACE] = ACTIONS(2115), + [sym__automatic_semicolon] = ACTIONS(2115), }, [1042] = { - [sym_statement_block] = STATE(1117), + [ts_builtin_sym_end] = ACTIONS(2063), + [sym_identifier] = ACTIONS(2065), + [anon_sym_export] = ACTIONS(2065), + [anon_sym_default] = ACTIONS(2065), + [anon_sym_type] = ACTIONS(2065), + [anon_sym_namespace] = ACTIONS(2065), + [anon_sym_LBRACE] = ACTIONS(2063), + [anon_sym_COMMA] = ACTIONS(2063), + [anon_sym_RBRACE] = ACTIONS(2063), + [anon_sym_typeof] = ACTIONS(2065), + [anon_sym_import] = ACTIONS(2065), + [anon_sym_var] = ACTIONS(2065), + [anon_sym_let] = ACTIONS(2065), + [anon_sym_const] = ACTIONS(2065), + [anon_sym_BANG] = ACTIONS(2063), + [anon_sym_else] = ACTIONS(2065), + [anon_sym_if] = ACTIONS(2065), + [anon_sym_switch] = ACTIONS(2065), + [anon_sym_for] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2063), + [anon_sym_await] = ACTIONS(2065), + [anon_sym_while] = ACTIONS(2065), + [anon_sym_do] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2065), + [anon_sym_with] = ACTIONS(2065), + [anon_sym_break] = ACTIONS(2065), + [anon_sym_continue] = ACTIONS(2065), + [anon_sym_debugger] = ACTIONS(2065), + [anon_sym_return] = ACTIONS(2065), + [anon_sym_throw] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2063), + [anon_sym_case] = ACTIONS(2065), + [anon_sym_yield] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2063), + [anon_sym_LT] = ACTIONS(2063), + [anon_sym_SLASH] = ACTIONS(2065), + [anon_sym_class] = ACTIONS(2065), + [anon_sym_async] = ACTIONS(2065), + [anon_sym_function] = ACTIONS(2065), + [anon_sym_new] = ACTIONS(2065), + [anon_sym_PLUS] = ACTIONS(2065), + [anon_sym_DASH] = ACTIONS(2065), + [anon_sym_TILDE] = ACTIONS(2063), + [anon_sym_void] = ACTIONS(2065), + [anon_sym_delete] = ACTIONS(2065), + [anon_sym_PLUS_PLUS] = ACTIONS(2063), + [anon_sym_DASH_DASH] = ACTIONS(2063), + [anon_sym_DQUOTE] = ACTIONS(2063), + [anon_sym_SQUOTE] = ACTIONS(2063), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2063), + [sym_number] = ACTIONS(2063), + [sym_this] = ACTIONS(2065), + [sym_super] = ACTIONS(2065), + [sym_true] = ACTIONS(2065), + [sym_false] = ACTIONS(2065), + [sym_null] = ACTIONS(2065), + [sym_undefined] = ACTIONS(2065), + [anon_sym_AT] = ACTIONS(2063), + [anon_sym_static] = ACTIONS(2065), + [anon_sym_readonly] = ACTIONS(2065), + [anon_sym_get] = ACTIONS(2065), + [anon_sym_set] = ACTIONS(2065), + [anon_sym_declare] = ACTIONS(2065), + [anon_sym_public] = ACTIONS(2065), + [anon_sym_private] = ACTIONS(2065), + [anon_sym_protected] = ACTIONS(2065), + [anon_sym_module] = ACTIONS(2065), + [anon_sym_any] = ACTIONS(2065), + [anon_sym_number] = ACTIONS(2065), + [anon_sym_boolean] = ACTIONS(2065), + [anon_sym_string] = ACTIONS(2065), + [anon_sym_symbol] = ACTIONS(2065), + [anon_sym_abstract] = ACTIONS(2065), + [anon_sym_interface] = ACTIONS(2065), + [anon_sym_enum] = ACTIONS(2065), + [anon_sym_PIPE_RBRACE] = ACTIONS(2063), + [sym__automatic_semicolon] = ACTIONS(2063), + }, + [1043] = { + [sym__call_signature] = STATE(5587), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3025), + [anon_sym_export] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_get] = ACTIONS(3027), + [anon_sym_set] = ACTIONS(3027), + [anon_sym_declare] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_any] = ACTIONS(3027), + [anon_sym_number] = ACTIONS(3027), + [anon_sym_boolean] = ACTIONS(3027), + [anon_sym_string] = ACTIONS(3027), + [anon_sym_symbol] = ACTIONS(3027), + }, + [1044] = { + [sym_statement_block] = STATE(1196), [ts_builtin_sym_end] = ACTIONS(1928), [sym_identifier] = ACTIONS(1930), [anon_sym_export] = ACTIONS(1930), [anon_sym_default] = ACTIONS(1930), [anon_sym_type] = ACTIONS(1930), [anon_sym_namespace] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(3080), + [anon_sym_LBRACE] = ACTIONS(3078), [anon_sym_RBRACE] = ACTIONS(1928), [anon_sym_typeof] = ACTIONS(1930), [anon_sym_import] = ACTIONS(1930), @@ -114552,7 +114746,7 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACK] = ACTIONS(1928), [anon_sym_LT] = ACTIONS(1928), [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_DOT] = ACTIONS(3082), + [anon_sym_DOT] = ACTIONS(3080), [anon_sym_class] = ACTIONS(1930), [anon_sym_async] = ACTIONS(1930), [anon_sym_function] = ACTIONS(1930), @@ -114594,2042 +114788,481 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(1930), [anon_sym_enum] = ACTIONS(1930), }, - [1043] = { - [sym__call_signature] = STATE(5636), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3041), - [anon_sym_export] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(2205), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2207), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_readonly] = ACTIONS(3043), - [anon_sym_get] = ACTIONS(3043), - [anon_sym_set] = ACTIONS(3043), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_any] = ACTIONS(3043), - [anon_sym_number] = ACTIONS(3043), - [anon_sym_boolean] = ACTIONS(3043), - [anon_sym_string] = ACTIONS(3043), - [anon_sym_symbol] = ACTIONS(3043), - }, - [1044] = { - [sym__call_signature] = STATE(5521), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3084), - [anon_sym_export] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_readonly] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(3086), - [anon_sym_set] = ACTIONS(3086), - [anon_sym_declare] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [anon_sym_module] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(3086), - [anon_sym_number] = ACTIONS(3086), - [anon_sym_boolean] = ACTIONS(3086), - [anon_sym_string] = ACTIONS(3086), - [anon_sym_symbol] = ACTIONS(3086), - [anon_sym_extends] = ACTIONS(1619), - }, [1045] = { - [sym__call_signature] = STATE(5626), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3088), - [anon_sym_export] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3090), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(3002), - [anon_sym_of] = ACTIONS(3005), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3090), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3090), - [anon_sym_set] = ACTIONS(3090), - [anon_sym_declare] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_protected] = ACTIONS(3090), - [anon_sym_module] = ACTIONS(3090), - [anon_sym_any] = ACTIONS(3090), - [anon_sym_number] = ACTIONS(3090), - [anon_sym_boolean] = ACTIONS(3090), - [anon_sym_string] = ACTIONS(3090), - [anon_sym_symbol] = ACTIONS(3090), + [sym__call_signature] = STATE(5529), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3082), + [anon_sym_export] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(3016), + [anon_sym_of] = ACTIONS(3019), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3084), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3084), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(3084), + [anon_sym_set] = ACTIONS(3084), + [anon_sym_declare] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_module] = ACTIONS(3084), + [anon_sym_any] = ACTIONS(3084), + [anon_sym_number] = ACTIONS(3084), + [anon_sym_boolean] = ACTIONS(3084), + [anon_sym_string] = ACTIONS(3084), + [anon_sym_symbol] = ACTIONS(3084), }, [1046] = { - [sym_finally_clause] = STATE(1121), - [ts_builtin_sym_end] = ACTIONS(3092), - [sym_identifier] = ACTIONS(3094), - [anon_sym_export] = ACTIONS(3094), - [anon_sym_default] = ACTIONS(3094), - [anon_sym_type] = ACTIONS(3094), - [anon_sym_namespace] = ACTIONS(3094), - [anon_sym_LBRACE] = ACTIONS(3092), - [anon_sym_RBRACE] = ACTIONS(3092), - [anon_sym_typeof] = ACTIONS(3094), - [anon_sym_import] = ACTIONS(3094), - [anon_sym_var] = ACTIONS(3094), - [anon_sym_let] = ACTIONS(3094), - [anon_sym_const] = ACTIONS(3094), - [anon_sym_BANG] = ACTIONS(3092), - [anon_sym_else] = ACTIONS(3094), - [anon_sym_if] = ACTIONS(3094), - [anon_sym_switch] = ACTIONS(3094), - [anon_sym_for] = ACTIONS(3094), - [anon_sym_LPAREN] = ACTIONS(3092), - [anon_sym_await] = ACTIONS(3094), - [anon_sym_while] = ACTIONS(3094), - [anon_sym_do] = ACTIONS(3094), - [anon_sym_try] = ACTIONS(3094), - [anon_sym_with] = ACTIONS(3094), - [anon_sym_break] = ACTIONS(3094), - [anon_sym_continue] = ACTIONS(3094), - [anon_sym_debugger] = ACTIONS(3094), - [anon_sym_return] = ACTIONS(3094), - [anon_sym_throw] = ACTIONS(3094), - [anon_sym_SEMI] = ACTIONS(3092), - [anon_sym_case] = ACTIONS(3094), - [anon_sym_finally] = ACTIONS(3058), - [anon_sym_yield] = ACTIONS(3094), - [anon_sym_LBRACK] = ACTIONS(3092), - [anon_sym_LT] = ACTIONS(3092), - [anon_sym_SLASH] = ACTIONS(3094), - [anon_sym_class] = ACTIONS(3094), - [anon_sym_async] = ACTIONS(3094), - [anon_sym_function] = ACTIONS(3094), - [anon_sym_new] = ACTIONS(3094), - [anon_sym_PLUS] = ACTIONS(3094), - [anon_sym_DASH] = ACTIONS(3094), - [anon_sym_TILDE] = ACTIONS(3092), - [anon_sym_void] = ACTIONS(3094), - [anon_sym_delete] = ACTIONS(3094), - [anon_sym_PLUS_PLUS] = ACTIONS(3092), - [anon_sym_DASH_DASH] = ACTIONS(3092), - [anon_sym_DQUOTE] = ACTIONS(3092), - [anon_sym_SQUOTE] = ACTIONS(3092), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3092), - [sym_number] = ACTIONS(3092), - [sym_this] = ACTIONS(3094), - [sym_super] = ACTIONS(3094), - [sym_true] = ACTIONS(3094), - [sym_false] = ACTIONS(3094), - [sym_null] = ACTIONS(3094), - [sym_undefined] = ACTIONS(3094), - [anon_sym_AT] = ACTIONS(3092), - [anon_sym_static] = ACTIONS(3094), - [anon_sym_readonly] = ACTIONS(3094), - [anon_sym_get] = ACTIONS(3094), - [anon_sym_set] = ACTIONS(3094), - [anon_sym_declare] = ACTIONS(3094), - [anon_sym_public] = ACTIONS(3094), - [anon_sym_private] = ACTIONS(3094), - [anon_sym_protected] = ACTIONS(3094), - [anon_sym_module] = ACTIONS(3094), - [anon_sym_any] = ACTIONS(3094), - [anon_sym_number] = ACTIONS(3094), - [anon_sym_boolean] = ACTIONS(3094), - [anon_sym_string] = ACTIONS(3094), - [anon_sym_symbol] = ACTIONS(3094), - [anon_sym_abstract] = ACTIONS(3094), - [anon_sym_interface] = ACTIONS(3094), - [anon_sym_enum] = ACTIONS(3094), + [sym__call_signature] = STATE(5529), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3082), + [anon_sym_export] = ACTIONS(3084), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3084), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3084), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3084), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2230), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3084), + [anon_sym_readonly] = ACTIONS(3084), + [anon_sym_get] = ACTIONS(3084), + [anon_sym_set] = ACTIONS(3084), + [anon_sym_declare] = ACTIONS(3084), + [anon_sym_public] = ACTIONS(3084), + [anon_sym_private] = ACTIONS(3084), + [anon_sym_protected] = ACTIONS(3084), + [anon_sym_module] = ACTIONS(3084), + [anon_sym_any] = ACTIONS(3084), + [anon_sym_number] = ACTIONS(3084), + [anon_sym_boolean] = ACTIONS(3084), + [anon_sym_string] = ACTIONS(3084), + [anon_sym_symbol] = ACTIONS(3084), }, [1047] = { - [sym__call_signature] = STATE(5636), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3041), - [anon_sym_export] = ACTIONS(3043), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3043), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3043), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3043), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2207), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3043), - [anon_sym_readonly] = ACTIONS(3043), - [anon_sym_get] = ACTIONS(3043), - [anon_sym_set] = ACTIONS(3043), - [anon_sym_declare] = ACTIONS(3043), - [anon_sym_public] = ACTIONS(3043), - [anon_sym_private] = ACTIONS(3043), - [anon_sym_protected] = ACTIONS(3043), - [anon_sym_module] = ACTIONS(3043), - [anon_sym_any] = ACTIONS(3043), - [anon_sym_number] = ACTIONS(3043), - [anon_sym_boolean] = ACTIONS(3043), - [anon_sym_string] = ACTIONS(3043), - [anon_sym_symbol] = ACTIONS(3043), + [sym__call_signature] = STATE(5587), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3025), + [anon_sym_export] = ACTIONS(3027), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3027), + [anon_sym_EQ] = ACTIONS(2215), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3027), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3027), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2217), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3027), + [anon_sym_readonly] = ACTIONS(3027), + [anon_sym_get] = ACTIONS(3027), + [anon_sym_set] = ACTIONS(3027), + [anon_sym_declare] = ACTIONS(3027), + [anon_sym_public] = ACTIONS(3027), + [anon_sym_private] = ACTIONS(3027), + [anon_sym_protected] = ACTIONS(3027), + [anon_sym_module] = ACTIONS(3027), + [anon_sym_any] = ACTIONS(3027), + [anon_sym_number] = ACTIONS(3027), + [anon_sym_boolean] = ACTIONS(3027), + [anon_sym_string] = ACTIONS(3027), + [anon_sym_symbol] = ACTIONS(3027), }, [1048] = { - [sym__call_signature] = STATE(5521), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3084), - [anon_sym_export] = ACTIONS(3086), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3086), - [anon_sym_EQ] = ACTIONS(2227), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3086), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3086), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2229), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3086), - [anon_sym_readonly] = ACTIONS(3086), - [anon_sym_get] = ACTIONS(3086), - [anon_sym_set] = ACTIONS(3086), - [anon_sym_declare] = ACTIONS(3086), - [anon_sym_public] = ACTIONS(3086), - [anon_sym_private] = ACTIONS(3086), - [anon_sym_protected] = ACTIONS(3086), - [anon_sym_module] = ACTIONS(3086), - [anon_sym_any] = ACTIONS(3086), - [anon_sym_number] = ACTIONS(3086), - [anon_sym_boolean] = ACTIONS(3086), - [anon_sym_string] = ACTIONS(3086), - [anon_sym_symbol] = ACTIONS(3086), - [anon_sym_extends] = ACTIONS(1619), + [sym__call_signature] = STATE(5557), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3086), + [anon_sym_export] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3088), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2221), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3088), + [anon_sym_readonly] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(3088), + [anon_sym_set] = ACTIONS(3088), + [anon_sym_declare] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_module] = ACTIONS(3088), + [anon_sym_any] = ACTIONS(3088), + [anon_sym_number] = ACTIONS(3088), + [anon_sym_boolean] = ACTIONS(3088), + [anon_sym_string] = ACTIONS(3088), + [anon_sym_symbol] = ACTIONS(3088), + [anon_sym_extends] = ACTIONS(1655), }, [1049] = { - [sym__call_signature] = STATE(5626), - [sym_formal_parameters] = STATE(4423), - [sym_type_parameters] = STATE(5200), - [sym_identifier] = ACTIONS(3088), - [anon_sym_export] = ACTIONS(3090), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_type] = ACTIONS(3090), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_namespace] = ACTIONS(3090), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2966), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_async] = ACTIONS(3090), - [anon_sym_function] = ACTIONS(2972), - [anon_sym_EQ_GT] = ACTIONS(2225), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_static] = ACTIONS(3090), - [anon_sym_readonly] = ACTIONS(3090), - [anon_sym_get] = ACTIONS(3090), - [anon_sym_set] = ACTIONS(3090), - [anon_sym_declare] = ACTIONS(3090), - [anon_sym_public] = ACTIONS(3090), - [anon_sym_private] = ACTIONS(3090), - [anon_sym_protected] = ACTIONS(3090), - [anon_sym_module] = ACTIONS(3090), - [anon_sym_any] = ACTIONS(3090), - [anon_sym_number] = ACTIONS(3090), - [anon_sym_boolean] = ACTIONS(3090), - [anon_sym_string] = ACTIONS(3090), - [anon_sym_symbol] = ACTIONS(3090), + [sym_finally_clause] = STATE(1165), + [ts_builtin_sym_end] = ACTIONS(3090), + [sym_identifier] = ACTIONS(3092), + [anon_sym_export] = ACTIONS(3092), + [anon_sym_default] = ACTIONS(3092), + [anon_sym_type] = ACTIONS(3092), + [anon_sym_namespace] = ACTIONS(3092), + [anon_sym_LBRACE] = ACTIONS(3090), + [anon_sym_RBRACE] = ACTIONS(3090), + [anon_sym_typeof] = ACTIONS(3092), + [anon_sym_import] = ACTIONS(3092), + [anon_sym_var] = ACTIONS(3092), + [anon_sym_let] = ACTIONS(3092), + [anon_sym_const] = ACTIONS(3092), + [anon_sym_BANG] = ACTIONS(3090), + [anon_sym_else] = ACTIONS(3092), + [anon_sym_if] = ACTIONS(3092), + [anon_sym_switch] = ACTIONS(3092), + [anon_sym_for] = ACTIONS(3092), + [anon_sym_LPAREN] = ACTIONS(3090), + [anon_sym_await] = ACTIONS(3092), + [anon_sym_while] = ACTIONS(3092), + [anon_sym_do] = ACTIONS(3092), + [anon_sym_try] = ACTIONS(3092), + [anon_sym_with] = ACTIONS(3092), + [anon_sym_break] = ACTIONS(3092), + [anon_sym_continue] = ACTIONS(3092), + [anon_sym_debugger] = ACTIONS(3092), + [anon_sym_return] = ACTIONS(3092), + [anon_sym_throw] = ACTIONS(3092), + [anon_sym_SEMI] = ACTIONS(3090), + [anon_sym_case] = ACTIONS(3092), + [anon_sym_finally] = ACTIONS(3052), + [anon_sym_yield] = ACTIONS(3092), + [anon_sym_LBRACK] = ACTIONS(3090), + [anon_sym_LT] = ACTIONS(3090), + [anon_sym_SLASH] = ACTIONS(3092), + [anon_sym_class] = ACTIONS(3092), + [anon_sym_async] = ACTIONS(3092), + [anon_sym_function] = ACTIONS(3092), + [anon_sym_new] = ACTIONS(3092), + [anon_sym_PLUS] = ACTIONS(3092), + [anon_sym_DASH] = ACTIONS(3092), + [anon_sym_TILDE] = ACTIONS(3090), + [anon_sym_void] = ACTIONS(3092), + [anon_sym_delete] = ACTIONS(3092), + [anon_sym_PLUS_PLUS] = ACTIONS(3090), + [anon_sym_DASH_DASH] = ACTIONS(3090), + [anon_sym_DQUOTE] = ACTIONS(3090), + [anon_sym_SQUOTE] = ACTIONS(3090), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3090), + [sym_number] = ACTIONS(3090), + [sym_this] = ACTIONS(3092), + [sym_super] = ACTIONS(3092), + [sym_true] = ACTIONS(3092), + [sym_false] = ACTIONS(3092), + [sym_null] = ACTIONS(3092), + [sym_undefined] = ACTIONS(3092), + [anon_sym_AT] = ACTIONS(3090), + [anon_sym_static] = ACTIONS(3092), + [anon_sym_readonly] = ACTIONS(3092), + [anon_sym_get] = ACTIONS(3092), + [anon_sym_set] = ACTIONS(3092), + [anon_sym_declare] = ACTIONS(3092), + [anon_sym_public] = ACTIONS(3092), + [anon_sym_private] = ACTIONS(3092), + [anon_sym_protected] = ACTIONS(3092), + [anon_sym_module] = ACTIONS(3092), + [anon_sym_any] = ACTIONS(3092), + [anon_sym_number] = ACTIONS(3092), + [anon_sym_boolean] = ACTIONS(3092), + [anon_sym_string] = ACTIONS(3092), + [anon_sym_symbol] = ACTIONS(3092), + [anon_sym_abstract] = ACTIONS(3092), + [anon_sym_interface] = ACTIONS(3092), + [anon_sym_enum] = ACTIONS(3092), }, [1050] = { - [ts_builtin_sym_end] = ACTIONS(3096), - [sym_identifier] = ACTIONS(3098), - [anon_sym_export] = ACTIONS(3098), - [anon_sym_default] = ACTIONS(3098), - [anon_sym_type] = ACTIONS(3098), - [anon_sym_namespace] = ACTIONS(3098), - [anon_sym_LBRACE] = ACTIONS(3096), - [anon_sym_RBRACE] = ACTIONS(3096), - [anon_sym_typeof] = ACTIONS(3098), - [anon_sym_import] = ACTIONS(3098), - [anon_sym_var] = ACTIONS(3098), - [anon_sym_let] = ACTIONS(3098), - [anon_sym_const] = ACTIONS(3098), - [anon_sym_BANG] = ACTIONS(3096), - [anon_sym_else] = ACTIONS(3098), - [anon_sym_if] = ACTIONS(3098), - [anon_sym_switch] = ACTIONS(3098), - [anon_sym_for] = ACTIONS(3098), - [anon_sym_LPAREN] = ACTIONS(3096), - [anon_sym_await] = ACTIONS(3098), - [anon_sym_while] = ACTIONS(3098), - [anon_sym_do] = ACTIONS(3098), - [anon_sym_try] = ACTIONS(3098), - [anon_sym_with] = ACTIONS(3098), - [anon_sym_break] = ACTIONS(3098), - [anon_sym_continue] = ACTIONS(3098), - [anon_sym_debugger] = ACTIONS(3098), - [anon_sym_return] = ACTIONS(3098), - [anon_sym_throw] = ACTIONS(3098), - [anon_sym_SEMI] = ACTIONS(3096), - [anon_sym_case] = ACTIONS(3098), - [anon_sym_finally] = ACTIONS(3098), - [anon_sym_yield] = ACTIONS(3098), - [anon_sym_LBRACK] = ACTIONS(3096), - [anon_sym_LT] = ACTIONS(3096), - [anon_sym_SLASH] = ACTIONS(3098), - [anon_sym_class] = ACTIONS(3098), - [anon_sym_async] = ACTIONS(3098), - [anon_sym_function] = ACTIONS(3098), - [anon_sym_new] = ACTIONS(3098), - [anon_sym_PLUS] = ACTIONS(3098), - [anon_sym_DASH] = ACTIONS(3098), - [anon_sym_TILDE] = ACTIONS(3096), - [anon_sym_void] = ACTIONS(3098), - [anon_sym_delete] = ACTIONS(3098), - [anon_sym_PLUS_PLUS] = ACTIONS(3096), - [anon_sym_DASH_DASH] = ACTIONS(3096), - [anon_sym_DQUOTE] = ACTIONS(3096), - [anon_sym_SQUOTE] = ACTIONS(3096), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3096), - [sym_number] = ACTIONS(3096), - [sym_this] = ACTIONS(3098), - [sym_super] = ACTIONS(3098), - [sym_true] = ACTIONS(3098), - [sym_false] = ACTIONS(3098), - [sym_null] = ACTIONS(3098), - [sym_undefined] = ACTIONS(3098), - [anon_sym_AT] = ACTIONS(3096), - [anon_sym_static] = ACTIONS(3098), - [anon_sym_readonly] = ACTIONS(3098), - [anon_sym_get] = ACTIONS(3098), - [anon_sym_set] = ACTIONS(3098), - [anon_sym_declare] = ACTIONS(3098), - [anon_sym_public] = ACTIONS(3098), - [anon_sym_private] = ACTIONS(3098), - [anon_sym_protected] = ACTIONS(3098), - [anon_sym_module] = ACTIONS(3098), - [anon_sym_any] = ACTIONS(3098), - [anon_sym_number] = ACTIONS(3098), - [anon_sym_boolean] = ACTIONS(3098), - [anon_sym_string] = ACTIONS(3098), - [anon_sym_symbol] = ACTIONS(3098), - [anon_sym_abstract] = ACTIONS(3098), - [anon_sym_interface] = ACTIONS(3098), - [anon_sym_enum] = ACTIONS(3098), + [sym__call_signature] = STATE(5557), + [sym_formal_parameters] = STATE(4485), + [sym_type_parameters] = STATE(5203), + [sym_identifier] = ACTIONS(3086), + [anon_sym_export] = ACTIONS(3088), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_type] = ACTIONS(3088), + [anon_sym_EQ] = ACTIONS(2219), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_namespace] = ACTIONS(3088), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2952), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2955), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_async] = ACTIONS(3088), + [anon_sym_function] = ACTIONS(2976), + [anon_sym_EQ_GT] = ACTIONS(2221), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_static] = ACTIONS(3088), + [anon_sym_readonly] = ACTIONS(3088), + [anon_sym_get] = ACTIONS(3088), + [anon_sym_set] = ACTIONS(3088), + [anon_sym_declare] = ACTIONS(3088), + [anon_sym_public] = ACTIONS(3088), + [anon_sym_private] = ACTIONS(3088), + [anon_sym_protected] = ACTIONS(3088), + [anon_sym_module] = ACTIONS(3088), + [anon_sym_any] = ACTIONS(3088), + [anon_sym_number] = ACTIONS(3088), + [anon_sym_boolean] = ACTIONS(3088), + [anon_sym_string] = ACTIONS(3088), + [anon_sym_symbol] = ACTIONS(3088), + [anon_sym_extends] = ACTIONS(1655), }, [1051] = { - [ts_builtin_sym_end] = ACTIONS(3100), - [sym_identifier] = ACTIONS(3102), - [anon_sym_export] = ACTIONS(3102), - [anon_sym_default] = ACTIONS(3102), - [anon_sym_type] = ACTIONS(3102), - [anon_sym_namespace] = ACTIONS(3102), - [anon_sym_LBRACE] = ACTIONS(3100), - [anon_sym_RBRACE] = ACTIONS(3100), - [anon_sym_typeof] = ACTIONS(3102), - [anon_sym_import] = ACTIONS(3102), - [anon_sym_var] = ACTIONS(3102), - [anon_sym_let] = ACTIONS(3102), - [anon_sym_const] = ACTIONS(3102), - [anon_sym_BANG] = ACTIONS(3100), - [anon_sym_else] = ACTIONS(3102), - [anon_sym_if] = ACTIONS(3102), - [anon_sym_switch] = ACTIONS(3102), - [anon_sym_for] = ACTIONS(3102), - [anon_sym_LPAREN] = ACTIONS(3100), - [anon_sym_await] = ACTIONS(3102), - [anon_sym_while] = ACTIONS(3102), - [anon_sym_do] = ACTIONS(3102), - [anon_sym_try] = ACTIONS(3102), - [anon_sym_with] = ACTIONS(3102), - [anon_sym_break] = ACTIONS(3102), - [anon_sym_continue] = ACTIONS(3102), - [anon_sym_debugger] = ACTIONS(3102), - [anon_sym_return] = ACTIONS(3102), - [anon_sym_throw] = ACTIONS(3102), - [anon_sym_SEMI] = ACTIONS(3100), - [anon_sym_case] = ACTIONS(3102), - [anon_sym_finally] = ACTIONS(3102), - [anon_sym_yield] = ACTIONS(3102), - [anon_sym_LBRACK] = ACTIONS(3100), - [anon_sym_LT] = ACTIONS(3100), - [anon_sym_SLASH] = ACTIONS(3102), - [anon_sym_class] = ACTIONS(3102), - [anon_sym_async] = ACTIONS(3102), - [anon_sym_function] = ACTIONS(3102), - [anon_sym_new] = ACTIONS(3102), - [anon_sym_PLUS] = ACTIONS(3102), - [anon_sym_DASH] = ACTIONS(3102), - [anon_sym_TILDE] = ACTIONS(3100), - [anon_sym_void] = ACTIONS(3102), - [anon_sym_delete] = ACTIONS(3102), - [anon_sym_PLUS_PLUS] = ACTIONS(3100), - [anon_sym_DASH_DASH] = ACTIONS(3100), - [anon_sym_DQUOTE] = ACTIONS(3100), - [anon_sym_SQUOTE] = ACTIONS(3100), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3100), - [sym_number] = ACTIONS(3100), - [sym_this] = ACTIONS(3102), - [sym_super] = ACTIONS(3102), - [sym_true] = ACTIONS(3102), - [sym_false] = ACTIONS(3102), - [sym_null] = ACTIONS(3102), - [sym_undefined] = ACTIONS(3102), - [anon_sym_AT] = ACTIONS(3100), - [anon_sym_static] = ACTIONS(3102), - [anon_sym_readonly] = ACTIONS(3102), - [anon_sym_get] = ACTIONS(3102), - [anon_sym_set] = ACTIONS(3102), - [anon_sym_declare] = ACTIONS(3102), - [anon_sym_public] = ACTIONS(3102), - [anon_sym_private] = ACTIONS(3102), - [anon_sym_protected] = ACTIONS(3102), - [anon_sym_module] = ACTIONS(3102), - [anon_sym_any] = ACTIONS(3102), - [anon_sym_number] = ACTIONS(3102), - [anon_sym_boolean] = ACTIONS(3102), - [anon_sym_string] = ACTIONS(3102), - [anon_sym_symbol] = ACTIONS(3102), - [anon_sym_abstract] = ACTIONS(3102), - [anon_sym_interface] = ACTIONS(3102), - [anon_sym_enum] = ACTIONS(3102), - }, - [1052] = { - [ts_builtin_sym_end] = ACTIONS(2032), - [sym_identifier] = ACTIONS(2034), - [anon_sym_export] = ACTIONS(2034), - [anon_sym_default] = ACTIONS(2034), - [anon_sym_type] = ACTIONS(2034), - [anon_sym_namespace] = ACTIONS(2034), - [anon_sym_LBRACE] = ACTIONS(2032), - [anon_sym_RBRACE] = ACTIONS(2032), - [anon_sym_typeof] = ACTIONS(2034), - [anon_sym_import] = ACTIONS(2034), - [anon_sym_var] = ACTIONS(2034), - [anon_sym_let] = ACTIONS(2034), - [anon_sym_const] = ACTIONS(2034), - [anon_sym_BANG] = ACTIONS(2032), - [anon_sym_else] = ACTIONS(2034), - [anon_sym_if] = ACTIONS(2034), - [anon_sym_switch] = ACTIONS(2034), - [anon_sym_for] = ACTIONS(2034), - [anon_sym_LPAREN] = ACTIONS(2032), - [anon_sym_await] = ACTIONS(2034), - [anon_sym_while] = ACTIONS(2034), - [anon_sym_do] = ACTIONS(2034), - [anon_sym_try] = ACTIONS(2034), - [anon_sym_with] = ACTIONS(2034), - [anon_sym_break] = ACTIONS(2034), - [anon_sym_continue] = ACTIONS(2034), - [anon_sym_debugger] = ACTIONS(2034), - [anon_sym_return] = ACTIONS(2034), - [anon_sym_throw] = ACTIONS(2034), - [anon_sym_SEMI] = ACTIONS(2032), - [anon_sym_case] = ACTIONS(2034), - [anon_sym_yield] = ACTIONS(2034), - [anon_sym_LBRACK] = ACTIONS(2032), - [anon_sym_LT] = ACTIONS(2032), - [anon_sym_SLASH] = ACTIONS(2034), - [anon_sym_class] = ACTIONS(2034), - [anon_sym_async] = ACTIONS(2034), - [anon_sym_function] = ACTIONS(2034), - [anon_sym_new] = ACTIONS(2034), - [anon_sym_PLUS] = ACTIONS(2034), - [anon_sym_DASH] = ACTIONS(2034), - [anon_sym_TILDE] = ACTIONS(2032), - [anon_sym_void] = ACTIONS(2034), - [anon_sym_delete] = ACTIONS(2034), - [anon_sym_PLUS_PLUS] = ACTIONS(2032), - [anon_sym_DASH_DASH] = ACTIONS(2032), - [anon_sym_DQUOTE] = ACTIONS(2032), - [anon_sym_SQUOTE] = ACTIONS(2032), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2032), - [sym_number] = ACTIONS(2032), - [sym_this] = ACTIONS(2034), - [sym_super] = ACTIONS(2034), - [sym_true] = ACTIONS(2034), - [sym_false] = ACTIONS(2034), - [sym_null] = ACTIONS(2034), - [sym_undefined] = ACTIONS(2034), - [anon_sym_AT] = ACTIONS(2032), - [anon_sym_static] = ACTIONS(2034), - [anon_sym_readonly] = ACTIONS(2034), - [anon_sym_get] = ACTIONS(2034), - [anon_sym_set] = ACTIONS(2034), - [anon_sym_declare] = ACTIONS(2034), - [anon_sym_public] = ACTIONS(2034), - [anon_sym_private] = ACTIONS(2034), - [anon_sym_protected] = ACTIONS(2034), - [anon_sym_module] = ACTIONS(2034), - [anon_sym_any] = ACTIONS(2034), - [anon_sym_number] = ACTIONS(2034), - [anon_sym_boolean] = ACTIONS(2034), - [anon_sym_string] = ACTIONS(2034), - [anon_sym_symbol] = ACTIONS(2034), - [anon_sym_abstract] = ACTIONS(2034), - [anon_sym_interface] = ACTIONS(2034), - [anon_sym_enum] = ACTIONS(2034), - [sym__automatic_semicolon] = ACTIONS(2040), - }, - [1053] = { - [ts_builtin_sym_end] = ACTIONS(3104), - [sym_identifier] = ACTIONS(3106), - [anon_sym_export] = ACTIONS(3106), - [anon_sym_default] = ACTIONS(3106), - [anon_sym_type] = ACTIONS(3106), - [anon_sym_namespace] = ACTIONS(3106), - [anon_sym_LBRACE] = ACTIONS(3104), - [anon_sym_RBRACE] = ACTIONS(3104), - [anon_sym_typeof] = ACTIONS(3106), - [anon_sym_import] = ACTIONS(3106), - [anon_sym_var] = ACTIONS(3106), - [anon_sym_let] = ACTIONS(3106), - [anon_sym_const] = ACTIONS(3106), - [anon_sym_BANG] = ACTIONS(3104), - [anon_sym_else] = ACTIONS(3106), - [anon_sym_if] = ACTIONS(3106), - [anon_sym_switch] = ACTIONS(3106), - [anon_sym_for] = ACTIONS(3106), - [anon_sym_LPAREN] = ACTIONS(3104), - [anon_sym_RPAREN] = ACTIONS(3104), - [anon_sym_await] = ACTIONS(3106), - [anon_sym_while] = ACTIONS(3106), - [anon_sym_do] = ACTIONS(3106), - [anon_sym_try] = ACTIONS(3106), - [anon_sym_with] = ACTIONS(3106), - [anon_sym_break] = ACTIONS(3106), - [anon_sym_continue] = ACTIONS(3106), - [anon_sym_debugger] = ACTIONS(3106), - [anon_sym_return] = ACTIONS(3106), - [anon_sym_throw] = ACTIONS(3106), - [anon_sym_SEMI] = ACTIONS(3104), - [anon_sym_case] = ACTIONS(3106), - [anon_sym_yield] = ACTIONS(3106), - [anon_sym_LBRACK] = ACTIONS(3104), - [anon_sym_LT] = ACTIONS(3104), - [anon_sym_SLASH] = ACTIONS(3106), - [anon_sym_class] = ACTIONS(3106), - [anon_sym_async] = ACTIONS(3106), - [anon_sym_function] = ACTIONS(3106), - [anon_sym_new] = ACTIONS(3106), - [anon_sym_PLUS] = ACTIONS(3106), - [anon_sym_DASH] = ACTIONS(3106), - [anon_sym_TILDE] = ACTIONS(3104), - [anon_sym_void] = ACTIONS(3106), - [anon_sym_delete] = ACTIONS(3106), - [anon_sym_PLUS_PLUS] = ACTIONS(3104), - [anon_sym_DASH_DASH] = ACTIONS(3104), - [anon_sym_DQUOTE] = ACTIONS(3104), - [anon_sym_SQUOTE] = ACTIONS(3104), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3104), - [sym_number] = ACTIONS(3104), - [sym_this] = ACTIONS(3106), - [sym_super] = ACTIONS(3106), - [sym_true] = ACTIONS(3106), - [sym_false] = ACTIONS(3106), - [sym_null] = ACTIONS(3106), - [sym_undefined] = ACTIONS(3106), - [anon_sym_AT] = ACTIONS(3104), - [anon_sym_static] = ACTIONS(3106), - [anon_sym_readonly] = ACTIONS(3106), - [anon_sym_get] = ACTIONS(3106), - [anon_sym_set] = ACTIONS(3106), - [anon_sym_declare] = ACTIONS(3106), - [anon_sym_public] = ACTIONS(3106), - [anon_sym_private] = ACTIONS(3106), - [anon_sym_protected] = ACTIONS(3106), - [anon_sym_module] = ACTIONS(3106), - [anon_sym_any] = ACTIONS(3106), - [anon_sym_number] = ACTIONS(3106), - [anon_sym_boolean] = ACTIONS(3106), - [anon_sym_string] = ACTIONS(3106), - [anon_sym_symbol] = ACTIONS(3106), - [anon_sym_abstract] = ACTIONS(3106), - [anon_sym_interface] = ACTIONS(3106), - [anon_sym_enum] = ACTIONS(3106), - }, - [1054] = { - [ts_builtin_sym_end] = ACTIONS(1982), - [sym_identifier] = ACTIONS(1984), - [anon_sym_export] = ACTIONS(1984), - [anon_sym_default] = ACTIONS(1984), - [anon_sym_type] = ACTIONS(1984), - [anon_sym_namespace] = ACTIONS(1984), - [anon_sym_LBRACE] = ACTIONS(1982), - [anon_sym_RBRACE] = ACTIONS(1982), - [anon_sym_typeof] = ACTIONS(1984), - [anon_sym_import] = ACTIONS(1984), - [anon_sym_var] = ACTIONS(1984), - [anon_sym_let] = ACTIONS(1984), - [anon_sym_const] = ACTIONS(1984), - [anon_sym_BANG] = ACTIONS(1982), - [anon_sym_else] = ACTIONS(1984), - [anon_sym_if] = ACTIONS(1984), - [anon_sym_switch] = ACTIONS(1984), - [anon_sym_for] = ACTIONS(1984), - [anon_sym_LPAREN] = ACTIONS(1982), - [anon_sym_await] = ACTIONS(1984), - [anon_sym_while] = ACTIONS(1984), - [anon_sym_do] = ACTIONS(1984), - [anon_sym_try] = ACTIONS(1984), - [anon_sym_with] = ACTIONS(1984), - [anon_sym_break] = ACTIONS(1984), - [anon_sym_continue] = ACTIONS(1984), - [anon_sym_debugger] = ACTIONS(1984), - [anon_sym_return] = ACTIONS(1984), - [anon_sym_throw] = ACTIONS(1984), - [anon_sym_SEMI] = ACTIONS(1982), - [anon_sym_case] = ACTIONS(1984), - [anon_sym_yield] = ACTIONS(1984), - [anon_sym_LBRACK] = ACTIONS(1982), - [anon_sym_LT] = ACTIONS(1982), - [anon_sym_SLASH] = ACTIONS(1984), - [anon_sym_DOT] = ACTIONS(1984), - [anon_sym_class] = ACTIONS(1984), - [anon_sym_async] = ACTIONS(1984), - [anon_sym_function] = ACTIONS(1984), - [anon_sym_new] = ACTIONS(1984), - [anon_sym_PLUS] = ACTIONS(1984), - [anon_sym_DASH] = ACTIONS(1984), - [anon_sym_TILDE] = ACTIONS(1982), - [anon_sym_void] = ACTIONS(1984), - [anon_sym_delete] = ACTIONS(1984), - [anon_sym_PLUS_PLUS] = ACTIONS(1982), - [anon_sym_DASH_DASH] = ACTIONS(1982), - [anon_sym_DQUOTE] = ACTIONS(1982), - [anon_sym_SQUOTE] = ACTIONS(1982), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1982), - [sym_number] = ACTIONS(1982), - [sym_this] = ACTIONS(1984), - [sym_super] = ACTIONS(1984), - [sym_true] = ACTIONS(1984), - [sym_false] = ACTIONS(1984), - [sym_null] = ACTIONS(1984), - [sym_undefined] = ACTIONS(1984), - [anon_sym_AT] = ACTIONS(1982), - [anon_sym_static] = ACTIONS(1984), - [anon_sym_readonly] = ACTIONS(1984), - [anon_sym_get] = ACTIONS(1984), - [anon_sym_set] = ACTIONS(1984), - [anon_sym_declare] = ACTIONS(1984), - [anon_sym_public] = ACTIONS(1984), - [anon_sym_private] = ACTIONS(1984), - [anon_sym_protected] = ACTIONS(1984), - [anon_sym_module] = ACTIONS(1984), - [anon_sym_any] = ACTIONS(1984), - [anon_sym_number] = ACTIONS(1984), - [anon_sym_boolean] = ACTIONS(1984), - [anon_sym_string] = ACTIONS(1984), - [anon_sym_symbol] = ACTIONS(1984), - [anon_sym_abstract] = ACTIONS(1984), - [anon_sym_interface] = ACTIONS(1984), - [anon_sym_enum] = ACTIONS(1984), - }, - [1055] = { - [ts_builtin_sym_end] = ACTIONS(2046), - [sym_identifier] = ACTIONS(2048), - [anon_sym_export] = ACTIONS(2048), - [anon_sym_default] = ACTIONS(2048), - [anon_sym_type] = ACTIONS(2048), - [anon_sym_namespace] = ACTIONS(2048), - [anon_sym_LBRACE] = ACTIONS(2046), - [anon_sym_RBRACE] = ACTIONS(2046), - [anon_sym_typeof] = ACTIONS(2048), - [anon_sym_import] = ACTIONS(2048), - [anon_sym_var] = ACTIONS(2048), - [anon_sym_let] = ACTIONS(2048), - [anon_sym_const] = ACTIONS(2048), - [anon_sym_BANG] = ACTIONS(2046), - [anon_sym_else] = ACTIONS(2048), - [anon_sym_if] = ACTIONS(2048), - [anon_sym_switch] = ACTIONS(2048), - [anon_sym_for] = ACTIONS(2048), - [anon_sym_LPAREN] = ACTIONS(2046), - [anon_sym_await] = ACTIONS(2048), - [anon_sym_while] = ACTIONS(2048), - [anon_sym_do] = ACTIONS(2048), - [anon_sym_try] = ACTIONS(2048), - [anon_sym_with] = ACTIONS(2048), - [anon_sym_break] = ACTIONS(2048), - [anon_sym_continue] = ACTIONS(2048), - [anon_sym_debugger] = ACTIONS(2048), - [anon_sym_return] = ACTIONS(2048), - [anon_sym_throw] = ACTIONS(2048), - [anon_sym_SEMI] = ACTIONS(2046), - [anon_sym_case] = ACTIONS(2048), - [anon_sym_yield] = ACTIONS(2048), - [anon_sym_LBRACK] = ACTIONS(2046), - [anon_sym_LT] = ACTIONS(2046), - [anon_sym_SLASH] = ACTIONS(2048), - [anon_sym_class] = ACTIONS(2048), - [anon_sym_async] = ACTIONS(2048), - [anon_sym_function] = ACTIONS(2048), - [anon_sym_new] = ACTIONS(2048), - [anon_sym_PLUS] = ACTIONS(2048), - [anon_sym_DASH] = ACTIONS(2048), - [anon_sym_TILDE] = ACTIONS(2046), - [anon_sym_void] = ACTIONS(2048), - [anon_sym_delete] = ACTIONS(2048), - [anon_sym_PLUS_PLUS] = ACTIONS(2046), - [anon_sym_DASH_DASH] = ACTIONS(2046), - [anon_sym_DQUOTE] = ACTIONS(2046), - [anon_sym_SQUOTE] = ACTIONS(2046), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2046), - [sym_number] = ACTIONS(2046), - [sym_this] = ACTIONS(2048), - [sym_super] = ACTIONS(2048), - [sym_true] = ACTIONS(2048), - [sym_false] = ACTIONS(2048), - [sym_null] = ACTIONS(2048), - [sym_undefined] = ACTIONS(2048), - [anon_sym_AT] = ACTIONS(2046), - [anon_sym_static] = ACTIONS(2048), - [anon_sym_readonly] = ACTIONS(2048), - [anon_sym_get] = ACTIONS(2048), - [anon_sym_set] = ACTIONS(2048), - [anon_sym_declare] = ACTIONS(2048), - [anon_sym_public] = ACTIONS(2048), - [anon_sym_private] = ACTIONS(2048), - [anon_sym_protected] = ACTIONS(2048), - [anon_sym_module] = ACTIONS(2048), - [anon_sym_any] = ACTIONS(2048), - [anon_sym_number] = ACTIONS(2048), - [anon_sym_boolean] = ACTIONS(2048), - [anon_sym_string] = ACTIONS(2048), - [anon_sym_symbol] = ACTIONS(2048), - [anon_sym_abstract] = ACTIONS(2048), - [anon_sym_interface] = ACTIONS(2048), - [anon_sym_enum] = ACTIONS(2048), - [sym__automatic_semicolon] = ACTIONS(2054), - }, - [1056] = { - [ts_builtin_sym_end] = ACTIONS(3108), - [sym_identifier] = ACTIONS(3110), - [anon_sym_export] = ACTIONS(3110), - [anon_sym_default] = ACTIONS(3110), - [anon_sym_type] = ACTIONS(3110), - [anon_sym_namespace] = ACTIONS(3110), - [anon_sym_LBRACE] = ACTIONS(3108), - [anon_sym_RBRACE] = ACTIONS(3108), - [anon_sym_typeof] = ACTIONS(3110), - [anon_sym_import] = ACTIONS(3110), - [anon_sym_var] = ACTIONS(3110), - [anon_sym_let] = ACTIONS(3110), - [anon_sym_const] = ACTIONS(3110), - [anon_sym_BANG] = ACTIONS(3108), - [anon_sym_else] = ACTIONS(3110), - [anon_sym_if] = ACTIONS(3110), - [anon_sym_switch] = ACTIONS(3110), - [anon_sym_for] = ACTIONS(3110), - [anon_sym_LPAREN] = ACTIONS(3108), - [anon_sym_await] = ACTIONS(3110), - [anon_sym_while] = ACTIONS(3110), - [anon_sym_do] = ACTIONS(3110), - [anon_sym_try] = ACTIONS(3110), - [anon_sym_with] = ACTIONS(3110), - [anon_sym_break] = ACTIONS(3110), - [anon_sym_continue] = ACTIONS(3110), - [anon_sym_debugger] = ACTIONS(3110), - [anon_sym_return] = ACTIONS(3110), - [anon_sym_throw] = ACTIONS(3110), - [anon_sym_SEMI] = ACTIONS(3108), - [anon_sym_case] = ACTIONS(3110), - [anon_sym_finally] = ACTIONS(3110), - [anon_sym_yield] = ACTIONS(3110), - [anon_sym_LBRACK] = ACTIONS(3108), - [anon_sym_LT] = ACTIONS(3108), - [anon_sym_SLASH] = ACTIONS(3110), - [anon_sym_class] = ACTIONS(3110), - [anon_sym_async] = ACTIONS(3110), - [anon_sym_function] = ACTIONS(3110), - [anon_sym_new] = ACTIONS(3110), - [anon_sym_PLUS] = ACTIONS(3110), - [anon_sym_DASH] = ACTIONS(3110), - [anon_sym_TILDE] = ACTIONS(3108), - [anon_sym_void] = ACTIONS(3110), - [anon_sym_delete] = ACTIONS(3110), - [anon_sym_PLUS_PLUS] = ACTIONS(3108), - [anon_sym_DASH_DASH] = ACTIONS(3108), - [anon_sym_DQUOTE] = ACTIONS(3108), - [anon_sym_SQUOTE] = ACTIONS(3108), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3108), - [sym_number] = ACTIONS(3108), - [sym_this] = ACTIONS(3110), - [sym_super] = ACTIONS(3110), - [sym_true] = ACTIONS(3110), - [sym_false] = ACTIONS(3110), - [sym_null] = ACTIONS(3110), - [sym_undefined] = ACTIONS(3110), - [anon_sym_AT] = ACTIONS(3108), - [anon_sym_static] = ACTIONS(3110), - [anon_sym_readonly] = ACTIONS(3110), - [anon_sym_get] = ACTIONS(3110), - [anon_sym_set] = ACTIONS(3110), - [anon_sym_declare] = ACTIONS(3110), - [anon_sym_public] = ACTIONS(3110), - [anon_sym_private] = ACTIONS(3110), - [anon_sym_protected] = ACTIONS(3110), - [anon_sym_module] = ACTIONS(3110), - [anon_sym_any] = ACTIONS(3110), - [anon_sym_number] = ACTIONS(3110), - [anon_sym_boolean] = ACTIONS(3110), - [anon_sym_string] = ACTIONS(3110), - [anon_sym_symbol] = ACTIONS(3110), - [anon_sym_abstract] = ACTIONS(3110), - [anon_sym_interface] = ACTIONS(3110), - [anon_sym_enum] = ACTIONS(3110), - }, - [1057] = { - [sym_else_clause] = STATE(1162), - [ts_builtin_sym_end] = ACTIONS(3112), - [sym_identifier] = ACTIONS(3114), - [anon_sym_export] = ACTIONS(3114), - [anon_sym_default] = ACTIONS(3114), - [anon_sym_type] = ACTIONS(3114), - [anon_sym_namespace] = ACTIONS(3114), - [anon_sym_LBRACE] = ACTIONS(3112), - [anon_sym_RBRACE] = ACTIONS(3112), - [anon_sym_typeof] = ACTIONS(3114), - [anon_sym_import] = ACTIONS(3114), - [anon_sym_var] = ACTIONS(3114), - [anon_sym_let] = ACTIONS(3114), - [anon_sym_const] = ACTIONS(3114), - [anon_sym_BANG] = ACTIONS(3112), - [anon_sym_else] = ACTIONS(3116), - [anon_sym_if] = ACTIONS(3114), - [anon_sym_switch] = ACTIONS(3114), - [anon_sym_for] = ACTIONS(3114), - [anon_sym_LPAREN] = ACTIONS(3112), - [anon_sym_await] = ACTIONS(3114), - [anon_sym_while] = ACTIONS(3114), - [anon_sym_do] = ACTIONS(3114), - [anon_sym_try] = ACTIONS(3114), - [anon_sym_with] = ACTIONS(3114), - [anon_sym_break] = ACTIONS(3114), - [anon_sym_continue] = ACTIONS(3114), - [anon_sym_debugger] = ACTIONS(3114), - [anon_sym_return] = ACTIONS(3114), - [anon_sym_throw] = ACTIONS(3114), - [anon_sym_SEMI] = ACTIONS(3112), - [anon_sym_case] = ACTIONS(3114), - [anon_sym_yield] = ACTIONS(3114), - [anon_sym_LBRACK] = ACTIONS(3112), - [anon_sym_LT] = ACTIONS(3112), - [anon_sym_SLASH] = ACTIONS(3114), - [anon_sym_class] = ACTIONS(3114), - [anon_sym_async] = ACTIONS(3114), - [anon_sym_function] = ACTIONS(3114), - [anon_sym_new] = ACTIONS(3114), - [anon_sym_PLUS] = ACTIONS(3114), - [anon_sym_DASH] = ACTIONS(3114), - [anon_sym_TILDE] = ACTIONS(3112), - [anon_sym_void] = ACTIONS(3114), - [anon_sym_delete] = ACTIONS(3114), - [anon_sym_PLUS_PLUS] = ACTIONS(3112), - [anon_sym_DASH_DASH] = ACTIONS(3112), - [anon_sym_DQUOTE] = ACTIONS(3112), - [anon_sym_SQUOTE] = ACTIONS(3112), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3112), - [sym_number] = ACTIONS(3112), - [sym_this] = ACTIONS(3114), - [sym_super] = ACTIONS(3114), - [sym_true] = ACTIONS(3114), - [sym_false] = ACTIONS(3114), - [sym_null] = ACTIONS(3114), - [sym_undefined] = ACTIONS(3114), - [anon_sym_AT] = ACTIONS(3112), - [anon_sym_static] = ACTIONS(3114), - [anon_sym_readonly] = ACTIONS(3114), - [anon_sym_get] = ACTIONS(3114), - [anon_sym_set] = ACTIONS(3114), - [anon_sym_declare] = ACTIONS(3114), - [anon_sym_public] = ACTIONS(3114), - [anon_sym_private] = ACTIONS(3114), - [anon_sym_protected] = ACTIONS(3114), - [anon_sym_module] = ACTIONS(3114), - [anon_sym_any] = ACTIONS(3114), - [anon_sym_number] = ACTIONS(3114), - [anon_sym_boolean] = ACTIONS(3114), - [anon_sym_string] = ACTIONS(3114), - [anon_sym_symbol] = ACTIONS(3114), - [anon_sym_abstract] = ACTIONS(3114), - [anon_sym_interface] = ACTIONS(3114), - [anon_sym_enum] = ACTIONS(3114), - }, - [1058] = { - [ts_builtin_sym_end] = ACTIONS(1972), - [sym_identifier] = ACTIONS(1974), - [anon_sym_export] = ACTIONS(1974), - [anon_sym_default] = ACTIONS(1974), - [anon_sym_type] = ACTIONS(1974), - [anon_sym_namespace] = ACTIONS(1974), - [anon_sym_LBRACE] = ACTIONS(1972), - [anon_sym_RBRACE] = ACTIONS(1972), - [anon_sym_typeof] = ACTIONS(1974), - [anon_sym_import] = ACTIONS(1974), - [anon_sym_var] = ACTIONS(1974), - [anon_sym_let] = ACTIONS(1974), - [anon_sym_const] = ACTIONS(1974), - [anon_sym_BANG] = ACTIONS(1972), - [anon_sym_else] = ACTIONS(1974), - [anon_sym_if] = ACTIONS(1974), - [anon_sym_switch] = ACTIONS(1974), - [anon_sym_for] = ACTIONS(1974), - [anon_sym_LPAREN] = ACTIONS(1972), - [anon_sym_await] = ACTIONS(1974), - [anon_sym_while] = ACTIONS(1974), - [anon_sym_do] = ACTIONS(1974), - [anon_sym_try] = ACTIONS(1974), - [anon_sym_with] = ACTIONS(1974), - [anon_sym_break] = ACTIONS(1974), - [anon_sym_continue] = ACTIONS(1974), - [anon_sym_debugger] = ACTIONS(1974), - [anon_sym_return] = ACTIONS(1974), - [anon_sym_throw] = ACTIONS(1974), - [anon_sym_SEMI] = ACTIONS(1972), - [anon_sym_case] = ACTIONS(1974), - [anon_sym_yield] = ACTIONS(1974), - [anon_sym_LBRACK] = ACTIONS(1972), - [anon_sym_LT] = ACTIONS(1972), - [anon_sym_SLASH] = ACTIONS(1974), - [anon_sym_class] = ACTIONS(1974), - [anon_sym_async] = ACTIONS(1974), - [anon_sym_function] = ACTIONS(1974), - [anon_sym_new] = ACTIONS(1974), - [anon_sym_PLUS] = ACTIONS(1974), - [anon_sym_DASH] = ACTIONS(1974), - [anon_sym_TILDE] = ACTIONS(1972), - [anon_sym_void] = ACTIONS(1974), - [anon_sym_delete] = ACTIONS(1974), - [anon_sym_PLUS_PLUS] = ACTIONS(1972), - [anon_sym_DASH_DASH] = ACTIONS(1972), - [anon_sym_DQUOTE] = ACTIONS(1972), - [anon_sym_SQUOTE] = ACTIONS(1972), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1972), - [sym_number] = ACTIONS(1972), - [sym_this] = ACTIONS(1974), - [sym_super] = ACTIONS(1974), - [sym_true] = ACTIONS(1974), - [sym_false] = ACTIONS(1974), - [sym_null] = ACTIONS(1974), - [sym_undefined] = ACTIONS(1974), - [anon_sym_AT] = ACTIONS(1972), - [anon_sym_static] = ACTIONS(1974), - [anon_sym_readonly] = 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), - [anon_sym_abstract] = ACTIONS(1974), - [anon_sym_interface] = ACTIONS(1974), - [anon_sym_enum] = ACTIONS(1974), - [sym__automatic_semicolon] = ACTIONS(1980), - }, - [1059] = { - [sym_statement_block] = STATE(1117), - [ts_builtin_sym_end] = ACTIONS(1928), - [sym_identifier] = ACTIONS(1930), - [anon_sym_export] = ACTIONS(1930), - [anon_sym_default] = ACTIONS(1930), - [anon_sym_type] = ACTIONS(1930), - [anon_sym_namespace] = ACTIONS(1930), - [anon_sym_LBRACE] = ACTIONS(3080), - [anon_sym_RBRACE] = ACTIONS(1928), - [anon_sym_typeof] = ACTIONS(1930), - [anon_sym_import] = ACTIONS(1930), - [anon_sym_var] = ACTIONS(1930), - [anon_sym_let] = ACTIONS(1930), - [anon_sym_const] = ACTIONS(1930), - [anon_sym_BANG] = ACTIONS(1928), - [anon_sym_else] = ACTIONS(1930), - [anon_sym_if] = ACTIONS(1930), - [anon_sym_switch] = ACTIONS(1930), - [anon_sym_for] = ACTIONS(1930), - [anon_sym_LPAREN] = ACTIONS(1928), - [anon_sym_await] = ACTIONS(1930), - [anon_sym_while] = ACTIONS(1930), - [anon_sym_do] = ACTIONS(1930), - [anon_sym_try] = ACTIONS(1930), - [anon_sym_with] = ACTIONS(1930), - [anon_sym_break] = ACTIONS(1930), - [anon_sym_continue] = ACTIONS(1930), - [anon_sym_debugger] = ACTIONS(1930), - [anon_sym_return] = ACTIONS(1930), - [anon_sym_throw] = ACTIONS(1930), - [anon_sym_SEMI] = ACTIONS(1928), - [anon_sym_case] = ACTIONS(1930), - [anon_sym_yield] = ACTIONS(1930), - [anon_sym_LBRACK] = ACTIONS(1928), - [anon_sym_LT] = ACTIONS(1928), - [anon_sym_SLASH] = ACTIONS(1930), - [anon_sym_class] = ACTIONS(1930), - [anon_sym_async] = ACTIONS(1930), - [anon_sym_function] = ACTIONS(1930), - [anon_sym_new] = ACTIONS(1930), - [anon_sym_PLUS] = ACTIONS(1930), - [anon_sym_DASH] = ACTIONS(1930), - [anon_sym_TILDE] = ACTIONS(1928), - [anon_sym_void] = ACTIONS(1930), - [anon_sym_delete] = ACTIONS(1930), - [anon_sym_PLUS_PLUS] = ACTIONS(1928), - [anon_sym_DASH_DASH] = ACTIONS(1928), - [anon_sym_DQUOTE] = ACTIONS(1928), - [anon_sym_SQUOTE] = ACTIONS(1928), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1928), - [sym_number] = ACTIONS(1928), - [sym_this] = ACTIONS(1930), - [sym_super] = ACTIONS(1930), - [sym_true] = ACTIONS(1930), - [sym_false] = ACTIONS(1930), - [sym_null] = ACTIONS(1930), - [sym_undefined] = ACTIONS(1930), - [anon_sym_AT] = ACTIONS(1928), - [anon_sym_static] = ACTIONS(1930), - [anon_sym_readonly] = ACTIONS(1930), - [anon_sym_get] = ACTIONS(1930), - [anon_sym_set] = ACTIONS(1930), - [anon_sym_declare] = ACTIONS(1930), - [anon_sym_public] = ACTIONS(1930), - [anon_sym_private] = ACTIONS(1930), - [anon_sym_protected] = ACTIONS(1930), - [anon_sym_module] = ACTIONS(1930), - [anon_sym_any] = ACTIONS(1930), - [anon_sym_number] = ACTIONS(1930), - [anon_sym_boolean] = ACTIONS(1930), - [anon_sym_string] = ACTIONS(1930), - [anon_sym_symbol] = ACTIONS(1930), - [anon_sym_abstract] = ACTIONS(1930), - [anon_sym_interface] = ACTIONS(1930), - [anon_sym_enum] = ACTIONS(1930), - }, - [1060] = { - [ts_builtin_sym_end] = ACTIONS(1986), - [sym_identifier] = ACTIONS(1988), - [anon_sym_export] = ACTIONS(1988), - [anon_sym_default] = ACTIONS(1988), - [anon_sym_type] = ACTIONS(1988), - [anon_sym_namespace] = ACTIONS(1988), - [anon_sym_LBRACE] = ACTIONS(1986), - [anon_sym_RBRACE] = ACTIONS(1986), - [anon_sym_typeof] = ACTIONS(1988), - [anon_sym_import] = ACTIONS(1988), - [anon_sym_var] = ACTIONS(1988), - [anon_sym_let] = ACTIONS(1988), - [anon_sym_const] = ACTIONS(1988), - [anon_sym_BANG] = ACTIONS(1986), - [anon_sym_else] = ACTIONS(1988), - [anon_sym_if] = ACTIONS(1988), - [anon_sym_switch] = ACTIONS(1988), - [anon_sym_for] = ACTIONS(1988), - [anon_sym_LPAREN] = ACTIONS(1986), - [anon_sym_await] = ACTIONS(1988), - [anon_sym_while] = ACTIONS(1988), - [anon_sym_do] = ACTIONS(1988), - [anon_sym_try] = ACTIONS(1988), - [anon_sym_with] = ACTIONS(1988), - [anon_sym_break] = ACTIONS(1988), - [anon_sym_continue] = ACTIONS(1988), - [anon_sym_debugger] = ACTIONS(1988), - [anon_sym_return] = ACTIONS(1988), - [anon_sym_throw] = ACTIONS(1988), - [anon_sym_SEMI] = ACTIONS(1986), - [anon_sym_case] = ACTIONS(1988), - [anon_sym_yield] = ACTIONS(1988), - [anon_sym_LBRACK] = ACTIONS(1986), - [anon_sym_LT] = ACTIONS(1986), - [anon_sym_SLASH] = ACTIONS(1988), - [anon_sym_class] = ACTIONS(1988), - [anon_sym_async] = ACTIONS(1988), - [anon_sym_function] = ACTIONS(1988), - [anon_sym_new] = ACTIONS(1988), - [anon_sym_PLUS] = ACTIONS(1988), - [anon_sym_DASH] = ACTIONS(1988), - [anon_sym_TILDE] = ACTIONS(1986), - [anon_sym_void] = ACTIONS(1988), - [anon_sym_delete] = ACTIONS(1988), - [anon_sym_PLUS_PLUS] = ACTIONS(1986), - [anon_sym_DASH_DASH] = ACTIONS(1986), - [anon_sym_DQUOTE] = ACTIONS(1986), - [anon_sym_SQUOTE] = ACTIONS(1986), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1986), - [sym_number] = ACTIONS(1986), - [sym_this] = ACTIONS(1988), - [sym_super] = ACTIONS(1988), - [sym_true] = ACTIONS(1988), - [sym_false] = ACTIONS(1988), - [sym_null] = ACTIONS(1988), - [sym_undefined] = ACTIONS(1988), - [anon_sym_AT] = ACTIONS(1986), - [anon_sym_static] = ACTIONS(1988), - [anon_sym_readonly] = ACTIONS(1988), - [anon_sym_get] = ACTIONS(1988), - [anon_sym_set] = ACTIONS(1988), - [anon_sym_declare] = ACTIONS(1988), - [anon_sym_public] = ACTIONS(1988), - [anon_sym_private] = ACTIONS(1988), - [anon_sym_protected] = ACTIONS(1988), - [anon_sym_module] = ACTIONS(1988), - [anon_sym_any] = ACTIONS(1988), - [anon_sym_number] = ACTIONS(1988), - [anon_sym_boolean] = ACTIONS(1988), - [anon_sym_string] = ACTIONS(1988), - [anon_sym_symbol] = ACTIONS(1988), - [anon_sym_abstract] = ACTIONS(1988), - [anon_sym_interface] = ACTIONS(1988), - [anon_sym_enum] = ACTIONS(1988), - [sym__automatic_semicolon] = ACTIONS(1994), - }, - [1061] = { - [ts_builtin_sym_end] = ACTIONS(2179), - [sym_identifier] = ACTIONS(2181), - [anon_sym_export] = ACTIONS(2181), - [anon_sym_default] = ACTIONS(2181), - [anon_sym_type] = ACTIONS(2181), - [anon_sym_namespace] = ACTIONS(2181), - [anon_sym_LBRACE] = ACTIONS(2179), - [anon_sym_RBRACE] = ACTIONS(2179), - [anon_sym_typeof] = ACTIONS(2181), - [anon_sym_import] = ACTIONS(2181), - [anon_sym_var] = ACTIONS(2181), - [anon_sym_let] = ACTIONS(2181), - [anon_sym_const] = ACTIONS(2181), - [anon_sym_BANG] = ACTIONS(2179), - [anon_sym_else] = ACTIONS(2181), - [anon_sym_if] = ACTIONS(2181), - [anon_sym_switch] = ACTIONS(2181), - [anon_sym_for] = ACTIONS(2181), - [anon_sym_LPAREN] = ACTIONS(2179), - [anon_sym_await] = ACTIONS(2181), - [anon_sym_while] = ACTIONS(2181), - [anon_sym_do] = ACTIONS(2181), - [anon_sym_try] = ACTIONS(2181), - [anon_sym_with] = ACTIONS(2181), - [anon_sym_break] = ACTIONS(2181), - [anon_sym_continue] = ACTIONS(2181), - [anon_sym_debugger] = ACTIONS(2181), - [anon_sym_return] = ACTIONS(2181), - [anon_sym_throw] = ACTIONS(2181), - [anon_sym_SEMI] = ACTIONS(2179), - [anon_sym_case] = ACTIONS(2181), - [anon_sym_yield] = ACTIONS(2181), - [anon_sym_LBRACK] = ACTIONS(2179), - [anon_sym_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_readonly] = ACTIONS(2181), - [anon_sym_get] = ACTIONS(2181), - [anon_sym_set] = ACTIONS(2181), - [anon_sym_declare] = ACTIONS(2181), - [anon_sym_public] = ACTIONS(2181), - [anon_sym_private] = ACTIONS(2181), - [anon_sym_protected] = ACTIONS(2181), - [anon_sym_module] = ACTIONS(2181), - [anon_sym_any] = ACTIONS(2181), - [anon_sym_number] = ACTIONS(2181), - [anon_sym_boolean] = ACTIONS(2181), - [anon_sym_string] = ACTIONS(2181), - [anon_sym_symbol] = ACTIONS(2181), - [anon_sym_abstract] = ACTIONS(2181), - [anon_sym_interface] = ACTIONS(2181), - [anon_sym_enum] = ACTIONS(2181), - [sym__automatic_semicolon] = ACTIONS(2187), - }, - [1062] = { - [ts_builtin_sym_end] = ACTIONS(2136), - [sym_identifier] = ACTIONS(2138), - [anon_sym_export] = ACTIONS(2138), - [anon_sym_default] = ACTIONS(2138), - [anon_sym_type] = ACTIONS(2138), - [anon_sym_namespace] = ACTIONS(2138), - [anon_sym_LBRACE] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [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_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_readonly] = ACTIONS(2138), - [anon_sym_get] = ACTIONS(2138), - [anon_sym_set] = ACTIONS(2138), - [anon_sym_declare] = ACTIONS(2138), - [anon_sym_public] = ACTIONS(2138), - [anon_sym_private] = ACTIONS(2138), - [anon_sym_protected] = ACTIONS(2138), - [anon_sym_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_abstract] = ACTIONS(2138), - [anon_sym_interface] = ACTIONS(2138), - [anon_sym_enum] = ACTIONS(2138), - [sym__automatic_semicolon] = ACTIONS(2144), - }, - [1063] = { - [ts_builtin_sym_end] = ACTIONS(2104), - [sym_identifier] = ACTIONS(2106), - [anon_sym_export] = ACTIONS(2106), - [anon_sym_default] = ACTIONS(2106), - [anon_sym_type] = ACTIONS(2106), - [anon_sym_namespace] = ACTIONS(2106), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_typeof] = ACTIONS(2106), - [anon_sym_import] = ACTIONS(2106), - [anon_sym_var] = ACTIONS(2106), - [anon_sym_let] = ACTIONS(2106), - [anon_sym_const] = ACTIONS(2106), - [anon_sym_BANG] = ACTIONS(2104), - [anon_sym_else] = ACTIONS(2106), - [anon_sym_if] = ACTIONS(2106), - [anon_sym_switch] = ACTIONS(2106), - [anon_sym_for] = ACTIONS(2106), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_await] = ACTIONS(2106), - [anon_sym_while] = ACTIONS(2106), - [anon_sym_do] = ACTIONS(2106), - [anon_sym_try] = ACTIONS(2106), - [anon_sym_with] = ACTIONS(2106), - [anon_sym_break] = ACTIONS(2106), - [anon_sym_continue] = ACTIONS(2106), - [anon_sym_debugger] = ACTIONS(2106), - [anon_sym_return] = ACTIONS(2106), - [anon_sym_throw] = ACTIONS(2106), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_case] = ACTIONS(2106), - [anon_sym_yield] = ACTIONS(2106), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_LT] = ACTIONS(2104), - [anon_sym_SLASH] = ACTIONS(2106), - [anon_sym_class] = ACTIONS(2106), - [anon_sym_async] = ACTIONS(2106), - [anon_sym_function] = ACTIONS(2106), - [anon_sym_new] = ACTIONS(2106), - [anon_sym_PLUS] = ACTIONS(2106), - [anon_sym_DASH] = ACTIONS(2106), - [anon_sym_TILDE] = ACTIONS(2104), - [anon_sym_void] = ACTIONS(2106), - [anon_sym_delete] = ACTIONS(2106), - [anon_sym_PLUS_PLUS] = ACTIONS(2104), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [anon_sym_SQUOTE] = ACTIONS(2104), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2104), - [sym_number] = ACTIONS(2104), - [sym_this] = ACTIONS(2106), - [sym_super] = ACTIONS(2106), - [sym_true] = ACTIONS(2106), - [sym_false] = ACTIONS(2106), - [sym_null] = ACTIONS(2106), - [sym_undefined] = ACTIONS(2106), - [anon_sym_AT] = ACTIONS(2104), - [anon_sym_static] = ACTIONS(2106), - [anon_sym_readonly] = ACTIONS(2106), - [anon_sym_get] = ACTIONS(2106), - [anon_sym_set] = ACTIONS(2106), - [anon_sym_declare] = ACTIONS(2106), - [anon_sym_public] = ACTIONS(2106), - [anon_sym_private] = ACTIONS(2106), - [anon_sym_protected] = ACTIONS(2106), - [anon_sym_module] = ACTIONS(2106), - [anon_sym_any] = ACTIONS(2106), - [anon_sym_number] = ACTIONS(2106), - [anon_sym_boolean] = ACTIONS(2106), - [anon_sym_string] = ACTIONS(2106), - [anon_sym_symbol] = ACTIONS(2106), - [anon_sym_abstract] = ACTIONS(2106), - [anon_sym_interface] = ACTIONS(2106), - [anon_sym_enum] = ACTIONS(2106), - [sym__automatic_semicolon] = ACTIONS(2112), - }, - [1064] = { - [ts_builtin_sym_end] = ACTIONS(2114), - [sym_identifier] = ACTIONS(2116), - [anon_sym_export] = ACTIONS(2116), - [anon_sym_default] = ACTIONS(2116), - [anon_sym_type] = ACTIONS(2116), - [anon_sym_namespace] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2114), - [anon_sym_RBRACE] = ACTIONS(2114), - [anon_sym_typeof] = ACTIONS(2116), - [anon_sym_import] = ACTIONS(2116), - [anon_sym_var] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [anon_sym_BANG] = ACTIONS(2114), - [anon_sym_else] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_switch] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2114), - [anon_sym_await] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_do] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [anon_sym_with] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_debugger] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_throw] = ACTIONS(2116), - [anon_sym_SEMI] = ACTIONS(2114), - [anon_sym_case] = ACTIONS(2116), - [anon_sym_yield] = ACTIONS(2116), - [anon_sym_LBRACK] = ACTIONS(2114), - [anon_sym_LT] = ACTIONS(2114), - [anon_sym_SLASH] = ACTIONS(2116), - [anon_sym_class] = ACTIONS(2116), - [anon_sym_async] = ACTIONS(2116), - [anon_sym_function] = ACTIONS(2116), - [anon_sym_new] = ACTIONS(2116), - [anon_sym_PLUS] = ACTIONS(2116), - [anon_sym_DASH] = ACTIONS(2116), - [anon_sym_TILDE] = ACTIONS(2114), - [anon_sym_void] = ACTIONS(2116), - [anon_sym_delete] = ACTIONS(2116), - [anon_sym_PLUS_PLUS] = ACTIONS(2114), - [anon_sym_DASH_DASH] = ACTIONS(2114), - [anon_sym_DQUOTE] = ACTIONS(2114), - [anon_sym_SQUOTE] = ACTIONS(2114), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2114), - [sym_number] = ACTIONS(2114), - [sym_this] = ACTIONS(2116), - [sym_super] = ACTIONS(2116), - [sym_true] = ACTIONS(2116), - [sym_false] = ACTIONS(2116), - [sym_null] = ACTIONS(2116), - [sym_undefined] = ACTIONS(2116), - [anon_sym_AT] = ACTIONS(2114), - [anon_sym_static] = ACTIONS(2116), - [anon_sym_readonly] = ACTIONS(2116), - [anon_sym_get] = ACTIONS(2116), - [anon_sym_set] = ACTIONS(2116), - [anon_sym_declare] = ACTIONS(2116), - [anon_sym_public] = ACTIONS(2116), - [anon_sym_private] = ACTIONS(2116), - [anon_sym_protected] = ACTIONS(2116), - [anon_sym_module] = ACTIONS(2116), - [anon_sym_any] = ACTIONS(2116), - [anon_sym_number] = ACTIONS(2116), - [anon_sym_boolean] = ACTIONS(2116), - [anon_sym_string] = ACTIONS(2116), - [anon_sym_symbol] = ACTIONS(2116), - [anon_sym_abstract] = ACTIONS(2116), - [anon_sym_interface] = ACTIONS(2116), - [anon_sym_enum] = ACTIONS(2116), - [sym__automatic_semicolon] = ACTIONS(2122), - }, - [1065] = { - [ts_builtin_sym_end] = ACTIONS(1956), - [sym_identifier] = ACTIONS(1958), - [anon_sym_export] = ACTIONS(1958), - [anon_sym_default] = ACTIONS(1958), - [anon_sym_type] = ACTIONS(1958), - [anon_sym_namespace] = ACTIONS(1958), - [anon_sym_LBRACE] = ACTIONS(1956), - [anon_sym_RBRACE] = ACTIONS(1956), - [anon_sym_typeof] = ACTIONS(1958), - [anon_sym_import] = ACTIONS(1958), - [anon_sym_var] = ACTIONS(1958), - [anon_sym_let] = ACTIONS(1958), - [anon_sym_const] = ACTIONS(1958), - [anon_sym_BANG] = ACTIONS(1956), - [anon_sym_else] = ACTIONS(1958), - [anon_sym_if] = ACTIONS(1958), - [anon_sym_switch] = ACTIONS(1958), - [anon_sym_for] = ACTIONS(1958), - [anon_sym_LPAREN] = ACTIONS(1956), - [anon_sym_await] = ACTIONS(1958), - [anon_sym_while] = ACTIONS(1958), - [anon_sym_do] = ACTIONS(1958), - [anon_sym_try] = ACTIONS(1958), - [anon_sym_with] = ACTIONS(1958), - [anon_sym_break] = ACTIONS(1958), - [anon_sym_continue] = ACTIONS(1958), - [anon_sym_debugger] = ACTIONS(1958), - [anon_sym_return] = ACTIONS(1958), - [anon_sym_throw] = ACTIONS(1958), - [anon_sym_SEMI] = ACTIONS(1956), - [anon_sym_case] = ACTIONS(1958), - [anon_sym_yield] = ACTIONS(1958), - [anon_sym_LBRACK] = ACTIONS(1956), - [anon_sym_LT] = ACTIONS(1956), - [anon_sym_SLASH] = ACTIONS(1958), - [anon_sym_class] = ACTIONS(1958), - [anon_sym_async] = ACTIONS(1958), - [anon_sym_function] = ACTIONS(1958), - [anon_sym_new] = ACTIONS(1958), - [anon_sym_PLUS] = ACTIONS(1958), - [anon_sym_DASH] = ACTIONS(1958), - [anon_sym_TILDE] = ACTIONS(1956), - [anon_sym_void] = ACTIONS(1958), - [anon_sym_delete] = ACTIONS(1958), - [anon_sym_PLUS_PLUS] = ACTIONS(1956), - [anon_sym_DASH_DASH] = ACTIONS(1956), - [anon_sym_DQUOTE] = ACTIONS(1956), - [anon_sym_SQUOTE] = ACTIONS(1956), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1956), - [sym_number] = ACTIONS(1956), - [sym_this] = ACTIONS(1958), - [sym_super] = ACTIONS(1958), - [sym_true] = ACTIONS(1958), - [sym_false] = ACTIONS(1958), - [sym_null] = ACTIONS(1958), - [sym_undefined] = ACTIONS(1958), - [anon_sym_AT] = ACTIONS(1956), - [anon_sym_static] = ACTIONS(1958), - [anon_sym_readonly] = ACTIONS(1958), - [anon_sym_get] = ACTIONS(1958), - [anon_sym_set] = ACTIONS(1958), - [anon_sym_declare] = ACTIONS(1958), - [anon_sym_public] = ACTIONS(1958), - [anon_sym_private] = ACTIONS(1958), - [anon_sym_protected] = ACTIONS(1958), - [anon_sym_module] = ACTIONS(1958), - [anon_sym_any] = ACTIONS(1958), - [anon_sym_number] = ACTIONS(1958), - [anon_sym_boolean] = ACTIONS(1958), - [anon_sym_string] = ACTIONS(1958), - [anon_sym_symbol] = ACTIONS(1958), - [anon_sym_abstract] = ACTIONS(1958), - [anon_sym_interface] = ACTIONS(1958), - [anon_sym_enum] = ACTIONS(1958), - [sym__automatic_semicolon] = ACTIONS(1964), - }, - [1066] = { - [ts_builtin_sym_end] = ACTIONS(3118), - [sym_identifier] = ACTIONS(3120), - [anon_sym_export] = ACTIONS(3120), - [anon_sym_default] = ACTIONS(3120), - [anon_sym_type] = ACTIONS(3120), - [anon_sym_namespace] = ACTIONS(3120), - [anon_sym_LBRACE] = ACTIONS(3118), - [anon_sym_RBRACE] = ACTIONS(3118), - [anon_sym_typeof] = ACTIONS(3120), - [anon_sym_import] = ACTIONS(3120), - [anon_sym_var] = ACTIONS(3120), - [anon_sym_let] = ACTIONS(3120), - [anon_sym_const] = ACTIONS(3120), - [anon_sym_BANG] = ACTIONS(3118), - [anon_sym_else] = ACTIONS(3120), - [anon_sym_if] = ACTIONS(3120), - [anon_sym_switch] = ACTIONS(3120), - [anon_sym_for] = ACTIONS(3120), - [anon_sym_LPAREN] = ACTIONS(3118), - [anon_sym_RPAREN] = ACTIONS(3118), - [anon_sym_await] = ACTIONS(3120), - [anon_sym_while] = ACTIONS(3120), - [anon_sym_do] = ACTIONS(3120), - [anon_sym_try] = ACTIONS(3120), - [anon_sym_with] = ACTIONS(3120), - [anon_sym_break] = ACTIONS(3120), - [anon_sym_continue] = ACTIONS(3120), - [anon_sym_debugger] = ACTIONS(3120), - [anon_sym_return] = ACTIONS(3120), - [anon_sym_throw] = ACTIONS(3120), - [anon_sym_SEMI] = ACTIONS(3118), - [anon_sym_case] = ACTIONS(3120), - [anon_sym_yield] = ACTIONS(3120), - [anon_sym_LBRACK] = ACTIONS(3118), - [anon_sym_LT] = ACTIONS(3118), - [anon_sym_SLASH] = ACTIONS(3120), - [anon_sym_class] = ACTIONS(3120), - [anon_sym_async] = ACTIONS(3120), - [anon_sym_function] = ACTIONS(3120), - [anon_sym_new] = ACTIONS(3120), - [anon_sym_PLUS] = ACTIONS(3120), - [anon_sym_DASH] = ACTIONS(3120), - [anon_sym_TILDE] = ACTIONS(3118), - [anon_sym_void] = ACTIONS(3120), - [anon_sym_delete] = ACTIONS(3120), - [anon_sym_PLUS_PLUS] = ACTIONS(3118), - [anon_sym_DASH_DASH] = ACTIONS(3118), - [anon_sym_DQUOTE] = ACTIONS(3118), - [anon_sym_SQUOTE] = ACTIONS(3118), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3118), - [sym_number] = ACTIONS(3118), - [sym_this] = ACTIONS(3120), - [sym_super] = ACTIONS(3120), - [sym_true] = ACTIONS(3120), - [sym_false] = ACTIONS(3120), - [sym_null] = ACTIONS(3120), - [sym_undefined] = ACTIONS(3120), - [anon_sym_AT] = ACTIONS(3118), - [anon_sym_static] = ACTIONS(3120), - [anon_sym_readonly] = ACTIONS(3120), - [anon_sym_get] = ACTIONS(3120), - [anon_sym_set] = ACTIONS(3120), - [anon_sym_declare] = ACTIONS(3120), - [anon_sym_public] = ACTIONS(3120), - [anon_sym_private] = ACTIONS(3120), - [anon_sym_protected] = ACTIONS(3120), - [anon_sym_module] = ACTIONS(3120), - [anon_sym_any] = ACTIONS(3120), - [anon_sym_number] = ACTIONS(3120), - [anon_sym_boolean] = ACTIONS(3120), - [anon_sym_string] = ACTIONS(3120), - [anon_sym_symbol] = ACTIONS(3120), - [anon_sym_abstract] = ACTIONS(3120), - [anon_sym_interface] = ACTIONS(3120), - [anon_sym_enum] = ACTIONS(3120), - }, - [1067] = { - [ts_builtin_sym_end] = ACTIONS(2189), - [sym_identifier] = ACTIONS(2191), - [anon_sym_export] = ACTIONS(2191), - [anon_sym_default] = ACTIONS(2191), - [anon_sym_type] = ACTIONS(2191), - [anon_sym_namespace] = ACTIONS(2191), - [anon_sym_LBRACE] = ACTIONS(2189), - [anon_sym_RBRACE] = ACTIONS(2189), - [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_readonly] = ACTIONS(2191), - [anon_sym_get] = ACTIONS(2191), - [anon_sym_set] = ACTIONS(2191), - [anon_sym_declare] = ACTIONS(2191), - [anon_sym_public] = ACTIONS(2191), - [anon_sym_private] = ACTIONS(2191), - [anon_sym_protected] = ACTIONS(2191), - [anon_sym_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_abstract] = ACTIONS(2191), - [anon_sym_interface] = ACTIONS(2191), - [anon_sym_enum] = ACTIONS(2191), - [sym__automatic_semicolon] = ACTIONS(2197), - }, - [1068] = { - [ts_builtin_sym_end] = ACTIONS(2165), - [sym_identifier] = ACTIONS(2167), - [anon_sym_export] = ACTIONS(2167), - [anon_sym_default] = ACTIONS(2167), - [anon_sym_type] = ACTIONS(2167), - [anon_sym_namespace] = ACTIONS(2167), - [anon_sym_LBRACE] = ACTIONS(2165), - [anon_sym_RBRACE] = ACTIONS(2165), - [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_readonly] = ACTIONS(2167), - [anon_sym_get] = ACTIONS(2167), - [anon_sym_set] = ACTIONS(2167), - [anon_sym_declare] = ACTIONS(2167), - [anon_sym_public] = ACTIONS(2167), - [anon_sym_private] = ACTIONS(2167), - [anon_sym_protected] = ACTIONS(2167), - [anon_sym_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_abstract] = ACTIONS(2167), - [anon_sym_interface] = ACTIONS(2167), - [anon_sym_enum] = ACTIONS(2167), - [sym__automatic_semicolon] = ACTIONS(2173), - }, - [1069] = { [ts_builtin_sym_end] = ACTIONS(2151), [sym_identifier] = ACTIONS(2153), [anon_sym_export] = ACTIONS(2153), @@ -116707,11037 +115340,12592 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_enum] = ACTIONS(2153), [sym__automatic_semicolon] = ACTIONS(2159), }, + [1052] = { + [ts_builtin_sym_end] = ACTIONS(2069), + [sym_identifier] = ACTIONS(2071), + [anon_sym_export] = ACTIONS(2071), + [anon_sym_default] = ACTIONS(2071), + [anon_sym_type] = ACTIONS(2071), + [anon_sym_namespace] = ACTIONS(2071), + [anon_sym_LBRACE] = ACTIONS(2069), + [anon_sym_RBRACE] = ACTIONS(2069), + [anon_sym_typeof] = ACTIONS(2071), + [anon_sym_import] = ACTIONS(2071), + [anon_sym_var] = ACTIONS(2071), + [anon_sym_let] = ACTIONS(2071), + [anon_sym_const] = ACTIONS(2071), + [anon_sym_BANG] = ACTIONS(2069), + [anon_sym_else] = ACTIONS(2071), + [anon_sym_if] = ACTIONS(2071), + [anon_sym_switch] = ACTIONS(2071), + [anon_sym_for] = ACTIONS(2071), + [anon_sym_LPAREN] = ACTIONS(2069), + [anon_sym_await] = ACTIONS(2071), + [anon_sym_while] = ACTIONS(2071), + [anon_sym_do] = ACTIONS(2071), + [anon_sym_try] = ACTIONS(2071), + [anon_sym_with] = ACTIONS(2071), + [anon_sym_break] = ACTIONS(2071), + [anon_sym_continue] = ACTIONS(2071), + [anon_sym_debugger] = ACTIONS(2071), + [anon_sym_return] = ACTIONS(2071), + [anon_sym_throw] = ACTIONS(2071), + [anon_sym_SEMI] = ACTIONS(2069), + [anon_sym_case] = ACTIONS(2071), + [anon_sym_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), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2069), + [sym_number] = ACTIONS(2069), + [sym_this] = ACTIONS(2071), + [sym_super] = ACTIONS(2071), + [sym_true] = ACTIONS(2071), + [sym_false] = ACTIONS(2071), + [sym_null] = ACTIONS(2071), + [sym_undefined] = ACTIONS(2071), + [anon_sym_AT] = ACTIONS(2069), + [anon_sym_static] = ACTIONS(2071), + [anon_sym_readonly] = ACTIONS(2071), + [anon_sym_get] = ACTIONS(2071), + [anon_sym_set] = ACTIONS(2071), + [anon_sym_declare] = ACTIONS(2071), + [anon_sym_public] = ACTIONS(2071), + [anon_sym_private] = ACTIONS(2071), + [anon_sym_protected] = ACTIONS(2071), + [anon_sym_module] = ACTIONS(2071), + [anon_sym_any] = ACTIONS(2071), + [anon_sym_number] = ACTIONS(2071), + [anon_sym_boolean] = ACTIONS(2071), + [anon_sym_string] = ACTIONS(2071), + [anon_sym_symbol] = ACTIONS(2071), + [anon_sym_abstract] = ACTIONS(2071), + [anon_sym_interface] = ACTIONS(2071), + [anon_sym_enum] = ACTIONS(2071), + [sym__automatic_semicolon] = ACTIONS(2077), + }, + [1053] = { + [ts_builtin_sym_end] = ACTIONS(3094), + [sym_identifier] = ACTIONS(3096), + [anon_sym_export] = ACTIONS(3096), + [anon_sym_default] = ACTIONS(3096), + [anon_sym_type] = ACTIONS(3096), + [anon_sym_namespace] = ACTIONS(3096), + [anon_sym_LBRACE] = ACTIONS(3094), + [anon_sym_RBRACE] = ACTIONS(3094), + [anon_sym_typeof] = ACTIONS(3096), + [anon_sym_import] = ACTIONS(3096), + [anon_sym_var] = ACTIONS(3096), + [anon_sym_let] = ACTIONS(3096), + [anon_sym_const] = ACTIONS(3096), + [anon_sym_BANG] = ACTIONS(3094), + [anon_sym_else] = ACTIONS(3096), + [anon_sym_if] = ACTIONS(3096), + [anon_sym_switch] = ACTIONS(3096), + [anon_sym_for] = ACTIONS(3096), + [anon_sym_LPAREN] = ACTIONS(3094), + [anon_sym_await] = ACTIONS(3096), + [anon_sym_while] = ACTIONS(3096), + [anon_sym_do] = ACTIONS(3096), + [anon_sym_try] = ACTIONS(3096), + [anon_sym_with] = ACTIONS(3096), + [anon_sym_break] = ACTIONS(3096), + [anon_sym_continue] = ACTIONS(3096), + [anon_sym_debugger] = ACTIONS(3096), + [anon_sym_return] = ACTIONS(3096), + [anon_sym_throw] = ACTIONS(3096), + [anon_sym_SEMI] = ACTIONS(3094), + [anon_sym_case] = ACTIONS(3096), + [anon_sym_finally] = ACTIONS(3096), + [anon_sym_yield] = ACTIONS(3096), + [anon_sym_LBRACK] = ACTIONS(3094), + [anon_sym_LT] = ACTIONS(3094), + [anon_sym_SLASH] = ACTIONS(3096), + [anon_sym_class] = ACTIONS(3096), + [anon_sym_async] = ACTIONS(3096), + [anon_sym_function] = ACTIONS(3096), + [anon_sym_new] = ACTIONS(3096), + [anon_sym_PLUS] = ACTIONS(3096), + [anon_sym_DASH] = ACTIONS(3096), + [anon_sym_TILDE] = ACTIONS(3094), + [anon_sym_void] = ACTIONS(3096), + [anon_sym_delete] = ACTIONS(3096), + [anon_sym_PLUS_PLUS] = ACTIONS(3094), + [anon_sym_DASH_DASH] = ACTIONS(3094), + [anon_sym_DQUOTE] = ACTIONS(3094), + [anon_sym_SQUOTE] = ACTIONS(3094), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3094), + [sym_number] = ACTIONS(3094), + [sym_this] = ACTIONS(3096), + [sym_super] = ACTIONS(3096), + [sym_true] = ACTIONS(3096), + [sym_false] = ACTIONS(3096), + [sym_null] = ACTIONS(3096), + [sym_undefined] = ACTIONS(3096), + [anon_sym_AT] = ACTIONS(3094), + [anon_sym_static] = ACTIONS(3096), + [anon_sym_readonly] = ACTIONS(3096), + [anon_sym_get] = ACTIONS(3096), + [anon_sym_set] = ACTIONS(3096), + [anon_sym_declare] = ACTIONS(3096), + [anon_sym_public] = ACTIONS(3096), + [anon_sym_private] = ACTIONS(3096), + [anon_sym_protected] = ACTIONS(3096), + [anon_sym_module] = ACTIONS(3096), + [anon_sym_any] = ACTIONS(3096), + [anon_sym_number] = ACTIONS(3096), + [anon_sym_boolean] = ACTIONS(3096), + [anon_sym_string] = ACTIONS(3096), + [anon_sym_symbol] = ACTIONS(3096), + [anon_sym_abstract] = ACTIONS(3096), + [anon_sym_interface] = ACTIONS(3096), + [anon_sym_enum] = ACTIONS(3096), + }, + [1054] = { + [ts_builtin_sym_end] = ACTIONS(2002), + [sym_identifier] = ACTIONS(2004), + [anon_sym_export] = ACTIONS(2004), + [anon_sym_default] = ACTIONS(2004), + [anon_sym_type] = ACTIONS(2004), + [anon_sym_namespace] = ACTIONS(2004), + [anon_sym_LBRACE] = ACTIONS(2002), + [anon_sym_RBRACE] = ACTIONS(2002), + [anon_sym_typeof] = ACTIONS(2004), + [anon_sym_import] = ACTIONS(2004), + [anon_sym_var] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [anon_sym_BANG] = ACTIONS(2002), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_switch] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2002), + [anon_sym_await] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_with] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_debugger] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_throw] = ACTIONS(2004), + [anon_sym_SEMI] = ACTIONS(2002), + [anon_sym_case] = ACTIONS(2004), + [anon_sym_yield] = ACTIONS(2004), + [anon_sym_LBRACK] = ACTIONS(2002), + [anon_sym_LT] = ACTIONS(2002), + [anon_sym_SLASH] = ACTIONS(2004), + [anon_sym_DOT] = ACTIONS(2004), + [anon_sym_class] = ACTIONS(2004), + [anon_sym_async] = ACTIONS(2004), + [anon_sym_function] = ACTIONS(2004), + [anon_sym_new] = ACTIONS(2004), + [anon_sym_PLUS] = ACTIONS(2004), + [anon_sym_DASH] = ACTIONS(2004), + [anon_sym_TILDE] = ACTIONS(2002), + [anon_sym_void] = ACTIONS(2004), + [anon_sym_delete] = ACTIONS(2004), + [anon_sym_PLUS_PLUS] = ACTIONS(2002), + [anon_sym_DASH_DASH] = ACTIONS(2002), + [anon_sym_DQUOTE] = ACTIONS(2002), + [anon_sym_SQUOTE] = ACTIONS(2002), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2002), + [sym_number] = ACTIONS(2002), + [sym_this] = ACTIONS(2004), + [sym_super] = ACTIONS(2004), + [sym_true] = ACTIONS(2004), + [sym_false] = ACTIONS(2004), + [sym_null] = ACTIONS(2004), + [sym_undefined] = ACTIONS(2004), + [anon_sym_AT] = ACTIONS(2002), + [anon_sym_static] = ACTIONS(2004), + [anon_sym_readonly] = ACTIONS(2004), + [anon_sym_get] = ACTIONS(2004), + [anon_sym_set] = ACTIONS(2004), + [anon_sym_declare] = ACTIONS(2004), + [anon_sym_public] = ACTIONS(2004), + [anon_sym_private] = ACTIONS(2004), + [anon_sym_protected] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_any] = ACTIONS(2004), + [anon_sym_number] = ACTIONS(2004), + [anon_sym_boolean] = ACTIONS(2004), + [anon_sym_string] = ACTIONS(2004), + [anon_sym_symbol] = ACTIONS(2004), + [anon_sym_abstract] = ACTIONS(2004), + [anon_sym_interface] = ACTIONS(2004), + [anon_sym_enum] = ACTIONS(2004), + }, + [1055] = { + [ts_builtin_sym_end] = ACTIONS(1958), + [sym_identifier] = ACTIONS(1960), + [anon_sym_export] = ACTIONS(1960), + [anon_sym_default] = ACTIONS(1960), + [anon_sym_type] = ACTIONS(1960), + [anon_sym_namespace] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1958), + [anon_sym_RBRACE] = ACTIONS(1958), + [anon_sym_typeof] = ACTIONS(1960), + [anon_sym_import] = ACTIONS(1960), + [anon_sym_var] = ACTIONS(1960), + [anon_sym_let] = ACTIONS(1960), + [anon_sym_const] = ACTIONS(1960), + [anon_sym_BANG] = ACTIONS(1958), + [anon_sym_else] = ACTIONS(1960), + [anon_sym_if] = ACTIONS(1960), + [anon_sym_switch] = ACTIONS(1960), + [anon_sym_for] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1958), + [anon_sym_await] = ACTIONS(1960), + [anon_sym_while] = ACTIONS(1960), + [anon_sym_do] = ACTIONS(1960), + [anon_sym_try] = ACTIONS(1960), + [anon_sym_with] = ACTIONS(1960), + [anon_sym_break] = ACTIONS(1960), + [anon_sym_continue] = ACTIONS(1960), + [anon_sym_debugger] = ACTIONS(1960), + [anon_sym_return] = ACTIONS(1960), + [anon_sym_throw] = ACTIONS(1960), + [anon_sym_SEMI] = ACTIONS(1958), + [anon_sym_case] = ACTIONS(1960), + [anon_sym_yield] = ACTIONS(1960), + [anon_sym_LBRACK] = ACTIONS(1958), + [anon_sym_LT] = ACTIONS(1958), + [anon_sym_SLASH] = ACTIONS(1960), + [anon_sym_class] = ACTIONS(1960), + [anon_sym_async] = ACTIONS(1960), + [anon_sym_function] = ACTIONS(1960), + [anon_sym_new] = ACTIONS(1960), + [anon_sym_PLUS] = ACTIONS(1960), + [anon_sym_DASH] = ACTIONS(1960), + [anon_sym_TILDE] = ACTIONS(1958), + [anon_sym_void] = ACTIONS(1960), + [anon_sym_delete] = ACTIONS(1960), + [anon_sym_PLUS_PLUS] = ACTIONS(1958), + [anon_sym_DASH_DASH] = ACTIONS(1958), + [anon_sym_DQUOTE] = ACTIONS(1958), + [anon_sym_SQUOTE] = ACTIONS(1958), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1958), + [sym_number] = ACTIONS(1958), + [sym_this] = ACTIONS(1960), + [sym_super] = ACTIONS(1960), + [sym_true] = ACTIONS(1960), + [sym_false] = ACTIONS(1960), + [sym_null] = ACTIONS(1960), + [sym_undefined] = ACTIONS(1960), + [anon_sym_AT] = ACTIONS(1958), + [anon_sym_static] = ACTIONS(1960), + [anon_sym_readonly] = ACTIONS(1960), + [anon_sym_get] = ACTIONS(1960), + [anon_sym_set] = ACTIONS(1960), + [anon_sym_declare] = ACTIONS(1960), + [anon_sym_public] = ACTIONS(1960), + [anon_sym_private] = ACTIONS(1960), + [anon_sym_protected] = ACTIONS(1960), + [anon_sym_module] = ACTIONS(1960), + [anon_sym_any] = ACTIONS(1960), + [anon_sym_number] = ACTIONS(1960), + [anon_sym_boolean] = ACTIONS(1960), + [anon_sym_string] = ACTIONS(1960), + [anon_sym_symbol] = ACTIONS(1960), + [anon_sym_abstract] = ACTIONS(1960), + [anon_sym_interface] = ACTIONS(1960), + [anon_sym_enum] = ACTIONS(1960), + [sym__automatic_semicolon] = ACTIONS(1966), + }, + [1056] = { + [sym_statement_block] = STATE(1196), + [ts_builtin_sym_end] = ACTIONS(1928), + [sym_identifier] = ACTIONS(1930), + [anon_sym_export] = ACTIONS(1930), + [anon_sym_default] = ACTIONS(1930), + [anon_sym_type] = ACTIONS(1930), + [anon_sym_namespace] = ACTIONS(1930), + [anon_sym_LBRACE] = ACTIONS(3078), + [anon_sym_RBRACE] = ACTIONS(1928), + [anon_sym_typeof] = ACTIONS(1930), + [anon_sym_import] = ACTIONS(1930), + [anon_sym_var] = ACTIONS(1930), + [anon_sym_let] = ACTIONS(1930), + [anon_sym_const] = ACTIONS(1930), + [anon_sym_BANG] = ACTIONS(1928), + [anon_sym_else] = ACTIONS(1930), + [anon_sym_if] = ACTIONS(1930), + [anon_sym_switch] = ACTIONS(1930), + [anon_sym_for] = ACTIONS(1930), + [anon_sym_LPAREN] = ACTIONS(1928), + [anon_sym_await] = ACTIONS(1930), + [anon_sym_while] = ACTIONS(1930), + [anon_sym_do] = ACTIONS(1930), + [anon_sym_try] = ACTIONS(1930), + [anon_sym_with] = ACTIONS(1930), + [anon_sym_break] = ACTIONS(1930), + [anon_sym_continue] = ACTIONS(1930), + [anon_sym_debugger] = ACTIONS(1930), + [anon_sym_return] = ACTIONS(1930), + [anon_sym_throw] = ACTIONS(1930), + [anon_sym_SEMI] = ACTIONS(1928), + [anon_sym_case] = ACTIONS(1930), + [anon_sym_yield] = ACTIONS(1930), + [anon_sym_LBRACK] = ACTIONS(1928), + [anon_sym_LT] = ACTIONS(1928), + [anon_sym_SLASH] = ACTIONS(1930), + [anon_sym_class] = ACTIONS(1930), + [anon_sym_async] = ACTIONS(1930), + [anon_sym_function] = ACTIONS(1930), + [anon_sym_new] = ACTIONS(1930), + [anon_sym_PLUS] = ACTIONS(1930), + [anon_sym_DASH] = ACTIONS(1930), + [anon_sym_TILDE] = ACTIONS(1928), + [anon_sym_void] = ACTIONS(1930), + [anon_sym_delete] = ACTIONS(1930), + [anon_sym_PLUS_PLUS] = ACTIONS(1928), + [anon_sym_DASH_DASH] = ACTIONS(1928), + [anon_sym_DQUOTE] = ACTIONS(1928), + [anon_sym_SQUOTE] = ACTIONS(1928), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1928), + [sym_number] = ACTIONS(1928), + [sym_this] = ACTIONS(1930), + [sym_super] = ACTIONS(1930), + [sym_true] = ACTIONS(1930), + [sym_false] = ACTIONS(1930), + [sym_null] = ACTIONS(1930), + [sym_undefined] = ACTIONS(1930), + [anon_sym_AT] = ACTIONS(1928), + [anon_sym_static] = ACTIONS(1930), + [anon_sym_readonly] = ACTIONS(1930), + [anon_sym_get] = ACTIONS(1930), + [anon_sym_set] = ACTIONS(1930), + [anon_sym_declare] = ACTIONS(1930), + [anon_sym_public] = ACTIONS(1930), + [anon_sym_private] = ACTIONS(1930), + [anon_sym_protected] = ACTIONS(1930), + [anon_sym_module] = ACTIONS(1930), + [anon_sym_any] = ACTIONS(1930), + [anon_sym_number] = ACTIONS(1930), + [anon_sym_boolean] = ACTIONS(1930), + [anon_sym_string] = ACTIONS(1930), + [anon_sym_symbol] = ACTIONS(1930), + [anon_sym_abstract] = ACTIONS(1930), + [anon_sym_interface] = ACTIONS(1930), + [anon_sym_enum] = ACTIONS(1930), + }, + [1057] = { + [ts_builtin_sym_end] = ACTIONS(2119), + [sym_identifier] = ACTIONS(2121), + [anon_sym_export] = ACTIONS(2121), + [anon_sym_default] = ACTIONS(2121), + [anon_sym_type] = ACTIONS(2121), + [anon_sym_namespace] = ACTIONS(2121), + [anon_sym_LBRACE] = ACTIONS(2119), + [anon_sym_RBRACE] = ACTIONS(2119), + [anon_sym_typeof] = ACTIONS(2121), + [anon_sym_import] = ACTIONS(2121), + [anon_sym_var] = ACTIONS(2121), + [anon_sym_let] = ACTIONS(2121), + [anon_sym_const] = ACTIONS(2121), + [anon_sym_BANG] = ACTIONS(2119), + [anon_sym_else] = ACTIONS(2121), + [anon_sym_if] = ACTIONS(2121), + [anon_sym_switch] = ACTIONS(2121), + [anon_sym_for] = ACTIONS(2121), + [anon_sym_LPAREN] = ACTIONS(2119), + [anon_sym_await] = ACTIONS(2121), + [anon_sym_while] = ACTIONS(2121), + [anon_sym_do] = ACTIONS(2121), + [anon_sym_try] = ACTIONS(2121), + [anon_sym_with] = ACTIONS(2121), + [anon_sym_break] = ACTIONS(2121), + [anon_sym_continue] = ACTIONS(2121), + [anon_sym_debugger] = ACTIONS(2121), + [anon_sym_return] = ACTIONS(2121), + [anon_sym_throw] = ACTIONS(2121), + [anon_sym_SEMI] = ACTIONS(2119), + [anon_sym_case] = ACTIONS(2121), + [anon_sym_yield] = ACTIONS(2121), + [anon_sym_LBRACK] = ACTIONS(2119), + [anon_sym_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_readonly] = ACTIONS(2121), + [anon_sym_get] = ACTIONS(2121), + [anon_sym_set] = ACTIONS(2121), + [anon_sym_declare] = ACTIONS(2121), + [anon_sym_public] = ACTIONS(2121), + [anon_sym_private] = ACTIONS(2121), + [anon_sym_protected] = ACTIONS(2121), + [anon_sym_module] = ACTIONS(2121), + [anon_sym_any] = ACTIONS(2121), + [anon_sym_number] = ACTIONS(2121), + [anon_sym_boolean] = ACTIONS(2121), + [anon_sym_string] = ACTIONS(2121), + [anon_sym_symbol] = ACTIONS(2121), + [anon_sym_abstract] = ACTIONS(2121), + [anon_sym_interface] = ACTIONS(2121), + [anon_sym_enum] = ACTIONS(2121), + [sym__automatic_semicolon] = ACTIONS(2127), + }, + [1058] = { + [ts_builtin_sym_end] = ACTIONS(2034), + [sym_identifier] = ACTIONS(2036), + [anon_sym_export] = ACTIONS(2036), + [anon_sym_default] = ACTIONS(2036), + [anon_sym_type] = ACTIONS(2036), + [anon_sym_namespace] = ACTIONS(2036), + [anon_sym_LBRACE] = ACTIONS(2034), + [anon_sym_RBRACE] = ACTIONS(2034), + [anon_sym_typeof] = ACTIONS(2036), + [anon_sym_import] = ACTIONS(2036), + [anon_sym_var] = ACTIONS(2036), + [anon_sym_let] = ACTIONS(2036), + [anon_sym_const] = ACTIONS(2036), + [anon_sym_BANG] = ACTIONS(2034), + [anon_sym_else] = ACTIONS(2036), + [anon_sym_if] = ACTIONS(2036), + [anon_sym_switch] = ACTIONS(2036), + [anon_sym_for] = ACTIONS(2036), + [anon_sym_LPAREN] = ACTIONS(2034), + [anon_sym_await] = ACTIONS(2036), + [anon_sym_while] = ACTIONS(2036), + [anon_sym_do] = ACTIONS(2036), + [anon_sym_try] = ACTIONS(2036), + [anon_sym_with] = ACTIONS(2036), + [anon_sym_break] = ACTIONS(2036), + [anon_sym_continue] = ACTIONS(2036), + [anon_sym_debugger] = ACTIONS(2036), + [anon_sym_return] = ACTIONS(2036), + [anon_sym_throw] = ACTIONS(2036), + [anon_sym_SEMI] = ACTIONS(2034), + [anon_sym_case] = ACTIONS(2036), + [anon_sym_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_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_readonly] = ACTIONS(2036), + [anon_sym_get] = ACTIONS(2036), + [anon_sym_set] = ACTIONS(2036), + [anon_sym_declare] = ACTIONS(2036), + [anon_sym_public] = ACTIONS(2036), + [anon_sym_private] = ACTIONS(2036), + [anon_sym_protected] = ACTIONS(2036), + [anon_sym_module] = ACTIONS(2036), + [anon_sym_any] = ACTIONS(2036), + [anon_sym_number] = ACTIONS(2036), + [anon_sym_boolean] = ACTIONS(2036), + [anon_sym_string] = ACTIONS(2036), + [anon_sym_symbol] = ACTIONS(2036), + [anon_sym_abstract] = ACTIONS(2036), + [anon_sym_interface] = ACTIONS(2036), + [anon_sym_enum] = ACTIONS(2036), + [sym__automatic_semicolon] = ACTIONS(2042), + }, + [1059] = { + [ts_builtin_sym_end] = ACTIONS(2024), + [sym_identifier] = ACTIONS(2026), + [anon_sym_export] = ACTIONS(2026), + [anon_sym_default] = ACTIONS(2026), + [anon_sym_type] = ACTIONS(2026), + [anon_sym_namespace] = ACTIONS(2026), + [anon_sym_LBRACE] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_typeof] = ACTIONS(2026), + [anon_sym_import] = ACTIONS(2026), + [anon_sym_var] = ACTIONS(2026), + [anon_sym_let] = ACTIONS(2026), + [anon_sym_const] = ACTIONS(2026), + [anon_sym_BANG] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2026), + [anon_sym_if] = ACTIONS(2026), + [anon_sym_switch] = ACTIONS(2026), + [anon_sym_for] = ACTIONS(2026), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_await] = ACTIONS(2026), + [anon_sym_while] = ACTIONS(2026), + [anon_sym_do] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2026), + [anon_sym_with] = ACTIONS(2026), + [anon_sym_break] = ACTIONS(2026), + [anon_sym_continue] = ACTIONS(2026), + [anon_sym_debugger] = ACTIONS(2026), + [anon_sym_return] = ACTIONS(2026), + [anon_sym_throw] = ACTIONS(2026), + [anon_sym_SEMI] = ACTIONS(2024), + [anon_sym_case] = ACTIONS(2026), + [anon_sym_yield] = ACTIONS(2026), + [anon_sym_LBRACK] = ACTIONS(2024), + [anon_sym_LT] = ACTIONS(2024), + [anon_sym_SLASH] = ACTIONS(2026), + [anon_sym_class] = ACTIONS(2026), + [anon_sym_async] = ACTIONS(2026), + [anon_sym_function] = ACTIONS(2026), + [anon_sym_new] = ACTIONS(2026), + [anon_sym_PLUS] = ACTIONS(2026), + [anon_sym_DASH] = ACTIONS(2026), + [anon_sym_TILDE] = ACTIONS(2024), + [anon_sym_void] = ACTIONS(2026), + [anon_sym_delete] = ACTIONS(2026), + [anon_sym_PLUS_PLUS] = ACTIONS(2024), + [anon_sym_DASH_DASH] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [anon_sym_SQUOTE] = ACTIONS(2024), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2024), + [sym_number] = ACTIONS(2024), + [sym_this] = ACTIONS(2026), + [sym_super] = ACTIONS(2026), + [sym_true] = ACTIONS(2026), + [sym_false] = ACTIONS(2026), + [sym_null] = ACTIONS(2026), + [sym_undefined] = ACTIONS(2026), + [anon_sym_AT] = ACTIONS(2024), + [anon_sym_static] = ACTIONS(2026), + [anon_sym_readonly] = ACTIONS(2026), + [anon_sym_get] = ACTIONS(2026), + [anon_sym_set] = ACTIONS(2026), + [anon_sym_declare] = ACTIONS(2026), + [anon_sym_public] = ACTIONS(2026), + [anon_sym_private] = ACTIONS(2026), + [anon_sym_protected] = ACTIONS(2026), + [anon_sym_module] = ACTIONS(2026), + [anon_sym_any] = ACTIONS(2026), + [anon_sym_number] = ACTIONS(2026), + [anon_sym_boolean] = ACTIONS(2026), + [anon_sym_string] = ACTIONS(2026), + [anon_sym_symbol] = ACTIONS(2026), + [anon_sym_abstract] = ACTIONS(2026), + [anon_sym_interface] = ACTIONS(2026), + [anon_sym_enum] = ACTIONS(2026), + [sym__automatic_semicolon] = ACTIONS(2032), + }, + [1060] = { + [ts_builtin_sym_end] = ACTIONS(2181), + [sym_identifier] = ACTIONS(2183), + [anon_sym_export] = ACTIONS(2183), + [anon_sym_default] = ACTIONS(2183), + [anon_sym_type] = ACTIONS(2183), + [anon_sym_namespace] = ACTIONS(2183), + [anon_sym_LBRACE] = ACTIONS(2181), + [anon_sym_RBRACE] = ACTIONS(2181), + [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_readonly] = ACTIONS(2183), + [anon_sym_get] = ACTIONS(2183), + [anon_sym_set] = ACTIONS(2183), + [anon_sym_declare] = ACTIONS(2183), + [anon_sym_public] = ACTIONS(2183), + [anon_sym_private] = ACTIONS(2183), + [anon_sym_protected] = ACTIONS(2183), + [anon_sym_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_abstract] = ACTIONS(2183), + [anon_sym_interface] = ACTIONS(2183), + [anon_sym_enum] = ACTIONS(2183), + [sym__automatic_semicolon] = ACTIONS(2189), + }, + [1061] = { + [ts_builtin_sym_end] = ACTIONS(2195), + [sym_identifier] = ACTIONS(2197), + [anon_sym_export] = ACTIONS(2197), + [anon_sym_default] = ACTIONS(2197), + [anon_sym_type] = ACTIONS(2197), + [anon_sym_namespace] = ACTIONS(2197), + [anon_sym_LBRACE] = ACTIONS(2195), + [anon_sym_RBRACE] = ACTIONS(2195), + [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_readonly] = ACTIONS(2197), + [anon_sym_get] = ACTIONS(2197), + [anon_sym_set] = ACTIONS(2197), + [anon_sym_declare] = ACTIONS(2197), + [anon_sym_public] = ACTIONS(2197), + [anon_sym_private] = ACTIONS(2197), + [anon_sym_protected] = ACTIONS(2197), + [anon_sym_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_abstract] = ACTIONS(2197), + [anon_sym_interface] = ACTIONS(2197), + [anon_sym_enum] = ACTIONS(2197), + [sym__automatic_semicolon] = ACTIONS(2203), + }, + [1062] = { + [ts_builtin_sym_end] = ACTIONS(3098), + [sym_identifier] = ACTIONS(3100), + [anon_sym_export] = ACTIONS(3100), + [anon_sym_default] = ACTIONS(3100), + [anon_sym_type] = ACTIONS(3100), + [anon_sym_namespace] = ACTIONS(3100), + [anon_sym_LBRACE] = ACTIONS(3098), + [anon_sym_RBRACE] = ACTIONS(3098), + [anon_sym_typeof] = ACTIONS(3100), + [anon_sym_import] = ACTIONS(3100), + [anon_sym_var] = ACTIONS(3100), + [anon_sym_let] = ACTIONS(3100), + [anon_sym_const] = ACTIONS(3100), + [anon_sym_BANG] = ACTIONS(3098), + [anon_sym_else] = ACTIONS(3100), + [anon_sym_if] = ACTIONS(3100), + [anon_sym_switch] = ACTIONS(3100), + [anon_sym_for] = ACTIONS(3100), + [anon_sym_LPAREN] = ACTIONS(3098), + [anon_sym_await] = ACTIONS(3100), + [anon_sym_while] = ACTIONS(3100), + [anon_sym_do] = ACTIONS(3100), + [anon_sym_try] = ACTIONS(3100), + [anon_sym_with] = ACTIONS(3100), + [anon_sym_break] = ACTIONS(3100), + [anon_sym_continue] = ACTIONS(3100), + [anon_sym_debugger] = ACTIONS(3100), + [anon_sym_return] = ACTIONS(3100), + [anon_sym_throw] = ACTIONS(3100), + [anon_sym_SEMI] = ACTIONS(3098), + [anon_sym_case] = ACTIONS(3100), + [anon_sym_finally] = ACTIONS(3100), + [anon_sym_yield] = ACTIONS(3100), + [anon_sym_LBRACK] = ACTIONS(3098), + [anon_sym_LT] = ACTIONS(3098), + [anon_sym_SLASH] = ACTIONS(3100), + [anon_sym_class] = ACTIONS(3100), + [anon_sym_async] = ACTIONS(3100), + [anon_sym_function] = ACTIONS(3100), + [anon_sym_new] = ACTIONS(3100), + [anon_sym_PLUS] = ACTIONS(3100), + [anon_sym_DASH] = ACTIONS(3100), + [anon_sym_TILDE] = ACTIONS(3098), + [anon_sym_void] = ACTIONS(3100), + [anon_sym_delete] = ACTIONS(3100), + [anon_sym_PLUS_PLUS] = ACTIONS(3098), + [anon_sym_DASH_DASH] = ACTIONS(3098), + [anon_sym_DQUOTE] = ACTIONS(3098), + [anon_sym_SQUOTE] = ACTIONS(3098), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3098), + [sym_number] = ACTIONS(3098), + [sym_this] = ACTIONS(3100), + [sym_super] = ACTIONS(3100), + [sym_true] = ACTIONS(3100), + [sym_false] = ACTIONS(3100), + [sym_null] = ACTIONS(3100), + [sym_undefined] = ACTIONS(3100), + [anon_sym_AT] = ACTIONS(3098), + [anon_sym_static] = ACTIONS(3100), + [anon_sym_readonly] = ACTIONS(3100), + [anon_sym_get] = ACTIONS(3100), + [anon_sym_set] = ACTIONS(3100), + [anon_sym_declare] = ACTIONS(3100), + [anon_sym_public] = ACTIONS(3100), + [anon_sym_private] = ACTIONS(3100), + [anon_sym_protected] = ACTIONS(3100), + [anon_sym_module] = ACTIONS(3100), + [anon_sym_any] = ACTIONS(3100), + [anon_sym_number] = ACTIONS(3100), + [anon_sym_boolean] = ACTIONS(3100), + [anon_sym_string] = ACTIONS(3100), + [anon_sym_symbol] = ACTIONS(3100), + [anon_sym_abstract] = ACTIONS(3100), + [anon_sym_interface] = ACTIONS(3100), + [anon_sym_enum] = ACTIONS(3100), + }, + [1063] = { + [ts_builtin_sym_end] = ACTIONS(2010), + [sym_identifier] = ACTIONS(2012), + [anon_sym_export] = ACTIONS(2012), + [anon_sym_default] = ACTIONS(2012), + [anon_sym_type] = ACTIONS(2012), + [anon_sym_namespace] = ACTIONS(2012), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_typeof] = ACTIONS(2012), + [anon_sym_import] = ACTIONS(2012), + [anon_sym_var] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [anon_sym_BANG] = ACTIONS(2010), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_switch] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_await] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_with] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_debugger] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_throw] = ACTIONS(2012), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_case] = ACTIONS(2012), + [anon_sym_yield] = ACTIONS(2012), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LT] = ACTIONS(2010), + [anon_sym_SLASH] = ACTIONS(2012), + [anon_sym_class] = ACTIONS(2012), + [anon_sym_async] = ACTIONS(2012), + [anon_sym_function] = ACTIONS(2012), + [anon_sym_new] = ACTIONS(2012), + [anon_sym_PLUS] = ACTIONS(2012), + [anon_sym_DASH] = ACTIONS(2012), + [anon_sym_TILDE] = ACTIONS(2010), + [anon_sym_void] = ACTIONS(2012), + [anon_sym_delete] = ACTIONS(2012), + [anon_sym_PLUS_PLUS] = ACTIONS(2010), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [anon_sym_SQUOTE] = ACTIONS(2010), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2010), + [sym_number] = ACTIONS(2010), + [sym_this] = ACTIONS(2012), + [sym_super] = ACTIONS(2012), + [sym_true] = ACTIONS(2012), + [sym_false] = ACTIONS(2012), + [sym_null] = ACTIONS(2012), + [sym_undefined] = ACTIONS(2012), + [anon_sym_AT] = ACTIONS(2010), + [anon_sym_static] = ACTIONS(2012), + [anon_sym_readonly] = ACTIONS(2012), + [anon_sym_get] = ACTIONS(2012), + [anon_sym_set] = ACTIONS(2012), + [anon_sym_declare] = ACTIONS(2012), + [anon_sym_public] = ACTIONS(2012), + [anon_sym_private] = ACTIONS(2012), + [anon_sym_protected] = ACTIONS(2012), + [anon_sym_module] = ACTIONS(2012), + [anon_sym_any] = ACTIONS(2012), + [anon_sym_number] = ACTIONS(2012), + [anon_sym_boolean] = ACTIONS(2012), + [anon_sym_string] = ACTIONS(2012), + [anon_sym_symbol] = ACTIONS(2012), + [anon_sym_abstract] = ACTIONS(2012), + [anon_sym_interface] = ACTIONS(2012), + [anon_sym_enum] = ACTIONS(2012), + [sym__automatic_semicolon] = ACTIONS(2018), + }, + [1064] = { + [ts_builtin_sym_end] = ACTIONS(1968), + [sym_identifier] = ACTIONS(1970), + [anon_sym_export] = ACTIONS(1970), + [anon_sym_default] = ACTIONS(1970), + [anon_sym_type] = ACTIONS(1970), + [anon_sym_namespace] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_typeof] = ACTIONS(1970), + [anon_sym_import] = ACTIONS(1970), + [anon_sym_var] = ACTIONS(1970), + [anon_sym_let] = ACTIONS(1970), + [anon_sym_const] = ACTIONS(1970), + [anon_sym_BANG] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_switch] = ACTIONS(1970), + [anon_sym_for] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_await] = ACTIONS(1970), + [anon_sym_while] = ACTIONS(1970), + [anon_sym_do] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1970), + [anon_sym_with] = ACTIONS(1970), + [anon_sym_break] = ACTIONS(1970), + [anon_sym_continue] = ACTIONS(1970), + [anon_sym_debugger] = ACTIONS(1970), + [anon_sym_return] = ACTIONS(1970), + [anon_sym_throw] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1968), + [anon_sym_case] = ACTIONS(1970), + [anon_sym_yield] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1968), + [anon_sym_LT] = ACTIONS(1968), + [anon_sym_SLASH] = ACTIONS(1970), + [anon_sym_class] = ACTIONS(1970), + [anon_sym_async] = ACTIONS(1970), + [anon_sym_function] = ACTIONS(1970), + [anon_sym_new] = ACTIONS(1970), + [anon_sym_PLUS] = ACTIONS(1970), + [anon_sym_DASH] = ACTIONS(1970), + [anon_sym_TILDE] = ACTIONS(1968), + [anon_sym_void] = ACTIONS(1970), + [anon_sym_delete] = ACTIONS(1970), + [anon_sym_PLUS_PLUS] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [anon_sym_SQUOTE] = ACTIONS(1968), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1968), + [sym_number] = ACTIONS(1968), + [sym_this] = ACTIONS(1970), + [sym_super] = ACTIONS(1970), + [sym_true] = ACTIONS(1970), + [sym_false] = ACTIONS(1970), + [sym_null] = ACTIONS(1970), + [sym_undefined] = ACTIONS(1970), + [anon_sym_AT] = ACTIONS(1968), + [anon_sym_static] = ACTIONS(1970), + [anon_sym_readonly] = ACTIONS(1970), + [anon_sym_get] = ACTIONS(1970), + [anon_sym_set] = ACTIONS(1970), + [anon_sym_declare] = ACTIONS(1970), + [anon_sym_public] = ACTIONS(1970), + [anon_sym_private] = ACTIONS(1970), + [anon_sym_protected] = ACTIONS(1970), + [anon_sym_module] = ACTIONS(1970), + [anon_sym_any] = ACTIONS(1970), + [anon_sym_number] = ACTIONS(1970), + [anon_sym_boolean] = ACTIONS(1970), + [anon_sym_string] = ACTIONS(1970), + [anon_sym_symbol] = ACTIONS(1970), + [anon_sym_abstract] = ACTIONS(1970), + [anon_sym_interface] = ACTIONS(1970), + [anon_sym_enum] = ACTIONS(1970), + [sym__automatic_semicolon] = ACTIONS(1976), + }, + [1065] = { + [ts_builtin_sym_end] = ACTIONS(3102), + [sym_identifier] = ACTIONS(3104), + [anon_sym_export] = ACTIONS(3104), + [anon_sym_default] = ACTIONS(3104), + [anon_sym_type] = ACTIONS(3104), + [anon_sym_namespace] = ACTIONS(3104), + [anon_sym_LBRACE] = ACTIONS(3102), + [anon_sym_RBRACE] = ACTIONS(3102), + [anon_sym_typeof] = ACTIONS(3104), + [anon_sym_import] = ACTIONS(3104), + [anon_sym_var] = ACTIONS(3104), + [anon_sym_let] = ACTIONS(3104), + [anon_sym_const] = ACTIONS(3104), + [anon_sym_BANG] = ACTIONS(3102), + [anon_sym_else] = ACTIONS(3104), + [anon_sym_if] = ACTIONS(3104), + [anon_sym_switch] = ACTIONS(3104), + [anon_sym_for] = ACTIONS(3104), + [anon_sym_LPAREN] = ACTIONS(3102), + [anon_sym_RPAREN] = ACTIONS(3102), + [anon_sym_await] = ACTIONS(3104), + [anon_sym_while] = ACTIONS(3104), + [anon_sym_do] = ACTIONS(3104), + [anon_sym_try] = ACTIONS(3104), + [anon_sym_with] = ACTIONS(3104), + [anon_sym_break] = ACTIONS(3104), + [anon_sym_continue] = ACTIONS(3104), + [anon_sym_debugger] = ACTIONS(3104), + [anon_sym_return] = ACTIONS(3104), + [anon_sym_throw] = ACTIONS(3104), + [anon_sym_SEMI] = ACTIONS(3102), + [anon_sym_case] = ACTIONS(3104), + [anon_sym_yield] = ACTIONS(3104), + [anon_sym_LBRACK] = ACTIONS(3102), + [anon_sym_LT] = ACTIONS(3102), + [anon_sym_SLASH] = ACTIONS(3104), + [anon_sym_class] = ACTIONS(3104), + [anon_sym_async] = ACTIONS(3104), + [anon_sym_function] = ACTIONS(3104), + [anon_sym_new] = ACTIONS(3104), + [anon_sym_PLUS] = ACTIONS(3104), + [anon_sym_DASH] = ACTIONS(3104), + [anon_sym_TILDE] = ACTIONS(3102), + [anon_sym_void] = ACTIONS(3104), + [anon_sym_delete] = ACTIONS(3104), + [anon_sym_PLUS_PLUS] = ACTIONS(3102), + [anon_sym_DASH_DASH] = ACTIONS(3102), + [anon_sym_DQUOTE] = ACTIONS(3102), + [anon_sym_SQUOTE] = ACTIONS(3102), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3102), + [sym_number] = ACTIONS(3102), + [sym_this] = ACTIONS(3104), + [sym_super] = ACTIONS(3104), + [sym_true] = ACTIONS(3104), + [sym_false] = ACTIONS(3104), + [sym_null] = ACTIONS(3104), + [sym_undefined] = ACTIONS(3104), + [anon_sym_AT] = ACTIONS(3102), + [anon_sym_static] = ACTIONS(3104), + [anon_sym_readonly] = ACTIONS(3104), + [anon_sym_get] = ACTIONS(3104), + [anon_sym_set] = ACTIONS(3104), + [anon_sym_declare] = ACTIONS(3104), + [anon_sym_public] = ACTIONS(3104), + [anon_sym_private] = ACTIONS(3104), + [anon_sym_protected] = ACTIONS(3104), + [anon_sym_module] = ACTIONS(3104), + [anon_sym_any] = ACTIONS(3104), + [anon_sym_number] = ACTIONS(3104), + [anon_sym_boolean] = ACTIONS(3104), + [anon_sym_string] = ACTIONS(3104), + [anon_sym_symbol] = ACTIONS(3104), + [anon_sym_abstract] = ACTIONS(3104), + [anon_sym_interface] = ACTIONS(3104), + [anon_sym_enum] = ACTIONS(3104), + }, + [1066] = { + [ts_builtin_sym_end] = ACTIONS(3106), + [sym_identifier] = ACTIONS(3108), + [anon_sym_export] = ACTIONS(3108), + [anon_sym_default] = ACTIONS(3108), + [anon_sym_type] = ACTIONS(3108), + [anon_sym_namespace] = ACTIONS(3108), + [anon_sym_LBRACE] = ACTIONS(3106), + [anon_sym_RBRACE] = ACTIONS(3106), + [anon_sym_typeof] = ACTIONS(3108), + [anon_sym_import] = ACTIONS(3108), + [anon_sym_var] = ACTIONS(3108), + [anon_sym_let] = ACTIONS(3108), + [anon_sym_const] = ACTIONS(3108), + [anon_sym_BANG] = ACTIONS(3106), + [anon_sym_else] = ACTIONS(3108), + [anon_sym_if] = ACTIONS(3108), + [anon_sym_switch] = ACTIONS(3108), + [anon_sym_for] = ACTIONS(3108), + [anon_sym_LPAREN] = ACTIONS(3106), + [anon_sym_RPAREN] = ACTIONS(3106), + [anon_sym_await] = ACTIONS(3108), + [anon_sym_while] = ACTIONS(3108), + [anon_sym_do] = ACTIONS(3108), + [anon_sym_try] = ACTIONS(3108), + [anon_sym_with] = ACTIONS(3108), + [anon_sym_break] = ACTIONS(3108), + [anon_sym_continue] = ACTIONS(3108), + [anon_sym_debugger] = ACTIONS(3108), + [anon_sym_return] = ACTIONS(3108), + [anon_sym_throw] = ACTIONS(3108), + [anon_sym_SEMI] = ACTIONS(3106), + [anon_sym_case] = ACTIONS(3108), + [anon_sym_yield] = ACTIONS(3108), + [anon_sym_LBRACK] = ACTIONS(3106), + [anon_sym_LT] = ACTIONS(3106), + [anon_sym_SLASH] = ACTIONS(3108), + [anon_sym_class] = ACTIONS(3108), + [anon_sym_async] = ACTIONS(3108), + [anon_sym_function] = ACTIONS(3108), + [anon_sym_new] = ACTIONS(3108), + [anon_sym_PLUS] = ACTIONS(3108), + [anon_sym_DASH] = ACTIONS(3108), + [anon_sym_TILDE] = ACTIONS(3106), + [anon_sym_void] = ACTIONS(3108), + [anon_sym_delete] = ACTIONS(3108), + [anon_sym_PLUS_PLUS] = ACTIONS(3106), + [anon_sym_DASH_DASH] = ACTIONS(3106), + [anon_sym_DQUOTE] = ACTIONS(3106), + [anon_sym_SQUOTE] = ACTIONS(3106), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3106), + [sym_number] = ACTIONS(3106), + [sym_this] = ACTIONS(3108), + [sym_super] = ACTIONS(3108), + [sym_true] = ACTIONS(3108), + [sym_false] = ACTIONS(3108), + [sym_null] = ACTIONS(3108), + [sym_undefined] = ACTIONS(3108), + [anon_sym_AT] = ACTIONS(3106), + [anon_sym_static] = ACTIONS(3108), + [anon_sym_readonly] = ACTIONS(3108), + [anon_sym_get] = ACTIONS(3108), + [anon_sym_set] = ACTIONS(3108), + [anon_sym_declare] = ACTIONS(3108), + [anon_sym_public] = ACTIONS(3108), + [anon_sym_private] = ACTIONS(3108), + [anon_sym_protected] = ACTIONS(3108), + [anon_sym_module] = ACTIONS(3108), + [anon_sym_any] = ACTIONS(3108), + [anon_sym_number] = ACTIONS(3108), + [anon_sym_boolean] = ACTIONS(3108), + [anon_sym_string] = ACTIONS(3108), + [anon_sym_symbol] = ACTIONS(3108), + [anon_sym_abstract] = ACTIONS(3108), + [anon_sym_interface] = ACTIONS(3108), + [anon_sym_enum] = ACTIONS(3108), + }, + [1067] = { + [ts_builtin_sym_end] = ACTIONS(3110), + [sym_identifier] = ACTIONS(3112), + [anon_sym_export] = ACTIONS(3112), + [anon_sym_default] = ACTIONS(3112), + [anon_sym_type] = ACTIONS(3112), + [anon_sym_namespace] = ACTIONS(3112), + [anon_sym_LBRACE] = ACTIONS(3110), + [anon_sym_RBRACE] = ACTIONS(3110), + [anon_sym_typeof] = ACTIONS(3112), + [anon_sym_import] = ACTIONS(3112), + [anon_sym_var] = ACTIONS(3112), + [anon_sym_let] = ACTIONS(3112), + [anon_sym_const] = ACTIONS(3112), + [anon_sym_BANG] = ACTIONS(3110), + [anon_sym_else] = ACTIONS(3112), + [anon_sym_if] = ACTIONS(3112), + [anon_sym_switch] = ACTIONS(3112), + [anon_sym_for] = ACTIONS(3112), + [anon_sym_LPAREN] = ACTIONS(3110), + [anon_sym_await] = ACTIONS(3112), + [anon_sym_while] = ACTIONS(3112), + [anon_sym_do] = ACTIONS(3112), + [anon_sym_try] = ACTIONS(3112), + [anon_sym_with] = ACTIONS(3112), + [anon_sym_break] = ACTIONS(3112), + [anon_sym_continue] = ACTIONS(3112), + [anon_sym_debugger] = ACTIONS(3112), + [anon_sym_return] = ACTIONS(3112), + [anon_sym_throw] = ACTIONS(3112), + [anon_sym_SEMI] = ACTIONS(3110), + [anon_sym_case] = ACTIONS(3112), + [anon_sym_finally] = ACTIONS(3112), + [anon_sym_yield] = ACTIONS(3112), + [anon_sym_LBRACK] = ACTIONS(3110), + [anon_sym_LT] = ACTIONS(3110), + [anon_sym_SLASH] = ACTIONS(3112), + [anon_sym_class] = ACTIONS(3112), + [anon_sym_async] = ACTIONS(3112), + [anon_sym_function] = ACTIONS(3112), + [anon_sym_new] = ACTIONS(3112), + [anon_sym_PLUS] = ACTIONS(3112), + [anon_sym_DASH] = ACTIONS(3112), + [anon_sym_TILDE] = ACTIONS(3110), + [anon_sym_void] = ACTIONS(3112), + [anon_sym_delete] = ACTIONS(3112), + [anon_sym_PLUS_PLUS] = ACTIONS(3110), + [anon_sym_DASH_DASH] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3110), + [anon_sym_SQUOTE] = ACTIONS(3110), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3110), + [sym_number] = ACTIONS(3110), + [sym_this] = ACTIONS(3112), + [sym_super] = ACTIONS(3112), + [sym_true] = ACTIONS(3112), + [sym_false] = ACTIONS(3112), + [sym_null] = ACTIONS(3112), + [sym_undefined] = ACTIONS(3112), + [anon_sym_AT] = ACTIONS(3110), + [anon_sym_static] = ACTIONS(3112), + [anon_sym_readonly] = ACTIONS(3112), + [anon_sym_get] = ACTIONS(3112), + [anon_sym_set] = ACTIONS(3112), + [anon_sym_declare] = ACTIONS(3112), + [anon_sym_public] = ACTIONS(3112), + [anon_sym_private] = ACTIONS(3112), + [anon_sym_protected] = ACTIONS(3112), + [anon_sym_module] = ACTIONS(3112), + [anon_sym_any] = ACTIONS(3112), + [anon_sym_number] = ACTIONS(3112), + [anon_sym_boolean] = ACTIONS(3112), + [anon_sym_string] = ACTIONS(3112), + [anon_sym_symbol] = ACTIONS(3112), + [anon_sym_abstract] = ACTIONS(3112), + [anon_sym_interface] = ACTIONS(3112), + [anon_sym_enum] = ACTIONS(3112), + }, + [1068] = { + [sym_else_clause] = STATE(1108), + [ts_builtin_sym_end] = ACTIONS(3114), + [sym_identifier] = ACTIONS(3116), + [anon_sym_export] = ACTIONS(3116), + [anon_sym_default] = ACTIONS(3116), + [anon_sym_type] = ACTIONS(3116), + [anon_sym_namespace] = ACTIONS(3116), + [anon_sym_LBRACE] = ACTIONS(3114), + [anon_sym_RBRACE] = ACTIONS(3114), + [anon_sym_typeof] = ACTIONS(3116), + [anon_sym_import] = ACTIONS(3116), + [anon_sym_var] = ACTIONS(3116), + [anon_sym_let] = ACTIONS(3116), + [anon_sym_const] = ACTIONS(3116), + [anon_sym_BANG] = ACTIONS(3114), + [anon_sym_else] = ACTIONS(3118), + [anon_sym_if] = ACTIONS(3116), + [anon_sym_switch] = ACTIONS(3116), + [anon_sym_for] = ACTIONS(3116), + [anon_sym_LPAREN] = ACTIONS(3114), + [anon_sym_await] = ACTIONS(3116), + [anon_sym_while] = ACTIONS(3116), + [anon_sym_do] = ACTIONS(3116), + [anon_sym_try] = ACTIONS(3116), + [anon_sym_with] = ACTIONS(3116), + [anon_sym_break] = ACTIONS(3116), + [anon_sym_continue] = ACTIONS(3116), + [anon_sym_debugger] = ACTIONS(3116), + [anon_sym_return] = ACTIONS(3116), + [anon_sym_throw] = ACTIONS(3116), + [anon_sym_SEMI] = ACTIONS(3114), + [anon_sym_case] = ACTIONS(3116), + [anon_sym_yield] = ACTIONS(3116), + [anon_sym_LBRACK] = ACTIONS(3114), + [anon_sym_LT] = ACTIONS(3114), + [anon_sym_SLASH] = ACTIONS(3116), + [anon_sym_class] = ACTIONS(3116), + [anon_sym_async] = ACTIONS(3116), + [anon_sym_function] = ACTIONS(3116), + [anon_sym_new] = ACTIONS(3116), + [anon_sym_PLUS] = ACTIONS(3116), + [anon_sym_DASH] = ACTIONS(3116), + [anon_sym_TILDE] = ACTIONS(3114), + [anon_sym_void] = ACTIONS(3116), + [anon_sym_delete] = ACTIONS(3116), + [anon_sym_PLUS_PLUS] = ACTIONS(3114), + [anon_sym_DASH_DASH] = ACTIONS(3114), + [anon_sym_DQUOTE] = ACTIONS(3114), + [anon_sym_SQUOTE] = ACTIONS(3114), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3114), + [sym_number] = ACTIONS(3114), + [sym_this] = ACTIONS(3116), + [sym_super] = ACTIONS(3116), + [sym_true] = ACTIONS(3116), + [sym_false] = ACTIONS(3116), + [sym_null] = ACTIONS(3116), + [sym_undefined] = ACTIONS(3116), + [anon_sym_AT] = ACTIONS(3114), + [anon_sym_static] = ACTIONS(3116), + [anon_sym_readonly] = ACTIONS(3116), + [anon_sym_get] = ACTIONS(3116), + [anon_sym_set] = ACTIONS(3116), + [anon_sym_declare] = ACTIONS(3116), + [anon_sym_public] = ACTIONS(3116), + [anon_sym_private] = ACTIONS(3116), + [anon_sym_protected] = ACTIONS(3116), + [anon_sym_module] = ACTIONS(3116), + [anon_sym_any] = ACTIONS(3116), + [anon_sym_number] = ACTIONS(3116), + [anon_sym_boolean] = ACTIONS(3116), + [anon_sym_string] = ACTIONS(3116), + [anon_sym_symbol] = ACTIONS(3116), + [anon_sym_abstract] = ACTIONS(3116), + [anon_sym_interface] = ACTIONS(3116), + [anon_sym_enum] = ACTIONS(3116), + }, + [1069] = { + [ts_builtin_sym_end] = ACTIONS(2053), + [sym_identifier] = ACTIONS(2055), + [anon_sym_export] = ACTIONS(2055), + [anon_sym_default] = ACTIONS(2055), + [anon_sym_type] = ACTIONS(2055), + [anon_sym_namespace] = ACTIONS(2055), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_typeof] = ACTIONS(2055), + [anon_sym_import] = ACTIONS(2055), + [anon_sym_var] = ACTIONS(2055), + [anon_sym_let] = ACTIONS(2055), + [anon_sym_const] = ACTIONS(2055), + [anon_sym_BANG] = ACTIONS(2053), + [anon_sym_else] = ACTIONS(2055), + [anon_sym_if] = ACTIONS(2055), + [anon_sym_switch] = ACTIONS(2055), + [anon_sym_for] = ACTIONS(2055), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_await] = ACTIONS(2055), + [anon_sym_while] = ACTIONS(2055), + [anon_sym_do] = ACTIONS(2055), + [anon_sym_try] = ACTIONS(2055), + [anon_sym_with] = ACTIONS(2055), + [anon_sym_break] = ACTIONS(2055), + [anon_sym_continue] = ACTIONS(2055), + [anon_sym_debugger] = ACTIONS(2055), + [anon_sym_return] = ACTIONS(2055), + [anon_sym_throw] = ACTIONS(2055), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_case] = ACTIONS(2055), + [anon_sym_yield] = ACTIONS(2055), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LT] = ACTIONS(2053), + [anon_sym_SLASH] = ACTIONS(2055), + [anon_sym_class] = ACTIONS(2055), + [anon_sym_async] = ACTIONS(2055), + [anon_sym_function] = ACTIONS(2055), + [anon_sym_new] = ACTIONS(2055), + [anon_sym_PLUS] = ACTIONS(2055), + [anon_sym_DASH] = ACTIONS(2055), + [anon_sym_TILDE] = ACTIONS(2053), + [anon_sym_void] = ACTIONS(2055), + [anon_sym_delete] = ACTIONS(2055), + [anon_sym_PLUS_PLUS] = ACTIONS(2053), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [anon_sym_SQUOTE] = ACTIONS(2053), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2053), + [sym_number] = ACTIONS(2053), + [sym_this] = ACTIONS(2055), + [sym_super] = ACTIONS(2055), + [sym_true] = ACTIONS(2055), + [sym_false] = ACTIONS(2055), + [sym_null] = ACTIONS(2055), + [sym_undefined] = ACTIONS(2055), + [anon_sym_AT] = ACTIONS(2053), + [anon_sym_static] = ACTIONS(2055), + [anon_sym_readonly] = ACTIONS(2055), + [anon_sym_get] = ACTIONS(2055), + [anon_sym_set] = ACTIONS(2055), + [anon_sym_declare] = ACTIONS(2055), + [anon_sym_public] = ACTIONS(2055), + [anon_sym_private] = ACTIONS(2055), + [anon_sym_protected] = ACTIONS(2055), + [anon_sym_module] = ACTIONS(2055), + [anon_sym_any] = ACTIONS(2055), + [anon_sym_number] = ACTIONS(2055), + [anon_sym_boolean] = ACTIONS(2055), + [anon_sym_string] = ACTIONS(2055), + [anon_sym_symbol] = ACTIONS(2055), + [anon_sym_abstract] = ACTIONS(2055), + [anon_sym_interface] = ACTIONS(2055), + [anon_sym_enum] = ACTIONS(2055), + [sym__automatic_semicolon] = ACTIONS(2061), + }, [1070] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(2141), + [sym_identifier] = ACTIONS(2143), + [anon_sym_export] = ACTIONS(2143), + [anon_sym_default] = ACTIONS(2143), + [anon_sym_type] = ACTIONS(2143), + [anon_sym_namespace] = ACTIONS(2143), + [anon_sym_LBRACE] = ACTIONS(2141), + [anon_sym_RBRACE] = ACTIONS(2141), + [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_readonly] = 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_abstract] = ACTIONS(2143), + [anon_sym_interface] = ACTIONS(2143), + [anon_sym_enum] = ACTIONS(2143), + [sym__automatic_semicolon] = ACTIONS(2149), }, [1071] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1072] = { - [ts_builtin_sym_end] = ACTIONS(3130), - [sym_identifier] = ACTIONS(3132), - [anon_sym_export] = ACTIONS(3132), - [anon_sym_default] = ACTIONS(3132), - [anon_sym_type] = ACTIONS(3132), - [anon_sym_namespace] = ACTIONS(3132), - [anon_sym_LBRACE] = ACTIONS(3130), - [anon_sym_RBRACE] = ACTIONS(3130), - [anon_sym_typeof] = ACTIONS(3132), - [anon_sym_import] = ACTIONS(3132), - [anon_sym_var] = ACTIONS(3132), - [anon_sym_let] = ACTIONS(3132), - [anon_sym_const] = ACTIONS(3132), - [anon_sym_BANG] = ACTIONS(3130), - [anon_sym_else] = ACTIONS(3132), - [anon_sym_if] = ACTIONS(3132), - [anon_sym_switch] = ACTIONS(3132), - [anon_sym_for] = ACTIONS(3132), - [anon_sym_LPAREN] = ACTIONS(3130), - [anon_sym_await] = ACTIONS(3132), - [anon_sym_while] = ACTIONS(3132), - [anon_sym_do] = ACTIONS(3132), - [anon_sym_try] = ACTIONS(3132), - [anon_sym_with] = ACTIONS(3132), - [anon_sym_break] = ACTIONS(3132), - [anon_sym_continue] = ACTIONS(3132), - [anon_sym_debugger] = ACTIONS(3132), - [anon_sym_return] = ACTIONS(3132), - [anon_sym_throw] = ACTIONS(3132), - [anon_sym_SEMI] = ACTIONS(3130), - [anon_sym_case] = ACTIONS(3132), - [anon_sym_yield] = ACTIONS(3132), - [anon_sym_LBRACK] = ACTIONS(3130), - [anon_sym_LT] = ACTIONS(3130), - [anon_sym_SLASH] = ACTIONS(3132), - [anon_sym_class] = ACTIONS(3132), - [anon_sym_async] = ACTIONS(3132), - [anon_sym_function] = ACTIONS(3132), - [anon_sym_new] = ACTIONS(3132), - [anon_sym_PLUS] = ACTIONS(3132), - [anon_sym_DASH] = ACTIONS(3132), - [anon_sym_TILDE] = ACTIONS(3130), - [anon_sym_void] = ACTIONS(3132), - [anon_sym_delete] = ACTIONS(3132), - [anon_sym_PLUS_PLUS] = ACTIONS(3130), - [anon_sym_DASH_DASH] = ACTIONS(3130), - [anon_sym_DQUOTE] = ACTIONS(3130), - [anon_sym_SQUOTE] = ACTIONS(3130), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3130), - [sym_number] = ACTIONS(3130), - [sym_this] = ACTIONS(3132), - [sym_super] = ACTIONS(3132), - [sym_true] = ACTIONS(3132), - [sym_false] = ACTIONS(3132), - [sym_null] = ACTIONS(3132), - [sym_undefined] = ACTIONS(3132), - [anon_sym_AT] = ACTIONS(3130), - [anon_sym_static] = ACTIONS(3132), - [anon_sym_readonly] = ACTIONS(3132), - [anon_sym_get] = ACTIONS(3132), - [anon_sym_set] = ACTIONS(3132), - [anon_sym_declare] = ACTIONS(3132), - [anon_sym_public] = ACTIONS(3132), - [anon_sym_private] = ACTIONS(3132), - [anon_sym_protected] = ACTIONS(3132), - [anon_sym_module] = ACTIONS(3132), - [anon_sym_any] = ACTIONS(3132), - [anon_sym_number] = ACTIONS(3132), - [anon_sym_boolean] = ACTIONS(3132), - [anon_sym_string] = ACTIONS(3132), - [anon_sym_symbol] = ACTIONS(3132), - [anon_sym_abstract] = ACTIONS(3132), - [anon_sym_interface] = ACTIONS(3132), - [anon_sym_enum] = ACTIONS(3132), + [ts_builtin_sym_end] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_with] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_debugger] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_void] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3124), + [sym_number] = ACTIONS(3124), + [sym_this] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_null] = ACTIONS(3126), + [sym_undefined] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_get] = ACTIONS(3126), + [anon_sym_set] = ACTIONS(3126), + [anon_sym_declare] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_module] = ACTIONS(3126), + [anon_sym_any] = ACTIONS(3126), + [anon_sym_number] = ACTIONS(3126), + [anon_sym_boolean] = ACTIONS(3126), + [anon_sym_string] = ACTIONS(3126), + [anon_sym_symbol] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), }, [1073] = { - [ts_builtin_sym_end] = ACTIONS(3134), - [sym_identifier] = ACTIONS(3136), - [anon_sym_export] = ACTIONS(3136), - [anon_sym_default] = ACTIONS(3136), - [anon_sym_type] = ACTIONS(3136), - [anon_sym_namespace] = ACTIONS(3136), - [anon_sym_LBRACE] = ACTIONS(3134), - [anon_sym_RBRACE] = ACTIONS(3134), - [anon_sym_typeof] = ACTIONS(3136), - [anon_sym_import] = ACTIONS(3136), - [anon_sym_var] = ACTIONS(3136), - [anon_sym_let] = ACTIONS(3136), - [anon_sym_const] = ACTIONS(3136), - [anon_sym_BANG] = ACTIONS(3134), - [anon_sym_else] = ACTIONS(3136), - [anon_sym_if] = ACTIONS(3136), - [anon_sym_switch] = ACTIONS(3136), - [anon_sym_for] = ACTIONS(3136), - [anon_sym_LPAREN] = ACTIONS(3134), - [anon_sym_await] = ACTIONS(3136), - [anon_sym_while] = ACTIONS(3136), - [anon_sym_do] = ACTIONS(3136), - [anon_sym_try] = ACTIONS(3136), - [anon_sym_with] = ACTIONS(3136), - [anon_sym_break] = ACTIONS(3136), - [anon_sym_continue] = ACTIONS(3136), - [anon_sym_debugger] = ACTIONS(3136), - [anon_sym_return] = ACTIONS(3136), - [anon_sym_throw] = ACTIONS(3136), - [anon_sym_SEMI] = ACTIONS(3134), - [anon_sym_case] = ACTIONS(3136), - [anon_sym_yield] = ACTIONS(3136), - [anon_sym_LBRACK] = ACTIONS(3134), - [anon_sym_LT] = ACTIONS(3134), - [anon_sym_SLASH] = ACTIONS(3136), - [anon_sym_class] = ACTIONS(3136), - [anon_sym_async] = ACTIONS(3136), - [anon_sym_function] = ACTIONS(3136), - [anon_sym_new] = ACTIONS(3136), - [anon_sym_PLUS] = ACTIONS(3136), - [anon_sym_DASH] = ACTIONS(3136), - [anon_sym_TILDE] = ACTIONS(3134), - [anon_sym_void] = ACTIONS(3136), - [anon_sym_delete] = ACTIONS(3136), - [anon_sym_PLUS_PLUS] = ACTIONS(3134), - [anon_sym_DASH_DASH] = ACTIONS(3134), - [anon_sym_DQUOTE] = ACTIONS(3134), - [anon_sym_SQUOTE] = ACTIONS(3134), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3134), - [sym_number] = ACTIONS(3134), - [sym_this] = ACTIONS(3136), - [sym_super] = ACTIONS(3136), - [sym_true] = ACTIONS(3136), - [sym_false] = ACTIONS(3136), - [sym_null] = ACTIONS(3136), - [sym_undefined] = ACTIONS(3136), - [anon_sym_AT] = ACTIONS(3134), - [anon_sym_static] = ACTIONS(3136), - [anon_sym_readonly] = ACTIONS(3136), - [anon_sym_get] = ACTIONS(3136), - [anon_sym_set] = ACTIONS(3136), - [anon_sym_declare] = ACTIONS(3136), - [anon_sym_public] = ACTIONS(3136), - [anon_sym_private] = ACTIONS(3136), - [anon_sym_protected] = ACTIONS(3136), - [anon_sym_module] = ACTIONS(3136), - [anon_sym_any] = ACTIONS(3136), - [anon_sym_number] = ACTIONS(3136), - [anon_sym_boolean] = ACTIONS(3136), - [anon_sym_string] = ACTIONS(3136), - [anon_sym_symbol] = ACTIONS(3136), - [anon_sym_abstract] = ACTIONS(3136), - [anon_sym_interface] = ACTIONS(3136), - [anon_sym_enum] = ACTIONS(3136), + [ts_builtin_sym_end] = ACTIONS(3128), + [sym_identifier] = ACTIONS(3130), + [anon_sym_export] = ACTIONS(3130), + [anon_sym_default] = ACTIONS(3130), + [anon_sym_type] = ACTIONS(3130), + [anon_sym_namespace] = ACTIONS(3130), + [anon_sym_LBRACE] = ACTIONS(3128), + [anon_sym_RBRACE] = ACTIONS(3128), + [anon_sym_typeof] = ACTIONS(3130), + [anon_sym_import] = ACTIONS(3130), + [anon_sym_var] = ACTIONS(3130), + [anon_sym_let] = ACTIONS(3130), + [anon_sym_const] = ACTIONS(3130), + [anon_sym_BANG] = ACTIONS(3128), + [anon_sym_else] = ACTIONS(3130), + [anon_sym_if] = ACTIONS(3130), + [anon_sym_switch] = ACTIONS(3130), + [anon_sym_for] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3128), + [anon_sym_await] = ACTIONS(3130), + [anon_sym_while] = ACTIONS(3130), + [anon_sym_do] = ACTIONS(3130), + [anon_sym_try] = ACTIONS(3130), + [anon_sym_with] = ACTIONS(3130), + [anon_sym_break] = ACTIONS(3130), + [anon_sym_continue] = ACTIONS(3130), + [anon_sym_debugger] = ACTIONS(3130), + [anon_sym_return] = ACTIONS(3130), + [anon_sym_throw] = ACTIONS(3130), + [anon_sym_SEMI] = ACTIONS(3128), + [anon_sym_case] = ACTIONS(3130), + [anon_sym_yield] = ACTIONS(3130), + [anon_sym_LBRACK] = ACTIONS(3128), + [anon_sym_LT] = ACTIONS(3128), + [anon_sym_SLASH] = ACTIONS(3130), + [anon_sym_class] = ACTIONS(3130), + [anon_sym_async] = ACTIONS(3130), + [anon_sym_function] = ACTIONS(3130), + [anon_sym_new] = ACTIONS(3130), + [anon_sym_PLUS] = ACTIONS(3130), + [anon_sym_DASH] = ACTIONS(3130), + [anon_sym_TILDE] = ACTIONS(3128), + [anon_sym_void] = ACTIONS(3130), + [anon_sym_delete] = ACTIONS(3130), + [anon_sym_PLUS_PLUS] = ACTIONS(3128), + [anon_sym_DASH_DASH] = ACTIONS(3128), + [anon_sym_DQUOTE] = ACTIONS(3128), + [anon_sym_SQUOTE] = ACTIONS(3128), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3128), + [sym_number] = ACTIONS(3128), + [sym_this] = ACTIONS(3130), + [sym_super] = ACTIONS(3130), + [sym_true] = ACTIONS(3130), + [sym_false] = ACTIONS(3130), + [sym_null] = ACTIONS(3130), + [sym_undefined] = ACTIONS(3130), + [anon_sym_AT] = ACTIONS(3128), + [anon_sym_static] = ACTIONS(3130), + [anon_sym_readonly] = ACTIONS(3130), + [anon_sym_get] = ACTIONS(3130), + [anon_sym_set] = ACTIONS(3130), + [anon_sym_declare] = ACTIONS(3130), + [anon_sym_public] = ACTIONS(3130), + [anon_sym_private] = ACTIONS(3130), + [anon_sym_protected] = ACTIONS(3130), + [anon_sym_module] = ACTIONS(3130), + [anon_sym_any] = ACTIONS(3130), + [anon_sym_number] = ACTIONS(3130), + [anon_sym_boolean] = ACTIONS(3130), + [anon_sym_string] = ACTIONS(3130), + [anon_sym_symbol] = ACTIONS(3130), + [anon_sym_abstract] = ACTIONS(3130), + [anon_sym_interface] = ACTIONS(3130), + [anon_sym_enum] = ACTIONS(3130), }, [1074] = { - [ts_builtin_sym_end] = ACTIONS(3138), - [sym_identifier] = ACTIONS(3140), - [anon_sym_export] = ACTIONS(3140), - [anon_sym_default] = ACTIONS(3140), - [anon_sym_type] = ACTIONS(3140), - [anon_sym_namespace] = ACTIONS(3140), - [anon_sym_LBRACE] = ACTIONS(3138), - [anon_sym_RBRACE] = ACTIONS(3138), - [anon_sym_typeof] = ACTIONS(3140), - [anon_sym_import] = ACTIONS(3140), - [anon_sym_var] = ACTIONS(3140), - [anon_sym_let] = ACTIONS(3140), - [anon_sym_const] = ACTIONS(3140), - [anon_sym_BANG] = ACTIONS(3138), - [anon_sym_else] = ACTIONS(3140), - [anon_sym_if] = ACTIONS(3140), - [anon_sym_switch] = ACTIONS(3140), - [anon_sym_for] = ACTIONS(3140), - [anon_sym_LPAREN] = ACTIONS(3138), - [anon_sym_await] = ACTIONS(3140), - [anon_sym_while] = ACTIONS(3140), - [anon_sym_do] = ACTIONS(3140), - [anon_sym_try] = ACTIONS(3140), - [anon_sym_with] = ACTIONS(3140), - [anon_sym_break] = ACTIONS(3140), - [anon_sym_continue] = ACTIONS(3140), - [anon_sym_debugger] = ACTIONS(3140), - [anon_sym_return] = ACTIONS(3140), - [anon_sym_throw] = ACTIONS(3140), - [anon_sym_SEMI] = ACTIONS(3138), - [anon_sym_case] = ACTIONS(3140), - [anon_sym_yield] = ACTIONS(3140), - [anon_sym_LBRACK] = ACTIONS(3138), - [anon_sym_LT] = ACTIONS(3138), - [anon_sym_SLASH] = ACTIONS(3140), - [anon_sym_class] = ACTIONS(3140), - [anon_sym_async] = ACTIONS(3140), - [anon_sym_function] = ACTIONS(3140), - [anon_sym_new] = ACTIONS(3140), - [anon_sym_PLUS] = ACTIONS(3140), - [anon_sym_DASH] = ACTIONS(3140), - [anon_sym_TILDE] = ACTIONS(3138), - [anon_sym_void] = ACTIONS(3140), - [anon_sym_delete] = ACTIONS(3140), - [anon_sym_PLUS_PLUS] = ACTIONS(3138), - [anon_sym_DASH_DASH] = ACTIONS(3138), - [anon_sym_DQUOTE] = ACTIONS(3138), - [anon_sym_SQUOTE] = ACTIONS(3138), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3138), - [sym_number] = ACTIONS(3138), - [sym_this] = ACTIONS(3140), - [sym_super] = ACTIONS(3140), - [sym_true] = ACTIONS(3140), - [sym_false] = ACTIONS(3140), - [sym_null] = ACTIONS(3140), - [sym_undefined] = ACTIONS(3140), - [anon_sym_AT] = ACTIONS(3138), - [anon_sym_static] = ACTIONS(3140), - [anon_sym_readonly] = ACTIONS(3140), - [anon_sym_get] = ACTIONS(3140), - [anon_sym_set] = ACTIONS(3140), - [anon_sym_declare] = ACTIONS(3140), - [anon_sym_public] = ACTIONS(3140), - [anon_sym_private] = ACTIONS(3140), - [anon_sym_protected] = ACTIONS(3140), - [anon_sym_module] = ACTIONS(3140), - [anon_sym_any] = ACTIONS(3140), - [anon_sym_number] = ACTIONS(3140), - [anon_sym_boolean] = ACTIONS(3140), - [anon_sym_string] = ACTIONS(3140), - [anon_sym_symbol] = ACTIONS(3140), - [anon_sym_abstract] = ACTIONS(3140), - [anon_sym_interface] = ACTIONS(3140), - [anon_sym_enum] = ACTIONS(3140), + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_type] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [anon_sym_let] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_debugger] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_async] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_this] = ACTIONS(3134), + [sym_super] = ACTIONS(3134), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_undefined] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3134), + [anon_sym_set] = ACTIONS(3134), + [anon_sym_declare] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_module] = ACTIONS(3134), + [anon_sym_any] = ACTIONS(3134), + [anon_sym_number] = ACTIONS(3134), + [anon_sym_boolean] = ACTIONS(3134), + [anon_sym_string] = ACTIONS(3134), + [anon_sym_symbol] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), }, [1075] = { - [ts_builtin_sym_end] = ACTIONS(3142), - [sym_identifier] = ACTIONS(3144), - [anon_sym_export] = ACTIONS(3144), - [anon_sym_default] = ACTIONS(3144), - [anon_sym_type] = ACTIONS(3144), - [anon_sym_namespace] = ACTIONS(3144), - [anon_sym_LBRACE] = ACTIONS(3142), - [anon_sym_RBRACE] = ACTIONS(3142), - [anon_sym_typeof] = ACTIONS(3144), - [anon_sym_import] = ACTIONS(3144), - [anon_sym_var] = ACTIONS(3144), - [anon_sym_let] = ACTIONS(3144), - [anon_sym_const] = ACTIONS(3144), - [anon_sym_BANG] = ACTIONS(3142), - [anon_sym_else] = ACTIONS(3144), - [anon_sym_if] = ACTIONS(3144), - [anon_sym_switch] = ACTIONS(3144), - [anon_sym_for] = ACTIONS(3144), - [anon_sym_LPAREN] = ACTIONS(3142), - [anon_sym_await] = ACTIONS(3144), - [anon_sym_while] = ACTIONS(3144), - [anon_sym_do] = ACTIONS(3144), - [anon_sym_try] = ACTIONS(3144), - [anon_sym_with] = ACTIONS(3144), - [anon_sym_break] = ACTIONS(3144), - [anon_sym_continue] = ACTIONS(3144), - [anon_sym_debugger] = ACTIONS(3144), - [anon_sym_return] = ACTIONS(3144), - [anon_sym_throw] = ACTIONS(3144), - [anon_sym_SEMI] = ACTIONS(3142), - [anon_sym_case] = ACTIONS(3144), - [anon_sym_yield] = ACTIONS(3144), - [anon_sym_LBRACK] = ACTIONS(3142), - [anon_sym_LT] = ACTIONS(3142), - [anon_sym_SLASH] = ACTIONS(3144), - [anon_sym_class] = ACTIONS(3144), - [anon_sym_async] = ACTIONS(3144), - [anon_sym_function] = ACTIONS(3144), - [anon_sym_new] = ACTIONS(3144), - [anon_sym_PLUS] = ACTIONS(3144), - [anon_sym_DASH] = ACTIONS(3144), - [anon_sym_TILDE] = ACTIONS(3142), - [anon_sym_void] = ACTIONS(3144), - [anon_sym_delete] = ACTIONS(3144), - [anon_sym_PLUS_PLUS] = ACTIONS(3142), - [anon_sym_DASH_DASH] = ACTIONS(3142), - [anon_sym_DQUOTE] = ACTIONS(3142), - [anon_sym_SQUOTE] = ACTIONS(3142), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3142), - [sym_number] = ACTIONS(3142), - [sym_this] = ACTIONS(3144), - [sym_super] = ACTIONS(3144), - [sym_true] = ACTIONS(3144), - [sym_false] = ACTIONS(3144), - [sym_null] = ACTIONS(3144), - [sym_undefined] = ACTIONS(3144), - [anon_sym_AT] = ACTIONS(3142), - [anon_sym_static] = ACTIONS(3144), - [anon_sym_readonly] = ACTIONS(3144), - [anon_sym_get] = ACTIONS(3144), - [anon_sym_set] = ACTIONS(3144), - [anon_sym_declare] = ACTIONS(3144), - [anon_sym_public] = ACTIONS(3144), - [anon_sym_private] = ACTIONS(3144), - [anon_sym_protected] = ACTIONS(3144), - [anon_sym_module] = ACTIONS(3144), - [anon_sym_any] = ACTIONS(3144), - [anon_sym_number] = ACTIONS(3144), - [anon_sym_boolean] = ACTIONS(3144), - [anon_sym_string] = ACTIONS(3144), - [anon_sym_symbol] = ACTIONS(3144), - [anon_sym_abstract] = ACTIONS(3144), - [anon_sym_interface] = ACTIONS(3144), - [anon_sym_enum] = ACTIONS(3144), + [ts_builtin_sym_end] = ACTIONS(3136), + [sym_identifier] = ACTIONS(3138), + [anon_sym_export] = ACTIONS(3138), + [anon_sym_default] = ACTIONS(3138), + [anon_sym_type] = ACTIONS(3138), + [anon_sym_namespace] = ACTIONS(3138), + [anon_sym_LBRACE] = ACTIONS(3136), + [anon_sym_RBRACE] = ACTIONS(3136), + [anon_sym_typeof] = ACTIONS(3138), + [anon_sym_import] = ACTIONS(3138), + [anon_sym_var] = ACTIONS(3138), + [anon_sym_let] = ACTIONS(3138), + [anon_sym_const] = ACTIONS(3138), + [anon_sym_BANG] = ACTIONS(3136), + [anon_sym_else] = ACTIONS(3138), + [anon_sym_if] = ACTIONS(3138), + [anon_sym_switch] = ACTIONS(3138), + [anon_sym_for] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3136), + [anon_sym_await] = ACTIONS(3138), + [anon_sym_while] = ACTIONS(3138), + [anon_sym_do] = ACTIONS(3138), + [anon_sym_try] = ACTIONS(3138), + [anon_sym_with] = ACTIONS(3138), + [anon_sym_break] = ACTIONS(3138), + [anon_sym_continue] = ACTIONS(3138), + [anon_sym_debugger] = ACTIONS(3138), + [anon_sym_return] = ACTIONS(3138), + [anon_sym_throw] = ACTIONS(3138), + [anon_sym_SEMI] = ACTIONS(3136), + [anon_sym_case] = ACTIONS(3138), + [anon_sym_yield] = ACTIONS(3138), + [anon_sym_LBRACK] = ACTIONS(3136), + [anon_sym_LT] = ACTIONS(3136), + [anon_sym_SLASH] = ACTIONS(3138), + [anon_sym_class] = ACTIONS(3138), + [anon_sym_async] = ACTIONS(3138), + [anon_sym_function] = ACTIONS(3138), + [anon_sym_new] = ACTIONS(3138), + [anon_sym_PLUS] = ACTIONS(3138), + [anon_sym_DASH] = ACTIONS(3138), + [anon_sym_TILDE] = ACTIONS(3136), + [anon_sym_void] = ACTIONS(3138), + [anon_sym_delete] = ACTIONS(3138), + [anon_sym_PLUS_PLUS] = ACTIONS(3136), + [anon_sym_DASH_DASH] = ACTIONS(3136), + [anon_sym_DQUOTE] = ACTIONS(3136), + [anon_sym_SQUOTE] = ACTIONS(3136), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3136), + [sym_number] = ACTIONS(3136), + [sym_this] = ACTIONS(3138), + [sym_super] = ACTIONS(3138), + [sym_true] = ACTIONS(3138), + [sym_false] = ACTIONS(3138), + [sym_null] = ACTIONS(3138), + [sym_undefined] = ACTIONS(3138), + [anon_sym_AT] = ACTIONS(3136), + [anon_sym_static] = ACTIONS(3138), + [anon_sym_readonly] = ACTIONS(3138), + [anon_sym_get] = ACTIONS(3138), + [anon_sym_set] = ACTIONS(3138), + [anon_sym_declare] = ACTIONS(3138), + [anon_sym_public] = ACTIONS(3138), + [anon_sym_private] = ACTIONS(3138), + [anon_sym_protected] = ACTIONS(3138), + [anon_sym_module] = ACTIONS(3138), + [anon_sym_any] = ACTIONS(3138), + [anon_sym_number] = ACTIONS(3138), + [anon_sym_boolean] = ACTIONS(3138), + [anon_sym_string] = ACTIONS(3138), + [anon_sym_symbol] = ACTIONS(3138), + [anon_sym_abstract] = ACTIONS(3138), + [anon_sym_interface] = ACTIONS(3138), + [anon_sym_enum] = ACTIONS(3138), }, [1076] = { - [ts_builtin_sym_end] = ACTIONS(3146), - [sym_identifier] = ACTIONS(3148), - [anon_sym_export] = ACTIONS(3148), - [anon_sym_default] = ACTIONS(3148), - [anon_sym_type] = ACTIONS(3148), - [anon_sym_namespace] = ACTIONS(3148), - [anon_sym_LBRACE] = ACTIONS(3146), - [anon_sym_RBRACE] = ACTIONS(3146), - [anon_sym_typeof] = ACTIONS(3148), - [anon_sym_import] = ACTIONS(3148), - [anon_sym_var] = ACTIONS(3148), - [anon_sym_let] = ACTIONS(3148), - [anon_sym_const] = ACTIONS(3148), - [anon_sym_BANG] = ACTIONS(3146), - [anon_sym_else] = ACTIONS(3148), - [anon_sym_if] = ACTIONS(3148), - [anon_sym_switch] = ACTIONS(3148), - [anon_sym_for] = ACTIONS(3148), - [anon_sym_LPAREN] = ACTIONS(3146), - [anon_sym_await] = ACTIONS(3148), - [anon_sym_while] = ACTIONS(3148), - [anon_sym_do] = ACTIONS(3148), - [anon_sym_try] = ACTIONS(3148), - [anon_sym_with] = ACTIONS(3148), - [anon_sym_break] = ACTIONS(3148), - [anon_sym_continue] = ACTIONS(3148), - [anon_sym_debugger] = ACTIONS(3148), - [anon_sym_return] = ACTIONS(3148), - [anon_sym_throw] = ACTIONS(3148), - [anon_sym_SEMI] = ACTIONS(3146), - [anon_sym_case] = ACTIONS(3148), - [anon_sym_yield] = ACTIONS(3148), - [anon_sym_LBRACK] = ACTIONS(3146), - [anon_sym_LT] = ACTIONS(3146), - [anon_sym_SLASH] = ACTIONS(3148), - [anon_sym_class] = ACTIONS(3148), - [anon_sym_async] = ACTIONS(3148), - [anon_sym_function] = ACTIONS(3148), - [anon_sym_new] = ACTIONS(3148), - [anon_sym_PLUS] = ACTIONS(3148), - [anon_sym_DASH] = ACTIONS(3148), - [anon_sym_TILDE] = ACTIONS(3146), - [anon_sym_void] = ACTIONS(3148), - [anon_sym_delete] = ACTIONS(3148), - [anon_sym_PLUS_PLUS] = ACTIONS(3146), - [anon_sym_DASH_DASH] = ACTIONS(3146), - [anon_sym_DQUOTE] = ACTIONS(3146), - [anon_sym_SQUOTE] = ACTIONS(3146), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3146), - [sym_number] = ACTIONS(3146), - [sym_this] = ACTIONS(3148), - [sym_super] = ACTIONS(3148), - [sym_true] = ACTIONS(3148), - [sym_false] = ACTIONS(3148), - [sym_null] = ACTIONS(3148), - [sym_undefined] = ACTIONS(3148), - [anon_sym_AT] = ACTIONS(3146), - [anon_sym_static] = ACTIONS(3148), - [anon_sym_readonly] = ACTIONS(3148), - [anon_sym_get] = ACTIONS(3148), - [anon_sym_set] = ACTIONS(3148), - [anon_sym_declare] = ACTIONS(3148), - [anon_sym_public] = ACTIONS(3148), - [anon_sym_private] = ACTIONS(3148), - [anon_sym_protected] = ACTIONS(3148), - [anon_sym_module] = ACTIONS(3148), - [anon_sym_any] = ACTIONS(3148), - [anon_sym_number] = ACTIONS(3148), - [anon_sym_boolean] = ACTIONS(3148), - [anon_sym_string] = ACTIONS(3148), - [anon_sym_symbol] = ACTIONS(3148), - [anon_sym_abstract] = ACTIONS(3148), - [anon_sym_interface] = ACTIONS(3148), - [anon_sym_enum] = ACTIONS(3148), + [ts_builtin_sym_end] = ACTIONS(3140), + [sym_identifier] = ACTIONS(3142), + [anon_sym_export] = ACTIONS(3142), + [anon_sym_default] = ACTIONS(3142), + [anon_sym_type] = ACTIONS(3142), + [anon_sym_namespace] = ACTIONS(3142), + [anon_sym_LBRACE] = ACTIONS(3140), + [anon_sym_RBRACE] = ACTIONS(3140), + [anon_sym_typeof] = ACTIONS(3142), + [anon_sym_import] = ACTIONS(3142), + [anon_sym_var] = ACTIONS(3142), + [anon_sym_let] = ACTIONS(3142), + [anon_sym_const] = ACTIONS(3142), + [anon_sym_BANG] = ACTIONS(3140), + [anon_sym_else] = ACTIONS(3142), + [anon_sym_if] = ACTIONS(3142), + [anon_sym_switch] = ACTIONS(3142), + [anon_sym_for] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3140), + [anon_sym_await] = ACTIONS(3142), + [anon_sym_while] = ACTIONS(3142), + [anon_sym_do] = ACTIONS(3142), + [anon_sym_try] = ACTIONS(3142), + [anon_sym_with] = ACTIONS(3142), + [anon_sym_break] = ACTIONS(3142), + [anon_sym_continue] = ACTIONS(3142), + [anon_sym_debugger] = ACTIONS(3142), + [anon_sym_return] = ACTIONS(3142), + [anon_sym_throw] = ACTIONS(3142), + [anon_sym_SEMI] = ACTIONS(3140), + [anon_sym_case] = ACTIONS(3142), + [anon_sym_yield] = ACTIONS(3142), + [anon_sym_LBRACK] = ACTIONS(3140), + [anon_sym_LT] = ACTIONS(3140), + [anon_sym_SLASH] = ACTIONS(3142), + [anon_sym_class] = ACTIONS(3142), + [anon_sym_async] = ACTIONS(3142), + [anon_sym_function] = ACTIONS(3142), + [anon_sym_new] = ACTIONS(3142), + [anon_sym_PLUS] = ACTIONS(3142), + [anon_sym_DASH] = ACTIONS(3142), + [anon_sym_TILDE] = ACTIONS(3140), + [anon_sym_void] = ACTIONS(3142), + [anon_sym_delete] = ACTIONS(3142), + [anon_sym_PLUS_PLUS] = ACTIONS(3140), + [anon_sym_DASH_DASH] = ACTIONS(3140), + [anon_sym_DQUOTE] = ACTIONS(3140), + [anon_sym_SQUOTE] = ACTIONS(3140), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3140), + [sym_number] = ACTIONS(3140), + [sym_this] = ACTIONS(3142), + [sym_super] = ACTIONS(3142), + [sym_true] = ACTIONS(3142), + [sym_false] = ACTIONS(3142), + [sym_null] = ACTIONS(3142), + [sym_undefined] = ACTIONS(3142), + [anon_sym_AT] = ACTIONS(3140), + [anon_sym_static] = ACTIONS(3142), + [anon_sym_readonly] = ACTIONS(3142), + [anon_sym_get] = ACTIONS(3142), + [anon_sym_set] = ACTIONS(3142), + [anon_sym_declare] = ACTIONS(3142), + [anon_sym_public] = ACTIONS(3142), + [anon_sym_private] = ACTIONS(3142), + [anon_sym_protected] = ACTIONS(3142), + [anon_sym_module] = ACTIONS(3142), + [anon_sym_any] = ACTIONS(3142), + [anon_sym_number] = ACTIONS(3142), + [anon_sym_boolean] = ACTIONS(3142), + [anon_sym_string] = ACTIONS(3142), + [anon_sym_symbol] = ACTIONS(3142), + [anon_sym_abstract] = ACTIONS(3142), + [anon_sym_interface] = ACTIONS(3142), + [anon_sym_enum] = ACTIONS(3142), }, [1077] = { - [ts_builtin_sym_end] = ACTIONS(3150), - [sym_identifier] = ACTIONS(3152), - [anon_sym_export] = ACTIONS(3152), - [anon_sym_default] = ACTIONS(3152), - [anon_sym_type] = ACTIONS(3152), - [anon_sym_namespace] = ACTIONS(3152), - [anon_sym_LBRACE] = ACTIONS(3150), - [anon_sym_RBRACE] = ACTIONS(3150), - [anon_sym_typeof] = ACTIONS(3152), - [anon_sym_import] = ACTIONS(3152), - [anon_sym_var] = ACTIONS(3152), - [anon_sym_let] = ACTIONS(3152), - [anon_sym_const] = ACTIONS(3152), - [anon_sym_BANG] = ACTIONS(3150), - [anon_sym_else] = ACTIONS(3152), - [anon_sym_if] = ACTIONS(3152), - [anon_sym_switch] = ACTIONS(3152), - [anon_sym_for] = ACTIONS(3152), - [anon_sym_LPAREN] = ACTIONS(3150), - [anon_sym_await] = ACTIONS(3152), - [anon_sym_while] = ACTIONS(3152), - [anon_sym_do] = ACTIONS(3152), - [anon_sym_try] = ACTIONS(3152), - [anon_sym_with] = ACTIONS(3152), - [anon_sym_break] = ACTIONS(3152), - [anon_sym_continue] = ACTIONS(3152), - [anon_sym_debugger] = ACTIONS(3152), - [anon_sym_return] = ACTIONS(3152), - [anon_sym_throw] = ACTIONS(3152), - [anon_sym_SEMI] = ACTIONS(3150), - [anon_sym_case] = ACTIONS(3152), - [anon_sym_yield] = ACTIONS(3152), - [anon_sym_LBRACK] = ACTIONS(3150), - [anon_sym_LT] = ACTIONS(3150), - [anon_sym_SLASH] = ACTIONS(3152), - [anon_sym_class] = ACTIONS(3152), - [anon_sym_async] = ACTIONS(3152), - [anon_sym_function] = ACTIONS(3152), - [anon_sym_new] = ACTIONS(3152), - [anon_sym_PLUS] = ACTIONS(3152), - [anon_sym_DASH] = ACTIONS(3152), - [anon_sym_TILDE] = ACTIONS(3150), - [anon_sym_void] = ACTIONS(3152), - [anon_sym_delete] = ACTIONS(3152), - [anon_sym_PLUS_PLUS] = ACTIONS(3150), - [anon_sym_DASH_DASH] = ACTIONS(3150), - [anon_sym_DQUOTE] = ACTIONS(3150), - [anon_sym_SQUOTE] = ACTIONS(3150), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3150), - [sym_number] = ACTIONS(3150), - [sym_this] = ACTIONS(3152), - [sym_super] = ACTIONS(3152), - [sym_true] = ACTIONS(3152), - [sym_false] = ACTIONS(3152), - [sym_null] = ACTIONS(3152), - [sym_undefined] = ACTIONS(3152), - [anon_sym_AT] = ACTIONS(3150), - [anon_sym_static] = ACTIONS(3152), - [anon_sym_readonly] = ACTIONS(3152), - [anon_sym_get] = ACTIONS(3152), - [anon_sym_set] = ACTIONS(3152), - [anon_sym_declare] = ACTIONS(3152), - [anon_sym_public] = ACTIONS(3152), - [anon_sym_private] = ACTIONS(3152), - [anon_sym_protected] = ACTIONS(3152), - [anon_sym_module] = ACTIONS(3152), - [anon_sym_any] = ACTIONS(3152), - [anon_sym_number] = ACTIONS(3152), - [anon_sym_boolean] = ACTIONS(3152), - [anon_sym_string] = ACTIONS(3152), - [anon_sym_symbol] = ACTIONS(3152), - [anon_sym_abstract] = ACTIONS(3152), - [anon_sym_interface] = ACTIONS(3152), - [anon_sym_enum] = ACTIONS(3152), + [ts_builtin_sym_end] = ACTIONS(3144), + [sym_identifier] = ACTIONS(3146), + [anon_sym_export] = ACTIONS(3146), + [anon_sym_default] = ACTIONS(3146), + [anon_sym_type] = ACTIONS(3146), + [anon_sym_namespace] = ACTIONS(3146), + [anon_sym_LBRACE] = ACTIONS(3144), + [anon_sym_RBRACE] = ACTIONS(3144), + [anon_sym_typeof] = ACTIONS(3146), + [anon_sym_import] = ACTIONS(3146), + [anon_sym_var] = ACTIONS(3146), + [anon_sym_let] = ACTIONS(3146), + [anon_sym_const] = ACTIONS(3146), + [anon_sym_BANG] = ACTIONS(3144), + [anon_sym_else] = ACTIONS(3146), + [anon_sym_if] = ACTIONS(3146), + [anon_sym_switch] = ACTIONS(3146), + [anon_sym_for] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3144), + [anon_sym_await] = ACTIONS(3146), + [anon_sym_while] = ACTIONS(3146), + [anon_sym_do] = ACTIONS(3146), + [anon_sym_try] = ACTIONS(3146), + [anon_sym_with] = ACTIONS(3146), + [anon_sym_break] = ACTIONS(3146), + [anon_sym_continue] = ACTIONS(3146), + [anon_sym_debugger] = ACTIONS(3146), + [anon_sym_return] = ACTIONS(3146), + [anon_sym_throw] = ACTIONS(3146), + [anon_sym_SEMI] = ACTIONS(3144), + [anon_sym_case] = ACTIONS(3146), + [anon_sym_yield] = ACTIONS(3146), + [anon_sym_LBRACK] = ACTIONS(3144), + [anon_sym_LT] = ACTIONS(3144), + [anon_sym_SLASH] = ACTIONS(3146), + [anon_sym_class] = ACTIONS(3146), + [anon_sym_async] = ACTIONS(3146), + [anon_sym_function] = ACTIONS(3146), + [anon_sym_new] = ACTIONS(3146), + [anon_sym_PLUS] = ACTIONS(3146), + [anon_sym_DASH] = ACTIONS(3146), + [anon_sym_TILDE] = ACTIONS(3144), + [anon_sym_void] = ACTIONS(3146), + [anon_sym_delete] = ACTIONS(3146), + [anon_sym_PLUS_PLUS] = ACTIONS(3144), + [anon_sym_DASH_DASH] = ACTIONS(3144), + [anon_sym_DQUOTE] = ACTIONS(3144), + [anon_sym_SQUOTE] = ACTIONS(3144), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3144), + [sym_number] = ACTIONS(3144), + [sym_this] = ACTIONS(3146), + [sym_super] = ACTIONS(3146), + [sym_true] = ACTIONS(3146), + [sym_false] = ACTIONS(3146), + [sym_null] = ACTIONS(3146), + [sym_undefined] = ACTIONS(3146), + [anon_sym_AT] = ACTIONS(3144), + [anon_sym_static] = ACTIONS(3146), + [anon_sym_readonly] = ACTIONS(3146), + [anon_sym_get] = ACTIONS(3146), + [anon_sym_set] = ACTIONS(3146), + [anon_sym_declare] = ACTIONS(3146), + [anon_sym_public] = ACTIONS(3146), + [anon_sym_private] = ACTIONS(3146), + [anon_sym_protected] = ACTIONS(3146), + [anon_sym_module] = ACTIONS(3146), + [anon_sym_any] = ACTIONS(3146), + [anon_sym_number] = ACTIONS(3146), + [anon_sym_boolean] = ACTIONS(3146), + [anon_sym_string] = ACTIONS(3146), + [anon_sym_symbol] = ACTIONS(3146), + [anon_sym_abstract] = ACTIONS(3146), + [anon_sym_interface] = ACTIONS(3146), + [anon_sym_enum] = ACTIONS(3146), }, [1078] = { - [ts_builtin_sym_end] = ACTIONS(3154), - [sym_identifier] = ACTIONS(3156), - [anon_sym_export] = ACTIONS(3156), - [anon_sym_default] = ACTIONS(3156), - [anon_sym_type] = ACTIONS(3156), - [anon_sym_namespace] = ACTIONS(3156), - [anon_sym_LBRACE] = ACTIONS(3154), - [anon_sym_RBRACE] = ACTIONS(3154), - [anon_sym_typeof] = ACTIONS(3156), - [anon_sym_import] = ACTIONS(3156), - [anon_sym_var] = ACTIONS(3156), - [anon_sym_let] = ACTIONS(3156), - [anon_sym_const] = ACTIONS(3156), - [anon_sym_BANG] = ACTIONS(3154), - [anon_sym_else] = ACTIONS(3156), - [anon_sym_if] = ACTIONS(3156), - [anon_sym_switch] = ACTIONS(3156), - [anon_sym_for] = ACTIONS(3156), - [anon_sym_LPAREN] = ACTIONS(3154), - [anon_sym_await] = ACTIONS(3156), - [anon_sym_while] = ACTIONS(3156), - [anon_sym_do] = ACTIONS(3156), - [anon_sym_try] = ACTIONS(3156), - [anon_sym_with] = ACTIONS(3156), - [anon_sym_break] = ACTIONS(3156), - [anon_sym_continue] = ACTIONS(3156), - [anon_sym_debugger] = ACTIONS(3156), - [anon_sym_return] = ACTIONS(3156), - [anon_sym_throw] = ACTIONS(3156), - [anon_sym_SEMI] = ACTIONS(3154), - [anon_sym_case] = ACTIONS(3156), - [anon_sym_yield] = ACTIONS(3156), - [anon_sym_LBRACK] = ACTIONS(3154), - [anon_sym_LT] = ACTIONS(3154), - [anon_sym_SLASH] = ACTIONS(3156), - [anon_sym_class] = ACTIONS(3156), - [anon_sym_async] = ACTIONS(3156), - [anon_sym_function] = ACTIONS(3156), - [anon_sym_new] = ACTIONS(3156), - [anon_sym_PLUS] = ACTIONS(3156), - [anon_sym_DASH] = ACTIONS(3156), - [anon_sym_TILDE] = ACTIONS(3154), - [anon_sym_void] = ACTIONS(3156), - [anon_sym_delete] = ACTIONS(3156), - [anon_sym_PLUS_PLUS] = ACTIONS(3154), - [anon_sym_DASH_DASH] = ACTIONS(3154), - [anon_sym_DQUOTE] = ACTIONS(3154), - [anon_sym_SQUOTE] = ACTIONS(3154), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3154), - [sym_number] = ACTIONS(3154), - [sym_this] = ACTIONS(3156), - [sym_super] = ACTIONS(3156), - [sym_true] = ACTIONS(3156), - [sym_false] = ACTIONS(3156), - [sym_null] = ACTIONS(3156), - [sym_undefined] = ACTIONS(3156), - [anon_sym_AT] = ACTIONS(3154), - [anon_sym_static] = ACTIONS(3156), - [anon_sym_readonly] = ACTIONS(3156), - [anon_sym_get] = ACTIONS(3156), - [anon_sym_set] = ACTIONS(3156), - [anon_sym_declare] = ACTIONS(3156), - [anon_sym_public] = ACTIONS(3156), - [anon_sym_private] = ACTIONS(3156), - [anon_sym_protected] = ACTIONS(3156), - [anon_sym_module] = ACTIONS(3156), - [anon_sym_any] = ACTIONS(3156), - [anon_sym_number] = ACTIONS(3156), - [anon_sym_boolean] = ACTIONS(3156), - [anon_sym_string] = ACTIONS(3156), - [anon_sym_symbol] = ACTIONS(3156), - [anon_sym_abstract] = ACTIONS(3156), - [anon_sym_interface] = ACTIONS(3156), - [anon_sym_enum] = ACTIONS(3156), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1079] = { - [ts_builtin_sym_end] = ACTIONS(3158), - [sym_identifier] = ACTIONS(3160), - [anon_sym_export] = ACTIONS(3160), - [anon_sym_default] = ACTIONS(3160), - [anon_sym_type] = ACTIONS(3160), - [anon_sym_namespace] = ACTIONS(3160), - [anon_sym_LBRACE] = ACTIONS(3158), - [anon_sym_RBRACE] = ACTIONS(3158), - [anon_sym_typeof] = ACTIONS(3160), - [anon_sym_import] = ACTIONS(3160), - [anon_sym_var] = ACTIONS(3160), - [anon_sym_let] = ACTIONS(3160), - [anon_sym_const] = ACTIONS(3160), - [anon_sym_BANG] = ACTIONS(3158), - [anon_sym_else] = ACTIONS(3160), - [anon_sym_if] = ACTIONS(3160), - [anon_sym_switch] = ACTIONS(3160), - [anon_sym_for] = ACTIONS(3160), - [anon_sym_LPAREN] = ACTIONS(3158), - [anon_sym_await] = ACTIONS(3160), - [anon_sym_while] = ACTIONS(3160), - [anon_sym_do] = ACTIONS(3160), - [anon_sym_try] = ACTIONS(3160), - [anon_sym_with] = ACTIONS(3160), - [anon_sym_break] = ACTIONS(3160), - [anon_sym_continue] = ACTIONS(3160), - [anon_sym_debugger] = ACTIONS(3160), - [anon_sym_return] = ACTIONS(3160), - [anon_sym_throw] = ACTIONS(3160), - [anon_sym_SEMI] = ACTIONS(3158), - [anon_sym_case] = ACTIONS(3160), - [anon_sym_yield] = ACTIONS(3160), - [anon_sym_LBRACK] = ACTIONS(3158), - [anon_sym_LT] = ACTIONS(3158), - [anon_sym_SLASH] = ACTIONS(3160), - [anon_sym_class] = ACTIONS(3160), - [anon_sym_async] = ACTIONS(3160), - [anon_sym_function] = ACTIONS(3160), - [anon_sym_new] = ACTIONS(3160), - [anon_sym_PLUS] = ACTIONS(3160), - [anon_sym_DASH] = ACTIONS(3160), - [anon_sym_TILDE] = ACTIONS(3158), - [anon_sym_void] = ACTIONS(3160), - [anon_sym_delete] = ACTIONS(3160), - [anon_sym_PLUS_PLUS] = ACTIONS(3158), - [anon_sym_DASH_DASH] = ACTIONS(3158), - [anon_sym_DQUOTE] = ACTIONS(3158), - [anon_sym_SQUOTE] = ACTIONS(3158), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3158), - [sym_number] = ACTIONS(3158), - [sym_this] = ACTIONS(3160), - [sym_super] = ACTIONS(3160), - [sym_true] = ACTIONS(3160), - [sym_false] = ACTIONS(3160), - [sym_null] = ACTIONS(3160), - [sym_undefined] = ACTIONS(3160), - [anon_sym_AT] = ACTIONS(3158), - [anon_sym_static] = ACTIONS(3160), - [anon_sym_readonly] = ACTIONS(3160), - [anon_sym_get] = ACTIONS(3160), - [anon_sym_set] = ACTIONS(3160), - [anon_sym_declare] = ACTIONS(3160), - [anon_sym_public] = ACTIONS(3160), - [anon_sym_private] = ACTIONS(3160), - [anon_sym_protected] = ACTIONS(3160), - [anon_sym_module] = ACTIONS(3160), - [anon_sym_any] = ACTIONS(3160), - [anon_sym_number] = ACTIONS(3160), - [anon_sym_boolean] = ACTIONS(3160), - [anon_sym_string] = ACTIONS(3160), - [anon_sym_symbol] = ACTIONS(3160), - [anon_sym_abstract] = ACTIONS(3160), - [anon_sym_interface] = ACTIONS(3160), - [anon_sym_enum] = ACTIONS(3160), + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_type] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [anon_sym_let] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_debugger] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_async] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_this] = ACTIONS(3134), + [sym_super] = ACTIONS(3134), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_undefined] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3134), + [anon_sym_set] = ACTIONS(3134), + [anon_sym_declare] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_module] = ACTIONS(3134), + [anon_sym_any] = ACTIONS(3134), + [anon_sym_number] = ACTIONS(3134), + [anon_sym_boolean] = ACTIONS(3134), + [anon_sym_string] = ACTIONS(3134), + [anon_sym_symbol] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), }, [1080] = { - [ts_builtin_sym_end] = ACTIONS(3162), - [sym_identifier] = ACTIONS(3164), - [anon_sym_export] = ACTIONS(3164), - [anon_sym_default] = ACTIONS(3164), - [anon_sym_type] = ACTIONS(3164), - [anon_sym_namespace] = ACTIONS(3164), - [anon_sym_LBRACE] = ACTIONS(3162), - [anon_sym_RBRACE] = ACTIONS(3162), - [anon_sym_typeof] = ACTIONS(3164), - [anon_sym_import] = ACTIONS(3164), - [anon_sym_var] = ACTIONS(3164), - [anon_sym_let] = ACTIONS(3164), - [anon_sym_const] = ACTIONS(3164), - [anon_sym_BANG] = ACTIONS(3162), - [anon_sym_else] = ACTIONS(3164), - [anon_sym_if] = ACTIONS(3164), - [anon_sym_switch] = ACTIONS(3164), - [anon_sym_for] = ACTIONS(3164), - [anon_sym_LPAREN] = ACTIONS(3162), - [anon_sym_await] = ACTIONS(3164), - [anon_sym_while] = ACTIONS(3164), - [anon_sym_do] = ACTIONS(3164), - [anon_sym_try] = ACTIONS(3164), - [anon_sym_with] = ACTIONS(3164), - [anon_sym_break] = ACTIONS(3164), - [anon_sym_continue] = ACTIONS(3164), - [anon_sym_debugger] = ACTIONS(3164), - [anon_sym_return] = ACTIONS(3164), - [anon_sym_throw] = ACTIONS(3164), - [anon_sym_SEMI] = ACTIONS(3162), - [anon_sym_case] = ACTIONS(3164), - [anon_sym_yield] = ACTIONS(3164), - [anon_sym_LBRACK] = ACTIONS(3162), - [anon_sym_LT] = ACTIONS(3162), - [anon_sym_SLASH] = ACTIONS(3164), - [anon_sym_class] = ACTIONS(3164), - [anon_sym_async] = ACTIONS(3164), - [anon_sym_function] = ACTIONS(3164), - [anon_sym_new] = ACTIONS(3164), - [anon_sym_PLUS] = ACTIONS(3164), - [anon_sym_DASH] = ACTIONS(3164), - [anon_sym_TILDE] = ACTIONS(3162), - [anon_sym_void] = ACTIONS(3164), - [anon_sym_delete] = ACTIONS(3164), - [anon_sym_PLUS_PLUS] = ACTIONS(3162), - [anon_sym_DASH_DASH] = ACTIONS(3162), - [anon_sym_DQUOTE] = ACTIONS(3162), - [anon_sym_SQUOTE] = ACTIONS(3162), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3162), - [sym_number] = ACTIONS(3162), - [sym_this] = ACTIONS(3164), - [sym_super] = ACTIONS(3164), - [sym_true] = ACTIONS(3164), - [sym_false] = ACTIONS(3164), - [sym_null] = ACTIONS(3164), - [sym_undefined] = ACTIONS(3164), - [anon_sym_AT] = ACTIONS(3162), - [anon_sym_static] = ACTIONS(3164), - [anon_sym_readonly] = ACTIONS(3164), - [anon_sym_get] = ACTIONS(3164), - [anon_sym_set] = ACTIONS(3164), - [anon_sym_declare] = ACTIONS(3164), - [anon_sym_public] = ACTIONS(3164), - [anon_sym_private] = ACTIONS(3164), - [anon_sym_protected] = ACTIONS(3164), - [anon_sym_module] = ACTIONS(3164), - [anon_sym_any] = ACTIONS(3164), - [anon_sym_number] = ACTIONS(3164), - [anon_sym_boolean] = ACTIONS(3164), - [anon_sym_string] = ACTIONS(3164), - [anon_sym_symbol] = ACTIONS(3164), - [anon_sym_abstract] = ACTIONS(3164), - [anon_sym_interface] = ACTIONS(3164), - [anon_sym_enum] = ACTIONS(3164), + [ts_builtin_sym_end] = ACTIONS(3152), + [sym_identifier] = ACTIONS(3154), + [anon_sym_export] = ACTIONS(3154), + [anon_sym_default] = ACTIONS(3154), + [anon_sym_type] = ACTIONS(3154), + [anon_sym_namespace] = ACTIONS(3154), + [anon_sym_LBRACE] = ACTIONS(3152), + [anon_sym_RBRACE] = ACTIONS(3152), + [anon_sym_typeof] = ACTIONS(3154), + [anon_sym_import] = ACTIONS(3154), + [anon_sym_var] = ACTIONS(3154), + [anon_sym_let] = ACTIONS(3154), + [anon_sym_const] = ACTIONS(3154), + [anon_sym_BANG] = ACTIONS(3152), + [anon_sym_else] = ACTIONS(3154), + [anon_sym_if] = ACTIONS(3154), + [anon_sym_switch] = ACTIONS(3154), + [anon_sym_for] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3152), + [anon_sym_await] = ACTIONS(3154), + [anon_sym_while] = ACTIONS(3154), + [anon_sym_do] = ACTIONS(3154), + [anon_sym_try] = ACTIONS(3154), + [anon_sym_with] = ACTIONS(3154), + [anon_sym_break] = ACTIONS(3154), + [anon_sym_continue] = ACTIONS(3154), + [anon_sym_debugger] = ACTIONS(3154), + [anon_sym_return] = ACTIONS(3154), + [anon_sym_throw] = ACTIONS(3154), + [anon_sym_SEMI] = ACTIONS(3152), + [anon_sym_case] = ACTIONS(3154), + [anon_sym_yield] = ACTIONS(3154), + [anon_sym_LBRACK] = ACTIONS(3152), + [anon_sym_LT] = ACTIONS(3152), + [anon_sym_SLASH] = ACTIONS(3154), + [anon_sym_class] = ACTIONS(3154), + [anon_sym_async] = ACTIONS(3154), + [anon_sym_function] = ACTIONS(3154), + [anon_sym_new] = ACTIONS(3154), + [anon_sym_PLUS] = ACTIONS(3154), + [anon_sym_DASH] = ACTIONS(3154), + [anon_sym_TILDE] = ACTIONS(3152), + [anon_sym_void] = ACTIONS(3154), + [anon_sym_delete] = ACTIONS(3154), + [anon_sym_PLUS_PLUS] = ACTIONS(3152), + [anon_sym_DASH_DASH] = ACTIONS(3152), + [anon_sym_DQUOTE] = ACTIONS(3152), + [anon_sym_SQUOTE] = ACTIONS(3152), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3152), + [sym_number] = ACTIONS(3152), + [sym_this] = ACTIONS(3154), + [sym_super] = ACTIONS(3154), + [sym_true] = ACTIONS(3154), + [sym_false] = ACTIONS(3154), + [sym_null] = ACTIONS(3154), + [sym_undefined] = ACTIONS(3154), + [anon_sym_AT] = ACTIONS(3152), + [anon_sym_static] = ACTIONS(3154), + [anon_sym_readonly] = ACTIONS(3154), + [anon_sym_get] = ACTIONS(3154), + [anon_sym_set] = ACTIONS(3154), + [anon_sym_declare] = ACTIONS(3154), + [anon_sym_public] = ACTIONS(3154), + [anon_sym_private] = ACTIONS(3154), + [anon_sym_protected] = ACTIONS(3154), + [anon_sym_module] = ACTIONS(3154), + [anon_sym_any] = ACTIONS(3154), + [anon_sym_number] = ACTIONS(3154), + [anon_sym_boolean] = ACTIONS(3154), + [anon_sym_string] = ACTIONS(3154), + [anon_sym_symbol] = ACTIONS(3154), + [anon_sym_abstract] = ACTIONS(3154), + [anon_sym_interface] = ACTIONS(3154), + [anon_sym_enum] = ACTIONS(3154), }, [1081] = { - [ts_builtin_sym_end] = ACTIONS(3166), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [ts_builtin_sym_end] = ACTIONS(3156), + [sym_identifier] = ACTIONS(3158), + [anon_sym_export] = ACTIONS(3158), + [anon_sym_default] = ACTIONS(3158), + [anon_sym_type] = ACTIONS(3158), + [anon_sym_namespace] = ACTIONS(3158), + [anon_sym_LBRACE] = ACTIONS(3156), + [anon_sym_RBRACE] = ACTIONS(3156), + [anon_sym_typeof] = ACTIONS(3158), + [anon_sym_import] = ACTIONS(3158), + [anon_sym_var] = ACTIONS(3158), + [anon_sym_let] = ACTIONS(3158), + [anon_sym_const] = ACTIONS(3158), + [anon_sym_BANG] = ACTIONS(3156), + [anon_sym_else] = ACTIONS(3158), + [anon_sym_if] = ACTIONS(3158), + [anon_sym_switch] = ACTIONS(3158), + [anon_sym_for] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3156), + [anon_sym_await] = ACTIONS(3158), + [anon_sym_while] = ACTIONS(3158), + [anon_sym_do] = ACTIONS(3158), + [anon_sym_try] = ACTIONS(3158), + [anon_sym_with] = ACTIONS(3158), + [anon_sym_break] = ACTIONS(3158), + [anon_sym_continue] = ACTIONS(3158), + [anon_sym_debugger] = ACTIONS(3158), + [anon_sym_return] = ACTIONS(3158), + [anon_sym_throw] = ACTIONS(3158), + [anon_sym_SEMI] = ACTIONS(3156), + [anon_sym_case] = ACTIONS(3158), + [anon_sym_yield] = ACTIONS(3158), + [anon_sym_LBRACK] = ACTIONS(3156), + [anon_sym_LT] = ACTIONS(3156), + [anon_sym_SLASH] = ACTIONS(3158), + [anon_sym_class] = ACTIONS(3158), + [anon_sym_async] = ACTIONS(3158), + [anon_sym_function] = ACTIONS(3158), + [anon_sym_new] = ACTIONS(3158), + [anon_sym_PLUS] = ACTIONS(3158), + [anon_sym_DASH] = ACTIONS(3158), + [anon_sym_TILDE] = ACTIONS(3156), + [anon_sym_void] = ACTIONS(3158), + [anon_sym_delete] = ACTIONS(3158), + [anon_sym_PLUS_PLUS] = ACTIONS(3156), + [anon_sym_DASH_DASH] = ACTIONS(3156), + [anon_sym_DQUOTE] = ACTIONS(3156), + [anon_sym_SQUOTE] = ACTIONS(3156), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3156), + [sym_number] = ACTIONS(3156), + [sym_this] = ACTIONS(3158), + [sym_super] = ACTIONS(3158), + [sym_true] = ACTIONS(3158), + [sym_false] = ACTIONS(3158), + [sym_null] = ACTIONS(3158), + [sym_undefined] = ACTIONS(3158), + [anon_sym_AT] = ACTIONS(3156), + [anon_sym_static] = ACTIONS(3158), + [anon_sym_readonly] = ACTIONS(3158), + [anon_sym_get] = ACTIONS(3158), + [anon_sym_set] = ACTIONS(3158), + [anon_sym_declare] = ACTIONS(3158), + [anon_sym_public] = ACTIONS(3158), + [anon_sym_private] = ACTIONS(3158), + [anon_sym_protected] = ACTIONS(3158), + [anon_sym_module] = ACTIONS(3158), + [anon_sym_any] = ACTIONS(3158), + [anon_sym_number] = ACTIONS(3158), + [anon_sym_boolean] = ACTIONS(3158), + [anon_sym_string] = ACTIONS(3158), + [anon_sym_symbol] = ACTIONS(3158), + [anon_sym_abstract] = ACTIONS(3158), + [anon_sym_interface] = ACTIONS(3158), + [anon_sym_enum] = ACTIONS(3158), }, [1082] = { - [ts_builtin_sym_end] = ACTIONS(3166), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [ts_builtin_sym_end] = ACTIONS(3160), + [sym_identifier] = ACTIONS(3162), + [anon_sym_export] = ACTIONS(3162), + [anon_sym_default] = ACTIONS(3162), + [anon_sym_type] = ACTIONS(3162), + [anon_sym_namespace] = ACTIONS(3162), + [anon_sym_LBRACE] = ACTIONS(3160), + [anon_sym_RBRACE] = ACTIONS(3160), + [anon_sym_typeof] = ACTIONS(3162), + [anon_sym_import] = ACTIONS(3162), + [anon_sym_var] = ACTIONS(3162), + [anon_sym_let] = ACTIONS(3162), + [anon_sym_const] = ACTIONS(3162), + [anon_sym_BANG] = ACTIONS(3160), + [anon_sym_else] = ACTIONS(3162), + [anon_sym_if] = ACTIONS(3162), + [anon_sym_switch] = ACTIONS(3162), + [anon_sym_for] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3160), + [anon_sym_await] = ACTIONS(3162), + [anon_sym_while] = ACTIONS(3162), + [anon_sym_do] = ACTIONS(3162), + [anon_sym_try] = ACTIONS(3162), + [anon_sym_with] = ACTIONS(3162), + [anon_sym_break] = ACTIONS(3162), + [anon_sym_continue] = ACTIONS(3162), + [anon_sym_debugger] = ACTIONS(3162), + [anon_sym_return] = ACTIONS(3162), + [anon_sym_throw] = ACTIONS(3162), + [anon_sym_SEMI] = ACTIONS(3160), + [anon_sym_case] = ACTIONS(3162), + [anon_sym_yield] = ACTIONS(3162), + [anon_sym_LBRACK] = ACTIONS(3160), + [anon_sym_LT] = ACTIONS(3160), + [anon_sym_SLASH] = ACTIONS(3162), + [anon_sym_class] = ACTIONS(3162), + [anon_sym_async] = ACTIONS(3162), + [anon_sym_function] = ACTIONS(3162), + [anon_sym_new] = ACTIONS(3162), + [anon_sym_PLUS] = ACTIONS(3162), + [anon_sym_DASH] = ACTIONS(3162), + [anon_sym_TILDE] = ACTIONS(3160), + [anon_sym_void] = ACTIONS(3162), + [anon_sym_delete] = ACTIONS(3162), + [anon_sym_PLUS_PLUS] = ACTIONS(3160), + [anon_sym_DASH_DASH] = ACTIONS(3160), + [anon_sym_DQUOTE] = ACTIONS(3160), + [anon_sym_SQUOTE] = ACTIONS(3160), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3160), + [sym_number] = ACTIONS(3160), + [sym_this] = ACTIONS(3162), + [sym_super] = ACTIONS(3162), + [sym_true] = ACTIONS(3162), + [sym_false] = ACTIONS(3162), + [sym_null] = ACTIONS(3162), + [sym_undefined] = ACTIONS(3162), + [anon_sym_AT] = ACTIONS(3160), + [anon_sym_static] = ACTIONS(3162), + [anon_sym_readonly] = ACTIONS(3162), + [anon_sym_get] = ACTIONS(3162), + [anon_sym_set] = ACTIONS(3162), + [anon_sym_declare] = ACTIONS(3162), + [anon_sym_public] = ACTIONS(3162), + [anon_sym_private] = ACTIONS(3162), + [anon_sym_protected] = ACTIONS(3162), + [anon_sym_module] = ACTIONS(3162), + [anon_sym_any] = ACTIONS(3162), + [anon_sym_number] = ACTIONS(3162), + [anon_sym_boolean] = ACTIONS(3162), + [anon_sym_string] = ACTIONS(3162), + [anon_sym_symbol] = ACTIONS(3162), + [anon_sym_abstract] = ACTIONS(3162), + [anon_sym_interface] = ACTIONS(3162), + [anon_sym_enum] = ACTIONS(3162), }, [1083] = { - [ts_builtin_sym_end] = ACTIONS(3166), - [sym_identifier] = ACTIONS(3168), - [anon_sym_export] = ACTIONS(3168), - [anon_sym_default] = ACTIONS(3168), - [anon_sym_type] = ACTIONS(3168), - [anon_sym_namespace] = ACTIONS(3168), - [anon_sym_LBRACE] = ACTIONS(3166), - [anon_sym_RBRACE] = ACTIONS(3166), - [anon_sym_typeof] = ACTIONS(3168), - [anon_sym_import] = ACTIONS(3168), - [anon_sym_var] = ACTIONS(3168), - [anon_sym_let] = ACTIONS(3168), - [anon_sym_const] = ACTIONS(3168), - [anon_sym_BANG] = ACTIONS(3166), - [anon_sym_else] = ACTIONS(3168), - [anon_sym_if] = ACTIONS(3168), - [anon_sym_switch] = ACTIONS(3168), - [anon_sym_for] = ACTIONS(3168), - [anon_sym_LPAREN] = ACTIONS(3166), - [anon_sym_await] = ACTIONS(3168), - [anon_sym_while] = ACTIONS(3168), - [anon_sym_do] = ACTIONS(3168), - [anon_sym_try] = ACTIONS(3168), - [anon_sym_with] = ACTIONS(3168), - [anon_sym_break] = ACTIONS(3168), - [anon_sym_continue] = ACTIONS(3168), - [anon_sym_debugger] = ACTIONS(3168), - [anon_sym_return] = ACTIONS(3168), - [anon_sym_throw] = ACTIONS(3168), - [anon_sym_SEMI] = ACTIONS(3166), - [anon_sym_case] = ACTIONS(3168), - [anon_sym_yield] = ACTIONS(3168), - [anon_sym_LBRACK] = ACTIONS(3166), - [anon_sym_LT] = ACTIONS(3166), - [anon_sym_SLASH] = ACTIONS(3168), - [anon_sym_class] = ACTIONS(3168), - [anon_sym_async] = ACTIONS(3168), - [anon_sym_function] = ACTIONS(3168), - [anon_sym_new] = ACTIONS(3168), - [anon_sym_PLUS] = ACTIONS(3168), - [anon_sym_DASH] = ACTIONS(3168), - [anon_sym_TILDE] = ACTIONS(3166), - [anon_sym_void] = ACTIONS(3168), - [anon_sym_delete] = ACTIONS(3168), - [anon_sym_PLUS_PLUS] = ACTIONS(3166), - [anon_sym_DASH_DASH] = ACTIONS(3166), - [anon_sym_DQUOTE] = ACTIONS(3166), - [anon_sym_SQUOTE] = ACTIONS(3166), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3166), - [sym_number] = ACTIONS(3166), - [sym_this] = ACTIONS(3168), - [sym_super] = ACTIONS(3168), - [sym_true] = ACTIONS(3168), - [sym_false] = ACTIONS(3168), - [sym_null] = ACTIONS(3168), - [sym_undefined] = ACTIONS(3168), - [anon_sym_AT] = ACTIONS(3166), - [anon_sym_static] = ACTIONS(3168), - [anon_sym_readonly] = ACTIONS(3168), - [anon_sym_get] = ACTIONS(3168), - [anon_sym_set] = ACTIONS(3168), - [anon_sym_declare] = ACTIONS(3168), - [anon_sym_public] = ACTIONS(3168), - [anon_sym_private] = ACTIONS(3168), - [anon_sym_protected] = ACTIONS(3168), - [anon_sym_module] = ACTIONS(3168), - [anon_sym_any] = ACTIONS(3168), - [anon_sym_number] = ACTIONS(3168), - [anon_sym_boolean] = ACTIONS(3168), - [anon_sym_string] = ACTIONS(3168), - [anon_sym_symbol] = ACTIONS(3168), - [anon_sym_abstract] = ACTIONS(3168), - [anon_sym_interface] = ACTIONS(3168), - [anon_sym_enum] = ACTIONS(3168), + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_type] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [anon_sym_let] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_debugger] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_async] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_this] = ACTIONS(3134), + [sym_super] = ACTIONS(3134), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_undefined] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3134), + [anon_sym_set] = ACTIONS(3134), + [anon_sym_declare] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_module] = ACTIONS(3134), + [anon_sym_any] = ACTIONS(3134), + [anon_sym_number] = ACTIONS(3134), + [anon_sym_boolean] = ACTIONS(3134), + [anon_sym_string] = ACTIONS(3134), + [anon_sym_symbol] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), }, [1084] = { - [ts_builtin_sym_end] = ACTIONS(3170), - [sym_identifier] = ACTIONS(3172), - [anon_sym_export] = ACTIONS(3172), - [anon_sym_default] = ACTIONS(3172), - [anon_sym_type] = ACTIONS(3172), - [anon_sym_namespace] = ACTIONS(3172), - [anon_sym_LBRACE] = ACTIONS(3170), - [anon_sym_RBRACE] = ACTIONS(3170), - [anon_sym_typeof] = ACTIONS(3172), - [anon_sym_import] = ACTIONS(3172), - [anon_sym_var] = ACTIONS(3172), - [anon_sym_let] = ACTIONS(3172), - [anon_sym_const] = ACTIONS(3172), - [anon_sym_BANG] = ACTIONS(3170), - [anon_sym_else] = ACTIONS(3172), - [anon_sym_if] = ACTIONS(3172), - [anon_sym_switch] = ACTIONS(3172), - [anon_sym_for] = ACTIONS(3172), - [anon_sym_LPAREN] = ACTIONS(3170), - [anon_sym_await] = ACTIONS(3172), - [anon_sym_while] = ACTIONS(3172), - [anon_sym_do] = ACTIONS(3172), - [anon_sym_try] = ACTIONS(3172), - [anon_sym_with] = ACTIONS(3172), - [anon_sym_break] = ACTIONS(3172), - [anon_sym_continue] = ACTIONS(3172), - [anon_sym_debugger] = ACTIONS(3172), - [anon_sym_return] = ACTIONS(3172), - [anon_sym_throw] = ACTIONS(3172), - [anon_sym_SEMI] = ACTIONS(3170), - [anon_sym_case] = ACTIONS(3172), - [anon_sym_yield] = ACTIONS(3172), - [anon_sym_LBRACK] = ACTIONS(3170), - [anon_sym_LT] = ACTIONS(3170), - [anon_sym_SLASH] = ACTIONS(3172), - [anon_sym_class] = ACTIONS(3172), - [anon_sym_async] = ACTIONS(3172), - [anon_sym_function] = ACTIONS(3172), - [anon_sym_new] = ACTIONS(3172), - [anon_sym_PLUS] = ACTIONS(3172), - [anon_sym_DASH] = ACTIONS(3172), - [anon_sym_TILDE] = ACTIONS(3170), - [anon_sym_void] = ACTIONS(3172), - [anon_sym_delete] = ACTIONS(3172), - [anon_sym_PLUS_PLUS] = ACTIONS(3170), - [anon_sym_DASH_DASH] = ACTIONS(3170), - [anon_sym_DQUOTE] = ACTIONS(3170), - [anon_sym_SQUOTE] = ACTIONS(3170), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3170), - [sym_number] = ACTIONS(3170), - [sym_this] = ACTIONS(3172), - [sym_super] = ACTIONS(3172), - [sym_true] = ACTIONS(3172), - [sym_false] = ACTIONS(3172), - [sym_null] = ACTIONS(3172), - [sym_undefined] = ACTIONS(3172), - [anon_sym_AT] = ACTIONS(3170), - [anon_sym_static] = ACTIONS(3172), - [anon_sym_readonly] = ACTIONS(3172), - [anon_sym_get] = ACTIONS(3172), - [anon_sym_set] = ACTIONS(3172), - [anon_sym_declare] = ACTIONS(3172), - [anon_sym_public] = ACTIONS(3172), - [anon_sym_private] = ACTIONS(3172), - [anon_sym_protected] = ACTIONS(3172), - [anon_sym_module] = ACTIONS(3172), - [anon_sym_any] = ACTIONS(3172), - [anon_sym_number] = ACTIONS(3172), - [anon_sym_boolean] = ACTIONS(3172), - [anon_sym_string] = ACTIONS(3172), - [anon_sym_symbol] = ACTIONS(3172), - [anon_sym_abstract] = ACTIONS(3172), - [anon_sym_interface] = ACTIONS(3172), - [anon_sym_enum] = ACTIONS(3172), + [ts_builtin_sym_end] = ACTIONS(3164), + [sym_identifier] = ACTIONS(3166), + [anon_sym_export] = ACTIONS(3166), + [anon_sym_default] = ACTIONS(3166), + [anon_sym_type] = ACTIONS(3166), + [anon_sym_namespace] = ACTIONS(3166), + [anon_sym_LBRACE] = ACTIONS(3164), + [anon_sym_RBRACE] = ACTIONS(3164), + [anon_sym_typeof] = ACTIONS(3166), + [anon_sym_import] = ACTIONS(3166), + [anon_sym_var] = ACTIONS(3166), + [anon_sym_let] = ACTIONS(3166), + [anon_sym_const] = ACTIONS(3166), + [anon_sym_BANG] = ACTIONS(3164), + [anon_sym_else] = ACTIONS(3166), + [anon_sym_if] = ACTIONS(3166), + [anon_sym_switch] = ACTIONS(3166), + [anon_sym_for] = ACTIONS(3166), + [anon_sym_LPAREN] = ACTIONS(3164), + [anon_sym_await] = ACTIONS(3166), + [anon_sym_while] = ACTIONS(3166), + [anon_sym_do] = ACTIONS(3166), + [anon_sym_try] = ACTIONS(3166), + [anon_sym_with] = ACTIONS(3166), + [anon_sym_break] = ACTIONS(3166), + [anon_sym_continue] = ACTIONS(3166), + [anon_sym_debugger] = ACTIONS(3166), + [anon_sym_return] = ACTIONS(3166), + [anon_sym_throw] = ACTIONS(3166), + [anon_sym_SEMI] = ACTIONS(3164), + [anon_sym_case] = ACTIONS(3166), + [anon_sym_yield] = ACTIONS(3166), + [anon_sym_LBRACK] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3164), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_class] = ACTIONS(3166), + [anon_sym_async] = ACTIONS(3166), + [anon_sym_function] = ACTIONS(3166), + [anon_sym_new] = ACTIONS(3166), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3166), + [anon_sym_TILDE] = ACTIONS(3164), + [anon_sym_void] = ACTIONS(3166), + [anon_sym_delete] = ACTIONS(3166), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_DASH_DASH] = ACTIONS(3164), + [anon_sym_DQUOTE] = ACTIONS(3164), + [anon_sym_SQUOTE] = ACTIONS(3164), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3164), + [sym_number] = ACTIONS(3164), + [sym_this] = ACTIONS(3166), + [sym_super] = ACTIONS(3166), + [sym_true] = ACTIONS(3166), + [sym_false] = ACTIONS(3166), + [sym_null] = ACTIONS(3166), + [sym_undefined] = ACTIONS(3166), + [anon_sym_AT] = ACTIONS(3164), + [anon_sym_static] = ACTIONS(3166), + [anon_sym_readonly] = ACTIONS(3166), + [anon_sym_get] = ACTIONS(3166), + [anon_sym_set] = ACTIONS(3166), + [anon_sym_declare] = ACTIONS(3166), + [anon_sym_public] = ACTIONS(3166), + [anon_sym_private] = ACTIONS(3166), + [anon_sym_protected] = ACTIONS(3166), + [anon_sym_module] = ACTIONS(3166), + [anon_sym_any] = ACTIONS(3166), + [anon_sym_number] = ACTIONS(3166), + [anon_sym_boolean] = ACTIONS(3166), + [anon_sym_string] = ACTIONS(3166), + [anon_sym_symbol] = ACTIONS(3166), + [anon_sym_abstract] = ACTIONS(3166), + [anon_sym_interface] = ACTIONS(3166), + [anon_sym_enum] = ACTIONS(3166), }, [1085] = { - [ts_builtin_sym_end] = ACTIONS(3174), - [sym_identifier] = ACTIONS(3176), - [anon_sym_export] = ACTIONS(3176), - [anon_sym_default] = ACTIONS(3176), - [anon_sym_type] = ACTIONS(3176), - [anon_sym_namespace] = ACTIONS(3176), - [anon_sym_LBRACE] = ACTIONS(3174), - [anon_sym_RBRACE] = ACTIONS(3174), - [anon_sym_typeof] = ACTIONS(3176), - [anon_sym_import] = ACTIONS(3176), - [anon_sym_var] = ACTIONS(3176), - [anon_sym_let] = ACTIONS(3176), - [anon_sym_const] = ACTIONS(3176), - [anon_sym_BANG] = ACTIONS(3174), - [anon_sym_else] = ACTIONS(3176), - [anon_sym_if] = ACTIONS(3176), - [anon_sym_switch] = ACTIONS(3176), - [anon_sym_for] = ACTIONS(3176), - [anon_sym_LPAREN] = ACTIONS(3174), - [anon_sym_await] = ACTIONS(3176), - [anon_sym_while] = ACTIONS(3176), - [anon_sym_do] = ACTIONS(3176), - [anon_sym_try] = ACTIONS(3176), - [anon_sym_with] = ACTIONS(3176), - [anon_sym_break] = ACTIONS(3176), - [anon_sym_continue] = ACTIONS(3176), - [anon_sym_debugger] = ACTIONS(3176), - [anon_sym_return] = ACTIONS(3176), - [anon_sym_throw] = ACTIONS(3176), - [anon_sym_SEMI] = ACTIONS(3174), - [anon_sym_case] = ACTIONS(3176), - [anon_sym_yield] = ACTIONS(3176), - [anon_sym_LBRACK] = ACTIONS(3174), - [anon_sym_LT] = ACTIONS(3174), - [anon_sym_SLASH] = ACTIONS(3176), - [anon_sym_class] = ACTIONS(3176), - [anon_sym_async] = ACTIONS(3176), - [anon_sym_function] = ACTIONS(3176), - [anon_sym_new] = ACTIONS(3176), - [anon_sym_PLUS] = ACTIONS(3176), - [anon_sym_DASH] = ACTIONS(3176), - [anon_sym_TILDE] = ACTIONS(3174), - [anon_sym_void] = ACTIONS(3176), - [anon_sym_delete] = ACTIONS(3176), - [anon_sym_PLUS_PLUS] = ACTIONS(3174), - [anon_sym_DASH_DASH] = ACTIONS(3174), - [anon_sym_DQUOTE] = ACTIONS(3174), - [anon_sym_SQUOTE] = ACTIONS(3174), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3174), - [sym_number] = ACTIONS(3174), - [sym_this] = ACTIONS(3176), - [sym_super] = ACTIONS(3176), - [sym_true] = ACTIONS(3176), - [sym_false] = ACTIONS(3176), - [sym_null] = ACTIONS(3176), - [sym_undefined] = ACTIONS(3176), - [anon_sym_AT] = ACTIONS(3174), - [anon_sym_static] = ACTIONS(3176), - [anon_sym_readonly] = ACTIONS(3176), - [anon_sym_get] = ACTIONS(3176), - [anon_sym_set] = ACTIONS(3176), - [anon_sym_declare] = ACTIONS(3176), - [anon_sym_public] = ACTIONS(3176), - [anon_sym_private] = ACTIONS(3176), - [anon_sym_protected] = ACTIONS(3176), - [anon_sym_module] = ACTIONS(3176), - [anon_sym_any] = ACTIONS(3176), - [anon_sym_number] = ACTIONS(3176), - [anon_sym_boolean] = ACTIONS(3176), - [anon_sym_string] = ACTIONS(3176), - [anon_sym_symbol] = ACTIONS(3176), - [anon_sym_abstract] = ACTIONS(3176), - [anon_sym_interface] = ACTIONS(3176), - [anon_sym_enum] = ACTIONS(3176), + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_type] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [anon_sym_let] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_debugger] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_async] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_this] = ACTIONS(3134), + [sym_super] = ACTIONS(3134), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_undefined] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3134), + [anon_sym_set] = ACTIONS(3134), + [anon_sym_declare] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_module] = ACTIONS(3134), + [anon_sym_any] = ACTIONS(3134), + [anon_sym_number] = ACTIONS(3134), + [anon_sym_boolean] = ACTIONS(3134), + [anon_sym_string] = ACTIONS(3134), + [anon_sym_symbol] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), }, [1086] = { - [ts_builtin_sym_end] = ACTIONS(3178), - [sym_identifier] = ACTIONS(3180), - [anon_sym_export] = ACTIONS(3180), - [anon_sym_default] = ACTIONS(3180), - [anon_sym_type] = ACTIONS(3180), - [anon_sym_namespace] = ACTIONS(3180), - [anon_sym_LBRACE] = ACTIONS(3178), - [anon_sym_RBRACE] = ACTIONS(3178), - [anon_sym_typeof] = ACTIONS(3180), - [anon_sym_import] = ACTIONS(3180), - [anon_sym_var] = ACTIONS(3180), - [anon_sym_let] = ACTIONS(3180), - [anon_sym_const] = ACTIONS(3180), - [anon_sym_BANG] = ACTIONS(3178), - [anon_sym_else] = ACTIONS(3180), - [anon_sym_if] = ACTIONS(3180), - [anon_sym_switch] = ACTIONS(3180), - [anon_sym_for] = ACTIONS(3180), - [anon_sym_LPAREN] = ACTIONS(3178), - [anon_sym_await] = ACTIONS(3180), - [anon_sym_while] = ACTIONS(3180), - [anon_sym_do] = ACTIONS(3180), - [anon_sym_try] = ACTIONS(3180), - [anon_sym_with] = ACTIONS(3180), - [anon_sym_break] = ACTIONS(3180), - [anon_sym_continue] = ACTIONS(3180), - [anon_sym_debugger] = ACTIONS(3180), - [anon_sym_return] = ACTIONS(3180), - [anon_sym_throw] = ACTIONS(3180), - [anon_sym_SEMI] = ACTIONS(3178), - [anon_sym_case] = ACTIONS(3180), - [anon_sym_yield] = ACTIONS(3180), - [anon_sym_LBRACK] = ACTIONS(3178), - [anon_sym_LT] = ACTIONS(3178), - [anon_sym_SLASH] = ACTIONS(3180), - [anon_sym_class] = ACTIONS(3180), - [anon_sym_async] = ACTIONS(3180), - [anon_sym_function] = ACTIONS(3180), - [anon_sym_new] = ACTIONS(3180), - [anon_sym_PLUS] = ACTIONS(3180), - [anon_sym_DASH] = ACTIONS(3180), - [anon_sym_TILDE] = ACTIONS(3178), - [anon_sym_void] = ACTIONS(3180), - [anon_sym_delete] = ACTIONS(3180), - [anon_sym_PLUS_PLUS] = ACTIONS(3178), - [anon_sym_DASH_DASH] = ACTIONS(3178), - [anon_sym_DQUOTE] = ACTIONS(3178), - [anon_sym_SQUOTE] = ACTIONS(3178), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3178), - [sym_number] = ACTIONS(3178), - [sym_this] = ACTIONS(3180), - [sym_super] = ACTIONS(3180), - [sym_true] = ACTIONS(3180), - [sym_false] = ACTIONS(3180), - [sym_null] = ACTIONS(3180), - [sym_undefined] = ACTIONS(3180), - [anon_sym_AT] = ACTIONS(3178), - [anon_sym_static] = ACTIONS(3180), - [anon_sym_readonly] = ACTIONS(3180), - [anon_sym_get] = ACTIONS(3180), - [anon_sym_set] = ACTIONS(3180), - [anon_sym_declare] = ACTIONS(3180), - [anon_sym_public] = ACTIONS(3180), - [anon_sym_private] = ACTIONS(3180), - [anon_sym_protected] = ACTIONS(3180), - [anon_sym_module] = ACTIONS(3180), - [anon_sym_any] = ACTIONS(3180), - [anon_sym_number] = ACTIONS(3180), - [anon_sym_boolean] = ACTIONS(3180), - [anon_sym_string] = ACTIONS(3180), - [anon_sym_symbol] = ACTIONS(3180), - [anon_sym_abstract] = ACTIONS(3180), - [anon_sym_interface] = ACTIONS(3180), - [anon_sym_enum] = ACTIONS(3180), + [ts_builtin_sym_end] = ACTIONS(3168), + [sym_identifier] = ACTIONS(3170), + [anon_sym_export] = ACTIONS(3170), + [anon_sym_default] = ACTIONS(3170), + [anon_sym_type] = ACTIONS(3170), + [anon_sym_namespace] = ACTIONS(3170), + [anon_sym_LBRACE] = ACTIONS(3168), + [anon_sym_RBRACE] = ACTIONS(3168), + [anon_sym_typeof] = ACTIONS(3170), + [anon_sym_import] = ACTIONS(3170), + [anon_sym_var] = ACTIONS(3170), + [anon_sym_let] = ACTIONS(3170), + [anon_sym_const] = ACTIONS(3170), + [anon_sym_BANG] = ACTIONS(3168), + [anon_sym_else] = ACTIONS(3170), + [anon_sym_if] = ACTIONS(3170), + [anon_sym_switch] = ACTIONS(3170), + [anon_sym_for] = ACTIONS(3170), + [anon_sym_LPAREN] = ACTIONS(3168), + [anon_sym_await] = ACTIONS(3170), + [anon_sym_while] = ACTIONS(3170), + [anon_sym_do] = ACTIONS(3170), + [anon_sym_try] = ACTIONS(3170), + [anon_sym_with] = ACTIONS(3170), + [anon_sym_break] = ACTIONS(3170), + [anon_sym_continue] = ACTIONS(3170), + [anon_sym_debugger] = ACTIONS(3170), + [anon_sym_return] = ACTIONS(3170), + [anon_sym_throw] = ACTIONS(3170), + [anon_sym_SEMI] = ACTIONS(3168), + [anon_sym_case] = ACTIONS(3170), + [anon_sym_yield] = ACTIONS(3170), + [anon_sym_LBRACK] = ACTIONS(3168), + [anon_sym_LT] = ACTIONS(3168), + [anon_sym_SLASH] = ACTIONS(3170), + [anon_sym_class] = ACTIONS(3170), + [anon_sym_async] = ACTIONS(3170), + [anon_sym_function] = ACTIONS(3170), + [anon_sym_new] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3170), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_TILDE] = ACTIONS(3168), + [anon_sym_void] = ACTIONS(3170), + [anon_sym_delete] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3168), + [anon_sym_DASH_DASH] = ACTIONS(3168), + [anon_sym_DQUOTE] = ACTIONS(3168), + [anon_sym_SQUOTE] = ACTIONS(3168), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3168), + [sym_number] = ACTIONS(3168), + [sym_this] = ACTIONS(3170), + [sym_super] = ACTIONS(3170), + [sym_true] = ACTIONS(3170), + [sym_false] = ACTIONS(3170), + [sym_null] = ACTIONS(3170), + [sym_undefined] = ACTIONS(3170), + [anon_sym_AT] = ACTIONS(3168), + [anon_sym_static] = ACTIONS(3170), + [anon_sym_readonly] = ACTIONS(3170), + [anon_sym_get] = ACTIONS(3170), + [anon_sym_set] = ACTIONS(3170), + [anon_sym_declare] = ACTIONS(3170), + [anon_sym_public] = ACTIONS(3170), + [anon_sym_private] = ACTIONS(3170), + [anon_sym_protected] = ACTIONS(3170), + [anon_sym_module] = ACTIONS(3170), + [anon_sym_any] = ACTIONS(3170), + [anon_sym_number] = ACTIONS(3170), + [anon_sym_boolean] = ACTIONS(3170), + [anon_sym_string] = ACTIONS(3170), + [anon_sym_symbol] = ACTIONS(3170), + [anon_sym_abstract] = ACTIONS(3170), + [anon_sym_interface] = ACTIONS(3170), + [anon_sym_enum] = ACTIONS(3170), }, [1087] = { - [ts_builtin_sym_end] = ACTIONS(3182), - [sym_identifier] = ACTIONS(3184), - [anon_sym_export] = ACTIONS(3184), - [anon_sym_default] = ACTIONS(3184), - [anon_sym_type] = ACTIONS(3184), - [anon_sym_namespace] = ACTIONS(3184), - [anon_sym_LBRACE] = ACTIONS(3182), - [anon_sym_RBRACE] = ACTIONS(3182), - [anon_sym_typeof] = ACTIONS(3184), - [anon_sym_import] = ACTIONS(3184), - [anon_sym_var] = ACTIONS(3184), - [anon_sym_let] = ACTIONS(3184), - [anon_sym_const] = ACTIONS(3184), - [anon_sym_BANG] = ACTIONS(3182), - [anon_sym_else] = ACTIONS(3184), - [anon_sym_if] = ACTIONS(3184), - [anon_sym_switch] = ACTIONS(3184), - [anon_sym_for] = ACTIONS(3184), - [anon_sym_LPAREN] = ACTIONS(3182), - [anon_sym_await] = ACTIONS(3184), - [anon_sym_while] = ACTIONS(3184), - [anon_sym_do] = ACTIONS(3184), - [anon_sym_try] = ACTIONS(3184), - [anon_sym_with] = ACTIONS(3184), - [anon_sym_break] = ACTIONS(3184), - [anon_sym_continue] = ACTIONS(3184), - [anon_sym_debugger] = ACTIONS(3184), - [anon_sym_return] = ACTIONS(3184), - [anon_sym_throw] = ACTIONS(3184), - [anon_sym_SEMI] = ACTIONS(3182), - [anon_sym_case] = ACTIONS(3184), - [anon_sym_yield] = ACTIONS(3184), - [anon_sym_LBRACK] = ACTIONS(3182), - [anon_sym_LT] = ACTIONS(3182), - [anon_sym_SLASH] = ACTIONS(3184), - [anon_sym_class] = ACTIONS(3184), - [anon_sym_async] = ACTIONS(3184), - [anon_sym_function] = ACTIONS(3184), - [anon_sym_new] = ACTIONS(3184), - [anon_sym_PLUS] = ACTIONS(3184), - [anon_sym_DASH] = ACTIONS(3184), - [anon_sym_TILDE] = ACTIONS(3182), - [anon_sym_void] = ACTIONS(3184), - [anon_sym_delete] = ACTIONS(3184), - [anon_sym_PLUS_PLUS] = ACTIONS(3182), - [anon_sym_DASH_DASH] = ACTIONS(3182), - [anon_sym_DQUOTE] = ACTIONS(3182), - [anon_sym_SQUOTE] = ACTIONS(3182), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3182), - [sym_number] = ACTIONS(3182), - [sym_this] = ACTIONS(3184), - [sym_super] = ACTIONS(3184), - [sym_true] = ACTIONS(3184), - [sym_false] = ACTIONS(3184), - [sym_null] = ACTIONS(3184), - [sym_undefined] = ACTIONS(3184), - [anon_sym_AT] = ACTIONS(3182), - [anon_sym_static] = ACTIONS(3184), - [anon_sym_readonly] = ACTIONS(3184), - [anon_sym_get] = ACTIONS(3184), - [anon_sym_set] = ACTIONS(3184), - [anon_sym_declare] = ACTIONS(3184), - [anon_sym_public] = ACTIONS(3184), - [anon_sym_private] = ACTIONS(3184), - [anon_sym_protected] = ACTIONS(3184), - [anon_sym_module] = ACTIONS(3184), - [anon_sym_any] = ACTIONS(3184), - [anon_sym_number] = ACTIONS(3184), - [anon_sym_boolean] = ACTIONS(3184), - [anon_sym_string] = ACTIONS(3184), - [anon_sym_symbol] = ACTIONS(3184), - [anon_sym_abstract] = ACTIONS(3184), - [anon_sym_interface] = ACTIONS(3184), - [anon_sym_enum] = ACTIONS(3184), + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_type] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [anon_sym_let] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_debugger] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_async] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_this] = ACTIONS(3134), + [sym_super] = ACTIONS(3134), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_undefined] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3134), + [anon_sym_set] = ACTIONS(3134), + [anon_sym_declare] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_module] = ACTIONS(3134), + [anon_sym_any] = ACTIONS(3134), + [anon_sym_number] = ACTIONS(3134), + [anon_sym_boolean] = ACTIONS(3134), + [anon_sym_string] = ACTIONS(3134), + [anon_sym_symbol] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), }, [1088] = { - [ts_builtin_sym_end] = ACTIONS(3186), - [sym_identifier] = ACTIONS(3188), - [anon_sym_export] = ACTIONS(3188), - [anon_sym_default] = ACTIONS(3188), - [anon_sym_type] = ACTIONS(3188), - [anon_sym_namespace] = ACTIONS(3188), - [anon_sym_LBRACE] = ACTIONS(3186), - [anon_sym_RBRACE] = ACTIONS(3186), - [anon_sym_typeof] = ACTIONS(3188), - [anon_sym_import] = ACTIONS(3188), - [anon_sym_var] = ACTIONS(3188), - [anon_sym_let] = ACTIONS(3188), - [anon_sym_const] = ACTIONS(3188), - [anon_sym_BANG] = ACTIONS(3186), - [anon_sym_else] = ACTIONS(3188), - [anon_sym_if] = ACTIONS(3188), - [anon_sym_switch] = ACTIONS(3188), - [anon_sym_for] = ACTIONS(3188), - [anon_sym_LPAREN] = ACTIONS(3186), - [anon_sym_await] = ACTIONS(3188), - [anon_sym_while] = ACTIONS(3188), - [anon_sym_do] = ACTIONS(3188), - [anon_sym_try] = ACTIONS(3188), - [anon_sym_with] = ACTIONS(3188), - [anon_sym_break] = ACTIONS(3188), - [anon_sym_continue] = ACTIONS(3188), - [anon_sym_debugger] = ACTIONS(3188), - [anon_sym_return] = ACTIONS(3188), - [anon_sym_throw] = ACTIONS(3188), - [anon_sym_SEMI] = ACTIONS(3186), - [anon_sym_case] = ACTIONS(3188), - [anon_sym_yield] = ACTIONS(3188), - [anon_sym_LBRACK] = ACTIONS(3186), - [anon_sym_LT] = ACTIONS(3186), - [anon_sym_SLASH] = ACTIONS(3188), - [anon_sym_class] = ACTIONS(3188), - [anon_sym_async] = ACTIONS(3188), - [anon_sym_function] = ACTIONS(3188), - [anon_sym_new] = ACTIONS(3188), - [anon_sym_PLUS] = ACTIONS(3188), - [anon_sym_DASH] = ACTIONS(3188), - [anon_sym_TILDE] = ACTIONS(3186), - [anon_sym_void] = ACTIONS(3188), - [anon_sym_delete] = ACTIONS(3188), - [anon_sym_PLUS_PLUS] = ACTIONS(3186), - [anon_sym_DASH_DASH] = ACTIONS(3186), - [anon_sym_DQUOTE] = ACTIONS(3186), - [anon_sym_SQUOTE] = ACTIONS(3186), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3186), - [sym_number] = ACTIONS(3186), - [sym_this] = ACTIONS(3188), - [sym_super] = ACTIONS(3188), - [sym_true] = ACTIONS(3188), - [sym_false] = ACTIONS(3188), - [sym_null] = ACTIONS(3188), - [sym_undefined] = ACTIONS(3188), - [anon_sym_AT] = ACTIONS(3186), - [anon_sym_static] = ACTIONS(3188), - [anon_sym_readonly] = ACTIONS(3188), - [anon_sym_get] = ACTIONS(3188), - [anon_sym_set] = ACTIONS(3188), - [anon_sym_declare] = ACTIONS(3188), - [anon_sym_public] = ACTIONS(3188), - [anon_sym_private] = ACTIONS(3188), - [anon_sym_protected] = ACTIONS(3188), - [anon_sym_module] = ACTIONS(3188), - [anon_sym_any] = ACTIONS(3188), - [anon_sym_number] = ACTIONS(3188), - [anon_sym_boolean] = ACTIONS(3188), - [anon_sym_string] = ACTIONS(3188), - [anon_sym_symbol] = ACTIONS(3188), - [anon_sym_abstract] = ACTIONS(3188), - [anon_sym_interface] = ACTIONS(3188), - [anon_sym_enum] = ACTIONS(3188), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1089] = { - [ts_builtin_sym_end] = ACTIONS(3190), - [sym_identifier] = ACTIONS(3192), - [anon_sym_export] = ACTIONS(3192), - [anon_sym_default] = ACTIONS(3192), - [anon_sym_type] = ACTIONS(3192), - [anon_sym_namespace] = ACTIONS(3192), - [anon_sym_LBRACE] = ACTIONS(3190), - [anon_sym_RBRACE] = ACTIONS(3190), - [anon_sym_typeof] = ACTIONS(3192), - [anon_sym_import] = ACTIONS(3192), - [anon_sym_var] = ACTIONS(3192), - [anon_sym_let] = ACTIONS(3192), - [anon_sym_const] = ACTIONS(3192), - [anon_sym_BANG] = ACTIONS(3190), - [anon_sym_else] = ACTIONS(3192), - [anon_sym_if] = ACTIONS(3192), - [anon_sym_switch] = ACTIONS(3192), - [anon_sym_for] = ACTIONS(3192), - [anon_sym_LPAREN] = ACTIONS(3190), - [anon_sym_await] = ACTIONS(3192), - [anon_sym_while] = ACTIONS(3192), - [anon_sym_do] = ACTIONS(3192), - [anon_sym_try] = ACTIONS(3192), - [anon_sym_with] = ACTIONS(3192), - [anon_sym_break] = ACTIONS(3192), - [anon_sym_continue] = ACTIONS(3192), - [anon_sym_debugger] = ACTIONS(3192), - [anon_sym_return] = ACTIONS(3192), - [anon_sym_throw] = ACTIONS(3192), - [anon_sym_SEMI] = ACTIONS(3190), - [anon_sym_case] = ACTIONS(3192), - [anon_sym_yield] = ACTIONS(3192), - [anon_sym_LBRACK] = ACTIONS(3190), - [anon_sym_LT] = ACTIONS(3190), - [anon_sym_SLASH] = ACTIONS(3192), - [anon_sym_class] = ACTIONS(3192), - [anon_sym_async] = ACTIONS(3192), - [anon_sym_function] = ACTIONS(3192), - [anon_sym_new] = ACTIONS(3192), - [anon_sym_PLUS] = ACTIONS(3192), - [anon_sym_DASH] = ACTIONS(3192), - [anon_sym_TILDE] = ACTIONS(3190), - [anon_sym_void] = ACTIONS(3192), - [anon_sym_delete] = ACTIONS(3192), - [anon_sym_PLUS_PLUS] = ACTIONS(3190), - [anon_sym_DASH_DASH] = ACTIONS(3190), - [anon_sym_DQUOTE] = ACTIONS(3190), - [anon_sym_SQUOTE] = ACTIONS(3190), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3190), - [sym_number] = ACTIONS(3190), - [sym_this] = ACTIONS(3192), - [sym_super] = ACTIONS(3192), - [sym_true] = ACTIONS(3192), - [sym_false] = ACTIONS(3192), - [sym_null] = ACTIONS(3192), - [sym_undefined] = ACTIONS(3192), - [anon_sym_AT] = ACTIONS(3190), - [anon_sym_static] = ACTIONS(3192), - [anon_sym_readonly] = ACTIONS(3192), - [anon_sym_get] = ACTIONS(3192), - [anon_sym_set] = ACTIONS(3192), - [anon_sym_declare] = ACTIONS(3192), - [anon_sym_public] = ACTIONS(3192), - [anon_sym_private] = ACTIONS(3192), - [anon_sym_protected] = ACTIONS(3192), - [anon_sym_module] = ACTIONS(3192), - [anon_sym_any] = ACTIONS(3192), - [anon_sym_number] = ACTIONS(3192), - [anon_sym_boolean] = ACTIONS(3192), - [anon_sym_string] = ACTIONS(3192), - [anon_sym_symbol] = ACTIONS(3192), - [anon_sym_abstract] = ACTIONS(3192), - [anon_sym_interface] = ACTIONS(3192), - [anon_sym_enum] = ACTIONS(3192), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1090] = { - [ts_builtin_sym_end] = ACTIONS(3194), - [sym_identifier] = ACTIONS(3196), - [anon_sym_export] = ACTIONS(3196), - [anon_sym_default] = ACTIONS(3196), - [anon_sym_type] = ACTIONS(3196), - [anon_sym_namespace] = ACTIONS(3196), - [anon_sym_LBRACE] = ACTIONS(3194), - [anon_sym_RBRACE] = ACTIONS(3194), - [anon_sym_typeof] = ACTIONS(3196), - [anon_sym_import] = ACTIONS(3196), - [anon_sym_var] = ACTIONS(3196), - [anon_sym_let] = ACTIONS(3196), - [anon_sym_const] = ACTIONS(3196), - [anon_sym_BANG] = ACTIONS(3194), - [anon_sym_else] = ACTIONS(3196), - [anon_sym_if] = ACTIONS(3196), - [anon_sym_switch] = ACTIONS(3196), - [anon_sym_for] = ACTIONS(3196), - [anon_sym_LPAREN] = ACTIONS(3194), - [anon_sym_await] = ACTIONS(3196), - [anon_sym_while] = ACTIONS(3196), - [anon_sym_do] = ACTIONS(3196), - [anon_sym_try] = ACTIONS(3196), - [anon_sym_with] = ACTIONS(3196), - [anon_sym_break] = ACTIONS(3196), - [anon_sym_continue] = ACTIONS(3196), - [anon_sym_debugger] = ACTIONS(3196), - [anon_sym_return] = ACTIONS(3196), - [anon_sym_throw] = ACTIONS(3196), - [anon_sym_SEMI] = ACTIONS(3194), - [anon_sym_case] = ACTIONS(3196), - [anon_sym_yield] = ACTIONS(3196), - [anon_sym_LBRACK] = ACTIONS(3194), - [anon_sym_LT] = ACTIONS(3194), - [anon_sym_SLASH] = ACTIONS(3196), - [anon_sym_class] = ACTIONS(3196), - [anon_sym_async] = ACTIONS(3196), - [anon_sym_function] = ACTIONS(3196), - [anon_sym_new] = ACTIONS(3196), - [anon_sym_PLUS] = ACTIONS(3196), - [anon_sym_DASH] = ACTIONS(3196), - [anon_sym_TILDE] = ACTIONS(3194), - [anon_sym_void] = ACTIONS(3196), - [anon_sym_delete] = ACTIONS(3196), - [anon_sym_PLUS_PLUS] = ACTIONS(3194), - [anon_sym_DASH_DASH] = ACTIONS(3194), - [anon_sym_DQUOTE] = ACTIONS(3194), - [anon_sym_SQUOTE] = ACTIONS(3194), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3194), - [sym_number] = ACTIONS(3194), - [sym_this] = ACTIONS(3196), - [sym_super] = ACTIONS(3196), - [sym_true] = ACTIONS(3196), - [sym_false] = ACTIONS(3196), - [sym_null] = ACTIONS(3196), - [sym_undefined] = ACTIONS(3196), - [anon_sym_AT] = ACTIONS(3194), - [anon_sym_static] = ACTIONS(3196), - [anon_sym_readonly] = ACTIONS(3196), - [anon_sym_get] = ACTIONS(3196), - [anon_sym_set] = ACTIONS(3196), - [anon_sym_declare] = ACTIONS(3196), - [anon_sym_public] = ACTIONS(3196), - [anon_sym_private] = ACTIONS(3196), - [anon_sym_protected] = ACTIONS(3196), - [anon_sym_module] = ACTIONS(3196), - [anon_sym_any] = ACTIONS(3196), - [anon_sym_number] = ACTIONS(3196), - [anon_sym_boolean] = ACTIONS(3196), - [anon_sym_string] = ACTIONS(3196), - [anon_sym_symbol] = ACTIONS(3196), - [anon_sym_abstract] = ACTIONS(3196), - [anon_sym_interface] = ACTIONS(3196), - [anon_sym_enum] = ACTIONS(3196), + [ts_builtin_sym_end] = ACTIONS(3172), + [sym_identifier] = ACTIONS(3174), + [anon_sym_export] = ACTIONS(3174), + [anon_sym_default] = ACTIONS(3174), + [anon_sym_type] = ACTIONS(3174), + [anon_sym_namespace] = ACTIONS(3174), + [anon_sym_LBRACE] = ACTIONS(3172), + [anon_sym_RBRACE] = ACTIONS(3172), + [anon_sym_typeof] = ACTIONS(3174), + [anon_sym_import] = ACTIONS(3174), + [anon_sym_var] = ACTIONS(3174), + [anon_sym_let] = ACTIONS(3174), + [anon_sym_const] = ACTIONS(3174), + [anon_sym_BANG] = ACTIONS(3172), + [anon_sym_else] = ACTIONS(3174), + [anon_sym_if] = ACTIONS(3174), + [anon_sym_switch] = ACTIONS(3174), + [anon_sym_for] = ACTIONS(3174), + [anon_sym_LPAREN] = ACTIONS(3172), + [anon_sym_await] = ACTIONS(3174), + [anon_sym_while] = ACTIONS(3174), + [anon_sym_do] = ACTIONS(3174), + [anon_sym_try] = ACTIONS(3174), + [anon_sym_with] = ACTIONS(3174), + [anon_sym_break] = ACTIONS(3174), + [anon_sym_continue] = ACTIONS(3174), + [anon_sym_debugger] = ACTIONS(3174), + [anon_sym_return] = ACTIONS(3174), + [anon_sym_throw] = ACTIONS(3174), + [anon_sym_SEMI] = ACTIONS(3172), + [anon_sym_case] = ACTIONS(3174), + [anon_sym_yield] = ACTIONS(3174), + [anon_sym_LBRACK] = ACTIONS(3172), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3174), + [anon_sym_class] = ACTIONS(3174), + [anon_sym_async] = ACTIONS(3174), + [anon_sym_function] = ACTIONS(3174), + [anon_sym_new] = ACTIONS(3174), + [anon_sym_PLUS] = ACTIONS(3174), + [anon_sym_DASH] = ACTIONS(3174), + [anon_sym_TILDE] = ACTIONS(3172), + [anon_sym_void] = ACTIONS(3174), + [anon_sym_delete] = ACTIONS(3174), + [anon_sym_PLUS_PLUS] = ACTIONS(3172), + [anon_sym_DASH_DASH] = ACTIONS(3172), + [anon_sym_DQUOTE] = ACTIONS(3172), + [anon_sym_SQUOTE] = ACTIONS(3172), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3172), + [sym_number] = ACTIONS(3172), + [sym_this] = ACTIONS(3174), + [sym_super] = ACTIONS(3174), + [sym_true] = ACTIONS(3174), + [sym_false] = ACTIONS(3174), + [sym_null] = ACTIONS(3174), + [sym_undefined] = ACTIONS(3174), + [anon_sym_AT] = ACTIONS(3172), + [anon_sym_static] = ACTIONS(3174), + [anon_sym_readonly] = ACTIONS(3174), + [anon_sym_get] = ACTIONS(3174), + [anon_sym_set] = ACTIONS(3174), + [anon_sym_declare] = ACTIONS(3174), + [anon_sym_public] = ACTIONS(3174), + [anon_sym_private] = ACTIONS(3174), + [anon_sym_protected] = ACTIONS(3174), + [anon_sym_module] = ACTIONS(3174), + [anon_sym_any] = ACTIONS(3174), + [anon_sym_number] = ACTIONS(3174), + [anon_sym_boolean] = ACTIONS(3174), + [anon_sym_string] = ACTIONS(3174), + [anon_sym_symbol] = ACTIONS(3174), + [anon_sym_abstract] = ACTIONS(3174), + [anon_sym_interface] = ACTIONS(3174), + [anon_sym_enum] = ACTIONS(3174), }, [1091] = { - [ts_builtin_sym_end] = ACTIONS(2088), - [sym_identifier] = ACTIONS(2090), - [anon_sym_export] = ACTIONS(2090), - [anon_sym_default] = ACTIONS(2090), - [anon_sym_type] = ACTIONS(2090), - [anon_sym_namespace] = ACTIONS(2090), - [anon_sym_LBRACE] = ACTIONS(2088), - [anon_sym_RBRACE] = ACTIONS(2088), - [anon_sym_typeof] = ACTIONS(2090), - [anon_sym_import] = ACTIONS(2090), - [anon_sym_var] = ACTIONS(2090), - [anon_sym_let] = ACTIONS(2090), - [anon_sym_const] = ACTIONS(2090), - [anon_sym_BANG] = ACTIONS(2088), - [anon_sym_else] = ACTIONS(2090), - [anon_sym_if] = ACTIONS(2090), - [anon_sym_switch] = ACTIONS(2090), - [anon_sym_for] = ACTIONS(2090), - [anon_sym_LPAREN] = ACTIONS(2088), - [anon_sym_await] = ACTIONS(2090), - [anon_sym_while] = ACTIONS(2090), - [anon_sym_do] = ACTIONS(2090), - [anon_sym_try] = ACTIONS(2090), - [anon_sym_with] = ACTIONS(2090), - [anon_sym_break] = ACTIONS(2090), - [anon_sym_continue] = ACTIONS(2090), - [anon_sym_debugger] = ACTIONS(2090), - [anon_sym_return] = ACTIONS(2090), - [anon_sym_throw] = ACTIONS(2090), - [anon_sym_SEMI] = ACTIONS(2088), - [anon_sym_case] = ACTIONS(2090), - [anon_sym_yield] = ACTIONS(2090), - [anon_sym_LBRACK] = ACTIONS(2088), - [anon_sym_LT] = ACTIONS(2088), - [anon_sym_SLASH] = ACTIONS(2090), - [anon_sym_class] = ACTIONS(2090), - [anon_sym_async] = ACTIONS(2090), - [anon_sym_function] = ACTIONS(2090), - [anon_sym_new] = ACTIONS(2090), - [anon_sym_PLUS] = ACTIONS(2090), - [anon_sym_DASH] = ACTIONS(2090), - [anon_sym_TILDE] = ACTIONS(2088), - [anon_sym_void] = ACTIONS(2090), - [anon_sym_delete] = ACTIONS(2090), - [anon_sym_PLUS_PLUS] = ACTIONS(2088), - [anon_sym_DASH_DASH] = ACTIONS(2088), - [anon_sym_DQUOTE] = ACTIONS(2088), - [anon_sym_SQUOTE] = ACTIONS(2088), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2088), - [sym_number] = ACTIONS(2088), - [sym_this] = ACTIONS(2090), - [sym_super] = ACTIONS(2090), - [sym_true] = ACTIONS(2090), - [sym_false] = ACTIONS(2090), - [sym_null] = ACTIONS(2090), - [sym_undefined] = ACTIONS(2090), - [anon_sym_AT] = ACTIONS(2088), - [anon_sym_static] = ACTIONS(2090), - [anon_sym_readonly] = ACTIONS(2090), - [anon_sym_get] = ACTIONS(2090), - [anon_sym_set] = ACTIONS(2090), - [anon_sym_declare] = ACTIONS(2090), - [anon_sym_public] = ACTIONS(2090), - [anon_sym_private] = ACTIONS(2090), - [anon_sym_protected] = ACTIONS(2090), - [anon_sym_module] = ACTIONS(2090), - [anon_sym_any] = ACTIONS(2090), - [anon_sym_number] = ACTIONS(2090), - [anon_sym_boolean] = ACTIONS(2090), - [anon_sym_string] = ACTIONS(2090), - [anon_sym_symbol] = ACTIONS(2090), - [anon_sym_abstract] = ACTIONS(2090), - [anon_sym_interface] = ACTIONS(2090), - [anon_sym_enum] = ACTIONS(2090), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1092] = { - [ts_builtin_sym_end] = ACTIONS(3198), - [sym_identifier] = ACTIONS(3200), - [anon_sym_export] = ACTIONS(3200), - [anon_sym_default] = ACTIONS(3200), - [anon_sym_type] = ACTIONS(3200), - [anon_sym_namespace] = ACTIONS(3200), - [anon_sym_LBRACE] = ACTIONS(3198), - [anon_sym_RBRACE] = ACTIONS(3198), - [anon_sym_typeof] = ACTIONS(3200), - [anon_sym_import] = ACTIONS(3200), - [anon_sym_var] = ACTIONS(3200), - [anon_sym_let] = ACTIONS(3200), - [anon_sym_const] = ACTIONS(3200), - [anon_sym_BANG] = ACTIONS(3198), - [anon_sym_else] = ACTIONS(3200), - [anon_sym_if] = ACTIONS(3200), - [anon_sym_switch] = ACTIONS(3200), - [anon_sym_for] = ACTIONS(3200), - [anon_sym_LPAREN] = ACTIONS(3198), - [anon_sym_await] = ACTIONS(3200), - [anon_sym_while] = ACTIONS(3200), - [anon_sym_do] = ACTIONS(3200), - [anon_sym_try] = ACTIONS(3200), - [anon_sym_with] = ACTIONS(3200), - [anon_sym_break] = ACTIONS(3200), - [anon_sym_continue] = ACTIONS(3200), - [anon_sym_debugger] = ACTIONS(3200), - [anon_sym_return] = ACTIONS(3200), - [anon_sym_throw] = ACTIONS(3200), - [anon_sym_SEMI] = ACTIONS(3198), - [anon_sym_case] = ACTIONS(3200), - [anon_sym_yield] = ACTIONS(3200), - [anon_sym_LBRACK] = ACTIONS(3198), - [anon_sym_LT] = ACTIONS(3198), - [anon_sym_SLASH] = ACTIONS(3200), - [anon_sym_class] = ACTIONS(3200), - [anon_sym_async] = ACTIONS(3200), - [anon_sym_function] = ACTIONS(3200), - [anon_sym_new] = ACTIONS(3200), - [anon_sym_PLUS] = ACTIONS(3200), - [anon_sym_DASH] = ACTIONS(3200), - [anon_sym_TILDE] = ACTIONS(3198), - [anon_sym_void] = ACTIONS(3200), - [anon_sym_delete] = ACTIONS(3200), - [anon_sym_PLUS_PLUS] = ACTIONS(3198), - [anon_sym_DASH_DASH] = ACTIONS(3198), - [anon_sym_DQUOTE] = ACTIONS(3198), - [anon_sym_SQUOTE] = ACTIONS(3198), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3198), - [sym_number] = ACTIONS(3198), - [sym_this] = ACTIONS(3200), - [sym_super] = ACTIONS(3200), - [sym_true] = ACTIONS(3200), - [sym_false] = ACTIONS(3200), - [sym_null] = ACTIONS(3200), - [sym_undefined] = ACTIONS(3200), - [anon_sym_AT] = ACTIONS(3198), - [anon_sym_static] = ACTIONS(3200), - [anon_sym_readonly] = ACTIONS(3200), - [anon_sym_get] = ACTIONS(3200), - [anon_sym_set] = ACTIONS(3200), - [anon_sym_declare] = ACTIONS(3200), - [anon_sym_public] = ACTIONS(3200), - [anon_sym_private] = ACTIONS(3200), - [anon_sym_protected] = ACTIONS(3200), - [anon_sym_module] = ACTIONS(3200), - [anon_sym_any] = ACTIONS(3200), - [anon_sym_number] = ACTIONS(3200), - [anon_sym_boolean] = ACTIONS(3200), - [anon_sym_string] = ACTIONS(3200), - [anon_sym_symbol] = ACTIONS(3200), - [anon_sym_abstract] = ACTIONS(3200), - [anon_sym_interface] = ACTIONS(3200), - [anon_sym_enum] = ACTIONS(3200), + [ts_builtin_sym_end] = ACTIONS(3176), + [sym_identifier] = ACTIONS(3178), + [anon_sym_export] = ACTIONS(3178), + [anon_sym_default] = ACTIONS(3178), + [anon_sym_type] = ACTIONS(3178), + [anon_sym_namespace] = ACTIONS(3178), + [anon_sym_LBRACE] = ACTIONS(3176), + [anon_sym_RBRACE] = ACTIONS(3176), + [anon_sym_typeof] = ACTIONS(3178), + [anon_sym_import] = ACTIONS(3178), + [anon_sym_var] = ACTIONS(3178), + [anon_sym_let] = ACTIONS(3178), + [anon_sym_const] = ACTIONS(3178), + [anon_sym_BANG] = ACTIONS(3176), + [anon_sym_else] = ACTIONS(3178), + [anon_sym_if] = ACTIONS(3178), + [anon_sym_switch] = ACTIONS(3178), + [anon_sym_for] = ACTIONS(3178), + [anon_sym_LPAREN] = ACTIONS(3176), + [anon_sym_await] = ACTIONS(3178), + [anon_sym_while] = ACTIONS(3178), + [anon_sym_do] = ACTIONS(3178), + [anon_sym_try] = ACTIONS(3178), + [anon_sym_with] = ACTIONS(3178), + [anon_sym_break] = ACTIONS(3178), + [anon_sym_continue] = ACTIONS(3178), + [anon_sym_debugger] = ACTIONS(3178), + [anon_sym_return] = ACTIONS(3178), + [anon_sym_throw] = ACTIONS(3178), + [anon_sym_SEMI] = ACTIONS(3176), + [anon_sym_case] = ACTIONS(3178), + [anon_sym_yield] = ACTIONS(3178), + [anon_sym_LBRACK] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3176), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_class] = ACTIONS(3178), + [anon_sym_async] = ACTIONS(3178), + [anon_sym_function] = ACTIONS(3178), + [anon_sym_new] = ACTIONS(3178), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3178), + [anon_sym_TILDE] = ACTIONS(3176), + [anon_sym_void] = ACTIONS(3178), + [anon_sym_delete] = ACTIONS(3178), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_DASH_DASH] = ACTIONS(3176), + [anon_sym_DQUOTE] = ACTIONS(3176), + [anon_sym_SQUOTE] = ACTIONS(3176), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3176), + [sym_number] = ACTIONS(3176), + [sym_this] = ACTIONS(3178), + [sym_super] = ACTIONS(3178), + [sym_true] = ACTIONS(3178), + [sym_false] = ACTIONS(3178), + [sym_null] = ACTIONS(3178), + [sym_undefined] = ACTIONS(3178), + [anon_sym_AT] = ACTIONS(3176), + [anon_sym_static] = ACTIONS(3178), + [anon_sym_readonly] = ACTIONS(3178), + [anon_sym_get] = ACTIONS(3178), + [anon_sym_set] = ACTIONS(3178), + [anon_sym_declare] = ACTIONS(3178), + [anon_sym_public] = ACTIONS(3178), + [anon_sym_private] = ACTIONS(3178), + [anon_sym_protected] = ACTIONS(3178), + [anon_sym_module] = ACTIONS(3178), + [anon_sym_any] = ACTIONS(3178), + [anon_sym_number] = ACTIONS(3178), + [anon_sym_boolean] = ACTIONS(3178), + [anon_sym_string] = ACTIONS(3178), + [anon_sym_symbol] = ACTIONS(3178), + [anon_sym_abstract] = ACTIONS(3178), + [anon_sym_interface] = ACTIONS(3178), + [anon_sym_enum] = ACTIONS(3178), }, [1093] = { - [ts_builtin_sym_end] = ACTIONS(3202), - [sym_identifier] = ACTIONS(3204), - [anon_sym_export] = ACTIONS(3204), - [anon_sym_default] = ACTIONS(3204), - [anon_sym_type] = ACTIONS(3204), - [anon_sym_namespace] = ACTIONS(3204), - [anon_sym_LBRACE] = ACTIONS(3202), - [anon_sym_RBRACE] = ACTIONS(3202), - [anon_sym_typeof] = ACTIONS(3204), - [anon_sym_import] = ACTIONS(3204), - [anon_sym_var] = ACTIONS(3204), - [anon_sym_let] = ACTIONS(3204), - [anon_sym_const] = ACTIONS(3204), - [anon_sym_BANG] = ACTIONS(3202), - [anon_sym_else] = ACTIONS(3204), - [anon_sym_if] = ACTIONS(3204), - [anon_sym_switch] = ACTIONS(3204), - [anon_sym_for] = ACTIONS(3204), - [anon_sym_LPAREN] = ACTIONS(3202), - [anon_sym_await] = ACTIONS(3204), - [anon_sym_while] = ACTIONS(3204), - [anon_sym_do] = ACTIONS(3204), - [anon_sym_try] = ACTIONS(3204), - [anon_sym_with] = ACTIONS(3204), - [anon_sym_break] = ACTIONS(3204), - [anon_sym_continue] = ACTIONS(3204), - [anon_sym_debugger] = ACTIONS(3204), - [anon_sym_return] = ACTIONS(3204), - [anon_sym_throw] = ACTIONS(3204), - [anon_sym_SEMI] = ACTIONS(3202), - [anon_sym_case] = ACTIONS(3204), - [anon_sym_yield] = ACTIONS(3204), - [anon_sym_LBRACK] = ACTIONS(3202), - [anon_sym_LT] = ACTIONS(3202), - [anon_sym_SLASH] = ACTIONS(3204), - [anon_sym_class] = ACTIONS(3204), - [anon_sym_async] = ACTIONS(3204), - [anon_sym_function] = ACTIONS(3204), - [anon_sym_new] = ACTIONS(3204), - [anon_sym_PLUS] = ACTIONS(3204), - [anon_sym_DASH] = ACTIONS(3204), - [anon_sym_TILDE] = ACTIONS(3202), - [anon_sym_void] = ACTIONS(3204), - [anon_sym_delete] = ACTIONS(3204), - [anon_sym_PLUS_PLUS] = ACTIONS(3202), - [anon_sym_DASH_DASH] = ACTIONS(3202), - [anon_sym_DQUOTE] = ACTIONS(3202), - [anon_sym_SQUOTE] = ACTIONS(3202), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3202), - [sym_number] = ACTIONS(3202), - [sym_this] = ACTIONS(3204), - [sym_super] = ACTIONS(3204), - [sym_true] = ACTIONS(3204), - [sym_false] = ACTIONS(3204), - [sym_null] = ACTIONS(3204), - [sym_undefined] = ACTIONS(3204), - [anon_sym_AT] = ACTIONS(3202), - [anon_sym_static] = ACTIONS(3204), - [anon_sym_readonly] = ACTIONS(3204), - [anon_sym_get] = ACTIONS(3204), - [anon_sym_set] = ACTIONS(3204), - [anon_sym_declare] = ACTIONS(3204), - [anon_sym_public] = ACTIONS(3204), - [anon_sym_private] = ACTIONS(3204), - [anon_sym_protected] = ACTIONS(3204), - [anon_sym_module] = ACTIONS(3204), - [anon_sym_any] = ACTIONS(3204), - [anon_sym_number] = ACTIONS(3204), - [anon_sym_boolean] = ACTIONS(3204), - [anon_sym_string] = ACTIONS(3204), - [anon_sym_symbol] = ACTIONS(3204), - [anon_sym_abstract] = ACTIONS(3204), - [anon_sym_interface] = ACTIONS(3204), - [anon_sym_enum] = ACTIONS(3204), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1094] = { - [ts_builtin_sym_end] = ACTIONS(3206), - [sym_identifier] = ACTIONS(3208), - [anon_sym_export] = ACTIONS(3208), - [anon_sym_default] = ACTIONS(3208), - [anon_sym_type] = ACTIONS(3208), - [anon_sym_namespace] = ACTIONS(3208), - [anon_sym_LBRACE] = ACTIONS(3206), - [anon_sym_RBRACE] = ACTIONS(3206), - [anon_sym_typeof] = ACTIONS(3208), - [anon_sym_import] = ACTIONS(3208), - [anon_sym_var] = ACTIONS(3208), - [anon_sym_let] = ACTIONS(3208), - [anon_sym_const] = ACTIONS(3208), - [anon_sym_BANG] = ACTIONS(3206), - [anon_sym_else] = ACTIONS(3208), - [anon_sym_if] = ACTIONS(3208), - [anon_sym_switch] = ACTIONS(3208), - [anon_sym_for] = ACTIONS(3208), - [anon_sym_LPAREN] = ACTIONS(3206), - [anon_sym_await] = ACTIONS(3208), - [anon_sym_while] = ACTIONS(3208), - [anon_sym_do] = ACTIONS(3208), - [anon_sym_try] = ACTIONS(3208), - [anon_sym_with] = ACTIONS(3208), - [anon_sym_break] = ACTIONS(3208), - [anon_sym_continue] = ACTIONS(3208), - [anon_sym_debugger] = ACTIONS(3208), - [anon_sym_return] = ACTIONS(3208), - [anon_sym_throw] = ACTIONS(3208), - [anon_sym_SEMI] = ACTIONS(3206), - [anon_sym_case] = ACTIONS(3208), - [anon_sym_yield] = ACTIONS(3208), - [anon_sym_LBRACK] = ACTIONS(3206), - [anon_sym_LT] = ACTIONS(3206), - [anon_sym_SLASH] = ACTIONS(3208), - [anon_sym_class] = ACTIONS(3208), - [anon_sym_async] = ACTIONS(3208), - [anon_sym_function] = ACTIONS(3208), - [anon_sym_new] = ACTIONS(3208), - [anon_sym_PLUS] = ACTIONS(3208), - [anon_sym_DASH] = ACTIONS(3208), - [anon_sym_TILDE] = ACTIONS(3206), - [anon_sym_void] = ACTIONS(3208), - [anon_sym_delete] = ACTIONS(3208), - [anon_sym_PLUS_PLUS] = ACTIONS(3206), - [anon_sym_DASH_DASH] = ACTIONS(3206), - [anon_sym_DQUOTE] = ACTIONS(3206), - [anon_sym_SQUOTE] = ACTIONS(3206), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3206), - [sym_number] = ACTIONS(3206), - [sym_this] = ACTIONS(3208), - [sym_super] = ACTIONS(3208), - [sym_true] = ACTIONS(3208), - [sym_false] = ACTIONS(3208), - [sym_null] = ACTIONS(3208), - [sym_undefined] = ACTIONS(3208), - [anon_sym_AT] = ACTIONS(3206), - [anon_sym_static] = ACTIONS(3208), - [anon_sym_readonly] = ACTIONS(3208), - [anon_sym_get] = ACTIONS(3208), - [anon_sym_set] = ACTIONS(3208), - [anon_sym_declare] = ACTIONS(3208), - [anon_sym_public] = ACTIONS(3208), - [anon_sym_private] = ACTIONS(3208), - [anon_sym_protected] = ACTIONS(3208), - [anon_sym_module] = ACTIONS(3208), - [anon_sym_any] = ACTIONS(3208), - [anon_sym_number] = ACTIONS(3208), - [anon_sym_boolean] = ACTIONS(3208), - [anon_sym_string] = ACTIONS(3208), - [anon_sym_symbol] = ACTIONS(3208), - [anon_sym_abstract] = ACTIONS(3208), - [anon_sym_interface] = ACTIONS(3208), - [anon_sym_enum] = ACTIONS(3208), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1095] = { - [ts_builtin_sym_end] = ACTIONS(3210), - [sym_identifier] = ACTIONS(3212), - [anon_sym_export] = ACTIONS(3212), - [anon_sym_default] = ACTIONS(3212), - [anon_sym_type] = ACTIONS(3212), - [anon_sym_namespace] = ACTIONS(3212), - [anon_sym_LBRACE] = ACTIONS(3210), - [anon_sym_RBRACE] = ACTIONS(3210), - [anon_sym_typeof] = ACTIONS(3212), - [anon_sym_import] = ACTIONS(3212), - [anon_sym_var] = ACTIONS(3212), - [anon_sym_let] = ACTIONS(3212), - [anon_sym_const] = ACTIONS(3212), - [anon_sym_BANG] = ACTIONS(3210), - [anon_sym_else] = ACTIONS(3212), - [anon_sym_if] = ACTIONS(3212), - [anon_sym_switch] = ACTIONS(3212), - [anon_sym_for] = ACTIONS(3212), - [anon_sym_LPAREN] = ACTIONS(3210), - [anon_sym_await] = ACTIONS(3212), - [anon_sym_while] = ACTIONS(3212), - [anon_sym_do] = ACTIONS(3212), - [anon_sym_try] = ACTIONS(3212), - [anon_sym_with] = ACTIONS(3212), - [anon_sym_break] = ACTIONS(3212), - [anon_sym_continue] = ACTIONS(3212), - [anon_sym_debugger] = ACTIONS(3212), - [anon_sym_return] = ACTIONS(3212), - [anon_sym_throw] = ACTIONS(3212), - [anon_sym_SEMI] = ACTIONS(3210), - [anon_sym_case] = ACTIONS(3212), - [anon_sym_yield] = ACTIONS(3212), - [anon_sym_LBRACK] = ACTIONS(3210), - [anon_sym_LT] = ACTIONS(3210), - [anon_sym_SLASH] = ACTIONS(3212), - [anon_sym_class] = ACTIONS(3212), - [anon_sym_async] = ACTIONS(3212), - [anon_sym_function] = ACTIONS(3212), - [anon_sym_new] = ACTIONS(3212), - [anon_sym_PLUS] = ACTIONS(3212), - [anon_sym_DASH] = ACTIONS(3212), - [anon_sym_TILDE] = ACTIONS(3210), - [anon_sym_void] = ACTIONS(3212), - [anon_sym_delete] = ACTIONS(3212), - [anon_sym_PLUS_PLUS] = ACTIONS(3210), - [anon_sym_DASH_DASH] = ACTIONS(3210), - [anon_sym_DQUOTE] = ACTIONS(3210), - [anon_sym_SQUOTE] = ACTIONS(3210), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3210), - [sym_number] = ACTIONS(3210), - [sym_this] = ACTIONS(3212), - [sym_super] = ACTIONS(3212), - [sym_true] = ACTIONS(3212), - [sym_false] = ACTIONS(3212), - [sym_null] = ACTIONS(3212), - [sym_undefined] = ACTIONS(3212), - [anon_sym_AT] = ACTIONS(3210), - [anon_sym_static] = ACTIONS(3212), - [anon_sym_readonly] = ACTIONS(3212), - [anon_sym_get] = ACTIONS(3212), - [anon_sym_set] = ACTIONS(3212), - [anon_sym_declare] = ACTIONS(3212), - [anon_sym_public] = ACTIONS(3212), - [anon_sym_private] = ACTIONS(3212), - [anon_sym_protected] = ACTIONS(3212), - [anon_sym_module] = ACTIONS(3212), - [anon_sym_any] = ACTIONS(3212), - [anon_sym_number] = ACTIONS(3212), - [anon_sym_boolean] = ACTIONS(3212), - [anon_sym_string] = ACTIONS(3212), - [anon_sym_symbol] = ACTIONS(3212), - [anon_sym_abstract] = ACTIONS(3212), - [anon_sym_interface] = ACTIONS(3212), - [anon_sym_enum] = ACTIONS(3212), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1096] = { - [ts_builtin_sym_end] = ACTIONS(3214), - [sym_identifier] = ACTIONS(3216), - [anon_sym_export] = ACTIONS(3216), - [anon_sym_default] = ACTIONS(3216), - [anon_sym_type] = ACTIONS(3216), - [anon_sym_namespace] = ACTIONS(3216), - [anon_sym_LBRACE] = ACTIONS(3214), - [anon_sym_RBRACE] = ACTIONS(3214), - [anon_sym_typeof] = ACTIONS(3216), - [anon_sym_import] = ACTIONS(3216), - [anon_sym_var] = ACTIONS(3216), - [anon_sym_let] = ACTIONS(3216), - [anon_sym_const] = ACTIONS(3216), - [anon_sym_BANG] = ACTIONS(3214), - [anon_sym_else] = ACTIONS(3216), - [anon_sym_if] = ACTIONS(3216), - [anon_sym_switch] = ACTIONS(3216), - [anon_sym_for] = ACTIONS(3216), - [anon_sym_LPAREN] = ACTIONS(3214), - [anon_sym_await] = ACTIONS(3216), - [anon_sym_while] = ACTIONS(3216), - [anon_sym_do] = ACTIONS(3216), - [anon_sym_try] = ACTIONS(3216), - [anon_sym_with] = ACTIONS(3216), - [anon_sym_break] = ACTIONS(3216), - [anon_sym_continue] = ACTIONS(3216), - [anon_sym_debugger] = ACTIONS(3216), - [anon_sym_return] = ACTIONS(3216), - [anon_sym_throw] = ACTIONS(3216), - [anon_sym_SEMI] = ACTIONS(3214), - [anon_sym_case] = ACTIONS(3216), - [anon_sym_yield] = ACTIONS(3216), - [anon_sym_LBRACK] = ACTIONS(3214), - [anon_sym_LT] = ACTIONS(3214), - [anon_sym_SLASH] = ACTIONS(3216), - [anon_sym_class] = ACTIONS(3216), - [anon_sym_async] = ACTIONS(3216), - [anon_sym_function] = ACTIONS(3216), - [anon_sym_new] = ACTIONS(3216), - [anon_sym_PLUS] = ACTIONS(3216), - [anon_sym_DASH] = ACTIONS(3216), - [anon_sym_TILDE] = ACTIONS(3214), - [anon_sym_void] = ACTIONS(3216), - [anon_sym_delete] = ACTIONS(3216), - [anon_sym_PLUS_PLUS] = ACTIONS(3214), - [anon_sym_DASH_DASH] = ACTIONS(3214), - [anon_sym_DQUOTE] = ACTIONS(3214), - [anon_sym_SQUOTE] = ACTIONS(3214), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3214), - [sym_number] = ACTIONS(3214), - [sym_this] = ACTIONS(3216), - [sym_super] = ACTIONS(3216), - [sym_true] = ACTIONS(3216), - [sym_false] = ACTIONS(3216), - [sym_null] = ACTIONS(3216), - [sym_undefined] = ACTIONS(3216), - [anon_sym_AT] = ACTIONS(3214), - [anon_sym_static] = ACTIONS(3216), - [anon_sym_readonly] = ACTIONS(3216), - [anon_sym_get] = ACTIONS(3216), - [anon_sym_set] = ACTIONS(3216), - [anon_sym_declare] = ACTIONS(3216), - [anon_sym_public] = ACTIONS(3216), - [anon_sym_private] = ACTIONS(3216), - [anon_sym_protected] = ACTIONS(3216), - [anon_sym_module] = ACTIONS(3216), - [anon_sym_any] = ACTIONS(3216), - [anon_sym_number] = ACTIONS(3216), - [anon_sym_boolean] = ACTIONS(3216), - [anon_sym_string] = ACTIONS(3216), - [anon_sym_symbol] = ACTIONS(3216), - [anon_sym_abstract] = ACTIONS(3216), - [anon_sym_interface] = ACTIONS(3216), - [anon_sym_enum] = ACTIONS(3216), + [ts_builtin_sym_end] = ACTIONS(3180), + [sym_identifier] = ACTIONS(3182), + [anon_sym_export] = ACTIONS(3182), + [anon_sym_default] = ACTIONS(3182), + [anon_sym_type] = ACTIONS(3182), + [anon_sym_namespace] = ACTIONS(3182), + [anon_sym_LBRACE] = ACTIONS(3180), + [anon_sym_RBRACE] = ACTIONS(3180), + [anon_sym_typeof] = ACTIONS(3182), + [anon_sym_import] = ACTIONS(3182), + [anon_sym_var] = ACTIONS(3182), + [anon_sym_let] = ACTIONS(3182), + [anon_sym_const] = ACTIONS(3182), + [anon_sym_BANG] = ACTIONS(3180), + [anon_sym_else] = ACTIONS(3182), + [anon_sym_if] = ACTIONS(3182), + [anon_sym_switch] = ACTIONS(3182), + [anon_sym_for] = ACTIONS(3182), + [anon_sym_LPAREN] = ACTIONS(3180), + [anon_sym_await] = ACTIONS(3182), + [anon_sym_while] = ACTIONS(3182), + [anon_sym_do] = ACTIONS(3182), + [anon_sym_try] = ACTIONS(3182), + [anon_sym_with] = ACTIONS(3182), + [anon_sym_break] = ACTIONS(3182), + [anon_sym_continue] = ACTIONS(3182), + [anon_sym_debugger] = ACTIONS(3182), + [anon_sym_return] = ACTIONS(3182), + [anon_sym_throw] = ACTIONS(3182), + [anon_sym_SEMI] = ACTIONS(3180), + [anon_sym_case] = ACTIONS(3182), + [anon_sym_yield] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3180), + [anon_sym_LT] = ACTIONS(3180), + [anon_sym_SLASH] = ACTIONS(3182), + [anon_sym_class] = ACTIONS(3182), + [anon_sym_async] = ACTIONS(3182), + [anon_sym_function] = ACTIONS(3182), + [anon_sym_new] = ACTIONS(3182), + [anon_sym_PLUS] = ACTIONS(3182), + [anon_sym_DASH] = ACTIONS(3182), + [anon_sym_TILDE] = ACTIONS(3180), + [anon_sym_void] = ACTIONS(3182), + [anon_sym_delete] = ACTIONS(3182), + [anon_sym_PLUS_PLUS] = ACTIONS(3180), + [anon_sym_DASH_DASH] = ACTIONS(3180), + [anon_sym_DQUOTE] = ACTIONS(3180), + [anon_sym_SQUOTE] = ACTIONS(3180), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3180), + [sym_number] = ACTIONS(3180), + [sym_this] = ACTIONS(3182), + [sym_super] = ACTIONS(3182), + [sym_true] = ACTIONS(3182), + [sym_false] = ACTIONS(3182), + [sym_null] = ACTIONS(3182), + [sym_undefined] = ACTIONS(3182), + [anon_sym_AT] = ACTIONS(3180), + [anon_sym_static] = ACTIONS(3182), + [anon_sym_readonly] = ACTIONS(3182), + [anon_sym_get] = ACTIONS(3182), + [anon_sym_set] = ACTIONS(3182), + [anon_sym_declare] = ACTIONS(3182), + [anon_sym_public] = ACTIONS(3182), + [anon_sym_private] = ACTIONS(3182), + [anon_sym_protected] = ACTIONS(3182), + [anon_sym_module] = ACTIONS(3182), + [anon_sym_any] = ACTIONS(3182), + [anon_sym_number] = ACTIONS(3182), + [anon_sym_boolean] = ACTIONS(3182), + [anon_sym_string] = ACTIONS(3182), + [anon_sym_symbol] = ACTIONS(3182), + [anon_sym_abstract] = ACTIONS(3182), + [anon_sym_interface] = ACTIONS(3182), + [anon_sym_enum] = ACTIONS(3182), }, [1097] = { - [ts_builtin_sym_end] = ACTIONS(2092), - [sym_identifier] = ACTIONS(2094), - [anon_sym_export] = ACTIONS(2094), - [anon_sym_default] = ACTIONS(2094), - [anon_sym_type] = ACTIONS(2094), - [anon_sym_namespace] = ACTIONS(2094), - [anon_sym_LBRACE] = ACTIONS(2092), - [anon_sym_RBRACE] = ACTIONS(2092), - [anon_sym_typeof] = ACTIONS(2094), - [anon_sym_import] = ACTIONS(2094), - [anon_sym_var] = ACTIONS(2094), - [anon_sym_let] = ACTIONS(2094), - [anon_sym_const] = ACTIONS(2094), - [anon_sym_BANG] = ACTIONS(2092), - [anon_sym_else] = ACTIONS(2094), - [anon_sym_if] = ACTIONS(2094), - [anon_sym_switch] = ACTIONS(2094), - [anon_sym_for] = ACTIONS(2094), - [anon_sym_LPAREN] = ACTIONS(2092), - [anon_sym_await] = ACTIONS(2094), - [anon_sym_while] = ACTIONS(2094), - [anon_sym_do] = ACTIONS(2094), - [anon_sym_try] = ACTIONS(2094), - [anon_sym_with] = ACTIONS(2094), - [anon_sym_break] = ACTIONS(2094), - [anon_sym_continue] = ACTIONS(2094), - [anon_sym_debugger] = ACTIONS(2094), - [anon_sym_return] = ACTIONS(2094), - [anon_sym_throw] = ACTIONS(2094), - [anon_sym_SEMI] = ACTIONS(2092), - [anon_sym_case] = ACTIONS(2094), - [anon_sym_yield] = ACTIONS(2094), - [anon_sym_LBRACK] = ACTIONS(2092), - [anon_sym_LT] = ACTIONS(2092), - [anon_sym_SLASH] = ACTIONS(2094), - [anon_sym_class] = ACTIONS(2094), - [anon_sym_async] = ACTIONS(2094), - [anon_sym_function] = ACTIONS(2094), - [anon_sym_new] = ACTIONS(2094), - [anon_sym_PLUS] = ACTIONS(2094), - [anon_sym_DASH] = ACTIONS(2094), - [anon_sym_TILDE] = ACTIONS(2092), - [anon_sym_void] = ACTIONS(2094), - [anon_sym_delete] = ACTIONS(2094), - [anon_sym_PLUS_PLUS] = ACTIONS(2092), - [anon_sym_DASH_DASH] = ACTIONS(2092), - [anon_sym_DQUOTE] = ACTIONS(2092), - [anon_sym_SQUOTE] = ACTIONS(2092), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2092), - [sym_number] = ACTIONS(2092), - [sym_this] = ACTIONS(2094), - [sym_super] = ACTIONS(2094), - [sym_true] = ACTIONS(2094), - [sym_false] = ACTIONS(2094), - [sym_null] = ACTIONS(2094), - [sym_undefined] = ACTIONS(2094), - [anon_sym_AT] = ACTIONS(2092), - [anon_sym_static] = ACTIONS(2094), - [anon_sym_readonly] = ACTIONS(2094), - [anon_sym_get] = ACTIONS(2094), - [anon_sym_set] = ACTIONS(2094), - [anon_sym_declare] = ACTIONS(2094), - [anon_sym_public] = ACTIONS(2094), - [anon_sym_private] = ACTIONS(2094), - [anon_sym_protected] = ACTIONS(2094), - [anon_sym_module] = ACTIONS(2094), - [anon_sym_any] = ACTIONS(2094), - [anon_sym_number] = ACTIONS(2094), - [anon_sym_boolean] = ACTIONS(2094), - [anon_sym_string] = ACTIONS(2094), - [anon_sym_symbol] = ACTIONS(2094), - [anon_sym_abstract] = ACTIONS(2094), - [anon_sym_interface] = ACTIONS(2094), - [anon_sym_enum] = ACTIONS(2094), + [ts_builtin_sym_end] = ACTIONS(3184), + [sym_identifier] = ACTIONS(3186), + [anon_sym_export] = ACTIONS(3186), + [anon_sym_default] = ACTIONS(3186), + [anon_sym_type] = ACTIONS(3186), + [anon_sym_namespace] = ACTIONS(3186), + [anon_sym_LBRACE] = ACTIONS(3184), + [anon_sym_RBRACE] = ACTIONS(3184), + [anon_sym_typeof] = ACTIONS(3186), + [anon_sym_import] = ACTIONS(3186), + [anon_sym_var] = ACTIONS(3186), + [anon_sym_let] = ACTIONS(3186), + [anon_sym_const] = ACTIONS(3186), + [anon_sym_BANG] = ACTIONS(3184), + [anon_sym_else] = ACTIONS(3186), + [anon_sym_if] = ACTIONS(3186), + [anon_sym_switch] = ACTIONS(3186), + [anon_sym_for] = ACTIONS(3186), + [anon_sym_LPAREN] = ACTIONS(3184), + [anon_sym_await] = ACTIONS(3186), + [anon_sym_while] = ACTIONS(3186), + [anon_sym_do] = ACTIONS(3186), + [anon_sym_try] = ACTIONS(3186), + [anon_sym_with] = ACTIONS(3186), + [anon_sym_break] = ACTIONS(3186), + [anon_sym_continue] = ACTIONS(3186), + [anon_sym_debugger] = ACTIONS(3186), + [anon_sym_return] = ACTIONS(3186), + [anon_sym_throw] = ACTIONS(3186), + [anon_sym_SEMI] = ACTIONS(3184), + [anon_sym_case] = ACTIONS(3186), + [anon_sym_yield] = ACTIONS(3186), + [anon_sym_LBRACK] = ACTIONS(3184), + [anon_sym_LT] = ACTIONS(3184), + [anon_sym_SLASH] = ACTIONS(3186), + [anon_sym_class] = ACTIONS(3186), + [anon_sym_async] = ACTIONS(3186), + [anon_sym_function] = ACTIONS(3186), + [anon_sym_new] = ACTIONS(3186), + [anon_sym_PLUS] = ACTIONS(3186), + [anon_sym_DASH] = ACTIONS(3186), + [anon_sym_TILDE] = ACTIONS(3184), + [anon_sym_void] = ACTIONS(3186), + [anon_sym_delete] = ACTIONS(3186), + [anon_sym_PLUS_PLUS] = ACTIONS(3184), + [anon_sym_DASH_DASH] = ACTIONS(3184), + [anon_sym_DQUOTE] = ACTIONS(3184), + [anon_sym_SQUOTE] = ACTIONS(3184), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3184), + [sym_number] = ACTIONS(3184), + [sym_this] = ACTIONS(3186), + [sym_super] = ACTIONS(3186), + [sym_true] = ACTIONS(3186), + [sym_false] = ACTIONS(3186), + [sym_null] = ACTIONS(3186), + [sym_undefined] = ACTIONS(3186), + [anon_sym_AT] = ACTIONS(3184), + [anon_sym_static] = ACTIONS(3186), + [anon_sym_readonly] = ACTIONS(3186), + [anon_sym_get] = ACTIONS(3186), + [anon_sym_set] = ACTIONS(3186), + [anon_sym_declare] = ACTIONS(3186), + [anon_sym_public] = ACTIONS(3186), + [anon_sym_private] = ACTIONS(3186), + [anon_sym_protected] = ACTIONS(3186), + [anon_sym_module] = ACTIONS(3186), + [anon_sym_any] = ACTIONS(3186), + [anon_sym_number] = ACTIONS(3186), + [anon_sym_boolean] = ACTIONS(3186), + [anon_sym_string] = ACTIONS(3186), + [anon_sym_symbol] = ACTIONS(3186), + [anon_sym_abstract] = ACTIONS(3186), + [anon_sym_interface] = ACTIONS(3186), + [anon_sym_enum] = ACTIONS(3186), }, [1098] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3188), + [sym_identifier] = ACTIONS(3190), + [anon_sym_export] = ACTIONS(3190), + [anon_sym_default] = ACTIONS(3190), + [anon_sym_type] = ACTIONS(3190), + [anon_sym_namespace] = ACTIONS(3190), + [anon_sym_LBRACE] = ACTIONS(3188), + [anon_sym_RBRACE] = ACTIONS(3188), + [anon_sym_typeof] = ACTIONS(3190), + [anon_sym_import] = ACTIONS(3190), + [anon_sym_var] = ACTIONS(3190), + [anon_sym_let] = ACTIONS(3190), + [anon_sym_const] = ACTIONS(3190), + [anon_sym_BANG] = ACTIONS(3188), + [anon_sym_else] = ACTIONS(3190), + [anon_sym_if] = ACTIONS(3190), + [anon_sym_switch] = ACTIONS(3190), + [anon_sym_for] = ACTIONS(3190), + [anon_sym_LPAREN] = ACTIONS(3188), + [anon_sym_await] = ACTIONS(3190), + [anon_sym_while] = ACTIONS(3190), + [anon_sym_do] = ACTIONS(3190), + [anon_sym_try] = ACTIONS(3190), + [anon_sym_with] = ACTIONS(3190), + [anon_sym_break] = ACTIONS(3190), + [anon_sym_continue] = ACTIONS(3190), + [anon_sym_debugger] = ACTIONS(3190), + [anon_sym_return] = ACTIONS(3190), + [anon_sym_throw] = ACTIONS(3190), + [anon_sym_SEMI] = ACTIONS(3188), + [anon_sym_case] = ACTIONS(3190), + [anon_sym_yield] = ACTIONS(3190), + [anon_sym_LBRACK] = ACTIONS(3188), + [anon_sym_LT] = ACTIONS(3188), + [anon_sym_SLASH] = ACTIONS(3190), + [anon_sym_class] = ACTIONS(3190), + [anon_sym_async] = ACTIONS(3190), + [anon_sym_function] = ACTIONS(3190), + [anon_sym_new] = ACTIONS(3190), + [anon_sym_PLUS] = ACTIONS(3190), + [anon_sym_DASH] = ACTIONS(3190), + [anon_sym_TILDE] = ACTIONS(3188), + [anon_sym_void] = ACTIONS(3190), + [anon_sym_delete] = ACTIONS(3190), + [anon_sym_PLUS_PLUS] = ACTIONS(3188), + [anon_sym_DASH_DASH] = ACTIONS(3188), + [anon_sym_DQUOTE] = ACTIONS(3188), + [anon_sym_SQUOTE] = ACTIONS(3188), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3188), + [sym_number] = ACTIONS(3188), + [sym_this] = ACTIONS(3190), + [sym_super] = ACTIONS(3190), + [sym_true] = ACTIONS(3190), + [sym_false] = ACTIONS(3190), + [sym_null] = ACTIONS(3190), + [sym_undefined] = ACTIONS(3190), + [anon_sym_AT] = ACTIONS(3188), + [anon_sym_static] = ACTIONS(3190), + [anon_sym_readonly] = ACTIONS(3190), + [anon_sym_get] = ACTIONS(3190), + [anon_sym_set] = ACTIONS(3190), + [anon_sym_declare] = ACTIONS(3190), + [anon_sym_public] = ACTIONS(3190), + [anon_sym_private] = ACTIONS(3190), + [anon_sym_protected] = ACTIONS(3190), + [anon_sym_module] = ACTIONS(3190), + [anon_sym_any] = ACTIONS(3190), + [anon_sym_number] = ACTIONS(3190), + [anon_sym_boolean] = ACTIONS(3190), + [anon_sym_string] = ACTIONS(3190), + [anon_sym_symbol] = ACTIONS(3190), + [anon_sym_abstract] = ACTIONS(3190), + [anon_sym_interface] = ACTIONS(3190), + [anon_sym_enum] = ACTIONS(3190), }, [1099] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), }, [1100] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3196), + [sym_identifier] = ACTIONS(3198), + [anon_sym_export] = ACTIONS(3198), + [anon_sym_default] = ACTIONS(3198), + [anon_sym_type] = ACTIONS(3198), + [anon_sym_namespace] = ACTIONS(3198), + [anon_sym_LBRACE] = ACTIONS(3196), + [anon_sym_RBRACE] = ACTIONS(3196), + [anon_sym_typeof] = ACTIONS(3198), + [anon_sym_import] = ACTIONS(3198), + [anon_sym_var] = ACTIONS(3198), + [anon_sym_let] = ACTIONS(3198), + [anon_sym_const] = ACTIONS(3198), + [anon_sym_BANG] = ACTIONS(3196), + [anon_sym_else] = ACTIONS(3198), + [anon_sym_if] = ACTIONS(3198), + [anon_sym_switch] = ACTIONS(3198), + [anon_sym_for] = ACTIONS(3198), + [anon_sym_LPAREN] = ACTIONS(3196), + [anon_sym_await] = ACTIONS(3198), + [anon_sym_while] = ACTIONS(3198), + [anon_sym_do] = ACTIONS(3198), + [anon_sym_try] = ACTIONS(3198), + [anon_sym_with] = ACTIONS(3198), + [anon_sym_break] = ACTIONS(3198), + [anon_sym_continue] = ACTIONS(3198), + [anon_sym_debugger] = ACTIONS(3198), + [anon_sym_return] = ACTIONS(3198), + [anon_sym_throw] = ACTIONS(3198), + [anon_sym_SEMI] = ACTIONS(3196), + [anon_sym_case] = ACTIONS(3198), + [anon_sym_yield] = ACTIONS(3198), + [anon_sym_LBRACK] = ACTIONS(3196), + [anon_sym_LT] = ACTIONS(3196), + [anon_sym_SLASH] = ACTIONS(3198), + [anon_sym_class] = ACTIONS(3198), + [anon_sym_async] = ACTIONS(3198), + [anon_sym_function] = ACTIONS(3198), + [anon_sym_new] = ACTIONS(3198), + [anon_sym_PLUS] = ACTIONS(3198), + [anon_sym_DASH] = ACTIONS(3198), + [anon_sym_TILDE] = ACTIONS(3196), + [anon_sym_void] = ACTIONS(3198), + [anon_sym_delete] = ACTIONS(3198), + [anon_sym_PLUS_PLUS] = ACTIONS(3196), + [anon_sym_DASH_DASH] = ACTIONS(3196), + [anon_sym_DQUOTE] = ACTIONS(3196), + [anon_sym_SQUOTE] = ACTIONS(3196), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3196), + [sym_number] = ACTIONS(3196), + [sym_this] = ACTIONS(3198), + [sym_super] = ACTIONS(3198), + [sym_true] = ACTIONS(3198), + [sym_false] = ACTIONS(3198), + [sym_null] = ACTIONS(3198), + [sym_undefined] = ACTIONS(3198), + [anon_sym_AT] = ACTIONS(3196), + [anon_sym_static] = ACTIONS(3198), + [anon_sym_readonly] = ACTIONS(3198), + [anon_sym_get] = ACTIONS(3198), + [anon_sym_set] = ACTIONS(3198), + [anon_sym_declare] = ACTIONS(3198), + [anon_sym_public] = ACTIONS(3198), + [anon_sym_private] = ACTIONS(3198), + [anon_sym_protected] = ACTIONS(3198), + [anon_sym_module] = ACTIONS(3198), + [anon_sym_any] = ACTIONS(3198), + [anon_sym_number] = ACTIONS(3198), + [anon_sym_boolean] = ACTIONS(3198), + [anon_sym_string] = ACTIONS(3198), + [anon_sym_symbol] = ACTIONS(3198), + [anon_sym_abstract] = ACTIONS(3198), + [anon_sym_interface] = ACTIONS(3198), + [anon_sym_enum] = ACTIONS(3198), }, [1101] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3200), + [sym_identifier] = ACTIONS(3202), + [anon_sym_export] = ACTIONS(3202), + [anon_sym_default] = ACTIONS(3202), + [anon_sym_type] = ACTIONS(3202), + [anon_sym_namespace] = ACTIONS(3202), + [anon_sym_LBRACE] = ACTIONS(3200), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_typeof] = ACTIONS(3202), + [anon_sym_import] = ACTIONS(3202), + [anon_sym_var] = ACTIONS(3202), + [anon_sym_let] = ACTIONS(3202), + [anon_sym_const] = ACTIONS(3202), + [anon_sym_BANG] = ACTIONS(3200), + [anon_sym_else] = ACTIONS(3202), + [anon_sym_if] = ACTIONS(3202), + [anon_sym_switch] = ACTIONS(3202), + [anon_sym_for] = ACTIONS(3202), + [anon_sym_LPAREN] = ACTIONS(3200), + [anon_sym_await] = ACTIONS(3202), + [anon_sym_while] = ACTIONS(3202), + [anon_sym_do] = ACTIONS(3202), + [anon_sym_try] = ACTIONS(3202), + [anon_sym_with] = ACTIONS(3202), + [anon_sym_break] = ACTIONS(3202), + [anon_sym_continue] = ACTIONS(3202), + [anon_sym_debugger] = ACTIONS(3202), + [anon_sym_return] = ACTIONS(3202), + [anon_sym_throw] = ACTIONS(3202), + [anon_sym_SEMI] = ACTIONS(3200), + [anon_sym_case] = ACTIONS(3202), + [anon_sym_yield] = ACTIONS(3202), + [anon_sym_LBRACK] = ACTIONS(3200), + [anon_sym_LT] = ACTIONS(3200), + [anon_sym_SLASH] = ACTIONS(3202), + [anon_sym_class] = ACTIONS(3202), + [anon_sym_async] = ACTIONS(3202), + [anon_sym_function] = ACTIONS(3202), + [anon_sym_new] = ACTIONS(3202), + [anon_sym_PLUS] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_TILDE] = ACTIONS(3200), + [anon_sym_void] = ACTIONS(3202), + [anon_sym_delete] = ACTIONS(3202), + [anon_sym_PLUS_PLUS] = ACTIONS(3200), + [anon_sym_DASH_DASH] = ACTIONS(3200), + [anon_sym_DQUOTE] = ACTIONS(3200), + [anon_sym_SQUOTE] = ACTIONS(3200), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3200), + [sym_number] = ACTIONS(3200), + [sym_this] = ACTIONS(3202), + [sym_super] = ACTIONS(3202), + [sym_true] = ACTIONS(3202), + [sym_false] = ACTIONS(3202), + [sym_null] = ACTIONS(3202), + [sym_undefined] = ACTIONS(3202), + [anon_sym_AT] = ACTIONS(3200), + [anon_sym_static] = ACTIONS(3202), + [anon_sym_readonly] = ACTIONS(3202), + [anon_sym_get] = ACTIONS(3202), + [anon_sym_set] = ACTIONS(3202), + [anon_sym_declare] = ACTIONS(3202), + [anon_sym_public] = ACTIONS(3202), + [anon_sym_private] = ACTIONS(3202), + [anon_sym_protected] = ACTIONS(3202), + [anon_sym_module] = ACTIONS(3202), + [anon_sym_any] = ACTIONS(3202), + [anon_sym_number] = ACTIONS(3202), + [anon_sym_boolean] = ACTIONS(3202), + [anon_sym_string] = ACTIONS(3202), + [anon_sym_symbol] = ACTIONS(3202), + [anon_sym_abstract] = ACTIONS(3202), + [anon_sym_interface] = ACTIONS(3202), + [anon_sym_enum] = ACTIONS(3202), }, [1102] = { - [ts_builtin_sym_end] = ACTIONS(3218), - [sym_identifier] = ACTIONS(3220), - [anon_sym_export] = ACTIONS(3220), - [anon_sym_default] = ACTIONS(3220), - [anon_sym_type] = ACTIONS(3220), - [anon_sym_namespace] = ACTIONS(3220), - [anon_sym_LBRACE] = ACTIONS(3218), - [anon_sym_RBRACE] = ACTIONS(3218), - [anon_sym_typeof] = ACTIONS(3220), - [anon_sym_import] = ACTIONS(3220), - [anon_sym_var] = ACTIONS(3220), - [anon_sym_let] = ACTIONS(3220), - [anon_sym_const] = ACTIONS(3220), - [anon_sym_BANG] = ACTIONS(3218), - [anon_sym_else] = ACTIONS(3220), - [anon_sym_if] = ACTIONS(3220), - [anon_sym_switch] = ACTIONS(3220), - [anon_sym_for] = ACTIONS(3220), - [anon_sym_LPAREN] = ACTIONS(3218), - [anon_sym_await] = ACTIONS(3220), - [anon_sym_while] = ACTIONS(3220), - [anon_sym_do] = ACTIONS(3220), - [anon_sym_try] = ACTIONS(3220), - [anon_sym_with] = ACTIONS(3220), - [anon_sym_break] = ACTIONS(3220), - [anon_sym_continue] = ACTIONS(3220), - [anon_sym_debugger] = ACTIONS(3220), - [anon_sym_return] = ACTIONS(3220), - [anon_sym_throw] = ACTIONS(3220), - [anon_sym_SEMI] = ACTIONS(3218), - [anon_sym_case] = ACTIONS(3220), - [anon_sym_yield] = ACTIONS(3220), - [anon_sym_LBRACK] = ACTIONS(3218), - [anon_sym_LT] = ACTIONS(3218), - [anon_sym_SLASH] = ACTIONS(3220), - [anon_sym_class] = ACTIONS(3220), - [anon_sym_async] = ACTIONS(3220), - [anon_sym_function] = ACTIONS(3220), - [anon_sym_new] = ACTIONS(3220), - [anon_sym_PLUS] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_TILDE] = ACTIONS(3218), - [anon_sym_void] = ACTIONS(3220), - [anon_sym_delete] = ACTIONS(3220), - [anon_sym_PLUS_PLUS] = ACTIONS(3218), - [anon_sym_DASH_DASH] = ACTIONS(3218), - [anon_sym_DQUOTE] = ACTIONS(3218), - [anon_sym_SQUOTE] = ACTIONS(3218), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3218), - [sym_number] = ACTIONS(3218), - [sym_this] = ACTIONS(3220), - [sym_super] = ACTIONS(3220), - [sym_true] = ACTIONS(3220), - [sym_false] = ACTIONS(3220), - [sym_null] = ACTIONS(3220), - [sym_undefined] = ACTIONS(3220), - [anon_sym_AT] = ACTIONS(3218), - [anon_sym_static] = ACTIONS(3220), - [anon_sym_readonly] = ACTIONS(3220), - [anon_sym_get] = ACTIONS(3220), - [anon_sym_set] = ACTIONS(3220), - [anon_sym_declare] = ACTIONS(3220), - [anon_sym_public] = ACTIONS(3220), - [anon_sym_private] = ACTIONS(3220), - [anon_sym_protected] = ACTIONS(3220), - [anon_sym_module] = ACTIONS(3220), - [anon_sym_any] = ACTIONS(3220), - [anon_sym_number] = ACTIONS(3220), - [anon_sym_boolean] = ACTIONS(3220), - [anon_sym_string] = ACTIONS(3220), - [anon_sym_symbol] = ACTIONS(3220), - [anon_sym_abstract] = ACTIONS(3220), - [anon_sym_interface] = ACTIONS(3220), - [anon_sym_enum] = ACTIONS(3220), + [ts_builtin_sym_end] = ACTIONS(3204), + [sym_identifier] = ACTIONS(3206), + [anon_sym_export] = ACTIONS(3206), + [anon_sym_default] = ACTIONS(3206), + [anon_sym_type] = ACTIONS(3206), + [anon_sym_namespace] = ACTIONS(3206), + [anon_sym_LBRACE] = ACTIONS(3204), + [anon_sym_RBRACE] = ACTIONS(3204), + [anon_sym_typeof] = ACTIONS(3206), + [anon_sym_import] = ACTIONS(3206), + [anon_sym_var] = ACTIONS(3206), + [anon_sym_let] = ACTIONS(3206), + [anon_sym_const] = ACTIONS(3206), + [anon_sym_BANG] = ACTIONS(3204), + [anon_sym_else] = ACTIONS(3206), + [anon_sym_if] = ACTIONS(3206), + [anon_sym_switch] = ACTIONS(3206), + [anon_sym_for] = ACTIONS(3206), + [anon_sym_LPAREN] = ACTIONS(3204), + [anon_sym_await] = ACTIONS(3206), + [anon_sym_while] = ACTIONS(3206), + [anon_sym_do] = ACTIONS(3206), + [anon_sym_try] = ACTIONS(3206), + [anon_sym_with] = ACTIONS(3206), + [anon_sym_break] = ACTIONS(3206), + [anon_sym_continue] = ACTIONS(3206), + [anon_sym_debugger] = ACTIONS(3206), + [anon_sym_return] = ACTIONS(3206), + [anon_sym_throw] = ACTIONS(3206), + [anon_sym_SEMI] = ACTIONS(3204), + [anon_sym_case] = ACTIONS(3206), + [anon_sym_yield] = ACTIONS(3206), + [anon_sym_LBRACK] = ACTIONS(3204), + [anon_sym_LT] = ACTIONS(3204), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_class] = ACTIONS(3206), + [anon_sym_async] = ACTIONS(3206), + [anon_sym_function] = ACTIONS(3206), + [anon_sym_new] = ACTIONS(3206), + [anon_sym_PLUS] = ACTIONS(3206), + [anon_sym_DASH] = ACTIONS(3206), + [anon_sym_TILDE] = ACTIONS(3204), + [anon_sym_void] = ACTIONS(3206), + [anon_sym_delete] = ACTIONS(3206), + [anon_sym_PLUS_PLUS] = ACTIONS(3204), + [anon_sym_DASH_DASH] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(3204), + [anon_sym_SQUOTE] = ACTIONS(3204), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3204), + [sym_number] = ACTIONS(3204), + [sym_this] = ACTIONS(3206), + [sym_super] = ACTIONS(3206), + [sym_true] = ACTIONS(3206), + [sym_false] = ACTIONS(3206), + [sym_null] = ACTIONS(3206), + [sym_undefined] = ACTIONS(3206), + [anon_sym_AT] = ACTIONS(3204), + [anon_sym_static] = ACTIONS(3206), + [anon_sym_readonly] = ACTIONS(3206), + [anon_sym_get] = ACTIONS(3206), + [anon_sym_set] = ACTIONS(3206), + [anon_sym_declare] = ACTIONS(3206), + [anon_sym_public] = ACTIONS(3206), + [anon_sym_private] = ACTIONS(3206), + [anon_sym_protected] = ACTIONS(3206), + [anon_sym_module] = ACTIONS(3206), + [anon_sym_any] = ACTIONS(3206), + [anon_sym_number] = ACTIONS(3206), + [anon_sym_boolean] = ACTIONS(3206), + [anon_sym_string] = ACTIONS(3206), + [anon_sym_symbol] = ACTIONS(3206), + [anon_sym_abstract] = ACTIONS(3206), + [anon_sym_interface] = ACTIONS(3206), + [anon_sym_enum] = ACTIONS(3206), }, [1103] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3208), + [sym_identifier] = ACTIONS(3210), + [anon_sym_export] = ACTIONS(3210), + [anon_sym_default] = ACTIONS(3210), + [anon_sym_type] = ACTIONS(3210), + [anon_sym_namespace] = ACTIONS(3210), + [anon_sym_LBRACE] = ACTIONS(3208), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_typeof] = ACTIONS(3210), + [anon_sym_import] = ACTIONS(3210), + [anon_sym_var] = ACTIONS(3210), + [anon_sym_let] = ACTIONS(3210), + [anon_sym_const] = ACTIONS(3210), + [anon_sym_BANG] = ACTIONS(3208), + [anon_sym_else] = ACTIONS(3210), + [anon_sym_if] = ACTIONS(3210), + [anon_sym_switch] = ACTIONS(3210), + [anon_sym_for] = ACTIONS(3210), + [anon_sym_LPAREN] = ACTIONS(3208), + [anon_sym_await] = ACTIONS(3210), + [anon_sym_while] = ACTIONS(3210), + [anon_sym_do] = ACTIONS(3210), + [anon_sym_try] = ACTIONS(3210), + [anon_sym_with] = ACTIONS(3210), + [anon_sym_break] = ACTIONS(3210), + [anon_sym_continue] = ACTIONS(3210), + [anon_sym_debugger] = ACTIONS(3210), + [anon_sym_return] = ACTIONS(3210), + [anon_sym_throw] = ACTIONS(3210), + [anon_sym_SEMI] = ACTIONS(3208), + [anon_sym_case] = ACTIONS(3210), + [anon_sym_yield] = ACTIONS(3210), + [anon_sym_LBRACK] = ACTIONS(3208), + [anon_sym_LT] = ACTIONS(3208), + [anon_sym_SLASH] = ACTIONS(3210), + [anon_sym_class] = ACTIONS(3210), + [anon_sym_async] = ACTIONS(3210), + [anon_sym_function] = ACTIONS(3210), + [anon_sym_new] = ACTIONS(3210), + [anon_sym_PLUS] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_TILDE] = ACTIONS(3208), + [anon_sym_void] = ACTIONS(3210), + [anon_sym_delete] = ACTIONS(3210), + [anon_sym_PLUS_PLUS] = ACTIONS(3208), + [anon_sym_DASH_DASH] = ACTIONS(3208), + [anon_sym_DQUOTE] = ACTIONS(3208), + [anon_sym_SQUOTE] = ACTIONS(3208), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3208), + [sym_number] = ACTIONS(3208), + [sym_this] = ACTIONS(3210), + [sym_super] = ACTIONS(3210), + [sym_true] = ACTIONS(3210), + [sym_false] = ACTIONS(3210), + [sym_null] = ACTIONS(3210), + [sym_undefined] = ACTIONS(3210), + [anon_sym_AT] = ACTIONS(3208), + [anon_sym_static] = ACTIONS(3210), + [anon_sym_readonly] = ACTIONS(3210), + [anon_sym_get] = ACTIONS(3210), + [anon_sym_set] = ACTIONS(3210), + [anon_sym_declare] = ACTIONS(3210), + [anon_sym_public] = ACTIONS(3210), + [anon_sym_private] = ACTIONS(3210), + [anon_sym_protected] = ACTIONS(3210), + [anon_sym_module] = ACTIONS(3210), + [anon_sym_any] = ACTIONS(3210), + [anon_sym_number] = ACTIONS(3210), + [anon_sym_boolean] = ACTIONS(3210), + [anon_sym_string] = ACTIONS(3210), + [anon_sym_symbol] = ACTIONS(3210), + [anon_sym_abstract] = ACTIONS(3210), + [anon_sym_interface] = ACTIONS(3210), + [anon_sym_enum] = ACTIONS(3210), }, [1104] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3212), + [sym_identifier] = ACTIONS(3214), + [anon_sym_export] = ACTIONS(3214), + [anon_sym_default] = ACTIONS(3214), + [anon_sym_type] = ACTIONS(3214), + [anon_sym_namespace] = ACTIONS(3214), + [anon_sym_LBRACE] = ACTIONS(3212), + [anon_sym_RBRACE] = ACTIONS(3212), + [anon_sym_typeof] = ACTIONS(3214), + [anon_sym_import] = ACTIONS(3214), + [anon_sym_var] = ACTIONS(3214), + [anon_sym_let] = ACTIONS(3214), + [anon_sym_const] = ACTIONS(3214), + [anon_sym_BANG] = ACTIONS(3212), + [anon_sym_else] = ACTIONS(3214), + [anon_sym_if] = ACTIONS(3214), + [anon_sym_switch] = ACTIONS(3214), + [anon_sym_for] = ACTIONS(3214), + [anon_sym_LPAREN] = ACTIONS(3212), + [anon_sym_await] = ACTIONS(3214), + [anon_sym_while] = ACTIONS(3214), + [anon_sym_do] = ACTIONS(3214), + [anon_sym_try] = ACTIONS(3214), + [anon_sym_with] = ACTIONS(3214), + [anon_sym_break] = ACTIONS(3214), + [anon_sym_continue] = ACTIONS(3214), + [anon_sym_debugger] = ACTIONS(3214), + [anon_sym_return] = ACTIONS(3214), + [anon_sym_throw] = ACTIONS(3214), + [anon_sym_SEMI] = ACTIONS(3212), + [anon_sym_case] = ACTIONS(3214), + [anon_sym_yield] = ACTIONS(3214), + [anon_sym_LBRACK] = ACTIONS(3212), + [anon_sym_LT] = ACTIONS(3212), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_class] = ACTIONS(3214), + [anon_sym_async] = ACTIONS(3214), + [anon_sym_function] = ACTIONS(3214), + [anon_sym_new] = ACTIONS(3214), + [anon_sym_PLUS] = ACTIONS(3214), + [anon_sym_DASH] = ACTIONS(3214), + [anon_sym_TILDE] = ACTIONS(3212), + [anon_sym_void] = ACTIONS(3214), + [anon_sym_delete] = ACTIONS(3214), + [anon_sym_PLUS_PLUS] = ACTIONS(3212), + [anon_sym_DASH_DASH] = ACTIONS(3212), + [anon_sym_DQUOTE] = ACTIONS(3212), + [anon_sym_SQUOTE] = ACTIONS(3212), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3212), + [sym_number] = ACTIONS(3212), + [sym_this] = ACTIONS(3214), + [sym_super] = ACTIONS(3214), + [sym_true] = ACTIONS(3214), + [sym_false] = ACTIONS(3214), + [sym_null] = ACTIONS(3214), + [sym_undefined] = ACTIONS(3214), + [anon_sym_AT] = ACTIONS(3212), + [anon_sym_static] = ACTIONS(3214), + [anon_sym_readonly] = ACTIONS(3214), + [anon_sym_get] = ACTIONS(3214), + [anon_sym_set] = ACTIONS(3214), + [anon_sym_declare] = ACTIONS(3214), + [anon_sym_public] = ACTIONS(3214), + [anon_sym_private] = ACTIONS(3214), + [anon_sym_protected] = ACTIONS(3214), + [anon_sym_module] = ACTIONS(3214), + [anon_sym_any] = ACTIONS(3214), + [anon_sym_number] = ACTIONS(3214), + [anon_sym_boolean] = ACTIONS(3214), + [anon_sym_string] = ACTIONS(3214), + [anon_sym_symbol] = ACTIONS(3214), + [anon_sym_abstract] = ACTIONS(3214), + [anon_sym_interface] = ACTIONS(3214), + [anon_sym_enum] = ACTIONS(3214), }, [1105] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3216), + [sym_identifier] = ACTIONS(3218), + [anon_sym_export] = ACTIONS(3218), + [anon_sym_default] = ACTIONS(3218), + [anon_sym_type] = ACTIONS(3218), + [anon_sym_namespace] = ACTIONS(3218), + [anon_sym_LBRACE] = ACTIONS(3216), + [anon_sym_RBRACE] = ACTIONS(3216), + [anon_sym_typeof] = ACTIONS(3218), + [anon_sym_import] = ACTIONS(3218), + [anon_sym_var] = ACTIONS(3218), + [anon_sym_let] = ACTIONS(3218), + [anon_sym_const] = ACTIONS(3218), + [anon_sym_BANG] = ACTIONS(3216), + [anon_sym_else] = ACTIONS(3218), + [anon_sym_if] = ACTIONS(3218), + [anon_sym_switch] = ACTIONS(3218), + [anon_sym_for] = ACTIONS(3218), + [anon_sym_LPAREN] = ACTIONS(3216), + [anon_sym_await] = ACTIONS(3218), + [anon_sym_while] = ACTIONS(3218), + [anon_sym_do] = ACTIONS(3218), + [anon_sym_try] = ACTIONS(3218), + [anon_sym_with] = ACTIONS(3218), + [anon_sym_break] = ACTIONS(3218), + [anon_sym_continue] = ACTIONS(3218), + [anon_sym_debugger] = ACTIONS(3218), + [anon_sym_return] = ACTIONS(3218), + [anon_sym_throw] = ACTIONS(3218), + [anon_sym_SEMI] = ACTIONS(3216), + [anon_sym_case] = ACTIONS(3218), + [anon_sym_yield] = ACTIONS(3218), + [anon_sym_LBRACK] = ACTIONS(3216), + [anon_sym_LT] = ACTIONS(3216), + [anon_sym_SLASH] = ACTIONS(3218), + [anon_sym_class] = ACTIONS(3218), + [anon_sym_async] = ACTIONS(3218), + [anon_sym_function] = ACTIONS(3218), + [anon_sym_new] = ACTIONS(3218), + [anon_sym_PLUS] = ACTIONS(3218), + [anon_sym_DASH] = ACTIONS(3218), + [anon_sym_TILDE] = ACTIONS(3216), + [anon_sym_void] = ACTIONS(3218), + [anon_sym_delete] = ACTIONS(3218), + [anon_sym_PLUS_PLUS] = ACTIONS(3216), + [anon_sym_DASH_DASH] = ACTIONS(3216), + [anon_sym_DQUOTE] = ACTIONS(3216), + [anon_sym_SQUOTE] = ACTIONS(3216), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3216), + [sym_number] = ACTIONS(3216), + [sym_this] = ACTIONS(3218), + [sym_super] = ACTIONS(3218), + [sym_true] = ACTIONS(3218), + [sym_false] = ACTIONS(3218), + [sym_null] = ACTIONS(3218), + [sym_undefined] = ACTIONS(3218), + [anon_sym_AT] = ACTIONS(3216), + [anon_sym_static] = ACTIONS(3218), + [anon_sym_readonly] = ACTIONS(3218), + [anon_sym_get] = ACTIONS(3218), + [anon_sym_set] = ACTIONS(3218), + [anon_sym_declare] = ACTIONS(3218), + [anon_sym_public] = ACTIONS(3218), + [anon_sym_private] = ACTIONS(3218), + [anon_sym_protected] = ACTIONS(3218), + [anon_sym_module] = ACTIONS(3218), + [anon_sym_any] = ACTIONS(3218), + [anon_sym_number] = ACTIONS(3218), + [anon_sym_boolean] = ACTIONS(3218), + [anon_sym_string] = ACTIONS(3218), + [anon_sym_symbol] = ACTIONS(3218), + [anon_sym_abstract] = ACTIONS(3218), + [anon_sym_interface] = ACTIONS(3218), + [anon_sym_enum] = ACTIONS(3218), }, [1106] = { - [ts_builtin_sym_end] = ACTIONS(3226), - [sym_identifier] = ACTIONS(3228), - [anon_sym_export] = ACTIONS(3228), - [anon_sym_default] = ACTIONS(3228), - [anon_sym_type] = ACTIONS(3228), - [anon_sym_namespace] = ACTIONS(3228), - [anon_sym_LBRACE] = ACTIONS(3226), - [anon_sym_RBRACE] = ACTIONS(3226), - [anon_sym_typeof] = ACTIONS(3228), - [anon_sym_import] = ACTIONS(3228), - [anon_sym_var] = ACTIONS(3228), - [anon_sym_let] = ACTIONS(3228), - [anon_sym_const] = ACTIONS(3228), - [anon_sym_BANG] = ACTIONS(3226), - [anon_sym_else] = ACTIONS(3228), - [anon_sym_if] = ACTIONS(3228), - [anon_sym_switch] = ACTIONS(3228), - [anon_sym_for] = ACTIONS(3228), - [anon_sym_LPAREN] = ACTIONS(3226), - [anon_sym_await] = ACTIONS(3228), - [anon_sym_while] = ACTIONS(3228), - [anon_sym_do] = ACTIONS(3228), - [anon_sym_try] = ACTIONS(3228), - [anon_sym_with] = ACTIONS(3228), - [anon_sym_break] = ACTIONS(3228), - [anon_sym_continue] = ACTIONS(3228), - [anon_sym_debugger] = ACTIONS(3228), - [anon_sym_return] = ACTIONS(3228), - [anon_sym_throw] = ACTIONS(3228), - [anon_sym_SEMI] = ACTIONS(3226), - [anon_sym_case] = ACTIONS(3228), - [anon_sym_yield] = ACTIONS(3228), - [anon_sym_LBRACK] = ACTIONS(3226), - [anon_sym_LT] = ACTIONS(3226), - [anon_sym_SLASH] = ACTIONS(3228), - [anon_sym_class] = ACTIONS(3228), - [anon_sym_async] = ACTIONS(3228), - [anon_sym_function] = ACTIONS(3228), - [anon_sym_new] = ACTIONS(3228), - [anon_sym_PLUS] = ACTIONS(3228), - [anon_sym_DASH] = ACTIONS(3228), - [anon_sym_TILDE] = ACTIONS(3226), - [anon_sym_void] = ACTIONS(3228), - [anon_sym_delete] = ACTIONS(3228), - [anon_sym_PLUS_PLUS] = ACTIONS(3226), - [anon_sym_DASH_DASH] = ACTIONS(3226), - [anon_sym_DQUOTE] = ACTIONS(3226), - [anon_sym_SQUOTE] = ACTIONS(3226), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3226), - [sym_number] = ACTIONS(3226), - [sym_this] = ACTIONS(3228), - [sym_super] = ACTIONS(3228), - [sym_true] = ACTIONS(3228), - [sym_false] = ACTIONS(3228), - [sym_null] = ACTIONS(3228), - [sym_undefined] = ACTIONS(3228), - [anon_sym_AT] = ACTIONS(3226), - [anon_sym_static] = ACTIONS(3228), - [anon_sym_readonly] = ACTIONS(3228), - [anon_sym_get] = ACTIONS(3228), - [anon_sym_set] = ACTIONS(3228), - [anon_sym_declare] = ACTIONS(3228), - [anon_sym_public] = ACTIONS(3228), - [anon_sym_private] = ACTIONS(3228), - [anon_sym_protected] = ACTIONS(3228), - [anon_sym_module] = ACTIONS(3228), - [anon_sym_any] = ACTIONS(3228), - [anon_sym_number] = ACTIONS(3228), - [anon_sym_boolean] = ACTIONS(3228), - [anon_sym_string] = ACTIONS(3228), - [anon_sym_symbol] = ACTIONS(3228), - [anon_sym_abstract] = ACTIONS(3228), - [anon_sym_interface] = ACTIONS(3228), - [anon_sym_enum] = ACTIONS(3228), + [ts_builtin_sym_end] = ACTIONS(3220), + [sym_identifier] = ACTIONS(3222), + [anon_sym_export] = ACTIONS(3222), + [anon_sym_default] = ACTIONS(3222), + [anon_sym_type] = ACTIONS(3222), + [anon_sym_namespace] = ACTIONS(3222), + [anon_sym_LBRACE] = ACTIONS(3220), + [anon_sym_RBRACE] = ACTIONS(3220), + [anon_sym_typeof] = ACTIONS(3222), + [anon_sym_import] = ACTIONS(3222), + [anon_sym_var] = ACTIONS(3222), + [anon_sym_let] = ACTIONS(3222), + [anon_sym_const] = ACTIONS(3222), + [anon_sym_BANG] = ACTIONS(3220), + [anon_sym_else] = ACTIONS(3222), + [anon_sym_if] = ACTIONS(3222), + [anon_sym_switch] = ACTIONS(3222), + [anon_sym_for] = ACTIONS(3222), + [anon_sym_LPAREN] = ACTIONS(3220), + [anon_sym_await] = ACTIONS(3222), + [anon_sym_while] = ACTIONS(3222), + [anon_sym_do] = ACTIONS(3222), + [anon_sym_try] = ACTIONS(3222), + [anon_sym_with] = ACTIONS(3222), + [anon_sym_break] = ACTIONS(3222), + [anon_sym_continue] = ACTIONS(3222), + [anon_sym_debugger] = ACTIONS(3222), + [anon_sym_return] = ACTIONS(3222), + [anon_sym_throw] = ACTIONS(3222), + [anon_sym_SEMI] = ACTIONS(3220), + [anon_sym_case] = ACTIONS(3222), + [anon_sym_yield] = ACTIONS(3222), + [anon_sym_LBRACK] = ACTIONS(3220), + [anon_sym_LT] = ACTIONS(3220), + [anon_sym_SLASH] = ACTIONS(3222), + [anon_sym_class] = ACTIONS(3222), + [anon_sym_async] = ACTIONS(3222), + [anon_sym_function] = ACTIONS(3222), + [anon_sym_new] = ACTIONS(3222), + [anon_sym_PLUS] = ACTIONS(3222), + [anon_sym_DASH] = ACTIONS(3222), + [anon_sym_TILDE] = ACTIONS(3220), + [anon_sym_void] = ACTIONS(3222), + [anon_sym_delete] = ACTIONS(3222), + [anon_sym_PLUS_PLUS] = ACTIONS(3220), + [anon_sym_DASH_DASH] = ACTIONS(3220), + [anon_sym_DQUOTE] = ACTIONS(3220), + [anon_sym_SQUOTE] = ACTIONS(3220), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3220), + [sym_number] = ACTIONS(3220), + [sym_this] = ACTIONS(3222), + [sym_super] = ACTIONS(3222), + [sym_true] = ACTIONS(3222), + [sym_false] = ACTIONS(3222), + [sym_null] = ACTIONS(3222), + [sym_undefined] = ACTIONS(3222), + [anon_sym_AT] = ACTIONS(3220), + [anon_sym_static] = ACTIONS(3222), + [anon_sym_readonly] = ACTIONS(3222), + [anon_sym_get] = ACTIONS(3222), + [anon_sym_set] = ACTIONS(3222), + [anon_sym_declare] = ACTIONS(3222), + [anon_sym_public] = ACTIONS(3222), + [anon_sym_private] = ACTIONS(3222), + [anon_sym_protected] = ACTIONS(3222), + [anon_sym_module] = ACTIONS(3222), + [anon_sym_any] = ACTIONS(3222), + [anon_sym_number] = ACTIONS(3222), + [anon_sym_boolean] = ACTIONS(3222), + [anon_sym_string] = ACTIONS(3222), + [anon_sym_symbol] = ACTIONS(3222), + [anon_sym_abstract] = ACTIONS(3222), + [anon_sym_interface] = ACTIONS(3222), + [anon_sym_enum] = ACTIONS(3222), }, [1107] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1108] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3224), + [sym_identifier] = ACTIONS(3226), + [anon_sym_export] = ACTIONS(3226), + [anon_sym_default] = ACTIONS(3226), + [anon_sym_type] = ACTIONS(3226), + [anon_sym_namespace] = ACTIONS(3226), + [anon_sym_LBRACE] = ACTIONS(3224), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_typeof] = ACTIONS(3226), + [anon_sym_import] = ACTIONS(3226), + [anon_sym_var] = ACTIONS(3226), + [anon_sym_let] = ACTIONS(3226), + [anon_sym_const] = ACTIONS(3226), + [anon_sym_BANG] = ACTIONS(3224), + [anon_sym_else] = ACTIONS(3226), + [anon_sym_if] = ACTIONS(3226), + [anon_sym_switch] = ACTIONS(3226), + [anon_sym_for] = ACTIONS(3226), + [anon_sym_LPAREN] = ACTIONS(3224), + [anon_sym_await] = ACTIONS(3226), + [anon_sym_while] = ACTIONS(3226), + [anon_sym_do] = ACTIONS(3226), + [anon_sym_try] = ACTIONS(3226), + [anon_sym_with] = ACTIONS(3226), + [anon_sym_break] = ACTIONS(3226), + [anon_sym_continue] = ACTIONS(3226), + [anon_sym_debugger] = ACTIONS(3226), + [anon_sym_return] = ACTIONS(3226), + [anon_sym_throw] = ACTIONS(3226), + [anon_sym_SEMI] = ACTIONS(3224), + [anon_sym_case] = ACTIONS(3226), + [anon_sym_yield] = ACTIONS(3226), + [anon_sym_LBRACK] = ACTIONS(3224), + [anon_sym_LT] = ACTIONS(3224), + [anon_sym_SLASH] = ACTIONS(3226), + [anon_sym_class] = ACTIONS(3226), + [anon_sym_async] = ACTIONS(3226), + [anon_sym_function] = ACTIONS(3226), + [anon_sym_new] = ACTIONS(3226), + [anon_sym_PLUS] = ACTIONS(3226), + [anon_sym_DASH] = ACTIONS(3226), + [anon_sym_TILDE] = ACTIONS(3224), + [anon_sym_void] = ACTIONS(3226), + [anon_sym_delete] = ACTIONS(3226), + [anon_sym_PLUS_PLUS] = ACTIONS(3224), + [anon_sym_DASH_DASH] = ACTIONS(3224), + [anon_sym_DQUOTE] = ACTIONS(3224), + [anon_sym_SQUOTE] = ACTIONS(3224), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3224), + [sym_number] = ACTIONS(3224), + [sym_this] = ACTIONS(3226), + [sym_super] = ACTIONS(3226), + [sym_true] = ACTIONS(3226), + [sym_false] = ACTIONS(3226), + [sym_null] = ACTIONS(3226), + [sym_undefined] = ACTIONS(3226), + [anon_sym_AT] = ACTIONS(3224), + [anon_sym_static] = ACTIONS(3226), + [anon_sym_readonly] = ACTIONS(3226), + [anon_sym_get] = ACTIONS(3226), + [anon_sym_set] = ACTIONS(3226), + [anon_sym_declare] = ACTIONS(3226), + [anon_sym_public] = ACTIONS(3226), + [anon_sym_private] = ACTIONS(3226), + [anon_sym_protected] = ACTIONS(3226), + [anon_sym_module] = ACTIONS(3226), + [anon_sym_any] = ACTIONS(3226), + [anon_sym_number] = ACTIONS(3226), + [anon_sym_boolean] = ACTIONS(3226), + [anon_sym_string] = ACTIONS(3226), + [anon_sym_symbol] = ACTIONS(3226), + [anon_sym_abstract] = ACTIONS(3226), + [anon_sym_interface] = ACTIONS(3226), + [anon_sym_enum] = ACTIONS(3226), }, [1109] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3228), + [sym_identifier] = ACTIONS(3230), + [anon_sym_export] = ACTIONS(3230), + [anon_sym_default] = ACTIONS(3230), + [anon_sym_type] = ACTIONS(3230), + [anon_sym_namespace] = ACTIONS(3230), + [anon_sym_LBRACE] = ACTIONS(3228), + [anon_sym_RBRACE] = ACTIONS(3228), + [anon_sym_typeof] = ACTIONS(3230), + [anon_sym_import] = ACTIONS(3230), + [anon_sym_var] = ACTIONS(3230), + [anon_sym_let] = ACTIONS(3230), + [anon_sym_const] = ACTIONS(3230), + [anon_sym_BANG] = ACTIONS(3228), + [anon_sym_else] = ACTIONS(3230), + [anon_sym_if] = ACTIONS(3230), + [anon_sym_switch] = ACTIONS(3230), + [anon_sym_for] = ACTIONS(3230), + [anon_sym_LPAREN] = ACTIONS(3228), + [anon_sym_await] = ACTIONS(3230), + [anon_sym_while] = ACTIONS(3230), + [anon_sym_do] = ACTIONS(3230), + [anon_sym_try] = ACTIONS(3230), + [anon_sym_with] = ACTIONS(3230), + [anon_sym_break] = ACTIONS(3230), + [anon_sym_continue] = ACTIONS(3230), + [anon_sym_debugger] = ACTIONS(3230), + [anon_sym_return] = ACTIONS(3230), + [anon_sym_throw] = ACTIONS(3230), + [anon_sym_SEMI] = ACTIONS(3228), + [anon_sym_case] = ACTIONS(3230), + [anon_sym_yield] = ACTIONS(3230), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LT] = ACTIONS(3228), + [anon_sym_SLASH] = ACTIONS(3230), + [anon_sym_class] = ACTIONS(3230), + [anon_sym_async] = ACTIONS(3230), + [anon_sym_function] = ACTIONS(3230), + [anon_sym_new] = ACTIONS(3230), + [anon_sym_PLUS] = ACTIONS(3230), + [anon_sym_DASH] = ACTIONS(3230), + [anon_sym_TILDE] = ACTIONS(3228), + [anon_sym_void] = ACTIONS(3230), + [anon_sym_delete] = ACTIONS(3230), + [anon_sym_PLUS_PLUS] = ACTIONS(3228), + [anon_sym_DASH_DASH] = ACTIONS(3228), + [anon_sym_DQUOTE] = ACTIONS(3228), + [anon_sym_SQUOTE] = ACTIONS(3228), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3228), + [sym_number] = ACTIONS(3228), + [sym_this] = ACTIONS(3230), + [sym_super] = ACTIONS(3230), + [sym_true] = ACTIONS(3230), + [sym_false] = ACTIONS(3230), + [sym_null] = ACTIONS(3230), + [sym_undefined] = ACTIONS(3230), + [anon_sym_AT] = ACTIONS(3228), + [anon_sym_static] = ACTIONS(3230), + [anon_sym_readonly] = ACTIONS(3230), + [anon_sym_get] = ACTIONS(3230), + [anon_sym_set] = ACTIONS(3230), + [anon_sym_declare] = ACTIONS(3230), + [anon_sym_public] = ACTIONS(3230), + [anon_sym_private] = ACTIONS(3230), + [anon_sym_protected] = ACTIONS(3230), + [anon_sym_module] = ACTIONS(3230), + [anon_sym_any] = ACTIONS(3230), + [anon_sym_number] = ACTIONS(3230), + [anon_sym_boolean] = ACTIONS(3230), + [anon_sym_string] = ACTIONS(3230), + [anon_sym_symbol] = ACTIONS(3230), + [anon_sym_abstract] = ACTIONS(3230), + [anon_sym_interface] = ACTIONS(3230), + [anon_sym_enum] = ACTIONS(3230), }, [1110] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1111] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1112] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3232), + [sym_identifier] = ACTIONS(3234), + [anon_sym_export] = ACTIONS(3234), + [anon_sym_default] = ACTIONS(3234), + [anon_sym_type] = ACTIONS(3234), + [anon_sym_namespace] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3232), + [anon_sym_RBRACE] = ACTIONS(3232), + [anon_sym_typeof] = ACTIONS(3234), + [anon_sym_import] = ACTIONS(3234), + [anon_sym_var] = ACTIONS(3234), + [anon_sym_let] = ACTIONS(3234), + [anon_sym_const] = ACTIONS(3234), + [anon_sym_BANG] = ACTIONS(3232), + [anon_sym_else] = ACTIONS(3234), + [anon_sym_if] = ACTIONS(3234), + [anon_sym_switch] = ACTIONS(3234), + [anon_sym_for] = ACTIONS(3234), + [anon_sym_LPAREN] = ACTIONS(3232), + [anon_sym_await] = ACTIONS(3234), + [anon_sym_while] = ACTIONS(3234), + [anon_sym_do] = ACTIONS(3234), + [anon_sym_try] = ACTIONS(3234), + [anon_sym_with] = ACTIONS(3234), + [anon_sym_break] = ACTIONS(3234), + [anon_sym_continue] = ACTIONS(3234), + [anon_sym_debugger] = ACTIONS(3234), + [anon_sym_return] = ACTIONS(3234), + [anon_sym_throw] = ACTIONS(3234), + [anon_sym_SEMI] = ACTIONS(3232), + [anon_sym_case] = ACTIONS(3234), + [anon_sym_yield] = ACTIONS(3234), + [anon_sym_LBRACK] = ACTIONS(3232), + [anon_sym_LT] = ACTIONS(3232), + [anon_sym_SLASH] = ACTIONS(3234), + [anon_sym_class] = ACTIONS(3234), + [anon_sym_async] = ACTIONS(3234), + [anon_sym_function] = ACTIONS(3234), + [anon_sym_new] = ACTIONS(3234), + [anon_sym_PLUS] = ACTIONS(3234), + [anon_sym_DASH] = ACTIONS(3234), + [anon_sym_TILDE] = ACTIONS(3232), + [anon_sym_void] = ACTIONS(3234), + [anon_sym_delete] = ACTIONS(3234), + [anon_sym_PLUS_PLUS] = ACTIONS(3232), + [anon_sym_DASH_DASH] = ACTIONS(3232), + [anon_sym_DQUOTE] = ACTIONS(3232), + [anon_sym_SQUOTE] = ACTIONS(3232), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3232), + [sym_number] = ACTIONS(3232), + [sym_this] = ACTIONS(3234), + [sym_super] = ACTIONS(3234), + [sym_true] = ACTIONS(3234), + [sym_false] = ACTIONS(3234), + [sym_null] = ACTIONS(3234), + [sym_undefined] = ACTIONS(3234), + [anon_sym_AT] = ACTIONS(3232), + [anon_sym_static] = ACTIONS(3234), + [anon_sym_readonly] = ACTIONS(3234), + [anon_sym_get] = ACTIONS(3234), + [anon_sym_set] = ACTIONS(3234), + [anon_sym_declare] = ACTIONS(3234), + [anon_sym_public] = ACTIONS(3234), + [anon_sym_private] = ACTIONS(3234), + [anon_sym_protected] = ACTIONS(3234), + [anon_sym_module] = ACTIONS(3234), + [anon_sym_any] = ACTIONS(3234), + [anon_sym_number] = ACTIONS(3234), + [anon_sym_boolean] = ACTIONS(3234), + [anon_sym_string] = ACTIONS(3234), + [anon_sym_symbol] = ACTIONS(3234), + [anon_sym_abstract] = ACTIONS(3234), + [anon_sym_interface] = ACTIONS(3234), + [anon_sym_enum] = ACTIONS(3234), }, [1113] = { - [sym_object_pattern] = STATE(4129), - [sym_array_pattern] = STATE(4129), - [sym_nested_identifier] = STATE(5804), - [sym__destructuring_pattern] = STATE(4129), - [sym_string] = STATE(3944), - [sym_formal_parameters] = STATE(5709), - [sym_pattern] = STATE(5433), - [sym_rest_pattern] = STATE(4129), - [sym_nested_type_identifier] = STATE(3890), - [sym__type] = STATE(4049), - [sym_constructor_type] = STATE(4049), - [sym__primary_type] = STATE(3954), - [sym_infer_type] = STATE(4049), - [sym_conditional_type] = STATE(3945), - [sym_generic_type] = STATE(3945), - [sym_type_query] = STATE(3945), - [sym_index_type_query] = STATE(3945), - [sym_lookup_type] = STATE(3945), - [sym_literal_type] = STATE(3945), - [sym__number] = STATE(3963), - [sym_existential_type] = STATE(3945), - [sym_flow_maybe_type] = STATE(3945), - [sym_parenthesized_type] = STATE(3945), - [sym_predefined_type] = STATE(3945), - [sym_object_type] = STATE(3945), - [sym_type_parameters] = STATE(5251), - [sym_array_type] = STATE(3945), - [sym_tuple_type] = STATE(3945), - [sym_readonly_type] = STATE(4049), - [sym_union_type] = STATE(4049), - [sym_intersection_type] = STATE(4049), - [sym_function_type] = STATE(4049), - [sym_identifier] = ACTIONS(3230), - [anon_sym_export] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(698), - [anon_sym_type] = ACTIONS(1612), - [anon_sym_namespace] = ACTIONS(1612), - [anon_sym_LBRACE] = ACTIONS(3232), - [anon_sym_typeof] = ACTIONS(2002), - [anon_sym_LPAREN] = ACTIONS(2004), - [anon_sym_LBRACK] = ACTIONS(3234), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_async] = ACTIONS(1612), - [anon_sym_new] = ACTIONS(2008), - [anon_sym_DOT_DOT_DOT] = ACTIONS(670), - [anon_sym_QMARK] = ACTIONS(714), - [anon_sym_AMP] = ACTIONS(716), - [anon_sym_PIPE] = ACTIONS(718), - [anon_sym_PLUS] = ACTIONS(3236), - [anon_sym_DASH] = ACTIONS(3236), - [anon_sym_void] = ACTIONS(2018), - [anon_sym_DQUOTE] = ACTIONS(2020), - [anon_sym_SQUOTE] = ACTIONS(2022), - [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(2024), - [sym_this] = ACTIONS(2026), - [sym_true] = ACTIONS(2028), - [sym_false] = ACTIONS(2028), - [anon_sym_static] = ACTIONS(1612), + [ts_builtin_sym_end] = ACTIONS(3236), + [sym_identifier] = ACTIONS(3238), + [anon_sym_export] = ACTIONS(3238), + [anon_sym_default] = ACTIONS(3238), + [anon_sym_type] = ACTIONS(3238), + [anon_sym_namespace] = ACTIONS(3238), + [anon_sym_LBRACE] = ACTIONS(3236), + [anon_sym_RBRACE] = ACTIONS(3236), + [anon_sym_typeof] = ACTIONS(3238), + [anon_sym_import] = ACTIONS(3238), + [anon_sym_var] = ACTIONS(3238), + [anon_sym_let] = ACTIONS(3238), + [anon_sym_const] = ACTIONS(3238), + [anon_sym_BANG] = ACTIONS(3236), + [anon_sym_else] = ACTIONS(3238), + [anon_sym_if] = ACTIONS(3238), + [anon_sym_switch] = ACTIONS(3238), + [anon_sym_for] = ACTIONS(3238), + [anon_sym_LPAREN] = ACTIONS(3236), + [anon_sym_await] = ACTIONS(3238), + [anon_sym_while] = ACTIONS(3238), + [anon_sym_do] = ACTIONS(3238), + [anon_sym_try] = ACTIONS(3238), + [anon_sym_with] = ACTIONS(3238), + [anon_sym_break] = ACTIONS(3238), + [anon_sym_continue] = ACTIONS(3238), + [anon_sym_debugger] = ACTIONS(3238), + [anon_sym_return] = ACTIONS(3238), + [anon_sym_throw] = ACTIONS(3238), + [anon_sym_SEMI] = ACTIONS(3236), + [anon_sym_case] = ACTIONS(3238), + [anon_sym_yield] = ACTIONS(3238), + [anon_sym_LBRACK] = ACTIONS(3236), + [anon_sym_LT] = ACTIONS(3236), + [anon_sym_SLASH] = ACTIONS(3238), + [anon_sym_class] = ACTIONS(3238), + [anon_sym_async] = ACTIONS(3238), + [anon_sym_function] = ACTIONS(3238), + [anon_sym_new] = ACTIONS(3238), + [anon_sym_PLUS] = ACTIONS(3238), + [anon_sym_DASH] = ACTIONS(3238), + [anon_sym_TILDE] = ACTIONS(3236), + [anon_sym_void] = ACTIONS(3238), + [anon_sym_delete] = ACTIONS(3238), + [anon_sym_PLUS_PLUS] = ACTIONS(3236), + [anon_sym_DASH_DASH] = ACTIONS(3236), + [anon_sym_DQUOTE] = ACTIONS(3236), + [anon_sym_SQUOTE] = ACTIONS(3236), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3236), + [sym_number] = ACTIONS(3236), + [sym_this] = ACTIONS(3238), + [sym_super] = ACTIONS(3238), + [sym_true] = ACTIONS(3238), + [sym_false] = ACTIONS(3238), + [sym_null] = ACTIONS(3238), + [sym_undefined] = ACTIONS(3238), + [anon_sym_AT] = ACTIONS(3236), + [anon_sym_static] = ACTIONS(3238), [anon_sym_readonly] = ACTIONS(3238), - [anon_sym_get] = ACTIONS(1612), - [anon_sym_set] = ACTIONS(1612), - [anon_sym_declare] = ACTIONS(1612), - [anon_sym_public] = ACTIONS(1612), - [anon_sym_private] = ACTIONS(1612), - [anon_sym_protected] = ACTIONS(1612), - [anon_sym_module] = ACTIONS(1612), - [anon_sym_any] = ACTIONS(3240), - [anon_sym_number] = ACTIONS(3240), - [anon_sym_boolean] = ACTIONS(3240), - [anon_sym_string] = ACTIONS(3240), - [anon_sym_symbol] = ACTIONS(3240), - [anon_sym_infer] = ACTIONS(734), - [anon_sym_keyof] = ACTIONS(736), - [anon_sym_LBRACE_PIPE] = ACTIONS(738), + [anon_sym_get] = ACTIONS(3238), + [anon_sym_set] = ACTIONS(3238), + [anon_sym_declare] = ACTIONS(3238), + [anon_sym_public] = ACTIONS(3238), + [anon_sym_private] = ACTIONS(3238), + [anon_sym_protected] = ACTIONS(3238), + [anon_sym_module] = ACTIONS(3238), + [anon_sym_any] = ACTIONS(3238), + [anon_sym_number] = ACTIONS(3238), + [anon_sym_boolean] = ACTIONS(3238), + [anon_sym_string] = ACTIONS(3238), + [anon_sym_symbol] = ACTIONS(3238), + [anon_sym_abstract] = ACTIONS(3238), + [anon_sym_interface] = ACTIONS(3238), + [anon_sym_enum] = ACTIONS(3238), }, [1114] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3240), + [sym_identifier] = ACTIONS(3242), + [anon_sym_export] = ACTIONS(3242), + [anon_sym_default] = ACTIONS(3242), + [anon_sym_type] = ACTIONS(3242), + [anon_sym_namespace] = ACTIONS(3242), + [anon_sym_LBRACE] = ACTIONS(3240), + [anon_sym_RBRACE] = ACTIONS(3240), + [anon_sym_typeof] = ACTIONS(3242), + [anon_sym_import] = ACTIONS(3242), + [anon_sym_var] = ACTIONS(3242), + [anon_sym_let] = ACTIONS(3242), + [anon_sym_const] = ACTIONS(3242), + [anon_sym_BANG] = ACTIONS(3240), + [anon_sym_else] = ACTIONS(3242), + [anon_sym_if] = ACTIONS(3242), + [anon_sym_switch] = ACTIONS(3242), + [anon_sym_for] = ACTIONS(3242), + [anon_sym_LPAREN] = ACTIONS(3240), + [anon_sym_await] = ACTIONS(3242), + [anon_sym_while] = ACTIONS(3242), + [anon_sym_do] = ACTIONS(3242), + [anon_sym_try] = ACTIONS(3242), + [anon_sym_with] = ACTIONS(3242), + [anon_sym_break] = ACTIONS(3242), + [anon_sym_continue] = ACTIONS(3242), + [anon_sym_debugger] = ACTIONS(3242), + [anon_sym_return] = ACTIONS(3242), + [anon_sym_throw] = ACTIONS(3242), + [anon_sym_SEMI] = ACTIONS(3240), + [anon_sym_case] = ACTIONS(3242), + [anon_sym_yield] = ACTIONS(3242), + [anon_sym_LBRACK] = ACTIONS(3240), + [anon_sym_LT] = ACTIONS(3240), + [anon_sym_SLASH] = ACTIONS(3242), + [anon_sym_class] = ACTIONS(3242), + [anon_sym_async] = ACTIONS(3242), + [anon_sym_function] = ACTIONS(3242), + [anon_sym_new] = ACTIONS(3242), + [anon_sym_PLUS] = ACTIONS(3242), + [anon_sym_DASH] = ACTIONS(3242), + [anon_sym_TILDE] = ACTIONS(3240), + [anon_sym_void] = ACTIONS(3242), + [anon_sym_delete] = ACTIONS(3242), + [anon_sym_PLUS_PLUS] = ACTIONS(3240), + [anon_sym_DASH_DASH] = ACTIONS(3240), + [anon_sym_DQUOTE] = ACTIONS(3240), + [anon_sym_SQUOTE] = ACTIONS(3240), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3240), + [sym_number] = ACTIONS(3240), + [sym_this] = ACTIONS(3242), + [sym_super] = ACTIONS(3242), + [sym_true] = ACTIONS(3242), + [sym_false] = ACTIONS(3242), + [sym_null] = ACTIONS(3242), + [sym_undefined] = ACTIONS(3242), + [anon_sym_AT] = ACTIONS(3240), + [anon_sym_static] = ACTIONS(3242), + [anon_sym_readonly] = ACTIONS(3242), + [anon_sym_get] = ACTIONS(3242), + [anon_sym_set] = ACTIONS(3242), + [anon_sym_declare] = ACTIONS(3242), + [anon_sym_public] = ACTIONS(3242), + [anon_sym_private] = ACTIONS(3242), + [anon_sym_protected] = ACTIONS(3242), + [anon_sym_module] = ACTIONS(3242), + [anon_sym_any] = ACTIONS(3242), + [anon_sym_number] = ACTIONS(3242), + [anon_sym_boolean] = ACTIONS(3242), + [anon_sym_string] = ACTIONS(3242), + [anon_sym_symbol] = ACTIONS(3242), + [anon_sym_abstract] = ACTIONS(3242), + [anon_sym_interface] = ACTIONS(3242), + [anon_sym_enum] = ACTIONS(3242), }, [1115] = { - [ts_builtin_sym_end] = ACTIONS(3242), - [sym_identifier] = ACTIONS(3244), - [anon_sym_export] = ACTIONS(3244), - [anon_sym_default] = ACTIONS(3244), - [anon_sym_type] = ACTIONS(3244), - [anon_sym_namespace] = ACTIONS(3244), - [anon_sym_LBRACE] = ACTIONS(3242), - [anon_sym_RBRACE] = ACTIONS(3242), - [anon_sym_typeof] = ACTIONS(3244), - [anon_sym_import] = ACTIONS(3244), - [anon_sym_var] = ACTIONS(3244), - [anon_sym_let] = ACTIONS(3244), - [anon_sym_const] = ACTIONS(3244), - [anon_sym_BANG] = ACTIONS(3242), - [anon_sym_else] = ACTIONS(3244), - [anon_sym_if] = ACTIONS(3244), - [anon_sym_switch] = ACTIONS(3244), - [anon_sym_for] = ACTIONS(3244), - [anon_sym_LPAREN] = ACTIONS(3242), - [anon_sym_await] = ACTIONS(3244), - [anon_sym_while] = ACTIONS(3244), - [anon_sym_do] = ACTIONS(3244), - [anon_sym_try] = ACTIONS(3244), - [anon_sym_with] = ACTIONS(3244), - [anon_sym_break] = ACTIONS(3244), - [anon_sym_continue] = ACTIONS(3244), - [anon_sym_debugger] = ACTIONS(3244), - [anon_sym_return] = ACTIONS(3244), - [anon_sym_throw] = ACTIONS(3244), - [anon_sym_SEMI] = ACTIONS(3242), - [anon_sym_case] = ACTIONS(3244), - [anon_sym_yield] = ACTIONS(3244), - [anon_sym_LBRACK] = ACTIONS(3242), - [anon_sym_LT] = ACTIONS(3242), - [anon_sym_SLASH] = ACTIONS(3244), - [anon_sym_class] = ACTIONS(3244), - [anon_sym_async] = ACTIONS(3244), - [anon_sym_function] = ACTIONS(3244), - [anon_sym_new] = ACTIONS(3244), - [anon_sym_PLUS] = ACTIONS(3244), - [anon_sym_DASH] = ACTIONS(3244), - [anon_sym_TILDE] = ACTIONS(3242), - [anon_sym_void] = ACTIONS(3244), - [anon_sym_delete] = ACTIONS(3244), - [anon_sym_PLUS_PLUS] = ACTIONS(3242), - [anon_sym_DASH_DASH] = ACTIONS(3242), - [anon_sym_DQUOTE] = ACTIONS(3242), - [anon_sym_SQUOTE] = ACTIONS(3242), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3242), - [sym_number] = ACTIONS(3242), - [sym_this] = ACTIONS(3244), - [sym_super] = ACTIONS(3244), - [sym_true] = ACTIONS(3244), - [sym_false] = ACTIONS(3244), - [sym_null] = ACTIONS(3244), - [sym_undefined] = ACTIONS(3244), - [anon_sym_AT] = ACTIONS(3242), - [anon_sym_static] = ACTIONS(3244), - [anon_sym_readonly] = ACTIONS(3244), - [anon_sym_get] = ACTIONS(3244), - [anon_sym_set] = ACTIONS(3244), - [anon_sym_declare] = ACTIONS(3244), - [anon_sym_public] = ACTIONS(3244), - [anon_sym_private] = ACTIONS(3244), - [anon_sym_protected] = ACTIONS(3244), - [anon_sym_module] = ACTIONS(3244), - [anon_sym_any] = ACTIONS(3244), - [anon_sym_number] = ACTIONS(3244), - [anon_sym_boolean] = ACTIONS(3244), - [anon_sym_string] = ACTIONS(3244), - [anon_sym_symbol] = ACTIONS(3244), - [anon_sym_abstract] = ACTIONS(3244), - [anon_sym_interface] = ACTIONS(3244), - [anon_sym_enum] = ACTIONS(3244), + [ts_builtin_sym_end] = ACTIONS(3244), + [sym_identifier] = ACTIONS(3246), + [anon_sym_export] = ACTIONS(3246), + [anon_sym_default] = ACTIONS(3246), + [anon_sym_type] = ACTIONS(3246), + [anon_sym_namespace] = ACTIONS(3246), + [anon_sym_LBRACE] = ACTIONS(3244), + [anon_sym_RBRACE] = ACTIONS(3244), + [anon_sym_typeof] = ACTIONS(3246), + [anon_sym_import] = ACTIONS(3246), + [anon_sym_var] = ACTIONS(3246), + [anon_sym_let] = ACTIONS(3246), + [anon_sym_const] = ACTIONS(3246), + [anon_sym_BANG] = ACTIONS(3244), + [anon_sym_else] = ACTIONS(3246), + [anon_sym_if] = ACTIONS(3246), + [anon_sym_switch] = ACTIONS(3246), + [anon_sym_for] = ACTIONS(3246), + [anon_sym_LPAREN] = ACTIONS(3244), + [anon_sym_await] = ACTIONS(3246), + [anon_sym_while] = ACTIONS(3246), + [anon_sym_do] = ACTIONS(3246), + [anon_sym_try] = ACTIONS(3246), + [anon_sym_with] = ACTIONS(3246), + [anon_sym_break] = ACTIONS(3246), + [anon_sym_continue] = ACTIONS(3246), + [anon_sym_debugger] = ACTIONS(3246), + [anon_sym_return] = ACTIONS(3246), + [anon_sym_throw] = ACTIONS(3246), + [anon_sym_SEMI] = ACTIONS(3244), + [anon_sym_case] = ACTIONS(3246), + [anon_sym_yield] = ACTIONS(3246), + [anon_sym_LBRACK] = ACTIONS(3244), + [anon_sym_LT] = ACTIONS(3244), + [anon_sym_SLASH] = ACTIONS(3246), + [anon_sym_class] = ACTIONS(3246), + [anon_sym_async] = ACTIONS(3246), + [anon_sym_function] = ACTIONS(3246), + [anon_sym_new] = ACTIONS(3246), + [anon_sym_PLUS] = ACTIONS(3246), + [anon_sym_DASH] = ACTIONS(3246), + [anon_sym_TILDE] = ACTIONS(3244), + [anon_sym_void] = ACTIONS(3246), + [anon_sym_delete] = ACTIONS(3246), + [anon_sym_PLUS_PLUS] = ACTIONS(3244), + [anon_sym_DASH_DASH] = ACTIONS(3244), + [anon_sym_DQUOTE] = ACTIONS(3244), + [anon_sym_SQUOTE] = ACTIONS(3244), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3244), + [sym_number] = ACTIONS(3244), + [sym_this] = ACTIONS(3246), + [sym_super] = ACTIONS(3246), + [sym_true] = ACTIONS(3246), + [sym_false] = ACTIONS(3246), + [sym_null] = ACTIONS(3246), + [sym_undefined] = ACTIONS(3246), + [anon_sym_AT] = ACTIONS(3244), + [anon_sym_static] = ACTIONS(3246), + [anon_sym_readonly] = ACTIONS(3246), + [anon_sym_get] = ACTIONS(3246), + [anon_sym_set] = ACTIONS(3246), + [anon_sym_declare] = ACTIONS(3246), + [anon_sym_public] = ACTIONS(3246), + [anon_sym_private] = ACTIONS(3246), + [anon_sym_protected] = ACTIONS(3246), + [anon_sym_module] = ACTIONS(3246), + [anon_sym_any] = ACTIONS(3246), + [anon_sym_number] = ACTIONS(3246), + [anon_sym_boolean] = ACTIONS(3246), + [anon_sym_string] = ACTIONS(3246), + [anon_sym_symbol] = ACTIONS(3246), + [anon_sym_abstract] = ACTIONS(3246), + [anon_sym_interface] = ACTIONS(3246), + [anon_sym_enum] = ACTIONS(3246), }, [1116] = { - [ts_builtin_sym_end] = ACTIONS(3246), - [sym_identifier] = ACTIONS(3248), - [anon_sym_export] = ACTIONS(3248), - [anon_sym_default] = ACTIONS(3248), - [anon_sym_type] = ACTIONS(3248), - [anon_sym_namespace] = ACTIONS(3248), - [anon_sym_LBRACE] = ACTIONS(3246), - [anon_sym_RBRACE] = ACTIONS(3246), - [anon_sym_typeof] = ACTIONS(3248), - [anon_sym_import] = ACTIONS(3248), - [anon_sym_var] = ACTIONS(3248), - [anon_sym_let] = ACTIONS(3248), - [anon_sym_const] = ACTIONS(3248), - [anon_sym_BANG] = ACTIONS(3246), - [anon_sym_else] = ACTIONS(3248), - [anon_sym_if] = ACTIONS(3248), - [anon_sym_switch] = ACTIONS(3248), - [anon_sym_for] = ACTIONS(3248), - [anon_sym_LPAREN] = ACTIONS(3246), - [anon_sym_await] = ACTIONS(3248), - [anon_sym_while] = ACTIONS(3248), - [anon_sym_do] = ACTIONS(3248), - [anon_sym_try] = ACTIONS(3248), - [anon_sym_with] = ACTIONS(3248), - [anon_sym_break] = ACTIONS(3248), - [anon_sym_continue] = ACTIONS(3248), - [anon_sym_debugger] = ACTIONS(3248), - [anon_sym_return] = ACTIONS(3248), - [anon_sym_throw] = ACTIONS(3248), - [anon_sym_SEMI] = ACTIONS(3246), - [anon_sym_case] = ACTIONS(3248), - [anon_sym_yield] = ACTIONS(3248), - [anon_sym_LBRACK] = ACTIONS(3246), - [anon_sym_LT] = ACTIONS(3246), - [anon_sym_SLASH] = ACTIONS(3248), - [anon_sym_class] = ACTIONS(3248), - [anon_sym_async] = ACTIONS(3248), - [anon_sym_function] = ACTIONS(3248), - [anon_sym_new] = ACTIONS(3248), - [anon_sym_PLUS] = ACTIONS(3248), - [anon_sym_DASH] = ACTIONS(3248), - [anon_sym_TILDE] = ACTIONS(3246), - [anon_sym_void] = ACTIONS(3248), - [anon_sym_delete] = ACTIONS(3248), - [anon_sym_PLUS_PLUS] = ACTIONS(3246), - [anon_sym_DASH_DASH] = ACTIONS(3246), - [anon_sym_DQUOTE] = ACTIONS(3246), - [anon_sym_SQUOTE] = ACTIONS(3246), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3246), - [sym_number] = ACTIONS(3246), - [sym_this] = ACTIONS(3248), - [sym_super] = ACTIONS(3248), - [sym_true] = ACTIONS(3248), - [sym_false] = ACTIONS(3248), - [sym_null] = ACTIONS(3248), - [sym_undefined] = ACTIONS(3248), - [anon_sym_AT] = ACTIONS(3246), - [anon_sym_static] = ACTIONS(3248), - [anon_sym_readonly] = ACTIONS(3248), - [anon_sym_get] = ACTIONS(3248), - [anon_sym_set] = ACTIONS(3248), - [anon_sym_declare] = ACTIONS(3248), - [anon_sym_public] = ACTIONS(3248), - [anon_sym_private] = ACTIONS(3248), - [anon_sym_protected] = ACTIONS(3248), - [anon_sym_module] = ACTIONS(3248), - [anon_sym_any] = ACTIONS(3248), - [anon_sym_number] = ACTIONS(3248), - [anon_sym_boolean] = ACTIONS(3248), - [anon_sym_string] = ACTIONS(3248), - [anon_sym_symbol] = ACTIONS(3248), - [anon_sym_abstract] = ACTIONS(3248), - [anon_sym_interface] = ACTIONS(3248), - [anon_sym_enum] = ACTIONS(3248), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1117] = { - [ts_builtin_sym_end] = ACTIONS(2175), - [sym_identifier] = ACTIONS(2177), - [anon_sym_export] = ACTIONS(2177), - [anon_sym_default] = ACTIONS(2177), - [anon_sym_type] = ACTIONS(2177), - [anon_sym_namespace] = ACTIONS(2177), - [anon_sym_LBRACE] = ACTIONS(2175), - [anon_sym_RBRACE] = ACTIONS(2175), - [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_readonly] = 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_abstract] = ACTIONS(2177), - [anon_sym_interface] = ACTIONS(2177), - [anon_sym_enum] = ACTIONS(2177), + [sym_object_pattern] = STATE(4225), + [sym_array_pattern] = STATE(4225), + [sym_nested_identifier] = STATE(5671), + [sym__destructuring_pattern] = STATE(4225), + [sym_string] = STATE(3954), + [sym_formal_parameters] = STATE(5719), + [sym_pattern] = STATE(5436), + [sym_rest_pattern] = STATE(4225), + [sym_nested_type_identifier] = STATE(3885), + [sym__type] = STATE(4028), + [sym_constructor_type] = STATE(4028), + [sym__primary_type] = STATE(3959), + [sym_infer_type] = STATE(4028), + [sym_conditional_type] = STATE(3956), + [sym_generic_type] = STATE(3956), + [sym_type_query] = STATE(3956), + [sym_index_type_query] = STATE(3956), + [sym_lookup_type] = STATE(3956), + [sym_literal_type] = STATE(3956), + [sym__number] = STATE(3960), + [sym_existential_type] = STATE(3956), + [sym_flow_maybe_type] = STATE(3956), + [sym_parenthesized_type] = STATE(3956), + [sym_predefined_type] = STATE(3956), + [sym_object_type] = STATE(3956), + [sym_type_parameters] = STATE(5242), + [sym_array_type] = STATE(3956), + [sym_tuple_type] = STATE(3956), + [sym_readonly_type] = STATE(4028), + [sym_union_type] = STATE(4028), + [sym_intersection_type] = STATE(4028), + [sym_function_type] = STATE(4028), + [sym_identifier] = ACTIONS(3248), + [anon_sym_export] = ACTIONS(1648), + [anon_sym_STAR] = ACTIONS(698), + [anon_sym_type] = ACTIONS(1648), + [anon_sym_namespace] = ACTIONS(1648), + [anon_sym_LBRACE] = ACTIONS(3250), + [anon_sym_typeof] = ACTIONS(2085), + [anon_sym_LPAREN] = ACTIONS(2087), + [anon_sym_LBRACK] = ACTIONS(3252), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_async] = ACTIONS(1648), + [anon_sym_new] = ACTIONS(2091), + [anon_sym_DOT_DOT_DOT] = ACTIONS(670), + [anon_sym_QMARK] = ACTIONS(714), + [anon_sym_AMP] = ACTIONS(716), + [anon_sym_PIPE] = ACTIONS(718), + [anon_sym_PLUS] = ACTIONS(3254), + [anon_sym_DASH] = ACTIONS(3254), + [anon_sym_void] = ACTIONS(2101), + [anon_sym_DQUOTE] = ACTIONS(2103), + [anon_sym_SQUOTE] = ACTIONS(2105), + [sym_comment] = ACTIONS(3), + [sym_number] = ACTIONS(2107), + [sym_this] = ACTIONS(2109), + [sym_true] = ACTIONS(2111), + [sym_false] = ACTIONS(2111), + [anon_sym_static] = ACTIONS(1648), + [anon_sym_readonly] = ACTIONS(3256), + [anon_sym_get] = ACTIONS(1648), + [anon_sym_set] = ACTIONS(1648), + [anon_sym_declare] = ACTIONS(1648), + [anon_sym_public] = ACTIONS(1648), + [anon_sym_private] = ACTIONS(1648), + [anon_sym_protected] = ACTIONS(1648), + [anon_sym_module] = ACTIONS(1648), + [anon_sym_any] = ACTIONS(3258), + [anon_sym_number] = ACTIONS(3258), + [anon_sym_boolean] = ACTIONS(3258), + [anon_sym_string] = ACTIONS(3258), + [anon_sym_symbol] = ACTIONS(3258), + [anon_sym_infer] = ACTIONS(734), + [anon_sym_keyof] = ACTIONS(736), + [anon_sym_LBRACE_PIPE] = ACTIONS(738), }, [1118] = { - [ts_builtin_sym_end] = ACTIONS(3250), - [sym_identifier] = ACTIONS(3252), - [anon_sym_export] = ACTIONS(3252), - [anon_sym_default] = ACTIONS(3252), - [anon_sym_type] = ACTIONS(3252), - [anon_sym_namespace] = ACTIONS(3252), - [anon_sym_LBRACE] = ACTIONS(3250), - [anon_sym_RBRACE] = ACTIONS(3250), - [anon_sym_typeof] = ACTIONS(3252), - [anon_sym_import] = ACTIONS(3252), - [anon_sym_var] = ACTIONS(3252), - [anon_sym_let] = ACTIONS(3252), - [anon_sym_const] = ACTIONS(3252), - [anon_sym_BANG] = ACTIONS(3250), - [anon_sym_else] = ACTIONS(3252), - [anon_sym_if] = ACTIONS(3252), - [anon_sym_switch] = ACTIONS(3252), - [anon_sym_for] = ACTIONS(3252), - [anon_sym_LPAREN] = ACTIONS(3250), - [anon_sym_await] = ACTIONS(3252), - [anon_sym_while] = ACTIONS(3252), - [anon_sym_do] = ACTIONS(3252), - [anon_sym_try] = ACTIONS(3252), - [anon_sym_with] = ACTIONS(3252), - [anon_sym_break] = ACTIONS(3252), - [anon_sym_continue] = ACTIONS(3252), - [anon_sym_debugger] = ACTIONS(3252), - [anon_sym_return] = ACTIONS(3252), - [anon_sym_throw] = ACTIONS(3252), - [anon_sym_SEMI] = ACTIONS(3250), - [anon_sym_case] = ACTIONS(3252), - [anon_sym_yield] = ACTIONS(3252), - [anon_sym_LBRACK] = ACTIONS(3250), - [anon_sym_LT] = ACTIONS(3250), - [anon_sym_SLASH] = ACTIONS(3252), - [anon_sym_class] = ACTIONS(3252), - [anon_sym_async] = ACTIONS(3252), - [anon_sym_function] = ACTIONS(3252), - [anon_sym_new] = ACTIONS(3252), - [anon_sym_PLUS] = ACTIONS(3252), - [anon_sym_DASH] = ACTIONS(3252), - [anon_sym_TILDE] = ACTIONS(3250), - [anon_sym_void] = ACTIONS(3252), - [anon_sym_delete] = ACTIONS(3252), - [anon_sym_PLUS_PLUS] = ACTIONS(3250), - [anon_sym_DASH_DASH] = ACTIONS(3250), - [anon_sym_DQUOTE] = ACTIONS(3250), - [anon_sym_SQUOTE] = ACTIONS(3250), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3250), - [sym_number] = ACTIONS(3250), - [sym_this] = ACTIONS(3252), - [sym_super] = ACTIONS(3252), - [sym_true] = ACTIONS(3252), - [sym_false] = ACTIONS(3252), - [sym_null] = ACTIONS(3252), - [sym_undefined] = ACTIONS(3252), - [anon_sym_AT] = ACTIONS(3250), - [anon_sym_static] = ACTIONS(3252), - [anon_sym_readonly] = ACTIONS(3252), - [anon_sym_get] = ACTIONS(3252), - [anon_sym_set] = ACTIONS(3252), - [anon_sym_declare] = ACTIONS(3252), - [anon_sym_public] = ACTIONS(3252), - [anon_sym_private] = ACTIONS(3252), - [anon_sym_protected] = ACTIONS(3252), - [anon_sym_module] = ACTIONS(3252), - [anon_sym_any] = ACTIONS(3252), - [anon_sym_number] = ACTIONS(3252), - [anon_sym_boolean] = ACTIONS(3252), - [anon_sym_string] = ACTIONS(3252), - [anon_sym_symbol] = ACTIONS(3252), - [anon_sym_abstract] = ACTIONS(3252), - [anon_sym_interface] = ACTIONS(3252), - [anon_sym_enum] = ACTIONS(3252), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1119] = { - [ts_builtin_sym_end] = ACTIONS(3254), - [sym_identifier] = ACTIONS(3256), - [anon_sym_export] = ACTIONS(3256), - [anon_sym_default] = ACTIONS(3256), - [anon_sym_type] = ACTIONS(3256), - [anon_sym_namespace] = ACTIONS(3256), - [anon_sym_LBRACE] = ACTIONS(3254), - [anon_sym_RBRACE] = ACTIONS(3254), - [anon_sym_typeof] = ACTIONS(3256), - [anon_sym_import] = ACTIONS(3256), - [anon_sym_var] = ACTIONS(3256), - [anon_sym_let] = ACTIONS(3256), - [anon_sym_const] = ACTIONS(3256), - [anon_sym_BANG] = ACTIONS(3254), - [anon_sym_else] = ACTIONS(3256), - [anon_sym_if] = ACTIONS(3256), - [anon_sym_switch] = ACTIONS(3256), - [anon_sym_for] = ACTIONS(3256), - [anon_sym_LPAREN] = ACTIONS(3254), - [anon_sym_await] = ACTIONS(3256), - [anon_sym_while] = ACTIONS(3256), - [anon_sym_do] = ACTIONS(3256), - [anon_sym_try] = ACTIONS(3256), - [anon_sym_with] = ACTIONS(3256), - [anon_sym_break] = ACTIONS(3256), - [anon_sym_continue] = ACTIONS(3256), - [anon_sym_debugger] = ACTIONS(3256), - [anon_sym_return] = ACTIONS(3256), - [anon_sym_throw] = ACTIONS(3256), - [anon_sym_SEMI] = ACTIONS(3254), - [anon_sym_case] = ACTIONS(3256), - [anon_sym_yield] = ACTIONS(3256), - [anon_sym_LBRACK] = ACTIONS(3254), - [anon_sym_LT] = ACTIONS(3254), - [anon_sym_SLASH] = ACTIONS(3256), - [anon_sym_class] = ACTIONS(3256), - [anon_sym_async] = ACTIONS(3256), - [anon_sym_function] = ACTIONS(3256), - [anon_sym_new] = ACTIONS(3256), - [anon_sym_PLUS] = ACTIONS(3256), - [anon_sym_DASH] = ACTIONS(3256), - [anon_sym_TILDE] = ACTIONS(3254), - [anon_sym_void] = ACTIONS(3256), - [anon_sym_delete] = ACTIONS(3256), - [anon_sym_PLUS_PLUS] = ACTIONS(3254), - [anon_sym_DASH_DASH] = ACTIONS(3254), - [anon_sym_DQUOTE] = ACTIONS(3254), - [anon_sym_SQUOTE] = ACTIONS(3254), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3254), - [sym_number] = ACTIONS(3254), - [sym_this] = ACTIONS(3256), - [sym_super] = ACTIONS(3256), - [sym_true] = ACTIONS(3256), - [sym_false] = ACTIONS(3256), - [sym_null] = ACTIONS(3256), - [sym_undefined] = ACTIONS(3256), - [anon_sym_AT] = ACTIONS(3254), - [anon_sym_static] = ACTIONS(3256), - [anon_sym_readonly] = ACTIONS(3256), - [anon_sym_get] = ACTIONS(3256), - [anon_sym_set] = ACTIONS(3256), - [anon_sym_declare] = ACTIONS(3256), - [anon_sym_public] = ACTIONS(3256), - [anon_sym_private] = ACTIONS(3256), - [anon_sym_protected] = ACTIONS(3256), - [anon_sym_module] = ACTIONS(3256), - [anon_sym_any] = ACTIONS(3256), - [anon_sym_number] = ACTIONS(3256), - [anon_sym_boolean] = ACTIONS(3256), - [anon_sym_string] = ACTIONS(3256), - [anon_sym_symbol] = ACTIONS(3256), - [anon_sym_abstract] = ACTIONS(3256), - [anon_sym_interface] = ACTIONS(3256), - [anon_sym_enum] = ACTIONS(3256), + [ts_builtin_sym_end] = ACTIONS(3260), + [sym_identifier] = ACTIONS(3262), + [anon_sym_export] = ACTIONS(3262), + [anon_sym_default] = ACTIONS(3262), + [anon_sym_type] = ACTIONS(3262), + [anon_sym_namespace] = ACTIONS(3262), + [anon_sym_LBRACE] = ACTIONS(3260), + [anon_sym_RBRACE] = ACTIONS(3260), + [anon_sym_typeof] = ACTIONS(3262), + [anon_sym_import] = ACTIONS(3262), + [anon_sym_var] = ACTIONS(3262), + [anon_sym_let] = ACTIONS(3262), + [anon_sym_const] = ACTIONS(3262), + [anon_sym_BANG] = ACTIONS(3260), + [anon_sym_else] = ACTIONS(3262), + [anon_sym_if] = ACTIONS(3262), + [anon_sym_switch] = ACTIONS(3262), + [anon_sym_for] = ACTIONS(3262), + [anon_sym_LPAREN] = ACTIONS(3260), + [anon_sym_await] = ACTIONS(3262), + [anon_sym_while] = ACTIONS(3262), + [anon_sym_do] = ACTIONS(3262), + [anon_sym_try] = ACTIONS(3262), + [anon_sym_with] = ACTIONS(3262), + [anon_sym_break] = ACTIONS(3262), + [anon_sym_continue] = ACTIONS(3262), + [anon_sym_debugger] = ACTIONS(3262), + [anon_sym_return] = ACTIONS(3262), + [anon_sym_throw] = ACTIONS(3262), + [anon_sym_SEMI] = ACTIONS(3260), + [anon_sym_case] = ACTIONS(3262), + [anon_sym_yield] = ACTIONS(3262), + [anon_sym_LBRACK] = ACTIONS(3260), + [anon_sym_LT] = ACTIONS(3260), + [anon_sym_SLASH] = ACTIONS(3262), + [anon_sym_class] = ACTIONS(3262), + [anon_sym_async] = ACTIONS(3262), + [anon_sym_function] = ACTIONS(3262), + [anon_sym_new] = ACTIONS(3262), + [anon_sym_PLUS] = ACTIONS(3262), + [anon_sym_DASH] = ACTIONS(3262), + [anon_sym_TILDE] = ACTIONS(3260), + [anon_sym_void] = ACTIONS(3262), + [anon_sym_delete] = ACTIONS(3262), + [anon_sym_PLUS_PLUS] = ACTIONS(3260), + [anon_sym_DASH_DASH] = ACTIONS(3260), + [anon_sym_DQUOTE] = ACTIONS(3260), + [anon_sym_SQUOTE] = ACTIONS(3260), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3260), + [sym_number] = ACTIONS(3260), + [sym_this] = ACTIONS(3262), + [sym_super] = ACTIONS(3262), + [sym_true] = ACTIONS(3262), + [sym_false] = ACTIONS(3262), + [sym_null] = ACTIONS(3262), + [sym_undefined] = ACTIONS(3262), + [anon_sym_AT] = ACTIONS(3260), + [anon_sym_static] = ACTIONS(3262), + [anon_sym_readonly] = ACTIONS(3262), + [anon_sym_get] = ACTIONS(3262), + [anon_sym_set] = ACTIONS(3262), + [anon_sym_declare] = ACTIONS(3262), + [anon_sym_public] = ACTIONS(3262), + [anon_sym_private] = ACTIONS(3262), + [anon_sym_protected] = ACTIONS(3262), + [anon_sym_module] = ACTIONS(3262), + [anon_sym_any] = ACTIONS(3262), + [anon_sym_number] = ACTIONS(3262), + [anon_sym_boolean] = ACTIONS(3262), + [anon_sym_string] = ACTIONS(3262), + [anon_sym_symbol] = ACTIONS(3262), + [anon_sym_abstract] = ACTIONS(3262), + [anon_sym_interface] = ACTIONS(3262), + [anon_sym_enum] = ACTIONS(3262), }, [1120] = { - [ts_builtin_sym_end] = ACTIONS(3258), - [sym_identifier] = ACTIONS(3260), - [anon_sym_export] = ACTIONS(3260), - [anon_sym_default] = ACTIONS(3260), - [anon_sym_type] = ACTIONS(3260), - [anon_sym_namespace] = ACTIONS(3260), - [anon_sym_LBRACE] = ACTIONS(3258), - [anon_sym_RBRACE] = ACTIONS(3258), - [anon_sym_typeof] = ACTIONS(3260), - [anon_sym_import] = ACTIONS(3260), - [anon_sym_var] = ACTIONS(3260), - [anon_sym_let] = ACTIONS(3260), - [anon_sym_const] = ACTIONS(3260), - [anon_sym_BANG] = ACTIONS(3258), - [anon_sym_else] = ACTIONS(3260), - [anon_sym_if] = ACTIONS(3260), - [anon_sym_switch] = ACTIONS(3260), - [anon_sym_for] = ACTIONS(3260), - [anon_sym_LPAREN] = ACTIONS(3258), - [anon_sym_await] = ACTIONS(3260), - [anon_sym_while] = ACTIONS(3260), - [anon_sym_do] = ACTIONS(3260), - [anon_sym_try] = ACTIONS(3260), - [anon_sym_with] = ACTIONS(3260), - [anon_sym_break] = ACTIONS(3260), - [anon_sym_continue] = ACTIONS(3260), - [anon_sym_debugger] = ACTIONS(3260), - [anon_sym_return] = ACTIONS(3260), - [anon_sym_throw] = ACTIONS(3260), - [anon_sym_SEMI] = ACTIONS(3258), - [anon_sym_case] = ACTIONS(3260), - [anon_sym_yield] = ACTIONS(3260), - [anon_sym_LBRACK] = ACTIONS(3258), - [anon_sym_LT] = ACTIONS(3258), - [anon_sym_SLASH] = ACTIONS(3260), - [anon_sym_class] = ACTIONS(3260), - [anon_sym_async] = ACTIONS(3260), - [anon_sym_function] = ACTIONS(3260), - [anon_sym_new] = ACTIONS(3260), - [anon_sym_PLUS] = ACTIONS(3260), - [anon_sym_DASH] = ACTIONS(3260), - [anon_sym_TILDE] = ACTIONS(3258), - [anon_sym_void] = ACTIONS(3260), - [anon_sym_delete] = ACTIONS(3260), - [anon_sym_PLUS_PLUS] = ACTIONS(3258), - [anon_sym_DASH_DASH] = ACTIONS(3258), - [anon_sym_DQUOTE] = ACTIONS(3258), - [anon_sym_SQUOTE] = ACTIONS(3258), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3258), - [sym_number] = ACTIONS(3258), - [sym_this] = ACTIONS(3260), - [sym_super] = ACTIONS(3260), - [sym_true] = ACTIONS(3260), - [sym_false] = ACTIONS(3260), - [sym_null] = ACTIONS(3260), - [sym_undefined] = ACTIONS(3260), - [anon_sym_AT] = ACTIONS(3258), - [anon_sym_static] = ACTIONS(3260), - [anon_sym_readonly] = ACTIONS(3260), - [anon_sym_get] = ACTIONS(3260), - [anon_sym_set] = ACTIONS(3260), - [anon_sym_declare] = ACTIONS(3260), - [anon_sym_public] = ACTIONS(3260), - [anon_sym_private] = ACTIONS(3260), - [anon_sym_protected] = ACTIONS(3260), - [anon_sym_module] = ACTIONS(3260), - [anon_sym_any] = ACTIONS(3260), - [anon_sym_number] = ACTIONS(3260), - [anon_sym_boolean] = ACTIONS(3260), - [anon_sym_string] = ACTIONS(3260), - [anon_sym_symbol] = ACTIONS(3260), - [anon_sym_abstract] = ACTIONS(3260), - [anon_sym_interface] = ACTIONS(3260), - [anon_sym_enum] = ACTIONS(3260), + [ts_builtin_sym_end] = ACTIONS(3264), + [sym_identifier] = ACTIONS(3266), + [anon_sym_export] = ACTIONS(3266), + [anon_sym_default] = ACTIONS(3266), + [anon_sym_type] = ACTIONS(3266), + [anon_sym_namespace] = ACTIONS(3266), + [anon_sym_LBRACE] = ACTIONS(3264), + [anon_sym_RBRACE] = ACTIONS(3264), + [anon_sym_typeof] = ACTIONS(3266), + [anon_sym_import] = ACTIONS(3266), + [anon_sym_var] = ACTIONS(3266), + [anon_sym_let] = ACTIONS(3266), + [anon_sym_const] = ACTIONS(3266), + [anon_sym_BANG] = ACTIONS(3264), + [anon_sym_else] = ACTIONS(3266), + [anon_sym_if] = ACTIONS(3266), + [anon_sym_switch] = ACTIONS(3266), + [anon_sym_for] = ACTIONS(3266), + [anon_sym_LPAREN] = ACTIONS(3264), + [anon_sym_await] = ACTIONS(3266), + [anon_sym_while] = ACTIONS(3266), + [anon_sym_do] = ACTIONS(3266), + [anon_sym_try] = ACTIONS(3266), + [anon_sym_with] = ACTIONS(3266), + [anon_sym_break] = ACTIONS(3266), + [anon_sym_continue] = ACTIONS(3266), + [anon_sym_debugger] = ACTIONS(3266), + [anon_sym_return] = ACTIONS(3266), + [anon_sym_throw] = ACTIONS(3266), + [anon_sym_SEMI] = ACTIONS(3264), + [anon_sym_case] = ACTIONS(3266), + [anon_sym_yield] = ACTIONS(3266), + [anon_sym_LBRACK] = ACTIONS(3264), + [anon_sym_LT] = ACTIONS(3264), + [anon_sym_SLASH] = ACTIONS(3266), + [anon_sym_class] = ACTIONS(3266), + [anon_sym_async] = ACTIONS(3266), + [anon_sym_function] = ACTIONS(3266), + [anon_sym_new] = ACTIONS(3266), + [anon_sym_PLUS] = ACTIONS(3266), + [anon_sym_DASH] = ACTIONS(3266), + [anon_sym_TILDE] = ACTIONS(3264), + [anon_sym_void] = ACTIONS(3266), + [anon_sym_delete] = ACTIONS(3266), + [anon_sym_PLUS_PLUS] = ACTIONS(3264), + [anon_sym_DASH_DASH] = ACTIONS(3264), + [anon_sym_DQUOTE] = ACTIONS(3264), + [anon_sym_SQUOTE] = ACTIONS(3264), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3264), + [sym_number] = ACTIONS(3264), + [sym_this] = ACTIONS(3266), + [sym_super] = ACTIONS(3266), + [sym_true] = ACTIONS(3266), + [sym_false] = ACTIONS(3266), + [sym_null] = ACTIONS(3266), + [sym_undefined] = ACTIONS(3266), + [anon_sym_AT] = ACTIONS(3264), + [anon_sym_static] = ACTIONS(3266), + [anon_sym_readonly] = ACTIONS(3266), + [anon_sym_get] = ACTIONS(3266), + [anon_sym_set] = ACTIONS(3266), + [anon_sym_declare] = ACTIONS(3266), + [anon_sym_public] = ACTIONS(3266), + [anon_sym_private] = ACTIONS(3266), + [anon_sym_protected] = ACTIONS(3266), + [anon_sym_module] = ACTIONS(3266), + [anon_sym_any] = ACTIONS(3266), + [anon_sym_number] = ACTIONS(3266), + [anon_sym_boolean] = ACTIONS(3266), + [anon_sym_string] = ACTIONS(3266), + [anon_sym_symbol] = ACTIONS(3266), + [anon_sym_abstract] = ACTIONS(3266), + [anon_sym_interface] = ACTIONS(3266), + [anon_sym_enum] = ACTIONS(3266), }, [1121] = { - [ts_builtin_sym_end] = ACTIONS(3262), - [sym_identifier] = ACTIONS(3264), - [anon_sym_export] = ACTIONS(3264), - [anon_sym_default] = ACTIONS(3264), - [anon_sym_type] = ACTIONS(3264), - [anon_sym_namespace] = ACTIONS(3264), - [anon_sym_LBRACE] = ACTIONS(3262), - [anon_sym_RBRACE] = ACTIONS(3262), - [anon_sym_typeof] = ACTIONS(3264), - [anon_sym_import] = ACTIONS(3264), - [anon_sym_var] = ACTIONS(3264), - [anon_sym_let] = ACTIONS(3264), - [anon_sym_const] = ACTIONS(3264), - [anon_sym_BANG] = ACTIONS(3262), - [anon_sym_else] = ACTIONS(3264), - [anon_sym_if] = ACTIONS(3264), - [anon_sym_switch] = ACTIONS(3264), - [anon_sym_for] = ACTIONS(3264), - [anon_sym_LPAREN] = ACTIONS(3262), - [anon_sym_await] = ACTIONS(3264), - [anon_sym_while] = ACTIONS(3264), - [anon_sym_do] = ACTIONS(3264), - [anon_sym_try] = ACTIONS(3264), - [anon_sym_with] = ACTIONS(3264), - [anon_sym_break] = ACTIONS(3264), - [anon_sym_continue] = ACTIONS(3264), - [anon_sym_debugger] = ACTIONS(3264), - [anon_sym_return] = ACTIONS(3264), - [anon_sym_throw] = ACTIONS(3264), - [anon_sym_SEMI] = ACTIONS(3262), - [anon_sym_case] = ACTIONS(3264), - [anon_sym_yield] = ACTIONS(3264), - [anon_sym_LBRACK] = ACTIONS(3262), - [anon_sym_LT] = ACTIONS(3262), - [anon_sym_SLASH] = ACTIONS(3264), - [anon_sym_class] = ACTIONS(3264), - [anon_sym_async] = ACTIONS(3264), - [anon_sym_function] = ACTIONS(3264), - [anon_sym_new] = ACTIONS(3264), - [anon_sym_PLUS] = ACTIONS(3264), - [anon_sym_DASH] = ACTIONS(3264), - [anon_sym_TILDE] = ACTIONS(3262), - [anon_sym_void] = ACTIONS(3264), - [anon_sym_delete] = ACTIONS(3264), - [anon_sym_PLUS_PLUS] = ACTIONS(3262), - [anon_sym_DASH_DASH] = ACTIONS(3262), - [anon_sym_DQUOTE] = ACTIONS(3262), - [anon_sym_SQUOTE] = ACTIONS(3262), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3262), - [sym_number] = ACTIONS(3262), - [sym_this] = ACTIONS(3264), - [sym_super] = ACTIONS(3264), - [sym_true] = ACTIONS(3264), - [sym_false] = ACTIONS(3264), - [sym_null] = ACTIONS(3264), - [sym_undefined] = ACTIONS(3264), - [anon_sym_AT] = ACTIONS(3262), - [anon_sym_static] = ACTIONS(3264), - [anon_sym_readonly] = ACTIONS(3264), - [anon_sym_get] = ACTIONS(3264), - [anon_sym_set] = ACTIONS(3264), - [anon_sym_declare] = ACTIONS(3264), - [anon_sym_public] = ACTIONS(3264), - [anon_sym_private] = ACTIONS(3264), - [anon_sym_protected] = ACTIONS(3264), - [anon_sym_module] = ACTIONS(3264), - [anon_sym_any] = ACTIONS(3264), - [anon_sym_number] = ACTIONS(3264), - [anon_sym_boolean] = ACTIONS(3264), - [anon_sym_string] = ACTIONS(3264), - [anon_sym_symbol] = ACTIONS(3264), - [anon_sym_abstract] = ACTIONS(3264), - [anon_sym_interface] = ACTIONS(3264), - [anon_sym_enum] = ACTIONS(3264), + [ts_builtin_sym_end] = ACTIONS(3268), + [sym_identifier] = ACTIONS(3270), + [anon_sym_export] = ACTIONS(3270), + [anon_sym_default] = ACTIONS(3270), + [anon_sym_type] = ACTIONS(3270), + [anon_sym_namespace] = ACTIONS(3270), + [anon_sym_LBRACE] = ACTIONS(3268), + [anon_sym_RBRACE] = ACTIONS(3268), + [anon_sym_typeof] = ACTIONS(3270), + [anon_sym_import] = ACTIONS(3270), + [anon_sym_var] = ACTIONS(3270), + [anon_sym_let] = ACTIONS(3270), + [anon_sym_const] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3268), + [anon_sym_else] = ACTIONS(3270), + [anon_sym_if] = ACTIONS(3270), + [anon_sym_switch] = ACTIONS(3270), + [anon_sym_for] = ACTIONS(3270), + [anon_sym_LPAREN] = ACTIONS(3268), + [anon_sym_await] = ACTIONS(3270), + [anon_sym_while] = ACTIONS(3270), + [anon_sym_do] = ACTIONS(3270), + [anon_sym_try] = ACTIONS(3270), + [anon_sym_with] = ACTIONS(3270), + [anon_sym_break] = ACTIONS(3270), + [anon_sym_continue] = ACTIONS(3270), + [anon_sym_debugger] = ACTIONS(3270), + [anon_sym_return] = ACTIONS(3270), + [anon_sym_throw] = ACTIONS(3270), + [anon_sym_SEMI] = ACTIONS(3268), + [anon_sym_case] = ACTIONS(3270), + [anon_sym_yield] = ACTIONS(3270), + [anon_sym_LBRACK] = ACTIONS(3268), + [anon_sym_LT] = ACTIONS(3268), + [anon_sym_SLASH] = ACTIONS(3270), + [anon_sym_class] = ACTIONS(3270), + [anon_sym_async] = ACTIONS(3270), + [anon_sym_function] = ACTIONS(3270), + [anon_sym_new] = ACTIONS(3270), + [anon_sym_PLUS] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_TILDE] = ACTIONS(3268), + [anon_sym_void] = ACTIONS(3270), + [anon_sym_delete] = ACTIONS(3270), + [anon_sym_PLUS_PLUS] = ACTIONS(3268), + [anon_sym_DASH_DASH] = ACTIONS(3268), + [anon_sym_DQUOTE] = ACTIONS(3268), + [anon_sym_SQUOTE] = ACTIONS(3268), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3268), + [sym_number] = ACTIONS(3268), + [sym_this] = ACTIONS(3270), + [sym_super] = ACTIONS(3270), + [sym_true] = ACTIONS(3270), + [sym_false] = ACTIONS(3270), + [sym_null] = ACTIONS(3270), + [sym_undefined] = ACTIONS(3270), + [anon_sym_AT] = ACTIONS(3268), + [anon_sym_static] = ACTIONS(3270), + [anon_sym_readonly] = ACTIONS(3270), + [anon_sym_get] = ACTIONS(3270), + [anon_sym_set] = ACTIONS(3270), + [anon_sym_declare] = ACTIONS(3270), + [anon_sym_public] = ACTIONS(3270), + [anon_sym_private] = ACTIONS(3270), + [anon_sym_protected] = ACTIONS(3270), + [anon_sym_module] = ACTIONS(3270), + [anon_sym_any] = ACTIONS(3270), + [anon_sym_number] = ACTIONS(3270), + [anon_sym_boolean] = ACTIONS(3270), + [anon_sym_string] = ACTIONS(3270), + [anon_sym_symbol] = ACTIONS(3270), + [anon_sym_abstract] = ACTIONS(3270), + [anon_sym_interface] = ACTIONS(3270), + [anon_sym_enum] = ACTIONS(3270), }, [1122] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1123] = { - [ts_builtin_sym_end] = ACTIONS(3266), - [sym_identifier] = ACTIONS(3268), - [anon_sym_export] = ACTIONS(3268), - [anon_sym_default] = ACTIONS(3268), - [anon_sym_type] = ACTIONS(3268), - [anon_sym_namespace] = ACTIONS(3268), - [anon_sym_LBRACE] = ACTIONS(3266), - [anon_sym_RBRACE] = ACTIONS(3266), - [anon_sym_typeof] = ACTIONS(3268), - [anon_sym_import] = ACTIONS(3268), - [anon_sym_var] = ACTIONS(3268), - [anon_sym_let] = ACTIONS(3268), - [anon_sym_const] = ACTIONS(3268), - [anon_sym_BANG] = ACTIONS(3266), - [anon_sym_else] = ACTIONS(3268), - [anon_sym_if] = ACTIONS(3268), - [anon_sym_switch] = ACTIONS(3268), - [anon_sym_for] = ACTIONS(3268), - [anon_sym_LPAREN] = ACTIONS(3266), - [anon_sym_await] = ACTIONS(3268), - [anon_sym_while] = ACTIONS(3268), - [anon_sym_do] = ACTIONS(3268), - [anon_sym_try] = ACTIONS(3268), - [anon_sym_with] = ACTIONS(3268), - [anon_sym_break] = ACTIONS(3268), - [anon_sym_continue] = ACTIONS(3268), - [anon_sym_debugger] = ACTIONS(3268), - [anon_sym_return] = ACTIONS(3268), - [anon_sym_throw] = ACTIONS(3268), - [anon_sym_SEMI] = ACTIONS(3266), - [anon_sym_case] = ACTIONS(3268), - [anon_sym_yield] = ACTIONS(3268), - [anon_sym_LBRACK] = ACTIONS(3266), - [anon_sym_LT] = ACTIONS(3266), - [anon_sym_SLASH] = ACTIONS(3268), - [anon_sym_class] = ACTIONS(3268), - [anon_sym_async] = ACTIONS(3268), - [anon_sym_function] = ACTIONS(3268), - [anon_sym_new] = ACTIONS(3268), - [anon_sym_PLUS] = ACTIONS(3268), - [anon_sym_DASH] = ACTIONS(3268), - [anon_sym_TILDE] = ACTIONS(3266), - [anon_sym_void] = ACTIONS(3268), - [anon_sym_delete] = ACTIONS(3268), - [anon_sym_PLUS_PLUS] = ACTIONS(3266), - [anon_sym_DASH_DASH] = ACTIONS(3266), - [anon_sym_DQUOTE] = ACTIONS(3266), - [anon_sym_SQUOTE] = ACTIONS(3266), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3266), - [sym_number] = ACTIONS(3266), - [sym_this] = ACTIONS(3268), - [sym_super] = ACTIONS(3268), - [sym_true] = ACTIONS(3268), - [sym_false] = ACTIONS(3268), - [sym_null] = ACTIONS(3268), - [sym_undefined] = ACTIONS(3268), - [anon_sym_AT] = ACTIONS(3266), - [anon_sym_static] = ACTIONS(3268), - [anon_sym_readonly] = ACTIONS(3268), - [anon_sym_get] = ACTIONS(3268), - [anon_sym_set] = ACTIONS(3268), - [anon_sym_declare] = ACTIONS(3268), - [anon_sym_public] = ACTIONS(3268), - [anon_sym_private] = ACTIONS(3268), - [anon_sym_protected] = ACTIONS(3268), - [anon_sym_module] = ACTIONS(3268), - [anon_sym_any] = ACTIONS(3268), - [anon_sym_number] = ACTIONS(3268), - [anon_sym_boolean] = ACTIONS(3268), - [anon_sym_string] = ACTIONS(3268), - [anon_sym_symbol] = ACTIONS(3268), - [anon_sym_abstract] = ACTIONS(3268), - [anon_sym_interface] = ACTIONS(3268), - [anon_sym_enum] = ACTIONS(3268), + [ts_builtin_sym_end] = ACTIONS(3272), + [sym_identifier] = ACTIONS(3274), + [anon_sym_export] = ACTIONS(3274), + [anon_sym_default] = ACTIONS(3274), + [anon_sym_type] = ACTIONS(3274), + [anon_sym_namespace] = ACTIONS(3274), + [anon_sym_LBRACE] = ACTIONS(3272), + [anon_sym_RBRACE] = ACTIONS(3272), + [anon_sym_typeof] = ACTIONS(3274), + [anon_sym_import] = ACTIONS(3274), + [anon_sym_var] = ACTIONS(3274), + [anon_sym_let] = ACTIONS(3274), + [anon_sym_const] = ACTIONS(3274), + [anon_sym_BANG] = ACTIONS(3272), + [anon_sym_else] = ACTIONS(3274), + [anon_sym_if] = ACTIONS(3274), + [anon_sym_switch] = ACTIONS(3274), + [anon_sym_for] = ACTIONS(3274), + [anon_sym_LPAREN] = ACTIONS(3272), + [anon_sym_await] = ACTIONS(3274), + [anon_sym_while] = ACTIONS(3274), + [anon_sym_do] = ACTIONS(3274), + [anon_sym_try] = ACTIONS(3274), + [anon_sym_with] = ACTIONS(3274), + [anon_sym_break] = ACTIONS(3274), + [anon_sym_continue] = ACTIONS(3274), + [anon_sym_debugger] = ACTIONS(3274), + [anon_sym_return] = ACTIONS(3274), + [anon_sym_throw] = ACTIONS(3274), + [anon_sym_SEMI] = ACTIONS(3272), + [anon_sym_case] = ACTIONS(3274), + [anon_sym_yield] = ACTIONS(3274), + [anon_sym_LBRACK] = ACTIONS(3272), + [anon_sym_LT] = ACTIONS(3272), + [anon_sym_SLASH] = ACTIONS(3274), + [anon_sym_class] = ACTIONS(3274), + [anon_sym_async] = ACTIONS(3274), + [anon_sym_function] = ACTIONS(3274), + [anon_sym_new] = ACTIONS(3274), + [anon_sym_PLUS] = ACTIONS(3274), + [anon_sym_DASH] = ACTIONS(3274), + [anon_sym_TILDE] = ACTIONS(3272), + [anon_sym_void] = ACTIONS(3274), + [anon_sym_delete] = ACTIONS(3274), + [anon_sym_PLUS_PLUS] = ACTIONS(3272), + [anon_sym_DASH_DASH] = ACTIONS(3272), + [anon_sym_DQUOTE] = ACTIONS(3272), + [anon_sym_SQUOTE] = ACTIONS(3272), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3272), + [sym_number] = ACTIONS(3272), + [sym_this] = ACTIONS(3274), + [sym_super] = ACTIONS(3274), + [sym_true] = ACTIONS(3274), + [sym_false] = ACTIONS(3274), + [sym_null] = ACTIONS(3274), + [sym_undefined] = ACTIONS(3274), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_static] = ACTIONS(3274), + [anon_sym_readonly] = ACTIONS(3274), + [anon_sym_get] = ACTIONS(3274), + [anon_sym_set] = ACTIONS(3274), + [anon_sym_declare] = ACTIONS(3274), + [anon_sym_public] = ACTIONS(3274), + [anon_sym_private] = ACTIONS(3274), + [anon_sym_protected] = ACTIONS(3274), + [anon_sym_module] = ACTIONS(3274), + [anon_sym_any] = ACTIONS(3274), + [anon_sym_number] = ACTIONS(3274), + [anon_sym_boolean] = ACTIONS(3274), + [anon_sym_string] = ACTIONS(3274), + [anon_sym_symbol] = ACTIONS(3274), + [anon_sym_abstract] = ACTIONS(3274), + [anon_sym_interface] = ACTIONS(3274), + [anon_sym_enum] = ACTIONS(3274), }, [1124] = { - [ts_builtin_sym_end] = ACTIONS(3270), - [sym_identifier] = ACTIONS(3272), - [anon_sym_export] = ACTIONS(3272), - [anon_sym_default] = ACTIONS(3272), - [anon_sym_type] = ACTIONS(3272), - [anon_sym_namespace] = ACTIONS(3272), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_RBRACE] = ACTIONS(3270), - [anon_sym_typeof] = ACTIONS(3272), - [anon_sym_import] = ACTIONS(3272), - [anon_sym_var] = ACTIONS(3272), - [anon_sym_let] = ACTIONS(3272), - [anon_sym_const] = ACTIONS(3272), - [anon_sym_BANG] = ACTIONS(3270), - [anon_sym_else] = ACTIONS(3272), - [anon_sym_if] = ACTIONS(3272), - [anon_sym_switch] = ACTIONS(3272), - [anon_sym_for] = ACTIONS(3272), - [anon_sym_LPAREN] = ACTIONS(3270), - [anon_sym_await] = ACTIONS(3272), - [anon_sym_while] = ACTIONS(3272), - [anon_sym_do] = ACTIONS(3272), - [anon_sym_try] = ACTIONS(3272), - [anon_sym_with] = ACTIONS(3272), - [anon_sym_break] = ACTIONS(3272), - [anon_sym_continue] = ACTIONS(3272), - [anon_sym_debugger] = ACTIONS(3272), - [anon_sym_return] = ACTIONS(3272), - [anon_sym_throw] = ACTIONS(3272), - [anon_sym_SEMI] = ACTIONS(3270), - [anon_sym_case] = ACTIONS(3272), - [anon_sym_yield] = ACTIONS(3272), - [anon_sym_LBRACK] = ACTIONS(3270), - [anon_sym_LT] = ACTIONS(3270), - [anon_sym_SLASH] = ACTIONS(3272), - [anon_sym_class] = ACTIONS(3272), - [anon_sym_async] = ACTIONS(3272), - [anon_sym_function] = ACTIONS(3272), - [anon_sym_new] = ACTIONS(3272), - [anon_sym_PLUS] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3272), - [anon_sym_TILDE] = ACTIONS(3270), - [anon_sym_void] = ACTIONS(3272), - [anon_sym_delete] = ACTIONS(3272), - [anon_sym_PLUS_PLUS] = ACTIONS(3270), - [anon_sym_DASH_DASH] = ACTIONS(3270), - [anon_sym_DQUOTE] = ACTIONS(3270), - [anon_sym_SQUOTE] = ACTIONS(3270), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3270), - [sym_number] = ACTIONS(3270), - [sym_this] = ACTIONS(3272), - [sym_super] = ACTIONS(3272), - [sym_true] = ACTIONS(3272), - [sym_false] = ACTIONS(3272), - [sym_null] = ACTIONS(3272), - [sym_undefined] = ACTIONS(3272), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_static] = ACTIONS(3272), - [anon_sym_readonly] = ACTIONS(3272), - [anon_sym_get] = ACTIONS(3272), - [anon_sym_set] = ACTIONS(3272), - [anon_sym_declare] = ACTIONS(3272), - [anon_sym_public] = ACTIONS(3272), - [anon_sym_private] = ACTIONS(3272), - [anon_sym_protected] = ACTIONS(3272), - [anon_sym_module] = ACTIONS(3272), - [anon_sym_any] = ACTIONS(3272), - [anon_sym_number] = ACTIONS(3272), - [anon_sym_boolean] = ACTIONS(3272), - [anon_sym_string] = ACTIONS(3272), - [anon_sym_symbol] = ACTIONS(3272), - [anon_sym_abstract] = ACTIONS(3272), - [anon_sym_interface] = ACTIONS(3272), - [anon_sym_enum] = ACTIONS(3272), + [ts_builtin_sym_end] = ACTIONS(3276), + [sym_identifier] = ACTIONS(3278), + [anon_sym_export] = ACTIONS(3278), + [anon_sym_default] = ACTIONS(3278), + [anon_sym_type] = ACTIONS(3278), + [anon_sym_namespace] = ACTIONS(3278), + [anon_sym_LBRACE] = ACTIONS(3276), + [anon_sym_RBRACE] = ACTIONS(3276), + [anon_sym_typeof] = ACTIONS(3278), + [anon_sym_import] = ACTIONS(3278), + [anon_sym_var] = ACTIONS(3278), + [anon_sym_let] = ACTIONS(3278), + [anon_sym_const] = ACTIONS(3278), + [anon_sym_BANG] = ACTIONS(3276), + [anon_sym_else] = ACTIONS(3278), + [anon_sym_if] = ACTIONS(3278), + [anon_sym_switch] = ACTIONS(3278), + [anon_sym_for] = ACTIONS(3278), + [anon_sym_LPAREN] = ACTIONS(3276), + [anon_sym_await] = ACTIONS(3278), + [anon_sym_while] = ACTIONS(3278), + [anon_sym_do] = ACTIONS(3278), + [anon_sym_try] = ACTIONS(3278), + [anon_sym_with] = ACTIONS(3278), + [anon_sym_break] = ACTIONS(3278), + [anon_sym_continue] = ACTIONS(3278), + [anon_sym_debugger] = ACTIONS(3278), + [anon_sym_return] = ACTIONS(3278), + [anon_sym_throw] = ACTIONS(3278), + [anon_sym_SEMI] = ACTIONS(3276), + [anon_sym_case] = ACTIONS(3278), + [anon_sym_yield] = ACTIONS(3278), + [anon_sym_LBRACK] = ACTIONS(3276), + [anon_sym_LT] = ACTIONS(3276), + [anon_sym_SLASH] = ACTIONS(3278), + [anon_sym_class] = ACTIONS(3278), + [anon_sym_async] = ACTIONS(3278), + [anon_sym_function] = ACTIONS(3278), + [anon_sym_new] = ACTIONS(3278), + [anon_sym_PLUS] = ACTIONS(3278), + [anon_sym_DASH] = ACTIONS(3278), + [anon_sym_TILDE] = ACTIONS(3276), + [anon_sym_void] = ACTIONS(3278), + [anon_sym_delete] = ACTIONS(3278), + [anon_sym_PLUS_PLUS] = ACTIONS(3276), + [anon_sym_DASH_DASH] = ACTIONS(3276), + [anon_sym_DQUOTE] = ACTIONS(3276), + [anon_sym_SQUOTE] = ACTIONS(3276), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3276), + [sym_number] = ACTIONS(3276), + [sym_this] = ACTIONS(3278), + [sym_super] = ACTIONS(3278), + [sym_true] = ACTIONS(3278), + [sym_false] = ACTIONS(3278), + [sym_null] = ACTIONS(3278), + [sym_undefined] = ACTIONS(3278), + [anon_sym_AT] = ACTIONS(3276), + [anon_sym_static] = ACTIONS(3278), + [anon_sym_readonly] = ACTIONS(3278), + [anon_sym_get] = ACTIONS(3278), + [anon_sym_set] = ACTIONS(3278), + [anon_sym_declare] = ACTIONS(3278), + [anon_sym_public] = ACTIONS(3278), + [anon_sym_private] = ACTIONS(3278), + [anon_sym_protected] = ACTIONS(3278), + [anon_sym_module] = ACTIONS(3278), + [anon_sym_any] = ACTIONS(3278), + [anon_sym_number] = ACTIONS(3278), + [anon_sym_boolean] = ACTIONS(3278), + [anon_sym_string] = ACTIONS(3278), + [anon_sym_symbol] = ACTIONS(3278), + [anon_sym_abstract] = ACTIONS(3278), + [anon_sym_interface] = ACTIONS(3278), + [anon_sym_enum] = ACTIONS(3278), }, [1125] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3280), + [sym_identifier] = ACTIONS(3282), + [anon_sym_export] = ACTIONS(3282), + [anon_sym_default] = ACTIONS(3282), + [anon_sym_type] = ACTIONS(3282), + [anon_sym_namespace] = ACTIONS(3282), + [anon_sym_LBRACE] = ACTIONS(3280), + [anon_sym_RBRACE] = ACTIONS(3280), + [anon_sym_typeof] = ACTIONS(3282), + [anon_sym_import] = ACTIONS(3282), + [anon_sym_var] = ACTIONS(3282), + [anon_sym_let] = ACTIONS(3282), + [anon_sym_const] = ACTIONS(3282), + [anon_sym_BANG] = ACTIONS(3280), + [anon_sym_else] = ACTIONS(3282), + [anon_sym_if] = ACTIONS(3282), + [anon_sym_switch] = ACTIONS(3282), + [anon_sym_for] = ACTIONS(3282), + [anon_sym_LPAREN] = ACTIONS(3280), + [anon_sym_await] = ACTIONS(3282), + [anon_sym_while] = ACTIONS(3282), + [anon_sym_do] = ACTIONS(3282), + [anon_sym_try] = ACTIONS(3282), + [anon_sym_with] = ACTIONS(3282), + [anon_sym_break] = ACTIONS(3282), + [anon_sym_continue] = ACTIONS(3282), + [anon_sym_debugger] = ACTIONS(3282), + [anon_sym_return] = ACTIONS(3282), + [anon_sym_throw] = ACTIONS(3282), + [anon_sym_SEMI] = ACTIONS(3280), + [anon_sym_case] = ACTIONS(3282), + [anon_sym_yield] = ACTIONS(3282), + [anon_sym_LBRACK] = ACTIONS(3280), + [anon_sym_LT] = ACTIONS(3280), + [anon_sym_SLASH] = ACTIONS(3282), + [anon_sym_class] = ACTIONS(3282), + [anon_sym_async] = ACTIONS(3282), + [anon_sym_function] = ACTIONS(3282), + [anon_sym_new] = ACTIONS(3282), + [anon_sym_PLUS] = ACTIONS(3282), + [anon_sym_DASH] = ACTIONS(3282), + [anon_sym_TILDE] = ACTIONS(3280), + [anon_sym_void] = ACTIONS(3282), + [anon_sym_delete] = ACTIONS(3282), + [anon_sym_PLUS_PLUS] = ACTIONS(3280), + [anon_sym_DASH_DASH] = ACTIONS(3280), + [anon_sym_DQUOTE] = ACTIONS(3280), + [anon_sym_SQUOTE] = ACTIONS(3280), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3280), + [sym_number] = ACTIONS(3280), + [sym_this] = ACTIONS(3282), + [sym_super] = ACTIONS(3282), + [sym_true] = ACTIONS(3282), + [sym_false] = ACTIONS(3282), + [sym_null] = ACTIONS(3282), + [sym_undefined] = ACTIONS(3282), + [anon_sym_AT] = ACTIONS(3280), + [anon_sym_static] = ACTIONS(3282), + [anon_sym_readonly] = ACTIONS(3282), + [anon_sym_get] = ACTIONS(3282), + [anon_sym_set] = ACTIONS(3282), + [anon_sym_declare] = ACTIONS(3282), + [anon_sym_public] = ACTIONS(3282), + [anon_sym_private] = ACTIONS(3282), + [anon_sym_protected] = ACTIONS(3282), + [anon_sym_module] = ACTIONS(3282), + [anon_sym_any] = ACTIONS(3282), + [anon_sym_number] = ACTIONS(3282), + [anon_sym_boolean] = ACTIONS(3282), + [anon_sym_string] = ACTIONS(3282), + [anon_sym_symbol] = ACTIONS(3282), + [anon_sym_abstract] = ACTIONS(3282), + [anon_sym_interface] = ACTIONS(3282), + [anon_sym_enum] = ACTIONS(3282), }, [1126] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1127] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1128] = { - [ts_builtin_sym_end] = ACTIONS(3274), - [sym_identifier] = ACTIONS(3276), - [anon_sym_export] = ACTIONS(3276), - [anon_sym_default] = ACTIONS(3276), - [anon_sym_type] = ACTIONS(3276), - [anon_sym_namespace] = ACTIONS(3276), - [anon_sym_LBRACE] = ACTIONS(3274), - [anon_sym_RBRACE] = ACTIONS(3274), - [anon_sym_typeof] = ACTIONS(3276), - [anon_sym_import] = ACTIONS(3276), - [anon_sym_var] = ACTIONS(3276), - [anon_sym_let] = ACTIONS(3276), - [anon_sym_const] = ACTIONS(3276), - [anon_sym_BANG] = ACTIONS(3274), - [anon_sym_else] = ACTIONS(3276), - [anon_sym_if] = ACTIONS(3276), - [anon_sym_switch] = ACTIONS(3276), - [anon_sym_for] = ACTIONS(3276), - [anon_sym_LPAREN] = ACTIONS(3274), - [anon_sym_await] = ACTIONS(3276), - [anon_sym_while] = ACTIONS(3276), - [anon_sym_do] = ACTIONS(3276), - [anon_sym_try] = ACTIONS(3276), - [anon_sym_with] = ACTIONS(3276), - [anon_sym_break] = ACTIONS(3276), - [anon_sym_continue] = ACTIONS(3276), - [anon_sym_debugger] = ACTIONS(3276), - [anon_sym_return] = ACTIONS(3276), - [anon_sym_throw] = ACTIONS(3276), - [anon_sym_SEMI] = ACTIONS(3274), - [anon_sym_case] = ACTIONS(3276), - [anon_sym_yield] = ACTIONS(3276), - [anon_sym_LBRACK] = ACTIONS(3274), - [anon_sym_LT] = ACTIONS(3274), - [anon_sym_SLASH] = ACTIONS(3276), - [anon_sym_class] = ACTIONS(3276), - [anon_sym_async] = ACTIONS(3276), - [anon_sym_function] = ACTIONS(3276), - [anon_sym_new] = ACTIONS(3276), - [anon_sym_PLUS] = ACTIONS(3276), - [anon_sym_DASH] = ACTIONS(3276), - [anon_sym_TILDE] = ACTIONS(3274), - [anon_sym_void] = ACTIONS(3276), - [anon_sym_delete] = ACTIONS(3276), - [anon_sym_PLUS_PLUS] = ACTIONS(3274), - [anon_sym_DASH_DASH] = ACTIONS(3274), - [anon_sym_DQUOTE] = ACTIONS(3274), - [anon_sym_SQUOTE] = ACTIONS(3274), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3274), - [sym_number] = ACTIONS(3274), - [sym_this] = ACTIONS(3276), - [sym_super] = ACTIONS(3276), - [sym_true] = ACTIONS(3276), - [sym_false] = ACTIONS(3276), - [sym_null] = ACTIONS(3276), - [sym_undefined] = ACTIONS(3276), - [anon_sym_AT] = ACTIONS(3274), - [anon_sym_static] = ACTIONS(3276), - [anon_sym_readonly] = ACTIONS(3276), - [anon_sym_get] = ACTIONS(3276), - [anon_sym_set] = ACTIONS(3276), - [anon_sym_declare] = ACTIONS(3276), - [anon_sym_public] = ACTIONS(3276), - [anon_sym_private] = ACTIONS(3276), - [anon_sym_protected] = ACTIONS(3276), - [anon_sym_module] = ACTIONS(3276), - [anon_sym_any] = ACTIONS(3276), - [anon_sym_number] = ACTIONS(3276), - [anon_sym_boolean] = ACTIONS(3276), - [anon_sym_string] = ACTIONS(3276), - [anon_sym_symbol] = ACTIONS(3276), - [anon_sym_abstract] = ACTIONS(3276), - [anon_sym_interface] = ACTIONS(3276), - [anon_sym_enum] = ACTIONS(3276), + [ts_builtin_sym_end] = ACTIONS(3284), + [sym_identifier] = ACTIONS(3286), + [anon_sym_export] = ACTIONS(3286), + [anon_sym_default] = ACTIONS(3286), + [anon_sym_type] = ACTIONS(3286), + [anon_sym_namespace] = ACTIONS(3286), + [anon_sym_LBRACE] = ACTIONS(3284), + [anon_sym_RBRACE] = ACTIONS(3284), + [anon_sym_typeof] = ACTIONS(3286), + [anon_sym_import] = ACTIONS(3286), + [anon_sym_var] = ACTIONS(3286), + [anon_sym_let] = ACTIONS(3286), + [anon_sym_const] = ACTIONS(3286), + [anon_sym_BANG] = ACTIONS(3284), + [anon_sym_else] = ACTIONS(3286), + [anon_sym_if] = ACTIONS(3286), + [anon_sym_switch] = ACTIONS(3286), + [anon_sym_for] = ACTIONS(3286), + [anon_sym_LPAREN] = ACTIONS(3284), + [anon_sym_await] = ACTIONS(3286), + [anon_sym_while] = ACTIONS(3286), + [anon_sym_do] = ACTIONS(3286), + [anon_sym_try] = ACTIONS(3286), + [anon_sym_with] = ACTIONS(3286), + [anon_sym_break] = ACTIONS(3286), + [anon_sym_continue] = ACTIONS(3286), + [anon_sym_debugger] = ACTIONS(3286), + [anon_sym_return] = ACTIONS(3286), + [anon_sym_throw] = ACTIONS(3286), + [anon_sym_SEMI] = ACTIONS(3284), + [anon_sym_case] = ACTIONS(3286), + [anon_sym_yield] = ACTIONS(3286), + [anon_sym_LBRACK] = ACTIONS(3284), + [anon_sym_LT] = ACTIONS(3284), + [anon_sym_SLASH] = ACTIONS(3286), + [anon_sym_class] = ACTIONS(3286), + [anon_sym_async] = ACTIONS(3286), + [anon_sym_function] = ACTIONS(3286), + [anon_sym_new] = ACTIONS(3286), + [anon_sym_PLUS] = ACTIONS(3286), + [anon_sym_DASH] = ACTIONS(3286), + [anon_sym_TILDE] = ACTIONS(3284), + [anon_sym_void] = ACTIONS(3286), + [anon_sym_delete] = ACTIONS(3286), + [anon_sym_PLUS_PLUS] = ACTIONS(3284), + [anon_sym_DASH_DASH] = ACTIONS(3284), + [anon_sym_DQUOTE] = ACTIONS(3284), + [anon_sym_SQUOTE] = ACTIONS(3284), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3284), + [sym_number] = ACTIONS(3284), + [sym_this] = ACTIONS(3286), + [sym_super] = ACTIONS(3286), + [sym_true] = ACTIONS(3286), + [sym_false] = ACTIONS(3286), + [sym_null] = ACTIONS(3286), + [sym_undefined] = ACTIONS(3286), + [anon_sym_AT] = ACTIONS(3284), + [anon_sym_static] = ACTIONS(3286), + [anon_sym_readonly] = ACTIONS(3286), + [anon_sym_get] = ACTIONS(3286), + [anon_sym_set] = ACTIONS(3286), + [anon_sym_declare] = ACTIONS(3286), + [anon_sym_public] = ACTIONS(3286), + [anon_sym_private] = ACTIONS(3286), + [anon_sym_protected] = ACTIONS(3286), + [anon_sym_module] = ACTIONS(3286), + [anon_sym_any] = ACTIONS(3286), + [anon_sym_number] = ACTIONS(3286), + [anon_sym_boolean] = ACTIONS(3286), + [anon_sym_string] = ACTIONS(3286), + [anon_sym_symbol] = ACTIONS(3286), + [anon_sym_abstract] = ACTIONS(3286), + [anon_sym_interface] = ACTIONS(3286), + [anon_sym_enum] = ACTIONS(3286), }, [1129] = { - [ts_builtin_sym_end] = ACTIONS(3278), - [sym_identifier] = ACTIONS(3280), - [anon_sym_export] = ACTIONS(3280), - [anon_sym_default] = ACTIONS(3280), - [anon_sym_type] = ACTIONS(3280), - [anon_sym_namespace] = ACTIONS(3280), - [anon_sym_LBRACE] = ACTIONS(3278), - [anon_sym_RBRACE] = ACTIONS(3278), - [anon_sym_typeof] = ACTIONS(3280), - [anon_sym_import] = ACTIONS(3280), - [anon_sym_var] = ACTIONS(3280), - [anon_sym_let] = ACTIONS(3280), - [anon_sym_const] = ACTIONS(3280), - [anon_sym_BANG] = ACTIONS(3278), - [anon_sym_else] = ACTIONS(3280), - [anon_sym_if] = ACTIONS(3280), - [anon_sym_switch] = ACTIONS(3280), - [anon_sym_for] = ACTIONS(3280), - [anon_sym_LPAREN] = ACTIONS(3278), - [anon_sym_await] = ACTIONS(3280), - [anon_sym_while] = ACTIONS(3280), - [anon_sym_do] = ACTIONS(3280), - [anon_sym_try] = ACTIONS(3280), - [anon_sym_with] = ACTIONS(3280), - [anon_sym_break] = ACTIONS(3280), - [anon_sym_continue] = ACTIONS(3280), - [anon_sym_debugger] = ACTIONS(3280), - [anon_sym_return] = ACTIONS(3280), - [anon_sym_throw] = ACTIONS(3280), - [anon_sym_SEMI] = ACTIONS(3278), - [anon_sym_case] = ACTIONS(3280), - [anon_sym_yield] = ACTIONS(3280), - [anon_sym_LBRACK] = ACTIONS(3278), - [anon_sym_LT] = ACTIONS(3278), - [anon_sym_SLASH] = ACTIONS(3280), - [anon_sym_class] = ACTIONS(3280), - [anon_sym_async] = ACTIONS(3280), - [anon_sym_function] = ACTIONS(3280), - [anon_sym_new] = ACTIONS(3280), - [anon_sym_PLUS] = ACTIONS(3280), - [anon_sym_DASH] = ACTIONS(3280), - [anon_sym_TILDE] = ACTIONS(3278), - [anon_sym_void] = ACTIONS(3280), - [anon_sym_delete] = ACTIONS(3280), - [anon_sym_PLUS_PLUS] = ACTIONS(3278), - [anon_sym_DASH_DASH] = ACTIONS(3278), - [anon_sym_DQUOTE] = ACTIONS(3278), - [anon_sym_SQUOTE] = ACTIONS(3278), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3278), - [sym_number] = ACTIONS(3278), - [sym_this] = ACTIONS(3280), - [sym_super] = ACTIONS(3280), - [sym_true] = ACTIONS(3280), - [sym_false] = ACTIONS(3280), - [sym_null] = ACTIONS(3280), - [sym_undefined] = ACTIONS(3280), - [anon_sym_AT] = ACTIONS(3278), - [anon_sym_static] = ACTIONS(3280), - [anon_sym_readonly] = ACTIONS(3280), - [anon_sym_get] = ACTIONS(3280), - [anon_sym_set] = ACTIONS(3280), - [anon_sym_declare] = ACTIONS(3280), - [anon_sym_public] = ACTIONS(3280), - [anon_sym_private] = ACTIONS(3280), - [anon_sym_protected] = ACTIONS(3280), - [anon_sym_module] = ACTIONS(3280), - [anon_sym_any] = ACTIONS(3280), - [anon_sym_number] = ACTIONS(3280), - [anon_sym_boolean] = ACTIONS(3280), - [anon_sym_string] = ACTIONS(3280), - [anon_sym_symbol] = ACTIONS(3280), - [anon_sym_abstract] = ACTIONS(3280), - [anon_sym_interface] = ACTIONS(3280), - [anon_sym_enum] = ACTIONS(3280), + [ts_builtin_sym_end] = ACTIONS(3192), + [sym_identifier] = ACTIONS(3194), + [anon_sym_export] = ACTIONS(3194), + [anon_sym_default] = ACTIONS(3194), + [anon_sym_type] = ACTIONS(3194), + [anon_sym_namespace] = ACTIONS(3194), + [anon_sym_LBRACE] = ACTIONS(3192), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_typeof] = ACTIONS(3194), + [anon_sym_import] = ACTIONS(3194), + [anon_sym_var] = ACTIONS(3194), + [anon_sym_let] = ACTIONS(3194), + [anon_sym_const] = ACTIONS(3194), + [anon_sym_BANG] = ACTIONS(3192), + [anon_sym_else] = ACTIONS(3194), + [anon_sym_if] = ACTIONS(3194), + [anon_sym_switch] = ACTIONS(3194), + [anon_sym_for] = ACTIONS(3194), + [anon_sym_LPAREN] = ACTIONS(3192), + [anon_sym_await] = ACTIONS(3194), + [anon_sym_while] = ACTIONS(3194), + [anon_sym_do] = ACTIONS(3194), + [anon_sym_try] = ACTIONS(3194), + [anon_sym_with] = ACTIONS(3194), + [anon_sym_break] = ACTIONS(3194), + [anon_sym_continue] = ACTIONS(3194), + [anon_sym_debugger] = ACTIONS(3194), + [anon_sym_return] = ACTIONS(3194), + [anon_sym_throw] = ACTIONS(3194), + [anon_sym_SEMI] = ACTIONS(3192), + [anon_sym_case] = ACTIONS(3194), + [anon_sym_yield] = ACTIONS(3194), + [anon_sym_LBRACK] = ACTIONS(3192), + [anon_sym_LT] = ACTIONS(3192), + [anon_sym_SLASH] = ACTIONS(3194), + [anon_sym_class] = ACTIONS(3194), + [anon_sym_async] = ACTIONS(3194), + [anon_sym_function] = ACTIONS(3194), + [anon_sym_new] = ACTIONS(3194), + [anon_sym_PLUS] = ACTIONS(3194), + [anon_sym_DASH] = ACTIONS(3194), + [anon_sym_TILDE] = ACTIONS(3192), + [anon_sym_void] = ACTIONS(3194), + [anon_sym_delete] = ACTIONS(3194), + [anon_sym_PLUS_PLUS] = ACTIONS(3192), + [anon_sym_DASH_DASH] = ACTIONS(3192), + [anon_sym_DQUOTE] = ACTIONS(3192), + [anon_sym_SQUOTE] = ACTIONS(3192), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3192), + [sym_number] = ACTIONS(3192), + [sym_this] = ACTIONS(3194), + [sym_super] = ACTIONS(3194), + [sym_true] = ACTIONS(3194), + [sym_false] = ACTIONS(3194), + [sym_null] = ACTIONS(3194), + [sym_undefined] = ACTIONS(3194), + [anon_sym_AT] = ACTIONS(3192), + [anon_sym_static] = ACTIONS(3194), + [anon_sym_readonly] = ACTIONS(3194), + [anon_sym_get] = ACTIONS(3194), + [anon_sym_set] = ACTIONS(3194), + [anon_sym_declare] = ACTIONS(3194), + [anon_sym_public] = ACTIONS(3194), + [anon_sym_private] = ACTIONS(3194), + [anon_sym_protected] = ACTIONS(3194), + [anon_sym_module] = ACTIONS(3194), + [anon_sym_any] = ACTIONS(3194), + [anon_sym_number] = ACTIONS(3194), + [anon_sym_boolean] = ACTIONS(3194), + [anon_sym_string] = ACTIONS(3194), + [anon_sym_symbol] = ACTIONS(3194), + [anon_sym_abstract] = ACTIONS(3194), + [anon_sym_interface] = ACTIONS(3194), + [anon_sym_enum] = ACTIONS(3194), }, [1130] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1131] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1132] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1133] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3288), + [sym_identifier] = ACTIONS(3290), + [anon_sym_export] = ACTIONS(3290), + [anon_sym_default] = ACTIONS(3290), + [anon_sym_type] = ACTIONS(3290), + [anon_sym_namespace] = ACTIONS(3290), + [anon_sym_LBRACE] = ACTIONS(3288), + [anon_sym_RBRACE] = ACTIONS(3288), + [anon_sym_typeof] = ACTIONS(3290), + [anon_sym_import] = ACTIONS(3290), + [anon_sym_var] = ACTIONS(3290), + [anon_sym_let] = ACTIONS(3290), + [anon_sym_const] = ACTIONS(3290), + [anon_sym_BANG] = ACTIONS(3288), + [anon_sym_else] = ACTIONS(3290), + [anon_sym_if] = ACTIONS(3290), + [anon_sym_switch] = ACTIONS(3290), + [anon_sym_for] = ACTIONS(3290), + [anon_sym_LPAREN] = ACTIONS(3288), + [anon_sym_await] = ACTIONS(3290), + [anon_sym_while] = ACTIONS(3290), + [anon_sym_do] = ACTIONS(3290), + [anon_sym_try] = ACTIONS(3290), + [anon_sym_with] = ACTIONS(3290), + [anon_sym_break] = ACTIONS(3290), + [anon_sym_continue] = ACTIONS(3290), + [anon_sym_debugger] = ACTIONS(3290), + [anon_sym_return] = ACTIONS(3290), + [anon_sym_throw] = ACTIONS(3290), + [anon_sym_SEMI] = ACTIONS(3288), + [anon_sym_case] = ACTIONS(3290), + [anon_sym_yield] = ACTIONS(3290), + [anon_sym_LBRACK] = ACTIONS(3288), + [anon_sym_LT] = ACTIONS(3288), + [anon_sym_SLASH] = ACTIONS(3290), + [anon_sym_class] = ACTIONS(3290), + [anon_sym_async] = ACTIONS(3290), + [anon_sym_function] = ACTIONS(3290), + [anon_sym_new] = ACTIONS(3290), + [anon_sym_PLUS] = ACTIONS(3290), + [anon_sym_DASH] = ACTIONS(3290), + [anon_sym_TILDE] = ACTIONS(3288), + [anon_sym_void] = ACTIONS(3290), + [anon_sym_delete] = ACTIONS(3290), + [anon_sym_PLUS_PLUS] = ACTIONS(3288), + [anon_sym_DASH_DASH] = ACTIONS(3288), + [anon_sym_DQUOTE] = ACTIONS(3288), + [anon_sym_SQUOTE] = ACTIONS(3288), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3288), + [sym_number] = ACTIONS(3288), + [sym_this] = ACTIONS(3290), + [sym_super] = ACTIONS(3290), + [sym_true] = ACTIONS(3290), + [sym_false] = ACTIONS(3290), + [sym_null] = ACTIONS(3290), + [sym_undefined] = ACTIONS(3290), + [anon_sym_AT] = ACTIONS(3288), + [anon_sym_static] = ACTIONS(3290), + [anon_sym_readonly] = ACTIONS(3290), + [anon_sym_get] = ACTIONS(3290), + [anon_sym_set] = ACTIONS(3290), + [anon_sym_declare] = ACTIONS(3290), + [anon_sym_public] = ACTIONS(3290), + [anon_sym_private] = ACTIONS(3290), + [anon_sym_protected] = ACTIONS(3290), + [anon_sym_module] = ACTIONS(3290), + [anon_sym_any] = ACTIONS(3290), + [anon_sym_number] = ACTIONS(3290), + [anon_sym_boolean] = ACTIONS(3290), + [anon_sym_string] = ACTIONS(3290), + [anon_sym_symbol] = ACTIONS(3290), + [anon_sym_abstract] = ACTIONS(3290), + [anon_sym_interface] = ACTIONS(3290), + [anon_sym_enum] = ACTIONS(3290), }, [1134] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3292), + [sym_identifier] = ACTIONS(3294), + [anon_sym_export] = ACTIONS(3294), + [anon_sym_default] = ACTIONS(3294), + [anon_sym_type] = ACTIONS(3294), + [anon_sym_namespace] = ACTIONS(3294), + [anon_sym_LBRACE] = ACTIONS(3292), + [anon_sym_RBRACE] = ACTIONS(3292), + [anon_sym_typeof] = ACTIONS(3294), + [anon_sym_import] = ACTIONS(3294), + [anon_sym_var] = ACTIONS(3294), + [anon_sym_let] = ACTIONS(3294), + [anon_sym_const] = ACTIONS(3294), + [anon_sym_BANG] = ACTIONS(3292), + [anon_sym_else] = ACTIONS(3294), + [anon_sym_if] = ACTIONS(3294), + [anon_sym_switch] = ACTIONS(3294), + [anon_sym_for] = ACTIONS(3294), + [anon_sym_LPAREN] = ACTIONS(3292), + [anon_sym_await] = ACTIONS(3294), + [anon_sym_while] = ACTIONS(3294), + [anon_sym_do] = ACTIONS(3294), + [anon_sym_try] = ACTIONS(3294), + [anon_sym_with] = ACTIONS(3294), + [anon_sym_break] = ACTIONS(3294), + [anon_sym_continue] = ACTIONS(3294), + [anon_sym_debugger] = ACTIONS(3294), + [anon_sym_return] = ACTIONS(3294), + [anon_sym_throw] = ACTIONS(3294), + [anon_sym_SEMI] = ACTIONS(3292), + [anon_sym_case] = ACTIONS(3294), + [anon_sym_yield] = ACTIONS(3294), + [anon_sym_LBRACK] = ACTIONS(3292), + [anon_sym_LT] = ACTIONS(3292), + [anon_sym_SLASH] = ACTIONS(3294), + [anon_sym_class] = ACTIONS(3294), + [anon_sym_async] = ACTIONS(3294), + [anon_sym_function] = ACTIONS(3294), + [anon_sym_new] = ACTIONS(3294), + [anon_sym_PLUS] = ACTIONS(3294), + [anon_sym_DASH] = ACTIONS(3294), + [anon_sym_TILDE] = ACTIONS(3292), + [anon_sym_void] = ACTIONS(3294), + [anon_sym_delete] = ACTIONS(3294), + [anon_sym_PLUS_PLUS] = ACTIONS(3292), + [anon_sym_DASH_DASH] = ACTIONS(3292), + [anon_sym_DQUOTE] = ACTIONS(3292), + [anon_sym_SQUOTE] = ACTIONS(3292), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3292), + [sym_number] = ACTIONS(3292), + [sym_this] = ACTIONS(3294), + [sym_super] = ACTIONS(3294), + [sym_true] = ACTIONS(3294), + [sym_false] = ACTIONS(3294), + [sym_null] = ACTIONS(3294), + [sym_undefined] = ACTIONS(3294), + [anon_sym_AT] = ACTIONS(3292), + [anon_sym_static] = ACTIONS(3294), + [anon_sym_readonly] = ACTIONS(3294), + [anon_sym_get] = ACTIONS(3294), + [anon_sym_set] = ACTIONS(3294), + [anon_sym_declare] = ACTIONS(3294), + [anon_sym_public] = ACTIONS(3294), + [anon_sym_private] = ACTIONS(3294), + [anon_sym_protected] = ACTIONS(3294), + [anon_sym_module] = ACTIONS(3294), + [anon_sym_any] = ACTIONS(3294), + [anon_sym_number] = ACTIONS(3294), + [anon_sym_boolean] = ACTIONS(3294), + [anon_sym_string] = ACTIONS(3294), + [anon_sym_symbol] = ACTIONS(3294), + [anon_sym_abstract] = ACTIONS(3294), + [anon_sym_interface] = ACTIONS(3294), + [anon_sym_enum] = ACTIONS(3294), }, [1135] = { - [ts_builtin_sym_end] = ACTIONS(2096), - [sym_identifier] = ACTIONS(2098), - [anon_sym_export] = ACTIONS(2098), - [anon_sym_default] = ACTIONS(2098), - [anon_sym_type] = ACTIONS(2098), - [anon_sym_namespace] = ACTIONS(2098), - [anon_sym_LBRACE] = ACTIONS(2096), - [anon_sym_RBRACE] = ACTIONS(2096), - [anon_sym_typeof] = ACTIONS(2098), - [anon_sym_import] = ACTIONS(2098), - [anon_sym_var] = ACTIONS(2098), - [anon_sym_let] = ACTIONS(2098), - [anon_sym_const] = ACTIONS(2098), - [anon_sym_BANG] = ACTIONS(2096), - [anon_sym_else] = ACTIONS(2098), - [anon_sym_if] = ACTIONS(2098), - [anon_sym_switch] = ACTIONS(2098), - [anon_sym_for] = ACTIONS(2098), - [anon_sym_LPAREN] = ACTIONS(2096), - [anon_sym_await] = ACTIONS(2098), - [anon_sym_while] = ACTIONS(2098), - [anon_sym_do] = ACTIONS(2098), - [anon_sym_try] = ACTIONS(2098), - [anon_sym_with] = ACTIONS(2098), - [anon_sym_break] = ACTIONS(2098), - [anon_sym_continue] = ACTIONS(2098), - [anon_sym_debugger] = ACTIONS(2098), - [anon_sym_return] = ACTIONS(2098), - [anon_sym_throw] = ACTIONS(2098), - [anon_sym_SEMI] = ACTIONS(2096), - [anon_sym_case] = ACTIONS(2098), - [anon_sym_yield] = ACTIONS(2098), - [anon_sym_LBRACK] = ACTIONS(2096), - [anon_sym_LT] = ACTIONS(2096), - [anon_sym_SLASH] = ACTIONS(2098), - [anon_sym_class] = ACTIONS(2098), - [anon_sym_async] = ACTIONS(2098), - [anon_sym_function] = ACTIONS(2098), - [anon_sym_new] = ACTIONS(2098), - [anon_sym_PLUS] = ACTIONS(2098), - [anon_sym_DASH] = ACTIONS(2098), - [anon_sym_TILDE] = ACTIONS(2096), - [anon_sym_void] = ACTIONS(2098), - [anon_sym_delete] = ACTIONS(2098), - [anon_sym_PLUS_PLUS] = ACTIONS(2096), - [anon_sym_DASH_DASH] = ACTIONS(2096), - [anon_sym_DQUOTE] = ACTIONS(2096), - [anon_sym_SQUOTE] = ACTIONS(2096), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2096), - [sym_number] = ACTIONS(2096), - [sym_this] = ACTIONS(2098), - [sym_super] = ACTIONS(2098), - [sym_true] = ACTIONS(2098), - [sym_false] = ACTIONS(2098), - [sym_null] = ACTIONS(2098), - [sym_undefined] = ACTIONS(2098), - [anon_sym_AT] = ACTIONS(2096), - [anon_sym_static] = ACTIONS(2098), - [anon_sym_readonly] = ACTIONS(2098), - [anon_sym_get] = ACTIONS(2098), - [anon_sym_set] = ACTIONS(2098), - [anon_sym_declare] = ACTIONS(2098), - [anon_sym_public] = ACTIONS(2098), - [anon_sym_private] = ACTIONS(2098), - [anon_sym_protected] = ACTIONS(2098), - [anon_sym_module] = ACTIONS(2098), - [anon_sym_any] = ACTIONS(2098), - [anon_sym_number] = ACTIONS(2098), - [anon_sym_boolean] = ACTIONS(2098), - [anon_sym_string] = ACTIONS(2098), - [anon_sym_symbol] = ACTIONS(2098), - [anon_sym_abstract] = ACTIONS(2098), - [anon_sym_interface] = ACTIONS(2098), - [anon_sym_enum] = ACTIONS(2098), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1136] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1137] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3296), + [sym_identifier] = ACTIONS(3298), + [anon_sym_export] = ACTIONS(3298), + [anon_sym_default] = ACTIONS(3298), + [anon_sym_type] = ACTIONS(3298), + [anon_sym_namespace] = ACTIONS(3298), + [anon_sym_LBRACE] = ACTIONS(3296), + [anon_sym_RBRACE] = ACTIONS(3296), + [anon_sym_typeof] = ACTIONS(3298), + [anon_sym_import] = ACTIONS(3298), + [anon_sym_var] = ACTIONS(3298), + [anon_sym_let] = ACTIONS(3298), + [anon_sym_const] = ACTIONS(3298), + [anon_sym_BANG] = ACTIONS(3296), + [anon_sym_else] = ACTIONS(3298), + [anon_sym_if] = ACTIONS(3298), + [anon_sym_switch] = ACTIONS(3298), + [anon_sym_for] = ACTIONS(3298), + [anon_sym_LPAREN] = ACTIONS(3296), + [anon_sym_await] = ACTIONS(3298), + [anon_sym_while] = ACTIONS(3298), + [anon_sym_do] = ACTIONS(3298), + [anon_sym_try] = ACTIONS(3298), + [anon_sym_with] = ACTIONS(3298), + [anon_sym_break] = ACTIONS(3298), + [anon_sym_continue] = ACTIONS(3298), + [anon_sym_debugger] = ACTIONS(3298), + [anon_sym_return] = ACTIONS(3298), + [anon_sym_throw] = ACTIONS(3298), + [anon_sym_SEMI] = ACTIONS(3296), + [anon_sym_case] = ACTIONS(3298), + [anon_sym_yield] = ACTIONS(3298), + [anon_sym_LBRACK] = ACTIONS(3296), + [anon_sym_LT] = ACTIONS(3296), + [anon_sym_SLASH] = ACTIONS(3298), + [anon_sym_class] = ACTIONS(3298), + [anon_sym_async] = ACTIONS(3298), + [anon_sym_function] = ACTIONS(3298), + [anon_sym_new] = ACTIONS(3298), + [anon_sym_PLUS] = ACTIONS(3298), + [anon_sym_DASH] = ACTIONS(3298), + [anon_sym_TILDE] = ACTIONS(3296), + [anon_sym_void] = ACTIONS(3298), + [anon_sym_delete] = ACTIONS(3298), + [anon_sym_PLUS_PLUS] = ACTIONS(3296), + [anon_sym_DASH_DASH] = ACTIONS(3296), + [anon_sym_DQUOTE] = ACTIONS(3296), + [anon_sym_SQUOTE] = ACTIONS(3296), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3296), + [sym_number] = ACTIONS(3296), + [sym_this] = ACTIONS(3298), + [sym_super] = ACTIONS(3298), + [sym_true] = ACTIONS(3298), + [sym_false] = ACTIONS(3298), + [sym_null] = ACTIONS(3298), + [sym_undefined] = ACTIONS(3298), + [anon_sym_AT] = ACTIONS(3296), + [anon_sym_static] = ACTIONS(3298), + [anon_sym_readonly] = ACTIONS(3298), + [anon_sym_get] = ACTIONS(3298), + [anon_sym_set] = ACTIONS(3298), + [anon_sym_declare] = ACTIONS(3298), + [anon_sym_public] = ACTIONS(3298), + [anon_sym_private] = ACTIONS(3298), + [anon_sym_protected] = ACTIONS(3298), + [anon_sym_module] = ACTIONS(3298), + [anon_sym_any] = ACTIONS(3298), + [anon_sym_number] = ACTIONS(3298), + [anon_sym_boolean] = ACTIONS(3298), + [anon_sym_string] = ACTIONS(3298), + [anon_sym_symbol] = ACTIONS(3298), + [anon_sym_abstract] = ACTIONS(3298), + [anon_sym_interface] = ACTIONS(3298), + [anon_sym_enum] = ACTIONS(3298), }, [1138] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3300), + [sym_identifier] = ACTIONS(3302), + [anon_sym_export] = ACTIONS(3302), + [anon_sym_default] = ACTIONS(3302), + [anon_sym_type] = ACTIONS(3302), + [anon_sym_namespace] = ACTIONS(3302), + [anon_sym_LBRACE] = ACTIONS(3300), + [anon_sym_RBRACE] = ACTIONS(3300), + [anon_sym_typeof] = ACTIONS(3302), + [anon_sym_import] = ACTIONS(3302), + [anon_sym_var] = ACTIONS(3302), + [anon_sym_let] = ACTIONS(3302), + [anon_sym_const] = ACTIONS(3302), + [anon_sym_BANG] = ACTIONS(3300), + [anon_sym_else] = ACTIONS(3302), + [anon_sym_if] = ACTIONS(3302), + [anon_sym_switch] = ACTIONS(3302), + [anon_sym_for] = ACTIONS(3302), + [anon_sym_LPAREN] = ACTIONS(3300), + [anon_sym_await] = ACTIONS(3302), + [anon_sym_while] = ACTIONS(3302), + [anon_sym_do] = ACTIONS(3302), + [anon_sym_try] = ACTIONS(3302), + [anon_sym_with] = ACTIONS(3302), + [anon_sym_break] = ACTIONS(3302), + [anon_sym_continue] = ACTIONS(3302), + [anon_sym_debugger] = ACTIONS(3302), + [anon_sym_return] = ACTIONS(3302), + [anon_sym_throw] = ACTIONS(3302), + [anon_sym_SEMI] = ACTIONS(3300), + [anon_sym_case] = ACTIONS(3302), + [anon_sym_yield] = ACTIONS(3302), + [anon_sym_LBRACK] = ACTIONS(3300), + [anon_sym_LT] = ACTIONS(3300), + [anon_sym_SLASH] = ACTIONS(3302), + [anon_sym_class] = ACTIONS(3302), + [anon_sym_async] = ACTIONS(3302), + [anon_sym_function] = ACTIONS(3302), + [anon_sym_new] = ACTIONS(3302), + [anon_sym_PLUS] = ACTIONS(3302), + [anon_sym_DASH] = ACTIONS(3302), + [anon_sym_TILDE] = ACTIONS(3300), + [anon_sym_void] = ACTIONS(3302), + [anon_sym_delete] = ACTIONS(3302), + [anon_sym_PLUS_PLUS] = ACTIONS(3300), + [anon_sym_DASH_DASH] = ACTIONS(3300), + [anon_sym_DQUOTE] = ACTIONS(3300), + [anon_sym_SQUOTE] = ACTIONS(3300), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3300), + [sym_number] = ACTIONS(3300), + [sym_this] = ACTIONS(3302), + [sym_super] = ACTIONS(3302), + [sym_true] = ACTIONS(3302), + [sym_false] = ACTIONS(3302), + [sym_null] = ACTIONS(3302), + [sym_undefined] = ACTIONS(3302), + [anon_sym_AT] = ACTIONS(3300), + [anon_sym_static] = ACTIONS(3302), + [anon_sym_readonly] = ACTIONS(3302), + [anon_sym_get] = ACTIONS(3302), + [anon_sym_set] = ACTIONS(3302), + [anon_sym_declare] = ACTIONS(3302), + [anon_sym_public] = ACTIONS(3302), + [anon_sym_private] = ACTIONS(3302), + [anon_sym_protected] = ACTIONS(3302), + [anon_sym_module] = ACTIONS(3302), + [anon_sym_any] = ACTIONS(3302), + [anon_sym_number] = ACTIONS(3302), + [anon_sym_boolean] = ACTIONS(3302), + [anon_sym_string] = ACTIONS(3302), + [anon_sym_symbol] = ACTIONS(3302), + [anon_sym_abstract] = ACTIONS(3302), + [anon_sym_interface] = ACTIONS(3302), + [anon_sym_enum] = ACTIONS(3302), }, [1139] = { - [ts_builtin_sym_end] = ACTIONS(3282), - [sym_identifier] = ACTIONS(3284), - [anon_sym_export] = ACTIONS(3284), - [anon_sym_default] = ACTIONS(3284), - [anon_sym_type] = ACTIONS(3284), - [anon_sym_namespace] = ACTIONS(3284), - [anon_sym_LBRACE] = ACTIONS(3282), - [anon_sym_RBRACE] = ACTIONS(3282), - [anon_sym_typeof] = ACTIONS(3284), - [anon_sym_import] = ACTIONS(3284), - [anon_sym_var] = ACTIONS(3284), - [anon_sym_let] = ACTIONS(3284), - [anon_sym_const] = ACTIONS(3284), - [anon_sym_BANG] = ACTIONS(3282), - [anon_sym_else] = ACTIONS(3284), - [anon_sym_if] = ACTIONS(3284), - [anon_sym_switch] = ACTIONS(3284), - [anon_sym_for] = ACTIONS(3284), - [anon_sym_LPAREN] = ACTIONS(3282), - [anon_sym_await] = ACTIONS(3284), - [anon_sym_while] = ACTIONS(3284), - [anon_sym_do] = ACTIONS(3284), - [anon_sym_try] = ACTIONS(3284), - [anon_sym_with] = ACTIONS(3284), - [anon_sym_break] = ACTIONS(3284), - [anon_sym_continue] = ACTIONS(3284), - [anon_sym_debugger] = ACTIONS(3284), - [anon_sym_return] = ACTIONS(3284), - [anon_sym_throw] = ACTIONS(3284), - [anon_sym_SEMI] = ACTIONS(3282), - [anon_sym_case] = ACTIONS(3284), - [anon_sym_yield] = ACTIONS(3284), - [anon_sym_LBRACK] = ACTIONS(3282), - [anon_sym_LT] = ACTIONS(3282), - [anon_sym_SLASH] = ACTIONS(3284), - [anon_sym_class] = ACTIONS(3284), - [anon_sym_async] = ACTIONS(3284), - [anon_sym_function] = ACTIONS(3284), - [anon_sym_new] = ACTIONS(3284), - [anon_sym_PLUS] = ACTIONS(3284), - [anon_sym_DASH] = ACTIONS(3284), - [anon_sym_TILDE] = ACTIONS(3282), - [anon_sym_void] = ACTIONS(3284), - [anon_sym_delete] = ACTIONS(3284), - [anon_sym_PLUS_PLUS] = ACTIONS(3282), - [anon_sym_DASH_DASH] = ACTIONS(3282), - [anon_sym_DQUOTE] = ACTIONS(3282), - [anon_sym_SQUOTE] = ACTIONS(3282), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3282), - [sym_number] = ACTIONS(3282), - [sym_this] = ACTIONS(3284), - [sym_super] = ACTIONS(3284), - [sym_true] = ACTIONS(3284), - [sym_false] = ACTIONS(3284), - [sym_null] = ACTIONS(3284), - [sym_undefined] = ACTIONS(3284), - [anon_sym_AT] = ACTIONS(3282), - [anon_sym_static] = ACTIONS(3284), - [anon_sym_readonly] = ACTIONS(3284), - [anon_sym_get] = ACTIONS(3284), - [anon_sym_set] = ACTIONS(3284), - [anon_sym_declare] = ACTIONS(3284), - [anon_sym_public] = ACTIONS(3284), - [anon_sym_private] = ACTIONS(3284), - [anon_sym_protected] = ACTIONS(3284), - [anon_sym_module] = ACTIONS(3284), - [anon_sym_any] = ACTIONS(3284), - [anon_sym_number] = ACTIONS(3284), - [anon_sym_boolean] = ACTIONS(3284), - [anon_sym_string] = ACTIONS(3284), - [anon_sym_symbol] = ACTIONS(3284), - [anon_sym_abstract] = ACTIONS(3284), - [anon_sym_interface] = ACTIONS(3284), - [anon_sym_enum] = ACTIONS(3284), + [ts_builtin_sym_end] = ACTIONS(3304), + [sym_identifier] = ACTIONS(3306), + [anon_sym_export] = ACTIONS(3306), + [anon_sym_default] = ACTIONS(3306), + [anon_sym_type] = ACTIONS(3306), + [anon_sym_namespace] = ACTIONS(3306), + [anon_sym_LBRACE] = ACTIONS(3304), + [anon_sym_RBRACE] = ACTIONS(3304), + [anon_sym_typeof] = ACTIONS(3306), + [anon_sym_import] = ACTIONS(3306), + [anon_sym_var] = ACTIONS(3306), + [anon_sym_let] = ACTIONS(3306), + [anon_sym_const] = ACTIONS(3306), + [anon_sym_BANG] = ACTIONS(3304), + [anon_sym_else] = ACTIONS(3306), + [anon_sym_if] = ACTIONS(3306), + [anon_sym_switch] = ACTIONS(3306), + [anon_sym_for] = ACTIONS(3306), + [anon_sym_LPAREN] = ACTIONS(3304), + [anon_sym_await] = ACTIONS(3306), + [anon_sym_while] = ACTIONS(3306), + [anon_sym_do] = ACTIONS(3306), + [anon_sym_try] = ACTIONS(3306), + [anon_sym_with] = ACTIONS(3306), + [anon_sym_break] = ACTIONS(3306), + [anon_sym_continue] = ACTIONS(3306), + [anon_sym_debugger] = ACTIONS(3306), + [anon_sym_return] = ACTIONS(3306), + [anon_sym_throw] = ACTIONS(3306), + [anon_sym_SEMI] = ACTIONS(3304), + [anon_sym_case] = ACTIONS(3306), + [anon_sym_yield] = ACTIONS(3306), + [anon_sym_LBRACK] = ACTIONS(3304), + [anon_sym_LT] = ACTIONS(3304), + [anon_sym_SLASH] = ACTIONS(3306), + [anon_sym_class] = ACTIONS(3306), + [anon_sym_async] = ACTIONS(3306), + [anon_sym_function] = ACTIONS(3306), + [anon_sym_new] = ACTIONS(3306), + [anon_sym_PLUS] = ACTIONS(3306), + [anon_sym_DASH] = ACTIONS(3306), + [anon_sym_TILDE] = ACTIONS(3304), + [anon_sym_void] = ACTIONS(3306), + [anon_sym_delete] = ACTIONS(3306), + [anon_sym_PLUS_PLUS] = ACTIONS(3304), + [anon_sym_DASH_DASH] = ACTIONS(3304), + [anon_sym_DQUOTE] = ACTIONS(3304), + [anon_sym_SQUOTE] = ACTIONS(3304), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3304), + [sym_number] = ACTIONS(3304), + [sym_this] = ACTIONS(3306), + [sym_super] = ACTIONS(3306), + [sym_true] = ACTIONS(3306), + [sym_false] = ACTIONS(3306), + [sym_null] = ACTIONS(3306), + [sym_undefined] = ACTIONS(3306), + [anon_sym_AT] = ACTIONS(3304), + [anon_sym_static] = ACTIONS(3306), + [anon_sym_readonly] = ACTIONS(3306), + [anon_sym_get] = ACTIONS(3306), + [anon_sym_set] = ACTIONS(3306), + [anon_sym_declare] = ACTIONS(3306), + [anon_sym_public] = ACTIONS(3306), + [anon_sym_private] = ACTIONS(3306), + [anon_sym_protected] = ACTIONS(3306), + [anon_sym_module] = ACTIONS(3306), + [anon_sym_any] = ACTIONS(3306), + [anon_sym_number] = ACTIONS(3306), + [anon_sym_boolean] = ACTIONS(3306), + [anon_sym_string] = ACTIONS(3306), + [anon_sym_symbol] = ACTIONS(3306), + [anon_sym_abstract] = ACTIONS(3306), + [anon_sym_interface] = ACTIONS(3306), + [anon_sym_enum] = ACTIONS(3306), }, [1140] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1141] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), }, [1142] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3308), + [sym_identifier] = ACTIONS(3310), + [anon_sym_export] = ACTIONS(3310), + [anon_sym_default] = ACTIONS(3310), + [anon_sym_type] = ACTIONS(3310), + [anon_sym_namespace] = ACTIONS(3310), + [anon_sym_LBRACE] = ACTIONS(3308), + [anon_sym_RBRACE] = ACTIONS(3308), + [anon_sym_typeof] = ACTIONS(3310), + [anon_sym_import] = ACTIONS(3310), + [anon_sym_var] = ACTIONS(3310), + [anon_sym_let] = ACTIONS(3310), + [anon_sym_const] = ACTIONS(3310), + [anon_sym_BANG] = ACTIONS(3308), + [anon_sym_else] = ACTIONS(3310), + [anon_sym_if] = ACTIONS(3310), + [anon_sym_switch] = ACTIONS(3310), + [anon_sym_for] = ACTIONS(3310), + [anon_sym_LPAREN] = ACTIONS(3308), + [anon_sym_await] = ACTIONS(3310), + [anon_sym_while] = ACTIONS(3310), + [anon_sym_do] = ACTIONS(3310), + [anon_sym_try] = ACTIONS(3310), + [anon_sym_with] = ACTIONS(3310), + [anon_sym_break] = ACTIONS(3310), + [anon_sym_continue] = ACTIONS(3310), + [anon_sym_debugger] = ACTIONS(3310), + [anon_sym_return] = ACTIONS(3310), + [anon_sym_throw] = ACTIONS(3310), + [anon_sym_SEMI] = ACTIONS(3308), + [anon_sym_case] = ACTIONS(3310), + [anon_sym_yield] = ACTIONS(3310), + [anon_sym_LBRACK] = ACTIONS(3308), + [anon_sym_LT] = ACTIONS(3308), + [anon_sym_SLASH] = ACTIONS(3310), + [anon_sym_class] = ACTIONS(3310), + [anon_sym_async] = ACTIONS(3310), + [anon_sym_function] = ACTIONS(3310), + [anon_sym_new] = ACTIONS(3310), + [anon_sym_PLUS] = ACTIONS(3310), + [anon_sym_DASH] = ACTIONS(3310), + [anon_sym_TILDE] = ACTIONS(3308), + [anon_sym_void] = ACTIONS(3310), + [anon_sym_delete] = ACTIONS(3310), + [anon_sym_PLUS_PLUS] = ACTIONS(3308), + [anon_sym_DASH_DASH] = ACTIONS(3308), + [anon_sym_DQUOTE] = ACTIONS(3308), + [anon_sym_SQUOTE] = ACTIONS(3308), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3308), + [sym_number] = ACTIONS(3308), + [sym_this] = ACTIONS(3310), + [sym_super] = ACTIONS(3310), + [sym_true] = ACTIONS(3310), + [sym_false] = ACTIONS(3310), + [sym_null] = ACTIONS(3310), + [sym_undefined] = ACTIONS(3310), + [anon_sym_AT] = ACTIONS(3308), + [anon_sym_static] = ACTIONS(3310), + [anon_sym_readonly] = ACTIONS(3310), + [anon_sym_get] = ACTIONS(3310), + [anon_sym_set] = ACTIONS(3310), + [anon_sym_declare] = ACTIONS(3310), + [anon_sym_public] = ACTIONS(3310), + [anon_sym_private] = ACTIONS(3310), + [anon_sym_protected] = ACTIONS(3310), + [anon_sym_module] = ACTIONS(3310), + [anon_sym_any] = ACTIONS(3310), + [anon_sym_number] = ACTIONS(3310), + [anon_sym_boolean] = ACTIONS(3310), + [anon_sym_string] = ACTIONS(3310), + [anon_sym_symbol] = ACTIONS(3310), + [anon_sym_abstract] = ACTIONS(3310), + [anon_sym_interface] = ACTIONS(3310), + [anon_sym_enum] = ACTIONS(3310), }, [1143] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3312), + [sym_identifier] = ACTIONS(3314), + [anon_sym_export] = ACTIONS(3314), + [anon_sym_default] = ACTIONS(3314), + [anon_sym_type] = ACTIONS(3314), + [anon_sym_namespace] = ACTIONS(3314), + [anon_sym_LBRACE] = ACTIONS(3312), + [anon_sym_RBRACE] = ACTIONS(3312), + [anon_sym_typeof] = ACTIONS(3314), + [anon_sym_import] = ACTIONS(3314), + [anon_sym_var] = ACTIONS(3314), + [anon_sym_let] = ACTIONS(3314), + [anon_sym_const] = ACTIONS(3314), + [anon_sym_BANG] = ACTIONS(3312), + [anon_sym_else] = ACTIONS(3314), + [anon_sym_if] = ACTIONS(3314), + [anon_sym_switch] = ACTIONS(3314), + [anon_sym_for] = ACTIONS(3314), + [anon_sym_LPAREN] = ACTIONS(3312), + [anon_sym_await] = ACTIONS(3314), + [anon_sym_while] = ACTIONS(3314), + [anon_sym_do] = ACTIONS(3314), + [anon_sym_try] = ACTIONS(3314), + [anon_sym_with] = ACTIONS(3314), + [anon_sym_break] = ACTIONS(3314), + [anon_sym_continue] = ACTIONS(3314), + [anon_sym_debugger] = ACTIONS(3314), + [anon_sym_return] = ACTIONS(3314), + [anon_sym_throw] = ACTIONS(3314), + [anon_sym_SEMI] = ACTIONS(3312), + [anon_sym_case] = ACTIONS(3314), + [anon_sym_yield] = ACTIONS(3314), + [anon_sym_LBRACK] = ACTIONS(3312), + [anon_sym_LT] = ACTIONS(3312), + [anon_sym_SLASH] = ACTIONS(3314), + [anon_sym_class] = ACTIONS(3314), + [anon_sym_async] = ACTIONS(3314), + [anon_sym_function] = ACTIONS(3314), + [anon_sym_new] = ACTIONS(3314), + [anon_sym_PLUS] = ACTIONS(3314), + [anon_sym_DASH] = ACTIONS(3314), + [anon_sym_TILDE] = ACTIONS(3312), + [anon_sym_void] = ACTIONS(3314), + [anon_sym_delete] = ACTIONS(3314), + [anon_sym_PLUS_PLUS] = ACTIONS(3312), + [anon_sym_DASH_DASH] = ACTIONS(3312), + [anon_sym_DQUOTE] = ACTIONS(3312), + [anon_sym_SQUOTE] = ACTIONS(3312), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3312), + [sym_number] = ACTIONS(3312), + [sym_this] = ACTIONS(3314), + [sym_super] = ACTIONS(3314), + [sym_true] = ACTIONS(3314), + [sym_false] = ACTIONS(3314), + [sym_null] = ACTIONS(3314), + [sym_undefined] = ACTIONS(3314), + [anon_sym_AT] = ACTIONS(3312), + [anon_sym_static] = ACTIONS(3314), + [anon_sym_readonly] = ACTIONS(3314), + [anon_sym_get] = ACTIONS(3314), + [anon_sym_set] = ACTIONS(3314), + [anon_sym_declare] = ACTIONS(3314), + [anon_sym_public] = ACTIONS(3314), + [anon_sym_private] = ACTIONS(3314), + [anon_sym_protected] = ACTIONS(3314), + [anon_sym_module] = ACTIONS(3314), + [anon_sym_any] = ACTIONS(3314), + [anon_sym_number] = ACTIONS(3314), + [anon_sym_boolean] = ACTIONS(3314), + [anon_sym_string] = ACTIONS(3314), + [anon_sym_symbol] = ACTIONS(3314), + [anon_sym_abstract] = ACTIONS(3314), + [anon_sym_interface] = ACTIONS(3314), + [anon_sym_enum] = ACTIONS(3314), }, [1144] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3316), + [sym_identifier] = ACTIONS(3318), + [anon_sym_export] = ACTIONS(3318), + [anon_sym_default] = ACTIONS(3318), + [anon_sym_type] = ACTIONS(3318), + [anon_sym_namespace] = ACTIONS(3318), + [anon_sym_LBRACE] = ACTIONS(3316), + [anon_sym_RBRACE] = ACTIONS(3316), + [anon_sym_typeof] = ACTIONS(3318), + [anon_sym_import] = ACTIONS(3318), + [anon_sym_var] = ACTIONS(3318), + [anon_sym_let] = ACTIONS(3318), + [anon_sym_const] = ACTIONS(3318), + [anon_sym_BANG] = ACTIONS(3316), + [anon_sym_else] = ACTIONS(3318), + [anon_sym_if] = ACTIONS(3318), + [anon_sym_switch] = ACTIONS(3318), + [anon_sym_for] = ACTIONS(3318), + [anon_sym_LPAREN] = ACTIONS(3316), + [anon_sym_await] = ACTIONS(3318), + [anon_sym_while] = ACTIONS(3318), + [anon_sym_do] = ACTIONS(3318), + [anon_sym_try] = ACTIONS(3318), + [anon_sym_with] = ACTIONS(3318), + [anon_sym_break] = ACTIONS(3318), + [anon_sym_continue] = ACTIONS(3318), + [anon_sym_debugger] = ACTIONS(3318), + [anon_sym_return] = ACTIONS(3318), + [anon_sym_throw] = ACTIONS(3318), + [anon_sym_SEMI] = ACTIONS(3316), + [anon_sym_case] = ACTIONS(3318), + [anon_sym_yield] = ACTIONS(3318), + [anon_sym_LBRACK] = ACTIONS(3316), + [anon_sym_LT] = ACTIONS(3316), + [anon_sym_SLASH] = ACTIONS(3318), + [anon_sym_class] = ACTIONS(3318), + [anon_sym_async] = ACTIONS(3318), + [anon_sym_function] = ACTIONS(3318), + [anon_sym_new] = ACTIONS(3318), + [anon_sym_PLUS] = ACTIONS(3318), + [anon_sym_DASH] = ACTIONS(3318), + [anon_sym_TILDE] = ACTIONS(3316), + [anon_sym_void] = ACTIONS(3318), + [anon_sym_delete] = ACTIONS(3318), + [anon_sym_PLUS_PLUS] = ACTIONS(3316), + [anon_sym_DASH_DASH] = ACTIONS(3316), + [anon_sym_DQUOTE] = ACTIONS(3316), + [anon_sym_SQUOTE] = ACTIONS(3316), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3316), + [sym_number] = ACTIONS(3316), + [sym_this] = ACTIONS(3318), + [sym_super] = ACTIONS(3318), + [sym_true] = ACTIONS(3318), + [sym_false] = ACTIONS(3318), + [sym_null] = ACTIONS(3318), + [sym_undefined] = ACTIONS(3318), + [anon_sym_AT] = ACTIONS(3316), + [anon_sym_static] = ACTIONS(3318), + [anon_sym_readonly] = ACTIONS(3318), + [anon_sym_get] = ACTIONS(3318), + [anon_sym_set] = ACTIONS(3318), + [anon_sym_declare] = ACTIONS(3318), + [anon_sym_public] = ACTIONS(3318), + [anon_sym_private] = ACTIONS(3318), + [anon_sym_protected] = ACTIONS(3318), + [anon_sym_module] = ACTIONS(3318), + [anon_sym_any] = ACTIONS(3318), + [anon_sym_number] = ACTIONS(3318), + [anon_sym_boolean] = ACTIONS(3318), + [anon_sym_string] = ACTIONS(3318), + [anon_sym_symbol] = ACTIONS(3318), + [anon_sym_abstract] = ACTIONS(3318), + [anon_sym_interface] = ACTIONS(3318), + [anon_sym_enum] = ACTIONS(3318), }, [1145] = { - [ts_builtin_sym_end] = ACTIONS(3286), - [sym_identifier] = ACTIONS(3288), - [anon_sym_export] = ACTIONS(3288), - [anon_sym_default] = ACTIONS(3288), - [anon_sym_type] = ACTIONS(3288), - [anon_sym_namespace] = ACTIONS(3288), - [anon_sym_LBRACE] = ACTIONS(3286), - [anon_sym_RBRACE] = ACTIONS(3286), - [anon_sym_typeof] = ACTIONS(3288), - [anon_sym_import] = ACTIONS(3288), - [anon_sym_var] = ACTIONS(3288), - [anon_sym_let] = ACTIONS(3288), - [anon_sym_const] = ACTIONS(3288), - [anon_sym_BANG] = ACTIONS(3286), - [anon_sym_else] = ACTIONS(3288), - [anon_sym_if] = ACTIONS(3288), - [anon_sym_switch] = ACTIONS(3288), - [anon_sym_for] = ACTIONS(3288), - [anon_sym_LPAREN] = ACTIONS(3286), - [anon_sym_await] = ACTIONS(3288), - [anon_sym_while] = ACTIONS(3288), - [anon_sym_do] = ACTIONS(3288), - [anon_sym_try] = ACTIONS(3288), - [anon_sym_with] = ACTIONS(3288), - [anon_sym_break] = ACTIONS(3288), - [anon_sym_continue] = ACTIONS(3288), - [anon_sym_debugger] = ACTIONS(3288), - [anon_sym_return] = ACTIONS(3288), - [anon_sym_throw] = ACTIONS(3288), - [anon_sym_SEMI] = ACTIONS(3286), - [anon_sym_case] = ACTIONS(3288), - [anon_sym_yield] = ACTIONS(3288), - [anon_sym_LBRACK] = ACTIONS(3286), - [anon_sym_LT] = ACTIONS(3286), - [anon_sym_SLASH] = ACTIONS(3288), - [anon_sym_class] = ACTIONS(3288), - [anon_sym_async] = ACTIONS(3288), - [anon_sym_function] = ACTIONS(3288), - [anon_sym_new] = ACTIONS(3288), - [anon_sym_PLUS] = ACTIONS(3288), - [anon_sym_DASH] = ACTIONS(3288), - [anon_sym_TILDE] = ACTIONS(3286), - [anon_sym_void] = ACTIONS(3288), - [anon_sym_delete] = ACTIONS(3288), - [anon_sym_PLUS_PLUS] = ACTIONS(3286), - [anon_sym_DASH_DASH] = ACTIONS(3286), - [anon_sym_DQUOTE] = ACTIONS(3286), - [anon_sym_SQUOTE] = ACTIONS(3286), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3286), - [sym_number] = ACTIONS(3286), - [sym_this] = ACTIONS(3288), - [sym_super] = ACTIONS(3288), - [sym_true] = ACTIONS(3288), - [sym_false] = ACTIONS(3288), - [sym_null] = ACTIONS(3288), - [sym_undefined] = ACTIONS(3288), - [anon_sym_AT] = ACTIONS(3286), - [anon_sym_static] = ACTIONS(3288), - [anon_sym_readonly] = ACTIONS(3288), - [anon_sym_get] = ACTIONS(3288), - [anon_sym_set] = ACTIONS(3288), - [anon_sym_declare] = ACTIONS(3288), - [anon_sym_public] = ACTIONS(3288), - [anon_sym_private] = ACTIONS(3288), - [anon_sym_protected] = ACTIONS(3288), - [anon_sym_module] = ACTIONS(3288), - [anon_sym_any] = ACTIONS(3288), - [anon_sym_number] = ACTIONS(3288), - [anon_sym_boolean] = ACTIONS(3288), - [anon_sym_string] = ACTIONS(3288), - [anon_sym_symbol] = ACTIONS(3288), - [anon_sym_abstract] = ACTIONS(3288), - [anon_sym_interface] = ACTIONS(3288), - [anon_sym_enum] = ACTIONS(3288), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1146] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1147] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1148] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1149] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3320), + [sym_identifier] = ACTIONS(3322), + [anon_sym_export] = ACTIONS(3322), + [anon_sym_default] = ACTIONS(3322), + [anon_sym_type] = ACTIONS(3322), + [anon_sym_namespace] = ACTIONS(3322), + [anon_sym_LBRACE] = ACTIONS(3320), + [anon_sym_RBRACE] = ACTIONS(3320), + [anon_sym_typeof] = ACTIONS(3322), + [anon_sym_import] = ACTIONS(3322), + [anon_sym_var] = ACTIONS(3322), + [anon_sym_let] = ACTIONS(3322), + [anon_sym_const] = ACTIONS(3322), + [anon_sym_BANG] = ACTIONS(3320), + [anon_sym_else] = ACTIONS(3322), + [anon_sym_if] = ACTIONS(3322), + [anon_sym_switch] = ACTIONS(3322), + [anon_sym_for] = ACTIONS(3322), + [anon_sym_LPAREN] = ACTIONS(3320), + [anon_sym_await] = ACTIONS(3322), + [anon_sym_while] = ACTIONS(3322), + [anon_sym_do] = ACTIONS(3322), + [anon_sym_try] = ACTIONS(3322), + [anon_sym_with] = ACTIONS(3322), + [anon_sym_break] = ACTIONS(3322), + [anon_sym_continue] = ACTIONS(3322), + [anon_sym_debugger] = ACTIONS(3322), + [anon_sym_return] = ACTIONS(3322), + [anon_sym_throw] = ACTIONS(3322), + [anon_sym_SEMI] = ACTIONS(3320), + [anon_sym_case] = ACTIONS(3322), + [anon_sym_yield] = ACTIONS(3322), + [anon_sym_LBRACK] = ACTIONS(3320), + [anon_sym_LT] = ACTIONS(3320), + [anon_sym_SLASH] = ACTIONS(3322), + [anon_sym_class] = ACTIONS(3322), + [anon_sym_async] = ACTIONS(3322), + [anon_sym_function] = ACTIONS(3322), + [anon_sym_new] = ACTIONS(3322), + [anon_sym_PLUS] = ACTIONS(3322), + [anon_sym_DASH] = ACTIONS(3322), + [anon_sym_TILDE] = ACTIONS(3320), + [anon_sym_void] = ACTIONS(3322), + [anon_sym_delete] = ACTIONS(3322), + [anon_sym_PLUS_PLUS] = ACTIONS(3320), + [anon_sym_DASH_DASH] = ACTIONS(3320), + [anon_sym_DQUOTE] = ACTIONS(3320), + [anon_sym_SQUOTE] = ACTIONS(3320), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3320), + [sym_number] = ACTIONS(3320), + [sym_this] = ACTIONS(3322), + [sym_super] = ACTIONS(3322), + [sym_true] = ACTIONS(3322), + [sym_false] = ACTIONS(3322), + [sym_null] = ACTIONS(3322), + [sym_undefined] = ACTIONS(3322), + [anon_sym_AT] = ACTIONS(3320), + [anon_sym_static] = ACTIONS(3322), + [anon_sym_readonly] = ACTIONS(3322), + [anon_sym_get] = ACTIONS(3322), + [anon_sym_set] = ACTIONS(3322), + [anon_sym_declare] = ACTIONS(3322), + [anon_sym_public] = ACTIONS(3322), + [anon_sym_private] = ACTIONS(3322), + [anon_sym_protected] = ACTIONS(3322), + [anon_sym_module] = ACTIONS(3322), + [anon_sym_any] = ACTIONS(3322), + [anon_sym_number] = ACTIONS(3322), + [anon_sym_boolean] = ACTIONS(3322), + [anon_sym_string] = ACTIONS(3322), + [anon_sym_symbol] = ACTIONS(3322), + [anon_sym_abstract] = ACTIONS(3322), + [anon_sym_interface] = ACTIONS(3322), + [anon_sym_enum] = ACTIONS(3322), }, [1150] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1151] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1152] = { - [ts_builtin_sym_end] = ACTIONS(3122), - [sym_identifier] = ACTIONS(3124), - [anon_sym_export] = ACTIONS(3124), - [anon_sym_default] = ACTIONS(3124), - [anon_sym_type] = ACTIONS(3124), - [anon_sym_namespace] = ACTIONS(3124), - [anon_sym_LBRACE] = ACTIONS(3122), - [anon_sym_RBRACE] = ACTIONS(3122), - [anon_sym_typeof] = ACTIONS(3124), - [anon_sym_import] = ACTIONS(3124), - [anon_sym_var] = ACTIONS(3124), - [anon_sym_let] = ACTIONS(3124), - [anon_sym_const] = ACTIONS(3124), - [anon_sym_BANG] = ACTIONS(3122), - [anon_sym_else] = ACTIONS(3124), - [anon_sym_if] = ACTIONS(3124), - [anon_sym_switch] = ACTIONS(3124), - [anon_sym_for] = ACTIONS(3124), - [anon_sym_LPAREN] = ACTIONS(3122), - [anon_sym_await] = ACTIONS(3124), - [anon_sym_while] = ACTIONS(3124), - [anon_sym_do] = ACTIONS(3124), - [anon_sym_try] = ACTIONS(3124), - [anon_sym_with] = ACTIONS(3124), - [anon_sym_break] = ACTIONS(3124), - [anon_sym_continue] = ACTIONS(3124), - [anon_sym_debugger] = ACTIONS(3124), - [anon_sym_return] = ACTIONS(3124), - [anon_sym_throw] = ACTIONS(3124), - [anon_sym_SEMI] = ACTIONS(3122), - [anon_sym_case] = ACTIONS(3124), - [anon_sym_yield] = ACTIONS(3124), - [anon_sym_LBRACK] = ACTIONS(3122), - [anon_sym_LT] = ACTIONS(3122), - [anon_sym_SLASH] = ACTIONS(3124), - [anon_sym_class] = ACTIONS(3124), - [anon_sym_async] = ACTIONS(3124), - [anon_sym_function] = ACTIONS(3124), - [anon_sym_new] = ACTIONS(3124), - [anon_sym_PLUS] = ACTIONS(3124), - [anon_sym_DASH] = ACTIONS(3124), - [anon_sym_TILDE] = ACTIONS(3122), - [anon_sym_void] = ACTIONS(3124), - [anon_sym_delete] = ACTIONS(3124), - [anon_sym_PLUS_PLUS] = ACTIONS(3122), - [anon_sym_DASH_DASH] = ACTIONS(3122), - [anon_sym_DQUOTE] = ACTIONS(3122), - [anon_sym_SQUOTE] = ACTIONS(3122), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3122), - [sym_number] = ACTIONS(3122), - [sym_this] = ACTIONS(3124), - [sym_super] = ACTIONS(3124), - [sym_true] = ACTIONS(3124), - [sym_false] = ACTIONS(3124), - [sym_null] = ACTIONS(3124), - [sym_undefined] = ACTIONS(3124), - [anon_sym_AT] = ACTIONS(3122), - [anon_sym_static] = ACTIONS(3124), - [anon_sym_readonly] = ACTIONS(3124), - [anon_sym_get] = ACTIONS(3124), - [anon_sym_set] = ACTIONS(3124), - [anon_sym_declare] = ACTIONS(3124), - [anon_sym_public] = ACTIONS(3124), - [anon_sym_private] = ACTIONS(3124), - [anon_sym_protected] = ACTIONS(3124), - [anon_sym_module] = ACTIONS(3124), - [anon_sym_any] = ACTIONS(3124), - [anon_sym_number] = ACTIONS(3124), - [anon_sym_boolean] = ACTIONS(3124), - [anon_sym_string] = ACTIONS(3124), - [anon_sym_symbol] = ACTIONS(3124), - [anon_sym_abstract] = ACTIONS(3124), - [anon_sym_interface] = ACTIONS(3124), - [anon_sym_enum] = ACTIONS(3124), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1153] = { - [ts_builtin_sym_end] = ACTIONS(3126), - [sym_identifier] = ACTIONS(3128), - [anon_sym_export] = ACTIONS(3128), - [anon_sym_default] = ACTIONS(3128), - [anon_sym_type] = ACTIONS(3128), - [anon_sym_namespace] = ACTIONS(3128), - [anon_sym_LBRACE] = ACTIONS(3126), - [anon_sym_RBRACE] = ACTIONS(3126), - [anon_sym_typeof] = ACTIONS(3128), - [anon_sym_import] = ACTIONS(3128), - [anon_sym_var] = ACTIONS(3128), - [anon_sym_let] = ACTIONS(3128), - [anon_sym_const] = ACTIONS(3128), - [anon_sym_BANG] = ACTIONS(3126), - [anon_sym_else] = ACTIONS(3128), - [anon_sym_if] = ACTIONS(3128), - [anon_sym_switch] = ACTIONS(3128), - [anon_sym_for] = ACTIONS(3128), - [anon_sym_LPAREN] = ACTIONS(3126), - [anon_sym_await] = ACTIONS(3128), - [anon_sym_while] = ACTIONS(3128), - [anon_sym_do] = ACTIONS(3128), - [anon_sym_try] = ACTIONS(3128), - [anon_sym_with] = ACTIONS(3128), - [anon_sym_break] = ACTIONS(3128), - [anon_sym_continue] = ACTIONS(3128), - [anon_sym_debugger] = ACTIONS(3128), - [anon_sym_return] = ACTIONS(3128), - [anon_sym_throw] = ACTIONS(3128), - [anon_sym_SEMI] = ACTIONS(3126), - [anon_sym_case] = ACTIONS(3128), - [anon_sym_yield] = ACTIONS(3128), - [anon_sym_LBRACK] = ACTIONS(3126), - [anon_sym_LT] = ACTIONS(3126), - [anon_sym_SLASH] = ACTIONS(3128), - [anon_sym_class] = ACTIONS(3128), - [anon_sym_async] = ACTIONS(3128), - [anon_sym_function] = ACTIONS(3128), - [anon_sym_new] = ACTIONS(3128), - [anon_sym_PLUS] = ACTIONS(3128), - [anon_sym_DASH] = ACTIONS(3128), - [anon_sym_TILDE] = ACTIONS(3126), - [anon_sym_void] = ACTIONS(3128), - [anon_sym_delete] = ACTIONS(3128), - [anon_sym_PLUS_PLUS] = ACTIONS(3126), - [anon_sym_DASH_DASH] = ACTIONS(3126), - [anon_sym_DQUOTE] = ACTIONS(3126), - [anon_sym_SQUOTE] = ACTIONS(3126), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3126), - [sym_number] = ACTIONS(3126), - [sym_this] = ACTIONS(3128), - [sym_super] = ACTIONS(3128), - [sym_true] = ACTIONS(3128), - [sym_false] = ACTIONS(3128), - [sym_null] = ACTIONS(3128), - [sym_undefined] = ACTIONS(3128), - [anon_sym_AT] = ACTIONS(3126), - [anon_sym_static] = ACTIONS(3128), - [anon_sym_readonly] = ACTIONS(3128), - [anon_sym_get] = ACTIONS(3128), - [anon_sym_set] = ACTIONS(3128), - [anon_sym_declare] = ACTIONS(3128), - [anon_sym_public] = ACTIONS(3128), - [anon_sym_private] = ACTIONS(3128), - [anon_sym_protected] = ACTIONS(3128), - [anon_sym_module] = ACTIONS(3128), - [anon_sym_any] = ACTIONS(3128), - [anon_sym_number] = ACTIONS(3128), - [anon_sym_boolean] = ACTIONS(3128), - [anon_sym_string] = ACTIONS(3128), - [anon_sym_symbol] = ACTIONS(3128), - [anon_sym_abstract] = ACTIONS(3128), - [anon_sym_interface] = ACTIONS(3128), - [anon_sym_enum] = ACTIONS(3128), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1154] = { - [ts_builtin_sym_end] = ACTIONS(3290), - [sym_identifier] = ACTIONS(3292), - [anon_sym_export] = ACTIONS(3292), - [anon_sym_default] = ACTIONS(3292), - [anon_sym_type] = ACTIONS(3292), - [anon_sym_namespace] = ACTIONS(3292), - [anon_sym_LBRACE] = ACTIONS(3290), - [anon_sym_RBRACE] = ACTIONS(3290), - [anon_sym_typeof] = ACTIONS(3292), - [anon_sym_import] = ACTIONS(3292), - [anon_sym_var] = ACTIONS(3292), - [anon_sym_let] = ACTIONS(3292), - [anon_sym_const] = ACTIONS(3292), - [anon_sym_BANG] = ACTIONS(3290), - [anon_sym_else] = ACTIONS(3292), - [anon_sym_if] = ACTIONS(3292), - [anon_sym_switch] = ACTIONS(3292), - [anon_sym_for] = ACTIONS(3292), - [anon_sym_LPAREN] = ACTIONS(3290), - [anon_sym_await] = ACTIONS(3292), - [anon_sym_while] = ACTIONS(3292), - [anon_sym_do] = ACTIONS(3292), - [anon_sym_try] = ACTIONS(3292), - [anon_sym_with] = ACTIONS(3292), - [anon_sym_break] = ACTIONS(3292), - [anon_sym_continue] = ACTIONS(3292), - [anon_sym_debugger] = ACTIONS(3292), - [anon_sym_return] = ACTIONS(3292), - [anon_sym_throw] = ACTIONS(3292), - [anon_sym_SEMI] = ACTIONS(3290), - [anon_sym_case] = ACTIONS(3292), - [anon_sym_yield] = ACTIONS(3292), - [anon_sym_LBRACK] = ACTIONS(3290), - [anon_sym_LT] = ACTIONS(3290), - [anon_sym_SLASH] = ACTIONS(3292), - [anon_sym_class] = ACTIONS(3292), - [anon_sym_async] = ACTIONS(3292), - [anon_sym_function] = ACTIONS(3292), - [anon_sym_new] = ACTIONS(3292), - [anon_sym_PLUS] = ACTIONS(3292), - [anon_sym_DASH] = ACTIONS(3292), - [anon_sym_TILDE] = ACTIONS(3290), - [anon_sym_void] = ACTIONS(3292), - [anon_sym_delete] = ACTIONS(3292), - [anon_sym_PLUS_PLUS] = ACTIONS(3290), - [anon_sym_DASH_DASH] = ACTIONS(3290), - [anon_sym_DQUOTE] = ACTIONS(3290), - [anon_sym_SQUOTE] = ACTIONS(3290), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3290), - [sym_number] = ACTIONS(3290), - [sym_this] = ACTIONS(3292), - [sym_super] = ACTIONS(3292), - [sym_true] = ACTIONS(3292), - [sym_false] = ACTIONS(3292), - [sym_null] = ACTIONS(3292), - [sym_undefined] = ACTIONS(3292), - [anon_sym_AT] = ACTIONS(3290), - [anon_sym_static] = ACTIONS(3292), - [anon_sym_readonly] = ACTIONS(3292), - [anon_sym_get] = ACTIONS(3292), - [anon_sym_set] = ACTIONS(3292), - [anon_sym_declare] = ACTIONS(3292), - [anon_sym_public] = ACTIONS(3292), - [anon_sym_private] = ACTIONS(3292), - [anon_sym_protected] = ACTIONS(3292), - [anon_sym_module] = ACTIONS(3292), - [anon_sym_any] = ACTIONS(3292), - [anon_sym_number] = ACTIONS(3292), - [anon_sym_boolean] = ACTIONS(3292), - [anon_sym_string] = ACTIONS(3292), - [anon_sym_symbol] = ACTIONS(3292), - [anon_sym_abstract] = ACTIONS(3292), - [anon_sym_interface] = ACTIONS(3292), - [anon_sym_enum] = ACTIONS(3292), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1155] = { - [ts_builtin_sym_end] = ACTIONS(3294), - [sym_identifier] = ACTIONS(3296), - [anon_sym_export] = ACTIONS(3296), - [anon_sym_default] = ACTIONS(3296), - [anon_sym_type] = ACTIONS(3296), - [anon_sym_namespace] = ACTIONS(3296), - [anon_sym_LBRACE] = ACTIONS(3294), - [anon_sym_RBRACE] = ACTIONS(3294), - [anon_sym_typeof] = ACTIONS(3296), - [anon_sym_import] = ACTIONS(3296), - [anon_sym_var] = ACTIONS(3296), - [anon_sym_let] = ACTIONS(3296), - [anon_sym_const] = ACTIONS(3296), - [anon_sym_BANG] = ACTIONS(3294), - [anon_sym_else] = ACTIONS(3296), - [anon_sym_if] = ACTIONS(3296), - [anon_sym_switch] = ACTIONS(3296), - [anon_sym_for] = ACTIONS(3296), - [anon_sym_LPAREN] = ACTIONS(3294), - [anon_sym_await] = ACTIONS(3296), - [anon_sym_while] = ACTIONS(3296), - [anon_sym_do] = ACTIONS(3296), - [anon_sym_try] = ACTIONS(3296), - [anon_sym_with] = ACTIONS(3296), - [anon_sym_break] = ACTIONS(3296), - [anon_sym_continue] = ACTIONS(3296), - [anon_sym_debugger] = ACTIONS(3296), - [anon_sym_return] = ACTIONS(3296), - [anon_sym_throw] = ACTIONS(3296), - [anon_sym_SEMI] = ACTIONS(3294), - [anon_sym_case] = ACTIONS(3296), - [anon_sym_yield] = ACTIONS(3296), - [anon_sym_LBRACK] = ACTIONS(3294), - [anon_sym_LT] = ACTIONS(3294), - [anon_sym_SLASH] = ACTIONS(3296), - [anon_sym_class] = ACTIONS(3296), - [anon_sym_async] = ACTIONS(3296), - [anon_sym_function] = ACTIONS(3296), - [anon_sym_new] = ACTIONS(3296), - [anon_sym_PLUS] = ACTIONS(3296), - [anon_sym_DASH] = ACTIONS(3296), - [anon_sym_TILDE] = ACTIONS(3294), - [anon_sym_void] = ACTIONS(3296), - [anon_sym_delete] = ACTIONS(3296), - [anon_sym_PLUS_PLUS] = ACTIONS(3294), - [anon_sym_DASH_DASH] = ACTIONS(3294), - [anon_sym_DQUOTE] = ACTIONS(3294), - [anon_sym_SQUOTE] = ACTIONS(3294), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3294), - [sym_number] = ACTIONS(3294), - [sym_this] = ACTIONS(3296), - [sym_super] = ACTIONS(3296), - [sym_true] = ACTIONS(3296), - [sym_false] = ACTIONS(3296), - [sym_null] = ACTIONS(3296), - [sym_undefined] = ACTIONS(3296), - [anon_sym_AT] = ACTIONS(3294), - [anon_sym_static] = ACTIONS(3296), - [anon_sym_readonly] = ACTIONS(3296), - [anon_sym_get] = ACTIONS(3296), - [anon_sym_set] = ACTIONS(3296), - [anon_sym_declare] = ACTIONS(3296), - [anon_sym_public] = ACTIONS(3296), - [anon_sym_private] = ACTIONS(3296), - [anon_sym_protected] = ACTIONS(3296), - [anon_sym_module] = ACTIONS(3296), - [anon_sym_any] = ACTIONS(3296), - [anon_sym_number] = ACTIONS(3296), - [anon_sym_boolean] = ACTIONS(3296), - [anon_sym_string] = ACTIONS(3296), - [anon_sym_symbol] = ACTIONS(3296), - [anon_sym_abstract] = ACTIONS(3296), - [anon_sym_interface] = ACTIONS(3296), - [anon_sym_enum] = ACTIONS(3296), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1156] = { - [ts_builtin_sym_end] = ACTIONS(3298), - [sym_identifier] = ACTIONS(3300), - [anon_sym_export] = ACTIONS(3300), - [anon_sym_default] = ACTIONS(3300), - [anon_sym_type] = ACTIONS(3300), - [anon_sym_namespace] = ACTIONS(3300), - [anon_sym_LBRACE] = ACTIONS(3298), - [anon_sym_RBRACE] = ACTIONS(3298), - [anon_sym_typeof] = ACTIONS(3300), - [anon_sym_import] = ACTIONS(3300), - [anon_sym_var] = ACTIONS(3300), - [anon_sym_let] = ACTIONS(3300), - [anon_sym_const] = ACTIONS(3300), - [anon_sym_BANG] = ACTIONS(3298), - [anon_sym_else] = ACTIONS(3300), - [anon_sym_if] = ACTIONS(3300), - [anon_sym_switch] = ACTIONS(3300), - [anon_sym_for] = ACTIONS(3300), - [anon_sym_LPAREN] = ACTIONS(3298), - [anon_sym_await] = ACTIONS(3300), - [anon_sym_while] = ACTIONS(3300), - [anon_sym_do] = ACTIONS(3300), - [anon_sym_try] = ACTIONS(3300), - [anon_sym_with] = ACTIONS(3300), - [anon_sym_break] = ACTIONS(3300), - [anon_sym_continue] = ACTIONS(3300), - [anon_sym_debugger] = ACTIONS(3300), - [anon_sym_return] = ACTIONS(3300), - [anon_sym_throw] = ACTIONS(3300), - [anon_sym_SEMI] = ACTIONS(3298), - [anon_sym_case] = ACTIONS(3300), - [anon_sym_yield] = ACTIONS(3300), - [anon_sym_LBRACK] = ACTIONS(3298), - [anon_sym_LT] = ACTIONS(3298), - [anon_sym_SLASH] = ACTIONS(3300), - [anon_sym_class] = ACTIONS(3300), - [anon_sym_async] = ACTIONS(3300), - [anon_sym_function] = ACTIONS(3300), - [anon_sym_new] = ACTIONS(3300), - [anon_sym_PLUS] = ACTIONS(3300), - [anon_sym_DASH] = ACTIONS(3300), - [anon_sym_TILDE] = ACTIONS(3298), - [anon_sym_void] = ACTIONS(3300), - [anon_sym_delete] = ACTIONS(3300), - [anon_sym_PLUS_PLUS] = ACTIONS(3298), - [anon_sym_DASH_DASH] = ACTIONS(3298), - [anon_sym_DQUOTE] = ACTIONS(3298), - [anon_sym_SQUOTE] = ACTIONS(3298), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3298), - [sym_number] = ACTIONS(3298), - [sym_this] = ACTIONS(3300), - [sym_super] = ACTIONS(3300), - [sym_true] = ACTIONS(3300), - [sym_false] = ACTIONS(3300), - [sym_null] = ACTIONS(3300), - [sym_undefined] = ACTIONS(3300), - [anon_sym_AT] = ACTIONS(3298), - [anon_sym_static] = ACTIONS(3300), - [anon_sym_readonly] = ACTIONS(3300), - [anon_sym_get] = ACTIONS(3300), - [anon_sym_set] = ACTIONS(3300), - [anon_sym_declare] = ACTIONS(3300), - [anon_sym_public] = ACTIONS(3300), - [anon_sym_private] = ACTIONS(3300), - [anon_sym_protected] = ACTIONS(3300), - [anon_sym_module] = ACTIONS(3300), - [anon_sym_any] = ACTIONS(3300), - [anon_sym_number] = ACTIONS(3300), - [anon_sym_boolean] = ACTIONS(3300), - [anon_sym_string] = ACTIONS(3300), - [anon_sym_symbol] = ACTIONS(3300), - [anon_sym_abstract] = ACTIONS(3300), - [anon_sym_interface] = ACTIONS(3300), - [anon_sym_enum] = ACTIONS(3300), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), }, [1157] = { - [ts_builtin_sym_end] = ACTIONS(3302), - [sym_identifier] = ACTIONS(3304), - [anon_sym_export] = ACTIONS(3304), - [anon_sym_default] = ACTIONS(3304), - [anon_sym_type] = ACTIONS(3304), - [anon_sym_namespace] = ACTIONS(3304), - [anon_sym_LBRACE] = ACTIONS(3302), - [anon_sym_RBRACE] = ACTIONS(3302), - [anon_sym_typeof] = ACTIONS(3304), - [anon_sym_import] = ACTIONS(3304), - [anon_sym_var] = ACTIONS(3304), - [anon_sym_let] = ACTIONS(3304), - [anon_sym_const] = ACTIONS(3304), - [anon_sym_BANG] = ACTIONS(3302), - [anon_sym_else] = ACTIONS(3304), - [anon_sym_if] = ACTIONS(3304), - [anon_sym_switch] = ACTIONS(3304), - [anon_sym_for] = ACTIONS(3304), - [anon_sym_LPAREN] = ACTIONS(3302), - [anon_sym_await] = ACTIONS(3304), - [anon_sym_while] = ACTIONS(3304), - [anon_sym_do] = ACTIONS(3304), - [anon_sym_try] = ACTIONS(3304), - [anon_sym_with] = ACTIONS(3304), - [anon_sym_break] = ACTIONS(3304), - [anon_sym_continue] = ACTIONS(3304), - [anon_sym_debugger] = ACTIONS(3304), - [anon_sym_return] = ACTIONS(3304), - [anon_sym_throw] = ACTIONS(3304), - [anon_sym_SEMI] = ACTIONS(3302), - [anon_sym_case] = ACTIONS(3304), - [anon_sym_yield] = ACTIONS(3304), - [anon_sym_LBRACK] = ACTIONS(3302), - [anon_sym_LT] = ACTIONS(3302), - [anon_sym_SLASH] = ACTIONS(3304), - [anon_sym_class] = ACTIONS(3304), - [anon_sym_async] = ACTIONS(3304), - [anon_sym_function] = ACTIONS(3304), - [anon_sym_new] = ACTIONS(3304), - [anon_sym_PLUS] = ACTIONS(3304), - [anon_sym_DASH] = ACTIONS(3304), - [anon_sym_TILDE] = ACTIONS(3302), - [anon_sym_void] = ACTIONS(3304), - [anon_sym_delete] = ACTIONS(3304), - [anon_sym_PLUS_PLUS] = ACTIONS(3302), - [anon_sym_DASH_DASH] = ACTIONS(3302), - [anon_sym_DQUOTE] = ACTIONS(3302), - [anon_sym_SQUOTE] = ACTIONS(3302), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3302), - [sym_number] = ACTIONS(3302), - [sym_this] = ACTIONS(3304), - [sym_super] = ACTIONS(3304), - [sym_true] = ACTIONS(3304), - [sym_false] = ACTIONS(3304), - [sym_null] = ACTIONS(3304), - [sym_undefined] = ACTIONS(3304), - [anon_sym_AT] = ACTIONS(3302), - [anon_sym_static] = ACTIONS(3304), - [anon_sym_readonly] = ACTIONS(3304), - [anon_sym_get] = ACTIONS(3304), - [anon_sym_set] = ACTIONS(3304), - [anon_sym_declare] = ACTIONS(3304), - [anon_sym_public] = ACTIONS(3304), - [anon_sym_private] = ACTIONS(3304), - [anon_sym_protected] = ACTIONS(3304), - [anon_sym_module] = ACTIONS(3304), - [anon_sym_any] = ACTIONS(3304), - [anon_sym_number] = ACTIONS(3304), - [anon_sym_boolean] = ACTIONS(3304), - [anon_sym_string] = ACTIONS(3304), - [anon_sym_symbol] = ACTIONS(3304), - [anon_sym_abstract] = ACTIONS(3304), - [anon_sym_interface] = ACTIONS(3304), - [anon_sym_enum] = ACTIONS(3304), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), }, [1158] = { - [ts_builtin_sym_end] = ACTIONS(3306), - [sym_identifier] = ACTIONS(3308), - [anon_sym_export] = ACTIONS(3308), - [anon_sym_default] = ACTIONS(3308), - [anon_sym_type] = ACTIONS(3308), - [anon_sym_namespace] = ACTIONS(3308), - [anon_sym_LBRACE] = ACTIONS(3306), - [anon_sym_RBRACE] = ACTIONS(3306), - [anon_sym_typeof] = ACTIONS(3308), - [anon_sym_import] = ACTIONS(3308), - [anon_sym_var] = ACTIONS(3308), - [anon_sym_let] = ACTIONS(3308), - [anon_sym_const] = ACTIONS(3308), - [anon_sym_BANG] = ACTIONS(3306), - [anon_sym_else] = ACTIONS(3308), - [anon_sym_if] = ACTIONS(3308), - [anon_sym_switch] = ACTIONS(3308), - [anon_sym_for] = ACTIONS(3308), - [anon_sym_LPAREN] = ACTIONS(3306), - [anon_sym_await] = ACTIONS(3308), - [anon_sym_while] = ACTIONS(3308), - [anon_sym_do] = ACTIONS(3308), - [anon_sym_try] = ACTIONS(3308), - [anon_sym_with] = ACTIONS(3308), - [anon_sym_break] = ACTIONS(3308), - [anon_sym_continue] = ACTIONS(3308), - [anon_sym_debugger] = ACTIONS(3308), - [anon_sym_return] = ACTIONS(3308), - [anon_sym_throw] = ACTIONS(3308), - [anon_sym_SEMI] = ACTIONS(3306), - [anon_sym_case] = ACTIONS(3308), - [anon_sym_yield] = ACTIONS(3308), - [anon_sym_LBRACK] = ACTIONS(3306), - [anon_sym_LT] = ACTIONS(3306), - [anon_sym_SLASH] = ACTIONS(3308), - [anon_sym_class] = ACTIONS(3308), - [anon_sym_async] = ACTIONS(3308), - [anon_sym_function] = ACTIONS(3308), - [anon_sym_new] = ACTIONS(3308), - [anon_sym_PLUS] = ACTIONS(3308), - [anon_sym_DASH] = ACTIONS(3308), - [anon_sym_TILDE] = ACTIONS(3306), - [anon_sym_void] = ACTIONS(3308), - [anon_sym_delete] = ACTIONS(3308), - [anon_sym_PLUS_PLUS] = ACTIONS(3306), - [anon_sym_DASH_DASH] = ACTIONS(3306), - [anon_sym_DQUOTE] = ACTIONS(3306), - [anon_sym_SQUOTE] = ACTIONS(3306), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3306), - [sym_number] = ACTIONS(3306), - [sym_this] = ACTIONS(3308), - [sym_super] = ACTIONS(3308), - [sym_true] = ACTIONS(3308), - [sym_false] = ACTIONS(3308), - [sym_null] = ACTIONS(3308), - [sym_undefined] = ACTIONS(3308), - [anon_sym_AT] = ACTIONS(3306), - [anon_sym_static] = ACTIONS(3308), - [anon_sym_readonly] = ACTIONS(3308), - [anon_sym_get] = ACTIONS(3308), - [anon_sym_set] = ACTIONS(3308), - [anon_sym_declare] = ACTIONS(3308), - [anon_sym_public] = ACTIONS(3308), - [anon_sym_private] = ACTIONS(3308), - [anon_sym_protected] = ACTIONS(3308), - [anon_sym_module] = ACTIONS(3308), - [anon_sym_any] = ACTIONS(3308), - [anon_sym_number] = ACTIONS(3308), - [anon_sym_boolean] = ACTIONS(3308), - [anon_sym_string] = ACTIONS(3308), - [anon_sym_symbol] = ACTIONS(3308), - [anon_sym_abstract] = ACTIONS(3308), - [anon_sym_interface] = ACTIONS(3308), - [anon_sym_enum] = ACTIONS(3308), + [ts_builtin_sym_end] = ACTIONS(3324), + [sym_identifier] = ACTIONS(3326), + [anon_sym_export] = ACTIONS(3326), + [anon_sym_default] = ACTIONS(3326), + [anon_sym_type] = ACTIONS(3326), + [anon_sym_namespace] = ACTIONS(3326), + [anon_sym_LBRACE] = ACTIONS(3324), + [anon_sym_RBRACE] = ACTIONS(3324), + [anon_sym_typeof] = ACTIONS(3326), + [anon_sym_import] = ACTIONS(3326), + [anon_sym_var] = ACTIONS(3326), + [anon_sym_let] = ACTIONS(3326), + [anon_sym_const] = ACTIONS(3326), + [anon_sym_BANG] = ACTIONS(3324), + [anon_sym_else] = ACTIONS(3326), + [anon_sym_if] = ACTIONS(3326), + [anon_sym_switch] = ACTIONS(3326), + [anon_sym_for] = ACTIONS(3326), + [anon_sym_LPAREN] = ACTIONS(3324), + [anon_sym_await] = ACTIONS(3326), + [anon_sym_while] = ACTIONS(3326), + [anon_sym_do] = ACTIONS(3326), + [anon_sym_try] = ACTIONS(3326), + [anon_sym_with] = ACTIONS(3326), + [anon_sym_break] = ACTIONS(3326), + [anon_sym_continue] = ACTIONS(3326), + [anon_sym_debugger] = ACTIONS(3326), + [anon_sym_return] = ACTIONS(3326), + [anon_sym_throw] = ACTIONS(3326), + [anon_sym_SEMI] = ACTIONS(3324), + [anon_sym_case] = ACTIONS(3326), + [anon_sym_yield] = ACTIONS(3326), + [anon_sym_LBRACK] = ACTIONS(3324), + [anon_sym_LT] = ACTIONS(3324), + [anon_sym_SLASH] = ACTIONS(3326), + [anon_sym_class] = ACTIONS(3326), + [anon_sym_async] = ACTIONS(3326), + [anon_sym_function] = ACTIONS(3326), + [anon_sym_new] = ACTIONS(3326), + [anon_sym_PLUS] = ACTIONS(3326), + [anon_sym_DASH] = ACTIONS(3326), + [anon_sym_TILDE] = ACTIONS(3324), + [anon_sym_void] = ACTIONS(3326), + [anon_sym_delete] = ACTIONS(3326), + [anon_sym_PLUS_PLUS] = ACTIONS(3324), + [anon_sym_DASH_DASH] = ACTIONS(3324), + [anon_sym_DQUOTE] = ACTIONS(3324), + [anon_sym_SQUOTE] = ACTIONS(3324), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3324), + [sym_number] = ACTIONS(3324), + [sym_this] = ACTIONS(3326), + [sym_super] = ACTIONS(3326), + [sym_true] = ACTIONS(3326), + [sym_false] = ACTIONS(3326), + [sym_null] = ACTIONS(3326), + [sym_undefined] = ACTIONS(3326), + [anon_sym_AT] = ACTIONS(3324), + [anon_sym_static] = ACTIONS(3326), + [anon_sym_readonly] = ACTIONS(3326), + [anon_sym_get] = ACTIONS(3326), + [anon_sym_set] = ACTIONS(3326), + [anon_sym_declare] = ACTIONS(3326), + [anon_sym_public] = ACTIONS(3326), + [anon_sym_private] = ACTIONS(3326), + [anon_sym_protected] = ACTIONS(3326), + [anon_sym_module] = ACTIONS(3326), + [anon_sym_any] = ACTIONS(3326), + [anon_sym_number] = ACTIONS(3326), + [anon_sym_boolean] = ACTIONS(3326), + [anon_sym_string] = ACTIONS(3326), + [anon_sym_symbol] = ACTIONS(3326), + [anon_sym_abstract] = ACTIONS(3326), + [anon_sym_interface] = ACTIONS(3326), + [anon_sym_enum] = ACTIONS(3326), }, [1159] = { - [ts_builtin_sym_end] = ACTIONS(3310), - [sym_identifier] = ACTIONS(3312), - [anon_sym_export] = ACTIONS(3312), - [anon_sym_default] = ACTIONS(3312), - [anon_sym_type] = ACTIONS(3312), - [anon_sym_namespace] = ACTIONS(3312), - [anon_sym_LBRACE] = ACTIONS(3310), - [anon_sym_RBRACE] = ACTIONS(3310), - [anon_sym_typeof] = ACTIONS(3312), - [anon_sym_import] = ACTIONS(3312), - [anon_sym_var] = ACTIONS(3312), - [anon_sym_let] = ACTIONS(3312), - [anon_sym_const] = ACTIONS(3312), - [anon_sym_BANG] = ACTIONS(3310), - [anon_sym_else] = ACTIONS(3312), - [anon_sym_if] = ACTIONS(3312), - [anon_sym_switch] = ACTIONS(3312), - [anon_sym_for] = ACTIONS(3312), - [anon_sym_LPAREN] = ACTIONS(3310), - [anon_sym_await] = ACTIONS(3312), - [anon_sym_while] = ACTIONS(3312), - [anon_sym_do] = ACTIONS(3312), - [anon_sym_try] = ACTIONS(3312), - [anon_sym_with] = ACTIONS(3312), - [anon_sym_break] = ACTIONS(3312), - [anon_sym_continue] = ACTIONS(3312), - [anon_sym_debugger] = ACTIONS(3312), - [anon_sym_return] = ACTIONS(3312), - [anon_sym_throw] = ACTIONS(3312), - [anon_sym_SEMI] = ACTIONS(3310), - [anon_sym_case] = ACTIONS(3312), - [anon_sym_yield] = ACTIONS(3312), - [anon_sym_LBRACK] = ACTIONS(3310), - [anon_sym_LT] = ACTIONS(3310), - [anon_sym_SLASH] = ACTIONS(3312), - [anon_sym_class] = ACTIONS(3312), - [anon_sym_async] = ACTIONS(3312), - [anon_sym_function] = ACTIONS(3312), - [anon_sym_new] = ACTIONS(3312), - [anon_sym_PLUS] = ACTIONS(3312), - [anon_sym_DASH] = ACTIONS(3312), - [anon_sym_TILDE] = ACTIONS(3310), - [anon_sym_void] = ACTIONS(3312), - [anon_sym_delete] = ACTIONS(3312), - [anon_sym_PLUS_PLUS] = ACTIONS(3310), - [anon_sym_DASH_DASH] = ACTIONS(3310), - [anon_sym_DQUOTE] = ACTIONS(3310), - [anon_sym_SQUOTE] = ACTIONS(3310), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3310), - [sym_number] = ACTIONS(3310), - [sym_this] = ACTIONS(3312), - [sym_super] = ACTIONS(3312), - [sym_true] = ACTIONS(3312), - [sym_false] = ACTIONS(3312), - [sym_null] = ACTIONS(3312), - [sym_undefined] = ACTIONS(3312), - [anon_sym_AT] = ACTIONS(3310), - [anon_sym_static] = ACTIONS(3312), - [anon_sym_readonly] = ACTIONS(3312), - [anon_sym_get] = ACTIONS(3312), - [anon_sym_set] = ACTIONS(3312), - [anon_sym_declare] = ACTIONS(3312), - [anon_sym_public] = ACTIONS(3312), - [anon_sym_private] = ACTIONS(3312), - [anon_sym_protected] = ACTIONS(3312), - [anon_sym_module] = ACTIONS(3312), - [anon_sym_any] = ACTIONS(3312), - [anon_sym_number] = ACTIONS(3312), - [anon_sym_boolean] = ACTIONS(3312), - [anon_sym_string] = ACTIONS(3312), - [anon_sym_symbol] = ACTIONS(3312), - [anon_sym_abstract] = ACTIONS(3312), - [anon_sym_interface] = ACTIONS(3312), - [anon_sym_enum] = ACTIONS(3312), + [ts_builtin_sym_end] = ACTIONS(3328), + [sym_identifier] = ACTIONS(3330), + [anon_sym_export] = ACTIONS(3330), + [anon_sym_default] = ACTIONS(3330), + [anon_sym_type] = ACTIONS(3330), + [anon_sym_namespace] = ACTIONS(3330), + [anon_sym_LBRACE] = ACTIONS(3328), + [anon_sym_RBRACE] = ACTIONS(3328), + [anon_sym_typeof] = ACTIONS(3330), + [anon_sym_import] = ACTIONS(3330), + [anon_sym_var] = ACTIONS(3330), + [anon_sym_let] = ACTIONS(3330), + [anon_sym_const] = ACTIONS(3330), + [anon_sym_BANG] = ACTIONS(3328), + [anon_sym_else] = ACTIONS(3330), + [anon_sym_if] = ACTIONS(3330), + [anon_sym_switch] = ACTIONS(3330), + [anon_sym_for] = ACTIONS(3330), + [anon_sym_LPAREN] = ACTIONS(3328), + [anon_sym_await] = ACTIONS(3330), + [anon_sym_while] = ACTIONS(3330), + [anon_sym_do] = ACTIONS(3330), + [anon_sym_try] = ACTIONS(3330), + [anon_sym_with] = ACTIONS(3330), + [anon_sym_break] = ACTIONS(3330), + [anon_sym_continue] = ACTIONS(3330), + [anon_sym_debugger] = ACTIONS(3330), + [anon_sym_return] = ACTIONS(3330), + [anon_sym_throw] = ACTIONS(3330), + [anon_sym_SEMI] = ACTIONS(3328), + [anon_sym_case] = ACTIONS(3330), + [anon_sym_yield] = ACTIONS(3330), + [anon_sym_LBRACK] = ACTIONS(3328), + [anon_sym_LT] = ACTIONS(3328), + [anon_sym_SLASH] = ACTIONS(3330), + [anon_sym_class] = ACTIONS(3330), + [anon_sym_async] = ACTIONS(3330), + [anon_sym_function] = ACTIONS(3330), + [anon_sym_new] = ACTIONS(3330), + [anon_sym_PLUS] = ACTIONS(3330), + [anon_sym_DASH] = ACTIONS(3330), + [anon_sym_TILDE] = ACTIONS(3328), + [anon_sym_void] = ACTIONS(3330), + [anon_sym_delete] = ACTIONS(3330), + [anon_sym_PLUS_PLUS] = ACTIONS(3328), + [anon_sym_DASH_DASH] = ACTIONS(3328), + [anon_sym_DQUOTE] = ACTIONS(3328), + [anon_sym_SQUOTE] = ACTIONS(3328), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3328), + [sym_number] = ACTIONS(3328), + [sym_this] = ACTIONS(3330), + [sym_super] = ACTIONS(3330), + [sym_true] = ACTIONS(3330), + [sym_false] = ACTIONS(3330), + [sym_null] = ACTIONS(3330), + [sym_undefined] = ACTIONS(3330), + [anon_sym_AT] = ACTIONS(3328), + [anon_sym_static] = ACTIONS(3330), + [anon_sym_readonly] = ACTIONS(3330), + [anon_sym_get] = ACTIONS(3330), + [anon_sym_set] = ACTIONS(3330), + [anon_sym_declare] = ACTIONS(3330), + [anon_sym_public] = ACTIONS(3330), + [anon_sym_private] = ACTIONS(3330), + [anon_sym_protected] = ACTIONS(3330), + [anon_sym_module] = ACTIONS(3330), + [anon_sym_any] = ACTIONS(3330), + [anon_sym_number] = ACTIONS(3330), + [anon_sym_boolean] = ACTIONS(3330), + [anon_sym_string] = ACTIONS(3330), + [anon_sym_symbol] = ACTIONS(3330), + [anon_sym_abstract] = ACTIONS(3330), + [anon_sym_interface] = ACTIONS(3330), + [anon_sym_enum] = ACTIONS(3330), }, [1160] = { - [ts_builtin_sym_end] = ACTIONS(3314), - [sym_identifier] = ACTIONS(3316), - [anon_sym_export] = ACTIONS(3316), - [anon_sym_default] = ACTIONS(3316), - [anon_sym_type] = ACTIONS(3316), - [anon_sym_namespace] = ACTIONS(3316), - [anon_sym_LBRACE] = ACTIONS(3314), - [anon_sym_RBRACE] = ACTIONS(3314), - [anon_sym_typeof] = ACTIONS(3316), - [anon_sym_import] = ACTIONS(3316), - [anon_sym_var] = ACTIONS(3316), - [anon_sym_let] = ACTIONS(3316), - [anon_sym_const] = ACTIONS(3316), - [anon_sym_BANG] = ACTIONS(3314), - [anon_sym_else] = ACTIONS(3316), - [anon_sym_if] = ACTIONS(3316), - [anon_sym_switch] = ACTIONS(3316), - [anon_sym_for] = ACTIONS(3316), - [anon_sym_LPAREN] = ACTIONS(3314), - [anon_sym_await] = ACTIONS(3316), - [anon_sym_while] = ACTIONS(3316), - [anon_sym_do] = ACTIONS(3316), - [anon_sym_try] = ACTIONS(3316), - [anon_sym_with] = ACTIONS(3316), - [anon_sym_break] = ACTIONS(3316), - [anon_sym_continue] = ACTIONS(3316), - [anon_sym_debugger] = ACTIONS(3316), - [anon_sym_return] = ACTIONS(3316), - [anon_sym_throw] = ACTIONS(3316), - [anon_sym_SEMI] = ACTIONS(3314), - [anon_sym_case] = ACTIONS(3316), - [anon_sym_yield] = ACTIONS(3316), - [anon_sym_LBRACK] = ACTIONS(3314), - [anon_sym_LT] = ACTIONS(3314), - [anon_sym_SLASH] = ACTIONS(3316), - [anon_sym_class] = ACTIONS(3316), - [anon_sym_async] = ACTIONS(3316), - [anon_sym_function] = ACTIONS(3316), - [anon_sym_new] = ACTIONS(3316), - [anon_sym_PLUS] = ACTIONS(3316), - [anon_sym_DASH] = ACTIONS(3316), - [anon_sym_TILDE] = ACTIONS(3314), - [anon_sym_void] = ACTIONS(3316), - [anon_sym_delete] = ACTIONS(3316), - [anon_sym_PLUS_PLUS] = ACTIONS(3314), - [anon_sym_DASH_DASH] = ACTIONS(3314), - [anon_sym_DQUOTE] = ACTIONS(3314), - [anon_sym_SQUOTE] = ACTIONS(3314), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3314), - [sym_number] = ACTIONS(3314), - [sym_this] = ACTIONS(3316), - [sym_super] = ACTIONS(3316), - [sym_true] = ACTIONS(3316), - [sym_false] = ACTIONS(3316), - [sym_null] = ACTIONS(3316), - [sym_undefined] = ACTIONS(3316), - [anon_sym_AT] = ACTIONS(3314), - [anon_sym_static] = ACTIONS(3316), - [anon_sym_readonly] = ACTIONS(3316), - [anon_sym_get] = ACTIONS(3316), - [anon_sym_set] = ACTIONS(3316), - [anon_sym_declare] = ACTIONS(3316), - [anon_sym_public] = ACTIONS(3316), - [anon_sym_private] = ACTIONS(3316), - [anon_sym_protected] = ACTIONS(3316), - [anon_sym_module] = ACTIONS(3316), - [anon_sym_any] = ACTIONS(3316), - [anon_sym_number] = ACTIONS(3316), - [anon_sym_boolean] = ACTIONS(3316), - [anon_sym_string] = ACTIONS(3316), - [anon_sym_symbol] = ACTIONS(3316), - [anon_sym_abstract] = ACTIONS(3316), - [anon_sym_interface] = ACTIONS(3316), - [anon_sym_enum] = ACTIONS(3316), + [ts_builtin_sym_end] = ACTIONS(3332), + [sym_identifier] = ACTIONS(3334), + [anon_sym_export] = ACTIONS(3334), + [anon_sym_default] = ACTIONS(3334), + [anon_sym_type] = ACTIONS(3334), + [anon_sym_namespace] = ACTIONS(3334), + [anon_sym_LBRACE] = ACTIONS(3332), + [anon_sym_RBRACE] = ACTIONS(3332), + [anon_sym_typeof] = ACTIONS(3334), + [anon_sym_import] = ACTIONS(3334), + [anon_sym_var] = ACTIONS(3334), + [anon_sym_let] = ACTIONS(3334), + [anon_sym_const] = ACTIONS(3334), + [anon_sym_BANG] = ACTIONS(3332), + [anon_sym_else] = ACTIONS(3334), + [anon_sym_if] = ACTIONS(3334), + [anon_sym_switch] = ACTIONS(3334), + [anon_sym_for] = ACTIONS(3334), + [anon_sym_LPAREN] = ACTIONS(3332), + [anon_sym_await] = ACTIONS(3334), + [anon_sym_while] = ACTIONS(3334), + [anon_sym_do] = ACTIONS(3334), + [anon_sym_try] = ACTIONS(3334), + [anon_sym_with] = ACTIONS(3334), + [anon_sym_break] = ACTIONS(3334), + [anon_sym_continue] = ACTIONS(3334), + [anon_sym_debugger] = ACTIONS(3334), + [anon_sym_return] = ACTIONS(3334), + [anon_sym_throw] = ACTIONS(3334), + [anon_sym_SEMI] = ACTIONS(3332), + [anon_sym_case] = ACTIONS(3334), + [anon_sym_yield] = ACTIONS(3334), + [anon_sym_LBRACK] = ACTIONS(3332), + [anon_sym_LT] = ACTIONS(3332), + [anon_sym_SLASH] = ACTIONS(3334), + [anon_sym_class] = ACTIONS(3334), + [anon_sym_async] = ACTIONS(3334), + [anon_sym_function] = ACTIONS(3334), + [anon_sym_new] = ACTIONS(3334), + [anon_sym_PLUS] = ACTIONS(3334), + [anon_sym_DASH] = ACTIONS(3334), + [anon_sym_TILDE] = ACTIONS(3332), + [anon_sym_void] = ACTIONS(3334), + [anon_sym_delete] = ACTIONS(3334), + [anon_sym_PLUS_PLUS] = ACTIONS(3332), + [anon_sym_DASH_DASH] = ACTIONS(3332), + [anon_sym_DQUOTE] = ACTIONS(3332), + [anon_sym_SQUOTE] = ACTIONS(3332), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3332), + [sym_number] = ACTIONS(3332), + [sym_this] = ACTIONS(3334), + [sym_super] = ACTIONS(3334), + [sym_true] = ACTIONS(3334), + [sym_false] = ACTIONS(3334), + [sym_null] = ACTIONS(3334), + [sym_undefined] = ACTIONS(3334), + [anon_sym_AT] = ACTIONS(3332), + [anon_sym_static] = ACTIONS(3334), + [anon_sym_readonly] = ACTIONS(3334), + [anon_sym_get] = ACTIONS(3334), + [anon_sym_set] = ACTIONS(3334), + [anon_sym_declare] = ACTIONS(3334), + [anon_sym_public] = ACTIONS(3334), + [anon_sym_private] = ACTIONS(3334), + [anon_sym_protected] = ACTIONS(3334), + [anon_sym_module] = ACTIONS(3334), + [anon_sym_any] = ACTIONS(3334), + [anon_sym_number] = ACTIONS(3334), + [anon_sym_boolean] = ACTIONS(3334), + [anon_sym_string] = ACTIONS(3334), + [anon_sym_symbol] = ACTIONS(3334), + [anon_sym_abstract] = ACTIONS(3334), + [anon_sym_interface] = ACTIONS(3334), + [anon_sym_enum] = ACTIONS(3334), }, [1161] = { - [ts_builtin_sym_end] = ACTIONS(3318), - [sym_identifier] = ACTIONS(3320), - [anon_sym_export] = ACTIONS(3320), - [anon_sym_default] = ACTIONS(3320), - [anon_sym_type] = ACTIONS(3320), - [anon_sym_namespace] = ACTIONS(3320), - [anon_sym_LBRACE] = ACTIONS(3318), - [anon_sym_RBRACE] = ACTIONS(3318), - [anon_sym_typeof] = ACTIONS(3320), - [anon_sym_import] = ACTIONS(3320), - [anon_sym_var] = ACTIONS(3320), - [anon_sym_let] = ACTIONS(3320), - [anon_sym_const] = ACTIONS(3320), - [anon_sym_BANG] = ACTIONS(3318), - [anon_sym_else] = ACTIONS(3320), - [anon_sym_if] = ACTIONS(3320), - [anon_sym_switch] = ACTIONS(3320), - [anon_sym_for] = ACTIONS(3320), - [anon_sym_LPAREN] = ACTIONS(3318), - [anon_sym_await] = ACTIONS(3320), - [anon_sym_while] = ACTIONS(3320), - [anon_sym_do] = ACTIONS(3320), - [anon_sym_try] = ACTIONS(3320), - [anon_sym_with] = ACTIONS(3320), - [anon_sym_break] = ACTIONS(3320), - [anon_sym_continue] = ACTIONS(3320), - [anon_sym_debugger] = ACTIONS(3320), - [anon_sym_return] = ACTIONS(3320), - [anon_sym_throw] = ACTIONS(3320), - [anon_sym_SEMI] = ACTIONS(3318), - [anon_sym_case] = ACTIONS(3320), - [anon_sym_yield] = ACTIONS(3320), - [anon_sym_LBRACK] = ACTIONS(3318), - [anon_sym_LT] = ACTIONS(3318), - [anon_sym_SLASH] = ACTIONS(3320), - [anon_sym_class] = ACTIONS(3320), - [anon_sym_async] = ACTIONS(3320), - [anon_sym_function] = ACTIONS(3320), - [anon_sym_new] = ACTIONS(3320), - [anon_sym_PLUS] = ACTIONS(3320), - [anon_sym_DASH] = ACTIONS(3320), - [anon_sym_TILDE] = ACTIONS(3318), - [anon_sym_void] = ACTIONS(3320), - [anon_sym_delete] = ACTIONS(3320), - [anon_sym_PLUS_PLUS] = ACTIONS(3318), - [anon_sym_DASH_DASH] = ACTIONS(3318), - [anon_sym_DQUOTE] = ACTIONS(3318), - [anon_sym_SQUOTE] = ACTIONS(3318), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3318), - [sym_number] = ACTIONS(3318), - [sym_this] = ACTIONS(3320), - [sym_super] = ACTIONS(3320), - [sym_true] = ACTIONS(3320), - [sym_false] = ACTIONS(3320), - [sym_null] = ACTIONS(3320), - [sym_undefined] = ACTIONS(3320), - [anon_sym_AT] = ACTIONS(3318), - [anon_sym_static] = ACTIONS(3320), - [anon_sym_readonly] = ACTIONS(3320), - [anon_sym_get] = ACTIONS(3320), - [anon_sym_set] = ACTIONS(3320), - [anon_sym_declare] = ACTIONS(3320), - [anon_sym_public] = ACTIONS(3320), - [anon_sym_private] = ACTIONS(3320), - [anon_sym_protected] = ACTIONS(3320), - [anon_sym_module] = ACTIONS(3320), - [anon_sym_any] = ACTIONS(3320), - [anon_sym_number] = ACTIONS(3320), - [anon_sym_boolean] = ACTIONS(3320), - [anon_sym_string] = ACTIONS(3320), - [anon_sym_symbol] = ACTIONS(3320), - [anon_sym_abstract] = ACTIONS(3320), - [anon_sym_interface] = ACTIONS(3320), - [anon_sym_enum] = ACTIONS(3320), + [ts_builtin_sym_end] = ACTIONS(3336), + [sym_identifier] = ACTIONS(3338), + [anon_sym_export] = ACTIONS(3338), + [anon_sym_default] = ACTIONS(3338), + [anon_sym_type] = ACTIONS(3338), + [anon_sym_namespace] = ACTIONS(3338), + [anon_sym_LBRACE] = ACTIONS(3336), + [anon_sym_RBRACE] = ACTIONS(3336), + [anon_sym_typeof] = ACTIONS(3338), + [anon_sym_import] = ACTIONS(3338), + [anon_sym_var] = ACTIONS(3338), + [anon_sym_let] = ACTIONS(3338), + [anon_sym_const] = ACTIONS(3338), + [anon_sym_BANG] = ACTIONS(3336), + [anon_sym_else] = ACTIONS(3338), + [anon_sym_if] = ACTIONS(3338), + [anon_sym_switch] = ACTIONS(3338), + [anon_sym_for] = ACTIONS(3338), + [anon_sym_LPAREN] = ACTIONS(3336), + [anon_sym_await] = ACTIONS(3338), + [anon_sym_while] = ACTIONS(3338), + [anon_sym_do] = ACTIONS(3338), + [anon_sym_try] = ACTIONS(3338), + [anon_sym_with] = ACTIONS(3338), + [anon_sym_break] = ACTIONS(3338), + [anon_sym_continue] = ACTIONS(3338), + [anon_sym_debugger] = ACTIONS(3338), + [anon_sym_return] = ACTIONS(3338), + [anon_sym_throw] = ACTIONS(3338), + [anon_sym_SEMI] = ACTIONS(3336), + [anon_sym_case] = ACTIONS(3338), + [anon_sym_yield] = ACTIONS(3338), + [anon_sym_LBRACK] = ACTIONS(3336), + [anon_sym_LT] = ACTIONS(3336), + [anon_sym_SLASH] = ACTIONS(3338), + [anon_sym_class] = ACTIONS(3338), + [anon_sym_async] = ACTIONS(3338), + [anon_sym_function] = ACTIONS(3338), + [anon_sym_new] = ACTIONS(3338), + [anon_sym_PLUS] = ACTIONS(3338), + [anon_sym_DASH] = ACTIONS(3338), + [anon_sym_TILDE] = ACTIONS(3336), + [anon_sym_void] = ACTIONS(3338), + [anon_sym_delete] = ACTIONS(3338), + [anon_sym_PLUS_PLUS] = ACTIONS(3336), + [anon_sym_DASH_DASH] = ACTIONS(3336), + [anon_sym_DQUOTE] = ACTIONS(3336), + [anon_sym_SQUOTE] = ACTIONS(3336), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3336), + [sym_number] = ACTIONS(3336), + [sym_this] = ACTIONS(3338), + [sym_super] = ACTIONS(3338), + [sym_true] = ACTIONS(3338), + [sym_false] = ACTIONS(3338), + [sym_null] = ACTIONS(3338), + [sym_undefined] = ACTIONS(3338), + [anon_sym_AT] = ACTIONS(3336), + [anon_sym_static] = ACTIONS(3338), + [anon_sym_readonly] = ACTIONS(3338), + [anon_sym_get] = ACTIONS(3338), + [anon_sym_set] = ACTIONS(3338), + [anon_sym_declare] = ACTIONS(3338), + [anon_sym_public] = ACTIONS(3338), + [anon_sym_private] = ACTIONS(3338), + [anon_sym_protected] = ACTIONS(3338), + [anon_sym_module] = ACTIONS(3338), + [anon_sym_any] = ACTIONS(3338), + [anon_sym_number] = ACTIONS(3338), + [anon_sym_boolean] = ACTIONS(3338), + [anon_sym_string] = ACTIONS(3338), + [anon_sym_symbol] = ACTIONS(3338), + [anon_sym_abstract] = ACTIONS(3338), + [anon_sym_interface] = ACTIONS(3338), + [anon_sym_enum] = ACTIONS(3338), }, [1162] = { - [ts_builtin_sym_end] = ACTIONS(3322), - [sym_identifier] = ACTIONS(3324), - [anon_sym_export] = ACTIONS(3324), - [anon_sym_default] = ACTIONS(3324), - [anon_sym_type] = ACTIONS(3324), - [anon_sym_namespace] = ACTIONS(3324), - [anon_sym_LBRACE] = ACTIONS(3322), - [anon_sym_RBRACE] = ACTIONS(3322), - [anon_sym_typeof] = ACTIONS(3324), - [anon_sym_import] = ACTIONS(3324), - [anon_sym_var] = ACTIONS(3324), - [anon_sym_let] = ACTIONS(3324), - [anon_sym_const] = ACTIONS(3324), - [anon_sym_BANG] = ACTIONS(3322), - [anon_sym_else] = ACTIONS(3324), - [anon_sym_if] = ACTIONS(3324), - [anon_sym_switch] = ACTIONS(3324), - [anon_sym_for] = ACTIONS(3324), - [anon_sym_LPAREN] = ACTIONS(3322), - [anon_sym_await] = ACTIONS(3324), - [anon_sym_while] = ACTIONS(3324), - [anon_sym_do] = ACTIONS(3324), - [anon_sym_try] = ACTIONS(3324), - [anon_sym_with] = ACTIONS(3324), - [anon_sym_break] = ACTIONS(3324), - [anon_sym_continue] = ACTIONS(3324), - [anon_sym_debugger] = ACTIONS(3324), - [anon_sym_return] = ACTIONS(3324), - [anon_sym_throw] = ACTIONS(3324), - [anon_sym_SEMI] = ACTIONS(3322), - [anon_sym_case] = ACTIONS(3324), - [anon_sym_yield] = ACTIONS(3324), - [anon_sym_LBRACK] = ACTIONS(3322), - [anon_sym_LT] = ACTIONS(3322), - [anon_sym_SLASH] = ACTIONS(3324), - [anon_sym_class] = ACTIONS(3324), - [anon_sym_async] = ACTIONS(3324), - [anon_sym_function] = ACTIONS(3324), - [anon_sym_new] = ACTIONS(3324), - [anon_sym_PLUS] = ACTIONS(3324), - [anon_sym_DASH] = ACTIONS(3324), - [anon_sym_TILDE] = ACTIONS(3322), - [anon_sym_void] = ACTIONS(3324), - [anon_sym_delete] = ACTIONS(3324), - [anon_sym_PLUS_PLUS] = ACTIONS(3322), - [anon_sym_DASH_DASH] = ACTIONS(3322), - [anon_sym_DQUOTE] = ACTIONS(3322), - [anon_sym_SQUOTE] = ACTIONS(3322), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3322), - [sym_number] = ACTIONS(3322), - [sym_this] = ACTIONS(3324), - [sym_super] = ACTIONS(3324), - [sym_true] = ACTIONS(3324), - [sym_false] = ACTIONS(3324), - [sym_null] = ACTIONS(3324), - [sym_undefined] = ACTIONS(3324), - [anon_sym_AT] = ACTIONS(3322), - [anon_sym_static] = ACTIONS(3324), - [anon_sym_readonly] = ACTIONS(3324), - [anon_sym_get] = ACTIONS(3324), - [anon_sym_set] = ACTIONS(3324), - [anon_sym_declare] = ACTIONS(3324), - [anon_sym_public] = ACTIONS(3324), - [anon_sym_private] = ACTIONS(3324), - [anon_sym_protected] = ACTIONS(3324), - [anon_sym_module] = ACTIONS(3324), - [anon_sym_any] = ACTIONS(3324), - [anon_sym_number] = ACTIONS(3324), - [anon_sym_boolean] = ACTIONS(3324), - [anon_sym_string] = ACTIONS(3324), - [anon_sym_symbol] = ACTIONS(3324), - [anon_sym_abstract] = ACTIONS(3324), - [anon_sym_interface] = ACTIONS(3324), - [anon_sym_enum] = ACTIONS(3324), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1163] = { - [ts_builtin_sym_end] = ACTIONS(3326), - [sym_identifier] = ACTIONS(3328), - [anon_sym_export] = ACTIONS(3328), - [anon_sym_default] = ACTIONS(3328), - [anon_sym_type] = ACTIONS(3328), - [anon_sym_namespace] = ACTIONS(3328), - [anon_sym_LBRACE] = ACTIONS(3326), - [anon_sym_RBRACE] = ACTIONS(3326), - [anon_sym_typeof] = ACTIONS(3328), - [anon_sym_import] = ACTIONS(3328), - [anon_sym_var] = ACTIONS(3328), - [anon_sym_let] = ACTIONS(3328), - [anon_sym_const] = ACTIONS(3328), - [anon_sym_BANG] = ACTIONS(3326), - [anon_sym_else] = ACTIONS(3328), - [anon_sym_if] = ACTIONS(3328), - [anon_sym_switch] = ACTIONS(3328), - [anon_sym_for] = ACTIONS(3328), - [anon_sym_LPAREN] = ACTIONS(3326), - [anon_sym_await] = ACTIONS(3328), - [anon_sym_while] = ACTIONS(3328), - [anon_sym_do] = ACTIONS(3328), - [anon_sym_try] = ACTIONS(3328), - [anon_sym_with] = ACTIONS(3328), - [anon_sym_break] = ACTIONS(3328), - [anon_sym_continue] = ACTIONS(3328), - [anon_sym_debugger] = ACTIONS(3328), - [anon_sym_return] = ACTIONS(3328), - [anon_sym_throw] = ACTIONS(3328), - [anon_sym_SEMI] = ACTIONS(3326), - [anon_sym_case] = ACTIONS(3328), - [anon_sym_yield] = ACTIONS(3328), - [anon_sym_LBRACK] = ACTIONS(3326), - [anon_sym_LT] = ACTIONS(3326), - [anon_sym_SLASH] = ACTIONS(3328), - [anon_sym_class] = ACTIONS(3328), - [anon_sym_async] = ACTIONS(3328), - [anon_sym_function] = ACTIONS(3328), - [anon_sym_new] = ACTIONS(3328), - [anon_sym_PLUS] = ACTIONS(3328), - [anon_sym_DASH] = ACTIONS(3328), - [anon_sym_TILDE] = ACTIONS(3326), - [anon_sym_void] = ACTIONS(3328), - [anon_sym_delete] = ACTIONS(3328), - [anon_sym_PLUS_PLUS] = ACTIONS(3326), - [anon_sym_DASH_DASH] = ACTIONS(3326), - [anon_sym_DQUOTE] = ACTIONS(3326), - [anon_sym_SQUOTE] = ACTIONS(3326), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3326), - [sym_number] = ACTIONS(3326), - [sym_this] = ACTIONS(3328), - [sym_super] = ACTIONS(3328), - [sym_true] = ACTIONS(3328), - [sym_false] = ACTIONS(3328), - [sym_null] = ACTIONS(3328), - [sym_undefined] = ACTIONS(3328), - [anon_sym_AT] = ACTIONS(3326), - [anon_sym_static] = ACTIONS(3328), - [anon_sym_readonly] = ACTIONS(3328), - [anon_sym_get] = ACTIONS(3328), - [anon_sym_set] = ACTIONS(3328), - [anon_sym_declare] = ACTIONS(3328), - [anon_sym_public] = ACTIONS(3328), - [anon_sym_private] = ACTIONS(3328), - [anon_sym_protected] = ACTIONS(3328), - [anon_sym_module] = ACTIONS(3328), - [anon_sym_any] = ACTIONS(3328), - [anon_sym_number] = ACTIONS(3328), - [anon_sym_boolean] = ACTIONS(3328), - [anon_sym_string] = ACTIONS(3328), - [anon_sym_symbol] = ACTIONS(3328), - [anon_sym_abstract] = ACTIONS(3328), - [anon_sym_interface] = ACTIONS(3328), - [anon_sym_enum] = ACTIONS(3328), + [ts_builtin_sym_end] = ACTIONS(3340), + [sym_identifier] = ACTIONS(3342), + [anon_sym_export] = ACTIONS(3342), + [anon_sym_default] = ACTIONS(3342), + [anon_sym_type] = ACTIONS(3342), + [anon_sym_namespace] = ACTIONS(3342), + [anon_sym_LBRACE] = ACTIONS(3340), + [anon_sym_RBRACE] = ACTIONS(3340), + [anon_sym_typeof] = ACTIONS(3342), + [anon_sym_import] = ACTIONS(3342), + [anon_sym_var] = ACTIONS(3342), + [anon_sym_let] = ACTIONS(3342), + [anon_sym_const] = ACTIONS(3342), + [anon_sym_BANG] = ACTIONS(3340), + [anon_sym_else] = ACTIONS(3342), + [anon_sym_if] = ACTIONS(3342), + [anon_sym_switch] = ACTIONS(3342), + [anon_sym_for] = ACTIONS(3342), + [anon_sym_LPAREN] = ACTIONS(3340), + [anon_sym_await] = ACTIONS(3342), + [anon_sym_while] = ACTIONS(3342), + [anon_sym_do] = ACTIONS(3342), + [anon_sym_try] = ACTIONS(3342), + [anon_sym_with] = ACTIONS(3342), + [anon_sym_break] = ACTIONS(3342), + [anon_sym_continue] = ACTIONS(3342), + [anon_sym_debugger] = ACTIONS(3342), + [anon_sym_return] = ACTIONS(3342), + [anon_sym_throw] = ACTIONS(3342), + [anon_sym_SEMI] = ACTIONS(3340), + [anon_sym_case] = ACTIONS(3342), + [anon_sym_yield] = ACTIONS(3342), + [anon_sym_LBRACK] = ACTIONS(3340), + [anon_sym_LT] = ACTIONS(3340), + [anon_sym_SLASH] = ACTIONS(3342), + [anon_sym_class] = ACTIONS(3342), + [anon_sym_async] = ACTIONS(3342), + [anon_sym_function] = ACTIONS(3342), + [anon_sym_new] = ACTIONS(3342), + [anon_sym_PLUS] = ACTIONS(3342), + [anon_sym_DASH] = ACTIONS(3342), + [anon_sym_TILDE] = ACTIONS(3340), + [anon_sym_void] = ACTIONS(3342), + [anon_sym_delete] = ACTIONS(3342), + [anon_sym_PLUS_PLUS] = ACTIONS(3340), + [anon_sym_DASH_DASH] = ACTIONS(3340), + [anon_sym_DQUOTE] = ACTIONS(3340), + [anon_sym_SQUOTE] = ACTIONS(3340), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3340), + [sym_number] = ACTIONS(3340), + [sym_this] = ACTIONS(3342), + [sym_super] = ACTIONS(3342), + [sym_true] = ACTIONS(3342), + [sym_false] = ACTIONS(3342), + [sym_null] = ACTIONS(3342), + [sym_undefined] = ACTIONS(3342), + [anon_sym_AT] = ACTIONS(3340), + [anon_sym_static] = ACTIONS(3342), + [anon_sym_readonly] = ACTIONS(3342), + [anon_sym_get] = ACTIONS(3342), + [anon_sym_set] = ACTIONS(3342), + [anon_sym_declare] = ACTIONS(3342), + [anon_sym_public] = ACTIONS(3342), + [anon_sym_private] = ACTIONS(3342), + [anon_sym_protected] = ACTIONS(3342), + [anon_sym_module] = ACTIONS(3342), + [anon_sym_any] = ACTIONS(3342), + [anon_sym_number] = ACTIONS(3342), + [anon_sym_boolean] = ACTIONS(3342), + [anon_sym_string] = ACTIONS(3342), + [anon_sym_symbol] = ACTIONS(3342), + [anon_sym_abstract] = ACTIONS(3342), + [anon_sym_interface] = ACTIONS(3342), + [anon_sym_enum] = ACTIONS(3342), }, [1164] = { - [ts_builtin_sym_end] = ACTIONS(3330), - [sym_identifier] = ACTIONS(3332), - [anon_sym_export] = ACTIONS(3332), - [anon_sym_default] = ACTIONS(3332), - [anon_sym_type] = ACTIONS(3332), - [anon_sym_namespace] = ACTIONS(3332), - [anon_sym_LBRACE] = ACTIONS(3330), - [anon_sym_RBRACE] = ACTIONS(3330), - [anon_sym_typeof] = ACTIONS(3332), - [anon_sym_import] = ACTIONS(3332), - [anon_sym_var] = ACTIONS(3332), - [anon_sym_let] = ACTIONS(3332), - [anon_sym_const] = ACTIONS(3332), - [anon_sym_BANG] = ACTIONS(3330), - [anon_sym_else] = ACTIONS(3332), - [anon_sym_if] = ACTIONS(3332), - [anon_sym_switch] = ACTIONS(3332), - [anon_sym_for] = ACTIONS(3332), - [anon_sym_LPAREN] = ACTIONS(3330), - [anon_sym_await] = ACTIONS(3332), - [anon_sym_while] = ACTIONS(3332), - [anon_sym_do] = ACTIONS(3332), - [anon_sym_try] = ACTIONS(3332), - [anon_sym_with] = ACTIONS(3332), - [anon_sym_break] = ACTIONS(3332), - [anon_sym_continue] = ACTIONS(3332), - [anon_sym_debugger] = ACTIONS(3332), - [anon_sym_return] = ACTIONS(3332), - [anon_sym_throw] = ACTIONS(3332), - [anon_sym_SEMI] = ACTIONS(3330), - [anon_sym_case] = ACTIONS(3332), - [anon_sym_yield] = ACTIONS(3332), - [anon_sym_LBRACK] = ACTIONS(3330), - [anon_sym_LT] = ACTIONS(3330), - [anon_sym_SLASH] = ACTIONS(3332), - [anon_sym_class] = ACTIONS(3332), - [anon_sym_async] = ACTIONS(3332), - [anon_sym_function] = ACTIONS(3332), - [anon_sym_new] = ACTIONS(3332), - [anon_sym_PLUS] = ACTIONS(3332), - [anon_sym_DASH] = ACTIONS(3332), - [anon_sym_TILDE] = ACTIONS(3330), - [anon_sym_void] = ACTIONS(3332), - [anon_sym_delete] = ACTIONS(3332), - [anon_sym_PLUS_PLUS] = ACTIONS(3330), - [anon_sym_DASH_DASH] = ACTIONS(3330), - [anon_sym_DQUOTE] = ACTIONS(3330), - [anon_sym_SQUOTE] = ACTIONS(3330), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3330), - [sym_number] = ACTIONS(3330), - [sym_this] = ACTIONS(3332), - [sym_super] = ACTIONS(3332), - [sym_true] = ACTIONS(3332), - [sym_false] = ACTIONS(3332), - [sym_null] = ACTIONS(3332), - [sym_undefined] = ACTIONS(3332), - [anon_sym_AT] = ACTIONS(3330), - [anon_sym_static] = ACTIONS(3332), - [anon_sym_readonly] = ACTIONS(3332), - [anon_sym_get] = ACTIONS(3332), - [anon_sym_set] = ACTIONS(3332), - [anon_sym_declare] = ACTIONS(3332), - [anon_sym_public] = ACTIONS(3332), - [anon_sym_private] = ACTIONS(3332), - [anon_sym_protected] = ACTIONS(3332), - [anon_sym_module] = ACTIONS(3332), - [anon_sym_any] = ACTIONS(3332), - [anon_sym_number] = ACTIONS(3332), - [anon_sym_boolean] = ACTIONS(3332), - [anon_sym_string] = ACTIONS(3332), - [anon_sym_symbol] = ACTIONS(3332), - [anon_sym_abstract] = ACTIONS(3332), - [anon_sym_interface] = ACTIONS(3332), - [anon_sym_enum] = ACTIONS(3332), + [ts_builtin_sym_end] = ACTIONS(3344), + [sym_identifier] = ACTIONS(3346), + [anon_sym_export] = ACTIONS(3346), + [anon_sym_default] = ACTIONS(3346), + [anon_sym_type] = ACTIONS(3346), + [anon_sym_namespace] = ACTIONS(3346), + [anon_sym_LBRACE] = ACTIONS(3344), + [anon_sym_RBRACE] = ACTIONS(3344), + [anon_sym_typeof] = ACTIONS(3346), + [anon_sym_import] = ACTIONS(3346), + [anon_sym_var] = ACTIONS(3346), + [anon_sym_let] = ACTIONS(3346), + [anon_sym_const] = ACTIONS(3346), + [anon_sym_BANG] = ACTIONS(3344), + [anon_sym_else] = ACTIONS(3346), + [anon_sym_if] = ACTIONS(3346), + [anon_sym_switch] = ACTIONS(3346), + [anon_sym_for] = ACTIONS(3346), + [anon_sym_LPAREN] = ACTIONS(3344), + [anon_sym_await] = ACTIONS(3346), + [anon_sym_while] = ACTIONS(3346), + [anon_sym_do] = ACTIONS(3346), + [anon_sym_try] = ACTIONS(3346), + [anon_sym_with] = ACTIONS(3346), + [anon_sym_break] = ACTIONS(3346), + [anon_sym_continue] = ACTIONS(3346), + [anon_sym_debugger] = ACTIONS(3346), + [anon_sym_return] = ACTIONS(3346), + [anon_sym_throw] = ACTIONS(3346), + [anon_sym_SEMI] = ACTIONS(3344), + [anon_sym_case] = ACTIONS(3346), + [anon_sym_yield] = ACTIONS(3346), + [anon_sym_LBRACK] = ACTIONS(3344), + [anon_sym_LT] = ACTIONS(3344), + [anon_sym_SLASH] = ACTIONS(3346), + [anon_sym_class] = ACTIONS(3346), + [anon_sym_async] = ACTIONS(3346), + [anon_sym_function] = ACTIONS(3346), + [anon_sym_new] = ACTIONS(3346), + [anon_sym_PLUS] = ACTIONS(3346), + [anon_sym_DASH] = ACTIONS(3346), + [anon_sym_TILDE] = ACTIONS(3344), + [anon_sym_void] = ACTIONS(3346), + [anon_sym_delete] = ACTIONS(3346), + [anon_sym_PLUS_PLUS] = ACTIONS(3344), + [anon_sym_DASH_DASH] = ACTIONS(3344), + [anon_sym_DQUOTE] = ACTIONS(3344), + [anon_sym_SQUOTE] = ACTIONS(3344), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3344), + [sym_number] = ACTIONS(3344), + [sym_this] = ACTIONS(3346), + [sym_super] = ACTIONS(3346), + [sym_true] = ACTIONS(3346), + [sym_false] = ACTIONS(3346), + [sym_null] = ACTIONS(3346), + [sym_undefined] = ACTIONS(3346), + [anon_sym_AT] = ACTIONS(3344), + [anon_sym_static] = ACTIONS(3346), + [anon_sym_readonly] = ACTIONS(3346), + [anon_sym_get] = ACTIONS(3346), + [anon_sym_set] = ACTIONS(3346), + [anon_sym_declare] = ACTIONS(3346), + [anon_sym_public] = ACTIONS(3346), + [anon_sym_private] = ACTIONS(3346), + [anon_sym_protected] = ACTIONS(3346), + [anon_sym_module] = ACTIONS(3346), + [anon_sym_any] = ACTIONS(3346), + [anon_sym_number] = ACTIONS(3346), + [anon_sym_boolean] = ACTIONS(3346), + [anon_sym_string] = ACTIONS(3346), + [anon_sym_symbol] = ACTIONS(3346), + [anon_sym_abstract] = ACTIONS(3346), + [anon_sym_interface] = ACTIONS(3346), + [anon_sym_enum] = ACTIONS(3346), }, [1165] = { - [ts_builtin_sym_end] = ACTIONS(3334), - [sym_identifier] = ACTIONS(3336), - [anon_sym_export] = ACTIONS(3336), - [anon_sym_default] = ACTIONS(3336), - [anon_sym_type] = ACTIONS(3336), - [anon_sym_namespace] = ACTIONS(3336), - [anon_sym_LBRACE] = ACTIONS(3334), - [anon_sym_RBRACE] = ACTIONS(3334), - [anon_sym_typeof] = ACTIONS(3336), - [anon_sym_import] = ACTIONS(3336), - [anon_sym_var] = ACTIONS(3336), - [anon_sym_let] = ACTIONS(3336), - [anon_sym_const] = ACTIONS(3336), - [anon_sym_BANG] = ACTIONS(3334), - [anon_sym_else] = ACTIONS(3336), - [anon_sym_if] = ACTIONS(3336), - [anon_sym_switch] = ACTIONS(3336), - [anon_sym_for] = ACTIONS(3336), - [anon_sym_LPAREN] = ACTIONS(3334), - [anon_sym_await] = ACTIONS(3336), - [anon_sym_while] = ACTIONS(3336), - [anon_sym_do] = ACTIONS(3336), - [anon_sym_try] = ACTIONS(3336), - [anon_sym_with] = ACTIONS(3336), - [anon_sym_break] = ACTIONS(3336), - [anon_sym_continue] = ACTIONS(3336), - [anon_sym_debugger] = ACTIONS(3336), - [anon_sym_return] = ACTIONS(3336), - [anon_sym_throw] = ACTIONS(3336), - [anon_sym_SEMI] = ACTIONS(3334), - [anon_sym_case] = ACTIONS(3336), - [anon_sym_yield] = ACTIONS(3336), - [anon_sym_LBRACK] = ACTIONS(3334), - [anon_sym_LT] = ACTIONS(3334), - [anon_sym_SLASH] = ACTIONS(3336), - [anon_sym_class] = ACTIONS(3336), - [anon_sym_async] = ACTIONS(3336), - [anon_sym_function] = ACTIONS(3336), - [anon_sym_new] = ACTIONS(3336), - [anon_sym_PLUS] = ACTIONS(3336), - [anon_sym_DASH] = ACTIONS(3336), - [anon_sym_TILDE] = ACTIONS(3334), - [anon_sym_void] = ACTIONS(3336), - [anon_sym_delete] = ACTIONS(3336), - [anon_sym_PLUS_PLUS] = ACTIONS(3334), - [anon_sym_DASH_DASH] = ACTIONS(3334), - [anon_sym_DQUOTE] = ACTIONS(3334), - [anon_sym_SQUOTE] = ACTIONS(3334), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3334), - [sym_number] = ACTIONS(3334), - [sym_this] = ACTIONS(3336), - [sym_super] = ACTIONS(3336), - [sym_true] = ACTIONS(3336), - [sym_false] = ACTIONS(3336), - [sym_null] = ACTIONS(3336), - [sym_undefined] = ACTIONS(3336), - [anon_sym_AT] = ACTIONS(3334), - [anon_sym_static] = ACTIONS(3336), - [anon_sym_readonly] = ACTIONS(3336), - [anon_sym_get] = ACTIONS(3336), - [anon_sym_set] = ACTIONS(3336), - [anon_sym_declare] = ACTIONS(3336), - [anon_sym_public] = ACTIONS(3336), - [anon_sym_private] = ACTIONS(3336), - [anon_sym_protected] = ACTIONS(3336), - [anon_sym_module] = ACTIONS(3336), - [anon_sym_any] = ACTIONS(3336), - [anon_sym_number] = ACTIONS(3336), - [anon_sym_boolean] = ACTIONS(3336), - [anon_sym_string] = ACTIONS(3336), - [anon_sym_symbol] = ACTIONS(3336), - [anon_sym_abstract] = ACTIONS(3336), - [anon_sym_interface] = ACTIONS(3336), - [anon_sym_enum] = ACTIONS(3336), + [ts_builtin_sym_end] = ACTIONS(3348), + [sym_identifier] = ACTIONS(3350), + [anon_sym_export] = ACTIONS(3350), + [anon_sym_default] = ACTIONS(3350), + [anon_sym_type] = ACTIONS(3350), + [anon_sym_namespace] = ACTIONS(3350), + [anon_sym_LBRACE] = ACTIONS(3348), + [anon_sym_RBRACE] = ACTIONS(3348), + [anon_sym_typeof] = ACTIONS(3350), + [anon_sym_import] = ACTIONS(3350), + [anon_sym_var] = ACTIONS(3350), + [anon_sym_let] = ACTIONS(3350), + [anon_sym_const] = ACTIONS(3350), + [anon_sym_BANG] = ACTIONS(3348), + [anon_sym_else] = ACTIONS(3350), + [anon_sym_if] = ACTIONS(3350), + [anon_sym_switch] = ACTIONS(3350), + [anon_sym_for] = ACTIONS(3350), + [anon_sym_LPAREN] = ACTIONS(3348), + [anon_sym_await] = ACTIONS(3350), + [anon_sym_while] = ACTIONS(3350), + [anon_sym_do] = ACTIONS(3350), + [anon_sym_try] = ACTIONS(3350), + [anon_sym_with] = ACTIONS(3350), + [anon_sym_break] = ACTIONS(3350), + [anon_sym_continue] = ACTIONS(3350), + [anon_sym_debugger] = ACTIONS(3350), + [anon_sym_return] = ACTIONS(3350), + [anon_sym_throw] = ACTIONS(3350), + [anon_sym_SEMI] = ACTIONS(3348), + [anon_sym_case] = ACTIONS(3350), + [anon_sym_yield] = ACTIONS(3350), + [anon_sym_LBRACK] = ACTIONS(3348), + [anon_sym_LT] = ACTIONS(3348), + [anon_sym_SLASH] = ACTIONS(3350), + [anon_sym_class] = ACTIONS(3350), + [anon_sym_async] = ACTIONS(3350), + [anon_sym_function] = ACTIONS(3350), + [anon_sym_new] = ACTIONS(3350), + [anon_sym_PLUS] = ACTIONS(3350), + [anon_sym_DASH] = ACTIONS(3350), + [anon_sym_TILDE] = ACTIONS(3348), + [anon_sym_void] = ACTIONS(3350), + [anon_sym_delete] = ACTIONS(3350), + [anon_sym_PLUS_PLUS] = ACTIONS(3348), + [anon_sym_DASH_DASH] = ACTIONS(3348), + [anon_sym_DQUOTE] = ACTIONS(3348), + [anon_sym_SQUOTE] = ACTIONS(3348), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3348), + [sym_number] = ACTIONS(3348), + [sym_this] = ACTIONS(3350), + [sym_super] = ACTIONS(3350), + [sym_true] = ACTIONS(3350), + [sym_false] = ACTIONS(3350), + [sym_null] = ACTIONS(3350), + [sym_undefined] = ACTIONS(3350), + [anon_sym_AT] = ACTIONS(3348), + [anon_sym_static] = ACTIONS(3350), + [anon_sym_readonly] = ACTIONS(3350), + [anon_sym_get] = ACTIONS(3350), + [anon_sym_set] = ACTIONS(3350), + [anon_sym_declare] = ACTIONS(3350), + [anon_sym_public] = ACTIONS(3350), + [anon_sym_private] = ACTIONS(3350), + [anon_sym_protected] = ACTIONS(3350), + [anon_sym_module] = ACTIONS(3350), + [anon_sym_any] = ACTIONS(3350), + [anon_sym_number] = ACTIONS(3350), + [anon_sym_boolean] = ACTIONS(3350), + [anon_sym_string] = ACTIONS(3350), + [anon_sym_symbol] = ACTIONS(3350), + [anon_sym_abstract] = ACTIONS(3350), + [anon_sym_interface] = ACTIONS(3350), + [anon_sym_enum] = ACTIONS(3350), }, [1166] = { - [ts_builtin_sym_end] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3352), + [sym_identifier] = ACTIONS(3354), + [anon_sym_export] = ACTIONS(3354), + [anon_sym_default] = ACTIONS(3354), + [anon_sym_type] = ACTIONS(3354), + [anon_sym_namespace] = ACTIONS(3354), + [anon_sym_LBRACE] = ACTIONS(3352), + [anon_sym_RBRACE] = ACTIONS(3352), + [anon_sym_typeof] = ACTIONS(3354), + [anon_sym_import] = ACTIONS(3354), + [anon_sym_var] = ACTIONS(3354), + [anon_sym_let] = ACTIONS(3354), + [anon_sym_const] = ACTIONS(3354), + [anon_sym_BANG] = ACTIONS(3352), + [anon_sym_else] = ACTIONS(3354), + [anon_sym_if] = ACTIONS(3354), + [anon_sym_switch] = ACTIONS(3354), + [anon_sym_for] = ACTIONS(3354), + [anon_sym_LPAREN] = ACTIONS(3352), + [anon_sym_await] = ACTIONS(3354), + [anon_sym_while] = ACTIONS(3354), + [anon_sym_do] = ACTIONS(3354), + [anon_sym_try] = ACTIONS(3354), + [anon_sym_with] = ACTIONS(3354), + [anon_sym_break] = ACTIONS(3354), + [anon_sym_continue] = ACTIONS(3354), + [anon_sym_debugger] = ACTIONS(3354), + [anon_sym_return] = ACTIONS(3354), + [anon_sym_throw] = ACTIONS(3354), + [anon_sym_SEMI] = ACTIONS(3352), + [anon_sym_case] = ACTIONS(3354), + [anon_sym_yield] = ACTIONS(3354), + [anon_sym_LBRACK] = ACTIONS(3352), + [anon_sym_LT] = ACTIONS(3352), + [anon_sym_SLASH] = ACTIONS(3354), + [anon_sym_class] = ACTIONS(3354), + [anon_sym_async] = ACTIONS(3354), + [anon_sym_function] = ACTIONS(3354), + [anon_sym_new] = ACTIONS(3354), + [anon_sym_PLUS] = ACTIONS(3354), + [anon_sym_DASH] = ACTIONS(3354), + [anon_sym_TILDE] = ACTIONS(3352), + [anon_sym_void] = ACTIONS(3354), + [anon_sym_delete] = ACTIONS(3354), + [anon_sym_PLUS_PLUS] = ACTIONS(3352), + [anon_sym_DASH_DASH] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(3352), + [anon_sym_SQUOTE] = ACTIONS(3352), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3352), + [sym_number] = ACTIONS(3352), + [sym_this] = ACTIONS(3354), + [sym_super] = ACTIONS(3354), + [sym_true] = ACTIONS(3354), + [sym_false] = ACTIONS(3354), + [sym_null] = ACTIONS(3354), + [sym_undefined] = ACTIONS(3354), + [anon_sym_AT] = ACTIONS(3352), + [anon_sym_static] = ACTIONS(3354), + [anon_sym_readonly] = ACTIONS(3354), + [anon_sym_get] = ACTIONS(3354), + [anon_sym_set] = ACTIONS(3354), + [anon_sym_declare] = ACTIONS(3354), + [anon_sym_public] = ACTIONS(3354), + [anon_sym_private] = ACTIONS(3354), + [anon_sym_protected] = ACTIONS(3354), + [anon_sym_module] = ACTIONS(3354), + [anon_sym_any] = ACTIONS(3354), + [anon_sym_number] = ACTIONS(3354), + [anon_sym_boolean] = ACTIONS(3354), + [anon_sym_string] = ACTIONS(3354), + [anon_sym_symbol] = ACTIONS(3354), + [anon_sym_abstract] = ACTIONS(3354), + [anon_sym_interface] = ACTIONS(3354), + [anon_sym_enum] = ACTIONS(3354), }, [1167] = { - [ts_builtin_sym_end] = ACTIONS(3342), - [sym_identifier] = ACTIONS(3344), - [anon_sym_export] = ACTIONS(3344), - [anon_sym_default] = ACTIONS(3344), - [anon_sym_type] = ACTIONS(3344), - [anon_sym_namespace] = ACTIONS(3344), - [anon_sym_LBRACE] = ACTIONS(3342), - [anon_sym_RBRACE] = ACTIONS(3342), - [anon_sym_typeof] = ACTIONS(3344), - [anon_sym_import] = ACTIONS(3344), - [anon_sym_var] = ACTIONS(3344), - [anon_sym_let] = ACTIONS(3344), - [anon_sym_const] = ACTIONS(3344), - [anon_sym_BANG] = ACTIONS(3342), - [anon_sym_else] = ACTIONS(3344), - [anon_sym_if] = ACTIONS(3344), - [anon_sym_switch] = ACTIONS(3344), - [anon_sym_for] = ACTIONS(3344), - [anon_sym_LPAREN] = ACTIONS(3342), - [anon_sym_await] = ACTIONS(3344), - [anon_sym_while] = ACTIONS(3344), - [anon_sym_do] = ACTIONS(3344), - [anon_sym_try] = ACTIONS(3344), - [anon_sym_with] = ACTIONS(3344), - [anon_sym_break] = ACTIONS(3344), - [anon_sym_continue] = ACTIONS(3344), - [anon_sym_debugger] = ACTIONS(3344), - [anon_sym_return] = ACTIONS(3344), - [anon_sym_throw] = ACTIONS(3344), - [anon_sym_SEMI] = ACTIONS(3342), - [anon_sym_case] = ACTIONS(3344), - [anon_sym_yield] = ACTIONS(3344), - [anon_sym_LBRACK] = ACTIONS(3342), - [anon_sym_LT] = ACTIONS(3342), - [anon_sym_SLASH] = ACTIONS(3344), - [anon_sym_class] = ACTIONS(3344), - [anon_sym_async] = ACTIONS(3344), - [anon_sym_function] = ACTIONS(3344), - [anon_sym_new] = ACTIONS(3344), - [anon_sym_PLUS] = ACTIONS(3344), - [anon_sym_DASH] = ACTIONS(3344), - [anon_sym_TILDE] = ACTIONS(3342), - [anon_sym_void] = ACTIONS(3344), - [anon_sym_delete] = ACTIONS(3344), - [anon_sym_PLUS_PLUS] = ACTIONS(3342), - [anon_sym_DASH_DASH] = ACTIONS(3342), - [anon_sym_DQUOTE] = ACTIONS(3342), - [anon_sym_SQUOTE] = ACTIONS(3342), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3342), - [sym_number] = ACTIONS(3342), - [sym_this] = ACTIONS(3344), - [sym_super] = ACTIONS(3344), - [sym_true] = ACTIONS(3344), - [sym_false] = ACTIONS(3344), - [sym_null] = ACTIONS(3344), - [sym_undefined] = ACTIONS(3344), - [anon_sym_AT] = ACTIONS(3342), - [anon_sym_static] = ACTIONS(3344), - [anon_sym_readonly] = ACTIONS(3344), - [anon_sym_get] = ACTIONS(3344), - [anon_sym_set] = ACTIONS(3344), - [anon_sym_declare] = ACTIONS(3344), - [anon_sym_public] = ACTIONS(3344), - [anon_sym_private] = ACTIONS(3344), - [anon_sym_protected] = ACTIONS(3344), - [anon_sym_module] = ACTIONS(3344), - [anon_sym_any] = ACTIONS(3344), - [anon_sym_number] = ACTIONS(3344), - [anon_sym_boolean] = ACTIONS(3344), - [anon_sym_string] = ACTIONS(3344), - [anon_sym_symbol] = ACTIONS(3344), - [anon_sym_abstract] = ACTIONS(3344), - [anon_sym_interface] = ACTIONS(3344), - [anon_sym_enum] = ACTIONS(3344), + [ts_builtin_sym_end] = ACTIONS(3356), + [sym_identifier] = ACTIONS(3358), + [anon_sym_export] = ACTIONS(3358), + [anon_sym_default] = ACTIONS(3358), + [anon_sym_type] = ACTIONS(3358), + [anon_sym_namespace] = ACTIONS(3358), + [anon_sym_LBRACE] = ACTIONS(3356), + [anon_sym_RBRACE] = ACTIONS(3356), + [anon_sym_typeof] = ACTIONS(3358), + [anon_sym_import] = ACTIONS(3358), + [anon_sym_var] = ACTIONS(3358), + [anon_sym_let] = ACTIONS(3358), + [anon_sym_const] = ACTIONS(3358), + [anon_sym_BANG] = ACTIONS(3356), + [anon_sym_else] = ACTIONS(3358), + [anon_sym_if] = ACTIONS(3358), + [anon_sym_switch] = ACTIONS(3358), + [anon_sym_for] = ACTIONS(3358), + [anon_sym_LPAREN] = ACTIONS(3356), + [anon_sym_await] = ACTIONS(3358), + [anon_sym_while] = ACTIONS(3358), + [anon_sym_do] = ACTIONS(3358), + [anon_sym_try] = ACTIONS(3358), + [anon_sym_with] = ACTIONS(3358), + [anon_sym_break] = ACTIONS(3358), + [anon_sym_continue] = ACTIONS(3358), + [anon_sym_debugger] = ACTIONS(3358), + [anon_sym_return] = ACTIONS(3358), + [anon_sym_throw] = ACTIONS(3358), + [anon_sym_SEMI] = ACTIONS(3356), + [anon_sym_case] = ACTIONS(3358), + [anon_sym_yield] = ACTIONS(3358), + [anon_sym_LBRACK] = ACTIONS(3356), + [anon_sym_LT] = ACTIONS(3356), + [anon_sym_SLASH] = ACTIONS(3358), + [anon_sym_class] = ACTIONS(3358), + [anon_sym_async] = ACTIONS(3358), + [anon_sym_function] = ACTIONS(3358), + [anon_sym_new] = ACTIONS(3358), + [anon_sym_PLUS] = ACTIONS(3358), + [anon_sym_DASH] = ACTIONS(3358), + [anon_sym_TILDE] = ACTIONS(3356), + [anon_sym_void] = ACTIONS(3358), + [anon_sym_delete] = ACTIONS(3358), + [anon_sym_PLUS_PLUS] = ACTIONS(3356), + [anon_sym_DASH_DASH] = ACTIONS(3356), + [anon_sym_DQUOTE] = ACTIONS(3356), + [anon_sym_SQUOTE] = ACTIONS(3356), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3356), + [sym_number] = ACTIONS(3356), + [sym_this] = ACTIONS(3358), + [sym_super] = ACTIONS(3358), + [sym_true] = ACTIONS(3358), + [sym_false] = ACTIONS(3358), + [sym_null] = ACTIONS(3358), + [sym_undefined] = ACTIONS(3358), + [anon_sym_AT] = ACTIONS(3356), + [anon_sym_static] = ACTIONS(3358), + [anon_sym_readonly] = ACTIONS(3358), + [anon_sym_get] = ACTIONS(3358), + [anon_sym_set] = ACTIONS(3358), + [anon_sym_declare] = ACTIONS(3358), + [anon_sym_public] = ACTIONS(3358), + [anon_sym_private] = ACTIONS(3358), + [anon_sym_protected] = ACTIONS(3358), + [anon_sym_module] = ACTIONS(3358), + [anon_sym_any] = ACTIONS(3358), + [anon_sym_number] = ACTIONS(3358), + [anon_sym_boolean] = ACTIONS(3358), + [anon_sym_string] = ACTIONS(3358), + [anon_sym_symbol] = ACTIONS(3358), + [anon_sym_abstract] = ACTIONS(3358), + [anon_sym_interface] = ACTIONS(3358), + [anon_sym_enum] = ACTIONS(3358), }, [1168] = { - [ts_builtin_sym_end] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), + [ts_builtin_sym_end] = ACTIONS(3120), + [sym_identifier] = ACTIONS(3122), + [anon_sym_export] = ACTIONS(3122), + [anon_sym_default] = ACTIONS(3122), + [anon_sym_type] = ACTIONS(3122), + [anon_sym_namespace] = ACTIONS(3122), + [anon_sym_LBRACE] = ACTIONS(3120), + [anon_sym_RBRACE] = ACTIONS(3120), + [anon_sym_typeof] = ACTIONS(3122), + [anon_sym_import] = ACTIONS(3122), + [anon_sym_var] = ACTIONS(3122), + [anon_sym_let] = ACTIONS(3122), + [anon_sym_const] = ACTIONS(3122), + [anon_sym_BANG] = ACTIONS(3120), + [anon_sym_else] = ACTIONS(3122), + [anon_sym_if] = ACTIONS(3122), + [anon_sym_switch] = ACTIONS(3122), + [anon_sym_for] = ACTIONS(3122), + [anon_sym_LPAREN] = ACTIONS(3120), + [anon_sym_await] = ACTIONS(3122), + [anon_sym_while] = ACTIONS(3122), + [anon_sym_do] = ACTIONS(3122), + [anon_sym_try] = ACTIONS(3122), + [anon_sym_with] = ACTIONS(3122), + [anon_sym_break] = ACTIONS(3122), + [anon_sym_continue] = ACTIONS(3122), + [anon_sym_debugger] = ACTIONS(3122), + [anon_sym_return] = ACTIONS(3122), + [anon_sym_throw] = ACTIONS(3122), + [anon_sym_SEMI] = ACTIONS(3120), + [anon_sym_case] = ACTIONS(3122), + [anon_sym_yield] = ACTIONS(3122), + [anon_sym_LBRACK] = ACTIONS(3120), + [anon_sym_LT] = ACTIONS(3120), + [anon_sym_SLASH] = ACTIONS(3122), + [anon_sym_class] = ACTIONS(3122), + [anon_sym_async] = ACTIONS(3122), + [anon_sym_function] = ACTIONS(3122), + [anon_sym_new] = ACTIONS(3122), + [anon_sym_PLUS] = ACTIONS(3122), + [anon_sym_DASH] = ACTIONS(3122), + [anon_sym_TILDE] = ACTIONS(3120), + [anon_sym_void] = ACTIONS(3122), + [anon_sym_delete] = ACTIONS(3122), + [anon_sym_PLUS_PLUS] = ACTIONS(3120), + [anon_sym_DASH_DASH] = ACTIONS(3120), + [anon_sym_DQUOTE] = ACTIONS(3120), + [anon_sym_SQUOTE] = ACTIONS(3120), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3120), + [sym_number] = ACTIONS(3120), + [sym_this] = ACTIONS(3122), + [sym_super] = ACTIONS(3122), + [sym_true] = ACTIONS(3122), + [sym_false] = ACTIONS(3122), + [sym_null] = ACTIONS(3122), + [sym_undefined] = ACTIONS(3122), + [anon_sym_AT] = ACTIONS(3120), + [anon_sym_static] = ACTIONS(3122), + [anon_sym_readonly] = ACTIONS(3122), + [anon_sym_get] = ACTIONS(3122), + [anon_sym_set] = ACTIONS(3122), + [anon_sym_declare] = ACTIONS(3122), + [anon_sym_public] = ACTIONS(3122), + [anon_sym_private] = ACTIONS(3122), + [anon_sym_protected] = ACTIONS(3122), + [anon_sym_module] = ACTIONS(3122), + [anon_sym_any] = ACTIONS(3122), + [anon_sym_number] = ACTIONS(3122), + [anon_sym_boolean] = ACTIONS(3122), + [anon_sym_string] = ACTIONS(3122), + [anon_sym_symbol] = ACTIONS(3122), + [anon_sym_abstract] = ACTIONS(3122), + [anon_sym_interface] = ACTIONS(3122), + [anon_sym_enum] = ACTIONS(3122), }, [1169] = { - [ts_builtin_sym_end] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), + [ts_builtin_sym_end] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_with] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_debugger] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_void] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3124), + [sym_number] = ACTIONS(3124), + [sym_this] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_null] = ACTIONS(3126), + [sym_undefined] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_get] = ACTIONS(3126), + [anon_sym_set] = ACTIONS(3126), + [anon_sym_declare] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_module] = ACTIONS(3126), + [anon_sym_any] = ACTIONS(3126), + [anon_sym_number] = ACTIONS(3126), + [anon_sym_boolean] = ACTIONS(3126), + [anon_sym_string] = ACTIONS(3126), + [anon_sym_symbol] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), }, [1170] = { - [ts_builtin_sym_end] = ACTIONS(3346), - [sym_identifier] = ACTIONS(3348), - [anon_sym_export] = ACTIONS(3348), - [anon_sym_default] = ACTIONS(3348), - [anon_sym_type] = ACTIONS(3348), - [anon_sym_namespace] = ACTIONS(3348), - [anon_sym_LBRACE] = ACTIONS(3346), - [anon_sym_RBRACE] = ACTIONS(3346), - [anon_sym_typeof] = ACTIONS(3348), - [anon_sym_import] = ACTIONS(3348), - [anon_sym_var] = ACTIONS(3348), - [anon_sym_let] = ACTIONS(3348), - [anon_sym_const] = ACTIONS(3348), - [anon_sym_BANG] = ACTIONS(3346), - [anon_sym_else] = ACTIONS(3348), - [anon_sym_if] = ACTIONS(3348), - [anon_sym_switch] = ACTIONS(3348), - [anon_sym_for] = ACTIONS(3348), - [anon_sym_LPAREN] = ACTIONS(3346), - [anon_sym_await] = ACTIONS(3348), - [anon_sym_while] = ACTIONS(3348), - [anon_sym_do] = ACTIONS(3348), - [anon_sym_try] = ACTIONS(3348), - [anon_sym_with] = ACTIONS(3348), - [anon_sym_break] = ACTIONS(3348), - [anon_sym_continue] = ACTIONS(3348), - [anon_sym_debugger] = ACTIONS(3348), - [anon_sym_return] = ACTIONS(3348), - [anon_sym_throw] = ACTIONS(3348), - [anon_sym_SEMI] = ACTIONS(3346), - [anon_sym_case] = ACTIONS(3348), - [anon_sym_yield] = ACTIONS(3348), - [anon_sym_LBRACK] = ACTIONS(3346), - [anon_sym_LT] = ACTIONS(3346), - [anon_sym_SLASH] = ACTIONS(3348), - [anon_sym_class] = ACTIONS(3348), - [anon_sym_async] = ACTIONS(3348), - [anon_sym_function] = ACTIONS(3348), - [anon_sym_new] = ACTIONS(3348), - [anon_sym_PLUS] = ACTIONS(3348), - [anon_sym_DASH] = ACTIONS(3348), - [anon_sym_TILDE] = ACTIONS(3346), - [anon_sym_void] = ACTIONS(3348), - [anon_sym_delete] = ACTIONS(3348), - [anon_sym_PLUS_PLUS] = ACTIONS(3346), - [anon_sym_DASH_DASH] = ACTIONS(3346), - [anon_sym_DQUOTE] = ACTIONS(3346), - [anon_sym_SQUOTE] = ACTIONS(3346), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3346), - [sym_number] = ACTIONS(3346), - [sym_this] = ACTIONS(3348), - [sym_super] = ACTIONS(3348), - [sym_true] = ACTIONS(3348), - [sym_false] = ACTIONS(3348), - [sym_null] = ACTIONS(3348), - [sym_undefined] = ACTIONS(3348), - [anon_sym_AT] = ACTIONS(3346), - [anon_sym_static] = ACTIONS(3348), - [anon_sym_readonly] = ACTIONS(3348), - [anon_sym_get] = ACTIONS(3348), - [anon_sym_set] = ACTIONS(3348), - [anon_sym_declare] = ACTIONS(3348), - [anon_sym_public] = ACTIONS(3348), - [anon_sym_private] = ACTIONS(3348), - [anon_sym_protected] = ACTIONS(3348), - [anon_sym_module] = ACTIONS(3348), - [anon_sym_any] = ACTIONS(3348), - [anon_sym_number] = ACTIONS(3348), - [anon_sym_boolean] = ACTIONS(3348), - [anon_sym_string] = ACTIONS(3348), - [anon_sym_symbol] = ACTIONS(3348), - [anon_sym_abstract] = ACTIONS(3348), - [anon_sym_interface] = ACTIONS(3348), - [anon_sym_enum] = ACTIONS(3348), + [ts_builtin_sym_end] = ACTIONS(3132), + [sym_identifier] = ACTIONS(3134), + [anon_sym_export] = ACTIONS(3134), + [anon_sym_default] = ACTIONS(3134), + [anon_sym_type] = ACTIONS(3134), + [anon_sym_namespace] = ACTIONS(3134), + [anon_sym_LBRACE] = ACTIONS(3132), + [anon_sym_RBRACE] = ACTIONS(3132), + [anon_sym_typeof] = ACTIONS(3134), + [anon_sym_import] = ACTIONS(3134), + [anon_sym_var] = ACTIONS(3134), + [anon_sym_let] = ACTIONS(3134), + [anon_sym_const] = ACTIONS(3134), + [anon_sym_BANG] = ACTIONS(3132), + [anon_sym_else] = ACTIONS(3134), + [anon_sym_if] = ACTIONS(3134), + [anon_sym_switch] = ACTIONS(3134), + [anon_sym_for] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3132), + [anon_sym_await] = ACTIONS(3134), + [anon_sym_while] = ACTIONS(3134), + [anon_sym_do] = ACTIONS(3134), + [anon_sym_try] = ACTIONS(3134), + [anon_sym_with] = ACTIONS(3134), + [anon_sym_break] = ACTIONS(3134), + [anon_sym_continue] = ACTIONS(3134), + [anon_sym_debugger] = ACTIONS(3134), + [anon_sym_return] = ACTIONS(3134), + [anon_sym_throw] = ACTIONS(3134), + [anon_sym_SEMI] = ACTIONS(3132), + [anon_sym_case] = ACTIONS(3134), + [anon_sym_yield] = ACTIONS(3134), + [anon_sym_LBRACK] = ACTIONS(3132), + [anon_sym_LT] = ACTIONS(3132), + [anon_sym_SLASH] = ACTIONS(3134), + [anon_sym_class] = ACTIONS(3134), + [anon_sym_async] = ACTIONS(3134), + [anon_sym_function] = ACTIONS(3134), + [anon_sym_new] = ACTIONS(3134), + [anon_sym_PLUS] = ACTIONS(3134), + [anon_sym_DASH] = ACTIONS(3134), + [anon_sym_TILDE] = ACTIONS(3132), + [anon_sym_void] = ACTIONS(3134), + [anon_sym_delete] = ACTIONS(3134), + [anon_sym_PLUS_PLUS] = ACTIONS(3132), + [anon_sym_DASH_DASH] = ACTIONS(3132), + [anon_sym_DQUOTE] = ACTIONS(3132), + [anon_sym_SQUOTE] = ACTIONS(3132), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3132), + [sym_number] = ACTIONS(3132), + [sym_this] = ACTIONS(3134), + [sym_super] = ACTIONS(3134), + [sym_true] = ACTIONS(3134), + [sym_false] = ACTIONS(3134), + [sym_null] = ACTIONS(3134), + [sym_undefined] = ACTIONS(3134), + [anon_sym_AT] = ACTIONS(3132), + [anon_sym_static] = ACTIONS(3134), + [anon_sym_readonly] = ACTIONS(3134), + [anon_sym_get] = ACTIONS(3134), + [anon_sym_set] = ACTIONS(3134), + [anon_sym_declare] = ACTIONS(3134), + [anon_sym_public] = ACTIONS(3134), + [anon_sym_private] = ACTIONS(3134), + [anon_sym_protected] = ACTIONS(3134), + [anon_sym_module] = ACTIONS(3134), + [anon_sym_any] = ACTIONS(3134), + [anon_sym_number] = ACTIONS(3134), + [anon_sym_boolean] = ACTIONS(3134), + [anon_sym_string] = ACTIONS(3134), + [anon_sym_symbol] = ACTIONS(3134), + [anon_sym_abstract] = ACTIONS(3134), + [anon_sym_interface] = ACTIONS(3134), + [anon_sym_enum] = ACTIONS(3134), }, [1171] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2058), - [anon_sym_export] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_type] = ACTIONS(2058), - [anon_sym_namespace] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym_import] = ACTIONS(2058), - [anon_sym_var] = ACTIONS(2058), - [anon_sym_let] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_else] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_await] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_try] = ACTIONS(2058), - [anon_sym_with] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_debugger] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_throw] = ACTIONS(2058), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_yield] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_class] = ACTIONS(2058), - [anon_sym_async] = ACTIONS(2058), - [anon_sym_function] = ACTIONS(2058), - [anon_sym_new] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_void] = ACTIONS(2058), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_PLUS_PLUS] = ACTIONS(2056), - [anon_sym_DASH_DASH] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2056), - [sym_number] = ACTIONS(2056), - [sym_this] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_undefined] = ACTIONS(2058), - [anon_sym_AT] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_readonly] = ACTIONS(2058), - [anon_sym_get] = ACTIONS(2058), - [anon_sym_set] = ACTIONS(2058), - [anon_sym_declare] = ACTIONS(2058), - [anon_sym_public] = ACTIONS(2058), - [anon_sym_private] = ACTIONS(2058), - [anon_sym_protected] = ACTIONS(2058), - [anon_sym_module] = ACTIONS(2058), - [anon_sym_any] = ACTIONS(2058), - [anon_sym_number] = ACTIONS(2058), - [anon_sym_boolean] = ACTIONS(2058), - [anon_sym_string] = ACTIONS(2058), - [anon_sym_symbol] = ACTIONS(2058), - [anon_sym_abstract] = ACTIONS(2058), - [anon_sym_interface] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(3124), + [sym_identifier] = ACTIONS(3126), + [anon_sym_export] = ACTIONS(3126), + [anon_sym_default] = ACTIONS(3126), + [anon_sym_type] = ACTIONS(3126), + [anon_sym_namespace] = ACTIONS(3126), + [anon_sym_LBRACE] = ACTIONS(3124), + [anon_sym_RBRACE] = ACTIONS(3124), + [anon_sym_typeof] = ACTIONS(3126), + [anon_sym_import] = ACTIONS(3126), + [anon_sym_var] = ACTIONS(3126), + [anon_sym_let] = ACTIONS(3126), + [anon_sym_const] = ACTIONS(3126), + [anon_sym_BANG] = ACTIONS(3124), + [anon_sym_else] = ACTIONS(3126), + [anon_sym_if] = ACTIONS(3126), + [anon_sym_switch] = ACTIONS(3126), + [anon_sym_for] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3124), + [anon_sym_await] = ACTIONS(3126), + [anon_sym_while] = ACTIONS(3126), + [anon_sym_do] = ACTIONS(3126), + [anon_sym_try] = ACTIONS(3126), + [anon_sym_with] = ACTIONS(3126), + [anon_sym_break] = ACTIONS(3126), + [anon_sym_continue] = ACTIONS(3126), + [anon_sym_debugger] = ACTIONS(3126), + [anon_sym_return] = ACTIONS(3126), + [anon_sym_throw] = ACTIONS(3126), + [anon_sym_SEMI] = ACTIONS(3124), + [anon_sym_case] = ACTIONS(3126), + [anon_sym_yield] = ACTIONS(3126), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LT] = ACTIONS(3124), + [anon_sym_SLASH] = ACTIONS(3126), + [anon_sym_class] = ACTIONS(3126), + [anon_sym_async] = ACTIONS(3126), + [anon_sym_function] = ACTIONS(3126), + [anon_sym_new] = ACTIONS(3126), + [anon_sym_PLUS] = ACTIONS(3126), + [anon_sym_DASH] = ACTIONS(3126), + [anon_sym_TILDE] = ACTIONS(3124), + [anon_sym_void] = ACTIONS(3126), + [anon_sym_delete] = ACTIONS(3126), + [anon_sym_PLUS_PLUS] = ACTIONS(3124), + [anon_sym_DASH_DASH] = ACTIONS(3124), + [anon_sym_DQUOTE] = ACTIONS(3124), + [anon_sym_SQUOTE] = ACTIONS(3124), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3124), + [sym_number] = ACTIONS(3124), + [sym_this] = ACTIONS(3126), + [sym_super] = ACTIONS(3126), + [sym_true] = ACTIONS(3126), + [sym_false] = ACTIONS(3126), + [sym_null] = ACTIONS(3126), + [sym_undefined] = ACTIONS(3126), + [anon_sym_AT] = ACTIONS(3124), + [anon_sym_static] = ACTIONS(3126), + [anon_sym_readonly] = ACTIONS(3126), + [anon_sym_get] = ACTIONS(3126), + [anon_sym_set] = ACTIONS(3126), + [anon_sym_declare] = ACTIONS(3126), + [anon_sym_public] = ACTIONS(3126), + [anon_sym_private] = ACTIONS(3126), + [anon_sym_protected] = ACTIONS(3126), + [anon_sym_module] = ACTIONS(3126), + [anon_sym_any] = ACTIONS(3126), + [anon_sym_number] = ACTIONS(3126), + [anon_sym_boolean] = ACTIONS(3126), + [anon_sym_string] = ACTIONS(3126), + [anon_sym_symbol] = ACTIONS(3126), + [anon_sym_abstract] = ACTIONS(3126), + [anon_sym_interface] = ACTIONS(3126), + [anon_sym_enum] = ACTIONS(3126), }, [1172] = { - [ts_builtin_sym_end] = ACTIONS(3350), - [sym_identifier] = ACTIONS(3352), - [anon_sym_export] = ACTIONS(3352), - [anon_sym_default] = ACTIONS(3352), - [anon_sym_type] = ACTIONS(3352), - [anon_sym_namespace] = ACTIONS(3352), - [anon_sym_LBRACE] = ACTIONS(3350), - [anon_sym_RBRACE] = ACTIONS(3350), - [anon_sym_typeof] = ACTIONS(3352), - [anon_sym_import] = ACTIONS(3352), - [anon_sym_var] = ACTIONS(3352), - [anon_sym_let] = ACTIONS(3352), - [anon_sym_const] = ACTIONS(3352), - [anon_sym_BANG] = ACTIONS(3350), - [anon_sym_else] = ACTIONS(3352), - [anon_sym_if] = ACTIONS(3352), - [anon_sym_switch] = ACTIONS(3352), - [anon_sym_for] = ACTIONS(3352), - [anon_sym_LPAREN] = ACTIONS(3350), - [anon_sym_await] = ACTIONS(3352), - [anon_sym_while] = ACTIONS(3352), - [anon_sym_do] = ACTIONS(3352), - [anon_sym_try] = ACTIONS(3352), - [anon_sym_with] = ACTIONS(3352), - [anon_sym_break] = ACTIONS(3352), - [anon_sym_continue] = ACTIONS(3352), - [anon_sym_debugger] = ACTIONS(3352), - [anon_sym_return] = ACTIONS(3352), - [anon_sym_throw] = ACTIONS(3352), - [anon_sym_SEMI] = ACTIONS(3350), - [anon_sym_case] = ACTIONS(3352), - [anon_sym_yield] = ACTIONS(3352), - [anon_sym_LBRACK] = ACTIONS(3350), - [anon_sym_LT] = ACTIONS(3350), - [anon_sym_SLASH] = ACTIONS(3352), - [anon_sym_class] = ACTIONS(3352), - [anon_sym_async] = ACTIONS(3352), - [anon_sym_function] = ACTIONS(3352), - [anon_sym_new] = ACTIONS(3352), - [anon_sym_PLUS] = ACTIONS(3352), - [anon_sym_DASH] = ACTIONS(3352), - [anon_sym_TILDE] = ACTIONS(3350), - [anon_sym_void] = ACTIONS(3352), - [anon_sym_delete] = ACTIONS(3352), - [anon_sym_PLUS_PLUS] = ACTIONS(3350), - [anon_sym_DASH_DASH] = ACTIONS(3350), - [anon_sym_DQUOTE] = ACTIONS(3350), - [anon_sym_SQUOTE] = ACTIONS(3350), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3350), - [sym_number] = ACTIONS(3350), - [sym_this] = ACTIONS(3352), - [sym_super] = ACTIONS(3352), - [sym_true] = ACTIONS(3352), - [sym_false] = ACTIONS(3352), - [sym_null] = ACTIONS(3352), - [sym_undefined] = ACTIONS(3352), - [anon_sym_AT] = ACTIONS(3350), - [anon_sym_static] = ACTIONS(3352), - [anon_sym_readonly] = ACTIONS(3352), - [anon_sym_get] = ACTIONS(3352), - [anon_sym_set] = ACTIONS(3352), - [anon_sym_declare] = ACTIONS(3352), - [anon_sym_public] = ACTIONS(3352), - [anon_sym_private] = ACTIONS(3352), - [anon_sym_protected] = ACTIONS(3352), - [anon_sym_module] = ACTIONS(3352), - [anon_sym_any] = ACTIONS(3352), - [anon_sym_number] = ACTIONS(3352), - [anon_sym_boolean] = ACTIONS(3352), - [anon_sym_string] = ACTIONS(3352), - [anon_sym_symbol] = ACTIONS(3352), - [anon_sym_abstract] = ACTIONS(3352), - [anon_sym_interface] = ACTIONS(3352), - [anon_sym_enum] = ACTIONS(3352), + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [anon_sym_export] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_type] = ACTIONS(1996), + [anon_sym_namespace] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_typeof] = ACTIONS(1996), + [anon_sym_import] = ACTIONS(1996), + [anon_sym_var] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_await] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_with] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_debugger] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_yield] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_SLASH] = ACTIONS(1996), + [anon_sym_class] = ACTIONS(1996), + [anon_sym_async] = ACTIONS(1996), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_new] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_void] = ACTIONS(1996), + [anon_sym_delete] = ACTIONS(1996), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1994), + [sym_number] = ACTIONS(1994), + [sym_this] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [sym_null] = ACTIONS(1996), + [sym_undefined] = ACTIONS(1996), + [anon_sym_AT] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_readonly] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(1996), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_declare] = ACTIONS(1996), + [anon_sym_public] = ACTIONS(1996), + [anon_sym_private] = ACTIONS(1996), + [anon_sym_protected] = ACTIONS(1996), + [anon_sym_module] = ACTIONS(1996), + [anon_sym_any] = ACTIONS(1996), + [anon_sym_number] = ACTIONS(1996), + [anon_sym_boolean] = ACTIONS(1996), + [anon_sym_string] = ACTIONS(1996), + [anon_sym_symbol] = ACTIONS(1996), + [anon_sym_abstract] = ACTIONS(1996), + [anon_sym_interface] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), }, [1173] = { - [ts_builtin_sym_end] = ACTIONS(3354), - [sym_identifier] = ACTIONS(3356), - [anon_sym_export] = ACTIONS(3356), - [anon_sym_default] = ACTIONS(3356), - [anon_sym_type] = ACTIONS(3356), - [anon_sym_namespace] = ACTIONS(3356), - [anon_sym_LBRACE] = ACTIONS(3354), - [anon_sym_RBRACE] = ACTIONS(3354), - [anon_sym_typeof] = ACTIONS(3356), - [anon_sym_import] = ACTIONS(3356), - [anon_sym_var] = ACTIONS(3356), - [anon_sym_let] = ACTIONS(3356), - [anon_sym_const] = ACTIONS(3356), - [anon_sym_BANG] = ACTIONS(3354), - [anon_sym_else] = ACTIONS(3356), - [anon_sym_if] = ACTIONS(3356), - [anon_sym_switch] = ACTIONS(3356), - [anon_sym_for] = ACTIONS(3356), - [anon_sym_LPAREN] = ACTIONS(3354), - [anon_sym_await] = ACTIONS(3356), - [anon_sym_while] = ACTIONS(3356), - [anon_sym_do] = ACTIONS(3356), - [anon_sym_try] = ACTIONS(3356), - [anon_sym_with] = ACTIONS(3356), - [anon_sym_break] = ACTIONS(3356), - [anon_sym_continue] = ACTIONS(3356), - [anon_sym_debugger] = ACTIONS(3356), - [anon_sym_return] = ACTIONS(3356), - [anon_sym_throw] = ACTIONS(3356), - [anon_sym_SEMI] = ACTIONS(3354), - [anon_sym_case] = ACTIONS(3356), - [anon_sym_yield] = ACTIONS(3356), - [anon_sym_LBRACK] = ACTIONS(3354), - [anon_sym_LT] = ACTIONS(3354), - [anon_sym_SLASH] = ACTIONS(3356), - [anon_sym_class] = ACTIONS(3356), - [anon_sym_async] = ACTIONS(3356), - [anon_sym_function] = ACTIONS(3356), - [anon_sym_new] = ACTIONS(3356), - [anon_sym_PLUS] = ACTIONS(3356), - [anon_sym_DASH] = ACTIONS(3356), - [anon_sym_TILDE] = ACTIONS(3354), - [anon_sym_void] = ACTIONS(3356), - [anon_sym_delete] = ACTIONS(3356), - [anon_sym_PLUS_PLUS] = ACTIONS(3354), - [anon_sym_DASH_DASH] = ACTIONS(3354), - [anon_sym_DQUOTE] = ACTIONS(3354), - [anon_sym_SQUOTE] = ACTIONS(3354), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3354), - [sym_number] = ACTIONS(3354), - [sym_this] = ACTIONS(3356), - [sym_super] = ACTIONS(3356), - [sym_true] = ACTIONS(3356), - [sym_false] = ACTIONS(3356), - [sym_null] = ACTIONS(3356), - [sym_undefined] = ACTIONS(3356), - [anon_sym_AT] = ACTIONS(3354), - [anon_sym_static] = ACTIONS(3356), - [anon_sym_readonly] = ACTIONS(3356), - [anon_sym_get] = ACTIONS(3356), - [anon_sym_set] = ACTIONS(3356), - [anon_sym_declare] = ACTIONS(3356), - [anon_sym_public] = ACTIONS(3356), - [anon_sym_private] = ACTIONS(3356), - [anon_sym_protected] = ACTIONS(3356), - [anon_sym_module] = ACTIONS(3356), - [anon_sym_any] = ACTIONS(3356), - [anon_sym_number] = ACTIONS(3356), - [anon_sym_boolean] = ACTIONS(3356), - [anon_sym_string] = ACTIONS(3356), - [anon_sym_symbol] = ACTIONS(3356), - [anon_sym_abstract] = ACTIONS(3356), - [anon_sym_interface] = ACTIONS(3356), - [anon_sym_enum] = ACTIONS(3356), + [ts_builtin_sym_end] = ACTIONS(3360), + [sym_identifier] = ACTIONS(3362), + [anon_sym_export] = ACTIONS(3362), + [anon_sym_default] = ACTIONS(3362), + [anon_sym_type] = ACTIONS(3362), + [anon_sym_namespace] = ACTIONS(3362), + [anon_sym_LBRACE] = ACTIONS(3360), + [anon_sym_RBRACE] = ACTIONS(3360), + [anon_sym_typeof] = ACTIONS(3362), + [anon_sym_import] = ACTIONS(3362), + [anon_sym_var] = ACTIONS(3362), + [anon_sym_let] = ACTIONS(3362), + [anon_sym_const] = ACTIONS(3362), + [anon_sym_BANG] = ACTIONS(3360), + [anon_sym_else] = ACTIONS(3362), + [anon_sym_if] = ACTIONS(3362), + [anon_sym_switch] = ACTIONS(3362), + [anon_sym_for] = ACTIONS(3362), + [anon_sym_LPAREN] = ACTIONS(3360), + [anon_sym_await] = ACTIONS(3362), + [anon_sym_while] = ACTIONS(3362), + [anon_sym_do] = ACTIONS(3362), + [anon_sym_try] = ACTIONS(3362), + [anon_sym_with] = ACTIONS(3362), + [anon_sym_break] = ACTIONS(3362), + [anon_sym_continue] = ACTIONS(3362), + [anon_sym_debugger] = ACTIONS(3362), + [anon_sym_return] = ACTIONS(3362), + [anon_sym_throw] = ACTIONS(3362), + [anon_sym_SEMI] = ACTIONS(3360), + [anon_sym_case] = ACTIONS(3362), + [anon_sym_yield] = ACTIONS(3362), + [anon_sym_LBRACK] = ACTIONS(3360), + [anon_sym_LT] = ACTIONS(3360), + [anon_sym_SLASH] = ACTIONS(3362), + [anon_sym_class] = ACTIONS(3362), + [anon_sym_async] = ACTIONS(3362), + [anon_sym_function] = ACTIONS(3362), + [anon_sym_new] = ACTIONS(3362), + [anon_sym_PLUS] = ACTIONS(3362), + [anon_sym_DASH] = ACTIONS(3362), + [anon_sym_TILDE] = ACTIONS(3360), + [anon_sym_void] = ACTIONS(3362), + [anon_sym_delete] = ACTIONS(3362), + [anon_sym_PLUS_PLUS] = ACTIONS(3360), + [anon_sym_DASH_DASH] = ACTIONS(3360), + [anon_sym_DQUOTE] = ACTIONS(3360), + [anon_sym_SQUOTE] = ACTIONS(3360), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3360), + [sym_number] = ACTIONS(3360), + [sym_this] = ACTIONS(3362), + [sym_super] = ACTIONS(3362), + [sym_true] = ACTIONS(3362), + [sym_false] = ACTIONS(3362), + [sym_null] = ACTIONS(3362), + [sym_undefined] = ACTIONS(3362), + [anon_sym_AT] = ACTIONS(3360), + [anon_sym_static] = ACTIONS(3362), + [anon_sym_readonly] = ACTIONS(3362), + [anon_sym_get] = ACTIONS(3362), + [anon_sym_set] = ACTIONS(3362), + [anon_sym_declare] = ACTIONS(3362), + [anon_sym_public] = ACTIONS(3362), + [anon_sym_private] = ACTIONS(3362), + [anon_sym_protected] = ACTIONS(3362), + [anon_sym_module] = ACTIONS(3362), + [anon_sym_any] = ACTIONS(3362), + [anon_sym_number] = ACTIONS(3362), + [anon_sym_boolean] = ACTIONS(3362), + [anon_sym_string] = ACTIONS(3362), + [anon_sym_symbol] = ACTIONS(3362), + [anon_sym_abstract] = ACTIONS(3362), + [anon_sym_interface] = ACTIONS(3362), + [anon_sym_enum] = ACTIONS(3362), }, [1174] = { - [ts_builtin_sym_end] = ACTIONS(3358), - [sym_identifier] = ACTIONS(3360), - [anon_sym_export] = ACTIONS(3360), - [anon_sym_default] = ACTIONS(3360), - [anon_sym_type] = ACTIONS(3360), - [anon_sym_namespace] = ACTIONS(3360), - [anon_sym_LBRACE] = ACTIONS(3358), - [anon_sym_RBRACE] = ACTIONS(3358), - [anon_sym_typeof] = ACTIONS(3360), - [anon_sym_import] = ACTIONS(3360), - [anon_sym_var] = ACTIONS(3360), - [anon_sym_let] = ACTIONS(3360), - [anon_sym_const] = ACTIONS(3360), - [anon_sym_BANG] = ACTIONS(3358), - [anon_sym_else] = ACTIONS(3360), - [anon_sym_if] = ACTIONS(3360), - [anon_sym_switch] = ACTIONS(3360), - [anon_sym_for] = ACTIONS(3360), - [anon_sym_LPAREN] = ACTIONS(3358), - [anon_sym_await] = ACTIONS(3360), - [anon_sym_while] = ACTIONS(3360), - [anon_sym_do] = ACTIONS(3360), - [anon_sym_try] = ACTIONS(3360), - [anon_sym_with] = ACTIONS(3360), - [anon_sym_break] = ACTIONS(3360), - [anon_sym_continue] = ACTIONS(3360), - [anon_sym_debugger] = ACTIONS(3360), - [anon_sym_return] = ACTIONS(3360), - [anon_sym_throw] = ACTIONS(3360), - [anon_sym_SEMI] = ACTIONS(3358), - [anon_sym_case] = ACTIONS(3360), - [anon_sym_yield] = ACTIONS(3360), - [anon_sym_LBRACK] = ACTIONS(3358), - [anon_sym_LT] = ACTIONS(3358), - [anon_sym_SLASH] = ACTIONS(3360), - [anon_sym_class] = ACTIONS(3360), - [anon_sym_async] = ACTIONS(3360), - [anon_sym_function] = ACTIONS(3360), - [anon_sym_new] = ACTIONS(3360), - [anon_sym_PLUS] = ACTIONS(3360), - [anon_sym_DASH] = ACTIONS(3360), - [anon_sym_TILDE] = ACTIONS(3358), - [anon_sym_void] = ACTIONS(3360), - [anon_sym_delete] = ACTIONS(3360), - [anon_sym_PLUS_PLUS] = ACTIONS(3358), - [anon_sym_DASH_DASH] = ACTIONS(3358), - [anon_sym_DQUOTE] = ACTIONS(3358), - [anon_sym_SQUOTE] = ACTIONS(3358), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3358), - [sym_number] = ACTIONS(3358), - [sym_this] = ACTIONS(3360), - [sym_super] = ACTIONS(3360), - [sym_true] = ACTIONS(3360), - [sym_false] = ACTIONS(3360), - [sym_null] = ACTIONS(3360), - [sym_undefined] = ACTIONS(3360), - [anon_sym_AT] = ACTIONS(3358), - [anon_sym_static] = ACTIONS(3360), - [anon_sym_readonly] = ACTIONS(3360), - [anon_sym_get] = ACTIONS(3360), - [anon_sym_set] = ACTIONS(3360), - [anon_sym_declare] = ACTIONS(3360), - [anon_sym_public] = ACTIONS(3360), - [anon_sym_private] = ACTIONS(3360), - [anon_sym_protected] = ACTIONS(3360), - [anon_sym_module] = ACTIONS(3360), - [anon_sym_any] = ACTIONS(3360), - [anon_sym_number] = ACTIONS(3360), - [anon_sym_boolean] = ACTIONS(3360), - [anon_sym_string] = ACTIONS(3360), - [anon_sym_symbol] = ACTIONS(3360), - [anon_sym_abstract] = ACTIONS(3360), - [anon_sym_interface] = ACTIONS(3360), - [anon_sym_enum] = ACTIONS(3360), + [ts_builtin_sym_end] = ACTIONS(3364), + [sym_identifier] = ACTIONS(3366), + [anon_sym_export] = ACTIONS(3366), + [anon_sym_default] = ACTIONS(3366), + [anon_sym_type] = ACTIONS(3366), + [anon_sym_namespace] = ACTIONS(3366), + [anon_sym_LBRACE] = ACTIONS(3364), + [anon_sym_RBRACE] = ACTIONS(3364), + [anon_sym_typeof] = ACTIONS(3366), + [anon_sym_import] = ACTIONS(3366), + [anon_sym_var] = ACTIONS(3366), + [anon_sym_let] = ACTIONS(3366), + [anon_sym_const] = ACTIONS(3366), + [anon_sym_BANG] = ACTIONS(3364), + [anon_sym_else] = ACTIONS(3366), + [anon_sym_if] = ACTIONS(3366), + [anon_sym_switch] = ACTIONS(3366), + [anon_sym_for] = ACTIONS(3366), + [anon_sym_LPAREN] = ACTIONS(3364), + [anon_sym_await] = ACTIONS(3366), + [anon_sym_while] = ACTIONS(3366), + [anon_sym_do] = ACTIONS(3366), + [anon_sym_try] = ACTIONS(3366), + [anon_sym_with] = ACTIONS(3366), + [anon_sym_break] = ACTIONS(3366), + [anon_sym_continue] = ACTIONS(3366), + [anon_sym_debugger] = ACTIONS(3366), + [anon_sym_return] = ACTIONS(3366), + [anon_sym_throw] = ACTIONS(3366), + [anon_sym_SEMI] = ACTIONS(3364), + [anon_sym_case] = ACTIONS(3366), + [anon_sym_yield] = ACTIONS(3366), + [anon_sym_LBRACK] = ACTIONS(3364), + [anon_sym_LT] = ACTIONS(3364), + [anon_sym_SLASH] = ACTIONS(3366), + [anon_sym_class] = ACTIONS(3366), + [anon_sym_async] = ACTIONS(3366), + [anon_sym_function] = ACTIONS(3366), + [anon_sym_new] = ACTIONS(3366), + [anon_sym_PLUS] = ACTIONS(3366), + [anon_sym_DASH] = ACTIONS(3366), + [anon_sym_TILDE] = ACTIONS(3364), + [anon_sym_void] = ACTIONS(3366), + [anon_sym_delete] = ACTIONS(3366), + [anon_sym_PLUS_PLUS] = ACTIONS(3364), + [anon_sym_DASH_DASH] = ACTIONS(3364), + [anon_sym_DQUOTE] = ACTIONS(3364), + [anon_sym_SQUOTE] = ACTIONS(3364), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3364), + [sym_number] = ACTIONS(3364), + [sym_this] = ACTIONS(3366), + [sym_super] = ACTIONS(3366), + [sym_true] = ACTIONS(3366), + [sym_false] = ACTIONS(3366), + [sym_null] = ACTIONS(3366), + [sym_undefined] = ACTIONS(3366), + [anon_sym_AT] = ACTIONS(3364), + [anon_sym_static] = ACTIONS(3366), + [anon_sym_readonly] = ACTIONS(3366), + [anon_sym_get] = ACTIONS(3366), + [anon_sym_set] = ACTIONS(3366), + [anon_sym_declare] = ACTIONS(3366), + [anon_sym_public] = ACTIONS(3366), + [anon_sym_private] = ACTIONS(3366), + [anon_sym_protected] = ACTIONS(3366), + [anon_sym_module] = ACTIONS(3366), + [anon_sym_any] = ACTIONS(3366), + [anon_sym_number] = ACTIONS(3366), + [anon_sym_boolean] = ACTIONS(3366), + [anon_sym_string] = ACTIONS(3366), + [anon_sym_symbol] = ACTIONS(3366), + [anon_sym_abstract] = ACTIONS(3366), + [anon_sym_interface] = ACTIONS(3366), + [anon_sym_enum] = ACTIONS(3366), }, [1175] = { - [ts_builtin_sym_end] = ACTIONS(3362), - [sym_identifier] = ACTIONS(3364), - [anon_sym_export] = ACTIONS(3364), - [anon_sym_default] = ACTIONS(3364), - [anon_sym_type] = ACTIONS(3364), - [anon_sym_namespace] = ACTIONS(3364), - [anon_sym_LBRACE] = ACTIONS(3362), - [anon_sym_RBRACE] = ACTIONS(3362), - [anon_sym_typeof] = ACTIONS(3364), - [anon_sym_import] = ACTIONS(3364), - [anon_sym_var] = ACTIONS(3364), - [anon_sym_let] = ACTIONS(3364), - [anon_sym_const] = ACTIONS(3364), - [anon_sym_BANG] = ACTIONS(3362), - [anon_sym_else] = ACTIONS(3364), - [anon_sym_if] = ACTIONS(3364), - [anon_sym_switch] = ACTIONS(3364), - [anon_sym_for] = ACTIONS(3364), - [anon_sym_LPAREN] = ACTIONS(3362), - [anon_sym_await] = ACTIONS(3364), - [anon_sym_while] = ACTIONS(3364), - [anon_sym_do] = ACTIONS(3364), - [anon_sym_try] = ACTIONS(3364), - [anon_sym_with] = ACTIONS(3364), - [anon_sym_break] = ACTIONS(3364), - [anon_sym_continue] = ACTIONS(3364), - [anon_sym_debugger] = ACTIONS(3364), - [anon_sym_return] = ACTIONS(3364), - [anon_sym_throw] = ACTIONS(3364), - [anon_sym_SEMI] = ACTIONS(3362), - [anon_sym_case] = ACTIONS(3364), - [anon_sym_yield] = ACTIONS(3364), - [anon_sym_LBRACK] = ACTIONS(3362), - [anon_sym_LT] = ACTIONS(3362), - [anon_sym_SLASH] = ACTIONS(3364), - [anon_sym_class] = ACTIONS(3364), - [anon_sym_async] = ACTIONS(3364), - [anon_sym_function] = ACTIONS(3364), - [anon_sym_new] = ACTIONS(3364), - [anon_sym_PLUS] = ACTIONS(3364), - [anon_sym_DASH] = ACTIONS(3364), - [anon_sym_TILDE] = ACTIONS(3362), - [anon_sym_void] = ACTIONS(3364), - [anon_sym_delete] = ACTIONS(3364), - [anon_sym_PLUS_PLUS] = ACTIONS(3362), - [anon_sym_DASH_DASH] = ACTIONS(3362), - [anon_sym_DQUOTE] = ACTIONS(3362), - [anon_sym_SQUOTE] = ACTIONS(3362), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3362), - [sym_number] = ACTIONS(3362), - [sym_this] = ACTIONS(3364), - [sym_super] = ACTIONS(3364), - [sym_true] = ACTIONS(3364), - [sym_false] = ACTIONS(3364), - [sym_null] = ACTIONS(3364), - [sym_undefined] = ACTIONS(3364), - [anon_sym_AT] = ACTIONS(3362), - [anon_sym_static] = ACTIONS(3364), - [anon_sym_readonly] = ACTIONS(3364), - [anon_sym_get] = ACTIONS(3364), - [anon_sym_set] = ACTIONS(3364), - [anon_sym_declare] = ACTIONS(3364), - [anon_sym_public] = ACTIONS(3364), - [anon_sym_private] = ACTIONS(3364), - [anon_sym_protected] = ACTIONS(3364), - [anon_sym_module] = ACTIONS(3364), - [anon_sym_any] = ACTIONS(3364), - [anon_sym_number] = ACTIONS(3364), - [anon_sym_boolean] = ACTIONS(3364), - [anon_sym_string] = ACTIONS(3364), - [anon_sym_symbol] = ACTIONS(3364), - [anon_sym_abstract] = ACTIONS(3364), - [anon_sym_interface] = ACTIONS(3364), - [anon_sym_enum] = ACTIONS(3364), + [ts_builtin_sym_end] = ACTIONS(3368), + [sym_identifier] = ACTIONS(3370), + [anon_sym_export] = ACTIONS(3370), + [anon_sym_default] = ACTIONS(3370), + [anon_sym_type] = ACTIONS(3370), + [anon_sym_namespace] = ACTIONS(3370), + [anon_sym_LBRACE] = ACTIONS(3368), + [anon_sym_RBRACE] = ACTIONS(3368), + [anon_sym_typeof] = ACTIONS(3370), + [anon_sym_import] = ACTIONS(3370), + [anon_sym_var] = ACTIONS(3370), + [anon_sym_let] = ACTIONS(3370), + [anon_sym_const] = ACTIONS(3370), + [anon_sym_BANG] = ACTIONS(3368), + [anon_sym_else] = ACTIONS(3370), + [anon_sym_if] = ACTIONS(3370), + [anon_sym_switch] = ACTIONS(3370), + [anon_sym_for] = ACTIONS(3370), + [anon_sym_LPAREN] = ACTIONS(3368), + [anon_sym_await] = ACTIONS(3370), + [anon_sym_while] = ACTIONS(3370), + [anon_sym_do] = ACTIONS(3370), + [anon_sym_try] = ACTIONS(3370), + [anon_sym_with] = ACTIONS(3370), + [anon_sym_break] = ACTIONS(3370), + [anon_sym_continue] = ACTIONS(3370), + [anon_sym_debugger] = ACTIONS(3370), + [anon_sym_return] = ACTIONS(3370), + [anon_sym_throw] = ACTIONS(3370), + [anon_sym_SEMI] = ACTIONS(3368), + [anon_sym_case] = ACTIONS(3370), + [anon_sym_yield] = ACTIONS(3370), + [anon_sym_LBRACK] = ACTIONS(3368), + [anon_sym_LT] = ACTIONS(3368), + [anon_sym_SLASH] = ACTIONS(3370), + [anon_sym_class] = ACTIONS(3370), + [anon_sym_async] = ACTIONS(3370), + [anon_sym_function] = ACTIONS(3370), + [anon_sym_new] = ACTIONS(3370), + [anon_sym_PLUS] = ACTIONS(3370), + [anon_sym_DASH] = ACTIONS(3370), + [anon_sym_TILDE] = ACTIONS(3368), + [anon_sym_void] = ACTIONS(3370), + [anon_sym_delete] = ACTIONS(3370), + [anon_sym_PLUS_PLUS] = ACTIONS(3368), + [anon_sym_DASH_DASH] = ACTIONS(3368), + [anon_sym_DQUOTE] = ACTIONS(3368), + [anon_sym_SQUOTE] = ACTIONS(3368), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3368), + [sym_number] = ACTIONS(3368), + [sym_this] = ACTIONS(3370), + [sym_super] = ACTIONS(3370), + [sym_true] = ACTIONS(3370), + [sym_false] = ACTIONS(3370), + [sym_null] = ACTIONS(3370), + [sym_undefined] = ACTIONS(3370), + [anon_sym_AT] = ACTIONS(3368), + [anon_sym_static] = ACTIONS(3370), + [anon_sym_readonly] = ACTIONS(3370), + [anon_sym_get] = ACTIONS(3370), + [anon_sym_set] = ACTIONS(3370), + [anon_sym_declare] = ACTIONS(3370), + [anon_sym_public] = ACTIONS(3370), + [anon_sym_private] = ACTIONS(3370), + [anon_sym_protected] = ACTIONS(3370), + [anon_sym_module] = ACTIONS(3370), + [anon_sym_any] = ACTIONS(3370), + [anon_sym_number] = ACTIONS(3370), + [anon_sym_boolean] = ACTIONS(3370), + [anon_sym_string] = ACTIONS(3370), + [anon_sym_symbol] = ACTIONS(3370), + [anon_sym_abstract] = ACTIONS(3370), + [anon_sym_interface] = ACTIONS(3370), + [anon_sym_enum] = ACTIONS(3370), }, [1176] = { - [ts_builtin_sym_end] = ACTIONS(3338), - [sym_identifier] = ACTIONS(3340), - [anon_sym_export] = ACTIONS(3340), - [anon_sym_default] = ACTIONS(3340), - [anon_sym_type] = ACTIONS(3340), - [anon_sym_namespace] = ACTIONS(3340), - [anon_sym_LBRACE] = ACTIONS(3338), - [anon_sym_RBRACE] = ACTIONS(3338), - [anon_sym_typeof] = ACTIONS(3340), - [anon_sym_import] = ACTIONS(3340), - [anon_sym_var] = ACTIONS(3340), - [anon_sym_let] = ACTIONS(3340), - [anon_sym_const] = ACTIONS(3340), - [anon_sym_BANG] = ACTIONS(3338), - [anon_sym_else] = ACTIONS(3340), - [anon_sym_if] = ACTIONS(3340), - [anon_sym_switch] = ACTIONS(3340), - [anon_sym_for] = ACTIONS(3340), - [anon_sym_LPAREN] = ACTIONS(3338), - [anon_sym_await] = ACTIONS(3340), - [anon_sym_while] = ACTIONS(3340), - [anon_sym_do] = ACTIONS(3340), - [anon_sym_try] = ACTIONS(3340), - [anon_sym_with] = ACTIONS(3340), - [anon_sym_break] = ACTIONS(3340), - [anon_sym_continue] = ACTIONS(3340), - [anon_sym_debugger] = ACTIONS(3340), - [anon_sym_return] = ACTIONS(3340), - [anon_sym_throw] = ACTIONS(3340), - [anon_sym_SEMI] = ACTIONS(3338), - [anon_sym_case] = ACTIONS(3340), - [anon_sym_yield] = ACTIONS(3340), - [anon_sym_LBRACK] = ACTIONS(3338), - [anon_sym_LT] = ACTIONS(3338), - [anon_sym_SLASH] = ACTIONS(3340), - [anon_sym_class] = ACTIONS(3340), - [anon_sym_async] = ACTIONS(3340), - [anon_sym_function] = ACTIONS(3340), - [anon_sym_new] = ACTIONS(3340), - [anon_sym_PLUS] = ACTIONS(3340), - [anon_sym_DASH] = ACTIONS(3340), - [anon_sym_TILDE] = ACTIONS(3338), - [anon_sym_void] = ACTIONS(3340), - [anon_sym_delete] = ACTIONS(3340), - [anon_sym_PLUS_PLUS] = ACTIONS(3338), - [anon_sym_DASH_DASH] = ACTIONS(3338), - [anon_sym_DQUOTE] = ACTIONS(3338), - [anon_sym_SQUOTE] = ACTIONS(3338), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3338), - [sym_number] = ACTIONS(3338), - [sym_this] = ACTIONS(3340), - [sym_super] = ACTIONS(3340), - [sym_true] = ACTIONS(3340), - [sym_false] = ACTIONS(3340), - [sym_null] = ACTIONS(3340), - [sym_undefined] = ACTIONS(3340), - [anon_sym_AT] = ACTIONS(3338), - [anon_sym_static] = ACTIONS(3340), - [anon_sym_readonly] = ACTIONS(3340), - [anon_sym_get] = ACTIONS(3340), - [anon_sym_set] = ACTIONS(3340), - [anon_sym_declare] = ACTIONS(3340), - [anon_sym_public] = ACTIONS(3340), - [anon_sym_private] = ACTIONS(3340), - [anon_sym_protected] = ACTIONS(3340), - [anon_sym_module] = ACTIONS(3340), - [anon_sym_any] = ACTIONS(3340), - [anon_sym_number] = ACTIONS(3340), - [anon_sym_boolean] = ACTIONS(3340), - [anon_sym_string] = ACTIONS(3340), - [anon_sym_symbol] = ACTIONS(3340), - [anon_sym_abstract] = ACTIONS(3340), - [anon_sym_interface] = ACTIONS(3340), - [anon_sym_enum] = ACTIONS(3340), + [ts_builtin_sym_end] = ACTIONS(3372), + [sym_identifier] = ACTIONS(3374), + [anon_sym_export] = ACTIONS(3374), + [anon_sym_default] = ACTIONS(3374), + [anon_sym_type] = ACTIONS(3374), + [anon_sym_namespace] = ACTIONS(3374), + [anon_sym_LBRACE] = ACTIONS(3372), + [anon_sym_RBRACE] = ACTIONS(3372), + [anon_sym_typeof] = ACTIONS(3374), + [anon_sym_import] = ACTIONS(3374), + [anon_sym_var] = ACTIONS(3374), + [anon_sym_let] = ACTIONS(3374), + [anon_sym_const] = ACTIONS(3374), + [anon_sym_BANG] = ACTIONS(3372), + [anon_sym_else] = ACTIONS(3374), + [anon_sym_if] = ACTIONS(3374), + [anon_sym_switch] = ACTIONS(3374), + [anon_sym_for] = ACTIONS(3374), + [anon_sym_LPAREN] = ACTIONS(3372), + [anon_sym_await] = ACTIONS(3374), + [anon_sym_while] = ACTIONS(3374), + [anon_sym_do] = ACTIONS(3374), + [anon_sym_try] = ACTIONS(3374), + [anon_sym_with] = ACTIONS(3374), + [anon_sym_break] = ACTIONS(3374), + [anon_sym_continue] = ACTIONS(3374), + [anon_sym_debugger] = ACTIONS(3374), + [anon_sym_return] = ACTIONS(3374), + [anon_sym_throw] = ACTIONS(3374), + [anon_sym_SEMI] = ACTIONS(3372), + [anon_sym_case] = ACTIONS(3374), + [anon_sym_yield] = ACTIONS(3374), + [anon_sym_LBRACK] = ACTIONS(3372), + [anon_sym_LT] = ACTIONS(3372), + [anon_sym_SLASH] = ACTIONS(3374), + [anon_sym_class] = ACTIONS(3374), + [anon_sym_async] = ACTIONS(3374), + [anon_sym_function] = ACTIONS(3374), + [anon_sym_new] = ACTIONS(3374), + [anon_sym_PLUS] = ACTIONS(3374), + [anon_sym_DASH] = ACTIONS(3374), + [anon_sym_TILDE] = ACTIONS(3372), + [anon_sym_void] = ACTIONS(3374), + [anon_sym_delete] = ACTIONS(3374), + [anon_sym_PLUS_PLUS] = ACTIONS(3372), + [anon_sym_DASH_DASH] = ACTIONS(3372), + [anon_sym_DQUOTE] = ACTIONS(3372), + [anon_sym_SQUOTE] = ACTIONS(3372), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3372), + [sym_number] = ACTIONS(3372), + [sym_this] = ACTIONS(3374), + [sym_super] = ACTIONS(3374), + [sym_true] = ACTIONS(3374), + [sym_false] = ACTIONS(3374), + [sym_null] = ACTIONS(3374), + [sym_undefined] = ACTIONS(3374), + [anon_sym_AT] = ACTIONS(3372), + [anon_sym_static] = ACTIONS(3374), + [anon_sym_readonly] = ACTIONS(3374), + [anon_sym_get] = ACTIONS(3374), + [anon_sym_set] = ACTIONS(3374), + [anon_sym_declare] = ACTIONS(3374), + [anon_sym_public] = ACTIONS(3374), + [anon_sym_private] = ACTIONS(3374), + [anon_sym_protected] = ACTIONS(3374), + [anon_sym_module] = ACTIONS(3374), + [anon_sym_any] = ACTIONS(3374), + [anon_sym_number] = ACTIONS(3374), + [anon_sym_boolean] = ACTIONS(3374), + [anon_sym_string] = ACTIONS(3374), + [anon_sym_symbol] = ACTIONS(3374), + [anon_sym_abstract] = ACTIONS(3374), + [anon_sym_interface] = ACTIONS(3374), + [anon_sym_enum] = ACTIONS(3374), }, [1177] = { - [ts_builtin_sym_end] = ACTIONS(3366), - [sym_identifier] = ACTIONS(3368), - [anon_sym_export] = ACTIONS(3368), - [anon_sym_default] = ACTIONS(3368), - [anon_sym_type] = ACTIONS(3368), - [anon_sym_namespace] = ACTIONS(3368), - [anon_sym_LBRACE] = ACTIONS(3366), - [anon_sym_RBRACE] = ACTIONS(3366), - [anon_sym_typeof] = ACTIONS(3368), - [anon_sym_import] = ACTIONS(3368), - [anon_sym_var] = ACTIONS(3368), - [anon_sym_let] = ACTIONS(3368), - [anon_sym_const] = ACTIONS(3368), - [anon_sym_BANG] = ACTIONS(3366), - [anon_sym_else] = ACTIONS(3368), - [anon_sym_if] = ACTIONS(3368), - [anon_sym_switch] = ACTIONS(3368), - [anon_sym_for] = ACTIONS(3368), - [anon_sym_LPAREN] = ACTIONS(3366), - [anon_sym_await] = ACTIONS(3368), - [anon_sym_while] = ACTIONS(3368), - [anon_sym_do] = ACTIONS(3368), - [anon_sym_try] = ACTIONS(3368), - [anon_sym_with] = ACTIONS(3368), - [anon_sym_break] = ACTIONS(3368), - [anon_sym_continue] = ACTIONS(3368), - [anon_sym_debugger] = ACTIONS(3368), - [anon_sym_return] = ACTIONS(3368), - [anon_sym_throw] = ACTIONS(3368), - [anon_sym_SEMI] = ACTIONS(3366), - [anon_sym_case] = ACTIONS(3368), - [anon_sym_yield] = ACTIONS(3368), - [anon_sym_LBRACK] = ACTIONS(3366), - [anon_sym_LT] = ACTIONS(3366), - [anon_sym_SLASH] = ACTIONS(3368), - [anon_sym_class] = ACTIONS(3368), - [anon_sym_async] = ACTIONS(3368), - [anon_sym_function] = ACTIONS(3368), - [anon_sym_new] = ACTIONS(3368), - [anon_sym_PLUS] = ACTIONS(3368), - [anon_sym_DASH] = ACTIONS(3368), - [anon_sym_TILDE] = ACTIONS(3366), - [anon_sym_void] = ACTIONS(3368), - [anon_sym_delete] = ACTIONS(3368), - [anon_sym_PLUS_PLUS] = ACTIONS(3366), - [anon_sym_DASH_DASH] = ACTIONS(3366), - [anon_sym_DQUOTE] = ACTIONS(3366), - [anon_sym_SQUOTE] = ACTIONS(3366), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3366), - [sym_number] = ACTIONS(3366), - [sym_this] = ACTIONS(3368), - [sym_super] = ACTIONS(3368), - [sym_true] = ACTIONS(3368), - [sym_false] = ACTIONS(3368), - [sym_null] = ACTIONS(3368), - [sym_undefined] = ACTIONS(3368), - [anon_sym_AT] = ACTIONS(3366), - [anon_sym_static] = ACTIONS(3368), - [anon_sym_readonly] = ACTIONS(3368), - [anon_sym_get] = ACTIONS(3368), - [anon_sym_set] = ACTIONS(3368), - [anon_sym_declare] = ACTIONS(3368), - [anon_sym_public] = ACTIONS(3368), - [anon_sym_private] = ACTIONS(3368), - [anon_sym_protected] = ACTIONS(3368), - [anon_sym_module] = ACTIONS(3368), - [anon_sym_any] = ACTIONS(3368), - [anon_sym_number] = ACTIONS(3368), - [anon_sym_boolean] = ACTIONS(3368), - [anon_sym_string] = ACTIONS(3368), - [anon_sym_symbol] = ACTIONS(3368), - [anon_sym_abstract] = ACTIONS(3368), - [anon_sym_interface] = ACTIONS(3368), - [anon_sym_enum] = ACTIONS(3368), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym_identifier] = ACTIONS(3378), + [anon_sym_export] = ACTIONS(3378), + [anon_sym_default] = ACTIONS(3378), + [anon_sym_type] = ACTIONS(3378), + [anon_sym_namespace] = ACTIONS(3378), + [anon_sym_LBRACE] = ACTIONS(3376), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_typeof] = ACTIONS(3378), + [anon_sym_import] = ACTIONS(3378), + [anon_sym_var] = ACTIONS(3378), + [anon_sym_let] = ACTIONS(3378), + [anon_sym_const] = ACTIONS(3378), + [anon_sym_BANG] = ACTIONS(3376), + [anon_sym_else] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3378), + [anon_sym_switch] = ACTIONS(3378), + [anon_sym_for] = ACTIONS(3378), + [anon_sym_LPAREN] = ACTIONS(3376), + [anon_sym_await] = ACTIONS(3378), + [anon_sym_while] = ACTIONS(3378), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_try] = ACTIONS(3378), + [anon_sym_with] = ACTIONS(3378), + [anon_sym_break] = ACTIONS(3378), + [anon_sym_continue] = ACTIONS(3378), + [anon_sym_debugger] = ACTIONS(3378), + [anon_sym_return] = ACTIONS(3378), + [anon_sym_throw] = ACTIONS(3378), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_case] = ACTIONS(3378), + [anon_sym_yield] = ACTIONS(3378), + [anon_sym_LBRACK] = ACTIONS(3376), + [anon_sym_LT] = ACTIONS(3376), + [anon_sym_SLASH] = ACTIONS(3378), + [anon_sym_class] = ACTIONS(3378), + [anon_sym_async] = ACTIONS(3378), + [anon_sym_function] = ACTIONS(3378), + [anon_sym_new] = ACTIONS(3378), + [anon_sym_PLUS] = ACTIONS(3378), + [anon_sym_DASH] = ACTIONS(3378), + [anon_sym_TILDE] = ACTIONS(3376), + [anon_sym_void] = ACTIONS(3378), + [anon_sym_delete] = ACTIONS(3378), + [anon_sym_PLUS_PLUS] = ACTIONS(3376), + [anon_sym_DASH_DASH] = ACTIONS(3376), + [anon_sym_DQUOTE] = ACTIONS(3376), + [anon_sym_SQUOTE] = ACTIONS(3376), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3376), + [sym_number] = ACTIONS(3376), + [sym_this] = ACTIONS(3378), + [sym_super] = ACTIONS(3378), + [sym_true] = ACTIONS(3378), + [sym_false] = ACTIONS(3378), + [sym_null] = ACTIONS(3378), + [sym_undefined] = ACTIONS(3378), + [anon_sym_AT] = ACTIONS(3376), + [anon_sym_static] = ACTIONS(3378), + [anon_sym_readonly] = ACTIONS(3378), + [anon_sym_get] = ACTIONS(3378), + [anon_sym_set] = ACTIONS(3378), + [anon_sym_declare] = ACTIONS(3378), + [anon_sym_public] = ACTIONS(3378), + [anon_sym_private] = ACTIONS(3378), + [anon_sym_protected] = ACTIONS(3378), + [anon_sym_module] = ACTIONS(3378), + [anon_sym_any] = ACTIONS(3378), + [anon_sym_number] = ACTIONS(3378), + [anon_sym_boolean] = ACTIONS(3378), + [anon_sym_string] = ACTIONS(3378), + [anon_sym_symbol] = ACTIONS(3378), + [anon_sym_abstract] = ACTIONS(3378), + [anon_sym_interface] = ACTIONS(3378), + [anon_sym_enum] = ACTIONS(3378), }, [1178] = { - [ts_builtin_sym_end] = ACTIONS(3370), - [sym_identifier] = ACTIONS(3372), - [anon_sym_export] = ACTIONS(3372), - [anon_sym_default] = ACTIONS(3372), - [anon_sym_type] = ACTIONS(3372), - [anon_sym_namespace] = ACTIONS(3372), - [anon_sym_LBRACE] = ACTIONS(3370), - [anon_sym_RBRACE] = ACTIONS(3370), - [anon_sym_typeof] = ACTIONS(3372), - [anon_sym_import] = ACTIONS(3372), - [anon_sym_var] = ACTIONS(3372), - [anon_sym_let] = ACTIONS(3372), - [anon_sym_const] = ACTIONS(3372), - [anon_sym_BANG] = ACTIONS(3370), - [anon_sym_else] = ACTIONS(3372), - [anon_sym_if] = ACTIONS(3372), - [anon_sym_switch] = ACTIONS(3372), - [anon_sym_for] = ACTIONS(3372), - [anon_sym_LPAREN] = ACTIONS(3370), - [anon_sym_await] = ACTIONS(3372), - [anon_sym_while] = ACTIONS(3372), - [anon_sym_do] = ACTIONS(3372), - [anon_sym_try] = ACTIONS(3372), - [anon_sym_with] = ACTIONS(3372), - [anon_sym_break] = ACTIONS(3372), - [anon_sym_continue] = ACTIONS(3372), - [anon_sym_debugger] = ACTIONS(3372), - [anon_sym_return] = ACTIONS(3372), - [anon_sym_throw] = ACTIONS(3372), - [anon_sym_SEMI] = ACTIONS(3370), - [anon_sym_case] = ACTIONS(3372), - [anon_sym_yield] = ACTIONS(3372), - [anon_sym_LBRACK] = ACTIONS(3370), - [anon_sym_LT] = ACTIONS(3370), - [anon_sym_SLASH] = ACTIONS(3372), - [anon_sym_class] = ACTIONS(3372), - [anon_sym_async] = ACTIONS(3372), - [anon_sym_function] = ACTIONS(3372), - [anon_sym_new] = ACTIONS(3372), - [anon_sym_PLUS] = ACTIONS(3372), - [anon_sym_DASH] = ACTIONS(3372), - [anon_sym_TILDE] = ACTIONS(3370), - [anon_sym_void] = ACTIONS(3372), - [anon_sym_delete] = ACTIONS(3372), - [anon_sym_PLUS_PLUS] = ACTIONS(3370), - [anon_sym_DASH_DASH] = ACTIONS(3370), - [anon_sym_DQUOTE] = ACTIONS(3370), - [anon_sym_SQUOTE] = ACTIONS(3370), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3370), - [sym_number] = ACTIONS(3370), - [sym_this] = ACTIONS(3372), - [sym_super] = ACTIONS(3372), - [sym_true] = ACTIONS(3372), - [sym_false] = ACTIONS(3372), - [sym_null] = ACTIONS(3372), - [sym_undefined] = ACTIONS(3372), - [anon_sym_AT] = ACTIONS(3370), - [anon_sym_static] = ACTIONS(3372), - [anon_sym_readonly] = ACTIONS(3372), - [anon_sym_get] = ACTIONS(3372), - [anon_sym_set] = ACTIONS(3372), - [anon_sym_declare] = ACTIONS(3372), - [anon_sym_public] = ACTIONS(3372), - [anon_sym_private] = ACTIONS(3372), - [anon_sym_protected] = ACTIONS(3372), - [anon_sym_module] = ACTIONS(3372), - [anon_sym_any] = ACTIONS(3372), - [anon_sym_number] = ACTIONS(3372), - [anon_sym_boolean] = ACTIONS(3372), - [anon_sym_string] = ACTIONS(3372), - [anon_sym_symbol] = ACTIONS(3372), - [anon_sym_abstract] = ACTIONS(3372), - [anon_sym_interface] = ACTIONS(3372), - [anon_sym_enum] = ACTIONS(3372), + [ts_builtin_sym_end] = ACTIONS(3380), + [sym_identifier] = ACTIONS(3382), + [anon_sym_export] = ACTIONS(3382), + [anon_sym_default] = ACTIONS(3382), + [anon_sym_type] = ACTIONS(3382), + [anon_sym_namespace] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(3380), + [anon_sym_RBRACE] = ACTIONS(3380), + [anon_sym_typeof] = ACTIONS(3382), + [anon_sym_import] = ACTIONS(3382), + [anon_sym_var] = ACTIONS(3382), + [anon_sym_let] = ACTIONS(3382), + [anon_sym_const] = ACTIONS(3382), + [anon_sym_BANG] = ACTIONS(3380), + [anon_sym_else] = ACTIONS(3382), + [anon_sym_if] = ACTIONS(3382), + [anon_sym_switch] = ACTIONS(3382), + [anon_sym_for] = ACTIONS(3382), + [anon_sym_LPAREN] = ACTIONS(3380), + [anon_sym_await] = ACTIONS(3382), + [anon_sym_while] = ACTIONS(3382), + [anon_sym_do] = ACTIONS(3382), + [anon_sym_try] = ACTIONS(3382), + [anon_sym_with] = ACTIONS(3382), + [anon_sym_break] = ACTIONS(3382), + [anon_sym_continue] = ACTIONS(3382), + [anon_sym_debugger] = ACTIONS(3382), + [anon_sym_return] = ACTIONS(3382), + [anon_sym_throw] = ACTIONS(3382), + [anon_sym_SEMI] = ACTIONS(3380), + [anon_sym_case] = ACTIONS(3382), + [anon_sym_yield] = ACTIONS(3382), + [anon_sym_LBRACK] = ACTIONS(3380), + [anon_sym_LT] = ACTIONS(3380), + [anon_sym_SLASH] = ACTIONS(3382), + [anon_sym_class] = ACTIONS(3382), + [anon_sym_async] = ACTIONS(3382), + [anon_sym_function] = ACTIONS(3382), + [anon_sym_new] = ACTIONS(3382), + [anon_sym_PLUS] = ACTIONS(3382), + [anon_sym_DASH] = ACTIONS(3382), + [anon_sym_TILDE] = ACTIONS(3380), + [anon_sym_void] = ACTIONS(3382), + [anon_sym_delete] = ACTIONS(3382), + [anon_sym_PLUS_PLUS] = ACTIONS(3380), + [anon_sym_DASH_DASH] = ACTIONS(3380), + [anon_sym_DQUOTE] = ACTIONS(3380), + [anon_sym_SQUOTE] = ACTIONS(3380), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3380), + [sym_number] = ACTIONS(3380), + [sym_this] = ACTIONS(3382), + [sym_super] = ACTIONS(3382), + [sym_true] = ACTIONS(3382), + [sym_false] = ACTIONS(3382), + [sym_null] = ACTIONS(3382), + [sym_undefined] = ACTIONS(3382), + [anon_sym_AT] = ACTIONS(3380), + [anon_sym_static] = ACTIONS(3382), + [anon_sym_readonly] = ACTIONS(3382), + [anon_sym_get] = ACTIONS(3382), + [anon_sym_set] = ACTIONS(3382), + [anon_sym_declare] = ACTIONS(3382), + [anon_sym_public] = ACTIONS(3382), + [anon_sym_private] = ACTIONS(3382), + [anon_sym_protected] = ACTIONS(3382), + [anon_sym_module] = ACTIONS(3382), + [anon_sym_any] = ACTIONS(3382), + [anon_sym_number] = ACTIONS(3382), + [anon_sym_boolean] = ACTIONS(3382), + [anon_sym_string] = ACTIONS(3382), + [anon_sym_symbol] = ACTIONS(3382), + [anon_sym_abstract] = ACTIONS(3382), + [anon_sym_interface] = ACTIONS(3382), + [anon_sym_enum] = ACTIONS(3382), }, [1179] = { - [ts_builtin_sym_end] = ACTIONS(3222), - [sym_identifier] = ACTIONS(3224), - [anon_sym_export] = ACTIONS(3224), - [anon_sym_default] = ACTIONS(3224), - [anon_sym_type] = ACTIONS(3224), - [anon_sym_namespace] = ACTIONS(3224), - [anon_sym_LBRACE] = ACTIONS(3222), - [anon_sym_RBRACE] = ACTIONS(3222), - [anon_sym_typeof] = ACTIONS(3224), - [anon_sym_import] = ACTIONS(3224), - [anon_sym_var] = ACTIONS(3224), - [anon_sym_let] = ACTIONS(3224), - [anon_sym_const] = ACTIONS(3224), - [anon_sym_BANG] = ACTIONS(3222), - [anon_sym_else] = ACTIONS(3224), - [anon_sym_if] = ACTIONS(3224), - [anon_sym_switch] = ACTIONS(3224), - [anon_sym_for] = ACTIONS(3224), - [anon_sym_LPAREN] = ACTIONS(3222), - [anon_sym_await] = ACTIONS(3224), - [anon_sym_while] = ACTIONS(3224), - [anon_sym_do] = ACTIONS(3224), - [anon_sym_try] = ACTIONS(3224), - [anon_sym_with] = ACTIONS(3224), - [anon_sym_break] = ACTIONS(3224), - [anon_sym_continue] = ACTIONS(3224), - [anon_sym_debugger] = ACTIONS(3224), - [anon_sym_return] = ACTIONS(3224), - [anon_sym_throw] = ACTIONS(3224), - [anon_sym_SEMI] = ACTIONS(3222), - [anon_sym_case] = ACTIONS(3224), - [anon_sym_yield] = ACTIONS(3224), - [anon_sym_LBRACK] = ACTIONS(3222), - [anon_sym_LT] = ACTIONS(3222), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_class] = ACTIONS(3224), - [anon_sym_async] = ACTIONS(3224), - [anon_sym_function] = ACTIONS(3224), - [anon_sym_new] = ACTIONS(3224), - [anon_sym_PLUS] = ACTIONS(3224), - [anon_sym_DASH] = ACTIONS(3224), - [anon_sym_TILDE] = ACTIONS(3222), - [anon_sym_void] = ACTIONS(3224), - [anon_sym_delete] = ACTIONS(3224), - [anon_sym_PLUS_PLUS] = ACTIONS(3222), - [anon_sym_DASH_DASH] = ACTIONS(3222), - [anon_sym_DQUOTE] = ACTIONS(3222), - [anon_sym_SQUOTE] = ACTIONS(3222), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3222), - [sym_number] = ACTIONS(3222), - [sym_this] = ACTIONS(3224), - [sym_super] = ACTIONS(3224), - [sym_true] = ACTIONS(3224), - [sym_false] = ACTIONS(3224), - [sym_null] = ACTIONS(3224), - [sym_undefined] = ACTIONS(3224), - [anon_sym_AT] = ACTIONS(3222), - [anon_sym_static] = ACTIONS(3224), - [anon_sym_readonly] = ACTIONS(3224), - [anon_sym_get] = ACTIONS(3224), - [anon_sym_set] = ACTIONS(3224), - [anon_sym_declare] = ACTIONS(3224), - [anon_sym_public] = ACTIONS(3224), - [anon_sym_private] = ACTIONS(3224), - [anon_sym_protected] = ACTIONS(3224), - [anon_sym_module] = ACTIONS(3224), - [anon_sym_any] = ACTIONS(3224), - [anon_sym_number] = ACTIONS(3224), - [anon_sym_boolean] = ACTIONS(3224), - [anon_sym_string] = ACTIONS(3224), - [anon_sym_symbol] = ACTIONS(3224), - [anon_sym_abstract] = ACTIONS(3224), - [anon_sym_interface] = ACTIONS(3224), - [anon_sym_enum] = ACTIONS(3224), + [ts_builtin_sym_end] = ACTIONS(3384), + [sym_identifier] = ACTIONS(3386), + [anon_sym_export] = ACTIONS(3386), + [anon_sym_default] = ACTIONS(3386), + [anon_sym_type] = ACTIONS(3386), + [anon_sym_namespace] = ACTIONS(3386), + [anon_sym_LBRACE] = ACTIONS(3384), + [anon_sym_RBRACE] = ACTIONS(3384), + [anon_sym_typeof] = ACTIONS(3386), + [anon_sym_import] = ACTIONS(3386), + [anon_sym_var] = ACTIONS(3386), + [anon_sym_let] = ACTIONS(3386), + [anon_sym_const] = ACTIONS(3386), + [anon_sym_BANG] = ACTIONS(3384), + [anon_sym_else] = ACTIONS(3386), + [anon_sym_if] = ACTIONS(3386), + [anon_sym_switch] = ACTIONS(3386), + [anon_sym_for] = ACTIONS(3386), + [anon_sym_LPAREN] = ACTIONS(3384), + [anon_sym_await] = ACTIONS(3386), + [anon_sym_while] = ACTIONS(3386), + [anon_sym_do] = ACTIONS(3386), + [anon_sym_try] = ACTIONS(3386), + [anon_sym_with] = ACTIONS(3386), + [anon_sym_break] = ACTIONS(3386), + [anon_sym_continue] = ACTIONS(3386), + [anon_sym_debugger] = ACTIONS(3386), + [anon_sym_return] = ACTIONS(3386), + [anon_sym_throw] = ACTIONS(3386), + [anon_sym_SEMI] = ACTIONS(3384), + [anon_sym_case] = ACTIONS(3386), + [anon_sym_yield] = ACTIONS(3386), + [anon_sym_LBRACK] = ACTIONS(3384), + [anon_sym_LT] = ACTIONS(3384), + [anon_sym_SLASH] = ACTIONS(3386), + [anon_sym_class] = ACTIONS(3386), + [anon_sym_async] = ACTIONS(3386), + [anon_sym_function] = ACTIONS(3386), + [anon_sym_new] = ACTIONS(3386), + [anon_sym_PLUS] = ACTIONS(3386), + [anon_sym_DASH] = ACTIONS(3386), + [anon_sym_TILDE] = ACTIONS(3384), + [anon_sym_void] = ACTIONS(3386), + [anon_sym_delete] = ACTIONS(3386), + [anon_sym_PLUS_PLUS] = ACTIONS(3384), + [anon_sym_DASH_DASH] = ACTIONS(3384), + [anon_sym_DQUOTE] = ACTIONS(3384), + [anon_sym_SQUOTE] = ACTIONS(3384), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3384), + [sym_number] = ACTIONS(3384), + [sym_this] = ACTIONS(3386), + [sym_super] = ACTIONS(3386), + [sym_true] = ACTIONS(3386), + [sym_false] = ACTIONS(3386), + [sym_null] = ACTIONS(3386), + [sym_undefined] = ACTIONS(3386), + [anon_sym_AT] = ACTIONS(3384), + [anon_sym_static] = ACTIONS(3386), + [anon_sym_readonly] = ACTIONS(3386), + [anon_sym_get] = ACTIONS(3386), + [anon_sym_set] = ACTIONS(3386), + [anon_sym_declare] = ACTIONS(3386), + [anon_sym_public] = ACTIONS(3386), + [anon_sym_private] = ACTIONS(3386), + [anon_sym_protected] = ACTIONS(3386), + [anon_sym_module] = ACTIONS(3386), + [anon_sym_any] = ACTIONS(3386), + [anon_sym_number] = ACTIONS(3386), + [anon_sym_boolean] = ACTIONS(3386), + [anon_sym_string] = ACTIONS(3386), + [anon_sym_symbol] = ACTIONS(3386), + [anon_sym_abstract] = ACTIONS(3386), + [anon_sym_interface] = ACTIONS(3386), + [anon_sym_enum] = ACTIONS(3386), }, [1180] = { - [ts_builtin_sym_end] = ACTIONS(3374), - [sym_identifier] = ACTIONS(3376), - [anon_sym_export] = ACTIONS(3376), - [anon_sym_default] = ACTIONS(3376), - [anon_sym_type] = ACTIONS(3376), - [anon_sym_namespace] = ACTIONS(3376), - [anon_sym_LBRACE] = ACTIONS(3374), - [anon_sym_RBRACE] = ACTIONS(3374), - [anon_sym_typeof] = ACTIONS(3376), - [anon_sym_import] = ACTIONS(3376), - [anon_sym_var] = ACTIONS(3376), - [anon_sym_let] = ACTIONS(3376), - [anon_sym_const] = ACTIONS(3376), - [anon_sym_BANG] = ACTIONS(3374), - [anon_sym_else] = ACTIONS(3376), - [anon_sym_if] = ACTIONS(3376), - [anon_sym_switch] = ACTIONS(3376), - [anon_sym_for] = ACTIONS(3376), - [anon_sym_LPAREN] = ACTIONS(3374), - [anon_sym_await] = ACTIONS(3376), - [anon_sym_while] = ACTIONS(3376), - [anon_sym_do] = ACTIONS(3376), - [anon_sym_try] = ACTIONS(3376), - [anon_sym_with] = ACTIONS(3376), - [anon_sym_break] = ACTIONS(3376), - [anon_sym_continue] = ACTIONS(3376), - [anon_sym_debugger] = ACTIONS(3376), - [anon_sym_return] = ACTIONS(3376), - [anon_sym_throw] = ACTIONS(3376), - [anon_sym_SEMI] = ACTIONS(3374), - [anon_sym_case] = ACTIONS(3376), - [anon_sym_yield] = ACTIONS(3376), - [anon_sym_LBRACK] = ACTIONS(3374), - [anon_sym_LT] = ACTIONS(3374), - [anon_sym_SLASH] = ACTIONS(3376), - [anon_sym_class] = ACTIONS(3376), - [anon_sym_async] = ACTIONS(3376), - [anon_sym_function] = ACTIONS(3376), - [anon_sym_new] = ACTIONS(3376), - [anon_sym_PLUS] = ACTIONS(3376), - [anon_sym_DASH] = ACTIONS(3376), - [anon_sym_TILDE] = ACTIONS(3374), - [anon_sym_void] = ACTIONS(3376), - [anon_sym_delete] = ACTIONS(3376), - [anon_sym_PLUS_PLUS] = ACTIONS(3374), - [anon_sym_DASH_DASH] = ACTIONS(3374), - [anon_sym_DQUOTE] = ACTIONS(3374), - [anon_sym_SQUOTE] = ACTIONS(3374), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3374), - [sym_number] = ACTIONS(3374), - [sym_this] = ACTIONS(3376), - [sym_super] = ACTIONS(3376), - [sym_true] = ACTIONS(3376), - [sym_false] = ACTIONS(3376), - [sym_null] = ACTIONS(3376), - [sym_undefined] = ACTIONS(3376), - [anon_sym_AT] = ACTIONS(3374), - [anon_sym_static] = ACTIONS(3376), - [anon_sym_readonly] = ACTIONS(3376), - [anon_sym_get] = ACTIONS(3376), - [anon_sym_set] = ACTIONS(3376), - [anon_sym_declare] = ACTIONS(3376), - [anon_sym_public] = ACTIONS(3376), - [anon_sym_private] = ACTIONS(3376), - [anon_sym_protected] = ACTIONS(3376), - [anon_sym_module] = ACTIONS(3376), - [anon_sym_any] = ACTIONS(3376), - [anon_sym_number] = ACTIONS(3376), - [anon_sym_boolean] = ACTIONS(3376), - [anon_sym_string] = ACTIONS(3376), - [anon_sym_symbol] = ACTIONS(3376), - [anon_sym_abstract] = ACTIONS(3376), - [anon_sym_interface] = ACTIONS(3376), - [anon_sym_enum] = ACTIONS(3376), + [ts_builtin_sym_end] = ACTIONS(3388), + [sym_identifier] = ACTIONS(3390), + [anon_sym_export] = ACTIONS(3390), + [anon_sym_default] = ACTIONS(3390), + [anon_sym_type] = ACTIONS(3390), + [anon_sym_namespace] = ACTIONS(3390), + [anon_sym_LBRACE] = ACTIONS(3388), + [anon_sym_RBRACE] = ACTIONS(3388), + [anon_sym_typeof] = ACTIONS(3390), + [anon_sym_import] = ACTIONS(3390), + [anon_sym_var] = ACTIONS(3390), + [anon_sym_let] = ACTIONS(3390), + [anon_sym_const] = ACTIONS(3390), + [anon_sym_BANG] = ACTIONS(3388), + [anon_sym_else] = ACTIONS(3390), + [anon_sym_if] = ACTIONS(3390), + [anon_sym_switch] = ACTIONS(3390), + [anon_sym_for] = ACTIONS(3390), + [anon_sym_LPAREN] = ACTIONS(3388), + [anon_sym_await] = ACTIONS(3390), + [anon_sym_while] = ACTIONS(3390), + [anon_sym_do] = ACTIONS(3390), + [anon_sym_try] = ACTIONS(3390), + [anon_sym_with] = ACTIONS(3390), + [anon_sym_break] = ACTIONS(3390), + [anon_sym_continue] = ACTIONS(3390), + [anon_sym_debugger] = ACTIONS(3390), + [anon_sym_return] = ACTIONS(3390), + [anon_sym_throw] = ACTIONS(3390), + [anon_sym_SEMI] = ACTIONS(3388), + [anon_sym_case] = ACTIONS(3390), + [anon_sym_yield] = ACTIONS(3390), + [anon_sym_LBRACK] = ACTIONS(3388), + [anon_sym_LT] = ACTIONS(3388), + [anon_sym_SLASH] = ACTIONS(3390), + [anon_sym_class] = ACTIONS(3390), + [anon_sym_async] = ACTIONS(3390), + [anon_sym_function] = ACTIONS(3390), + [anon_sym_new] = ACTIONS(3390), + [anon_sym_PLUS] = ACTIONS(3390), + [anon_sym_DASH] = ACTIONS(3390), + [anon_sym_TILDE] = ACTIONS(3388), + [anon_sym_void] = ACTIONS(3390), + [anon_sym_delete] = ACTIONS(3390), + [anon_sym_PLUS_PLUS] = ACTIONS(3388), + [anon_sym_DASH_DASH] = ACTIONS(3388), + [anon_sym_DQUOTE] = ACTIONS(3388), + [anon_sym_SQUOTE] = ACTIONS(3388), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3388), + [sym_number] = ACTIONS(3388), + [sym_this] = ACTIONS(3390), + [sym_super] = ACTIONS(3390), + [sym_true] = ACTIONS(3390), + [sym_false] = ACTIONS(3390), + [sym_null] = ACTIONS(3390), + [sym_undefined] = ACTIONS(3390), + [anon_sym_AT] = ACTIONS(3388), + [anon_sym_static] = ACTIONS(3390), + [anon_sym_readonly] = ACTIONS(3390), + [anon_sym_get] = ACTIONS(3390), + [anon_sym_set] = ACTIONS(3390), + [anon_sym_declare] = ACTIONS(3390), + [anon_sym_public] = ACTIONS(3390), + [anon_sym_private] = ACTIONS(3390), + [anon_sym_protected] = ACTIONS(3390), + [anon_sym_module] = ACTIONS(3390), + [anon_sym_any] = ACTIONS(3390), + [anon_sym_number] = ACTIONS(3390), + [anon_sym_boolean] = ACTIONS(3390), + [anon_sym_string] = ACTIONS(3390), + [anon_sym_symbol] = ACTIONS(3390), + [anon_sym_abstract] = ACTIONS(3390), + [anon_sym_interface] = ACTIONS(3390), + [anon_sym_enum] = ACTIONS(3390), }, [1181] = { - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3380), - [anon_sym_export] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_type] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_typeof] = ACTIONS(3380), - [anon_sym_import] = ACTIONS(3380), - [anon_sym_var] = ACTIONS(3380), - [anon_sym_let] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_await] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_with] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_debugger] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_yield] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_SLASH] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_async] = ACTIONS(3380), - [anon_sym_function] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_void] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3378), - [sym_number] = ACTIONS(3378), - [sym_this] = ACTIONS(3380), - [sym_super] = ACTIONS(3380), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [sym_undefined] = ACTIONS(3380), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3380), - [anon_sym_get] = ACTIONS(3380), - [anon_sym_set] = ACTIONS(3380), - [anon_sym_declare] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_module] = ACTIONS(3380), - [anon_sym_any] = ACTIONS(3380), - [anon_sym_number] = ACTIONS(3380), - [anon_sym_boolean] = ACTIONS(3380), - [anon_sym_string] = ACTIONS(3380), - [anon_sym_symbol] = ACTIONS(3380), - [anon_sym_abstract] = ACTIONS(3380), - [anon_sym_interface] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), + [ts_builtin_sym_end] = ACTIONS(3392), + [sym_identifier] = ACTIONS(3394), + [anon_sym_export] = ACTIONS(3394), + [anon_sym_default] = ACTIONS(3394), + [anon_sym_type] = ACTIONS(3394), + [anon_sym_namespace] = ACTIONS(3394), + [anon_sym_LBRACE] = ACTIONS(3392), + [anon_sym_RBRACE] = ACTIONS(3392), + [anon_sym_typeof] = ACTIONS(3394), + [anon_sym_import] = ACTIONS(3394), + [anon_sym_var] = ACTIONS(3394), + [anon_sym_let] = ACTIONS(3394), + [anon_sym_const] = ACTIONS(3394), + [anon_sym_BANG] = ACTIONS(3392), + [anon_sym_else] = ACTIONS(3394), + [anon_sym_if] = ACTIONS(3394), + [anon_sym_switch] = ACTIONS(3394), + [anon_sym_for] = ACTIONS(3394), + [anon_sym_LPAREN] = ACTIONS(3392), + [anon_sym_await] = ACTIONS(3394), + [anon_sym_while] = ACTIONS(3394), + [anon_sym_do] = ACTIONS(3394), + [anon_sym_try] = ACTIONS(3394), + [anon_sym_with] = ACTIONS(3394), + [anon_sym_break] = ACTIONS(3394), + [anon_sym_continue] = ACTIONS(3394), + [anon_sym_debugger] = ACTIONS(3394), + [anon_sym_return] = ACTIONS(3394), + [anon_sym_throw] = ACTIONS(3394), + [anon_sym_SEMI] = ACTIONS(3392), + [anon_sym_case] = ACTIONS(3394), + [anon_sym_yield] = ACTIONS(3394), + [anon_sym_LBRACK] = ACTIONS(3392), + [anon_sym_LT] = ACTIONS(3392), + [anon_sym_SLASH] = ACTIONS(3394), + [anon_sym_class] = ACTIONS(3394), + [anon_sym_async] = ACTIONS(3394), + [anon_sym_function] = ACTIONS(3394), + [anon_sym_new] = ACTIONS(3394), + [anon_sym_PLUS] = ACTIONS(3394), + [anon_sym_DASH] = ACTIONS(3394), + [anon_sym_TILDE] = ACTIONS(3392), + [anon_sym_void] = ACTIONS(3394), + [anon_sym_delete] = ACTIONS(3394), + [anon_sym_PLUS_PLUS] = ACTIONS(3392), + [anon_sym_DASH_DASH] = ACTIONS(3392), + [anon_sym_DQUOTE] = ACTIONS(3392), + [anon_sym_SQUOTE] = ACTIONS(3392), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3392), + [sym_number] = ACTIONS(3392), + [sym_this] = ACTIONS(3394), + [sym_super] = ACTIONS(3394), + [sym_true] = ACTIONS(3394), + [sym_false] = ACTIONS(3394), + [sym_null] = ACTIONS(3394), + [sym_undefined] = ACTIONS(3394), + [anon_sym_AT] = ACTIONS(3392), + [anon_sym_static] = ACTIONS(3394), + [anon_sym_readonly] = ACTIONS(3394), + [anon_sym_get] = ACTIONS(3394), + [anon_sym_set] = ACTIONS(3394), + [anon_sym_declare] = ACTIONS(3394), + [anon_sym_public] = ACTIONS(3394), + [anon_sym_private] = ACTIONS(3394), + [anon_sym_protected] = ACTIONS(3394), + [anon_sym_module] = ACTIONS(3394), + [anon_sym_any] = ACTIONS(3394), + [anon_sym_number] = ACTIONS(3394), + [anon_sym_boolean] = ACTIONS(3394), + [anon_sym_string] = ACTIONS(3394), + [anon_sym_symbol] = ACTIONS(3394), + [anon_sym_abstract] = ACTIONS(3394), + [anon_sym_interface] = ACTIONS(3394), + [anon_sym_enum] = ACTIONS(3394), }, [1182] = { - [ts_builtin_sym_end] = ACTIONS(3382), - [sym_identifier] = ACTIONS(3384), - [anon_sym_export] = ACTIONS(3384), - [anon_sym_default] = ACTIONS(3384), - [anon_sym_type] = ACTIONS(3384), - [anon_sym_namespace] = ACTIONS(3384), - [anon_sym_LBRACE] = ACTIONS(3382), - [anon_sym_RBRACE] = ACTIONS(3382), - [anon_sym_typeof] = ACTIONS(3384), - [anon_sym_import] = ACTIONS(3384), - [anon_sym_var] = ACTIONS(3384), - [anon_sym_let] = ACTIONS(3384), - [anon_sym_const] = ACTIONS(3384), - [anon_sym_BANG] = ACTIONS(3382), - [anon_sym_else] = ACTIONS(3384), - [anon_sym_if] = ACTIONS(3384), - [anon_sym_switch] = ACTIONS(3384), - [anon_sym_for] = ACTIONS(3384), - [anon_sym_LPAREN] = ACTIONS(3382), - [anon_sym_await] = ACTIONS(3384), - [anon_sym_while] = ACTIONS(3384), - [anon_sym_do] = ACTIONS(3384), - [anon_sym_try] = ACTIONS(3384), - [anon_sym_with] = ACTIONS(3384), - [anon_sym_break] = ACTIONS(3384), - [anon_sym_continue] = ACTIONS(3384), - [anon_sym_debugger] = ACTIONS(3384), - [anon_sym_return] = ACTIONS(3384), - [anon_sym_throw] = ACTIONS(3384), - [anon_sym_SEMI] = ACTIONS(3382), - [anon_sym_case] = ACTIONS(3384), - [anon_sym_yield] = ACTIONS(3384), - [anon_sym_LBRACK] = ACTIONS(3382), - [anon_sym_LT] = ACTIONS(3382), - [anon_sym_SLASH] = ACTIONS(3384), - [anon_sym_class] = ACTIONS(3384), - [anon_sym_async] = ACTIONS(3384), - [anon_sym_function] = ACTIONS(3384), - [anon_sym_new] = ACTIONS(3384), - [anon_sym_PLUS] = ACTIONS(3384), - [anon_sym_DASH] = ACTIONS(3384), - [anon_sym_TILDE] = ACTIONS(3382), - [anon_sym_void] = ACTIONS(3384), - [anon_sym_delete] = ACTIONS(3384), - [anon_sym_PLUS_PLUS] = ACTIONS(3382), - [anon_sym_DASH_DASH] = ACTIONS(3382), - [anon_sym_DQUOTE] = ACTIONS(3382), - [anon_sym_SQUOTE] = ACTIONS(3382), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3382), - [sym_number] = ACTIONS(3382), - [sym_this] = ACTIONS(3384), - [sym_super] = ACTIONS(3384), - [sym_true] = ACTIONS(3384), - [sym_false] = ACTIONS(3384), - [sym_null] = ACTIONS(3384), - [sym_undefined] = ACTIONS(3384), - [anon_sym_AT] = ACTIONS(3382), - [anon_sym_static] = ACTIONS(3384), - [anon_sym_readonly] = ACTIONS(3384), - [anon_sym_get] = ACTIONS(3384), - [anon_sym_set] = ACTIONS(3384), - [anon_sym_declare] = ACTIONS(3384), - [anon_sym_public] = ACTIONS(3384), - [anon_sym_private] = ACTIONS(3384), - [anon_sym_protected] = ACTIONS(3384), - [anon_sym_module] = ACTIONS(3384), - [anon_sym_any] = ACTIONS(3384), - [anon_sym_number] = ACTIONS(3384), - [anon_sym_boolean] = ACTIONS(3384), - [anon_sym_string] = ACTIONS(3384), - [anon_sym_symbol] = ACTIONS(3384), - [anon_sym_abstract] = ACTIONS(3384), - [anon_sym_interface] = ACTIONS(3384), - [anon_sym_enum] = ACTIONS(3384), + [ts_builtin_sym_end] = ACTIONS(3396), + [sym_identifier] = ACTIONS(3398), + [anon_sym_export] = ACTIONS(3398), + [anon_sym_default] = ACTIONS(3398), + [anon_sym_type] = ACTIONS(3398), + [anon_sym_namespace] = ACTIONS(3398), + [anon_sym_LBRACE] = ACTIONS(3396), + [anon_sym_RBRACE] = ACTIONS(3396), + [anon_sym_typeof] = ACTIONS(3398), + [anon_sym_import] = ACTIONS(3398), + [anon_sym_var] = ACTIONS(3398), + [anon_sym_let] = ACTIONS(3398), + [anon_sym_const] = ACTIONS(3398), + [anon_sym_BANG] = ACTIONS(3396), + [anon_sym_else] = ACTIONS(3398), + [anon_sym_if] = ACTIONS(3398), + [anon_sym_switch] = ACTIONS(3398), + [anon_sym_for] = ACTIONS(3398), + [anon_sym_LPAREN] = ACTIONS(3396), + [anon_sym_await] = ACTIONS(3398), + [anon_sym_while] = ACTIONS(3398), + [anon_sym_do] = ACTIONS(3398), + [anon_sym_try] = ACTIONS(3398), + [anon_sym_with] = ACTIONS(3398), + [anon_sym_break] = ACTIONS(3398), + [anon_sym_continue] = ACTIONS(3398), + [anon_sym_debugger] = ACTIONS(3398), + [anon_sym_return] = ACTIONS(3398), + [anon_sym_throw] = ACTIONS(3398), + [anon_sym_SEMI] = ACTIONS(3396), + [anon_sym_case] = ACTIONS(3398), + [anon_sym_yield] = ACTIONS(3398), + [anon_sym_LBRACK] = ACTIONS(3396), + [anon_sym_LT] = ACTIONS(3396), + [anon_sym_SLASH] = ACTIONS(3398), + [anon_sym_class] = ACTIONS(3398), + [anon_sym_async] = ACTIONS(3398), + [anon_sym_function] = ACTIONS(3398), + [anon_sym_new] = ACTIONS(3398), + [anon_sym_PLUS] = ACTIONS(3398), + [anon_sym_DASH] = ACTIONS(3398), + [anon_sym_TILDE] = ACTIONS(3396), + [anon_sym_void] = ACTIONS(3398), + [anon_sym_delete] = ACTIONS(3398), + [anon_sym_PLUS_PLUS] = ACTIONS(3396), + [anon_sym_DASH_DASH] = ACTIONS(3396), + [anon_sym_DQUOTE] = ACTIONS(3396), + [anon_sym_SQUOTE] = ACTIONS(3396), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3396), + [sym_number] = ACTIONS(3396), + [sym_this] = ACTIONS(3398), + [sym_super] = ACTIONS(3398), + [sym_true] = ACTIONS(3398), + [sym_false] = ACTIONS(3398), + [sym_null] = ACTIONS(3398), + [sym_undefined] = ACTIONS(3398), + [anon_sym_AT] = ACTIONS(3396), + [anon_sym_static] = ACTIONS(3398), + [anon_sym_readonly] = ACTIONS(3398), + [anon_sym_get] = ACTIONS(3398), + [anon_sym_set] = ACTIONS(3398), + [anon_sym_declare] = ACTIONS(3398), + [anon_sym_public] = ACTIONS(3398), + [anon_sym_private] = ACTIONS(3398), + [anon_sym_protected] = ACTIONS(3398), + [anon_sym_module] = ACTIONS(3398), + [anon_sym_any] = ACTIONS(3398), + [anon_sym_number] = ACTIONS(3398), + [anon_sym_boolean] = ACTIONS(3398), + [anon_sym_string] = ACTIONS(3398), + [anon_sym_symbol] = ACTIONS(3398), + [anon_sym_abstract] = ACTIONS(3398), + [anon_sym_interface] = ACTIONS(3398), + [anon_sym_enum] = ACTIONS(3398), }, [1183] = { - [ts_builtin_sym_end] = ACTIONS(3386), - [sym_identifier] = ACTIONS(3388), - [anon_sym_export] = ACTIONS(3388), - [anon_sym_default] = ACTIONS(3388), - [anon_sym_type] = ACTIONS(3388), - [anon_sym_namespace] = ACTIONS(3388), - [anon_sym_LBRACE] = ACTIONS(3386), - [anon_sym_RBRACE] = ACTIONS(3386), - [anon_sym_typeof] = ACTIONS(3388), - [anon_sym_import] = ACTIONS(3388), - [anon_sym_var] = ACTIONS(3388), - [anon_sym_let] = ACTIONS(3388), - [anon_sym_const] = ACTIONS(3388), - [anon_sym_BANG] = ACTIONS(3386), - [anon_sym_else] = ACTIONS(3388), - [anon_sym_if] = ACTIONS(3388), - [anon_sym_switch] = ACTIONS(3388), - [anon_sym_for] = ACTIONS(3388), - [anon_sym_LPAREN] = ACTIONS(3386), - [anon_sym_await] = ACTIONS(3388), - [anon_sym_while] = ACTIONS(3388), - [anon_sym_do] = ACTIONS(3388), - [anon_sym_try] = ACTIONS(3388), - [anon_sym_with] = ACTIONS(3388), - [anon_sym_break] = ACTIONS(3388), - [anon_sym_continue] = ACTIONS(3388), - [anon_sym_debugger] = ACTIONS(3388), - [anon_sym_return] = ACTIONS(3388), - [anon_sym_throw] = ACTIONS(3388), - [anon_sym_SEMI] = ACTIONS(3386), - [anon_sym_case] = ACTIONS(3388), - [anon_sym_yield] = ACTIONS(3388), - [anon_sym_LBRACK] = ACTIONS(3386), - [anon_sym_LT] = ACTIONS(3386), - [anon_sym_SLASH] = ACTIONS(3388), - [anon_sym_class] = ACTIONS(3388), - [anon_sym_async] = ACTIONS(3388), - [anon_sym_function] = ACTIONS(3388), - [anon_sym_new] = ACTIONS(3388), - [anon_sym_PLUS] = ACTIONS(3388), - [anon_sym_DASH] = ACTIONS(3388), - [anon_sym_TILDE] = ACTIONS(3386), - [anon_sym_void] = ACTIONS(3388), - [anon_sym_delete] = ACTIONS(3388), - [anon_sym_PLUS_PLUS] = ACTIONS(3386), - [anon_sym_DASH_DASH] = ACTIONS(3386), - [anon_sym_DQUOTE] = ACTIONS(3386), - [anon_sym_SQUOTE] = ACTIONS(3386), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3386), - [sym_number] = ACTIONS(3386), - [sym_this] = ACTIONS(3388), - [sym_super] = ACTIONS(3388), - [sym_true] = ACTIONS(3388), - [sym_false] = ACTIONS(3388), - [sym_null] = ACTIONS(3388), - [sym_undefined] = ACTIONS(3388), - [anon_sym_AT] = ACTIONS(3386), - [anon_sym_static] = ACTIONS(3388), - [anon_sym_readonly] = ACTIONS(3388), - [anon_sym_get] = ACTIONS(3388), - [anon_sym_set] = ACTIONS(3388), - [anon_sym_declare] = ACTIONS(3388), - [anon_sym_public] = ACTIONS(3388), - [anon_sym_private] = ACTIONS(3388), - [anon_sym_protected] = ACTIONS(3388), - [anon_sym_module] = ACTIONS(3388), - [anon_sym_any] = ACTIONS(3388), - [anon_sym_number] = ACTIONS(3388), - [anon_sym_boolean] = ACTIONS(3388), - [anon_sym_string] = ACTIONS(3388), - [anon_sym_symbol] = ACTIONS(3388), - [anon_sym_abstract] = ACTIONS(3388), - [anon_sym_interface] = ACTIONS(3388), - [anon_sym_enum] = ACTIONS(3388), + [ts_builtin_sym_end] = ACTIONS(3400), + [sym_identifier] = ACTIONS(3402), + [anon_sym_export] = ACTIONS(3402), + [anon_sym_default] = ACTIONS(3402), + [anon_sym_type] = ACTIONS(3402), + [anon_sym_namespace] = ACTIONS(3402), + [anon_sym_LBRACE] = ACTIONS(3400), + [anon_sym_RBRACE] = ACTIONS(3400), + [anon_sym_typeof] = ACTIONS(3402), + [anon_sym_import] = ACTIONS(3402), + [anon_sym_var] = ACTIONS(3402), + [anon_sym_let] = ACTIONS(3402), + [anon_sym_const] = ACTIONS(3402), + [anon_sym_BANG] = ACTIONS(3400), + [anon_sym_else] = ACTIONS(3402), + [anon_sym_if] = ACTIONS(3402), + [anon_sym_switch] = ACTIONS(3402), + [anon_sym_for] = ACTIONS(3402), + [anon_sym_LPAREN] = ACTIONS(3400), + [anon_sym_await] = ACTIONS(3402), + [anon_sym_while] = ACTIONS(3402), + [anon_sym_do] = ACTIONS(3402), + [anon_sym_try] = ACTIONS(3402), + [anon_sym_with] = ACTIONS(3402), + [anon_sym_break] = ACTIONS(3402), + [anon_sym_continue] = ACTIONS(3402), + [anon_sym_debugger] = ACTIONS(3402), + [anon_sym_return] = ACTIONS(3402), + [anon_sym_throw] = ACTIONS(3402), + [anon_sym_SEMI] = ACTIONS(3400), + [anon_sym_case] = ACTIONS(3402), + [anon_sym_yield] = ACTIONS(3402), + [anon_sym_LBRACK] = ACTIONS(3400), + [anon_sym_LT] = ACTIONS(3400), + [anon_sym_SLASH] = ACTIONS(3402), + [anon_sym_class] = ACTIONS(3402), + [anon_sym_async] = ACTIONS(3402), + [anon_sym_function] = ACTIONS(3402), + [anon_sym_new] = ACTIONS(3402), + [anon_sym_PLUS] = ACTIONS(3402), + [anon_sym_DASH] = ACTIONS(3402), + [anon_sym_TILDE] = ACTIONS(3400), + [anon_sym_void] = ACTIONS(3402), + [anon_sym_delete] = ACTIONS(3402), + [anon_sym_PLUS_PLUS] = ACTIONS(3400), + [anon_sym_DASH_DASH] = ACTIONS(3400), + [anon_sym_DQUOTE] = ACTIONS(3400), + [anon_sym_SQUOTE] = ACTIONS(3400), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3400), + [sym_number] = ACTIONS(3400), + [sym_this] = ACTIONS(3402), + [sym_super] = ACTIONS(3402), + [sym_true] = ACTIONS(3402), + [sym_false] = ACTIONS(3402), + [sym_null] = ACTIONS(3402), + [sym_undefined] = ACTIONS(3402), + [anon_sym_AT] = ACTIONS(3400), + [anon_sym_static] = ACTIONS(3402), + [anon_sym_readonly] = ACTIONS(3402), + [anon_sym_get] = ACTIONS(3402), + [anon_sym_set] = ACTIONS(3402), + [anon_sym_declare] = ACTIONS(3402), + [anon_sym_public] = ACTIONS(3402), + [anon_sym_private] = ACTIONS(3402), + [anon_sym_protected] = ACTIONS(3402), + [anon_sym_module] = ACTIONS(3402), + [anon_sym_any] = ACTIONS(3402), + [anon_sym_number] = ACTIONS(3402), + [anon_sym_boolean] = ACTIONS(3402), + [anon_sym_string] = ACTIONS(3402), + [anon_sym_symbol] = ACTIONS(3402), + [anon_sym_abstract] = ACTIONS(3402), + [anon_sym_interface] = ACTIONS(3402), + [anon_sym_enum] = ACTIONS(3402), }, [1184] = { - [ts_builtin_sym_end] = ACTIONS(3390), - [sym_identifier] = ACTIONS(3392), - [anon_sym_export] = ACTIONS(3392), - [anon_sym_default] = ACTIONS(3392), - [anon_sym_type] = ACTIONS(3392), - [anon_sym_namespace] = ACTIONS(3392), - [anon_sym_LBRACE] = ACTIONS(3390), - [anon_sym_RBRACE] = ACTIONS(3390), - [anon_sym_typeof] = ACTIONS(3392), - [anon_sym_import] = ACTIONS(3392), - [anon_sym_var] = ACTIONS(3392), - [anon_sym_let] = ACTIONS(3392), - [anon_sym_const] = ACTIONS(3392), - [anon_sym_BANG] = ACTIONS(3390), - [anon_sym_else] = ACTIONS(3392), - [anon_sym_if] = ACTIONS(3392), - [anon_sym_switch] = ACTIONS(3392), - [anon_sym_for] = ACTIONS(3392), - [anon_sym_LPAREN] = ACTIONS(3390), - [anon_sym_await] = ACTIONS(3392), - [anon_sym_while] = ACTIONS(3392), - [anon_sym_do] = ACTIONS(3392), - [anon_sym_try] = ACTIONS(3392), - [anon_sym_with] = ACTIONS(3392), - [anon_sym_break] = ACTIONS(3392), - [anon_sym_continue] = ACTIONS(3392), - [anon_sym_debugger] = ACTIONS(3392), - [anon_sym_return] = ACTIONS(3392), - [anon_sym_throw] = ACTIONS(3392), - [anon_sym_SEMI] = ACTIONS(3390), - [anon_sym_case] = ACTIONS(3392), - [anon_sym_yield] = ACTIONS(3392), - [anon_sym_LBRACK] = ACTIONS(3390), - [anon_sym_LT] = ACTIONS(3390), - [anon_sym_SLASH] = ACTIONS(3392), - [anon_sym_class] = ACTIONS(3392), - [anon_sym_async] = ACTIONS(3392), - [anon_sym_function] = ACTIONS(3392), - [anon_sym_new] = ACTIONS(3392), - [anon_sym_PLUS] = ACTIONS(3392), - [anon_sym_DASH] = ACTIONS(3392), - [anon_sym_TILDE] = ACTIONS(3390), - [anon_sym_void] = ACTIONS(3392), - [anon_sym_delete] = ACTIONS(3392), - [anon_sym_PLUS_PLUS] = ACTIONS(3390), - [anon_sym_DASH_DASH] = ACTIONS(3390), - [anon_sym_DQUOTE] = ACTIONS(3390), - [anon_sym_SQUOTE] = ACTIONS(3390), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3390), - [sym_number] = ACTIONS(3390), - [sym_this] = ACTIONS(3392), - [sym_super] = ACTIONS(3392), - [sym_true] = ACTIONS(3392), - [sym_false] = ACTIONS(3392), - [sym_null] = ACTIONS(3392), - [sym_undefined] = ACTIONS(3392), - [anon_sym_AT] = ACTIONS(3390), - [anon_sym_static] = ACTIONS(3392), - [anon_sym_readonly] = ACTIONS(3392), - [anon_sym_get] = ACTIONS(3392), - [anon_sym_set] = ACTIONS(3392), - [anon_sym_declare] = ACTIONS(3392), - [anon_sym_public] = ACTIONS(3392), - [anon_sym_private] = ACTIONS(3392), - [anon_sym_protected] = ACTIONS(3392), - [anon_sym_module] = ACTIONS(3392), - [anon_sym_any] = ACTIONS(3392), - [anon_sym_number] = ACTIONS(3392), - [anon_sym_boolean] = ACTIONS(3392), - [anon_sym_string] = ACTIONS(3392), - [anon_sym_symbol] = ACTIONS(3392), - [anon_sym_abstract] = ACTIONS(3392), - [anon_sym_interface] = ACTIONS(3392), - [anon_sym_enum] = ACTIONS(3392), + [ts_builtin_sym_end] = ACTIONS(3404), + [sym_identifier] = ACTIONS(3406), + [anon_sym_export] = ACTIONS(3406), + [anon_sym_default] = ACTIONS(3406), + [anon_sym_type] = ACTIONS(3406), + [anon_sym_namespace] = ACTIONS(3406), + [anon_sym_LBRACE] = ACTIONS(3404), + [anon_sym_RBRACE] = ACTIONS(3404), + [anon_sym_typeof] = ACTIONS(3406), + [anon_sym_import] = ACTIONS(3406), + [anon_sym_var] = ACTIONS(3406), + [anon_sym_let] = ACTIONS(3406), + [anon_sym_const] = ACTIONS(3406), + [anon_sym_BANG] = ACTIONS(3404), + [anon_sym_else] = ACTIONS(3406), + [anon_sym_if] = ACTIONS(3406), + [anon_sym_switch] = ACTIONS(3406), + [anon_sym_for] = ACTIONS(3406), + [anon_sym_LPAREN] = ACTIONS(3404), + [anon_sym_await] = ACTIONS(3406), + [anon_sym_while] = ACTIONS(3406), + [anon_sym_do] = ACTIONS(3406), + [anon_sym_try] = ACTIONS(3406), + [anon_sym_with] = ACTIONS(3406), + [anon_sym_break] = ACTIONS(3406), + [anon_sym_continue] = ACTIONS(3406), + [anon_sym_debugger] = ACTIONS(3406), + [anon_sym_return] = ACTIONS(3406), + [anon_sym_throw] = ACTIONS(3406), + [anon_sym_SEMI] = ACTIONS(3404), + [anon_sym_case] = ACTIONS(3406), + [anon_sym_yield] = ACTIONS(3406), + [anon_sym_LBRACK] = ACTIONS(3404), + [anon_sym_LT] = ACTIONS(3404), + [anon_sym_SLASH] = ACTIONS(3406), + [anon_sym_class] = ACTIONS(3406), + [anon_sym_async] = ACTIONS(3406), + [anon_sym_function] = ACTIONS(3406), + [anon_sym_new] = ACTIONS(3406), + [anon_sym_PLUS] = ACTIONS(3406), + [anon_sym_DASH] = ACTIONS(3406), + [anon_sym_TILDE] = ACTIONS(3404), + [anon_sym_void] = ACTIONS(3406), + [anon_sym_delete] = ACTIONS(3406), + [anon_sym_PLUS_PLUS] = ACTIONS(3404), + [anon_sym_DASH_DASH] = ACTIONS(3404), + [anon_sym_DQUOTE] = ACTIONS(3404), + [anon_sym_SQUOTE] = ACTIONS(3404), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3404), + [sym_number] = ACTIONS(3404), + [sym_this] = ACTIONS(3406), + [sym_super] = ACTIONS(3406), + [sym_true] = ACTIONS(3406), + [sym_false] = ACTIONS(3406), + [sym_null] = ACTIONS(3406), + [sym_undefined] = ACTIONS(3406), + [anon_sym_AT] = ACTIONS(3404), + [anon_sym_static] = ACTIONS(3406), + [anon_sym_readonly] = ACTIONS(3406), + [anon_sym_get] = ACTIONS(3406), + [anon_sym_set] = ACTIONS(3406), + [anon_sym_declare] = ACTIONS(3406), + [anon_sym_public] = ACTIONS(3406), + [anon_sym_private] = ACTIONS(3406), + [anon_sym_protected] = ACTIONS(3406), + [anon_sym_module] = ACTIONS(3406), + [anon_sym_any] = ACTIONS(3406), + [anon_sym_number] = ACTIONS(3406), + [anon_sym_boolean] = ACTIONS(3406), + [anon_sym_string] = ACTIONS(3406), + [anon_sym_symbol] = ACTIONS(3406), + [anon_sym_abstract] = ACTIONS(3406), + [anon_sym_interface] = ACTIONS(3406), + [anon_sym_enum] = ACTIONS(3406), }, [1185] = { - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3396), - [anon_sym_export] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_type] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_typeof] = ACTIONS(3396), - [anon_sym_import] = ACTIONS(3396), - [anon_sym_var] = ACTIONS(3396), - [anon_sym_let] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_else] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_await] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_with] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_debugger] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_yield] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_SLASH] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_async] = ACTIONS(3396), - [anon_sym_function] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_void] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3394), - [sym_number] = ACTIONS(3394), - [sym_this] = ACTIONS(3396), - [sym_super] = ACTIONS(3396), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [sym_null] = ACTIONS(3396), - [sym_undefined] = ACTIONS(3396), - [anon_sym_AT] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_readonly] = ACTIONS(3396), - [anon_sym_get] = ACTIONS(3396), - [anon_sym_set] = ACTIONS(3396), - [anon_sym_declare] = ACTIONS(3396), - [anon_sym_public] = ACTIONS(3396), - [anon_sym_private] = ACTIONS(3396), - [anon_sym_protected] = ACTIONS(3396), - [anon_sym_module] = ACTIONS(3396), - [anon_sym_any] = ACTIONS(3396), - [anon_sym_number] = ACTIONS(3396), - [anon_sym_boolean] = ACTIONS(3396), - [anon_sym_string] = ACTIONS(3396), - [anon_sym_symbol] = ACTIONS(3396), - [anon_sym_abstract] = ACTIONS(3396), - [anon_sym_interface] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), + [ts_builtin_sym_end] = ACTIONS(3408), + [sym_identifier] = ACTIONS(3410), + [anon_sym_export] = ACTIONS(3410), + [anon_sym_default] = ACTIONS(3410), + [anon_sym_type] = ACTIONS(3410), + [anon_sym_namespace] = ACTIONS(3410), + [anon_sym_LBRACE] = ACTIONS(3408), + [anon_sym_RBRACE] = ACTIONS(3408), + [anon_sym_typeof] = ACTIONS(3410), + [anon_sym_import] = ACTIONS(3410), + [anon_sym_var] = ACTIONS(3410), + [anon_sym_let] = ACTIONS(3410), + [anon_sym_const] = ACTIONS(3410), + [anon_sym_BANG] = ACTIONS(3408), + [anon_sym_else] = ACTIONS(3410), + [anon_sym_if] = ACTIONS(3410), + [anon_sym_switch] = ACTIONS(3410), + [anon_sym_for] = ACTIONS(3410), + [anon_sym_LPAREN] = ACTIONS(3408), + [anon_sym_await] = ACTIONS(3410), + [anon_sym_while] = ACTIONS(3410), + [anon_sym_do] = ACTIONS(3410), + [anon_sym_try] = ACTIONS(3410), + [anon_sym_with] = ACTIONS(3410), + [anon_sym_break] = ACTIONS(3410), + [anon_sym_continue] = ACTIONS(3410), + [anon_sym_debugger] = ACTIONS(3410), + [anon_sym_return] = ACTIONS(3410), + [anon_sym_throw] = ACTIONS(3410), + [anon_sym_SEMI] = ACTIONS(3408), + [anon_sym_case] = ACTIONS(3410), + [anon_sym_yield] = ACTIONS(3410), + [anon_sym_LBRACK] = ACTIONS(3408), + [anon_sym_LT] = ACTIONS(3408), + [anon_sym_SLASH] = ACTIONS(3410), + [anon_sym_class] = ACTIONS(3410), + [anon_sym_async] = ACTIONS(3410), + [anon_sym_function] = ACTIONS(3410), + [anon_sym_new] = ACTIONS(3410), + [anon_sym_PLUS] = ACTIONS(3410), + [anon_sym_DASH] = ACTIONS(3410), + [anon_sym_TILDE] = ACTIONS(3408), + [anon_sym_void] = ACTIONS(3410), + [anon_sym_delete] = ACTIONS(3410), + [anon_sym_PLUS_PLUS] = ACTIONS(3408), + [anon_sym_DASH_DASH] = ACTIONS(3408), + [anon_sym_DQUOTE] = ACTIONS(3408), + [anon_sym_SQUOTE] = ACTIONS(3408), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3408), + [sym_number] = ACTIONS(3408), + [sym_this] = ACTIONS(3410), + [sym_super] = ACTIONS(3410), + [sym_true] = ACTIONS(3410), + [sym_false] = ACTIONS(3410), + [sym_null] = ACTIONS(3410), + [sym_undefined] = ACTIONS(3410), + [anon_sym_AT] = ACTIONS(3408), + [anon_sym_static] = ACTIONS(3410), + [anon_sym_readonly] = ACTIONS(3410), + [anon_sym_get] = ACTIONS(3410), + [anon_sym_set] = ACTIONS(3410), + [anon_sym_declare] = ACTIONS(3410), + [anon_sym_public] = ACTIONS(3410), + [anon_sym_private] = ACTIONS(3410), + [anon_sym_protected] = ACTIONS(3410), + [anon_sym_module] = ACTIONS(3410), + [anon_sym_any] = ACTIONS(3410), + [anon_sym_number] = ACTIONS(3410), + [anon_sym_boolean] = ACTIONS(3410), + [anon_sym_string] = ACTIONS(3410), + [anon_sym_symbol] = ACTIONS(3410), + [anon_sym_abstract] = ACTIONS(3410), + [anon_sym_interface] = ACTIONS(3410), + [anon_sym_enum] = ACTIONS(3410), }, [1186] = { - [ts_builtin_sym_end] = ACTIONS(3398), - [sym_identifier] = ACTIONS(3400), - [anon_sym_export] = ACTIONS(3400), - [anon_sym_default] = ACTIONS(3400), - [anon_sym_type] = ACTIONS(3400), - [anon_sym_namespace] = ACTIONS(3400), - [anon_sym_LBRACE] = ACTIONS(3398), - [anon_sym_RBRACE] = ACTIONS(3398), - [anon_sym_typeof] = ACTIONS(3400), - [anon_sym_import] = ACTIONS(3400), - [anon_sym_var] = ACTIONS(3400), - [anon_sym_let] = ACTIONS(3400), - [anon_sym_const] = ACTIONS(3400), - [anon_sym_BANG] = ACTIONS(3398), - [anon_sym_else] = ACTIONS(3400), - [anon_sym_if] = ACTIONS(3400), - [anon_sym_switch] = ACTIONS(3400), - [anon_sym_for] = ACTIONS(3400), - [anon_sym_LPAREN] = ACTIONS(3398), - [anon_sym_await] = ACTIONS(3400), - [anon_sym_while] = ACTIONS(3400), - [anon_sym_do] = ACTIONS(3400), - [anon_sym_try] = ACTIONS(3400), - [anon_sym_with] = ACTIONS(3400), - [anon_sym_break] = ACTIONS(3400), - [anon_sym_continue] = ACTIONS(3400), - [anon_sym_debugger] = ACTIONS(3400), - [anon_sym_return] = ACTIONS(3400), - [anon_sym_throw] = ACTIONS(3400), - [anon_sym_SEMI] = ACTIONS(3398), - [anon_sym_case] = ACTIONS(3400), - [anon_sym_yield] = ACTIONS(3400), - [anon_sym_LBRACK] = ACTIONS(3398), - [anon_sym_LT] = ACTIONS(3398), - [anon_sym_SLASH] = ACTIONS(3400), - [anon_sym_class] = ACTIONS(3400), - [anon_sym_async] = ACTIONS(3400), - [anon_sym_function] = ACTIONS(3400), - [anon_sym_new] = ACTIONS(3400), - [anon_sym_PLUS] = ACTIONS(3400), - [anon_sym_DASH] = ACTIONS(3400), - [anon_sym_TILDE] = ACTIONS(3398), - [anon_sym_void] = ACTIONS(3400), - [anon_sym_delete] = ACTIONS(3400), - [anon_sym_PLUS_PLUS] = ACTIONS(3398), - [anon_sym_DASH_DASH] = ACTIONS(3398), - [anon_sym_DQUOTE] = ACTIONS(3398), - [anon_sym_SQUOTE] = ACTIONS(3398), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3398), - [sym_number] = ACTIONS(3398), - [sym_this] = ACTIONS(3400), - [sym_super] = ACTIONS(3400), - [sym_true] = ACTIONS(3400), - [sym_false] = ACTIONS(3400), - [sym_null] = ACTIONS(3400), - [sym_undefined] = ACTIONS(3400), - [anon_sym_AT] = ACTIONS(3398), - [anon_sym_static] = ACTIONS(3400), - [anon_sym_readonly] = ACTIONS(3400), - [anon_sym_get] = ACTIONS(3400), - [anon_sym_set] = ACTIONS(3400), - [anon_sym_declare] = ACTIONS(3400), - [anon_sym_public] = ACTIONS(3400), - [anon_sym_private] = ACTIONS(3400), - [anon_sym_protected] = ACTIONS(3400), - [anon_sym_module] = ACTIONS(3400), - [anon_sym_any] = ACTIONS(3400), - [anon_sym_number] = ACTIONS(3400), - [anon_sym_boolean] = ACTIONS(3400), - [anon_sym_string] = ACTIONS(3400), - [anon_sym_symbol] = ACTIONS(3400), - [anon_sym_abstract] = ACTIONS(3400), - [anon_sym_interface] = ACTIONS(3400), - [anon_sym_enum] = ACTIONS(3400), + [ts_builtin_sym_end] = ACTIONS(3412), + [sym_identifier] = ACTIONS(3414), + [anon_sym_export] = ACTIONS(3414), + [anon_sym_default] = ACTIONS(3414), + [anon_sym_type] = ACTIONS(3414), + [anon_sym_namespace] = ACTIONS(3414), + [anon_sym_LBRACE] = ACTIONS(3412), + [anon_sym_RBRACE] = ACTIONS(3412), + [anon_sym_typeof] = ACTIONS(3414), + [anon_sym_import] = ACTIONS(3414), + [anon_sym_var] = ACTIONS(3414), + [anon_sym_let] = ACTIONS(3414), + [anon_sym_const] = ACTIONS(3414), + [anon_sym_BANG] = ACTIONS(3412), + [anon_sym_else] = ACTIONS(3414), + [anon_sym_if] = ACTIONS(3414), + [anon_sym_switch] = ACTIONS(3414), + [anon_sym_for] = ACTIONS(3414), + [anon_sym_LPAREN] = ACTIONS(3412), + [anon_sym_await] = ACTIONS(3414), + [anon_sym_while] = ACTIONS(3414), + [anon_sym_do] = ACTIONS(3414), + [anon_sym_try] = ACTIONS(3414), + [anon_sym_with] = ACTIONS(3414), + [anon_sym_break] = ACTIONS(3414), + [anon_sym_continue] = ACTIONS(3414), + [anon_sym_debugger] = ACTIONS(3414), + [anon_sym_return] = ACTIONS(3414), + [anon_sym_throw] = ACTIONS(3414), + [anon_sym_SEMI] = ACTIONS(3412), + [anon_sym_case] = ACTIONS(3414), + [anon_sym_yield] = ACTIONS(3414), + [anon_sym_LBRACK] = ACTIONS(3412), + [anon_sym_LT] = ACTIONS(3412), + [anon_sym_SLASH] = ACTIONS(3414), + [anon_sym_class] = ACTIONS(3414), + [anon_sym_async] = ACTIONS(3414), + [anon_sym_function] = ACTIONS(3414), + [anon_sym_new] = ACTIONS(3414), + [anon_sym_PLUS] = ACTIONS(3414), + [anon_sym_DASH] = ACTIONS(3414), + [anon_sym_TILDE] = ACTIONS(3412), + [anon_sym_void] = ACTIONS(3414), + [anon_sym_delete] = ACTIONS(3414), + [anon_sym_PLUS_PLUS] = ACTIONS(3412), + [anon_sym_DASH_DASH] = ACTIONS(3412), + [anon_sym_DQUOTE] = ACTIONS(3412), + [anon_sym_SQUOTE] = ACTIONS(3412), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3412), + [sym_number] = ACTIONS(3412), + [sym_this] = ACTIONS(3414), + [sym_super] = ACTIONS(3414), + [sym_true] = ACTIONS(3414), + [sym_false] = ACTIONS(3414), + [sym_null] = ACTIONS(3414), + [sym_undefined] = ACTIONS(3414), + [anon_sym_AT] = ACTIONS(3412), + [anon_sym_static] = ACTIONS(3414), + [anon_sym_readonly] = ACTIONS(3414), + [anon_sym_get] = ACTIONS(3414), + [anon_sym_set] = ACTIONS(3414), + [anon_sym_declare] = ACTIONS(3414), + [anon_sym_public] = ACTIONS(3414), + [anon_sym_private] = ACTIONS(3414), + [anon_sym_protected] = ACTIONS(3414), + [anon_sym_module] = ACTIONS(3414), + [anon_sym_any] = ACTIONS(3414), + [anon_sym_number] = ACTIONS(3414), + [anon_sym_boolean] = ACTIONS(3414), + [anon_sym_string] = ACTIONS(3414), + [anon_sym_symbol] = ACTIONS(3414), + [anon_sym_abstract] = ACTIONS(3414), + [anon_sym_interface] = ACTIONS(3414), + [anon_sym_enum] = ACTIONS(3414), }, [1187] = { - [ts_builtin_sym_end] = ACTIONS(3394), - [sym_identifier] = ACTIONS(3396), - [anon_sym_export] = ACTIONS(3396), - [anon_sym_default] = ACTIONS(3396), - [anon_sym_type] = ACTIONS(3396), - [anon_sym_namespace] = ACTIONS(3396), - [anon_sym_LBRACE] = ACTIONS(3394), - [anon_sym_RBRACE] = ACTIONS(3394), - [anon_sym_typeof] = ACTIONS(3396), - [anon_sym_import] = ACTIONS(3396), - [anon_sym_var] = ACTIONS(3396), - [anon_sym_let] = ACTIONS(3396), - [anon_sym_const] = ACTIONS(3396), - [anon_sym_BANG] = ACTIONS(3394), - [anon_sym_else] = ACTIONS(3396), - [anon_sym_if] = ACTIONS(3396), - [anon_sym_switch] = ACTIONS(3396), - [anon_sym_for] = ACTIONS(3396), - [anon_sym_LPAREN] = ACTIONS(3394), - [anon_sym_await] = ACTIONS(3396), - [anon_sym_while] = ACTIONS(3396), - [anon_sym_do] = ACTIONS(3396), - [anon_sym_try] = ACTIONS(3396), - [anon_sym_with] = ACTIONS(3396), - [anon_sym_break] = ACTIONS(3396), - [anon_sym_continue] = ACTIONS(3396), - [anon_sym_debugger] = ACTIONS(3396), - [anon_sym_return] = ACTIONS(3396), - [anon_sym_throw] = ACTIONS(3396), - [anon_sym_SEMI] = ACTIONS(3394), - [anon_sym_case] = ACTIONS(3396), - [anon_sym_yield] = ACTIONS(3396), - [anon_sym_LBRACK] = ACTIONS(3394), - [anon_sym_LT] = ACTIONS(3394), - [anon_sym_SLASH] = ACTIONS(3396), - [anon_sym_class] = ACTIONS(3396), - [anon_sym_async] = ACTIONS(3396), - [anon_sym_function] = ACTIONS(3396), - [anon_sym_new] = ACTIONS(3396), - [anon_sym_PLUS] = ACTIONS(3396), - [anon_sym_DASH] = ACTIONS(3396), - [anon_sym_TILDE] = ACTIONS(3394), - [anon_sym_void] = ACTIONS(3396), - [anon_sym_delete] = ACTIONS(3396), - [anon_sym_PLUS_PLUS] = ACTIONS(3394), - [anon_sym_DASH_DASH] = ACTIONS(3394), - [anon_sym_DQUOTE] = ACTIONS(3394), - [anon_sym_SQUOTE] = ACTIONS(3394), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3394), - [sym_number] = ACTIONS(3394), - [sym_this] = ACTIONS(3396), - [sym_super] = ACTIONS(3396), - [sym_true] = ACTIONS(3396), - [sym_false] = ACTIONS(3396), - [sym_null] = ACTIONS(3396), - [sym_undefined] = ACTIONS(3396), - [anon_sym_AT] = ACTIONS(3394), - [anon_sym_static] = ACTIONS(3396), - [anon_sym_readonly] = ACTIONS(3396), - [anon_sym_get] = ACTIONS(3396), - [anon_sym_set] = ACTIONS(3396), - [anon_sym_declare] = ACTIONS(3396), - [anon_sym_public] = ACTIONS(3396), - [anon_sym_private] = ACTIONS(3396), - [anon_sym_protected] = ACTIONS(3396), - [anon_sym_module] = ACTIONS(3396), - [anon_sym_any] = ACTIONS(3396), - [anon_sym_number] = ACTIONS(3396), - [anon_sym_boolean] = ACTIONS(3396), - [anon_sym_string] = ACTIONS(3396), - [anon_sym_symbol] = ACTIONS(3396), - [anon_sym_abstract] = ACTIONS(3396), - [anon_sym_interface] = ACTIONS(3396), - [anon_sym_enum] = ACTIONS(3396), + [ts_builtin_sym_end] = ACTIONS(3416), + [sym_identifier] = ACTIONS(3418), + [anon_sym_export] = ACTIONS(3418), + [anon_sym_default] = ACTIONS(3418), + [anon_sym_type] = ACTIONS(3418), + [anon_sym_namespace] = ACTIONS(3418), + [anon_sym_LBRACE] = ACTIONS(3416), + [anon_sym_RBRACE] = ACTIONS(3416), + [anon_sym_typeof] = ACTIONS(3418), + [anon_sym_import] = ACTIONS(3418), + [anon_sym_var] = ACTIONS(3418), + [anon_sym_let] = ACTIONS(3418), + [anon_sym_const] = ACTIONS(3418), + [anon_sym_BANG] = ACTIONS(3416), + [anon_sym_else] = ACTIONS(3418), + [anon_sym_if] = ACTIONS(3418), + [anon_sym_switch] = ACTIONS(3418), + [anon_sym_for] = ACTIONS(3418), + [anon_sym_LPAREN] = ACTIONS(3416), + [anon_sym_await] = ACTIONS(3418), + [anon_sym_while] = ACTIONS(3418), + [anon_sym_do] = ACTIONS(3418), + [anon_sym_try] = ACTIONS(3418), + [anon_sym_with] = ACTIONS(3418), + [anon_sym_break] = ACTIONS(3418), + [anon_sym_continue] = ACTIONS(3418), + [anon_sym_debugger] = ACTIONS(3418), + [anon_sym_return] = ACTIONS(3418), + [anon_sym_throw] = ACTIONS(3418), + [anon_sym_SEMI] = ACTIONS(3416), + [anon_sym_case] = ACTIONS(3418), + [anon_sym_yield] = ACTIONS(3418), + [anon_sym_LBRACK] = ACTIONS(3416), + [anon_sym_LT] = ACTIONS(3416), + [anon_sym_SLASH] = ACTIONS(3418), + [anon_sym_class] = ACTIONS(3418), + [anon_sym_async] = ACTIONS(3418), + [anon_sym_function] = ACTIONS(3418), + [anon_sym_new] = ACTIONS(3418), + [anon_sym_PLUS] = ACTIONS(3418), + [anon_sym_DASH] = ACTIONS(3418), + [anon_sym_TILDE] = ACTIONS(3416), + [anon_sym_void] = ACTIONS(3418), + [anon_sym_delete] = ACTIONS(3418), + [anon_sym_PLUS_PLUS] = ACTIONS(3416), + [anon_sym_DASH_DASH] = ACTIONS(3416), + [anon_sym_DQUOTE] = ACTIONS(3416), + [anon_sym_SQUOTE] = ACTIONS(3416), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3416), + [sym_number] = ACTIONS(3416), + [sym_this] = ACTIONS(3418), + [sym_super] = ACTIONS(3418), + [sym_true] = ACTIONS(3418), + [sym_false] = ACTIONS(3418), + [sym_null] = ACTIONS(3418), + [sym_undefined] = ACTIONS(3418), + [anon_sym_AT] = ACTIONS(3416), + [anon_sym_static] = ACTIONS(3418), + [anon_sym_readonly] = ACTIONS(3418), + [anon_sym_get] = ACTIONS(3418), + [anon_sym_set] = ACTIONS(3418), + [anon_sym_declare] = ACTIONS(3418), + [anon_sym_public] = ACTIONS(3418), + [anon_sym_private] = ACTIONS(3418), + [anon_sym_protected] = ACTIONS(3418), + [anon_sym_module] = ACTIONS(3418), + [anon_sym_any] = ACTIONS(3418), + [anon_sym_number] = ACTIONS(3418), + [anon_sym_boolean] = ACTIONS(3418), + [anon_sym_string] = ACTIONS(3418), + [anon_sym_symbol] = ACTIONS(3418), + [anon_sym_abstract] = ACTIONS(3418), + [anon_sym_interface] = ACTIONS(3418), + [anon_sym_enum] = ACTIONS(3418), }, [1188] = { - [ts_builtin_sym_end] = ACTIONS(3402), - [sym_identifier] = ACTIONS(3404), - [anon_sym_export] = ACTIONS(3404), - [anon_sym_default] = ACTIONS(3404), - [anon_sym_type] = ACTIONS(3404), - [anon_sym_namespace] = ACTIONS(3404), - [anon_sym_LBRACE] = ACTIONS(3402), - [anon_sym_RBRACE] = ACTIONS(3402), - [anon_sym_typeof] = ACTIONS(3404), - [anon_sym_import] = ACTIONS(3404), - [anon_sym_var] = ACTIONS(3404), - [anon_sym_let] = ACTIONS(3404), - [anon_sym_const] = ACTIONS(3404), - [anon_sym_BANG] = ACTIONS(3402), - [anon_sym_else] = ACTIONS(3404), - [anon_sym_if] = ACTIONS(3404), - [anon_sym_switch] = ACTIONS(3404), - [anon_sym_for] = ACTIONS(3404), - [anon_sym_LPAREN] = ACTIONS(3402), - [anon_sym_await] = ACTIONS(3404), - [anon_sym_while] = ACTIONS(3404), - [anon_sym_do] = ACTIONS(3404), - [anon_sym_try] = ACTIONS(3404), - [anon_sym_with] = ACTIONS(3404), - [anon_sym_break] = ACTIONS(3404), - [anon_sym_continue] = ACTIONS(3404), - [anon_sym_debugger] = ACTIONS(3404), - [anon_sym_return] = ACTIONS(3404), - [anon_sym_throw] = ACTIONS(3404), - [anon_sym_SEMI] = ACTIONS(3402), - [anon_sym_case] = ACTIONS(3404), - [anon_sym_yield] = ACTIONS(3404), - [anon_sym_LBRACK] = ACTIONS(3402), - [anon_sym_LT] = ACTIONS(3402), - [anon_sym_SLASH] = ACTIONS(3404), - [anon_sym_class] = ACTIONS(3404), - [anon_sym_async] = ACTIONS(3404), - [anon_sym_function] = ACTIONS(3404), - [anon_sym_new] = ACTIONS(3404), - [anon_sym_PLUS] = ACTIONS(3404), - [anon_sym_DASH] = ACTIONS(3404), - [anon_sym_TILDE] = ACTIONS(3402), - [anon_sym_void] = ACTIONS(3404), - [anon_sym_delete] = ACTIONS(3404), - [anon_sym_PLUS_PLUS] = ACTIONS(3402), - [anon_sym_DASH_DASH] = ACTIONS(3402), - [anon_sym_DQUOTE] = ACTIONS(3402), - [anon_sym_SQUOTE] = ACTIONS(3402), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3402), - [sym_number] = ACTIONS(3402), - [sym_this] = ACTIONS(3404), - [sym_super] = ACTIONS(3404), - [sym_true] = ACTIONS(3404), - [sym_false] = ACTIONS(3404), - [sym_null] = ACTIONS(3404), - [sym_undefined] = ACTIONS(3404), - [anon_sym_AT] = ACTIONS(3402), - [anon_sym_static] = ACTIONS(3404), - [anon_sym_readonly] = ACTIONS(3404), - [anon_sym_get] = ACTIONS(3404), - [anon_sym_set] = ACTIONS(3404), - [anon_sym_declare] = ACTIONS(3404), - [anon_sym_public] = ACTIONS(3404), - [anon_sym_private] = ACTIONS(3404), - [anon_sym_protected] = ACTIONS(3404), - [anon_sym_module] = ACTIONS(3404), - [anon_sym_any] = ACTIONS(3404), - [anon_sym_number] = ACTIONS(3404), - [anon_sym_boolean] = ACTIONS(3404), - [anon_sym_string] = ACTIONS(3404), - [anon_sym_symbol] = ACTIONS(3404), - [anon_sym_abstract] = ACTIONS(3404), - [anon_sym_interface] = ACTIONS(3404), - [anon_sym_enum] = ACTIONS(3404), + [ts_builtin_sym_end] = ACTIONS(3420), + [sym_identifier] = ACTIONS(3422), + [anon_sym_export] = ACTIONS(3422), + [anon_sym_default] = ACTIONS(3422), + [anon_sym_type] = ACTIONS(3422), + [anon_sym_namespace] = ACTIONS(3422), + [anon_sym_LBRACE] = ACTIONS(3420), + [anon_sym_RBRACE] = ACTIONS(3420), + [anon_sym_typeof] = ACTIONS(3422), + [anon_sym_import] = ACTIONS(3422), + [anon_sym_var] = ACTIONS(3422), + [anon_sym_let] = ACTIONS(3422), + [anon_sym_const] = ACTIONS(3422), + [anon_sym_BANG] = ACTIONS(3420), + [anon_sym_else] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3422), + [anon_sym_switch] = ACTIONS(3422), + [anon_sym_for] = ACTIONS(3422), + [anon_sym_LPAREN] = ACTIONS(3420), + [anon_sym_await] = ACTIONS(3422), + [anon_sym_while] = ACTIONS(3422), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_try] = ACTIONS(3422), + [anon_sym_with] = ACTIONS(3422), + [anon_sym_break] = ACTIONS(3422), + [anon_sym_continue] = ACTIONS(3422), + [anon_sym_debugger] = ACTIONS(3422), + [anon_sym_return] = ACTIONS(3422), + [anon_sym_throw] = ACTIONS(3422), + [anon_sym_SEMI] = ACTIONS(3420), + [anon_sym_case] = ACTIONS(3422), + [anon_sym_yield] = ACTIONS(3422), + [anon_sym_LBRACK] = ACTIONS(3420), + [anon_sym_LT] = ACTIONS(3420), + [anon_sym_SLASH] = ACTIONS(3422), + [anon_sym_class] = ACTIONS(3422), + [anon_sym_async] = ACTIONS(3422), + [anon_sym_function] = ACTIONS(3422), + [anon_sym_new] = ACTIONS(3422), + [anon_sym_PLUS] = ACTIONS(3422), + [anon_sym_DASH] = ACTIONS(3422), + [anon_sym_TILDE] = ACTIONS(3420), + [anon_sym_void] = ACTIONS(3422), + [anon_sym_delete] = ACTIONS(3422), + [anon_sym_PLUS_PLUS] = ACTIONS(3420), + [anon_sym_DASH_DASH] = ACTIONS(3420), + [anon_sym_DQUOTE] = ACTIONS(3420), + [anon_sym_SQUOTE] = ACTIONS(3420), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3420), + [sym_number] = ACTIONS(3420), + [sym_this] = ACTIONS(3422), + [sym_super] = ACTIONS(3422), + [sym_true] = ACTIONS(3422), + [sym_false] = ACTIONS(3422), + [sym_null] = ACTIONS(3422), + [sym_undefined] = ACTIONS(3422), + [anon_sym_AT] = ACTIONS(3420), + [anon_sym_static] = ACTIONS(3422), + [anon_sym_readonly] = ACTIONS(3422), + [anon_sym_get] = ACTIONS(3422), + [anon_sym_set] = ACTIONS(3422), + [anon_sym_declare] = ACTIONS(3422), + [anon_sym_public] = ACTIONS(3422), + [anon_sym_private] = ACTIONS(3422), + [anon_sym_protected] = ACTIONS(3422), + [anon_sym_module] = ACTIONS(3422), + [anon_sym_any] = ACTIONS(3422), + [anon_sym_number] = ACTIONS(3422), + [anon_sym_boolean] = ACTIONS(3422), + [anon_sym_string] = ACTIONS(3422), + [anon_sym_symbol] = ACTIONS(3422), + [anon_sym_abstract] = ACTIONS(3422), + [anon_sym_interface] = ACTIONS(3422), + [anon_sym_enum] = ACTIONS(3422), }, [1189] = { - [ts_builtin_sym_end] = ACTIONS(3406), - [sym_identifier] = ACTIONS(3408), - [anon_sym_export] = ACTIONS(3408), - [anon_sym_default] = ACTIONS(3408), - [anon_sym_type] = ACTIONS(3408), - [anon_sym_namespace] = ACTIONS(3408), - [anon_sym_LBRACE] = ACTIONS(3406), - [anon_sym_RBRACE] = ACTIONS(3406), - [anon_sym_typeof] = ACTIONS(3408), - [anon_sym_import] = ACTIONS(3408), - [anon_sym_var] = ACTIONS(3408), - [anon_sym_let] = ACTIONS(3408), - [anon_sym_const] = ACTIONS(3408), - [anon_sym_BANG] = ACTIONS(3406), - [anon_sym_else] = ACTIONS(3408), - [anon_sym_if] = ACTIONS(3408), - [anon_sym_switch] = ACTIONS(3408), - [anon_sym_for] = ACTIONS(3408), - [anon_sym_LPAREN] = ACTIONS(3406), - [anon_sym_await] = ACTIONS(3408), - [anon_sym_while] = ACTIONS(3408), - [anon_sym_do] = ACTIONS(3408), - [anon_sym_try] = ACTIONS(3408), - [anon_sym_with] = ACTIONS(3408), - [anon_sym_break] = ACTIONS(3408), - [anon_sym_continue] = ACTIONS(3408), - [anon_sym_debugger] = ACTIONS(3408), - [anon_sym_return] = ACTIONS(3408), - [anon_sym_throw] = ACTIONS(3408), - [anon_sym_SEMI] = ACTIONS(3406), - [anon_sym_case] = ACTIONS(3408), - [anon_sym_yield] = ACTIONS(3408), - [anon_sym_LBRACK] = ACTIONS(3406), - [anon_sym_LT] = ACTIONS(3406), - [anon_sym_SLASH] = ACTIONS(3408), - [anon_sym_class] = ACTIONS(3408), - [anon_sym_async] = ACTIONS(3408), - [anon_sym_function] = ACTIONS(3408), - [anon_sym_new] = ACTIONS(3408), - [anon_sym_PLUS] = ACTIONS(3408), - [anon_sym_DASH] = ACTIONS(3408), - [anon_sym_TILDE] = ACTIONS(3406), - [anon_sym_void] = ACTIONS(3408), - [anon_sym_delete] = ACTIONS(3408), - [anon_sym_PLUS_PLUS] = ACTIONS(3406), - [anon_sym_DASH_DASH] = ACTIONS(3406), - [anon_sym_DQUOTE] = ACTIONS(3406), - [anon_sym_SQUOTE] = ACTIONS(3406), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3406), - [sym_number] = ACTIONS(3406), - [sym_this] = ACTIONS(3408), - [sym_super] = ACTIONS(3408), - [sym_true] = ACTIONS(3408), - [sym_false] = ACTIONS(3408), - [sym_null] = ACTIONS(3408), - [sym_undefined] = ACTIONS(3408), - [anon_sym_AT] = ACTIONS(3406), - [anon_sym_static] = ACTIONS(3408), - [anon_sym_readonly] = ACTIONS(3408), - [anon_sym_get] = ACTIONS(3408), - [anon_sym_set] = ACTIONS(3408), - [anon_sym_declare] = ACTIONS(3408), - [anon_sym_public] = ACTIONS(3408), - [anon_sym_private] = ACTIONS(3408), - [anon_sym_protected] = ACTIONS(3408), - [anon_sym_module] = ACTIONS(3408), - [anon_sym_any] = ACTIONS(3408), - [anon_sym_number] = ACTIONS(3408), - [anon_sym_boolean] = ACTIONS(3408), - [anon_sym_string] = ACTIONS(3408), - [anon_sym_symbol] = ACTIONS(3408), - [anon_sym_abstract] = ACTIONS(3408), - [anon_sym_interface] = ACTIONS(3408), - [anon_sym_enum] = ACTIONS(3408), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1190] = { - [ts_builtin_sym_end] = ACTIONS(3410), - [sym_identifier] = ACTIONS(3412), - [anon_sym_export] = ACTIONS(3412), - [anon_sym_default] = ACTIONS(3412), - [anon_sym_type] = ACTIONS(3412), - [anon_sym_namespace] = ACTIONS(3412), - [anon_sym_LBRACE] = ACTIONS(3410), - [anon_sym_RBRACE] = ACTIONS(3410), - [anon_sym_typeof] = ACTIONS(3412), - [anon_sym_import] = ACTIONS(3412), - [anon_sym_var] = ACTIONS(3412), - [anon_sym_let] = ACTIONS(3412), - [anon_sym_const] = ACTIONS(3412), - [anon_sym_BANG] = ACTIONS(3410), - [anon_sym_else] = ACTIONS(3412), - [anon_sym_if] = ACTIONS(3412), - [anon_sym_switch] = ACTIONS(3412), - [anon_sym_for] = ACTIONS(3412), - [anon_sym_LPAREN] = ACTIONS(3410), - [anon_sym_await] = ACTIONS(3412), - [anon_sym_while] = ACTIONS(3412), - [anon_sym_do] = ACTIONS(3412), - [anon_sym_try] = ACTIONS(3412), - [anon_sym_with] = ACTIONS(3412), - [anon_sym_break] = ACTIONS(3412), - [anon_sym_continue] = ACTIONS(3412), - [anon_sym_debugger] = ACTIONS(3412), - [anon_sym_return] = ACTIONS(3412), - [anon_sym_throw] = ACTIONS(3412), - [anon_sym_SEMI] = ACTIONS(3410), - [anon_sym_case] = ACTIONS(3412), - [anon_sym_yield] = ACTIONS(3412), - [anon_sym_LBRACK] = ACTIONS(3410), - [anon_sym_LT] = ACTIONS(3410), - [anon_sym_SLASH] = ACTIONS(3412), - [anon_sym_class] = ACTIONS(3412), - [anon_sym_async] = ACTIONS(3412), - [anon_sym_function] = ACTIONS(3412), - [anon_sym_new] = ACTIONS(3412), - [anon_sym_PLUS] = ACTIONS(3412), - [anon_sym_DASH] = ACTIONS(3412), - [anon_sym_TILDE] = ACTIONS(3410), - [anon_sym_void] = ACTIONS(3412), - [anon_sym_delete] = ACTIONS(3412), - [anon_sym_PLUS_PLUS] = ACTIONS(3410), - [anon_sym_DASH_DASH] = ACTIONS(3410), - [anon_sym_DQUOTE] = ACTIONS(3410), - [anon_sym_SQUOTE] = ACTIONS(3410), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3410), - [sym_number] = ACTIONS(3410), - [sym_this] = ACTIONS(3412), - [sym_super] = ACTIONS(3412), - [sym_true] = ACTIONS(3412), - [sym_false] = ACTIONS(3412), - [sym_null] = ACTIONS(3412), - [sym_undefined] = ACTIONS(3412), - [anon_sym_AT] = ACTIONS(3410), - [anon_sym_static] = ACTIONS(3412), - [anon_sym_readonly] = ACTIONS(3412), - [anon_sym_get] = ACTIONS(3412), - [anon_sym_set] = ACTIONS(3412), - [anon_sym_declare] = ACTIONS(3412), - [anon_sym_public] = ACTIONS(3412), - [anon_sym_private] = ACTIONS(3412), - [anon_sym_protected] = ACTIONS(3412), - [anon_sym_module] = ACTIONS(3412), - [anon_sym_any] = ACTIONS(3412), - [anon_sym_number] = ACTIONS(3412), - [anon_sym_boolean] = ACTIONS(3412), - [anon_sym_string] = ACTIONS(3412), - [anon_sym_symbol] = ACTIONS(3412), - [anon_sym_abstract] = ACTIONS(3412), - [anon_sym_interface] = ACTIONS(3412), - [anon_sym_enum] = ACTIONS(3412), + [ts_builtin_sym_end] = ACTIONS(3424), + [sym_identifier] = ACTIONS(3426), + [anon_sym_export] = ACTIONS(3426), + [anon_sym_default] = ACTIONS(3426), + [anon_sym_type] = ACTIONS(3426), + [anon_sym_namespace] = ACTIONS(3426), + [anon_sym_LBRACE] = ACTIONS(3424), + [anon_sym_RBRACE] = ACTIONS(3424), + [anon_sym_typeof] = ACTIONS(3426), + [anon_sym_import] = ACTIONS(3426), + [anon_sym_var] = ACTIONS(3426), + [anon_sym_let] = ACTIONS(3426), + [anon_sym_const] = ACTIONS(3426), + [anon_sym_BANG] = ACTIONS(3424), + [anon_sym_else] = ACTIONS(3426), + [anon_sym_if] = ACTIONS(3426), + [anon_sym_switch] = ACTIONS(3426), + [anon_sym_for] = ACTIONS(3426), + [anon_sym_LPAREN] = ACTIONS(3424), + [anon_sym_await] = ACTIONS(3426), + [anon_sym_while] = ACTIONS(3426), + [anon_sym_do] = ACTIONS(3426), + [anon_sym_try] = ACTIONS(3426), + [anon_sym_with] = ACTIONS(3426), + [anon_sym_break] = ACTIONS(3426), + [anon_sym_continue] = ACTIONS(3426), + [anon_sym_debugger] = ACTIONS(3426), + [anon_sym_return] = ACTIONS(3426), + [anon_sym_throw] = ACTIONS(3426), + [anon_sym_SEMI] = ACTIONS(3424), + [anon_sym_case] = ACTIONS(3426), + [anon_sym_yield] = ACTIONS(3426), + [anon_sym_LBRACK] = ACTIONS(3424), + [anon_sym_LT] = ACTIONS(3424), + [anon_sym_SLASH] = ACTIONS(3426), + [anon_sym_class] = ACTIONS(3426), + [anon_sym_async] = ACTIONS(3426), + [anon_sym_function] = ACTIONS(3426), + [anon_sym_new] = ACTIONS(3426), + [anon_sym_PLUS] = ACTIONS(3426), + [anon_sym_DASH] = ACTIONS(3426), + [anon_sym_TILDE] = ACTIONS(3424), + [anon_sym_void] = ACTIONS(3426), + [anon_sym_delete] = ACTIONS(3426), + [anon_sym_PLUS_PLUS] = ACTIONS(3424), + [anon_sym_DASH_DASH] = ACTIONS(3424), + [anon_sym_DQUOTE] = ACTIONS(3424), + [anon_sym_SQUOTE] = ACTIONS(3424), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3424), + [sym_number] = ACTIONS(3424), + [sym_this] = ACTIONS(3426), + [sym_super] = ACTIONS(3426), + [sym_true] = ACTIONS(3426), + [sym_false] = ACTIONS(3426), + [sym_null] = ACTIONS(3426), + [sym_undefined] = ACTIONS(3426), + [anon_sym_AT] = ACTIONS(3424), + [anon_sym_static] = ACTIONS(3426), + [anon_sym_readonly] = ACTIONS(3426), + [anon_sym_get] = ACTIONS(3426), + [anon_sym_set] = ACTIONS(3426), + [anon_sym_declare] = ACTIONS(3426), + [anon_sym_public] = ACTIONS(3426), + [anon_sym_private] = ACTIONS(3426), + [anon_sym_protected] = ACTIONS(3426), + [anon_sym_module] = ACTIONS(3426), + [anon_sym_any] = ACTIONS(3426), + [anon_sym_number] = ACTIONS(3426), + [anon_sym_boolean] = ACTIONS(3426), + [anon_sym_string] = ACTIONS(3426), + [anon_sym_symbol] = ACTIONS(3426), + [anon_sym_abstract] = ACTIONS(3426), + [anon_sym_interface] = ACTIONS(3426), + [anon_sym_enum] = ACTIONS(3426), }, [1191] = { - [ts_builtin_sym_end] = ACTIONS(3414), - [sym_identifier] = ACTIONS(3416), - [anon_sym_export] = ACTIONS(3416), - [anon_sym_default] = ACTIONS(3416), - [anon_sym_type] = ACTIONS(3416), - [anon_sym_namespace] = ACTIONS(3416), - [anon_sym_LBRACE] = ACTIONS(3414), - [anon_sym_RBRACE] = ACTIONS(3414), - [anon_sym_typeof] = ACTIONS(3416), - [anon_sym_import] = ACTIONS(3416), - [anon_sym_var] = ACTIONS(3416), - [anon_sym_let] = ACTIONS(3416), - [anon_sym_const] = ACTIONS(3416), - [anon_sym_BANG] = ACTIONS(3414), - [anon_sym_else] = ACTIONS(3416), - [anon_sym_if] = ACTIONS(3416), - [anon_sym_switch] = ACTIONS(3416), - [anon_sym_for] = ACTIONS(3416), - [anon_sym_LPAREN] = ACTIONS(3414), - [anon_sym_await] = ACTIONS(3416), - [anon_sym_while] = ACTIONS(3416), - [anon_sym_do] = ACTIONS(3416), - [anon_sym_try] = ACTIONS(3416), - [anon_sym_with] = ACTIONS(3416), - [anon_sym_break] = ACTIONS(3416), - [anon_sym_continue] = ACTIONS(3416), - [anon_sym_debugger] = ACTIONS(3416), - [anon_sym_return] = ACTIONS(3416), - [anon_sym_throw] = ACTIONS(3416), - [anon_sym_SEMI] = ACTIONS(3414), - [anon_sym_case] = ACTIONS(3416), - [anon_sym_yield] = ACTIONS(3416), - [anon_sym_LBRACK] = ACTIONS(3414), - [anon_sym_LT] = ACTIONS(3414), - [anon_sym_SLASH] = ACTIONS(3416), - [anon_sym_class] = ACTIONS(3416), - [anon_sym_async] = ACTIONS(3416), - [anon_sym_function] = ACTIONS(3416), - [anon_sym_new] = ACTIONS(3416), - [anon_sym_PLUS] = ACTIONS(3416), - [anon_sym_DASH] = ACTIONS(3416), - [anon_sym_TILDE] = ACTIONS(3414), - [anon_sym_void] = ACTIONS(3416), - [anon_sym_delete] = ACTIONS(3416), - [anon_sym_PLUS_PLUS] = ACTIONS(3414), - [anon_sym_DASH_DASH] = ACTIONS(3414), - [anon_sym_DQUOTE] = ACTIONS(3414), - [anon_sym_SQUOTE] = ACTIONS(3414), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3414), - [sym_number] = ACTIONS(3414), - [sym_this] = ACTIONS(3416), - [sym_super] = ACTIONS(3416), - [sym_true] = ACTIONS(3416), - [sym_false] = ACTIONS(3416), - [sym_null] = ACTIONS(3416), - [sym_undefined] = ACTIONS(3416), - [anon_sym_AT] = ACTIONS(3414), - [anon_sym_static] = ACTIONS(3416), - [anon_sym_readonly] = ACTIONS(3416), - [anon_sym_get] = ACTIONS(3416), - [anon_sym_set] = ACTIONS(3416), - [anon_sym_declare] = ACTIONS(3416), - [anon_sym_public] = ACTIONS(3416), - [anon_sym_private] = ACTIONS(3416), - [anon_sym_protected] = ACTIONS(3416), - [anon_sym_module] = ACTIONS(3416), - [anon_sym_any] = ACTIONS(3416), - [anon_sym_number] = ACTIONS(3416), - [anon_sym_boolean] = ACTIONS(3416), - [anon_sym_string] = ACTIONS(3416), - [anon_sym_symbol] = ACTIONS(3416), - [anon_sym_abstract] = ACTIONS(3416), - [anon_sym_interface] = ACTIONS(3416), - [anon_sym_enum] = ACTIONS(3416), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1192] = { - [ts_builtin_sym_end] = ACTIONS(3418), - [sym_identifier] = ACTIONS(3420), - [anon_sym_export] = ACTIONS(3420), - [anon_sym_default] = ACTIONS(3420), - [anon_sym_type] = ACTIONS(3420), - [anon_sym_namespace] = ACTIONS(3420), - [anon_sym_LBRACE] = ACTIONS(3418), - [anon_sym_RBRACE] = ACTIONS(3418), - [anon_sym_typeof] = ACTIONS(3420), - [anon_sym_import] = ACTIONS(3420), - [anon_sym_var] = ACTIONS(3420), - [anon_sym_let] = ACTIONS(3420), - [anon_sym_const] = ACTIONS(3420), - [anon_sym_BANG] = ACTIONS(3418), - [anon_sym_else] = ACTIONS(3420), - [anon_sym_if] = ACTIONS(3420), - [anon_sym_switch] = ACTIONS(3420), - [anon_sym_for] = ACTIONS(3420), - [anon_sym_LPAREN] = ACTIONS(3418), - [anon_sym_await] = ACTIONS(3420), - [anon_sym_while] = ACTIONS(3420), - [anon_sym_do] = ACTIONS(3420), - [anon_sym_try] = ACTIONS(3420), - [anon_sym_with] = ACTIONS(3420), - [anon_sym_break] = ACTIONS(3420), - [anon_sym_continue] = ACTIONS(3420), - [anon_sym_debugger] = ACTIONS(3420), - [anon_sym_return] = ACTIONS(3420), - [anon_sym_throw] = ACTIONS(3420), - [anon_sym_SEMI] = ACTIONS(3418), - [anon_sym_case] = ACTIONS(3420), - [anon_sym_yield] = ACTIONS(3420), - [anon_sym_LBRACK] = ACTIONS(3418), - [anon_sym_LT] = ACTIONS(3418), - [anon_sym_SLASH] = ACTIONS(3420), - [anon_sym_class] = ACTIONS(3420), - [anon_sym_async] = ACTIONS(3420), - [anon_sym_function] = ACTIONS(3420), - [anon_sym_new] = ACTIONS(3420), - [anon_sym_PLUS] = ACTIONS(3420), - [anon_sym_DASH] = ACTIONS(3420), - [anon_sym_TILDE] = ACTIONS(3418), - [anon_sym_void] = ACTIONS(3420), - [anon_sym_delete] = ACTIONS(3420), - [anon_sym_PLUS_PLUS] = ACTIONS(3418), - [anon_sym_DASH_DASH] = ACTIONS(3418), - [anon_sym_DQUOTE] = ACTIONS(3418), - [anon_sym_SQUOTE] = ACTIONS(3418), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3418), - [sym_number] = ACTIONS(3418), - [sym_this] = ACTIONS(3420), - [sym_super] = ACTIONS(3420), - [sym_true] = ACTIONS(3420), - [sym_false] = ACTIONS(3420), - [sym_null] = ACTIONS(3420), - [sym_undefined] = ACTIONS(3420), - [anon_sym_AT] = ACTIONS(3418), - [anon_sym_static] = ACTIONS(3420), - [anon_sym_readonly] = ACTIONS(3420), - [anon_sym_get] = ACTIONS(3420), - [anon_sym_set] = ACTIONS(3420), - [anon_sym_declare] = ACTIONS(3420), - [anon_sym_public] = ACTIONS(3420), - [anon_sym_private] = ACTIONS(3420), - [anon_sym_protected] = ACTIONS(3420), - [anon_sym_module] = ACTIONS(3420), - [anon_sym_any] = ACTIONS(3420), - [anon_sym_number] = ACTIONS(3420), - [anon_sym_boolean] = ACTIONS(3420), - [anon_sym_string] = ACTIONS(3420), - [anon_sym_symbol] = ACTIONS(3420), - [anon_sym_abstract] = ACTIONS(3420), - [anon_sym_interface] = ACTIONS(3420), - [anon_sym_enum] = ACTIONS(3420), + [ts_builtin_sym_end] = ACTIONS(3428), + [sym_identifier] = ACTIONS(3430), + [anon_sym_export] = ACTIONS(3430), + [anon_sym_default] = ACTIONS(3430), + [anon_sym_type] = ACTIONS(3430), + [anon_sym_namespace] = ACTIONS(3430), + [anon_sym_LBRACE] = ACTIONS(3428), + [anon_sym_RBRACE] = ACTIONS(3428), + [anon_sym_typeof] = ACTIONS(3430), + [anon_sym_import] = ACTIONS(3430), + [anon_sym_var] = ACTIONS(3430), + [anon_sym_let] = ACTIONS(3430), + [anon_sym_const] = ACTIONS(3430), + [anon_sym_BANG] = ACTIONS(3428), + [anon_sym_else] = ACTIONS(3430), + [anon_sym_if] = ACTIONS(3430), + [anon_sym_switch] = ACTIONS(3430), + [anon_sym_for] = ACTIONS(3430), + [anon_sym_LPAREN] = ACTIONS(3428), + [anon_sym_await] = ACTIONS(3430), + [anon_sym_while] = ACTIONS(3430), + [anon_sym_do] = ACTIONS(3430), + [anon_sym_try] = ACTIONS(3430), + [anon_sym_with] = ACTIONS(3430), + [anon_sym_break] = ACTIONS(3430), + [anon_sym_continue] = ACTIONS(3430), + [anon_sym_debugger] = ACTIONS(3430), + [anon_sym_return] = ACTIONS(3430), + [anon_sym_throw] = ACTIONS(3430), + [anon_sym_SEMI] = ACTIONS(3428), + [anon_sym_case] = ACTIONS(3430), + [anon_sym_yield] = ACTIONS(3430), + [anon_sym_LBRACK] = ACTIONS(3428), + [anon_sym_LT] = ACTIONS(3428), + [anon_sym_SLASH] = ACTIONS(3430), + [anon_sym_class] = ACTIONS(3430), + [anon_sym_async] = ACTIONS(3430), + [anon_sym_function] = ACTIONS(3430), + [anon_sym_new] = ACTIONS(3430), + [anon_sym_PLUS] = ACTIONS(3430), + [anon_sym_DASH] = ACTIONS(3430), + [anon_sym_TILDE] = ACTIONS(3428), + [anon_sym_void] = ACTIONS(3430), + [anon_sym_delete] = ACTIONS(3430), + [anon_sym_PLUS_PLUS] = ACTIONS(3428), + [anon_sym_DASH_DASH] = ACTIONS(3428), + [anon_sym_DQUOTE] = ACTIONS(3428), + [anon_sym_SQUOTE] = ACTIONS(3428), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3428), + [sym_number] = ACTIONS(3428), + [sym_this] = ACTIONS(3430), + [sym_super] = ACTIONS(3430), + [sym_true] = ACTIONS(3430), + [sym_false] = ACTIONS(3430), + [sym_null] = ACTIONS(3430), + [sym_undefined] = ACTIONS(3430), + [anon_sym_AT] = ACTIONS(3428), + [anon_sym_static] = ACTIONS(3430), + [anon_sym_readonly] = ACTIONS(3430), + [anon_sym_get] = ACTIONS(3430), + [anon_sym_set] = ACTIONS(3430), + [anon_sym_declare] = ACTIONS(3430), + [anon_sym_public] = ACTIONS(3430), + [anon_sym_private] = ACTIONS(3430), + [anon_sym_protected] = ACTIONS(3430), + [anon_sym_module] = ACTIONS(3430), + [anon_sym_any] = ACTIONS(3430), + [anon_sym_number] = ACTIONS(3430), + [anon_sym_boolean] = ACTIONS(3430), + [anon_sym_string] = ACTIONS(3430), + [anon_sym_symbol] = ACTIONS(3430), + [anon_sym_abstract] = ACTIONS(3430), + [anon_sym_interface] = ACTIONS(3430), + [anon_sym_enum] = ACTIONS(3430), }, [1193] = { - [ts_builtin_sym_end] = ACTIONS(3422), - [sym_identifier] = ACTIONS(3424), - [anon_sym_export] = ACTIONS(3424), - [anon_sym_default] = ACTIONS(3424), - [anon_sym_type] = ACTIONS(3424), - [anon_sym_namespace] = ACTIONS(3424), - [anon_sym_LBRACE] = ACTIONS(3422), - [anon_sym_RBRACE] = ACTIONS(3422), - [anon_sym_typeof] = ACTIONS(3424), - [anon_sym_import] = ACTIONS(3424), - [anon_sym_var] = ACTIONS(3424), - [anon_sym_let] = ACTIONS(3424), - [anon_sym_const] = ACTIONS(3424), - [anon_sym_BANG] = ACTIONS(3422), - [anon_sym_else] = ACTIONS(3424), - [anon_sym_if] = ACTIONS(3424), - [anon_sym_switch] = ACTIONS(3424), - [anon_sym_for] = ACTIONS(3424), - [anon_sym_LPAREN] = ACTIONS(3422), - [anon_sym_await] = ACTIONS(3424), - [anon_sym_while] = ACTIONS(3424), - [anon_sym_do] = ACTIONS(3424), - [anon_sym_try] = ACTIONS(3424), - [anon_sym_with] = ACTIONS(3424), - [anon_sym_break] = ACTIONS(3424), - [anon_sym_continue] = ACTIONS(3424), - [anon_sym_debugger] = ACTIONS(3424), - [anon_sym_return] = ACTIONS(3424), - [anon_sym_throw] = ACTIONS(3424), - [anon_sym_SEMI] = ACTIONS(3422), - [anon_sym_case] = ACTIONS(3424), - [anon_sym_yield] = ACTIONS(3424), - [anon_sym_LBRACK] = ACTIONS(3422), - [anon_sym_LT] = ACTIONS(3422), - [anon_sym_SLASH] = ACTIONS(3424), - [anon_sym_class] = ACTIONS(3424), - [anon_sym_async] = ACTIONS(3424), - [anon_sym_function] = ACTIONS(3424), - [anon_sym_new] = ACTIONS(3424), - [anon_sym_PLUS] = ACTIONS(3424), - [anon_sym_DASH] = ACTIONS(3424), - [anon_sym_TILDE] = ACTIONS(3422), - [anon_sym_void] = ACTIONS(3424), - [anon_sym_delete] = ACTIONS(3424), - [anon_sym_PLUS_PLUS] = ACTIONS(3422), - [anon_sym_DASH_DASH] = ACTIONS(3422), - [anon_sym_DQUOTE] = ACTIONS(3422), - [anon_sym_SQUOTE] = ACTIONS(3422), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3422), - [sym_number] = ACTIONS(3422), - [sym_this] = ACTIONS(3424), - [sym_super] = ACTIONS(3424), - [sym_true] = ACTIONS(3424), - [sym_false] = ACTIONS(3424), - [sym_null] = ACTIONS(3424), - [sym_undefined] = ACTIONS(3424), - [anon_sym_AT] = ACTIONS(3422), - [anon_sym_static] = ACTIONS(3424), - [anon_sym_readonly] = ACTIONS(3424), - [anon_sym_get] = ACTIONS(3424), - [anon_sym_set] = ACTIONS(3424), - [anon_sym_declare] = ACTIONS(3424), - [anon_sym_public] = ACTIONS(3424), - [anon_sym_private] = ACTIONS(3424), - [anon_sym_protected] = ACTIONS(3424), - [anon_sym_module] = ACTIONS(3424), - [anon_sym_any] = ACTIONS(3424), - [anon_sym_number] = ACTIONS(3424), - [anon_sym_boolean] = ACTIONS(3424), - [anon_sym_string] = ACTIONS(3424), - [anon_sym_symbol] = ACTIONS(3424), - [anon_sym_abstract] = ACTIONS(3424), - [anon_sym_interface] = ACTIONS(3424), - [anon_sym_enum] = ACTIONS(3424), + [ts_builtin_sym_end] = ACTIONS(3432), + [sym_identifier] = ACTIONS(3434), + [anon_sym_export] = ACTIONS(3434), + [anon_sym_default] = ACTIONS(3434), + [anon_sym_type] = ACTIONS(3434), + [anon_sym_namespace] = ACTIONS(3434), + [anon_sym_LBRACE] = ACTIONS(3432), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_typeof] = ACTIONS(3434), + [anon_sym_import] = ACTIONS(3434), + [anon_sym_var] = ACTIONS(3434), + [anon_sym_let] = ACTIONS(3434), + [anon_sym_const] = ACTIONS(3434), + [anon_sym_BANG] = ACTIONS(3432), + [anon_sym_else] = ACTIONS(3434), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_switch] = ACTIONS(3434), + [anon_sym_for] = ACTIONS(3434), + [anon_sym_LPAREN] = ACTIONS(3432), + [anon_sym_await] = ACTIONS(3434), + [anon_sym_while] = ACTIONS(3434), + [anon_sym_do] = ACTIONS(3434), + [anon_sym_try] = ACTIONS(3434), + [anon_sym_with] = ACTIONS(3434), + [anon_sym_break] = ACTIONS(3434), + [anon_sym_continue] = ACTIONS(3434), + [anon_sym_debugger] = ACTIONS(3434), + [anon_sym_return] = ACTIONS(3434), + [anon_sym_throw] = ACTIONS(3434), + [anon_sym_SEMI] = ACTIONS(3432), + [anon_sym_case] = ACTIONS(3434), + [anon_sym_yield] = ACTIONS(3434), + [anon_sym_LBRACK] = ACTIONS(3432), + [anon_sym_LT] = ACTIONS(3432), + [anon_sym_SLASH] = ACTIONS(3434), + [anon_sym_class] = ACTIONS(3434), + [anon_sym_async] = ACTIONS(3434), + [anon_sym_function] = ACTIONS(3434), + [anon_sym_new] = ACTIONS(3434), + [anon_sym_PLUS] = ACTIONS(3434), + [anon_sym_DASH] = ACTIONS(3434), + [anon_sym_TILDE] = ACTIONS(3432), + [anon_sym_void] = ACTIONS(3434), + [anon_sym_delete] = ACTIONS(3434), + [anon_sym_PLUS_PLUS] = ACTIONS(3432), + [anon_sym_DASH_DASH] = ACTIONS(3432), + [anon_sym_DQUOTE] = ACTIONS(3432), + [anon_sym_SQUOTE] = ACTIONS(3432), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3432), + [sym_number] = ACTIONS(3432), + [sym_this] = ACTIONS(3434), + [sym_super] = ACTIONS(3434), + [sym_true] = ACTIONS(3434), + [sym_false] = ACTIONS(3434), + [sym_null] = ACTIONS(3434), + [sym_undefined] = ACTIONS(3434), + [anon_sym_AT] = ACTIONS(3432), + [anon_sym_static] = ACTIONS(3434), + [anon_sym_readonly] = ACTIONS(3434), + [anon_sym_get] = ACTIONS(3434), + [anon_sym_set] = ACTIONS(3434), + [anon_sym_declare] = ACTIONS(3434), + [anon_sym_public] = ACTIONS(3434), + [anon_sym_private] = ACTIONS(3434), + [anon_sym_protected] = ACTIONS(3434), + [anon_sym_module] = ACTIONS(3434), + [anon_sym_any] = ACTIONS(3434), + [anon_sym_number] = ACTIONS(3434), + [anon_sym_boolean] = ACTIONS(3434), + [anon_sym_string] = ACTIONS(3434), + [anon_sym_symbol] = ACTIONS(3434), + [anon_sym_abstract] = ACTIONS(3434), + [anon_sym_interface] = ACTIONS(3434), + [anon_sym_enum] = ACTIONS(3434), }, [1194] = { - [ts_builtin_sym_end] = ACTIONS(3426), - [sym_identifier] = ACTIONS(3428), - [anon_sym_export] = ACTIONS(3428), - [anon_sym_default] = ACTIONS(3428), - [anon_sym_type] = ACTIONS(3428), - [anon_sym_namespace] = ACTIONS(3428), - [anon_sym_LBRACE] = ACTIONS(3426), - [anon_sym_RBRACE] = ACTIONS(3426), - [anon_sym_typeof] = ACTIONS(3428), - [anon_sym_import] = ACTIONS(3428), - [anon_sym_var] = ACTIONS(3428), - [anon_sym_let] = ACTIONS(3428), - [anon_sym_const] = ACTIONS(3428), - [anon_sym_BANG] = ACTIONS(3426), - [anon_sym_else] = ACTIONS(3428), - [anon_sym_if] = ACTIONS(3428), - [anon_sym_switch] = ACTIONS(3428), - [anon_sym_for] = ACTIONS(3428), - [anon_sym_LPAREN] = ACTIONS(3426), - [anon_sym_await] = ACTIONS(3428), - [anon_sym_while] = ACTIONS(3428), - [anon_sym_do] = ACTIONS(3428), - [anon_sym_try] = ACTIONS(3428), - [anon_sym_with] = ACTIONS(3428), - [anon_sym_break] = ACTIONS(3428), - [anon_sym_continue] = ACTIONS(3428), - [anon_sym_debugger] = ACTIONS(3428), - [anon_sym_return] = ACTIONS(3428), - [anon_sym_throw] = ACTIONS(3428), - [anon_sym_SEMI] = ACTIONS(3426), - [anon_sym_case] = ACTIONS(3428), - [anon_sym_yield] = ACTIONS(3428), - [anon_sym_LBRACK] = ACTIONS(3426), - [anon_sym_LT] = ACTIONS(3426), - [anon_sym_SLASH] = ACTIONS(3428), - [anon_sym_class] = ACTIONS(3428), - [anon_sym_async] = ACTIONS(3428), - [anon_sym_function] = ACTIONS(3428), - [anon_sym_new] = ACTIONS(3428), - [anon_sym_PLUS] = ACTIONS(3428), - [anon_sym_DASH] = ACTIONS(3428), - [anon_sym_TILDE] = ACTIONS(3426), - [anon_sym_void] = ACTIONS(3428), - [anon_sym_delete] = ACTIONS(3428), - [anon_sym_PLUS_PLUS] = ACTIONS(3426), - [anon_sym_DASH_DASH] = ACTIONS(3426), - [anon_sym_DQUOTE] = ACTIONS(3426), - [anon_sym_SQUOTE] = ACTIONS(3426), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3426), - [sym_number] = ACTIONS(3426), - [sym_this] = ACTIONS(3428), - [sym_super] = ACTIONS(3428), - [sym_true] = ACTIONS(3428), - [sym_false] = ACTIONS(3428), - [sym_null] = ACTIONS(3428), - [sym_undefined] = ACTIONS(3428), - [anon_sym_AT] = ACTIONS(3426), - [anon_sym_static] = ACTIONS(3428), - [anon_sym_readonly] = ACTIONS(3428), - [anon_sym_get] = ACTIONS(3428), - [anon_sym_set] = ACTIONS(3428), - [anon_sym_declare] = ACTIONS(3428), - [anon_sym_public] = ACTIONS(3428), - [anon_sym_private] = ACTIONS(3428), - [anon_sym_protected] = ACTIONS(3428), - [anon_sym_module] = ACTIONS(3428), - [anon_sym_any] = ACTIONS(3428), - [anon_sym_number] = ACTIONS(3428), - [anon_sym_boolean] = ACTIONS(3428), - [anon_sym_string] = ACTIONS(3428), - [anon_sym_symbol] = ACTIONS(3428), - [anon_sym_abstract] = ACTIONS(3428), - [anon_sym_interface] = ACTIONS(3428), - [anon_sym_enum] = ACTIONS(3428), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym_identifier] = ACTIONS(1980), + [anon_sym_export] = ACTIONS(1980), + [anon_sym_default] = ACTIONS(1980), + [anon_sym_type] = ACTIONS(1980), + [anon_sym_namespace] = ACTIONS(1980), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_typeof] = ACTIONS(1980), + [anon_sym_import] = ACTIONS(1980), + [anon_sym_var] = ACTIONS(1980), + [anon_sym_let] = ACTIONS(1980), + [anon_sym_const] = ACTIONS(1980), + [anon_sym_BANG] = ACTIONS(1978), + [anon_sym_else] = ACTIONS(1980), + [anon_sym_if] = ACTIONS(1980), + [anon_sym_switch] = ACTIONS(1980), + [anon_sym_for] = ACTIONS(1980), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_await] = ACTIONS(1980), + [anon_sym_while] = ACTIONS(1980), + [anon_sym_do] = ACTIONS(1980), + [anon_sym_try] = ACTIONS(1980), + [anon_sym_with] = ACTIONS(1980), + [anon_sym_break] = ACTIONS(1980), + [anon_sym_continue] = ACTIONS(1980), + [anon_sym_debugger] = ACTIONS(1980), + [anon_sym_return] = ACTIONS(1980), + [anon_sym_throw] = ACTIONS(1980), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_case] = ACTIONS(1980), + [anon_sym_yield] = ACTIONS(1980), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LT] = ACTIONS(1978), + [anon_sym_SLASH] = ACTIONS(1980), + [anon_sym_class] = ACTIONS(1980), + [anon_sym_async] = ACTIONS(1980), + [anon_sym_function] = ACTIONS(1980), + [anon_sym_new] = ACTIONS(1980), + [anon_sym_PLUS] = ACTIONS(1980), + [anon_sym_DASH] = ACTIONS(1980), + [anon_sym_TILDE] = ACTIONS(1978), + [anon_sym_void] = ACTIONS(1980), + [anon_sym_delete] = ACTIONS(1980), + [anon_sym_PLUS_PLUS] = ACTIONS(1978), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [anon_sym_SQUOTE] = ACTIONS(1978), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1978), + [sym_number] = ACTIONS(1978), + [sym_this] = ACTIONS(1980), + [sym_super] = ACTIONS(1980), + [sym_true] = ACTIONS(1980), + [sym_false] = ACTIONS(1980), + [sym_null] = ACTIONS(1980), + [sym_undefined] = ACTIONS(1980), + [anon_sym_AT] = ACTIONS(1978), + [anon_sym_static] = ACTIONS(1980), + [anon_sym_readonly] = ACTIONS(1980), + [anon_sym_get] = ACTIONS(1980), + [anon_sym_set] = ACTIONS(1980), + [anon_sym_declare] = ACTIONS(1980), + [anon_sym_public] = ACTIONS(1980), + [anon_sym_private] = ACTIONS(1980), + [anon_sym_protected] = ACTIONS(1980), + [anon_sym_module] = ACTIONS(1980), + [anon_sym_any] = ACTIONS(1980), + [anon_sym_number] = ACTIONS(1980), + [anon_sym_boolean] = ACTIONS(1980), + [anon_sym_string] = ACTIONS(1980), + [anon_sym_symbol] = ACTIONS(1980), + [anon_sym_abstract] = ACTIONS(1980), + [anon_sym_interface] = ACTIONS(1980), + [anon_sym_enum] = ACTIONS(1980), }, [1195] = { - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3380), - [anon_sym_export] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_type] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_typeof] = ACTIONS(3380), - [anon_sym_import] = ACTIONS(3380), - [anon_sym_var] = ACTIONS(3380), - [anon_sym_let] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_await] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_with] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_debugger] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_yield] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_SLASH] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_async] = ACTIONS(3380), - [anon_sym_function] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_void] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3378), - [sym_number] = ACTIONS(3378), - [sym_this] = ACTIONS(3380), - [sym_super] = ACTIONS(3380), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [sym_undefined] = ACTIONS(3380), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3380), - [anon_sym_get] = ACTIONS(3380), - [anon_sym_set] = ACTIONS(3380), - [anon_sym_declare] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_module] = ACTIONS(3380), - [anon_sym_any] = ACTIONS(3380), - [anon_sym_number] = ACTIONS(3380), - [anon_sym_boolean] = ACTIONS(3380), - [anon_sym_string] = ACTIONS(3380), - [anon_sym_symbol] = ACTIONS(3380), - [anon_sym_abstract] = ACTIONS(3380), - [anon_sym_interface] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), + [ts_builtin_sym_end] = ACTIONS(3436), + [sym_identifier] = ACTIONS(3438), + [anon_sym_export] = ACTIONS(3438), + [anon_sym_default] = ACTIONS(3438), + [anon_sym_type] = ACTIONS(3438), + [anon_sym_namespace] = ACTIONS(3438), + [anon_sym_LBRACE] = ACTIONS(3436), + [anon_sym_RBRACE] = ACTIONS(3436), + [anon_sym_typeof] = ACTIONS(3438), + [anon_sym_import] = ACTIONS(3438), + [anon_sym_var] = ACTIONS(3438), + [anon_sym_let] = ACTIONS(3438), + [anon_sym_const] = ACTIONS(3438), + [anon_sym_BANG] = ACTIONS(3436), + [anon_sym_else] = ACTIONS(3438), + [anon_sym_if] = ACTIONS(3438), + [anon_sym_switch] = ACTIONS(3438), + [anon_sym_for] = ACTIONS(3438), + [anon_sym_LPAREN] = ACTIONS(3436), + [anon_sym_await] = ACTIONS(3438), + [anon_sym_while] = ACTIONS(3438), + [anon_sym_do] = ACTIONS(3438), + [anon_sym_try] = ACTIONS(3438), + [anon_sym_with] = ACTIONS(3438), + [anon_sym_break] = ACTIONS(3438), + [anon_sym_continue] = ACTIONS(3438), + [anon_sym_debugger] = ACTIONS(3438), + [anon_sym_return] = ACTIONS(3438), + [anon_sym_throw] = ACTIONS(3438), + [anon_sym_SEMI] = ACTIONS(3436), + [anon_sym_case] = ACTIONS(3438), + [anon_sym_yield] = ACTIONS(3438), + [anon_sym_LBRACK] = ACTIONS(3436), + [anon_sym_LT] = ACTIONS(3436), + [anon_sym_SLASH] = ACTIONS(3438), + [anon_sym_class] = ACTIONS(3438), + [anon_sym_async] = ACTIONS(3438), + [anon_sym_function] = ACTIONS(3438), + [anon_sym_new] = ACTIONS(3438), + [anon_sym_PLUS] = ACTIONS(3438), + [anon_sym_DASH] = ACTIONS(3438), + [anon_sym_TILDE] = ACTIONS(3436), + [anon_sym_void] = ACTIONS(3438), + [anon_sym_delete] = ACTIONS(3438), + [anon_sym_PLUS_PLUS] = ACTIONS(3436), + [anon_sym_DASH_DASH] = ACTIONS(3436), + [anon_sym_DQUOTE] = ACTIONS(3436), + [anon_sym_SQUOTE] = ACTIONS(3436), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3436), + [sym_number] = ACTIONS(3436), + [sym_this] = ACTIONS(3438), + [sym_super] = ACTIONS(3438), + [sym_true] = ACTIONS(3438), + [sym_false] = ACTIONS(3438), + [sym_null] = ACTIONS(3438), + [sym_undefined] = ACTIONS(3438), + [anon_sym_AT] = ACTIONS(3436), + [anon_sym_static] = ACTIONS(3438), + [anon_sym_readonly] = ACTIONS(3438), + [anon_sym_get] = ACTIONS(3438), + [anon_sym_set] = ACTIONS(3438), + [anon_sym_declare] = ACTIONS(3438), + [anon_sym_public] = ACTIONS(3438), + [anon_sym_private] = ACTIONS(3438), + [anon_sym_protected] = ACTIONS(3438), + [anon_sym_module] = ACTIONS(3438), + [anon_sym_any] = ACTIONS(3438), + [anon_sym_number] = ACTIONS(3438), + [anon_sym_boolean] = ACTIONS(3438), + [anon_sym_string] = ACTIONS(3438), + [anon_sym_symbol] = ACTIONS(3438), + [anon_sym_abstract] = ACTIONS(3438), + [anon_sym_interface] = ACTIONS(3438), + [anon_sym_enum] = ACTIONS(3438), }, [1196] = { - [ts_builtin_sym_end] = ACTIONS(3430), - [sym_identifier] = ACTIONS(3432), - [anon_sym_export] = ACTIONS(3432), - [anon_sym_default] = ACTIONS(3432), - [anon_sym_type] = ACTIONS(3432), - [anon_sym_namespace] = ACTIONS(3432), - [anon_sym_LBRACE] = ACTIONS(3430), - [anon_sym_RBRACE] = ACTIONS(3430), - [anon_sym_typeof] = ACTIONS(3432), - [anon_sym_import] = ACTIONS(3432), - [anon_sym_var] = ACTIONS(3432), - [anon_sym_let] = ACTIONS(3432), - [anon_sym_const] = ACTIONS(3432), - [anon_sym_BANG] = ACTIONS(3430), - [anon_sym_else] = ACTIONS(3432), - [anon_sym_if] = ACTIONS(3432), - [anon_sym_switch] = ACTIONS(3432), - [anon_sym_for] = ACTIONS(3432), - [anon_sym_LPAREN] = ACTIONS(3430), - [anon_sym_await] = ACTIONS(3432), - [anon_sym_while] = ACTIONS(3432), - [anon_sym_do] = ACTIONS(3432), - [anon_sym_try] = ACTIONS(3432), - [anon_sym_with] = ACTIONS(3432), - [anon_sym_break] = ACTIONS(3432), - [anon_sym_continue] = ACTIONS(3432), - [anon_sym_debugger] = ACTIONS(3432), - [anon_sym_return] = ACTIONS(3432), - [anon_sym_throw] = ACTIONS(3432), - [anon_sym_SEMI] = ACTIONS(3430), - [anon_sym_case] = ACTIONS(3432), - [anon_sym_yield] = ACTIONS(3432), - [anon_sym_LBRACK] = ACTIONS(3430), - [anon_sym_LT] = ACTIONS(3430), - [anon_sym_SLASH] = ACTIONS(3432), - [anon_sym_class] = ACTIONS(3432), - [anon_sym_async] = ACTIONS(3432), - [anon_sym_function] = ACTIONS(3432), - [anon_sym_new] = ACTIONS(3432), - [anon_sym_PLUS] = ACTIONS(3432), - [anon_sym_DASH] = ACTIONS(3432), - [anon_sym_TILDE] = ACTIONS(3430), - [anon_sym_void] = ACTIONS(3432), - [anon_sym_delete] = ACTIONS(3432), - [anon_sym_PLUS_PLUS] = ACTIONS(3430), - [anon_sym_DASH_DASH] = ACTIONS(3430), - [anon_sym_DQUOTE] = ACTIONS(3430), - [anon_sym_SQUOTE] = ACTIONS(3430), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3430), - [sym_number] = ACTIONS(3430), - [sym_this] = ACTIONS(3432), - [sym_super] = ACTIONS(3432), - [sym_true] = ACTIONS(3432), - [sym_false] = ACTIONS(3432), - [sym_null] = ACTIONS(3432), - [sym_undefined] = ACTIONS(3432), - [anon_sym_AT] = ACTIONS(3430), - [anon_sym_static] = ACTIONS(3432), - [anon_sym_readonly] = ACTIONS(3432), - [anon_sym_get] = ACTIONS(3432), - [anon_sym_set] = ACTIONS(3432), - [anon_sym_declare] = ACTIONS(3432), - [anon_sym_public] = ACTIONS(3432), - [anon_sym_private] = ACTIONS(3432), - [anon_sym_protected] = ACTIONS(3432), - [anon_sym_module] = ACTIONS(3432), - [anon_sym_any] = ACTIONS(3432), - [anon_sym_number] = ACTIONS(3432), - [anon_sym_boolean] = ACTIONS(3432), - [anon_sym_string] = ACTIONS(3432), - [anon_sym_symbol] = ACTIONS(3432), - [anon_sym_abstract] = ACTIONS(3432), - [anon_sym_interface] = ACTIONS(3432), - [anon_sym_enum] = ACTIONS(3432), + [ts_builtin_sym_end] = ACTIONS(2020), + [sym_identifier] = ACTIONS(2022), + [anon_sym_export] = ACTIONS(2022), + [anon_sym_default] = ACTIONS(2022), + [anon_sym_type] = ACTIONS(2022), + [anon_sym_namespace] = ACTIONS(2022), + [anon_sym_LBRACE] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_typeof] = ACTIONS(2022), + [anon_sym_import] = ACTIONS(2022), + [anon_sym_var] = ACTIONS(2022), + [anon_sym_let] = ACTIONS(2022), + [anon_sym_const] = ACTIONS(2022), + [anon_sym_BANG] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2022), + [anon_sym_if] = ACTIONS(2022), + [anon_sym_switch] = ACTIONS(2022), + [anon_sym_for] = ACTIONS(2022), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_await] = ACTIONS(2022), + [anon_sym_while] = ACTIONS(2022), + [anon_sym_do] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2022), + [anon_sym_with] = ACTIONS(2022), + [anon_sym_break] = ACTIONS(2022), + [anon_sym_continue] = ACTIONS(2022), + [anon_sym_debugger] = ACTIONS(2022), + [anon_sym_return] = ACTIONS(2022), + [anon_sym_throw] = ACTIONS(2022), + [anon_sym_SEMI] = ACTIONS(2020), + [anon_sym_case] = ACTIONS(2022), + [anon_sym_yield] = ACTIONS(2022), + [anon_sym_LBRACK] = ACTIONS(2020), + [anon_sym_LT] = ACTIONS(2020), + [anon_sym_SLASH] = ACTIONS(2022), + [anon_sym_class] = ACTIONS(2022), + [anon_sym_async] = ACTIONS(2022), + [anon_sym_function] = ACTIONS(2022), + [anon_sym_new] = ACTIONS(2022), + [anon_sym_PLUS] = ACTIONS(2022), + [anon_sym_DASH] = ACTIONS(2022), + [anon_sym_TILDE] = ACTIONS(2020), + [anon_sym_void] = ACTIONS(2022), + [anon_sym_delete] = ACTIONS(2022), + [anon_sym_PLUS_PLUS] = ACTIONS(2020), + [anon_sym_DASH_DASH] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [anon_sym_SQUOTE] = ACTIONS(2020), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2020), + [sym_number] = ACTIONS(2020), + [sym_this] = ACTIONS(2022), + [sym_super] = ACTIONS(2022), + [sym_true] = ACTIONS(2022), + [sym_false] = ACTIONS(2022), + [sym_null] = ACTIONS(2022), + [sym_undefined] = ACTIONS(2022), + [anon_sym_AT] = ACTIONS(2020), + [anon_sym_static] = ACTIONS(2022), + [anon_sym_readonly] = ACTIONS(2022), + [anon_sym_get] = ACTIONS(2022), + [anon_sym_set] = ACTIONS(2022), + [anon_sym_declare] = ACTIONS(2022), + [anon_sym_public] = ACTIONS(2022), + [anon_sym_private] = ACTIONS(2022), + [anon_sym_protected] = ACTIONS(2022), + [anon_sym_module] = ACTIONS(2022), + [anon_sym_any] = ACTIONS(2022), + [anon_sym_number] = ACTIONS(2022), + [anon_sym_boolean] = ACTIONS(2022), + [anon_sym_string] = ACTIONS(2022), + [anon_sym_symbol] = ACTIONS(2022), + [anon_sym_abstract] = ACTIONS(2022), + [anon_sym_interface] = ACTIONS(2022), + [anon_sym_enum] = ACTIONS(2022), }, [1197] = { - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3380), - [anon_sym_export] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_type] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_typeof] = ACTIONS(3380), - [anon_sym_import] = ACTIONS(3380), - [anon_sym_var] = ACTIONS(3380), - [anon_sym_let] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_await] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_with] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_debugger] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_yield] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_SLASH] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_async] = ACTIONS(3380), - [anon_sym_function] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_void] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3378), - [sym_number] = ACTIONS(3378), - [sym_this] = ACTIONS(3380), - [sym_super] = ACTIONS(3380), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [sym_undefined] = ACTIONS(3380), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3380), - [anon_sym_get] = ACTIONS(3380), - [anon_sym_set] = ACTIONS(3380), - [anon_sym_declare] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_module] = ACTIONS(3380), - [anon_sym_any] = ACTIONS(3380), - [anon_sym_number] = ACTIONS(3380), - [anon_sym_boolean] = ACTIONS(3380), - [anon_sym_string] = ACTIONS(3380), - [anon_sym_symbol] = ACTIONS(3380), - [anon_sym_abstract] = ACTIONS(3380), - [anon_sym_interface] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), + [ts_builtin_sym_end] = ACTIONS(3440), + [sym_identifier] = ACTIONS(3442), + [anon_sym_export] = ACTIONS(3442), + [anon_sym_default] = ACTIONS(3442), + [anon_sym_type] = ACTIONS(3442), + [anon_sym_namespace] = ACTIONS(3442), + [anon_sym_LBRACE] = ACTIONS(3440), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_typeof] = ACTIONS(3442), + [anon_sym_import] = ACTIONS(3442), + [anon_sym_var] = ACTIONS(3442), + [anon_sym_let] = ACTIONS(3442), + [anon_sym_const] = ACTIONS(3442), + [anon_sym_BANG] = ACTIONS(3440), + [anon_sym_else] = ACTIONS(3442), + [anon_sym_if] = ACTIONS(3442), + [anon_sym_switch] = ACTIONS(3442), + [anon_sym_for] = ACTIONS(3442), + [anon_sym_LPAREN] = ACTIONS(3440), + [anon_sym_await] = ACTIONS(3442), + [anon_sym_while] = ACTIONS(3442), + [anon_sym_do] = ACTIONS(3442), + [anon_sym_try] = ACTIONS(3442), + [anon_sym_with] = ACTIONS(3442), + [anon_sym_break] = ACTIONS(3442), + [anon_sym_continue] = ACTIONS(3442), + [anon_sym_debugger] = ACTIONS(3442), + [anon_sym_return] = ACTIONS(3442), + [anon_sym_throw] = ACTIONS(3442), + [anon_sym_SEMI] = ACTIONS(3440), + [anon_sym_case] = ACTIONS(3442), + [anon_sym_yield] = ACTIONS(3442), + [anon_sym_LBRACK] = ACTIONS(3440), + [anon_sym_LT] = ACTIONS(3440), + [anon_sym_SLASH] = ACTIONS(3442), + [anon_sym_class] = ACTIONS(3442), + [anon_sym_async] = ACTIONS(3442), + [anon_sym_function] = ACTIONS(3442), + [anon_sym_new] = ACTIONS(3442), + [anon_sym_PLUS] = ACTIONS(3442), + [anon_sym_DASH] = ACTIONS(3442), + [anon_sym_TILDE] = ACTIONS(3440), + [anon_sym_void] = ACTIONS(3442), + [anon_sym_delete] = ACTIONS(3442), + [anon_sym_PLUS_PLUS] = ACTIONS(3440), + [anon_sym_DASH_DASH] = ACTIONS(3440), + [anon_sym_DQUOTE] = ACTIONS(3440), + [anon_sym_SQUOTE] = ACTIONS(3440), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3440), + [sym_number] = ACTIONS(3440), + [sym_this] = ACTIONS(3442), + [sym_super] = ACTIONS(3442), + [sym_true] = ACTIONS(3442), + [sym_false] = ACTIONS(3442), + [sym_null] = ACTIONS(3442), + [sym_undefined] = ACTIONS(3442), + [anon_sym_AT] = ACTIONS(3440), + [anon_sym_static] = ACTIONS(3442), + [anon_sym_readonly] = ACTIONS(3442), + [anon_sym_get] = ACTIONS(3442), + [anon_sym_set] = ACTIONS(3442), + [anon_sym_declare] = ACTIONS(3442), + [anon_sym_public] = ACTIONS(3442), + [anon_sym_private] = ACTIONS(3442), + [anon_sym_protected] = ACTIONS(3442), + [anon_sym_module] = ACTIONS(3442), + [anon_sym_any] = ACTIONS(3442), + [anon_sym_number] = ACTIONS(3442), + [anon_sym_boolean] = ACTIONS(3442), + [anon_sym_string] = ACTIONS(3442), + [anon_sym_symbol] = ACTIONS(3442), + [anon_sym_abstract] = ACTIONS(3442), + [anon_sym_interface] = ACTIONS(3442), + [anon_sym_enum] = ACTIONS(3442), }, [1198] = { - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3380), - [anon_sym_export] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_type] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_typeof] = ACTIONS(3380), - [anon_sym_import] = ACTIONS(3380), - [anon_sym_var] = ACTIONS(3380), - [anon_sym_let] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_await] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_with] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_debugger] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_yield] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_SLASH] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_async] = ACTIONS(3380), - [anon_sym_function] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_void] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3378), - [sym_number] = ACTIONS(3378), - [sym_this] = ACTIONS(3380), - [sym_super] = ACTIONS(3380), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [sym_undefined] = ACTIONS(3380), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3380), - [anon_sym_get] = ACTIONS(3380), - [anon_sym_set] = ACTIONS(3380), - [anon_sym_declare] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_module] = ACTIONS(3380), - [anon_sym_any] = ACTIONS(3380), - [anon_sym_number] = ACTIONS(3380), - [anon_sym_boolean] = ACTIONS(3380), - [anon_sym_string] = ACTIONS(3380), - [anon_sym_symbol] = ACTIONS(3380), - [anon_sym_abstract] = ACTIONS(3380), - [anon_sym_interface] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), + [ts_builtin_sym_end] = ACTIONS(3444), + [sym_identifier] = ACTIONS(3446), + [anon_sym_export] = ACTIONS(3446), + [anon_sym_default] = ACTIONS(3446), + [anon_sym_type] = ACTIONS(3446), + [anon_sym_namespace] = ACTIONS(3446), + [anon_sym_LBRACE] = ACTIONS(3444), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_typeof] = ACTIONS(3446), + [anon_sym_import] = ACTIONS(3446), + [anon_sym_var] = ACTIONS(3446), + [anon_sym_let] = ACTIONS(3446), + [anon_sym_const] = ACTIONS(3446), + [anon_sym_BANG] = ACTIONS(3444), + [anon_sym_else] = ACTIONS(3446), + [anon_sym_if] = ACTIONS(3446), + [anon_sym_switch] = ACTIONS(3446), + [anon_sym_for] = ACTIONS(3446), + [anon_sym_LPAREN] = ACTIONS(3444), + [anon_sym_await] = ACTIONS(3446), + [anon_sym_while] = ACTIONS(3446), + [anon_sym_do] = ACTIONS(3446), + [anon_sym_try] = ACTIONS(3446), + [anon_sym_with] = ACTIONS(3446), + [anon_sym_break] = ACTIONS(3446), + [anon_sym_continue] = ACTIONS(3446), + [anon_sym_debugger] = ACTIONS(3446), + [anon_sym_return] = ACTIONS(3446), + [anon_sym_throw] = ACTIONS(3446), + [anon_sym_SEMI] = ACTIONS(3444), + [anon_sym_case] = ACTIONS(3446), + [anon_sym_yield] = ACTIONS(3446), + [anon_sym_LBRACK] = ACTIONS(3444), + [anon_sym_LT] = ACTIONS(3444), + [anon_sym_SLASH] = ACTIONS(3446), + [anon_sym_class] = ACTIONS(3446), + [anon_sym_async] = ACTIONS(3446), + [anon_sym_function] = ACTIONS(3446), + [anon_sym_new] = ACTIONS(3446), + [anon_sym_PLUS] = ACTIONS(3446), + [anon_sym_DASH] = ACTIONS(3446), + [anon_sym_TILDE] = ACTIONS(3444), + [anon_sym_void] = ACTIONS(3446), + [anon_sym_delete] = ACTIONS(3446), + [anon_sym_PLUS_PLUS] = ACTIONS(3444), + [anon_sym_DASH_DASH] = ACTIONS(3444), + [anon_sym_DQUOTE] = ACTIONS(3444), + [anon_sym_SQUOTE] = ACTIONS(3444), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3444), + [sym_number] = ACTIONS(3444), + [sym_this] = ACTIONS(3446), + [sym_super] = ACTIONS(3446), + [sym_true] = ACTIONS(3446), + [sym_false] = ACTIONS(3446), + [sym_null] = ACTIONS(3446), + [sym_undefined] = ACTIONS(3446), + [anon_sym_AT] = ACTIONS(3444), + [anon_sym_static] = ACTIONS(3446), + [anon_sym_readonly] = ACTIONS(3446), + [anon_sym_get] = ACTIONS(3446), + [anon_sym_set] = ACTIONS(3446), + [anon_sym_declare] = ACTIONS(3446), + [anon_sym_public] = ACTIONS(3446), + [anon_sym_private] = ACTIONS(3446), + [anon_sym_protected] = ACTIONS(3446), + [anon_sym_module] = ACTIONS(3446), + [anon_sym_any] = ACTIONS(3446), + [anon_sym_number] = ACTIONS(3446), + [anon_sym_boolean] = ACTIONS(3446), + [anon_sym_string] = ACTIONS(3446), + [anon_sym_symbol] = ACTIONS(3446), + [anon_sym_abstract] = ACTIONS(3446), + [anon_sym_interface] = ACTIONS(3446), + [anon_sym_enum] = ACTIONS(3446), }, [1199] = { - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3436), - [anon_sym_export] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_type] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_typeof] = ACTIONS(3436), - [anon_sym_import] = ACTIONS(3436), - [anon_sym_var] = ACTIONS(3436), - [anon_sym_let] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3434), - [anon_sym_await] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_with] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_debugger] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_yield] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_async] = ACTIONS(3436), - [anon_sym_function] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_void] = ACTIONS(3436), - [anon_sym_delete] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3434), - [sym_number] = ACTIONS(3434), - [sym_this] = ACTIONS(3436), - [sym_super] = ACTIONS(3436), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [sym_null] = ACTIONS(3436), - [sym_undefined] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3434), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_readonly] = ACTIONS(3436), - [anon_sym_get] = ACTIONS(3436), - [anon_sym_set] = ACTIONS(3436), - [anon_sym_declare] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_module] = ACTIONS(3436), - [anon_sym_any] = ACTIONS(3436), - [anon_sym_number] = ACTIONS(3436), - [anon_sym_boolean] = ACTIONS(3436), - [anon_sym_string] = ACTIONS(3436), - [anon_sym_symbol] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1200] = { - [ts_builtin_sym_end] = ACTIONS(3434), - [sym_identifier] = ACTIONS(3436), - [anon_sym_export] = ACTIONS(3436), - [anon_sym_default] = ACTIONS(3436), - [anon_sym_type] = ACTIONS(3436), - [anon_sym_namespace] = ACTIONS(3436), - [anon_sym_LBRACE] = ACTIONS(3434), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_typeof] = ACTIONS(3436), - [anon_sym_import] = ACTIONS(3436), - [anon_sym_var] = ACTIONS(3436), - [anon_sym_let] = ACTIONS(3436), - [anon_sym_const] = ACTIONS(3436), - [anon_sym_BANG] = ACTIONS(3434), - [anon_sym_else] = ACTIONS(3436), - [anon_sym_if] = ACTIONS(3436), - [anon_sym_switch] = ACTIONS(3436), - [anon_sym_for] = ACTIONS(3436), - [anon_sym_LPAREN] = ACTIONS(3434), - [anon_sym_await] = ACTIONS(3436), - [anon_sym_while] = ACTIONS(3436), - [anon_sym_do] = ACTIONS(3436), - [anon_sym_try] = ACTIONS(3436), - [anon_sym_with] = ACTIONS(3436), - [anon_sym_break] = ACTIONS(3436), - [anon_sym_continue] = ACTIONS(3436), - [anon_sym_debugger] = ACTIONS(3436), - [anon_sym_return] = ACTIONS(3436), - [anon_sym_throw] = ACTIONS(3436), - [anon_sym_SEMI] = ACTIONS(3434), - [anon_sym_case] = ACTIONS(3436), - [anon_sym_yield] = ACTIONS(3436), - [anon_sym_LBRACK] = ACTIONS(3434), - [anon_sym_LT] = ACTIONS(3434), - [anon_sym_SLASH] = ACTIONS(3436), - [anon_sym_class] = ACTIONS(3436), - [anon_sym_async] = ACTIONS(3436), - [anon_sym_function] = ACTIONS(3436), - [anon_sym_new] = ACTIONS(3436), - [anon_sym_PLUS] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_TILDE] = ACTIONS(3434), - [anon_sym_void] = ACTIONS(3436), - [anon_sym_delete] = ACTIONS(3436), - [anon_sym_PLUS_PLUS] = ACTIONS(3434), - [anon_sym_DASH_DASH] = ACTIONS(3434), - [anon_sym_DQUOTE] = ACTIONS(3434), - [anon_sym_SQUOTE] = ACTIONS(3434), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3434), - [sym_number] = ACTIONS(3434), - [sym_this] = ACTIONS(3436), - [sym_super] = ACTIONS(3436), - [sym_true] = ACTIONS(3436), - [sym_false] = ACTIONS(3436), - [sym_null] = ACTIONS(3436), - [sym_undefined] = ACTIONS(3436), - [anon_sym_AT] = ACTIONS(3434), - [anon_sym_static] = ACTIONS(3436), - [anon_sym_readonly] = ACTIONS(3436), - [anon_sym_get] = ACTIONS(3436), - [anon_sym_set] = ACTIONS(3436), - [anon_sym_declare] = ACTIONS(3436), - [anon_sym_public] = ACTIONS(3436), - [anon_sym_private] = ACTIONS(3436), - [anon_sym_protected] = ACTIONS(3436), - [anon_sym_module] = ACTIONS(3436), - [anon_sym_any] = ACTIONS(3436), - [anon_sym_number] = ACTIONS(3436), - [anon_sym_boolean] = ACTIONS(3436), - [anon_sym_string] = ACTIONS(3436), - [anon_sym_symbol] = ACTIONS(3436), - [anon_sym_abstract] = ACTIONS(3436), - [anon_sym_interface] = ACTIONS(3436), - [anon_sym_enum] = ACTIONS(3436), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3450), + [anon_sym_export] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_with] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_debugger] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_function] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3448), + [sym_number] = ACTIONS(3448), + [sym_this] = ACTIONS(3450), + [sym_super] = ACTIONS(3450), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3450), + [anon_sym_declare] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_module] = ACTIONS(3450), + [anon_sym_any] = ACTIONS(3450), + [anon_sym_number] = ACTIONS(3450), + [anon_sym_boolean] = ACTIONS(3450), + [anon_sym_string] = ACTIONS(3450), + [anon_sym_symbol] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), }, [1201] = { - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3380), - [anon_sym_export] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_type] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_typeof] = ACTIONS(3380), - [anon_sym_import] = ACTIONS(3380), - [anon_sym_var] = ACTIONS(3380), - [anon_sym_let] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_await] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_with] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_debugger] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_yield] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_SLASH] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_async] = ACTIONS(3380), - [anon_sym_function] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_void] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3378), - [sym_number] = ACTIONS(3378), - [sym_this] = ACTIONS(3380), - [sym_super] = ACTIONS(3380), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [sym_undefined] = ACTIONS(3380), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3380), - [anon_sym_get] = ACTIONS(3380), - [anon_sym_set] = ACTIONS(3380), - [anon_sym_declare] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_module] = ACTIONS(3380), - [anon_sym_any] = ACTIONS(3380), - [anon_sym_number] = ACTIONS(3380), - [anon_sym_boolean] = ACTIONS(3380), - [anon_sym_string] = ACTIONS(3380), - [anon_sym_symbol] = ACTIONS(3380), - [anon_sym_abstract] = ACTIONS(3380), - [anon_sym_interface] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), + [ts_builtin_sym_end] = ACTIONS(3448), + [sym_identifier] = ACTIONS(3450), + [anon_sym_export] = ACTIONS(3450), + [anon_sym_default] = ACTIONS(3450), + [anon_sym_type] = ACTIONS(3450), + [anon_sym_namespace] = ACTIONS(3450), + [anon_sym_LBRACE] = ACTIONS(3448), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_typeof] = ACTIONS(3450), + [anon_sym_import] = ACTIONS(3450), + [anon_sym_var] = ACTIONS(3450), + [anon_sym_let] = ACTIONS(3450), + [anon_sym_const] = ACTIONS(3450), + [anon_sym_BANG] = ACTIONS(3448), + [anon_sym_else] = ACTIONS(3450), + [anon_sym_if] = ACTIONS(3450), + [anon_sym_switch] = ACTIONS(3450), + [anon_sym_for] = ACTIONS(3450), + [anon_sym_LPAREN] = ACTIONS(3448), + [anon_sym_await] = ACTIONS(3450), + [anon_sym_while] = ACTIONS(3450), + [anon_sym_do] = ACTIONS(3450), + [anon_sym_try] = ACTIONS(3450), + [anon_sym_with] = ACTIONS(3450), + [anon_sym_break] = ACTIONS(3450), + [anon_sym_continue] = ACTIONS(3450), + [anon_sym_debugger] = ACTIONS(3450), + [anon_sym_return] = ACTIONS(3450), + [anon_sym_throw] = ACTIONS(3450), + [anon_sym_SEMI] = ACTIONS(3448), + [anon_sym_case] = ACTIONS(3450), + [anon_sym_yield] = ACTIONS(3450), + [anon_sym_LBRACK] = ACTIONS(3448), + [anon_sym_LT] = ACTIONS(3448), + [anon_sym_SLASH] = ACTIONS(3450), + [anon_sym_class] = ACTIONS(3450), + [anon_sym_async] = ACTIONS(3450), + [anon_sym_function] = ACTIONS(3450), + [anon_sym_new] = ACTIONS(3450), + [anon_sym_PLUS] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_TILDE] = ACTIONS(3448), + [anon_sym_void] = ACTIONS(3450), + [anon_sym_delete] = ACTIONS(3450), + [anon_sym_PLUS_PLUS] = ACTIONS(3448), + [anon_sym_DASH_DASH] = ACTIONS(3448), + [anon_sym_DQUOTE] = ACTIONS(3448), + [anon_sym_SQUOTE] = ACTIONS(3448), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3448), + [sym_number] = ACTIONS(3448), + [sym_this] = ACTIONS(3450), + [sym_super] = ACTIONS(3450), + [sym_true] = ACTIONS(3450), + [sym_false] = ACTIONS(3450), + [sym_null] = ACTIONS(3450), + [sym_undefined] = ACTIONS(3450), + [anon_sym_AT] = ACTIONS(3448), + [anon_sym_static] = ACTIONS(3450), + [anon_sym_readonly] = ACTIONS(3450), + [anon_sym_get] = ACTIONS(3450), + [anon_sym_set] = ACTIONS(3450), + [anon_sym_declare] = ACTIONS(3450), + [anon_sym_public] = ACTIONS(3450), + [anon_sym_private] = ACTIONS(3450), + [anon_sym_protected] = ACTIONS(3450), + [anon_sym_module] = ACTIONS(3450), + [anon_sym_any] = ACTIONS(3450), + [anon_sym_number] = ACTIONS(3450), + [anon_sym_boolean] = ACTIONS(3450), + [anon_sym_string] = ACTIONS(3450), + [anon_sym_symbol] = ACTIONS(3450), + [anon_sym_abstract] = ACTIONS(3450), + [anon_sym_interface] = ACTIONS(3450), + [anon_sym_enum] = ACTIONS(3450), }, [1202] = { - [ts_builtin_sym_end] = ACTIONS(3438), - [sym_identifier] = ACTIONS(3440), - [anon_sym_export] = ACTIONS(3440), - [anon_sym_default] = ACTIONS(3440), - [anon_sym_type] = ACTIONS(3440), - [anon_sym_namespace] = ACTIONS(3440), - [anon_sym_LBRACE] = ACTIONS(3438), - [anon_sym_RBRACE] = ACTIONS(3438), - [anon_sym_typeof] = ACTIONS(3440), - [anon_sym_import] = ACTIONS(3440), - [anon_sym_var] = ACTIONS(3440), - [anon_sym_let] = ACTIONS(3440), - [anon_sym_const] = ACTIONS(3440), - [anon_sym_BANG] = ACTIONS(3438), - [anon_sym_else] = ACTIONS(3440), - [anon_sym_if] = ACTIONS(3440), - [anon_sym_switch] = ACTIONS(3440), - [anon_sym_for] = ACTIONS(3440), - [anon_sym_LPAREN] = ACTIONS(3438), - [anon_sym_await] = ACTIONS(3440), - [anon_sym_while] = ACTIONS(3440), - [anon_sym_do] = ACTIONS(3440), - [anon_sym_try] = ACTIONS(3440), - [anon_sym_with] = ACTIONS(3440), - [anon_sym_break] = ACTIONS(3440), - [anon_sym_continue] = ACTIONS(3440), - [anon_sym_debugger] = ACTIONS(3440), - [anon_sym_return] = ACTIONS(3440), - [anon_sym_throw] = ACTIONS(3440), - [anon_sym_SEMI] = ACTIONS(3438), - [anon_sym_case] = ACTIONS(3440), - [anon_sym_yield] = ACTIONS(3440), - [anon_sym_LBRACK] = ACTIONS(3438), - [anon_sym_LT] = ACTIONS(3438), - [anon_sym_SLASH] = ACTIONS(3440), - [anon_sym_class] = ACTIONS(3440), - [anon_sym_async] = ACTIONS(3440), - [anon_sym_function] = ACTIONS(3440), - [anon_sym_new] = ACTIONS(3440), - [anon_sym_PLUS] = ACTIONS(3440), - [anon_sym_DASH] = ACTIONS(3440), - [anon_sym_TILDE] = ACTIONS(3438), - [anon_sym_void] = ACTIONS(3440), - [anon_sym_delete] = ACTIONS(3440), - [anon_sym_PLUS_PLUS] = ACTIONS(3438), - [anon_sym_DASH_DASH] = ACTIONS(3438), - [anon_sym_DQUOTE] = ACTIONS(3438), - [anon_sym_SQUOTE] = ACTIONS(3438), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3438), - [sym_number] = ACTIONS(3438), - [sym_this] = ACTIONS(3440), - [sym_super] = ACTIONS(3440), - [sym_true] = ACTIONS(3440), - [sym_false] = ACTIONS(3440), - [sym_null] = ACTIONS(3440), - [sym_undefined] = ACTIONS(3440), - [anon_sym_AT] = ACTIONS(3438), - [anon_sym_static] = ACTIONS(3440), - [anon_sym_readonly] = ACTIONS(3440), - [anon_sym_get] = ACTIONS(3440), - [anon_sym_set] = ACTIONS(3440), - [anon_sym_declare] = ACTIONS(3440), - [anon_sym_public] = ACTIONS(3440), - [anon_sym_private] = ACTIONS(3440), - [anon_sym_protected] = ACTIONS(3440), - [anon_sym_module] = ACTIONS(3440), - [anon_sym_any] = ACTIONS(3440), - [anon_sym_number] = ACTIONS(3440), - [anon_sym_boolean] = ACTIONS(3440), - [anon_sym_string] = ACTIONS(3440), - [anon_sym_symbol] = ACTIONS(3440), - [anon_sym_abstract] = ACTIONS(3440), - [anon_sym_interface] = ACTIONS(3440), - [anon_sym_enum] = ACTIONS(3440), + [ts_builtin_sym_end] = ACTIONS(3452), + [sym_identifier] = ACTIONS(3454), + [anon_sym_export] = ACTIONS(3454), + [anon_sym_default] = ACTIONS(3454), + [anon_sym_type] = ACTIONS(3454), + [anon_sym_namespace] = ACTIONS(3454), + [anon_sym_LBRACE] = ACTIONS(3452), + [anon_sym_RBRACE] = ACTIONS(3452), + [anon_sym_typeof] = ACTIONS(3454), + [anon_sym_import] = ACTIONS(3454), + [anon_sym_var] = ACTIONS(3454), + [anon_sym_let] = ACTIONS(3454), + [anon_sym_const] = ACTIONS(3454), + [anon_sym_BANG] = ACTIONS(3452), + [anon_sym_else] = ACTIONS(3454), + [anon_sym_if] = ACTIONS(3454), + [anon_sym_switch] = ACTIONS(3454), + [anon_sym_for] = ACTIONS(3454), + [anon_sym_LPAREN] = ACTIONS(3452), + [anon_sym_await] = ACTIONS(3454), + [anon_sym_while] = ACTIONS(3454), + [anon_sym_do] = ACTIONS(3454), + [anon_sym_try] = ACTIONS(3454), + [anon_sym_with] = ACTIONS(3454), + [anon_sym_break] = ACTIONS(3454), + [anon_sym_continue] = ACTIONS(3454), + [anon_sym_debugger] = ACTIONS(3454), + [anon_sym_return] = ACTIONS(3454), + [anon_sym_throw] = ACTIONS(3454), + [anon_sym_SEMI] = ACTIONS(3452), + [anon_sym_case] = ACTIONS(3454), + [anon_sym_yield] = ACTIONS(3454), + [anon_sym_LBRACK] = ACTIONS(3452), + [anon_sym_LT] = ACTIONS(3452), + [anon_sym_SLASH] = ACTIONS(3454), + [anon_sym_class] = ACTIONS(3454), + [anon_sym_async] = ACTIONS(3454), + [anon_sym_function] = ACTIONS(3454), + [anon_sym_new] = ACTIONS(3454), + [anon_sym_PLUS] = ACTIONS(3454), + [anon_sym_DASH] = ACTIONS(3454), + [anon_sym_TILDE] = ACTIONS(3452), + [anon_sym_void] = ACTIONS(3454), + [anon_sym_delete] = ACTIONS(3454), + [anon_sym_PLUS_PLUS] = ACTIONS(3452), + [anon_sym_DASH_DASH] = ACTIONS(3452), + [anon_sym_DQUOTE] = ACTIONS(3452), + [anon_sym_SQUOTE] = ACTIONS(3452), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3452), + [sym_number] = ACTIONS(3452), + [sym_this] = ACTIONS(3454), + [sym_super] = ACTIONS(3454), + [sym_true] = ACTIONS(3454), + [sym_false] = ACTIONS(3454), + [sym_null] = ACTIONS(3454), + [sym_undefined] = ACTIONS(3454), + [anon_sym_AT] = ACTIONS(3452), + [anon_sym_static] = ACTIONS(3454), + [anon_sym_readonly] = ACTIONS(3454), + [anon_sym_get] = ACTIONS(3454), + [anon_sym_set] = ACTIONS(3454), + [anon_sym_declare] = ACTIONS(3454), + [anon_sym_public] = ACTIONS(3454), + [anon_sym_private] = ACTIONS(3454), + [anon_sym_protected] = ACTIONS(3454), + [anon_sym_module] = ACTIONS(3454), + [anon_sym_any] = ACTIONS(3454), + [anon_sym_number] = ACTIONS(3454), + [anon_sym_boolean] = ACTIONS(3454), + [anon_sym_string] = ACTIONS(3454), + [anon_sym_symbol] = ACTIONS(3454), + [anon_sym_abstract] = ACTIONS(3454), + [anon_sym_interface] = ACTIONS(3454), + [anon_sym_enum] = ACTIONS(3454), }, [1203] = { - [ts_builtin_sym_end] = ACTIONS(2056), - [sym_identifier] = ACTIONS(2058), - [anon_sym_export] = ACTIONS(2058), - [anon_sym_default] = ACTIONS(2058), - [anon_sym_type] = ACTIONS(2058), - [anon_sym_namespace] = ACTIONS(2058), - [anon_sym_LBRACE] = ACTIONS(2056), - [anon_sym_RBRACE] = ACTIONS(2056), - [anon_sym_typeof] = ACTIONS(2058), - [anon_sym_import] = ACTIONS(2058), - [anon_sym_var] = ACTIONS(2058), - [anon_sym_let] = ACTIONS(2058), - [anon_sym_const] = ACTIONS(2058), - [anon_sym_BANG] = ACTIONS(2056), - [anon_sym_else] = ACTIONS(2058), - [anon_sym_if] = ACTIONS(2058), - [anon_sym_switch] = ACTIONS(2058), - [anon_sym_for] = ACTIONS(2058), - [anon_sym_LPAREN] = ACTIONS(2056), - [anon_sym_await] = ACTIONS(2058), - [anon_sym_while] = ACTIONS(2058), - [anon_sym_do] = ACTIONS(2058), - [anon_sym_try] = ACTIONS(2058), - [anon_sym_with] = ACTIONS(2058), - [anon_sym_break] = ACTIONS(2058), - [anon_sym_continue] = ACTIONS(2058), - [anon_sym_debugger] = ACTIONS(2058), - [anon_sym_return] = ACTIONS(2058), - [anon_sym_throw] = ACTIONS(2058), - [anon_sym_SEMI] = ACTIONS(2056), - [anon_sym_case] = ACTIONS(2058), - [anon_sym_yield] = ACTIONS(2058), - [anon_sym_LBRACK] = ACTIONS(2056), - [anon_sym_LT] = ACTIONS(2056), - [anon_sym_SLASH] = ACTIONS(2058), - [anon_sym_class] = ACTIONS(2058), - [anon_sym_async] = ACTIONS(2058), - [anon_sym_function] = ACTIONS(2058), - [anon_sym_new] = ACTIONS(2058), - [anon_sym_PLUS] = ACTIONS(2058), - [anon_sym_DASH] = ACTIONS(2058), - [anon_sym_TILDE] = ACTIONS(2056), - [anon_sym_void] = ACTIONS(2058), - [anon_sym_delete] = ACTIONS(2058), - [anon_sym_PLUS_PLUS] = ACTIONS(2056), - [anon_sym_DASH_DASH] = ACTIONS(2056), - [anon_sym_DQUOTE] = ACTIONS(2056), - [anon_sym_SQUOTE] = ACTIONS(2056), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(2056), - [sym_number] = ACTIONS(2056), - [sym_this] = ACTIONS(2058), - [sym_super] = ACTIONS(2058), - [sym_true] = ACTIONS(2058), - [sym_false] = ACTIONS(2058), - [sym_null] = ACTIONS(2058), - [sym_undefined] = ACTIONS(2058), - [anon_sym_AT] = ACTIONS(2056), - [anon_sym_static] = ACTIONS(2058), - [anon_sym_readonly] = ACTIONS(2058), - [anon_sym_get] = ACTIONS(2058), - [anon_sym_set] = ACTIONS(2058), - [anon_sym_declare] = ACTIONS(2058), - [anon_sym_public] = ACTIONS(2058), - [anon_sym_private] = ACTIONS(2058), - [anon_sym_protected] = ACTIONS(2058), - [anon_sym_module] = ACTIONS(2058), - [anon_sym_any] = ACTIONS(2058), - [anon_sym_number] = ACTIONS(2058), - [anon_sym_boolean] = ACTIONS(2058), - [anon_sym_string] = ACTIONS(2058), - [anon_sym_symbol] = ACTIONS(2058), - [anon_sym_abstract] = ACTIONS(2058), - [anon_sym_interface] = ACTIONS(2058), - [anon_sym_enum] = ACTIONS(2058), + [ts_builtin_sym_end] = ACTIONS(3456), + [sym_identifier] = ACTIONS(3458), + [anon_sym_export] = ACTIONS(3458), + [anon_sym_default] = ACTIONS(3458), + [anon_sym_type] = ACTIONS(3458), + [anon_sym_namespace] = ACTIONS(3458), + [anon_sym_LBRACE] = ACTIONS(3456), + [anon_sym_RBRACE] = ACTIONS(3456), + [anon_sym_typeof] = ACTIONS(3458), + [anon_sym_import] = ACTIONS(3458), + [anon_sym_var] = ACTIONS(3458), + [anon_sym_let] = ACTIONS(3458), + [anon_sym_const] = ACTIONS(3458), + [anon_sym_BANG] = ACTIONS(3456), + [anon_sym_else] = ACTIONS(3458), + [anon_sym_if] = ACTIONS(3458), + [anon_sym_switch] = ACTIONS(3458), + [anon_sym_for] = ACTIONS(3458), + [anon_sym_LPAREN] = ACTIONS(3456), + [anon_sym_await] = ACTIONS(3458), + [anon_sym_while] = ACTIONS(3458), + [anon_sym_do] = ACTIONS(3458), + [anon_sym_try] = ACTIONS(3458), + [anon_sym_with] = ACTIONS(3458), + [anon_sym_break] = ACTIONS(3458), + [anon_sym_continue] = ACTIONS(3458), + [anon_sym_debugger] = ACTIONS(3458), + [anon_sym_return] = ACTIONS(3458), + [anon_sym_throw] = ACTIONS(3458), + [anon_sym_SEMI] = ACTIONS(3456), + [anon_sym_case] = ACTIONS(3458), + [anon_sym_yield] = ACTIONS(3458), + [anon_sym_LBRACK] = ACTIONS(3456), + [anon_sym_LT] = ACTIONS(3456), + [anon_sym_SLASH] = ACTIONS(3458), + [anon_sym_class] = ACTIONS(3458), + [anon_sym_async] = ACTIONS(3458), + [anon_sym_function] = ACTIONS(3458), + [anon_sym_new] = ACTIONS(3458), + [anon_sym_PLUS] = ACTIONS(3458), + [anon_sym_DASH] = ACTIONS(3458), + [anon_sym_TILDE] = ACTIONS(3456), + [anon_sym_void] = ACTIONS(3458), + [anon_sym_delete] = ACTIONS(3458), + [anon_sym_PLUS_PLUS] = ACTIONS(3456), + [anon_sym_DASH_DASH] = ACTIONS(3456), + [anon_sym_DQUOTE] = ACTIONS(3456), + [anon_sym_SQUOTE] = ACTIONS(3456), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3456), + [sym_number] = ACTIONS(3456), + [sym_this] = ACTIONS(3458), + [sym_super] = ACTIONS(3458), + [sym_true] = ACTIONS(3458), + [sym_false] = ACTIONS(3458), + [sym_null] = ACTIONS(3458), + [sym_undefined] = ACTIONS(3458), + [anon_sym_AT] = ACTIONS(3456), + [anon_sym_static] = ACTIONS(3458), + [anon_sym_readonly] = ACTIONS(3458), + [anon_sym_get] = ACTIONS(3458), + [anon_sym_set] = ACTIONS(3458), + [anon_sym_declare] = ACTIONS(3458), + [anon_sym_public] = ACTIONS(3458), + [anon_sym_private] = ACTIONS(3458), + [anon_sym_protected] = ACTIONS(3458), + [anon_sym_module] = ACTIONS(3458), + [anon_sym_any] = ACTIONS(3458), + [anon_sym_number] = ACTIONS(3458), + [anon_sym_boolean] = ACTIONS(3458), + [anon_sym_string] = ACTIONS(3458), + [anon_sym_symbol] = ACTIONS(3458), + [anon_sym_abstract] = ACTIONS(3458), + [anon_sym_interface] = ACTIONS(3458), + [anon_sym_enum] = ACTIONS(3458), }, [1204] = { - [ts_builtin_sym_end] = ACTIONS(3442), - [sym_identifier] = ACTIONS(3444), - [anon_sym_export] = ACTIONS(3444), - [anon_sym_default] = ACTIONS(3444), - [anon_sym_type] = ACTIONS(3444), - [anon_sym_namespace] = ACTIONS(3444), - [anon_sym_LBRACE] = ACTIONS(3442), - [anon_sym_RBRACE] = ACTIONS(3442), - [anon_sym_typeof] = ACTIONS(3444), - [anon_sym_import] = ACTIONS(3444), - [anon_sym_var] = ACTIONS(3444), - [anon_sym_let] = ACTIONS(3444), - [anon_sym_const] = ACTIONS(3444), - [anon_sym_BANG] = ACTIONS(3442), - [anon_sym_else] = ACTIONS(3444), - [anon_sym_if] = ACTIONS(3444), - [anon_sym_switch] = ACTIONS(3444), - [anon_sym_for] = ACTIONS(3444), - [anon_sym_LPAREN] = ACTIONS(3442), - [anon_sym_await] = ACTIONS(3444), - [anon_sym_while] = ACTIONS(3444), - [anon_sym_do] = ACTIONS(3444), - [anon_sym_try] = ACTIONS(3444), - [anon_sym_with] = ACTIONS(3444), - [anon_sym_break] = ACTIONS(3444), - [anon_sym_continue] = ACTIONS(3444), - [anon_sym_debugger] = ACTIONS(3444), - [anon_sym_return] = ACTIONS(3444), - [anon_sym_throw] = ACTIONS(3444), - [anon_sym_SEMI] = ACTIONS(3442), - [anon_sym_case] = ACTIONS(3444), - [anon_sym_yield] = ACTIONS(3444), - [anon_sym_LBRACK] = ACTIONS(3442), - [anon_sym_LT] = ACTIONS(3442), - [anon_sym_SLASH] = ACTIONS(3444), - [anon_sym_class] = ACTIONS(3444), - [anon_sym_async] = ACTIONS(3444), - [anon_sym_function] = ACTIONS(3444), - [anon_sym_new] = ACTIONS(3444), - [anon_sym_PLUS] = ACTIONS(3444), - [anon_sym_DASH] = ACTIONS(3444), - [anon_sym_TILDE] = ACTIONS(3442), - [anon_sym_void] = ACTIONS(3444), - [anon_sym_delete] = ACTIONS(3444), - [anon_sym_PLUS_PLUS] = ACTIONS(3442), - [anon_sym_DASH_DASH] = ACTIONS(3442), - [anon_sym_DQUOTE] = ACTIONS(3442), - [anon_sym_SQUOTE] = ACTIONS(3442), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3442), - [sym_number] = ACTIONS(3442), - [sym_this] = ACTIONS(3444), - [sym_super] = ACTIONS(3444), - [sym_true] = ACTIONS(3444), - [sym_false] = ACTIONS(3444), - [sym_null] = ACTIONS(3444), - [sym_undefined] = ACTIONS(3444), - [anon_sym_AT] = ACTIONS(3442), - [anon_sym_static] = ACTIONS(3444), - [anon_sym_readonly] = ACTIONS(3444), - [anon_sym_get] = ACTIONS(3444), - [anon_sym_set] = ACTIONS(3444), - [anon_sym_declare] = ACTIONS(3444), - [anon_sym_public] = ACTIONS(3444), - [anon_sym_private] = ACTIONS(3444), - [anon_sym_protected] = ACTIONS(3444), - [anon_sym_module] = ACTIONS(3444), - [anon_sym_any] = ACTIONS(3444), - [anon_sym_number] = ACTIONS(3444), - [anon_sym_boolean] = ACTIONS(3444), - [anon_sym_string] = ACTIONS(3444), - [anon_sym_symbol] = ACTIONS(3444), - [anon_sym_abstract] = ACTIONS(3444), - [anon_sym_interface] = ACTIONS(3444), - [anon_sym_enum] = ACTIONS(3444), + [ts_builtin_sym_end] = ACTIONS(3460), + [sym_identifier] = ACTIONS(3462), + [anon_sym_export] = ACTIONS(3462), + [anon_sym_default] = ACTIONS(3462), + [anon_sym_type] = ACTIONS(3462), + [anon_sym_namespace] = ACTIONS(3462), + [anon_sym_LBRACE] = ACTIONS(3460), + [anon_sym_RBRACE] = ACTIONS(3460), + [anon_sym_typeof] = ACTIONS(3462), + [anon_sym_import] = ACTIONS(3462), + [anon_sym_var] = ACTIONS(3462), + [anon_sym_let] = ACTIONS(3462), + [anon_sym_const] = ACTIONS(3462), + [anon_sym_BANG] = ACTIONS(3460), + [anon_sym_else] = ACTIONS(3462), + [anon_sym_if] = ACTIONS(3462), + [anon_sym_switch] = ACTIONS(3462), + [anon_sym_for] = ACTIONS(3462), + [anon_sym_LPAREN] = ACTIONS(3460), + [anon_sym_await] = ACTIONS(3462), + [anon_sym_while] = ACTIONS(3462), + [anon_sym_do] = ACTIONS(3462), + [anon_sym_try] = ACTIONS(3462), + [anon_sym_with] = ACTIONS(3462), + [anon_sym_break] = ACTIONS(3462), + [anon_sym_continue] = ACTIONS(3462), + [anon_sym_debugger] = ACTIONS(3462), + [anon_sym_return] = ACTIONS(3462), + [anon_sym_throw] = ACTIONS(3462), + [anon_sym_SEMI] = ACTIONS(3460), + [anon_sym_case] = ACTIONS(3462), + [anon_sym_yield] = ACTIONS(3462), + [anon_sym_LBRACK] = ACTIONS(3460), + [anon_sym_LT] = ACTIONS(3460), + [anon_sym_SLASH] = ACTIONS(3462), + [anon_sym_class] = ACTIONS(3462), + [anon_sym_async] = ACTIONS(3462), + [anon_sym_function] = ACTIONS(3462), + [anon_sym_new] = ACTIONS(3462), + [anon_sym_PLUS] = ACTIONS(3462), + [anon_sym_DASH] = ACTIONS(3462), + [anon_sym_TILDE] = ACTIONS(3460), + [anon_sym_void] = ACTIONS(3462), + [anon_sym_delete] = ACTIONS(3462), + [anon_sym_PLUS_PLUS] = ACTIONS(3460), + [anon_sym_DASH_DASH] = ACTIONS(3460), + [anon_sym_DQUOTE] = ACTIONS(3460), + [anon_sym_SQUOTE] = ACTIONS(3460), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3460), + [sym_number] = ACTIONS(3460), + [sym_this] = ACTIONS(3462), + [sym_super] = ACTIONS(3462), + [sym_true] = ACTIONS(3462), + [sym_false] = ACTIONS(3462), + [sym_null] = ACTIONS(3462), + [sym_undefined] = ACTIONS(3462), + [anon_sym_AT] = ACTIONS(3460), + [anon_sym_static] = ACTIONS(3462), + [anon_sym_readonly] = ACTIONS(3462), + [anon_sym_get] = ACTIONS(3462), + [anon_sym_set] = ACTIONS(3462), + [anon_sym_declare] = ACTIONS(3462), + [anon_sym_public] = ACTIONS(3462), + [anon_sym_private] = ACTIONS(3462), + [anon_sym_protected] = ACTIONS(3462), + [anon_sym_module] = ACTIONS(3462), + [anon_sym_any] = ACTIONS(3462), + [anon_sym_number] = ACTIONS(3462), + [anon_sym_boolean] = ACTIONS(3462), + [anon_sym_string] = ACTIONS(3462), + [anon_sym_symbol] = ACTIONS(3462), + [anon_sym_abstract] = ACTIONS(3462), + [anon_sym_interface] = ACTIONS(3462), + [anon_sym_enum] = ACTIONS(3462), }, [1205] = { - [ts_builtin_sym_end] = ACTIONS(3446), - [sym_identifier] = ACTIONS(3448), - [anon_sym_export] = ACTIONS(3448), - [anon_sym_default] = ACTIONS(3448), - [anon_sym_type] = ACTIONS(3448), - [anon_sym_namespace] = ACTIONS(3448), - [anon_sym_LBRACE] = ACTIONS(3446), - [anon_sym_RBRACE] = ACTIONS(3446), - [anon_sym_typeof] = ACTIONS(3448), - [anon_sym_import] = ACTIONS(3448), - [anon_sym_var] = ACTIONS(3448), - [anon_sym_let] = ACTIONS(3448), - [anon_sym_const] = ACTIONS(3448), - [anon_sym_BANG] = ACTIONS(3446), - [anon_sym_else] = ACTIONS(3448), - [anon_sym_if] = ACTIONS(3448), - [anon_sym_switch] = ACTIONS(3448), - [anon_sym_for] = ACTIONS(3448), - [anon_sym_LPAREN] = ACTIONS(3446), - [anon_sym_await] = ACTIONS(3448), - [anon_sym_while] = ACTIONS(3448), - [anon_sym_do] = ACTIONS(3448), - [anon_sym_try] = ACTIONS(3448), - [anon_sym_with] = ACTIONS(3448), - [anon_sym_break] = ACTIONS(3448), - [anon_sym_continue] = ACTIONS(3448), - [anon_sym_debugger] = ACTIONS(3448), - [anon_sym_return] = ACTIONS(3448), - [anon_sym_throw] = ACTIONS(3448), - [anon_sym_SEMI] = ACTIONS(3446), - [anon_sym_case] = ACTIONS(3448), - [anon_sym_yield] = ACTIONS(3448), - [anon_sym_LBRACK] = ACTIONS(3446), - [anon_sym_LT] = ACTIONS(3446), - [anon_sym_SLASH] = ACTIONS(3448), - [anon_sym_class] = ACTIONS(3448), - [anon_sym_async] = ACTIONS(3448), - [anon_sym_function] = ACTIONS(3448), - [anon_sym_new] = ACTIONS(3448), - [anon_sym_PLUS] = ACTIONS(3448), - [anon_sym_DASH] = ACTIONS(3448), - [anon_sym_TILDE] = ACTIONS(3446), - [anon_sym_void] = ACTIONS(3448), - [anon_sym_delete] = ACTIONS(3448), - [anon_sym_PLUS_PLUS] = ACTIONS(3446), - [anon_sym_DASH_DASH] = ACTIONS(3446), - [anon_sym_DQUOTE] = ACTIONS(3446), - [anon_sym_SQUOTE] = ACTIONS(3446), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3446), - [sym_number] = ACTIONS(3446), - [sym_this] = ACTIONS(3448), - [sym_super] = ACTIONS(3448), - [sym_true] = ACTIONS(3448), - [sym_false] = ACTIONS(3448), - [sym_null] = ACTIONS(3448), - [sym_undefined] = ACTIONS(3448), - [anon_sym_AT] = ACTIONS(3446), - [anon_sym_static] = ACTIONS(3448), - [anon_sym_readonly] = ACTIONS(3448), - [anon_sym_get] = ACTIONS(3448), - [anon_sym_set] = ACTIONS(3448), - [anon_sym_declare] = ACTIONS(3448), - [anon_sym_public] = ACTIONS(3448), - [anon_sym_private] = ACTIONS(3448), - [anon_sym_protected] = ACTIONS(3448), - [anon_sym_module] = ACTIONS(3448), - [anon_sym_any] = ACTIONS(3448), - [anon_sym_number] = ACTIONS(3448), - [anon_sym_boolean] = ACTIONS(3448), - [anon_sym_string] = ACTIONS(3448), - [anon_sym_symbol] = ACTIONS(3448), - [anon_sym_abstract] = ACTIONS(3448), - [anon_sym_interface] = ACTIONS(3448), - [anon_sym_enum] = ACTIONS(3448), + [ts_builtin_sym_end] = ACTIONS(1994), + [sym_identifier] = ACTIONS(1996), + [anon_sym_export] = ACTIONS(1996), + [anon_sym_default] = ACTIONS(1996), + [anon_sym_type] = ACTIONS(1996), + [anon_sym_namespace] = ACTIONS(1996), + [anon_sym_LBRACE] = ACTIONS(1994), + [anon_sym_RBRACE] = ACTIONS(1994), + [anon_sym_typeof] = ACTIONS(1996), + [anon_sym_import] = ACTIONS(1996), + [anon_sym_var] = ACTIONS(1996), + [anon_sym_let] = ACTIONS(1996), + [anon_sym_const] = ACTIONS(1996), + [anon_sym_BANG] = ACTIONS(1994), + [anon_sym_else] = ACTIONS(1996), + [anon_sym_if] = ACTIONS(1996), + [anon_sym_switch] = ACTIONS(1996), + [anon_sym_for] = ACTIONS(1996), + [anon_sym_LPAREN] = ACTIONS(1994), + [anon_sym_await] = ACTIONS(1996), + [anon_sym_while] = ACTIONS(1996), + [anon_sym_do] = ACTIONS(1996), + [anon_sym_try] = ACTIONS(1996), + [anon_sym_with] = ACTIONS(1996), + [anon_sym_break] = ACTIONS(1996), + [anon_sym_continue] = ACTIONS(1996), + [anon_sym_debugger] = ACTIONS(1996), + [anon_sym_return] = ACTIONS(1996), + [anon_sym_throw] = ACTIONS(1996), + [anon_sym_SEMI] = ACTIONS(1994), + [anon_sym_case] = ACTIONS(1996), + [anon_sym_yield] = ACTIONS(1996), + [anon_sym_LBRACK] = ACTIONS(1994), + [anon_sym_LT] = ACTIONS(1994), + [anon_sym_SLASH] = ACTIONS(1996), + [anon_sym_class] = ACTIONS(1996), + [anon_sym_async] = ACTIONS(1996), + [anon_sym_function] = ACTIONS(1996), + [anon_sym_new] = ACTIONS(1996), + [anon_sym_PLUS] = ACTIONS(1996), + [anon_sym_DASH] = ACTIONS(1996), + [anon_sym_TILDE] = ACTIONS(1994), + [anon_sym_void] = ACTIONS(1996), + [anon_sym_delete] = ACTIONS(1996), + [anon_sym_PLUS_PLUS] = ACTIONS(1994), + [anon_sym_DASH_DASH] = ACTIONS(1994), + [anon_sym_DQUOTE] = ACTIONS(1994), + [anon_sym_SQUOTE] = ACTIONS(1994), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1994), + [sym_number] = ACTIONS(1994), + [sym_this] = ACTIONS(1996), + [sym_super] = ACTIONS(1996), + [sym_true] = ACTIONS(1996), + [sym_false] = ACTIONS(1996), + [sym_null] = ACTIONS(1996), + [sym_undefined] = ACTIONS(1996), + [anon_sym_AT] = ACTIONS(1994), + [anon_sym_static] = ACTIONS(1996), + [anon_sym_readonly] = ACTIONS(1996), + [anon_sym_get] = ACTIONS(1996), + [anon_sym_set] = ACTIONS(1996), + [anon_sym_declare] = ACTIONS(1996), + [anon_sym_public] = ACTIONS(1996), + [anon_sym_private] = ACTIONS(1996), + [anon_sym_protected] = ACTIONS(1996), + [anon_sym_module] = ACTIONS(1996), + [anon_sym_any] = ACTIONS(1996), + [anon_sym_number] = ACTIONS(1996), + [anon_sym_boolean] = ACTIONS(1996), + [anon_sym_string] = ACTIONS(1996), + [anon_sym_symbol] = ACTIONS(1996), + [anon_sym_abstract] = ACTIONS(1996), + [anon_sym_interface] = ACTIONS(1996), + [anon_sym_enum] = ACTIONS(1996), }, [1206] = { - [ts_builtin_sym_end] = ACTIONS(3450), - [sym_identifier] = ACTIONS(3452), - [anon_sym_export] = ACTIONS(3452), - [anon_sym_default] = ACTIONS(3452), - [anon_sym_type] = ACTIONS(3452), - [anon_sym_namespace] = ACTIONS(3452), - [anon_sym_LBRACE] = ACTIONS(3450), - [anon_sym_RBRACE] = ACTIONS(3450), - [anon_sym_typeof] = ACTIONS(3452), - [anon_sym_import] = ACTIONS(3452), - [anon_sym_var] = ACTIONS(3452), - [anon_sym_let] = ACTIONS(3452), - [anon_sym_const] = ACTIONS(3452), - [anon_sym_BANG] = ACTIONS(3450), - [anon_sym_else] = ACTIONS(3452), - [anon_sym_if] = ACTIONS(3452), - [anon_sym_switch] = ACTIONS(3452), - [anon_sym_for] = ACTIONS(3452), - [anon_sym_LPAREN] = ACTIONS(3450), - [anon_sym_await] = ACTIONS(3452), - [anon_sym_while] = ACTIONS(3452), - [anon_sym_do] = ACTIONS(3452), - [anon_sym_try] = ACTIONS(3452), - [anon_sym_with] = ACTIONS(3452), - [anon_sym_break] = ACTIONS(3452), - [anon_sym_continue] = ACTIONS(3452), - [anon_sym_debugger] = ACTIONS(3452), - [anon_sym_return] = ACTIONS(3452), - [anon_sym_throw] = ACTIONS(3452), - [anon_sym_SEMI] = ACTIONS(3450), - [anon_sym_case] = ACTIONS(3452), - [anon_sym_yield] = ACTIONS(3452), - [anon_sym_LBRACK] = ACTIONS(3450), - [anon_sym_LT] = ACTIONS(3450), - [anon_sym_SLASH] = ACTIONS(3452), - [anon_sym_class] = ACTIONS(3452), - [anon_sym_async] = ACTIONS(3452), - [anon_sym_function] = ACTIONS(3452), - [anon_sym_new] = ACTIONS(3452), - [anon_sym_PLUS] = ACTIONS(3452), - [anon_sym_DASH] = ACTIONS(3452), - [anon_sym_TILDE] = ACTIONS(3450), - [anon_sym_void] = ACTIONS(3452), - [anon_sym_delete] = ACTIONS(3452), - [anon_sym_PLUS_PLUS] = ACTIONS(3450), - [anon_sym_DASH_DASH] = ACTIONS(3450), - [anon_sym_DQUOTE] = ACTIONS(3450), - [anon_sym_SQUOTE] = ACTIONS(3450), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3450), - [sym_number] = ACTIONS(3450), - [sym_this] = ACTIONS(3452), - [sym_super] = ACTIONS(3452), - [sym_true] = ACTIONS(3452), - [sym_false] = ACTIONS(3452), - [sym_null] = ACTIONS(3452), - [sym_undefined] = ACTIONS(3452), - [anon_sym_AT] = ACTIONS(3450), - [anon_sym_static] = ACTIONS(3452), - [anon_sym_readonly] = ACTIONS(3452), - [anon_sym_get] = ACTIONS(3452), - [anon_sym_set] = ACTIONS(3452), - [anon_sym_declare] = ACTIONS(3452), - [anon_sym_public] = ACTIONS(3452), - [anon_sym_private] = ACTIONS(3452), - [anon_sym_protected] = ACTIONS(3452), - [anon_sym_module] = ACTIONS(3452), - [anon_sym_any] = ACTIONS(3452), - [anon_sym_number] = ACTIONS(3452), - [anon_sym_boolean] = ACTIONS(3452), - [anon_sym_string] = ACTIONS(3452), - [anon_sym_symbol] = ACTIONS(3452), - [anon_sym_abstract] = ACTIONS(3452), - [anon_sym_interface] = ACTIONS(3452), - [anon_sym_enum] = ACTIONS(3452), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1207] = { - [ts_builtin_sym_end] = ACTIONS(3378), - [sym_identifier] = ACTIONS(3380), - [anon_sym_export] = ACTIONS(3380), - [anon_sym_default] = ACTIONS(3380), - [anon_sym_type] = ACTIONS(3380), - [anon_sym_namespace] = ACTIONS(3380), - [anon_sym_LBRACE] = ACTIONS(3378), - [anon_sym_RBRACE] = ACTIONS(3378), - [anon_sym_typeof] = ACTIONS(3380), - [anon_sym_import] = ACTIONS(3380), - [anon_sym_var] = ACTIONS(3380), - [anon_sym_let] = ACTIONS(3380), - [anon_sym_const] = ACTIONS(3380), - [anon_sym_BANG] = ACTIONS(3378), - [anon_sym_else] = ACTIONS(3380), - [anon_sym_if] = ACTIONS(3380), - [anon_sym_switch] = ACTIONS(3380), - [anon_sym_for] = ACTIONS(3380), - [anon_sym_LPAREN] = ACTIONS(3378), - [anon_sym_await] = ACTIONS(3380), - [anon_sym_while] = ACTIONS(3380), - [anon_sym_do] = ACTIONS(3380), - [anon_sym_try] = ACTIONS(3380), - [anon_sym_with] = ACTIONS(3380), - [anon_sym_break] = ACTIONS(3380), - [anon_sym_continue] = ACTIONS(3380), - [anon_sym_debugger] = ACTIONS(3380), - [anon_sym_return] = ACTIONS(3380), - [anon_sym_throw] = ACTIONS(3380), - [anon_sym_SEMI] = ACTIONS(3378), - [anon_sym_case] = ACTIONS(3380), - [anon_sym_yield] = ACTIONS(3380), - [anon_sym_LBRACK] = ACTIONS(3378), - [anon_sym_LT] = ACTIONS(3378), - [anon_sym_SLASH] = ACTIONS(3380), - [anon_sym_class] = ACTIONS(3380), - [anon_sym_async] = ACTIONS(3380), - [anon_sym_function] = ACTIONS(3380), - [anon_sym_new] = ACTIONS(3380), - [anon_sym_PLUS] = ACTIONS(3380), - [anon_sym_DASH] = ACTIONS(3380), - [anon_sym_TILDE] = ACTIONS(3378), - [anon_sym_void] = ACTIONS(3380), - [anon_sym_delete] = ACTIONS(3380), - [anon_sym_PLUS_PLUS] = ACTIONS(3378), - [anon_sym_DASH_DASH] = ACTIONS(3378), - [anon_sym_DQUOTE] = ACTIONS(3378), - [anon_sym_SQUOTE] = ACTIONS(3378), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3378), - [sym_number] = ACTIONS(3378), - [sym_this] = ACTIONS(3380), - [sym_super] = ACTIONS(3380), - [sym_true] = ACTIONS(3380), - [sym_false] = ACTIONS(3380), - [sym_null] = ACTIONS(3380), - [sym_undefined] = ACTIONS(3380), - [anon_sym_AT] = ACTIONS(3378), - [anon_sym_static] = ACTIONS(3380), - [anon_sym_readonly] = ACTIONS(3380), - [anon_sym_get] = ACTIONS(3380), - [anon_sym_set] = ACTIONS(3380), - [anon_sym_declare] = ACTIONS(3380), - [anon_sym_public] = ACTIONS(3380), - [anon_sym_private] = ACTIONS(3380), - [anon_sym_protected] = ACTIONS(3380), - [anon_sym_module] = ACTIONS(3380), - [anon_sym_any] = ACTIONS(3380), - [anon_sym_number] = ACTIONS(3380), - [anon_sym_boolean] = ACTIONS(3380), - [anon_sym_string] = ACTIONS(3380), - [anon_sym_symbol] = ACTIONS(3380), - [anon_sym_abstract] = ACTIONS(3380), - [anon_sym_interface] = ACTIONS(3380), - [anon_sym_enum] = ACTIONS(3380), + [ts_builtin_sym_end] = ACTIONS(2177), + [sym_identifier] = ACTIONS(2179), + [anon_sym_export] = ACTIONS(2179), + [anon_sym_default] = ACTIONS(2179), + [anon_sym_type] = ACTIONS(2179), + [anon_sym_namespace] = ACTIONS(2179), + [anon_sym_LBRACE] = ACTIONS(2177), + [anon_sym_RBRACE] = ACTIONS(2177), + [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_readonly] = 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_abstract] = ACTIONS(2179), + [anon_sym_interface] = ACTIONS(2179), + [anon_sym_enum] = ACTIONS(2179), }, [1208] = { - [ts_builtin_sym_end] = ACTIONS(3454), - [sym_identifier] = ACTIONS(3456), - [anon_sym_export] = ACTIONS(3456), - [anon_sym_default] = ACTIONS(3456), - [anon_sym_type] = ACTIONS(3456), - [anon_sym_namespace] = ACTIONS(3456), - [anon_sym_LBRACE] = ACTIONS(3454), - [anon_sym_RBRACE] = ACTIONS(3454), - [anon_sym_typeof] = ACTIONS(3456), - [anon_sym_import] = ACTIONS(3456), - [anon_sym_var] = ACTIONS(3456), - [anon_sym_let] = ACTIONS(3456), - [anon_sym_const] = ACTIONS(3456), - [anon_sym_BANG] = ACTIONS(3454), - [anon_sym_else] = ACTIONS(3456), - [anon_sym_if] = ACTIONS(3456), - [anon_sym_switch] = ACTIONS(3456), - [anon_sym_for] = ACTIONS(3456), - [anon_sym_LPAREN] = ACTIONS(3454), - [anon_sym_await] = ACTIONS(3456), - [anon_sym_while] = ACTIONS(3456), - [anon_sym_do] = ACTIONS(3456), - [anon_sym_try] = ACTIONS(3456), - [anon_sym_with] = ACTIONS(3456), - [anon_sym_break] = ACTIONS(3456), - [anon_sym_continue] = ACTIONS(3456), - [anon_sym_debugger] = ACTIONS(3456), - [anon_sym_return] = ACTIONS(3456), - [anon_sym_throw] = ACTIONS(3456), - [anon_sym_SEMI] = ACTIONS(3454), - [anon_sym_case] = ACTIONS(3456), - [anon_sym_yield] = ACTIONS(3456), - [anon_sym_LBRACK] = ACTIONS(3454), - [anon_sym_LT] = ACTIONS(3454), - [anon_sym_SLASH] = ACTIONS(3456), - [anon_sym_class] = ACTIONS(3456), - [anon_sym_async] = ACTIONS(3456), - [anon_sym_function] = ACTIONS(3456), - [anon_sym_new] = ACTIONS(3456), - [anon_sym_PLUS] = ACTIONS(3456), - [anon_sym_DASH] = ACTIONS(3456), - [anon_sym_TILDE] = ACTIONS(3454), - [anon_sym_void] = ACTIONS(3456), - [anon_sym_delete] = ACTIONS(3456), - [anon_sym_PLUS_PLUS] = ACTIONS(3454), - [anon_sym_DASH_DASH] = ACTIONS(3454), - [anon_sym_DQUOTE] = ACTIONS(3454), - [anon_sym_SQUOTE] = ACTIONS(3454), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3454), - [sym_number] = ACTIONS(3454), - [sym_this] = ACTIONS(3456), - [sym_super] = ACTIONS(3456), - [sym_true] = ACTIONS(3456), - [sym_false] = ACTIONS(3456), - [sym_null] = ACTIONS(3456), - [sym_undefined] = ACTIONS(3456), - [anon_sym_AT] = ACTIONS(3454), - [anon_sym_static] = ACTIONS(3456), - [anon_sym_readonly] = ACTIONS(3456), - [anon_sym_get] = ACTIONS(3456), - [anon_sym_set] = ACTIONS(3456), - [anon_sym_declare] = ACTIONS(3456), - [anon_sym_public] = ACTIONS(3456), - [anon_sym_private] = ACTIONS(3456), - [anon_sym_protected] = ACTIONS(3456), - [anon_sym_module] = ACTIONS(3456), - [anon_sym_any] = ACTIONS(3456), - [anon_sym_number] = ACTIONS(3456), - [anon_sym_boolean] = ACTIONS(3456), - [anon_sym_string] = ACTIONS(3456), - [anon_sym_symbol] = ACTIONS(3456), - [anon_sym_abstract] = ACTIONS(3456), - [anon_sym_interface] = ACTIONS(3456), - [anon_sym_enum] = ACTIONS(3456), + [ts_builtin_sym_end] = ACTIONS(3464), + [sym_identifier] = ACTIONS(3466), + [anon_sym_export] = ACTIONS(3466), + [anon_sym_default] = ACTIONS(3466), + [anon_sym_type] = ACTIONS(3466), + [anon_sym_namespace] = ACTIONS(3466), + [anon_sym_LBRACE] = ACTIONS(3464), + [anon_sym_RBRACE] = ACTIONS(3464), + [anon_sym_typeof] = ACTIONS(3466), + [anon_sym_import] = ACTIONS(3466), + [anon_sym_var] = ACTIONS(3466), + [anon_sym_let] = ACTIONS(3466), + [anon_sym_const] = ACTIONS(3466), + [anon_sym_BANG] = ACTIONS(3464), + [anon_sym_else] = ACTIONS(3466), + [anon_sym_if] = ACTIONS(3466), + [anon_sym_switch] = ACTIONS(3466), + [anon_sym_for] = ACTIONS(3466), + [anon_sym_LPAREN] = ACTIONS(3464), + [anon_sym_await] = ACTIONS(3466), + [anon_sym_while] = ACTIONS(3466), + [anon_sym_do] = ACTIONS(3466), + [anon_sym_try] = ACTIONS(3466), + [anon_sym_with] = ACTIONS(3466), + [anon_sym_break] = ACTIONS(3466), + [anon_sym_continue] = ACTIONS(3466), + [anon_sym_debugger] = ACTIONS(3466), + [anon_sym_return] = ACTIONS(3466), + [anon_sym_throw] = ACTIONS(3466), + [anon_sym_SEMI] = ACTIONS(3464), + [anon_sym_case] = ACTIONS(3466), + [anon_sym_yield] = ACTIONS(3466), + [anon_sym_LBRACK] = ACTIONS(3464), + [anon_sym_LT] = ACTIONS(3464), + [anon_sym_SLASH] = ACTIONS(3466), + [anon_sym_class] = ACTIONS(3466), + [anon_sym_async] = ACTIONS(3466), + [anon_sym_function] = ACTIONS(3466), + [anon_sym_new] = ACTIONS(3466), + [anon_sym_PLUS] = ACTIONS(3466), + [anon_sym_DASH] = ACTIONS(3466), + [anon_sym_TILDE] = ACTIONS(3464), + [anon_sym_void] = ACTIONS(3466), + [anon_sym_delete] = ACTIONS(3466), + [anon_sym_PLUS_PLUS] = ACTIONS(3464), + [anon_sym_DASH_DASH] = ACTIONS(3464), + [anon_sym_DQUOTE] = ACTIONS(3464), + [anon_sym_SQUOTE] = ACTIONS(3464), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3464), + [sym_number] = ACTIONS(3464), + [sym_this] = ACTIONS(3466), + [sym_super] = ACTIONS(3466), + [sym_true] = ACTIONS(3466), + [sym_false] = ACTIONS(3466), + [sym_null] = ACTIONS(3466), + [sym_undefined] = ACTIONS(3466), + [anon_sym_AT] = ACTIONS(3464), + [anon_sym_static] = ACTIONS(3466), + [anon_sym_readonly] = ACTIONS(3466), + [anon_sym_get] = ACTIONS(3466), + [anon_sym_set] = ACTIONS(3466), + [anon_sym_declare] = ACTIONS(3466), + [anon_sym_public] = ACTIONS(3466), + [anon_sym_private] = ACTIONS(3466), + [anon_sym_protected] = ACTIONS(3466), + [anon_sym_module] = ACTIONS(3466), + [anon_sym_any] = ACTIONS(3466), + [anon_sym_number] = ACTIONS(3466), + [anon_sym_boolean] = ACTIONS(3466), + [anon_sym_string] = ACTIONS(3466), + [anon_sym_symbol] = ACTIONS(3466), + [anon_sym_abstract] = ACTIONS(3466), + [anon_sym_interface] = ACTIONS(3466), + [anon_sym_enum] = ACTIONS(3466), }, [1209] = { - [ts_builtin_sym_end] = ACTIONS(3458), - [sym_identifier] = ACTIONS(3460), - [anon_sym_export] = ACTIONS(3460), - [anon_sym_default] = ACTIONS(3460), - [anon_sym_type] = ACTIONS(3460), - [anon_sym_namespace] = ACTIONS(3460), - [anon_sym_LBRACE] = ACTIONS(3458), - [anon_sym_RBRACE] = ACTIONS(3458), - [anon_sym_typeof] = ACTIONS(3460), - [anon_sym_import] = ACTIONS(3460), - [anon_sym_var] = ACTIONS(3460), - [anon_sym_let] = ACTIONS(3460), - [anon_sym_const] = ACTIONS(3460), - [anon_sym_BANG] = ACTIONS(3458), - [anon_sym_else] = ACTIONS(3460), - [anon_sym_if] = ACTIONS(3460), - [anon_sym_switch] = ACTIONS(3460), - [anon_sym_for] = ACTIONS(3460), - [anon_sym_LPAREN] = ACTIONS(3458), - [anon_sym_await] = ACTIONS(3460), - [anon_sym_while] = ACTIONS(3460), - [anon_sym_do] = ACTIONS(3460), - [anon_sym_try] = ACTIONS(3460), - [anon_sym_with] = ACTIONS(3460), - [anon_sym_break] = ACTIONS(3460), - [anon_sym_continue] = ACTIONS(3460), - [anon_sym_debugger] = ACTIONS(3460), - [anon_sym_return] = ACTIONS(3460), - [anon_sym_throw] = ACTIONS(3460), - [anon_sym_SEMI] = ACTIONS(3458), - [anon_sym_case] = ACTIONS(3460), - [anon_sym_yield] = ACTIONS(3460), - [anon_sym_LBRACK] = ACTIONS(3458), - [anon_sym_LT] = ACTIONS(3458), - [anon_sym_SLASH] = ACTIONS(3460), - [anon_sym_class] = ACTIONS(3460), - [anon_sym_async] = ACTIONS(3460), - [anon_sym_function] = ACTIONS(3460), - [anon_sym_new] = ACTIONS(3460), - [anon_sym_PLUS] = ACTIONS(3460), - [anon_sym_DASH] = ACTIONS(3460), - [anon_sym_TILDE] = ACTIONS(3458), - [anon_sym_void] = ACTIONS(3460), - [anon_sym_delete] = ACTIONS(3460), - [anon_sym_PLUS_PLUS] = ACTIONS(3458), - [anon_sym_DASH_DASH] = ACTIONS(3458), - [anon_sym_DQUOTE] = ACTIONS(3458), - [anon_sym_SQUOTE] = ACTIONS(3458), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3458), - [sym_number] = ACTIONS(3458), - [sym_this] = ACTIONS(3460), - [sym_super] = ACTIONS(3460), - [sym_true] = ACTIONS(3460), - [sym_false] = ACTIONS(3460), - [sym_null] = ACTIONS(3460), - [sym_undefined] = ACTIONS(3460), - [anon_sym_AT] = ACTIONS(3458), - [anon_sym_static] = ACTIONS(3460), - [anon_sym_readonly] = ACTIONS(3460), - [anon_sym_get] = ACTIONS(3460), - [anon_sym_set] = ACTIONS(3460), - [anon_sym_declare] = ACTIONS(3460), - [anon_sym_public] = ACTIONS(3460), - [anon_sym_private] = ACTIONS(3460), - [anon_sym_protected] = ACTIONS(3460), - [anon_sym_module] = ACTIONS(3460), - [anon_sym_any] = ACTIONS(3460), - [anon_sym_number] = ACTIONS(3460), - [anon_sym_boolean] = ACTIONS(3460), - [anon_sym_string] = ACTIONS(3460), - [anon_sym_symbol] = ACTIONS(3460), - [anon_sym_abstract] = ACTIONS(3460), - [anon_sym_interface] = ACTIONS(3460), - [anon_sym_enum] = ACTIONS(3460), + [ts_builtin_sym_end] = ACTIONS(2006), + [sym_identifier] = ACTIONS(2008), + [anon_sym_export] = ACTIONS(2008), + [anon_sym_default] = ACTIONS(2008), + [anon_sym_type] = ACTIONS(2008), + [anon_sym_namespace] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2006), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_typeof] = ACTIONS(2008), + [anon_sym_import] = ACTIONS(2008), + [anon_sym_var] = ACTIONS(2008), + [anon_sym_let] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [anon_sym_BANG] = ACTIONS(2006), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_switch] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_await] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_with] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_debugger] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_throw] = ACTIONS(2008), + [anon_sym_SEMI] = ACTIONS(2006), + [anon_sym_case] = ACTIONS(2008), + [anon_sym_yield] = ACTIONS(2008), + [anon_sym_LBRACK] = ACTIONS(2006), + [anon_sym_LT] = ACTIONS(2006), + [anon_sym_SLASH] = ACTIONS(2008), + [anon_sym_class] = ACTIONS(2008), + [anon_sym_async] = ACTIONS(2008), + [anon_sym_function] = ACTIONS(2008), + [anon_sym_new] = ACTIONS(2008), + [anon_sym_PLUS] = ACTIONS(2008), + [anon_sym_DASH] = ACTIONS(2008), + [anon_sym_TILDE] = ACTIONS(2006), + [anon_sym_void] = ACTIONS(2008), + [anon_sym_delete] = ACTIONS(2008), + [anon_sym_PLUS_PLUS] = ACTIONS(2006), + [anon_sym_DASH_DASH] = ACTIONS(2006), + [anon_sym_DQUOTE] = ACTIONS(2006), + [anon_sym_SQUOTE] = ACTIONS(2006), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(2006), + [sym_number] = ACTIONS(2006), + [sym_this] = ACTIONS(2008), + [sym_super] = ACTIONS(2008), + [sym_true] = ACTIONS(2008), + [sym_false] = ACTIONS(2008), + [sym_null] = ACTIONS(2008), + [sym_undefined] = ACTIONS(2008), + [anon_sym_AT] = ACTIONS(2006), + [anon_sym_static] = ACTIONS(2008), + [anon_sym_readonly] = ACTIONS(2008), + [anon_sym_get] = ACTIONS(2008), + [anon_sym_set] = ACTIONS(2008), + [anon_sym_declare] = ACTIONS(2008), + [anon_sym_public] = ACTIONS(2008), + [anon_sym_private] = ACTIONS(2008), + [anon_sym_protected] = ACTIONS(2008), + [anon_sym_module] = ACTIONS(2008), + [anon_sym_any] = ACTIONS(2008), + [anon_sym_number] = ACTIONS(2008), + [anon_sym_boolean] = ACTIONS(2008), + [anon_sym_string] = ACTIONS(2008), + [anon_sym_symbol] = ACTIONS(2008), + [anon_sym_abstract] = ACTIONS(2008), + [anon_sym_interface] = ACTIONS(2008), + [anon_sym_enum] = ACTIONS(2008), }, [1210] = { - [ts_builtin_sym_end] = ACTIONS(3462), - [sym_identifier] = ACTIONS(3464), - [anon_sym_export] = ACTIONS(3464), - [anon_sym_default] = ACTIONS(3464), - [anon_sym_type] = ACTIONS(3464), - [anon_sym_namespace] = ACTIONS(3464), - [anon_sym_LBRACE] = ACTIONS(3462), - [anon_sym_RBRACE] = ACTIONS(3462), - [anon_sym_typeof] = ACTIONS(3464), - [anon_sym_import] = ACTIONS(3464), - [anon_sym_var] = ACTIONS(3464), - [anon_sym_let] = ACTIONS(3464), - [anon_sym_const] = ACTIONS(3464), - [anon_sym_BANG] = ACTIONS(3462), - [anon_sym_else] = ACTIONS(3464), - [anon_sym_if] = ACTIONS(3464), - [anon_sym_switch] = ACTIONS(3464), - [anon_sym_for] = ACTIONS(3464), - [anon_sym_LPAREN] = ACTIONS(3462), - [anon_sym_await] = ACTIONS(3464), - [anon_sym_while] = ACTIONS(3464), - [anon_sym_do] = ACTIONS(3464), - [anon_sym_try] = ACTIONS(3464), - [anon_sym_with] = ACTIONS(3464), - [anon_sym_break] = ACTIONS(3464), - [anon_sym_continue] = ACTIONS(3464), - [anon_sym_debugger] = ACTIONS(3464), - [anon_sym_return] = ACTIONS(3464), - [anon_sym_throw] = ACTIONS(3464), - [anon_sym_SEMI] = ACTIONS(3462), - [anon_sym_case] = ACTIONS(3464), - [anon_sym_yield] = ACTIONS(3464), - [anon_sym_LBRACK] = ACTIONS(3462), - [anon_sym_LT] = ACTIONS(3462), - [anon_sym_SLASH] = ACTIONS(3464), - [anon_sym_class] = ACTIONS(3464), - [anon_sym_async] = ACTIONS(3464), - [anon_sym_function] = ACTIONS(3464), - [anon_sym_new] = ACTIONS(3464), - [anon_sym_PLUS] = ACTIONS(3464), - [anon_sym_DASH] = ACTIONS(3464), - [anon_sym_TILDE] = ACTIONS(3462), - [anon_sym_void] = ACTIONS(3464), - [anon_sym_delete] = ACTIONS(3464), - [anon_sym_PLUS_PLUS] = ACTIONS(3462), - [anon_sym_DASH_DASH] = ACTIONS(3462), - [anon_sym_DQUOTE] = ACTIONS(3462), - [anon_sym_SQUOTE] = ACTIONS(3462), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3462), - [sym_number] = ACTIONS(3462), - [sym_this] = ACTIONS(3464), - [sym_super] = ACTIONS(3464), - [sym_true] = ACTIONS(3464), - [sym_false] = ACTIONS(3464), - [sym_null] = ACTIONS(3464), - [sym_undefined] = ACTIONS(3464), - [anon_sym_AT] = ACTIONS(3462), - [anon_sym_static] = ACTIONS(3464), - [anon_sym_readonly] = ACTIONS(3464), - [anon_sym_get] = ACTIONS(3464), - [anon_sym_set] = ACTIONS(3464), - [anon_sym_declare] = ACTIONS(3464), - [anon_sym_public] = ACTIONS(3464), - [anon_sym_private] = ACTIONS(3464), - [anon_sym_protected] = ACTIONS(3464), - [anon_sym_module] = ACTIONS(3464), - [anon_sym_any] = ACTIONS(3464), - [anon_sym_number] = ACTIONS(3464), - [anon_sym_boolean] = ACTIONS(3464), - [anon_sym_string] = ACTIONS(3464), - [anon_sym_symbol] = ACTIONS(3464), - [anon_sym_abstract] = ACTIONS(3464), - [anon_sym_interface] = ACTIONS(3464), - [anon_sym_enum] = ACTIONS(3464), + [ts_builtin_sym_end] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_default] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), }, [1211] = { - [ts_builtin_sym_end] = ACTIONS(3466), - [sym_identifier] = ACTIONS(3468), - [anon_sym_export] = ACTIONS(3468), - [anon_sym_default] = ACTIONS(3468), - [anon_sym_type] = ACTIONS(3468), - [anon_sym_namespace] = ACTIONS(3468), - [anon_sym_LBRACE] = ACTIONS(3466), - [anon_sym_RBRACE] = ACTIONS(3466), - [anon_sym_typeof] = ACTIONS(3468), - [anon_sym_import] = ACTIONS(3468), - [anon_sym_var] = ACTIONS(3468), - [anon_sym_let] = ACTIONS(3468), - [anon_sym_const] = ACTIONS(3468), - [anon_sym_BANG] = ACTIONS(3466), - [anon_sym_else] = ACTIONS(3468), - [anon_sym_if] = ACTIONS(3468), - [anon_sym_switch] = ACTIONS(3468), - [anon_sym_for] = ACTIONS(3468), - [anon_sym_LPAREN] = ACTIONS(3466), - [anon_sym_await] = ACTIONS(3468), - [anon_sym_while] = ACTIONS(3468), - [anon_sym_do] = ACTIONS(3468), - [anon_sym_try] = ACTIONS(3468), - [anon_sym_with] = ACTIONS(3468), - [anon_sym_break] = ACTIONS(3468), - [anon_sym_continue] = ACTIONS(3468), - [anon_sym_debugger] = ACTIONS(3468), - [anon_sym_return] = ACTIONS(3468), - [anon_sym_throw] = ACTIONS(3468), - [anon_sym_SEMI] = ACTIONS(3466), - [anon_sym_case] = ACTIONS(3468), - [anon_sym_yield] = ACTIONS(3468), - [anon_sym_LBRACK] = ACTIONS(3466), - [anon_sym_LT] = ACTIONS(3466), - [anon_sym_SLASH] = ACTIONS(3468), - [anon_sym_class] = ACTIONS(3468), - [anon_sym_async] = ACTIONS(3468), - [anon_sym_function] = ACTIONS(3468), - [anon_sym_new] = ACTIONS(3468), - [anon_sym_PLUS] = ACTIONS(3468), - [anon_sym_DASH] = ACTIONS(3468), - [anon_sym_TILDE] = ACTIONS(3466), - [anon_sym_void] = ACTIONS(3468), - [anon_sym_delete] = ACTIONS(3468), - [anon_sym_PLUS_PLUS] = ACTIONS(3466), - [anon_sym_DASH_DASH] = ACTIONS(3466), - [anon_sym_DQUOTE] = ACTIONS(3466), - [anon_sym_SQUOTE] = ACTIONS(3466), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3466), - [sym_number] = ACTIONS(3466), - [sym_this] = ACTIONS(3468), - [sym_super] = ACTIONS(3468), - [sym_true] = ACTIONS(3468), - [sym_false] = ACTIONS(3468), - [sym_null] = ACTIONS(3468), - [sym_undefined] = ACTIONS(3468), - [anon_sym_AT] = ACTIONS(3466), - [anon_sym_static] = ACTIONS(3468), - [anon_sym_readonly] = ACTIONS(3468), - [anon_sym_get] = ACTIONS(3468), - [anon_sym_set] = ACTIONS(3468), - [anon_sym_declare] = ACTIONS(3468), - [anon_sym_public] = ACTIONS(3468), - [anon_sym_private] = ACTIONS(3468), - [anon_sym_protected] = ACTIONS(3468), - [anon_sym_module] = ACTIONS(3468), - [anon_sym_any] = ACTIONS(3468), - [anon_sym_number] = ACTIONS(3468), - [anon_sym_boolean] = ACTIONS(3468), - [anon_sym_string] = ACTIONS(3468), - [anon_sym_symbol] = ACTIONS(3468), - [anon_sym_abstract] = ACTIONS(3468), - [anon_sym_interface] = ACTIONS(3468), - [anon_sym_enum] = ACTIONS(3468), + [ts_builtin_sym_end] = ACTIONS(3468), + [sym_identifier] = ACTIONS(3470), + [anon_sym_export] = ACTIONS(3470), + [anon_sym_default] = ACTIONS(3470), + [anon_sym_type] = ACTIONS(3470), + [anon_sym_namespace] = ACTIONS(3470), + [anon_sym_LBRACE] = ACTIONS(3468), + [anon_sym_RBRACE] = ACTIONS(3468), + [anon_sym_typeof] = ACTIONS(3470), + [anon_sym_import] = ACTIONS(3470), + [anon_sym_var] = ACTIONS(3470), + [anon_sym_let] = ACTIONS(3470), + [anon_sym_const] = ACTIONS(3470), + [anon_sym_BANG] = ACTIONS(3468), + [anon_sym_else] = ACTIONS(3470), + [anon_sym_if] = ACTIONS(3470), + [anon_sym_switch] = ACTIONS(3470), + [anon_sym_for] = ACTIONS(3470), + [anon_sym_LPAREN] = ACTIONS(3468), + [anon_sym_await] = ACTIONS(3470), + [anon_sym_while] = ACTIONS(3470), + [anon_sym_do] = ACTIONS(3470), + [anon_sym_try] = ACTIONS(3470), + [anon_sym_with] = ACTIONS(3470), + [anon_sym_break] = ACTIONS(3470), + [anon_sym_continue] = ACTIONS(3470), + [anon_sym_debugger] = ACTIONS(3470), + [anon_sym_return] = ACTIONS(3470), + [anon_sym_throw] = ACTIONS(3470), + [anon_sym_SEMI] = ACTIONS(3468), + [anon_sym_case] = ACTIONS(3470), + [anon_sym_yield] = ACTIONS(3470), + [anon_sym_LBRACK] = ACTIONS(3468), + [anon_sym_LT] = ACTIONS(3468), + [anon_sym_SLASH] = ACTIONS(3470), + [anon_sym_class] = ACTIONS(3470), + [anon_sym_async] = ACTIONS(3470), + [anon_sym_function] = ACTIONS(3470), + [anon_sym_new] = ACTIONS(3470), + [anon_sym_PLUS] = ACTIONS(3470), + [anon_sym_DASH] = ACTIONS(3470), + [anon_sym_TILDE] = ACTIONS(3468), + [anon_sym_void] = ACTIONS(3470), + [anon_sym_delete] = ACTIONS(3470), + [anon_sym_PLUS_PLUS] = ACTIONS(3468), + [anon_sym_DASH_DASH] = ACTIONS(3468), + [anon_sym_DQUOTE] = ACTIONS(3468), + [anon_sym_SQUOTE] = ACTIONS(3468), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3468), + [sym_number] = ACTIONS(3468), + [sym_this] = ACTIONS(3470), + [sym_super] = ACTIONS(3470), + [sym_true] = ACTIONS(3470), + [sym_false] = ACTIONS(3470), + [sym_null] = ACTIONS(3470), + [sym_undefined] = ACTIONS(3470), + [anon_sym_AT] = ACTIONS(3468), + [anon_sym_static] = ACTIONS(3470), + [anon_sym_readonly] = ACTIONS(3470), + [anon_sym_get] = ACTIONS(3470), + [anon_sym_set] = ACTIONS(3470), + [anon_sym_declare] = ACTIONS(3470), + [anon_sym_public] = ACTIONS(3470), + [anon_sym_private] = ACTIONS(3470), + [anon_sym_protected] = ACTIONS(3470), + [anon_sym_module] = ACTIONS(3470), + [anon_sym_any] = ACTIONS(3470), + [anon_sym_number] = ACTIONS(3470), + [anon_sym_boolean] = ACTIONS(3470), + [anon_sym_string] = ACTIONS(3470), + [anon_sym_symbol] = ACTIONS(3470), + [anon_sym_abstract] = ACTIONS(3470), + [anon_sym_interface] = ACTIONS(3470), + [anon_sym_enum] = ACTIONS(3470), }, [1212] = { - [ts_builtin_sym_end] = ACTIONS(3470), - [sym_identifier] = ACTIONS(3472), - [anon_sym_export] = ACTIONS(3472), - [anon_sym_default] = ACTIONS(3472), - [anon_sym_type] = ACTIONS(3472), - [anon_sym_namespace] = ACTIONS(3472), - [anon_sym_LBRACE] = ACTIONS(3470), - [anon_sym_RBRACE] = ACTIONS(3470), - [anon_sym_typeof] = ACTIONS(3472), - [anon_sym_import] = ACTIONS(3472), - [anon_sym_var] = ACTIONS(3472), - [anon_sym_let] = ACTIONS(3472), - [anon_sym_const] = ACTIONS(3472), - [anon_sym_BANG] = ACTIONS(3470), - [anon_sym_else] = ACTIONS(3472), - [anon_sym_if] = ACTIONS(3472), - [anon_sym_switch] = ACTIONS(3472), - [anon_sym_for] = ACTIONS(3472), - [anon_sym_LPAREN] = ACTIONS(3470), - [anon_sym_await] = ACTIONS(3472), - [anon_sym_while] = ACTIONS(3472), - [anon_sym_do] = ACTIONS(3472), - [anon_sym_try] = ACTIONS(3472), - [anon_sym_with] = ACTIONS(3472), - [anon_sym_break] = ACTIONS(3472), - [anon_sym_continue] = ACTIONS(3472), - [anon_sym_debugger] = ACTIONS(3472), - [anon_sym_return] = ACTIONS(3472), - [anon_sym_throw] = ACTIONS(3472), - [anon_sym_SEMI] = ACTIONS(3470), - [anon_sym_case] = ACTIONS(3472), - [anon_sym_yield] = ACTIONS(3472), - [anon_sym_LBRACK] = ACTIONS(3470), - [anon_sym_LT] = ACTIONS(3470), - [anon_sym_SLASH] = ACTIONS(3472), - [anon_sym_class] = ACTIONS(3472), - [anon_sym_async] = ACTIONS(3472), - [anon_sym_function] = ACTIONS(3472), - [anon_sym_new] = ACTIONS(3472), - [anon_sym_PLUS] = ACTIONS(3472), - [anon_sym_DASH] = ACTIONS(3472), - [anon_sym_TILDE] = ACTIONS(3470), - [anon_sym_void] = ACTIONS(3472), - [anon_sym_delete] = ACTIONS(3472), - [anon_sym_PLUS_PLUS] = ACTIONS(3470), - [anon_sym_DASH_DASH] = ACTIONS(3470), - [anon_sym_DQUOTE] = ACTIONS(3470), - [anon_sym_SQUOTE] = ACTIONS(3470), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3470), - [sym_number] = ACTIONS(3470), - [sym_this] = ACTIONS(3472), - [sym_super] = ACTIONS(3472), - [sym_true] = ACTIONS(3472), - [sym_false] = ACTIONS(3472), - [sym_null] = ACTIONS(3472), - [sym_undefined] = ACTIONS(3472), - [anon_sym_AT] = ACTIONS(3470), - [anon_sym_static] = ACTIONS(3472), - [anon_sym_readonly] = ACTIONS(3472), - [anon_sym_get] = ACTIONS(3472), - [anon_sym_set] = ACTIONS(3472), - [anon_sym_declare] = ACTIONS(3472), - [anon_sym_public] = ACTIONS(3472), - [anon_sym_private] = ACTIONS(3472), - [anon_sym_protected] = ACTIONS(3472), - [anon_sym_module] = ACTIONS(3472), - [anon_sym_any] = ACTIONS(3472), - [anon_sym_number] = ACTIONS(3472), - [anon_sym_boolean] = ACTIONS(3472), - [anon_sym_string] = ACTIONS(3472), - [anon_sym_symbol] = ACTIONS(3472), - [anon_sym_abstract] = ACTIONS(3472), - [anon_sym_interface] = ACTIONS(3472), - [anon_sym_enum] = ACTIONS(3472), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), }, [1213] = { - [ts_builtin_sym_end] = ACTIONS(3474), + [ts_builtin_sym_end] = ACTIONS(3148), + [sym_identifier] = ACTIONS(3150), + [anon_sym_export] = ACTIONS(3150), + [anon_sym_default] = ACTIONS(3150), + [anon_sym_type] = ACTIONS(3150), + [anon_sym_namespace] = ACTIONS(3150), + [anon_sym_LBRACE] = ACTIONS(3148), + [anon_sym_RBRACE] = ACTIONS(3148), + [anon_sym_typeof] = ACTIONS(3150), + [anon_sym_import] = ACTIONS(3150), + [anon_sym_var] = ACTIONS(3150), + [anon_sym_let] = ACTIONS(3150), + [anon_sym_const] = ACTIONS(3150), + [anon_sym_BANG] = ACTIONS(3148), + [anon_sym_else] = ACTIONS(3150), + [anon_sym_if] = ACTIONS(3150), + [anon_sym_switch] = ACTIONS(3150), + [anon_sym_for] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3148), + [anon_sym_await] = ACTIONS(3150), + [anon_sym_while] = ACTIONS(3150), + [anon_sym_do] = ACTIONS(3150), + [anon_sym_try] = ACTIONS(3150), + [anon_sym_with] = ACTIONS(3150), + [anon_sym_break] = ACTIONS(3150), + [anon_sym_continue] = ACTIONS(3150), + [anon_sym_debugger] = ACTIONS(3150), + [anon_sym_return] = ACTIONS(3150), + [anon_sym_throw] = ACTIONS(3150), + [anon_sym_SEMI] = ACTIONS(3148), + [anon_sym_case] = ACTIONS(3150), + [anon_sym_yield] = ACTIONS(3150), + [anon_sym_LBRACK] = ACTIONS(3148), + [anon_sym_LT] = ACTIONS(3148), + [anon_sym_SLASH] = ACTIONS(3150), + [anon_sym_class] = ACTIONS(3150), + [anon_sym_async] = ACTIONS(3150), + [anon_sym_function] = ACTIONS(3150), + [anon_sym_new] = ACTIONS(3150), + [anon_sym_PLUS] = ACTIONS(3150), + [anon_sym_DASH] = ACTIONS(3150), + [anon_sym_TILDE] = ACTIONS(3148), + [anon_sym_void] = ACTIONS(3150), + [anon_sym_delete] = ACTIONS(3150), + [anon_sym_PLUS_PLUS] = ACTIONS(3148), + [anon_sym_DASH_DASH] = ACTIONS(3148), + [anon_sym_DQUOTE] = ACTIONS(3148), + [anon_sym_SQUOTE] = ACTIONS(3148), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3148), + [sym_number] = ACTIONS(3148), + [sym_this] = ACTIONS(3150), + [sym_super] = ACTIONS(3150), + [sym_true] = ACTIONS(3150), + [sym_false] = ACTIONS(3150), + [sym_null] = ACTIONS(3150), + [sym_undefined] = ACTIONS(3150), + [anon_sym_AT] = ACTIONS(3148), + [anon_sym_static] = ACTIONS(3150), + [anon_sym_readonly] = ACTIONS(3150), + [anon_sym_get] = ACTIONS(3150), + [anon_sym_set] = ACTIONS(3150), + [anon_sym_declare] = ACTIONS(3150), + [anon_sym_public] = ACTIONS(3150), + [anon_sym_private] = ACTIONS(3150), + [anon_sym_protected] = ACTIONS(3150), + [anon_sym_module] = ACTIONS(3150), + [anon_sym_any] = ACTIONS(3150), + [anon_sym_number] = ACTIONS(3150), + [anon_sym_boolean] = ACTIONS(3150), + [anon_sym_string] = ACTIONS(3150), + [anon_sym_symbol] = ACTIONS(3150), + [anon_sym_abstract] = ACTIONS(3150), + [anon_sym_interface] = ACTIONS(3150), + [anon_sym_enum] = ACTIONS(3150), + }, + [1214] = { + [ts_builtin_sym_end] = ACTIONS(3472), + [sym_identifier] = ACTIONS(3474), + [anon_sym_export] = ACTIONS(3474), + [anon_sym_default] = ACTIONS(3474), + [anon_sym_type] = ACTIONS(3474), + [anon_sym_namespace] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3472), + [anon_sym_RBRACE] = ACTIONS(3472), + [anon_sym_typeof] = ACTIONS(3474), + [anon_sym_import] = ACTIONS(3474), + [anon_sym_var] = ACTIONS(3474), + [anon_sym_let] = ACTIONS(3474), + [anon_sym_const] = ACTIONS(3474), + [anon_sym_BANG] = ACTIONS(3472), + [anon_sym_else] = ACTIONS(3474), + [anon_sym_if] = ACTIONS(3474), + [anon_sym_switch] = ACTIONS(3474), + [anon_sym_for] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3472), + [anon_sym_await] = ACTIONS(3474), + [anon_sym_while] = ACTIONS(3474), + [anon_sym_do] = ACTIONS(3474), + [anon_sym_try] = ACTIONS(3474), + [anon_sym_with] = ACTIONS(3474), + [anon_sym_break] = ACTIONS(3474), + [anon_sym_continue] = ACTIONS(3474), + [anon_sym_debugger] = ACTIONS(3474), + [anon_sym_return] = ACTIONS(3474), + [anon_sym_throw] = ACTIONS(3474), + [anon_sym_SEMI] = ACTIONS(3472), + [anon_sym_case] = ACTIONS(3474), + [anon_sym_yield] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3472), + [anon_sym_LT] = ACTIONS(3472), + [anon_sym_SLASH] = ACTIONS(3474), + [anon_sym_class] = ACTIONS(3474), + [anon_sym_async] = ACTIONS(3474), + [anon_sym_function] = ACTIONS(3474), + [anon_sym_new] = ACTIONS(3474), + [anon_sym_PLUS] = ACTIONS(3474), + [anon_sym_DASH] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(3472), + [anon_sym_void] = ACTIONS(3474), + [anon_sym_delete] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3472), + [anon_sym_DASH_DASH] = ACTIONS(3472), + [anon_sym_DQUOTE] = ACTIONS(3472), + [anon_sym_SQUOTE] = ACTIONS(3472), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3472), + [sym_number] = ACTIONS(3472), + [sym_this] = ACTIONS(3474), + [sym_super] = ACTIONS(3474), + [sym_true] = ACTIONS(3474), + [sym_false] = ACTIONS(3474), + [sym_null] = ACTIONS(3474), + [sym_undefined] = ACTIONS(3474), + [anon_sym_AT] = ACTIONS(3472), + [anon_sym_static] = ACTIONS(3474), + [anon_sym_readonly] = ACTIONS(3474), + [anon_sym_get] = ACTIONS(3474), + [anon_sym_set] = ACTIONS(3474), + [anon_sym_declare] = ACTIONS(3474), + [anon_sym_public] = ACTIONS(3474), + [anon_sym_private] = ACTIONS(3474), + [anon_sym_protected] = ACTIONS(3474), + [anon_sym_module] = ACTIONS(3474), + [anon_sym_any] = ACTIONS(3474), + [anon_sym_number] = ACTIONS(3474), + [anon_sym_boolean] = ACTIONS(3474), + [anon_sym_string] = ACTIONS(3474), + [anon_sym_symbol] = ACTIONS(3474), + [anon_sym_abstract] = ACTIONS(3474), + [anon_sym_interface] = ACTIONS(3474), + [anon_sym_enum] = ACTIONS(3474), + }, + [1215] = { [sym_identifier] = ACTIONS(3476), [anon_sym_export] = ACTIONS(3476), - [anon_sym_default] = ACTIONS(3476), [anon_sym_type] = ACTIONS(3476), [anon_sym_namespace] = ACTIONS(3476), - [anon_sym_LBRACE] = ACTIONS(3474), - [anon_sym_RBRACE] = ACTIONS(3474), + [anon_sym_LBRACE] = ACTIONS(3478), [anon_sym_typeof] = ACTIONS(3476), [anon_sym_import] = ACTIONS(3476), [anon_sym_var] = ACTIONS(3476), [anon_sym_let] = ACTIONS(3476), [anon_sym_const] = ACTIONS(3476), - [anon_sym_BANG] = ACTIONS(3474), - [anon_sym_else] = ACTIONS(3476), + [anon_sym_BANG] = ACTIONS(3478), [anon_sym_if] = ACTIONS(3476), [anon_sym_switch] = ACTIONS(3476), [anon_sym_for] = ACTIONS(3476), - [anon_sym_LPAREN] = ACTIONS(3474), + [anon_sym_LPAREN] = ACTIONS(3478), [anon_sym_await] = ACTIONS(3476), [anon_sym_while] = ACTIONS(3476), [anon_sym_do] = ACTIONS(3476), @@ -127748,11 +127936,10 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_debugger] = ACTIONS(3476), [anon_sym_return] = ACTIONS(3476), [anon_sym_throw] = ACTIONS(3476), - [anon_sym_SEMI] = ACTIONS(3474), - [anon_sym_case] = ACTIONS(3476), + [anon_sym_SEMI] = ACTIONS(3478), [anon_sym_yield] = ACTIONS(3476), - [anon_sym_LBRACK] = ACTIONS(3474), - [anon_sym_LT] = ACTIONS(3474), + [anon_sym_LBRACK] = ACTIONS(3478), + [anon_sym_LT] = ACTIONS(3478), [anon_sym_SLASH] = ACTIONS(3476), [anon_sym_class] = ACTIONS(3476), [anon_sym_async] = ACTIONS(3476), @@ -127760,23 +127947,23 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_new] = ACTIONS(3476), [anon_sym_PLUS] = ACTIONS(3476), [anon_sym_DASH] = ACTIONS(3476), - [anon_sym_TILDE] = ACTIONS(3474), + [anon_sym_TILDE] = ACTIONS(3478), [anon_sym_void] = ACTIONS(3476), [anon_sym_delete] = ACTIONS(3476), - [anon_sym_PLUS_PLUS] = ACTIONS(3474), - [anon_sym_DASH_DASH] = ACTIONS(3474), - [anon_sym_DQUOTE] = ACTIONS(3474), - [anon_sym_SQUOTE] = ACTIONS(3474), + [anon_sym_PLUS_PLUS] = ACTIONS(3478), + [anon_sym_DASH_DASH] = ACTIONS(3478), + [anon_sym_DQUOTE] = ACTIONS(3478), + [anon_sym_SQUOTE] = ACTIONS(3478), [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3474), - [sym_number] = ACTIONS(3474), + [anon_sym_BQUOTE] = ACTIONS(3478), + [sym_number] = ACTIONS(3478), [sym_this] = ACTIONS(3476), [sym_super] = ACTIONS(3476), [sym_true] = ACTIONS(3476), [sym_false] = ACTIONS(3476), [sym_null] = ACTIONS(3476), [sym_undefined] = ACTIONS(3476), - [anon_sym_AT] = ACTIONS(3474), + [anon_sym_AT] = ACTIONS(3478), [anon_sym_static] = ACTIONS(3476), [anon_sym_readonly] = ACTIONS(3476), [anon_sym_get] = ACTIONS(3476), @@ -127795,3366 +127982,3471 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_interface] = ACTIONS(3476), [anon_sym_enum] = ACTIONS(3476), }, - [1214] = { - [sym_identifier] = ACTIONS(3478), - [anon_sym_export] = ACTIONS(3478), - [anon_sym_type] = ACTIONS(3478), - [anon_sym_namespace] = ACTIONS(3478), - [anon_sym_LBRACE] = ACTIONS(3480), - [anon_sym_typeof] = ACTIONS(3478), - [anon_sym_import] = ACTIONS(3478), - [anon_sym_var] = ACTIONS(3478), - [anon_sym_let] = ACTIONS(3478), - [anon_sym_const] = ACTIONS(3478), - [anon_sym_BANG] = ACTIONS(3480), - [anon_sym_if] = ACTIONS(3478), - [anon_sym_switch] = ACTIONS(3478), - [anon_sym_for] = ACTIONS(3478), - [anon_sym_LPAREN] = ACTIONS(3480), - [anon_sym_await] = ACTIONS(3478), - [anon_sym_while] = ACTIONS(3478), - [anon_sym_do] = ACTIONS(3478), - [anon_sym_try] = ACTIONS(3478), - [anon_sym_with] = ACTIONS(3478), - [anon_sym_break] = ACTIONS(3478), - [anon_sym_continue] = ACTIONS(3478), - [anon_sym_debugger] = ACTIONS(3478), - [anon_sym_return] = ACTIONS(3478), - [anon_sym_throw] = ACTIONS(3478), - [anon_sym_SEMI] = ACTIONS(3480), - [anon_sym_yield] = ACTIONS(3478), - [anon_sym_LBRACK] = ACTIONS(3480), - [anon_sym_LT] = ACTIONS(3480), - [anon_sym_SLASH] = ACTIONS(3478), - [anon_sym_class] = ACTIONS(3478), - [anon_sym_async] = ACTIONS(3478), - [anon_sym_function] = ACTIONS(3478), - [anon_sym_new] = ACTIONS(3478), - [anon_sym_PLUS] = ACTIONS(3478), - [anon_sym_DASH] = ACTIONS(3478), - [anon_sym_TILDE] = ACTIONS(3480), - [anon_sym_void] = ACTIONS(3478), - [anon_sym_delete] = ACTIONS(3478), - [anon_sym_PLUS_PLUS] = ACTIONS(3480), - [anon_sym_DASH_DASH] = ACTIONS(3480), - [anon_sym_DQUOTE] = ACTIONS(3480), - [anon_sym_SQUOTE] = ACTIONS(3480), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3480), - [sym_number] = ACTIONS(3480), - [sym_this] = ACTIONS(3478), - [sym_super] = ACTIONS(3478), - [sym_true] = ACTIONS(3478), - [sym_false] = ACTIONS(3478), - [sym_null] = ACTIONS(3478), - [sym_undefined] = ACTIONS(3478), - [anon_sym_AT] = ACTIONS(3480), - [anon_sym_static] = ACTIONS(3478), - [anon_sym_readonly] = ACTIONS(3478), - [anon_sym_get] = ACTIONS(3478), - [anon_sym_set] = ACTIONS(3478), - [anon_sym_declare] = ACTIONS(3478), - [anon_sym_public] = ACTIONS(3478), - [anon_sym_private] = ACTIONS(3478), - [anon_sym_protected] = ACTIONS(3478), - [anon_sym_module] = ACTIONS(3478), - [anon_sym_any] = ACTIONS(3478), - [anon_sym_number] = ACTIONS(3478), - [anon_sym_boolean] = ACTIONS(3478), - [anon_sym_string] = ACTIONS(3478), - [anon_sym_symbol] = ACTIONS(3478), - [anon_sym_abstract] = ACTIONS(3478), - [anon_sym_interface] = ACTIONS(3478), - [anon_sym_enum] = ACTIONS(3478), - }, - [1215] = { - [sym_identifier] = ACTIONS(3482), - [anon_sym_export] = ACTIONS(3482), - [anon_sym_type] = ACTIONS(3482), - [anon_sym_namespace] = ACTIONS(3482), - [anon_sym_LBRACE] = ACTIONS(3484), - [anon_sym_typeof] = ACTIONS(3482), - [anon_sym_import] = ACTIONS(3482), - [anon_sym_var] = ACTIONS(3482), - [anon_sym_let] = ACTIONS(3482), - [anon_sym_const] = ACTIONS(3482), - [anon_sym_BANG] = ACTIONS(3484), - [anon_sym_if] = ACTIONS(3482), - [anon_sym_switch] = ACTIONS(3482), - [anon_sym_for] = ACTIONS(3482), - [anon_sym_LPAREN] = ACTIONS(3484), - [anon_sym_await] = ACTIONS(3482), - [anon_sym_while] = ACTIONS(3482), - [anon_sym_do] = ACTIONS(3482), - [anon_sym_try] = ACTIONS(3482), - [anon_sym_with] = ACTIONS(3482), - [anon_sym_break] = ACTIONS(3482), - [anon_sym_continue] = ACTIONS(3482), - [anon_sym_debugger] = ACTIONS(3482), - [anon_sym_return] = ACTIONS(3482), - [anon_sym_throw] = ACTIONS(3482), - [anon_sym_SEMI] = ACTIONS(3484), - [anon_sym_yield] = ACTIONS(3482), - [anon_sym_LBRACK] = ACTIONS(3484), - [anon_sym_LT] = ACTIONS(3484), - [anon_sym_SLASH] = ACTIONS(3482), - [anon_sym_class] = ACTIONS(3482), - [anon_sym_async] = ACTIONS(3482), - [anon_sym_function] = ACTIONS(3482), - [anon_sym_new] = ACTIONS(3482), - [anon_sym_PLUS] = ACTIONS(3482), - [anon_sym_DASH] = ACTIONS(3482), - [anon_sym_TILDE] = ACTIONS(3484), - [anon_sym_void] = ACTIONS(3482), - [anon_sym_delete] = ACTIONS(3482), - [anon_sym_PLUS_PLUS] = ACTIONS(3484), - [anon_sym_DASH_DASH] = ACTIONS(3484), - [anon_sym_DQUOTE] = ACTIONS(3484), - [anon_sym_SQUOTE] = ACTIONS(3484), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3484), - [sym_number] = ACTIONS(3484), - [sym_this] = ACTIONS(3482), - [sym_super] = ACTIONS(3482), - [sym_true] = ACTIONS(3482), - [sym_false] = ACTIONS(3482), - [sym_null] = ACTIONS(3482), - [sym_undefined] = ACTIONS(3482), - [anon_sym_AT] = ACTIONS(3484), - [anon_sym_static] = ACTIONS(3482), - [anon_sym_readonly] = ACTIONS(3482), - [anon_sym_get] = ACTIONS(3482), - [anon_sym_set] = ACTIONS(3482), - [anon_sym_declare] = ACTIONS(3482), - [anon_sym_public] = ACTIONS(3482), - [anon_sym_private] = ACTIONS(3482), - [anon_sym_protected] = ACTIONS(3482), - [anon_sym_module] = ACTIONS(3482), - [anon_sym_any] = ACTIONS(3482), - [anon_sym_number] = ACTIONS(3482), - [anon_sym_boolean] = ACTIONS(3482), - [anon_sym_string] = ACTIONS(3482), - [anon_sym_symbol] = ACTIONS(3482), - [anon_sym_abstract] = ACTIONS(3482), - [anon_sym_interface] = ACTIONS(3482), - [anon_sym_enum] = ACTIONS(3482), - }, [1216] = { - [sym_identifier] = ACTIONS(3486), - [anon_sym_export] = ACTIONS(3486), - [anon_sym_type] = ACTIONS(3486), - [anon_sym_namespace] = ACTIONS(3486), - [anon_sym_LBRACE] = ACTIONS(3488), - [anon_sym_typeof] = ACTIONS(3486), - [anon_sym_import] = ACTIONS(3486), - [anon_sym_var] = ACTIONS(3486), - [anon_sym_let] = ACTIONS(3486), - [anon_sym_const] = ACTIONS(3486), - [anon_sym_BANG] = ACTIONS(3488), - [anon_sym_if] = ACTIONS(3486), - [anon_sym_switch] = ACTIONS(3486), - [anon_sym_for] = ACTIONS(3486), - [anon_sym_LPAREN] = ACTIONS(3488), - [anon_sym_await] = ACTIONS(3486), - [anon_sym_while] = ACTIONS(3486), - [anon_sym_do] = ACTIONS(3486), - [anon_sym_try] = ACTIONS(3486), - [anon_sym_with] = ACTIONS(3486), - [anon_sym_break] = ACTIONS(3486), - [anon_sym_continue] = ACTIONS(3486), - [anon_sym_debugger] = ACTIONS(3486), - [anon_sym_return] = ACTIONS(3486), - [anon_sym_throw] = ACTIONS(3486), - [anon_sym_SEMI] = ACTIONS(3488), - [anon_sym_yield] = ACTIONS(3486), - [anon_sym_LBRACK] = ACTIONS(3488), - [anon_sym_LT] = ACTIONS(3488), - [anon_sym_SLASH] = ACTIONS(3486), - [anon_sym_class] = ACTIONS(3486), - [anon_sym_async] = ACTIONS(3486), - [anon_sym_function] = ACTIONS(3486), - [anon_sym_new] = ACTIONS(3486), - [anon_sym_PLUS] = ACTIONS(3486), - [anon_sym_DASH] = ACTIONS(3486), - [anon_sym_TILDE] = ACTIONS(3488), - [anon_sym_void] = ACTIONS(3486), - [anon_sym_delete] = ACTIONS(3486), - [anon_sym_PLUS_PLUS] = ACTIONS(3488), - [anon_sym_DASH_DASH] = ACTIONS(3488), - [anon_sym_DQUOTE] = ACTIONS(3488), - [anon_sym_SQUOTE] = ACTIONS(3488), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3488), - [sym_number] = ACTIONS(3488), - [sym_this] = ACTIONS(3486), - [sym_super] = ACTIONS(3486), - [sym_true] = ACTIONS(3486), - [sym_false] = ACTIONS(3486), - [sym_null] = ACTIONS(3486), - [sym_undefined] = ACTIONS(3486), - [anon_sym_AT] = ACTIONS(3488), - [anon_sym_static] = ACTIONS(3486), - [anon_sym_readonly] = ACTIONS(3486), - [anon_sym_get] = ACTIONS(3486), - [anon_sym_set] = ACTIONS(3486), - [anon_sym_declare] = ACTIONS(3486), - [anon_sym_public] = ACTIONS(3486), - [anon_sym_private] = ACTIONS(3486), - [anon_sym_protected] = ACTIONS(3486), - [anon_sym_module] = ACTIONS(3486), - [anon_sym_any] = ACTIONS(3486), - [anon_sym_number] = ACTIONS(3486), - [anon_sym_boolean] = ACTIONS(3486), - [anon_sym_string] = ACTIONS(3486), - [anon_sym_symbol] = ACTIONS(3486), - [anon_sym_abstract] = ACTIONS(3486), - [anon_sym_interface] = ACTIONS(3486), - [anon_sym_enum] = ACTIONS(3486), + [sym_identifier] = ACTIONS(3480), + [anon_sym_export] = ACTIONS(3480), + [anon_sym_type] = ACTIONS(3480), + [anon_sym_namespace] = ACTIONS(3480), + [anon_sym_LBRACE] = ACTIONS(3482), + [anon_sym_typeof] = ACTIONS(3480), + [anon_sym_import] = ACTIONS(3480), + [anon_sym_var] = ACTIONS(3480), + [anon_sym_let] = ACTIONS(3480), + [anon_sym_const] = ACTIONS(3480), + [anon_sym_BANG] = ACTIONS(3482), + [anon_sym_if] = ACTIONS(3480), + [anon_sym_switch] = ACTIONS(3480), + [anon_sym_for] = ACTIONS(3480), + [anon_sym_LPAREN] = ACTIONS(3482), + [anon_sym_await] = ACTIONS(3480), + [anon_sym_while] = ACTIONS(3480), + [anon_sym_do] = ACTIONS(3480), + [anon_sym_try] = ACTIONS(3480), + [anon_sym_with] = ACTIONS(3480), + [anon_sym_break] = ACTIONS(3480), + [anon_sym_continue] = ACTIONS(3480), + [anon_sym_debugger] = ACTIONS(3480), + [anon_sym_return] = ACTIONS(3480), + [anon_sym_throw] = ACTIONS(3480), + [anon_sym_SEMI] = ACTIONS(3482), + [anon_sym_yield] = ACTIONS(3480), + [anon_sym_LBRACK] = ACTIONS(3482), + [anon_sym_LT] = ACTIONS(3482), + [anon_sym_SLASH] = ACTIONS(3480), + [anon_sym_class] = ACTIONS(3480), + [anon_sym_async] = ACTIONS(3480), + [anon_sym_function] = ACTIONS(3480), + [anon_sym_new] = ACTIONS(3480), + [anon_sym_PLUS] = ACTIONS(3480), + [anon_sym_DASH] = ACTIONS(3480), + [anon_sym_TILDE] = ACTIONS(3482), + [anon_sym_void] = ACTIONS(3480), + [anon_sym_delete] = ACTIONS(3480), + [anon_sym_PLUS_PLUS] = ACTIONS(3482), + [anon_sym_DASH_DASH] = ACTIONS(3482), + [anon_sym_DQUOTE] = ACTIONS(3482), + [anon_sym_SQUOTE] = ACTIONS(3482), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3482), + [sym_number] = ACTIONS(3482), + [sym_this] = ACTIONS(3480), + [sym_super] = ACTIONS(3480), + [sym_true] = ACTIONS(3480), + [sym_false] = ACTIONS(3480), + [sym_null] = ACTIONS(3480), + [sym_undefined] = ACTIONS(3480), + [anon_sym_AT] = ACTIONS(3482), + [anon_sym_static] = ACTIONS(3480), + [anon_sym_readonly] = ACTIONS(3480), + [anon_sym_get] = ACTIONS(3480), + [anon_sym_set] = ACTIONS(3480), + [anon_sym_declare] = ACTIONS(3480), + [anon_sym_public] = ACTIONS(3480), + [anon_sym_private] = ACTIONS(3480), + [anon_sym_protected] = ACTIONS(3480), + [anon_sym_module] = ACTIONS(3480), + [anon_sym_any] = ACTIONS(3480), + [anon_sym_number] = ACTIONS(3480), + [anon_sym_boolean] = ACTIONS(3480), + [anon_sym_string] = ACTIONS(3480), + [anon_sym_symbol] = ACTIONS(3480), + [anon_sym_abstract] = ACTIONS(3480), + [anon_sym_interface] = ACTIONS(3480), + [anon_sym_enum] = ACTIONS(3480), }, [1217] = { - [sym_identifier] = ACTIONS(3490), - [anon_sym_export] = ACTIONS(3490), - [anon_sym_type] = ACTIONS(3490), - [anon_sym_namespace] = ACTIONS(3490), - [anon_sym_LBRACE] = ACTIONS(3492), - [anon_sym_typeof] = ACTIONS(3490), - [anon_sym_import] = ACTIONS(3490), - [anon_sym_var] = ACTIONS(3490), - [anon_sym_let] = ACTIONS(3490), - [anon_sym_const] = ACTIONS(3490), - [anon_sym_BANG] = ACTIONS(3492), - [anon_sym_if] = ACTIONS(3490), - [anon_sym_switch] = ACTIONS(3490), - [anon_sym_for] = ACTIONS(3490), - [anon_sym_LPAREN] = ACTIONS(3492), - [anon_sym_await] = ACTIONS(3490), - [anon_sym_while] = ACTIONS(3490), - [anon_sym_do] = ACTIONS(3490), - [anon_sym_try] = ACTIONS(3490), - [anon_sym_with] = ACTIONS(3490), - [anon_sym_break] = ACTIONS(3490), - [anon_sym_continue] = ACTIONS(3490), - [anon_sym_debugger] = ACTIONS(3490), - [anon_sym_return] = ACTIONS(3490), - [anon_sym_throw] = ACTIONS(3490), - [anon_sym_SEMI] = ACTIONS(3492), - [anon_sym_yield] = ACTIONS(3490), - [anon_sym_LBRACK] = ACTIONS(3492), - [anon_sym_LT] = ACTIONS(3492), - [anon_sym_SLASH] = ACTIONS(3490), - [anon_sym_class] = ACTIONS(3490), - [anon_sym_async] = ACTIONS(3490), - [anon_sym_function] = ACTIONS(3490), - [anon_sym_new] = ACTIONS(3490), - [anon_sym_PLUS] = ACTIONS(3490), - [anon_sym_DASH] = ACTIONS(3490), - [anon_sym_TILDE] = ACTIONS(3492), - [anon_sym_void] = ACTIONS(3490), - [anon_sym_delete] = ACTIONS(3490), - [anon_sym_PLUS_PLUS] = ACTIONS(3492), - [anon_sym_DASH_DASH] = ACTIONS(3492), - [anon_sym_DQUOTE] = ACTIONS(3492), - [anon_sym_SQUOTE] = ACTIONS(3492), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3492), - [sym_number] = ACTIONS(3492), - [sym_this] = ACTIONS(3490), - [sym_super] = ACTIONS(3490), - [sym_true] = ACTIONS(3490), - [sym_false] = ACTIONS(3490), - [sym_null] = ACTIONS(3490), - [sym_undefined] = ACTIONS(3490), - [anon_sym_AT] = ACTIONS(3492), - [anon_sym_static] = ACTIONS(3490), - [anon_sym_readonly] = ACTIONS(3490), - [anon_sym_get] = ACTIONS(3490), - [anon_sym_set] = ACTIONS(3490), - [anon_sym_declare] = ACTIONS(3490), - [anon_sym_public] = ACTIONS(3490), - [anon_sym_private] = ACTIONS(3490), - [anon_sym_protected] = ACTIONS(3490), - [anon_sym_module] = ACTIONS(3490), - [anon_sym_any] = ACTIONS(3490), - [anon_sym_number] = ACTIONS(3490), - [anon_sym_boolean] = ACTIONS(3490), - [anon_sym_string] = ACTIONS(3490), - [anon_sym_symbol] = ACTIONS(3490), - [anon_sym_abstract] = ACTIONS(3490), - [anon_sym_interface] = ACTIONS(3490), - [anon_sym_enum] = ACTIONS(3490), + [sym_identifier] = ACTIONS(3484), + [anon_sym_export] = ACTIONS(3484), + [anon_sym_type] = ACTIONS(3484), + [anon_sym_namespace] = ACTIONS(3484), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_typeof] = ACTIONS(3484), + [anon_sym_import] = ACTIONS(3484), + [anon_sym_var] = ACTIONS(3484), + [anon_sym_let] = ACTIONS(3484), + [anon_sym_const] = ACTIONS(3484), + [anon_sym_BANG] = ACTIONS(3486), + [anon_sym_if] = ACTIONS(3484), + [anon_sym_switch] = ACTIONS(3484), + [anon_sym_for] = ACTIONS(3484), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_await] = ACTIONS(3484), + [anon_sym_while] = ACTIONS(3484), + [anon_sym_do] = ACTIONS(3484), + [anon_sym_try] = ACTIONS(3484), + [anon_sym_with] = ACTIONS(3484), + [anon_sym_break] = ACTIONS(3484), + [anon_sym_continue] = ACTIONS(3484), + [anon_sym_debugger] = ACTIONS(3484), + [anon_sym_return] = ACTIONS(3484), + [anon_sym_throw] = ACTIONS(3484), + [anon_sym_SEMI] = ACTIONS(3486), + [anon_sym_yield] = ACTIONS(3484), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LT] = ACTIONS(3486), + [anon_sym_SLASH] = ACTIONS(3484), + [anon_sym_class] = ACTIONS(3484), + [anon_sym_async] = ACTIONS(3484), + [anon_sym_function] = ACTIONS(3484), + [anon_sym_new] = ACTIONS(3484), + [anon_sym_PLUS] = ACTIONS(3484), + [anon_sym_DASH] = ACTIONS(3484), + [anon_sym_TILDE] = ACTIONS(3486), + [anon_sym_void] = ACTIONS(3484), + [anon_sym_delete] = ACTIONS(3484), + [anon_sym_PLUS_PLUS] = ACTIONS(3486), + [anon_sym_DASH_DASH] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [anon_sym_SQUOTE] = ACTIONS(3486), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3486), + [sym_number] = ACTIONS(3486), + [sym_this] = ACTIONS(3484), + [sym_super] = ACTIONS(3484), + [sym_true] = ACTIONS(3484), + [sym_false] = ACTIONS(3484), + [sym_null] = ACTIONS(3484), + [sym_undefined] = ACTIONS(3484), + [anon_sym_AT] = ACTIONS(3486), + [anon_sym_static] = ACTIONS(3484), + [anon_sym_readonly] = ACTIONS(3484), + [anon_sym_get] = ACTIONS(3484), + [anon_sym_set] = ACTIONS(3484), + [anon_sym_declare] = ACTIONS(3484), + [anon_sym_public] = ACTIONS(3484), + [anon_sym_private] = ACTIONS(3484), + [anon_sym_protected] = ACTIONS(3484), + [anon_sym_module] = ACTIONS(3484), + [anon_sym_any] = ACTIONS(3484), + [anon_sym_number] = ACTIONS(3484), + [anon_sym_boolean] = ACTIONS(3484), + [anon_sym_string] = ACTIONS(3484), + [anon_sym_symbol] = ACTIONS(3484), + [anon_sym_abstract] = ACTIONS(3484), + [anon_sym_interface] = ACTIONS(3484), + [anon_sym_enum] = ACTIONS(3484), }, [1218] = { - [sym_identifier] = ACTIONS(3494), - [anon_sym_export] = ACTIONS(3494), - [anon_sym_type] = ACTIONS(3494), - [anon_sym_namespace] = ACTIONS(3494), - [anon_sym_LBRACE] = ACTIONS(3496), - [anon_sym_typeof] = ACTIONS(3494), - [anon_sym_import] = ACTIONS(3494), - [anon_sym_var] = ACTIONS(3494), - [anon_sym_let] = ACTIONS(3494), - [anon_sym_const] = ACTIONS(3494), - [anon_sym_BANG] = ACTIONS(3496), - [anon_sym_if] = ACTIONS(3494), - [anon_sym_switch] = ACTIONS(3494), - [anon_sym_for] = ACTIONS(3494), - [anon_sym_LPAREN] = ACTIONS(3496), - [anon_sym_await] = ACTIONS(3494), - [anon_sym_while] = ACTIONS(3494), - [anon_sym_do] = ACTIONS(3494), - [anon_sym_try] = ACTIONS(3494), - [anon_sym_with] = ACTIONS(3494), - [anon_sym_break] = ACTIONS(3494), - [anon_sym_continue] = ACTIONS(3494), - [anon_sym_debugger] = ACTIONS(3494), - [anon_sym_return] = ACTIONS(3494), - [anon_sym_throw] = ACTIONS(3494), - [anon_sym_SEMI] = ACTIONS(3496), - [anon_sym_yield] = ACTIONS(3494), - [anon_sym_LBRACK] = ACTIONS(3496), - [anon_sym_LT] = ACTIONS(3496), - [anon_sym_SLASH] = ACTIONS(3494), - [anon_sym_class] = ACTIONS(3494), - [anon_sym_async] = ACTIONS(3494), - [anon_sym_function] = ACTIONS(3494), - [anon_sym_new] = ACTIONS(3494), - [anon_sym_PLUS] = ACTIONS(3494), - [anon_sym_DASH] = ACTIONS(3494), - [anon_sym_TILDE] = ACTIONS(3496), - [anon_sym_void] = ACTIONS(3494), - [anon_sym_delete] = ACTIONS(3494), - [anon_sym_PLUS_PLUS] = ACTIONS(3496), - [anon_sym_DASH_DASH] = ACTIONS(3496), - [anon_sym_DQUOTE] = ACTIONS(3496), - [anon_sym_SQUOTE] = ACTIONS(3496), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(3496), - [sym_number] = ACTIONS(3496), - [sym_this] = ACTIONS(3494), - [sym_super] = ACTIONS(3494), - [sym_true] = ACTIONS(3494), - [sym_false] = ACTIONS(3494), - [sym_null] = ACTIONS(3494), - [sym_undefined] = ACTIONS(3494), - [anon_sym_AT] = ACTIONS(3496), - [anon_sym_static] = ACTIONS(3494), - [anon_sym_readonly] = ACTIONS(3494), - [anon_sym_get] = ACTIONS(3494), - [anon_sym_set] = ACTIONS(3494), - [anon_sym_declare] = ACTIONS(3494), - [anon_sym_public] = ACTIONS(3494), - [anon_sym_private] = ACTIONS(3494), - [anon_sym_protected] = ACTIONS(3494), - [anon_sym_module] = ACTIONS(3494), - [anon_sym_any] = ACTIONS(3494), - [anon_sym_number] = ACTIONS(3494), - [anon_sym_boolean] = ACTIONS(3494), - [anon_sym_string] = ACTIONS(3494), - [anon_sym_symbol] = ACTIONS(3494), - [anon_sym_abstract] = ACTIONS(3494), - [anon_sym_interface] = ACTIONS(3494), - [anon_sym_enum] = ACTIONS(3494), + [sym_identifier] = ACTIONS(3488), + [anon_sym_export] = ACTIONS(3488), + [anon_sym_type] = ACTIONS(3488), + [anon_sym_namespace] = ACTIONS(3488), + [anon_sym_LBRACE] = ACTIONS(3490), + [anon_sym_typeof] = ACTIONS(3488), + [anon_sym_import] = ACTIONS(3488), + [anon_sym_var] = ACTIONS(3488), + [anon_sym_let] = ACTIONS(3488), + [anon_sym_const] = ACTIONS(3488), + [anon_sym_BANG] = ACTIONS(3490), + [anon_sym_if] = ACTIONS(3488), + [anon_sym_switch] = ACTIONS(3488), + [anon_sym_for] = ACTIONS(3488), + [anon_sym_LPAREN] = ACTIONS(3490), + [anon_sym_await] = ACTIONS(3488), + [anon_sym_while] = ACTIONS(3488), + [anon_sym_do] = ACTIONS(3488), + [anon_sym_try] = ACTIONS(3488), + [anon_sym_with] = ACTIONS(3488), + [anon_sym_break] = ACTIONS(3488), + [anon_sym_continue] = ACTIONS(3488), + [anon_sym_debugger] = ACTIONS(3488), + [anon_sym_return] = ACTIONS(3488), + [anon_sym_throw] = ACTIONS(3488), + [anon_sym_SEMI] = ACTIONS(3490), + [anon_sym_yield] = ACTIONS(3488), + [anon_sym_LBRACK] = ACTIONS(3490), + [anon_sym_LT] = ACTIONS(3490), + [anon_sym_SLASH] = ACTIONS(3488), + [anon_sym_class] = ACTIONS(3488), + [anon_sym_async] = ACTIONS(3488), + [anon_sym_function] = ACTIONS(3488), + [anon_sym_new] = ACTIONS(3488), + [anon_sym_PLUS] = ACTIONS(3488), + [anon_sym_DASH] = ACTIONS(3488), + [anon_sym_TILDE] = ACTIONS(3490), + [anon_sym_void] = ACTIONS(3488), + [anon_sym_delete] = ACTIONS(3488), + [anon_sym_PLUS_PLUS] = ACTIONS(3490), + [anon_sym_DASH_DASH] = ACTIONS(3490), + [anon_sym_DQUOTE] = ACTIONS(3490), + [anon_sym_SQUOTE] = ACTIONS(3490), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3490), + [sym_number] = ACTIONS(3490), + [sym_this] = ACTIONS(3488), + [sym_super] = ACTIONS(3488), + [sym_true] = ACTIONS(3488), + [sym_false] = ACTIONS(3488), + [sym_null] = ACTIONS(3488), + [sym_undefined] = ACTIONS(3488), + [anon_sym_AT] = ACTIONS(3490), + [anon_sym_static] = ACTIONS(3488), + [anon_sym_readonly] = ACTIONS(3488), + [anon_sym_get] = ACTIONS(3488), + [anon_sym_set] = ACTIONS(3488), + [anon_sym_declare] = ACTIONS(3488), + [anon_sym_public] = ACTIONS(3488), + [anon_sym_private] = ACTIONS(3488), + [anon_sym_protected] = ACTIONS(3488), + [anon_sym_module] = ACTIONS(3488), + [anon_sym_any] = ACTIONS(3488), + [anon_sym_number] = ACTIONS(3488), + [anon_sym_boolean] = ACTIONS(3488), + [anon_sym_string] = ACTIONS(3488), + [anon_sym_symbol] = ACTIONS(3488), + [anon_sym_abstract] = ACTIONS(3488), + [anon_sym_interface] = ACTIONS(3488), + [anon_sym_enum] = ACTIONS(3488), }, [1219] = { - [sym_nested_identifier] = STATE(2156), - [sym_string] = STATE(2157), - [sym__module] = STATE(2271), - [sym_identifier] = ACTIONS(3498), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1898), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(81), - [anon_sym_SQUOTE] = ACTIONS(83), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_PIPE_RBRACE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), + [sym_identifier] = ACTIONS(3492), + [anon_sym_export] = ACTIONS(3492), + [anon_sym_type] = ACTIONS(3492), + [anon_sym_namespace] = ACTIONS(3492), + [anon_sym_LBRACE] = ACTIONS(3494), + [anon_sym_typeof] = ACTIONS(3492), + [anon_sym_import] = ACTIONS(3492), + [anon_sym_var] = ACTIONS(3492), + [anon_sym_let] = ACTIONS(3492), + [anon_sym_const] = ACTIONS(3492), + [anon_sym_BANG] = ACTIONS(3494), + [anon_sym_if] = ACTIONS(3492), + [anon_sym_switch] = ACTIONS(3492), + [anon_sym_for] = ACTIONS(3492), + [anon_sym_LPAREN] = ACTIONS(3494), + [anon_sym_await] = ACTIONS(3492), + [anon_sym_while] = ACTIONS(3492), + [anon_sym_do] = ACTIONS(3492), + [anon_sym_try] = ACTIONS(3492), + [anon_sym_with] = ACTIONS(3492), + [anon_sym_break] = ACTIONS(3492), + [anon_sym_continue] = ACTIONS(3492), + [anon_sym_debugger] = ACTIONS(3492), + [anon_sym_return] = ACTIONS(3492), + [anon_sym_throw] = ACTIONS(3492), + [anon_sym_SEMI] = ACTIONS(3494), + [anon_sym_yield] = ACTIONS(3492), + [anon_sym_LBRACK] = ACTIONS(3494), + [anon_sym_LT] = ACTIONS(3494), + [anon_sym_SLASH] = ACTIONS(3492), + [anon_sym_class] = ACTIONS(3492), + [anon_sym_async] = ACTIONS(3492), + [anon_sym_function] = ACTIONS(3492), + [anon_sym_new] = ACTIONS(3492), + [anon_sym_PLUS] = ACTIONS(3492), + [anon_sym_DASH] = ACTIONS(3492), + [anon_sym_TILDE] = ACTIONS(3494), + [anon_sym_void] = ACTIONS(3492), + [anon_sym_delete] = ACTIONS(3492), + [anon_sym_PLUS_PLUS] = ACTIONS(3494), + [anon_sym_DASH_DASH] = ACTIONS(3494), + [anon_sym_DQUOTE] = ACTIONS(3494), + [anon_sym_SQUOTE] = ACTIONS(3494), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(3494), + [sym_number] = ACTIONS(3494), + [sym_this] = ACTIONS(3492), + [sym_super] = ACTIONS(3492), + [sym_true] = ACTIONS(3492), + [sym_false] = ACTIONS(3492), + [sym_null] = ACTIONS(3492), + [sym_undefined] = ACTIONS(3492), + [anon_sym_AT] = ACTIONS(3494), + [anon_sym_static] = ACTIONS(3492), + [anon_sym_readonly] = ACTIONS(3492), + [anon_sym_get] = ACTIONS(3492), + [anon_sym_set] = ACTIONS(3492), + [anon_sym_declare] = ACTIONS(3492), + [anon_sym_public] = ACTIONS(3492), + [anon_sym_private] = ACTIONS(3492), + [anon_sym_protected] = ACTIONS(3492), + [anon_sym_module] = ACTIONS(3492), + [anon_sym_any] = ACTIONS(3492), + [anon_sym_number] = ACTIONS(3492), + [anon_sym_boolean] = ACTIONS(3492), + [anon_sym_string] = ACTIONS(3492), + [anon_sym_symbol] = ACTIONS(3492), + [anon_sym_abstract] = ACTIONS(3492), + [anon_sym_interface] = ACTIONS(3492), + [anon_sym_enum] = ACTIONS(3492), }, [1220] = { - [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(138), - [sym__module] = STATE(155), - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1221] = { - [sym_nested_identifier] = STATE(1042), - [sym_string] = STATE(1059), - [sym__module] = STATE(1094), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3506), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1222] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), [sym_tuple_parameter] = STATE(5019), [sym_optional_tuple_parameter] = STATE(5019), [sym_optional_type] = STATE(5019), [sym_rest_type] = STATE(5019), [sym__tuple_type_member] = STATE(5019), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(3510), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(3498), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3512), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3500), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, + [1221] = { + [sym_nested_identifier] = STATE(1044), + [sym_string] = STATE(1056), + [sym__module] = STATE(1190), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1222] = { + [sym_nested_identifier] = STATE(135), + [sym_string] = STATE(136), + [sym__module] = STATE(149), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, [1223] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4915), - [sym_optional_tuple_parameter] = STATE(4915), - [sym_optional_type] = STATE(4915), - [sym_rest_type] = STATE(4915), - [sym__tuple_type_member] = STATE(4915), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(1044), + [sym_string] = STATE(1056), + [sym__module] = STATE(1190), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1224] = { + [sym_nested_identifier] = STATE(1044), + [sym_string] = STATE(1056), + [sym__module] = STATE(1190), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2388), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1225] = { + [sym_nested_identifier] = STATE(2161), + [sym_string] = STATE(2162), + [sym__module] = STATE(2169), + [sym_identifier] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_PIPE_RBRACE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1226] = { + [sym_nested_identifier] = STATE(2159), + [sym_string] = STATE(2154), + [sym__module] = STATE(2251), + [sym_identifier] = ACTIONS(3514), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1898), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(81), + [anon_sym_SQUOTE] = ACTIONS(83), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_PIPE_RBRACE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1227] = { + [sym_nested_identifier] = STATE(2161), + [sym_string] = STATE(2162), + [sym__module] = STATE(2169), + [sym_identifier] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1876), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + }, + [1228] = { + [sym_nested_identifier] = STATE(1044), + [sym_string] = STATE(1056), + [sym__module] = STATE(1190), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1229] = { + [sym_nested_identifier] = STATE(135), + [sym_string] = STATE(136), + [sym__module] = STATE(149), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1230] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5000), + [sym_optional_tuple_parameter] = STATE(5000), + [sym_optional_type] = STATE(5000), + [sym_rest_type] = STATE(5000), + [sym__tuple_type_member] = STATE(5000), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), [anon_sym_COMMA] = ACTIONS(3516), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3518), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1224] = { - [sym_nested_identifier] = STATE(1042), - [sym_string] = STATE(1059), - [sym__module] = STATE(1094), - [aux_sym_object_repeat1] = STATE(5082), - [aux_sym_object_pattern_repeat1] = STATE(4997), + [1231] = { + [sym_nested_identifier] = STATE(135), + [sym_string] = STATE(136), + [sym__module] = STATE(149), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), [sym_identifier] = ACTIONS(3506), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2331), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), }, - [1225] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5100), - [sym_optional_tuple_parameter] = STATE(5100), - [sym_optional_type] = STATE(5100), - [sym_rest_type] = STATE(5100), - [sym__tuple_type_member] = STATE(5100), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [1232] = { + [sym_nested_identifier] = STATE(1044), + [sym_string] = STATE(1056), + [sym__module] = STATE(1190), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2374), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1233] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5034), + [sym_optional_tuple_parameter] = STATE(5034), + [sym_optional_type] = STATE(5034), + [sym_rest_type] = STATE(5034), + [sym__tuple_type_member] = STATE(5034), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), [anon_sym_COMMA] = ACTIONS(3520), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3522), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1226] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5137), - [sym_optional_tuple_parameter] = STATE(5137), - [sym_optional_type] = STATE(5137), - [sym_rest_type] = STATE(5137), - [sym__tuple_type_member] = STATE(5137), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [1234] = { + [sym_nested_identifier] = STATE(1044), + [sym_string] = STATE(1056), + [sym__module] = STATE(1190), + [aux_sym_object_repeat1] = STATE(5091), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2372), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1235] = { + [sym_nested_identifier] = STATE(1044), + [sym_string] = STATE(1056), + [sym__module] = STATE(1190), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3504), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2380), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1236] = { + [sym_nested_identifier] = STATE(135), + [sym_string] = STATE(136), + [sym__module] = STATE(149), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2396), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1237] = { + [sym_nested_identifier] = STATE(135), + [sym_string] = STATE(136), + [sym__module] = STATE(149), + [aux_sym_object_repeat1] = STATE(4920), + [aux_sym_object_pattern_repeat1] = STATE(5008), + [sym_identifier] = ACTIONS(3506), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2390), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1910), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, + [1238] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5027), + [sym_optional_tuple_parameter] = STATE(5027), + [sym_optional_type] = STATE(5027), + [sym_rest_type] = STATE(5027), + [sym__tuple_type_member] = STATE(5027), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), [anon_sym_COMMA] = ACTIONS(3524), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3526), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1227] = { - [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(138), - [sym__module] = STATE(155), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1228] = { + [1239] = { [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(138), - [sym__module] = STATE(155), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1229] = { - [sym_nested_identifier] = STATE(1042), - [sym_string] = STATE(1059), - [sym__module] = STATE(1094), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), + [sym_string] = STATE(136), + [sym__module] = STATE(149), + [aux_sym_object_repeat1] = STATE(5045), + [aux_sym_object_pattern_repeat1] = STATE(5008), [sym_identifier] = ACTIONS(3506), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), }, - [1230] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5071), - [sym_optional_tuple_parameter] = STATE(5071), - [sym_optional_type] = STATE(5071), - [sym_rest_type] = STATE(5071), - [sym__tuple_type_member] = STATE(5071), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [1240] = { + [sym_nested_identifier] = STATE(2161), + [sym_string] = STATE(2162), + [sym__module] = STATE(2169), + [sym_identifier] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + }, + [1241] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(4958), + [sym_optional_tuple_parameter] = STATE(4958), + [sym_optional_type] = STATE(4958), + [sym_rest_type] = STATE(4958), + [sym__tuple_type_member] = STATE(4958), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), [anon_sym_COMMA] = ACTIONS(3528), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3530), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1231] = { - [sym_nested_identifier] = STATE(1042), - [sym_string] = STATE(1059), - [sym__module] = STATE(1094), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3506), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2372), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1232] = { - [sym_nested_identifier] = STATE(2163), - [sym_string] = STATE(2164), - [sym__module] = STATE(2170), - [sym_identifier] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1876), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - }, - [1233] = { - [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(138), - [sym__module] = STATE(155), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2374), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1234] = { - [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(138), - [sym__module] = STATE(155), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2386), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1235] = { + [1242] = { [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(138), - [sym__module] = STATE(155), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1236] = { - [sym_nested_identifier] = STATE(1042), - [sym_string] = STATE(1059), - [sym__module] = STATE(1094), - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3506), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1237] = { - [sym_nested_identifier] = STATE(1042), - [sym_string] = STATE(1059), - [sym__module] = STATE(1094), - [aux_sym_object_repeat1] = STATE(4999), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3506), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2366), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1238] = { - [sym_nested_identifier] = STATE(2163), - [sym_string] = STATE(2164), - [sym__module] = STATE(2170), - [sym_identifier] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - }, - [1239] = { - [sym_nested_identifier] = STATE(1042), - [sym_string] = STATE(1059), - [sym__module] = STATE(1094), - [aux_sym_object_repeat1] = STATE(4914), - [aux_sym_object_pattern_repeat1] = STATE(4997), + [sym_string] = STATE(136), + [sym__module] = STATE(149), + [aux_sym_object_repeat1] = STATE(5010), + [aux_sym_object_pattern_repeat1] = STATE(5008), [sym_identifier] = ACTIONS(3506), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2376), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1240] = { - [sym_nested_identifier] = STATE(135), - [sym_string] = STATE(138), - [sym__module] = STATE(155), - [aux_sym_object_repeat1] = STATE(5011), - [aux_sym_object_pattern_repeat1] = STATE(4997), - [sym_identifier] = ACTIONS(3500), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2676), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(2388), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_COLON] = ACTIONS(2344), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(2347), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2674), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(2337), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(2347), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_COLON] = ACTIONS(2350), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(2353), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), [anon_sym_EQ_GT] = ACTIONS(1910), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(2347), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(3502), - [anon_sym_SQUOTE] = ACTIONS(3504), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(2353), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(3508), + [anon_sym_SQUOTE] = ACTIONS(3510), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), }, - [1241] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(4933), - [sym_optional_tuple_parameter] = STATE(4933), - [sym_optional_type] = STATE(4933), - [sym_rest_type] = STATE(4933), - [sym__tuple_type_member] = STATE(4933), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [1243] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(4927), + [sym_optional_tuple_parameter] = STATE(4927), + [sym_optional_type] = STATE(4927), + [sym_rest_type] = STATE(4927), + [sym__tuple_type_member] = STATE(4927), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(3534), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(3532), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3536), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3534), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1242] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5092), - [sym_optional_tuple_parameter] = STATE(5092), - [sym_optional_type] = STATE(5092), - [sym_rest_type] = STATE(5092), - [sym__tuple_type_member] = STATE(5092), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [1244] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5102), + [sym_optional_tuple_parameter] = STATE(5102), + [sym_optional_type] = STATE(5102), + [sym_rest_type] = STATE(5102), + [sym__tuple_type_member] = STATE(5102), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_COMMA] = ACTIONS(3538), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_COMMA] = ACTIONS(3536), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3540), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3538), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1243] = { - [sym_nested_identifier] = STATE(2163), - [sym_string] = STATE(2164), - [sym__module] = STATE(2170), - [sym_identifier] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_PIPE_RBRACE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, - [1244] = { - [sym_nested_identifier] = STATE(2163), - [sym_string] = STATE(2164), - [sym__module] = STATE(2170), - [sym_identifier] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_RPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_COLON] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_RBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1884), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - }, [1245] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3542), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3540), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1246] = { - [sym_nested_identifier] = STATE(2163), - [sym_string] = STATE(2164), - [sym__module] = STATE(2170), - [sym_identifier] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(2223), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1904), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), + [sym_nested_identifier] = STATE(2601), + [sym_string] = STATE(2602), + [sym__module] = STATE(2939), + [sym_identifier] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1904), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), }, [1247] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3544), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1248] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3546), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1249] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3548), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1250] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3550), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1251] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3552), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1252] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), [anon_sym_RBRACK] = ACTIONS(3554), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1253] = { - [sym_nested_identifier] = STATE(2600), - [sym_string] = STATE(2601), - [sym__module] = STATE(2827), - [sym_identifier] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1912), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1904), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), - }, - [1254] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3558), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3556), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, + [1254] = { + [sym_nested_identifier] = STATE(2161), + [sym_string] = STATE(2162), + [sym__module] = STATE(2169), + [sym_identifier] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_RPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_COLON] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_RBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1884), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + }, [1255] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(2161), + [sym_string] = STATE(2162), + [sym__module] = STATE(2169), + [sym_identifier] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(2228), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), + }, + [1256] = { + [sym_nested_identifier] = STATE(2601), + [sym_string] = STATE(2602), + [sym__module] = STATE(2939), + [sym_identifier] = ACTIONS(3542), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1916), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_LBRACE] = ACTIONS(1672), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1906), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(1024), + [anon_sym_SQUOTE] = ACTIONS(1026), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + [sym__automatic_semicolon] = ACTIONS(1672), + [sym__function_signature_automatic_semicolon] = ACTIONS(1672), + }, + [1257] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3560), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3558), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1256] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [1258] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3562), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3560), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1257] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [1259] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3564), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3562), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1258] = { - [sym_nested_identifier] = STATE(2600), - [sym_string] = STATE(2601), - [sym__module] = STATE(2827), - [sym_identifier] = ACTIONS(3556), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1902), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_LBRACE] = ACTIONS(1636), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1904), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(840), - [anon_sym_SQUOTE] = ACTIONS(842), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - [sym__automatic_semicolon] = ACTIONS(1636), - [sym__function_signature_automatic_semicolon] = ACTIONS(1636), - }, - [1259] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [1260] = { + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3566), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3564), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, - [1260] = { - [sym_nested_identifier] = STATE(2163), - [sym_string] = STATE(2164), - [sym__module] = STATE(2170), - [sym_identifier] = ACTIONS(3532), - [anon_sym_STAR] = ACTIONS(1619), - [anon_sym_EQ] = ACTIONS(1906), - [anon_sym_as] = ACTIONS(1619), - [anon_sym_COMMA] = ACTIONS(1636), - [anon_sym_RBRACE] = ACTIONS(1636), - [anon_sym_BANG] = ACTIONS(1619), - [anon_sym_LPAREN] = ACTIONS(1636), - [anon_sym_in] = ACTIONS(1619), - [anon_sym_SEMI] = ACTIONS(1636), - [anon_sym_LBRACK] = ACTIONS(1636), - [anon_sym_LT] = ACTIONS(1619), - [anon_sym_GT] = ACTIONS(1619), - [anon_sym_SLASH] = ACTIONS(1619), - [anon_sym_DOT] = ACTIONS(1636), - [anon_sym_EQ_GT] = ACTIONS(1900), - [anon_sym_QMARK_DOT] = ACTIONS(1636), - [anon_sym_PLUS_EQ] = ACTIONS(1640), - [anon_sym_DASH_EQ] = ACTIONS(1640), - [anon_sym_STAR_EQ] = ACTIONS(1640), - [anon_sym_SLASH_EQ] = ACTIONS(1640), - [anon_sym_PERCENT_EQ] = ACTIONS(1640), - [anon_sym_CARET_EQ] = ACTIONS(1640), - [anon_sym_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_GT_GT_GT_EQ] = ACTIONS(1640), - [anon_sym_LT_LT_EQ] = ACTIONS(1640), - [anon_sym_STAR_STAR_EQ] = ACTIONS(1640), - [anon_sym_AMP_AMP_EQ] = ACTIONS(1640), - [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1640), - [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1640), - [anon_sym_QMARK] = ACTIONS(1619), - [anon_sym_AMP_AMP] = ACTIONS(1619), - [anon_sym_PIPE_PIPE] = ACTIONS(1619), - [anon_sym_GT_GT] = ACTIONS(1619), - [anon_sym_GT_GT_GT] = ACTIONS(1619), - [anon_sym_LT_LT] = ACTIONS(1619), - [anon_sym_AMP] = ACTIONS(1619), - [anon_sym_CARET] = ACTIONS(1619), - [anon_sym_PIPE] = ACTIONS(1619), - [anon_sym_PLUS] = ACTIONS(1619), - [anon_sym_DASH] = ACTIONS(1619), - [anon_sym_PERCENT] = ACTIONS(1619), - [anon_sym_STAR_STAR] = ACTIONS(1619), - [anon_sym_LT_EQ] = ACTIONS(1636), - [anon_sym_EQ_EQ] = ACTIONS(1619), - [anon_sym_EQ_EQ_EQ] = ACTIONS(1636), - [anon_sym_BANG_EQ] = ACTIONS(1619), - [anon_sym_BANG_EQ_EQ] = ACTIONS(1636), - [anon_sym_GT_EQ] = ACTIONS(1636), - [anon_sym_QMARK_QMARK] = ACTIONS(1619), - [anon_sym_instanceof] = ACTIONS(1619), - [anon_sym_PLUS_PLUS] = ACTIONS(1636), - [anon_sym_DASH_DASH] = ACTIONS(1636), - [anon_sym_DQUOTE] = ACTIONS(590), - [anon_sym_SQUOTE] = ACTIONS(592), - [sym_comment] = ACTIONS(3), - [anon_sym_BQUOTE] = ACTIONS(1636), - [anon_sym_extends] = ACTIONS(1619), - [anon_sym_PIPE_RBRACE] = ACTIONS(1636), - [sym__automatic_semicolon] = ACTIONS(1636), - }, [1261] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3568), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3566), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, [1262] = { - [sym_nested_identifier] = STATE(5706), - [sym_string] = STATE(3896), - [sym_formal_parameters] = STATE(5805), - [sym_rest_pattern] = STATE(5370), - [sym_nested_type_identifier] = STATE(3840), - [sym__type] = STATE(4308), - [sym_tuple_parameter] = STATE(5332), - [sym_optional_tuple_parameter] = STATE(5332), - [sym_optional_type] = STATE(5332), - [sym_rest_type] = STATE(5332), - [sym__tuple_type_member] = STATE(5332), - [sym_constructor_type] = STATE(4308), - [sym__primary_type] = STATE(3886), - [sym_infer_type] = STATE(4308), - [sym_conditional_type] = STATE(3888), - [sym_generic_type] = STATE(3888), - [sym_type_query] = STATE(3888), - [sym_index_type_query] = STATE(3888), - [sym_lookup_type] = STATE(3888), - [sym_literal_type] = STATE(3888), - [sym__number] = STATE(3881), - [sym_existential_type] = STATE(3888), - [sym_flow_maybe_type] = STATE(3888), - [sym_parenthesized_type] = STATE(3888), - [sym_predefined_type] = STATE(3888), - [sym_object_type] = STATE(3888), + [sym_nested_identifier] = STATE(5716), + [sym_string] = STATE(3864), + [sym_formal_parameters] = STATE(5667), + [sym_rest_pattern] = STATE(5338), + [sym_nested_type_identifier] = STATE(3841), + [sym__type] = STATE(4299), + [sym_tuple_parameter] = STATE(5342), + [sym_optional_tuple_parameter] = STATE(5342), + [sym_optional_type] = STATE(5342), + [sym_rest_type] = STATE(5342), + [sym__tuple_type_member] = STATE(5342), + [sym_constructor_type] = STATE(4299), + [sym__primary_type] = STATE(3868), + [sym_infer_type] = STATE(4299), + [sym_conditional_type] = STATE(3867), + [sym_generic_type] = STATE(3867), + [sym_type_query] = STATE(3867), + [sym_index_type_query] = STATE(3867), + [sym_lookup_type] = STATE(3867), + [sym_literal_type] = STATE(3867), + [sym__number] = STATE(3869), + [sym_existential_type] = STATE(3867), + [sym_flow_maybe_type] = STATE(3867), + [sym_parenthesized_type] = STATE(3867), + [sym_predefined_type] = STATE(3867), + [sym_object_type] = STATE(3867), [sym_type_parameters] = STATE(5432), - [sym_array_type] = STATE(3888), - [sym_tuple_type] = STATE(3888), - [sym_readonly_type] = STATE(4308), - [sym_union_type] = STATE(4308), - [sym_intersection_type] = STATE(4308), - [sym_function_type] = STATE(4308), - [sym_identifier] = ACTIONS(3508), + [sym_array_type] = STATE(3867), + [sym_tuple_type] = STATE(3867), + [sym_readonly_type] = STATE(4299), + [sym_union_type] = STATE(4299), + [sym_intersection_type] = STATE(4299), + [sym_function_type] = STATE(4299), + [sym_identifier] = ACTIONS(3496), [anon_sym_STAR] = ACTIONS(540), [anon_sym_LBRACE] = ACTIONS(1878), - [anon_sym_typeof] = ACTIONS(2076), - [anon_sym_LPAREN] = ACTIONS(1628), + [anon_sym_typeof] = ACTIONS(2129), + [anon_sym_LPAREN] = ACTIONS(1664), [anon_sym_LBRACK] = ACTIONS(1882), - [anon_sym_RBRACK] = ACTIONS(3570), - [anon_sym_LT] = ACTIONS(2922), - [anon_sym_new] = ACTIONS(2078), - [anon_sym_DOT_DOT_DOT] = ACTIONS(3514), + [anon_sym_RBRACK] = ACTIONS(3568), + [anon_sym_LT] = ACTIONS(2920), + [anon_sym_new] = ACTIONS(2131), + [anon_sym_DOT_DOT_DOT] = ACTIONS(3502), [anon_sym_QMARK] = ACTIONS(576), [anon_sym_AMP] = ACTIONS(578), [anon_sym_PIPE] = ACTIONS(580), - [anon_sym_PLUS] = ACTIONS(2926), - [anon_sym_DASH] = ACTIONS(2926), - [anon_sym_void] = ACTIONS(1650), - [anon_sym_DQUOTE] = ACTIONS(1652), - [anon_sym_SQUOTE] = ACTIONS(1654), + [anon_sym_PLUS] = ACTIONS(2924), + [anon_sym_DASH] = ACTIONS(2924), + [anon_sym_void] = ACTIONS(1686), + [anon_sym_DQUOTE] = ACTIONS(1688), + [anon_sym_SQUOTE] = ACTIONS(1690), [sym_comment] = ACTIONS(3), - [sym_number] = ACTIONS(1656), + [sym_number] = ACTIONS(1692), [sym_this] = ACTIONS(1894), - [sym_true] = ACTIONS(1660), - [sym_false] = ACTIONS(1660), - [anon_sym_readonly] = ACTIONS(2086), - [anon_sym_any] = ACTIONS(1650), - [anon_sym_number] = ACTIONS(1650), - [anon_sym_boolean] = ACTIONS(1650), - [anon_sym_string] = ACTIONS(1650), - [anon_sym_symbol] = ACTIONS(1650), + [sym_true] = ACTIONS(1696), + [sym_false] = ACTIONS(1696), + [anon_sym_readonly] = ACTIONS(2139), + [anon_sym_any] = ACTIONS(1686), + [anon_sym_number] = ACTIONS(1686), + [anon_sym_boolean] = ACTIONS(1686), + [anon_sym_string] = ACTIONS(1686), + [anon_sym_symbol] = ACTIONS(1686), [anon_sym_infer] = ACTIONS(610), [anon_sym_keyof] = ACTIONS(612), [anon_sym_LBRACE_PIPE] = ACTIONS(614), }, + [1263] = { + [sym_nested_identifier] = STATE(2161), + [sym_string] = STATE(2162), + [sym__module] = STATE(2169), + [sym_identifier] = ACTIONS(3512), + [anon_sym_STAR] = ACTIONS(1655), + [anon_sym_EQ] = ACTIONS(1902), + [anon_sym_as] = ACTIONS(1655), + [anon_sym_COMMA] = ACTIONS(1672), + [anon_sym_RBRACE] = ACTIONS(1672), + [anon_sym_BANG] = ACTIONS(1655), + [anon_sym_LPAREN] = ACTIONS(1672), + [anon_sym_in] = ACTIONS(1655), + [anon_sym_SEMI] = ACTIONS(1672), + [anon_sym_LBRACK] = ACTIONS(1672), + [anon_sym_LT] = ACTIONS(1655), + [anon_sym_GT] = ACTIONS(1655), + [anon_sym_SLASH] = ACTIONS(1655), + [anon_sym_DOT] = ACTIONS(1672), + [anon_sym_EQ_GT] = ACTIONS(1900), + [anon_sym_QMARK_DOT] = ACTIONS(1672), + [anon_sym_PLUS_EQ] = ACTIONS(1676), + [anon_sym_DASH_EQ] = ACTIONS(1676), + [anon_sym_STAR_EQ] = ACTIONS(1676), + [anon_sym_SLASH_EQ] = ACTIONS(1676), + [anon_sym_PERCENT_EQ] = ACTIONS(1676), + [anon_sym_CARET_EQ] = ACTIONS(1676), + [anon_sym_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_GT_GT_GT_EQ] = ACTIONS(1676), + [anon_sym_LT_LT_EQ] = ACTIONS(1676), + [anon_sym_STAR_STAR_EQ] = ACTIONS(1676), + [anon_sym_AMP_AMP_EQ] = ACTIONS(1676), + [anon_sym_PIPE_PIPE_EQ] = ACTIONS(1676), + [anon_sym_QMARK_QMARK_EQ] = ACTIONS(1676), + [anon_sym_QMARK] = ACTIONS(1655), + [anon_sym_AMP_AMP] = ACTIONS(1655), + [anon_sym_PIPE_PIPE] = ACTIONS(1655), + [anon_sym_GT_GT] = ACTIONS(1655), + [anon_sym_GT_GT_GT] = ACTIONS(1655), + [anon_sym_LT_LT] = ACTIONS(1655), + [anon_sym_AMP] = ACTIONS(1655), + [anon_sym_CARET] = ACTIONS(1655), + [anon_sym_PIPE] = ACTIONS(1655), + [anon_sym_PLUS] = ACTIONS(1655), + [anon_sym_DASH] = ACTIONS(1655), + [anon_sym_PERCENT] = ACTIONS(1655), + [anon_sym_STAR_STAR] = ACTIONS(1655), + [anon_sym_LT_EQ] = ACTIONS(1672), + [anon_sym_EQ_EQ] = ACTIONS(1655), + [anon_sym_EQ_EQ_EQ] = ACTIONS(1672), + [anon_sym_BANG_EQ] = ACTIONS(1655), + [anon_sym_BANG_EQ_EQ] = ACTIONS(1672), + [anon_sym_GT_EQ] = ACTIONS(1672), + [anon_sym_QMARK_QMARK] = ACTIONS(1655), + [anon_sym_instanceof] = ACTIONS(1655), + [anon_sym_PLUS_PLUS] = ACTIONS(1672), + [anon_sym_DASH_DASH] = ACTIONS(1672), + [anon_sym_DQUOTE] = ACTIONS(590), + [anon_sym_SQUOTE] = ACTIONS(592), + [sym_comment] = ACTIONS(3), + [anon_sym_BQUOTE] = ACTIONS(1672), + [anon_sym_extends] = ACTIONS(1655), + [anon_sym_PIPE_RBRACE] = ACTIONS(1672), + [sym__automatic_semicolon] = ACTIONS(1672), + }, }; static uint16_t ts_small_parse_table[] = { [0] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1900), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(1908), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3498), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2156), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2157), 1, + STATE(2162), 1, sym_string, - STATE(2271), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 15, - sym__automatic_semicolon, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 16, 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1655), 24, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [89] = 35, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2129), 1, + anon_sym_typeof, + ACTIONS(2131), 1, + anon_sym_new, + ACTIONS(2139), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3496), 1, + sym_identifier, + ACTIONS(3502), 1, + anon_sym_DOT_DOT_DOT, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5338), 1, + sym_rest_pattern, + STATE(5432), 1, + sym_type_parameters, + STATE(5667), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(5342), 5, + sym_tuple_parameter, + sym_optional_tuple_parameter, + sym_optional_type, + sym_rest_type, + sym__tuple_type_member, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4299), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [224] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1916), 1, + anon_sym_EQ, + ACTIONS(1918), 1, + anon_sym_EQ_GT, + ACTIONS(3542), 1, + sym_identifier, + STATE(2601), 1, + sym_nested_identifier, + STATE(2602), 1, + sym_string, + STATE(2939), 1, + sym__module, + ACTIONS(1672), 15, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -131166,7 +131458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131182,7 +131474,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -131208,26 +131500,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [89] = 12, + [313] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1634), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(1902), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131243,7 +131535,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(1672), 16, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -131260,7 +131552,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1619), 24, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -131285,26 +131577,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [178] = 12, + [402] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1914), 1, + ACTIONS(1918), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 15, + ACTIONS(1672), 15, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -131320,7 +131612,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131336,7 +131628,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -131362,29 +131654,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [267] = 12, + [491] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1912), 1, - anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1900), 1, anon_sym_EQ_GT, - ACTIONS(3556), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(3514), 1, sym_identifier, - STATE(2600), 1, - sym_nested_identifier, - STATE(2601), 1, + STATE(2154), 1, sym_string, - STATE(2827), 1, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, sym__module, - ACTIONS(1636), 15, + ACTIONS(1672), 15, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -131397,7 +131689,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131413,7 +131705,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -131439,7 +131731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [356] = 12, + [580] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, @@ -131448,17 +131740,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(1884), 1, anon_sym_EQ_GT, - ACTIONS(1924), 1, + ACTIONS(1936), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 15, + ACTIONS(1672), 15, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -131474,7 +131766,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131490,7 +131782,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -131516,126 +131808,146 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [445] = 35, + [669] = 37, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(576), 1, - anon_sym_QMARK, - ACTIONS(578), 1, - anon_sym_AMP, - ACTIONS(580), 1, - anon_sym_PIPE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3572), 1, + anon_sym_export, + ACTIONS(3574), 1, + anon_sym_STAR, + ACTIONS(3576), 1, + anon_sym_COMMA, + ACTIONS(3578), 1, + anon_sym_RBRACE, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(3582), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2078), 1, + ACTIONS(3586), 1, + anon_sym_async, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(2086), 1, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3594), 1, + anon_sym_static, + ACTIONS(3596), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3508), 1, - sym_identifier, - ACTIONS(3514), 1, - anon_sym_DOT_DOT_DOT, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + STATE(3785), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5054), 1, + aux_sym_object_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(3592), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3598), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3600), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3894), 3, sym_string, - STATE(5370), 1, + sym__property_name, + sym_computed_property_name, + STATE(5053), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, sym_rest_pattern, - STATE(5432), 1, - sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5805), 1, - sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(5332), 5, - sym_tuple_parameter, - sym_optional_tuple_parameter, - sym_optional_type, - sym_rest_type, - sym__tuple_type_member, - ACTIONS(1650), 6, - anon_sym_void, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4295), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3570), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4308), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [580] = 12, + [807] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1634), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(1908), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(3016), 1, + anon_sym_in, + ACTIONS(3019), 1, + anon_sym_of, + ACTIONS(3514), 1, sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, + STATE(2154), 1, sym_string, - STATE(2170), 1, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, sym__module, - ACTIONS(1640), 15, + ACTIONS(1672), 14, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131651,14 +131963,224 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(1655), 23, + anon_sym_STAR, + anon_sym_as, + 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, + anon_sym_instanceof, + [899] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3606), 22, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3604), 40, + anon_sym_export, + anon_sym_type, + anon_sym_EQ, + anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_void, + anon_sym_delete, + sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_implements, + anon_sym_extends, + [969] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(3574), 1, + anon_sym_STAR, + ACTIONS(3576), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(3582), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, + anon_sym_LBRACK, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3610), 1, + anon_sym_export, + ACTIONS(3612), 1, + anon_sym_RBRACE, + ACTIONS(3614), 1, + anon_sym_async, + ACTIONS(3616), 1, + anon_sym_static, + ACTIONS(3618), 1, + anon_sym_readonly, + STATE(3785), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5087), 1, + aux_sym_object_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(3592), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3620), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3622), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3894), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5089), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4295), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3608), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [1107] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 15, + 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, anon_sym_LT_EQ, @@ -131668,7 +132190,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1619), 24, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -131693,97 +132231,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [669] = 37, + [1195] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, ACTIONS(3574), 1, - anon_sym_export, - ACTIONS(3576), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, ACTIONS(3580), 1, - anon_sym_RBRACE, - ACTIONS(3582), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, ACTIONS(3588), 1, - anon_sym_async, - ACTIONS(3590), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3596), 1, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3626), 1, + anon_sym_export, + ACTIONS(3628), 1, + anon_sym_RBRACE, + ACTIONS(3630), 1, + anon_sym_async, + ACTIONS(3632), 1, anon_sym_static, - ACTIONS(3598), 1, + ACTIONS(3634), 1, anon_sym_readonly, - ACTIONS(3604), 1, - anon_sym_PIPE_RBRACE, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3600), 2, + ACTIONS(3636), 2, anon_sym_get, anon_sym_set, - ACTIONS(3602), 3, + ACTIONS(3638), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3572), 10, + ACTIONS(3624), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -131794,30 +132332,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [807] = 12, + [1333] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1924), 1, - anon_sym_EQ, - ACTIONS(1926), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 14, + ACTIONS(1672), 13, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -131828,7 +132365,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -131844,7 +132381,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 26, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -131869,98 +132406,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_implements, anon_sym_extends, - [895] = 37, + [1421] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3608), 1, + ACTIONS(3642), 1, anon_sym_export, - ACTIONS(3610), 1, + ACTIONS(3644), 1, anon_sym_RBRACE, - ACTIONS(3612), 1, + ACTIONS(3646), 1, anon_sym_async, - ACTIONS(3614), 1, + ACTIONS(3648), 1, anon_sym_static, - ACTIONS(3616), 1, + ACTIONS(3650), 1, anon_sym_readonly, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5055), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5416), 1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3618), 2, + ACTIONS(3652), 2, anon_sym_get, anon_sym_set, - ACTIONS(3620), 3, + ACTIONS(3654), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5057), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3606), 10, + ACTIONS(3640), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -131971,97 +132509,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1033] = 37, + [1559] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3624), 1, + ACTIONS(3658), 1, anon_sym_export, - ACTIONS(3626), 1, + ACTIONS(3660), 1, anon_sym_RBRACE, - ACTIONS(3628), 1, + ACTIONS(3662), 1, anon_sym_async, - ACTIONS(3630), 1, + ACTIONS(3664), 1, anon_sym_static, - ACTIONS(3632), 1, + ACTIONS(3666), 1, anon_sym_readonly, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5055), 1, + STATE(5078), 1, aux_sym_object_repeat1, - STATE(5416), 1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3634), 2, + ACTIONS(3668), 2, anon_sym_get, anon_sym_set, - ACTIONS(3636), 3, + ACTIONS(3670), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5057), 3, + STATE(5081), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3622), 10, + ACTIONS(3656), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -132072,97 +132610,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1171] = 37, + [1697] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3640), 1, + ACTIONS(3674), 1, anon_sym_export, - ACTIONS(3642), 1, + ACTIONS(3676), 1, anon_sym_RBRACE, - ACTIONS(3644), 1, + ACTIONS(3678), 1, anon_sym_async, - ACTIONS(3646), 1, + ACTIONS(3680), 1, anon_sym_static, - ACTIONS(3648), 1, + ACTIONS(3682), 1, anon_sym_readonly, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3650), 2, + ACTIONS(3684), 2, anon_sym_get, anon_sym_set, - ACTIONS(3652), 3, + ACTIONS(3686), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3638), 10, + ACTIONS(3672), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -132173,419 +132711,198 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1309] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1900), 1, - anon_sym_EQ_GT, - ACTIONS(1952), 1, - anon_sym_EQ, - ACTIONS(3498), 1, - sym_identifier, - STATE(2156), 1, - sym_nested_identifier, - STATE(2157), 1, - sym_string, - STATE(2271), 1, - sym__module, - ACTIONS(1636), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [1397] = 37, + [1835] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3690), 1, anon_sym_export, - ACTIONS(3658), 1, + ACTIONS(3692), 1, anon_sym_RBRACE, - ACTIONS(3660), 1, + ACTIONS(3694), 1, anon_sym_async, - ACTIONS(3662), 1, + ACTIONS(3696), 1, anon_sym_static, - ACTIONS(3664), 1, + ACTIONS(3698), 1, anon_sym_readonly, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4949), 1, - aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5087), 1, + aux_sym_object_repeat1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3666), 2, + ACTIONS(3700), 2, anon_sym_get, anon_sym_set, - ACTIONS(3668), 3, + ACTIONS(3702), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(5089), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3654), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [1535] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3672), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3670), 40, - anon_sym_export, + ACTIONS(3688), 10, anon_sym_type, - anon_sym_EQ, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_implements, - anon_sym_extends, - [1605] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(3002), 1, - anon_sym_in, - ACTIONS(3005), 1, - anon_sym_of, - ACTIONS(3498), 1, - sym_identifier, - STATE(2156), 1, - sym_nested_identifier, - STATE(2157), 1, - sym_string, - STATE(2271), 1, - sym__module, - ACTIONS(1636), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 23, - anon_sym_STAR, - anon_sym_as, - 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, - anon_sym_instanceof, - [1697] = 37, + [1973] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3676), 1, + ACTIONS(3706), 1, anon_sym_export, - ACTIONS(3678), 1, + ACTIONS(3708), 1, anon_sym_RBRACE, - ACTIONS(3680), 1, + ACTIONS(3710), 1, anon_sym_async, - ACTIONS(3682), 1, + ACTIONS(3712), 1, anon_sym_static, - ACTIONS(3684), 1, + ACTIONS(3714), 1, anon_sym_readonly, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4974), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3686), 2, + ACTIONS(3716), 2, anon_sym_get, anon_sym_set, - ACTIONS(3688), 3, + ACTIONS(3718), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4976), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3674), 10, + ACTIONS(3704), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -132596,97 +132913,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1835] = 37, + [2111] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3608), 1, + ACTIONS(3610), 1, anon_sym_export, - ACTIONS(3612), 1, - anon_sym_async, ACTIONS(3614), 1, - anon_sym_static, + anon_sym_async, ACTIONS(3616), 1, + anon_sym_static, + ACTIONS(3618), 1, anon_sym_readonly, - ACTIONS(3690), 1, + ACTIONS(3720), 1, anon_sym_RBRACE, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5055), 1, + STATE(5087), 1, aux_sym_object_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3618), 2, + ACTIONS(3620), 2, anon_sym_get, anon_sym_set, - ACTIONS(3620), 3, + ACTIONS(3622), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5057), 3, + STATE(5089), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3606), 10, + ACTIONS(3608), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -132697,403 +133014,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [1973] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2690), 1, - anon_sym_COLON, - ACTIONS(3500), 1, - sym_identifier, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - anon_sym_SQUOTE, - STATE(135), 1, - sym_nested_identifier, - STATE(138), 1, - sym_string, - STATE(155), 1, - sym__module, - ACTIONS(1636), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2063] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1900), 1, - anon_sym_EQ_GT, - ACTIONS(2068), 1, - anon_sym_EQ, - ACTIONS(3498), 1, - sym_identifier, - STATE(2156), 1, - sym_nested_identifier, - STATE(2157), 1, - sym_string, - STATE(2271), 1, - sym__module, - ACTIONS(1636), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [2151] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2688), 1, - anon_sym_COLON, - ACTIONS(3498), 1, - sym_identifier, - STATE(2156), 1, - sym_nested_identifier, - STATE(2157), 1, - sym_string, - STATE(2271), 1, - sym__module, - ACTIONS(1636), 14, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2241] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1362), 1, - anon_sym_DQUOTE, - ACTIONS(1364), 1, - anon_sym_SQUOTE, - ACTIONS(2064), 1, - anon_sym_EQ, - ACTIONS(2066), 1, - anon_sym_EQ_GT, - ACTIONS(3692), 1, - sym_identifier, - STATE(3063), 1, - sym_nested_identifier, - STATE(3065), 1, - sym_string, - STATE(3352), 1, - sym__module, - ACTIONS(1636), 13, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 26, - 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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_extends, - [2329] = 37, + [2249] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3696), 1, + ACTIONS(3610), 1, anon_sym_export, - ACTIONS(3698), 1, - anon_sym_RBRACE, - ACTIONS(3700), 1, + ACTIONS(3614), 1, anon_sym_async, - ACTIONS(3702), 1, + ACTIONS(3616), 1, anon_sym_static, - ACTIONS(3704), 1, + ACTIONS(3618), 1, anon_sym_readonly, - STATE(3789), 1, + ACTIONS(3722), 1, + anon_sym_RBRACE, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5051), 1, + STATE(5087), 1, aux_sym_object_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3706), 2, + ACTIONS(3620), 2, anon_sym_get, anon_sym_set, - ACTIONS(3708), 3, + ACTIONS(3622), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5050), 3, + STATE(5089), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3694), 10, + ACTIONS(3608), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -133104,173 +133115,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2467] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(3498), 1, - sym_identifier, - STATE(2156), 1, - sym_nested_identifier, - STATE(2157), 1, - sym_string, - STATE(2271), 1, - sym__module, - ACTIONS(1636), 15, - 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, - 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(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [2555] = 37, + [2387] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3676), 1, + ACTIONS(3726), 1, anon_sym_export, - ACTIONS(3680), 1, + ACTIONS(3728), 1, + anon_sym_RBRACE, + ACTIONS(3730), 1, anon_sym_async, - ACTIONS(3682), 1, + ACTIONS(3732), 1, anon_sym_static, - ACTIONS(3684), 1, + ACTIONS(3734), 1, anon_sym_readonly, - ACTIONS(3710), 1, - anon_sym_RBRACE, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4974), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3686), 2, + ACTIONS(3736), 2, anon_sym_get, anon_sym_set, - ACTIONS(3688), 3, + ACTIONS(3738), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4976), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3674), 10, + ACTIONS(3724), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -133281,97 +133216,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2693] = 37, + [2525] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3608), 1, + ACTIONS(3610), 1, anon_sym_export, - ACTIONS(3612), 1, - anon_sym_async, ACTIONS(3614), 1, - anon_sym_static, + anon_sym_async, ACTIONS(3616), 1, + anon_sym_static, + ACTIONS(3618), 1, anon_sym_readonly, - ACTIONS(3712), 1, + ACTIONS(3740), 1, anon_sym_RBRACE, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5055), 1, + STATE(5087), 1, aux_sym_object_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3618), 2, + ACTIONS(3620), 2, anon_sym_get, anon_sym_set, - ACTIONS(3620), 3, + ACTIONS(3622), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5057), 3, + STATE(5089), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3606), 10, + ACTIONS(3608), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -133382,198 +133317,265 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2831] = 37, + [2663] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3572), 1, + anon_sym_export, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3586), 1, + anon_sym_async, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3716), 1, - anon_sym_export, - ACTIONS(3718), 1, - anon_sym_RBRACE, - ACTIONS(3720), 1, - anon_sym_async, - ACTIONS(3722), 1, + ACTIONS(3594), 1, anon_sym_static, - ACTIONS(3724), 1, + ACTIONS(3596), 1, anon_sym_readonly, - STATE(3789), 1, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3742), 1, + anon_sym_RBRACE, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4949), 1, + STATE(5054), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3726), 2, + ACTIONS(3598), 2, anon_sym_get, anon_sym_set, - ACTIONS(3728), 3, + ACTIONS(3600), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(5053), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3714), 10, + ACTIONS(3570), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [2801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3746), 22, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LT, + anon_sym_GT, + anon_sym_EQ_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_TILDE, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + anon_sym_BQUOTE, + sym_number, + anon_sym_AT, + ACTIONS(3744), 40, + anon_sym_export, anon_sym_type, + anon_sym_EQ, anon_sym_namespace, + anon_sym_typeof, + anon_sym_import, + anon_sym_await, + anon_sym_yield, + anon_sym_SLASH, + anon_sym_class, + anon_sym_async, + anon_sym_function, + anon_sym_new, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_void, + anon_sym_delete, sym_identifier, + sym_this, + sym_super, + sym_true, + sym_false, + sym_null, + sym_undefined, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [2969] = 37, + anon_sym_implements, + anon_sym_extends, + [2871] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3628), 1, + anon_sym_RBRACE, + ACTIONS(3706), 1, anon_sym_export, - ACTIONS(3660), 1, + ACTIONS(3710), 1, anon_sym_async, - ACTIONS(3662), 1, + ACTIONS(3712), 1, anon_sym_static, - ACTIONS(3664), 1, + ACTIONS(3714), 1, anon_sym_readonly, - ACTIONS(3730), 1, - anon_sym_RBRACE, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3666), 2, + ACTIONS(3716), 2, anon_sym_get, anon_sym_set, - ACTIONS(3668), 3, + ACTIONS(3718), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3654), 10, + ACTIONS(3704), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -133584,26 +133586,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [3107] = 12, + [3009] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1916), 1, + ACTIONS(1912), 1, anon_sym_EQ, - ACTIONS(1918), 1, + ACTIONS(1914), 1, anon_sym_EQ_GT, - ACTIONS(3498), 1, + ACTIONS(3514), 1, sym_identifier, - STATE(2156), 1, - sym_nested_identifier, - STATE(2157), 1, + STATE(2154), 1, sym_string, - STATE(2271), 1, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, sym__module, - ACTIONS(1636), 14, + ACTIONS(1672), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -133618,7 +133620,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133634,7 +133636,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -133660,173 +133662,198 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [3195] = 12, + [3097] = 37, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1926), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 14, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(2962), 1, anon_sym_LBRACE, + ACTIONS(3574), 1, + anon_sym_STAR, + ACTIONS(3576), 1, + anon_sym_COMMA, + ACTIONS(3580), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3582), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, - 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, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, anon_sym_DASH, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [3283] = 37, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3706), 1, + anon_sym_export, + ACTIONS(3710), 1, + anon_sym_async, + ACTIONS(3712), 1, + anon_sym_static, + ACTIONS(3714), 1, + anon_sym_readonly, + ACTIONS(3748), 1, + anon_sym_RBRACE, + STATE(3785), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(4955), 1, + aux_sym_object_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(3592), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3716), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3718), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3894), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4956), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4295), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3704), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [3235] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, - anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, ACTIONS(3584), 1, - anon_sym_SEMI, - ACTIONS(3586), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3658), 1, - anon_sym_RBRACE, - ACTIONS(3716), 1, + ACTIONS(3706), 1, anon_sym_export, - ACTIONS(3720), 1, + ACTIONS(3710), 1, anon_sym_async, - ACTIONS(3722), 1, + ACTIONS(3712), 1, anon_sym_static, - ACTIONS(3724), 1, + ACTIONS(3714), 1, anon_sym_readonly, - STATE(3789), 1, + ACTIONS(3750), 1, + anon_sym_COMMA, + ACTIONS(3752), 1, + anon_sym_RBRACE, + ACTIONS(3754), 1, + anon_sym_SEMI, + ACTIONS(3756), 1, + anon_sym_PIPE_RBRACE, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3726), 2, + ACTIONS(3716), 2, anon_sym_get, anon_sym_set, - ACTIONS(3728), 3, + ACTIONS(3718), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4377), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3714), 10, + ACTIONS(3704), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -133837,32 +133864,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [3421] = 13, + [3373] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, + ACTIONS(2193), 1, anon_sym_EQ_GT, - ACTIONS(2690), 1, - anon_sym_COLON, - ACTIONS(3506), 1, + ACTIONS(2224), 1, + anon_sym_EQ, + ACTIONS(3758), 1, sym_identifier, - STATE(1042), 1, - sym_nested_identifier, - STATE(1059), 1, + STATE(3153), 1, sym_string, - STATE(1094), 1, + STATE(3181), 1, + sym_nested_identifier, + STATE(3453), 1, sym__module, - ACTIONS(1636), 14, - sym__automatic_semicolon, + ACTIONS(1672), 13, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -133873,7 +133896,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -133889,9 +133913,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 26, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -133914,265 +133939,199 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [3511] = 37, + anon_sym_extends, + [3461] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3626), 1, anon_sym_export, - ACTIONS(3660), 1, + ACTIONS(3630), 1, anon_sym_async, - ACTIONS(3662), 1, + ACTIONS(3632), 1, anon_sym_static, - ACTIONS(3664), 1, + ACTIONS(3634), 1, anon_sym_readonly, - ACTIONS(3718), 1, + ACTIONS(3748), 1, anon_sym_RBRACE, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3666), 2, + ACTIONS(3636), 2, anon_sym_get, anon_sym_set, - ACTIONS(3668), 3, + ACTIONS(3638), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3654), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [3649] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3734), 22, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LT, - anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_TILDE, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - anon_sym_BQUOTE, - sym_number, - anon_sym_AT, - ACTIONS(3732), 40, - anon_sym_export, + ACTIONS(3624), 10, anon_sym_type, - anon_sym_EQ, anon_sym_namespace, - anon_sym_typeof, - anon_sym_import, - anon_sym_await, - anon_sym_yield, - anon_sym_SLASH, - anon_sym_class, - anon_sym_async, - anon_sym_function, - anon_sym_new, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_void, - anon_sym_delete, sym_identifier, - sym_this, - sym_super, - sym_true, - sym_false, - sym_null, - sym_undefined, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_implements, - anon_sym_extends, - [3719] = 37, + [3599] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3656), 1, + ACTIONS(3626), 1, anon_sym_export, - ACTIONS(3660), 1, + ACTIONS(3630), 1, anon_sym_async, - ACTIONS(3662), 1, + ACTIONS(3632), 1, anon_sym_static, - ACTIONS(3664), 1, + ACTIONS(3634), 1, anon_sym_readonly, - ACTIONS(3736), 1, + ACTIONS(3760), 1, anon_sym_RBRACE, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3666), 2, + ACTIONS(3636), 2, anon_sym_get, anon_sym_set, - ACTIONS(3668), 3, + ACTIONS(3638), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3654), 10, + ACTIONS(3624), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -134183,28 +134142,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [3857] = 12, + [3737] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2066), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(1908), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2690), 1, + anon_sym_COLON, + ACTIONS(3506), 1, sym_identifier, - STATE(2163), 1, + ACTIONS(3508), 1, + anon_sym_DQUOTE, + ACTIONS(3510), 1, + anon_sym_SQUOTE, + STATE(135), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(136), 1, sym_string, - STATE(2170), 1, + STATE(149), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 14, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -134215,8 +134178,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134232,10 +134194,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 26, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -134258,27 +134219,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [3945] = 12, + [3827] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1920), 1, - anon_sym_EQ, - ACTIONS(1922), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(1986), 1, + anon_sym_EQ, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 13, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, @@ -134292,7 +134252,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134308,7 +134268,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 26, + ACTIONS(1655), 26, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134335,97 +134295,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_implements, anon_sym_extends, - [4033] = 37, + [3915] = 37, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, + ACTIONS(3574), 1, anon_sym_STAR, - ACTIONS(3578), 1, + ACTIONS(3576), 1, anon_sym_COMMA, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, + ACTIONS(3582), 1, anon_sym_SEMI, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3602), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3696), 1, + ACTIONS(3626), 1, anon_sym_export, - ACTIONS(3700), 1, + ACTIONS(3630), 1, anon_sym_async, - ACTIONS(3702), 1, + ACTIONS(3632), 1, anon_sym_static, - ACTIONS(3704), 1, + ACTIONS(3634), 1, anon_sym_readonly, - ACTIONS(3738), 1, + ACTIONS(3762), 1, anon_sym_RBRACE, - STATE(3789), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5051), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5416), 1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3706), 2, + ACTIONS(3636), 2, anon_sym_get, anon_sym_set, - ACTIONS(3708), 3, + ACTIONS(3638), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5050), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3694), 10, + ACTIONS(3624), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -134436,29 +134396,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [4171] = 12, + [4053] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1922), 1, - anon_sym_EQ_GT, - ACTIONS(2072), 1, + ACTIONS(1908), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2690), 1, + anon_sym_COLON, + ACTIONS(3504), 1, sym_identifier, - STATE(2163), 1, + STATE(1044), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(1056), 1, sym_string, - STATE(2170), 1, + STATE(1190), 1, sym__module, - ACTIONS(1636), 13, - anon_sym_LBRACE, + ACTIONS(1672), 14, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -134469,7 +134432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134485,7 +134448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 26, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134510,34 +134473,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - anon_sym_extends, - [4259] = 13, + [4143] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1908), 1, + ACTIONS(2191), 1, anon_sym_EQ, - ACTIONS(1910), 1, + ACTIONS(2193), 1, anon_sym_EQ_GT, - ACTIONS(2688), 1, - anon_sym_COLON, - ACTIONS(3506), 1, + ACTIONS(3758), 1, sym_identifier, - STATE(1042), 1, - sym_nested_identifier, - STATE(1059), 1, + STATE(3153), 1, sym_string, - STATE(1094), 1, + STATE(3181), 1, + sym_nested_identifier, + STATE(3453), 1, sym__module, - ACTIONS(1636), 14, - sym__automatic_semicolon, + ACTIONS(1672), 13, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -134548,7 +134505,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134564,9 +134522,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 26, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -134589,228 +134548,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [4349] = 37, + anon_sym_extends, + [4231] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, - anon_sym_COMMA, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3584), 1, - anon_sym_SEMI, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3604), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3608), 1, - anon_sym_export, - ACTIONS(3612), 1, - anon_sym_async, - ACTIONS(3614), 1, - anon_sym_static, - ACTIONS(3616), 1, - anon_sym_readonly, - ACTIONS(3740), 1, - anon_sym_RBRACE, - STATE(3789), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5055), 1, - aux_sym_object_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(3594), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3618), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3620), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3891), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5057), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4420), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3606), 10, - anon_sym_type, - anon_sym_namespace, + ACTIONS(1900), 1, + anon_sym_EQ_GT, + ACTIONS(1990), 1, + anon_sym_EQ, + ACTIONS(3514), 1, sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [4487] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, + STATE(2154), 1, + sym_string, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, + sym__module, + ACTIONS(1672), 14, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3582), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, anon_sym_SEMI, - ACTIONS(3586), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 25, + 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, - ACTIONS(3604), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3716), 1, - anon_sym_export, - ACTIONS(3720), 1, - anon_sym_async, - ACTIONS(3722), 1, - anon_sym_static, - ACTIONS(3724), 1, - anon_sym_readonly, - ACTIONS(3742), 1, - anon_sym_RBRACE, - STATE(3789), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(4949), 1, - aux_sym_object_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(3594), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3726), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3728), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3891), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4950), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4420), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3714), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [4625] = 12, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [4319] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2066), 1, + ACTIONS(2193), 1, anon_sym_EQ_GT, - ACTIONS(2209), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3692), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(3063), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(3065), 1, + STATE(2162), 1, sym_string, - STATE(3352), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 13, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -134824,7 +134658,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134840,7 +134674,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 26, + ACTIONS(1655), 26, anon_sym_STAR, anon_sym_as, anon_sym_LBRACE, @@ -134867,29 +134701,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [4713] = 12, + [4407] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1922), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(1936), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(1938), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 14, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -134900,7 +134735,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -134916,7 +134751,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 26, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -134941,214 +134776,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, anon_sym_extends, - [4801] = 37, + [4495] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3716), 1, - anon_sym_export, - ACTIONS(3720), 1, - anon_sym_async, - ACTIONS(3722), 1, - anon_sym_static, - ACTIONS(3724), 1, - anon_sym_readonly, - ACTIONS(3744), 1, - anon_sym_COMMA, - ACTIONS(3746), 1, - anon_sym_RBRACE, - ACTIONS(3748), 1, - anon_sym_SEMI, - ACTIONS(3750), 1, - anon_sym_PIPE_RBRACE, - STATE(3789), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(4949), 1, - aux_sym_object_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(3594), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3726), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3728), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3891), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4950), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4380), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3714), 10, - anon_sym_type, - anon_sym_namespace, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2686), 1, + anon_sym_COLON, + ACTIONS(3514), 1, sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [4939] = 37, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3578), 1, + STATE(2154), 1, + sym_string, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, + sym__module, + ACTIONS(1672), 14, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(3582), 1, anon_sym_LPAREN, - ACTIONS(3584), 1, anon_sym_SEMI, - ACTIONS(3586), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 24, + 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, - ACTIONS(3604), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3754), 1, - anon_sym_export, - ACTIONS(3756), 1, - anon_sym_RBRACE, - ACTIONS(3758), 1, - anon_sym_async, - ACTIONS(3760), 1, - anon_sym_static, - ACTIONS(3762), 1, - anon_sym_readonly, - STATE(3789), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(4949), 1, - aux_sym_object_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(3594), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3764), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3766), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3891), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4950), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4420), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3752), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [5077] = 3, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [4585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 22, + ACTIONS(3766), 22, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_BANG, @@ -135171,7 +134880,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, sym_number, anon_sym_AT, - ACTIONS(3768), 40, + ACTIONS(3764), 40, anon_sym_export, anon_sym_type, anon_sym_EQ, @@ -135212,26 +134921,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_symbol, anon_sym_implements, anon_sym_extends, - [5147] = 12, + [4655] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1918), 1, + ACTIONS(1914), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 14, + ACTIONS(1672), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -135246,7 +134955,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135262,7 +134971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135288,31 +134997,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [5235] = 12, + [4743] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1910), 1, + ACTIONS(1938), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 15, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1672), 14, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -135323,7 +135031,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135339,7 +135047,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135364,47 +135072,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [5323] = 3, + anon_sym_extends, + [4831] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 23, - anon_sym_STAR, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1908), 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(3774), 38, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(3514), 1, + sym_identifier, + STATE(2154), 1, + sym_string, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, + sym__module, + ACTIONS(1672), 15, + sym__automatic_semicolon, 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_EQ_GT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135420,22 +135124,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, - anon_sym_extends, - [5392] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3776), 23, + ACTIONS(1655), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -135457,72 +135148,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3778), 38, - anon_sym_as, + anon_sym_instanceof, + [4919] = 37, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(2962), 1, anon_sym_LBRACE, + ACTIONS(3574), 1, + anon_sym_STAR, + ACTIONS(3576), 1, anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3580), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, + ACTIONS(3582), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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, - anon_sym_extends, - [5461] = 14, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3658), 1, + anon_sym_export, + ACTIONS(3662), 1, + anon_sym_async, + ACTIONS(3664), 1, + anon_sym_static, + ACTIONS(3666), 1, + anon_sym_readonly, + ACTIONS(3768), 1, + anon_sym_RBRACE, + STATE(3785), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5078), 1, + aux_sym_object_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(3592), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3668), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3670), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3894), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5081), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4295), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3656), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [5057] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1616), 1, + ACTIONS(1908), 1, anon_sym_EQ, - ACTIONS(1634), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(2957), 1, - anon_sym_QMARK, - ACTIONS(3532), 1, + ACTIONS(2686), 1, + anon_sym_COLON, + ACTIONS(3504), 1, sym_identifier, - STATE(2163), 1, + STATE(1044), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(1056), 1, sym_string, - STATE(2170), 1, + STATE(1190), 1, sym__module, - ACTIONS(1623), 3, + ACTIONS(1672), 14, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1636), 11, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -135533,7 +135286,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135549,7 +135302,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 23, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135557,6 +135310,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT, @@ -135573,28 +135327,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [5552] = 12, + [5147] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2209), 1, - anon_sym_EQ, - ACTIONS(2211), 1, + ACTIONS(1900), 1, anon_sym_EQ_GT, - ACTIONS(3692), 1, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(3514), 1, sym_identifier, - STATE(3063), 1, - sym_nested_identifier, - STATE(3065), 1, + STATE(2154), 1, sym_string, - STATE(3352), 1, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 14, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -135605,8 +135361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135622,10 +135377,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -135648,29 +135402,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [5639] = 12, + anon_sym_extends, + [5235] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1936), 1, + ACTIONS(1952), 1, anon_sym_EQ, - ACTIONS(1938), 1, + ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 13, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -135681,7 +135436,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135697,7 +135452,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 26, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -135722,29 +135477,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_implements, anon_sym_extends, - [5726] = 12, + [5323] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2211), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(1920), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(1922), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 13, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -135755,8 +135512,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -135772,10 +135528,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -135798,58 +135553,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [5813] = 12, + anon_sym_extends, + [5410] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2074), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(3770), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -135871,14 +135581,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(3772), 38, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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, - [5900] = 3, + anon_sym_extends, + [5479] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 23, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1924), 1, + anon_sym_EQ, + ACTIONS(1926), 1, + anon_sym_EQ_GT, + ACTIONS(3514), 1, + sym_identifier, + STATE(2154), 1, + sym_string, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, + sym__module, + ACTIONS(1672), 13, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 25, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -135900,49 +135693,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3484), 38, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_of, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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, anon_sym_extends, - [5969] = 3, + [5566] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 23, + ACTIONS(3492), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -135966,7 +135722,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3782), 38, + ACTIONS(3494), 38, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -136005,10 +135761,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [6038] = 3, + [5635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 23, + ACTIONS(3774), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -136032,7 +135788,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3786), 38, + ACTIONS(3776), 38, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -136071,30 +135827,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [6107] = 12, + [5704] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1952), 1, - anon_sym_EQ, - ACTIONS(1954), 1, + ACTIONS(1884), 1, anon_sym_EQ_GT, - ACTIONS(3498), 1, + ACTIONS(2215), 1, + anon_sym_EQ, + ACTIONS(3512), 1, sym_identifier, - STATE(2156), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2157), 1, + STATE(2162), 1, sym_string, - STATE(2271), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, - sym__automatic_semicolon, + ACTIONS(1672), 13, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -136104,7 +135860,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136120,7 +135876,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136146,10 +135902,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [6194] = 3, + [5791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 23, + ACTIONS(3778), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -136173,7 +135929,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3790), 38, + ACTIONS(3780), 38, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -136212,10 +135968,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [6263] = 3, + [5860] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(1884), 1, + anon_sym_EQ_GT, + ACTIONS(1982), 1, + anon_sym_EQ, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 13, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 25, + 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, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [5947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 23, + ACTIONS(3782), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -136239,7 +136070,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3496), 38, + ACTIONS(3784), 38, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -136278,29 +136109,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [6332] = 12, + [6016] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1938), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2224), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(2226), 1, + anon_sym_EQ_GT, + ACTIONS(3758), 1, sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, + STATE(3153), 1, sym_string, - STATE(2170), 1, + STATE(3181), 1, + sym_nested_identifier, + STATE(3453), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 13, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136311,7 +136141,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136327,9 +136158,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -136352,33 +136184,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [6419] = 15, + [6103] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1623), 1, - anon_sym_RBRACK, - ACTIONS(2207), 1, + ACTIONS(2226), 1, anon_sym_EQ_GT, - ACTIONS(3045), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3050), 1, - anon_sym_COLON, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 11, + ACTIONS(1672), 13, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -136390,7 +136216,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136406,9 +136233,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -136431,30 +136259,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6512] = 12, + [6190] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1884), 1, - anon_sym_EQ_GT, - ACTIONS(2205), 1, + ACTIONS(1986), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(1988), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 13, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -136464,7 +136292,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136480,7 +136308,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136505,59 +136333,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [6599] = 12, + anon_sym_implements, + [6277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(2074), 1, - anon_sym_EQ_GT, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(3476), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -136579,32 +136361,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, + ACTIONS(3478), 38, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_of, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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] = 12, + anon_sym_extends, + [6346] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1884), 1, + ACTIONS(1922), 1, anon_sym_EQ_GT, - ACTIONS(2042), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 13, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -136614,7 +136433,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136630,7 +136449,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136656,29 +136475,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [6773] = 12, + [6433] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1954), 1, + ACTIONS(1988), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, - sym__automatic_semicolon, + ACTIONS(1672), 13, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136689,7 +136508,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136705,7 +136524,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -136730,33 +136549,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [6860] = 13, + anon_sym_implements, + [6520] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(1659), 1, + anon_sym_RBRACK, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2676), 1, + ACTIONS(3029), 1, anon_sym_EQ, - ACTIONS(3792), 1, - sym_identifier, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(2347), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1636), 13, - sym__automatic_semicolon, + ACTIONS(3032), 1, anon_sym_COMMA, - anon_sym_SEMI, + ACTIONS(3034), 1, + anon_sym_COLON, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 11, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -136767,7 +136587,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136783,13 +136603,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 24, 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, @@ -136806,134 +136628,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [6948] = 33, + [6613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(3786), 23, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(674), 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(676), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, - sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3048), 4, - anon_sym_EQ, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3788), 38, + 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(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4141), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [7076] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2044), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 12, - anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -136949,57 +136684,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, - 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, - anon_sym_STAR_STAR, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_QMARK_QMARK, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [7162] = 13, + [6682] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(1926), 1, anon_sym_EQ_GT, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2366), 1, - anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3792), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(2347), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1636), 13, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 13, sym__automatic_semicolon, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -137011,7 +136727,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137027,13 +136743,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 25, 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, @@ -137050,32 +136768,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7250] = 13, + anon_sym_extends, + [6769] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2388), 1, - anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(1652), 1, anon_sym_EQ, - ACTIONS(3792), 1, - sym_identifier, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, - aux_sym_object_repeat1, - ACTIONS(2347), 2, - anon_sym_LT, + ACTIONS(1670), 1, + anon_sym_EQ_GT, + ACTIONS(2967), 1, anon_sym_QMARK, - ACTIONS(1636), 13, - sym__automatic_semicolon, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1659), 3, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1672), 11, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -137086,7 +136806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137102,11 +136822,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 23, 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, @@ -137125,20 +136846,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7338] = 9, + [6860] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3792), 1, anon_sym_EQ, - ACTIONS(3802), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3808), 1, + ACTIONS(3802), 1, anon_sym_EQ_GT, - STATE(3946), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137154,7 +136875,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, + ACTIONS(3794), 19, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -137174,7 +136895,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137196,20 +136917,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7418] = 9, + [6940] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, anon_sym_DOT, + ACTIONS(3806), 1, + anon_sym_EQ, ACTIONS(3808), 1, anon_sym_EQ_GT, - ACTIONS(3812), 1, - anon_sym_LT, - STATE(2495), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137225,15 +136946,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, - sym__automatic_semicolon, + ACTIONS(3794), 19, 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_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -137244,8 +136966,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -137267,29 +136988,124 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [7498] = 13, + [7020] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, + sym_type_parameters, + STATE(5716), 1, + sym_nested_identifier, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3032), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4151), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [7148] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(2341), 1, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(2347), 1, anon_sym_LPAREN, - ACTIONS(2344), 1, + ACTIONS(2350), 1, anon_sym_COLON, - ACTIONS(2376), 1, - anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(2674), 1, anon_sym_EQ, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_identifier, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2347), 2, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2353), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1636), 13, + ACTIONS(1672), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -137303,7 +137119,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137319,7 +137135,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137342,43 +137158,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7586] = 13, + [7236] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3802), 1, anon_sym_EQ_GT, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2372), 1, - anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(3792), 1, - sym_identifier, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(2347), 2, + ACTIONS(3816), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1636), 13, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, + STATE(3936), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137394,83 +137187,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, - anon_sym_STAR, + ACTIONS(3794), 19, + sym__automatic_semicolon, anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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, - [7674] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2146), 1, - anon_sym_EQ, - ACTIONS(2148), 1, - anon_sym_EQ_GT, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 12, + 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_LT_EQ, anon_sym_EQ_EQ_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(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3790), 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, @@ -137489,100 +137229,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [7760] = 5, + [7316] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - ACTIONS(3800), 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, + ACTIONS(1992), 1, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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, - [7832] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2205), 1, - anon_sym_EQ, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(3050), 1, - anon_sym_COLON, - ACTIONS(3532), 1, + ACTIONS(3819), 1, sym_identifier, - STATE(2163), 1, + STATE(4117), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(4222), 1, sym_string, - STATE(2170), 1, + STATE(4481), 1, sym__module, - ACTIONS(1636), 12, + ACTIONS(1672), 13, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137592,7 +137262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137608,7 +137278,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137633,30 +137303,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [7920] = 12, + [7402] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2068), 1, - anon_sym_EQ, - ACTIONS(2070), 1, + ACTIONS(1984), 1, anon_sym_EQ_GT, - ACTIONS(3506), 1, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(3512), 1, sym_identifier, - STATE(1042), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(1059), 1, + STATE(2162), 1, sym_string, - STATE(1094), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, - sym__automatic_semicolon, + ACTIONS(1672), 12, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137666,7 +137335,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137682,7 +137351,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137707,29 +137376,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8006] = 12, + anon_sym_extends, + [7488] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2148), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(2217), 1, + anon_sym_EQ_GT, + ACTIONS(3034), 1, + anon_sym_COLON, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 12, - anon_sym_COMMA, + ACTIONS(1672), 12, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -137739,7 +137411,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137755,7 +137427,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -137780,103 +137452,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [8092] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3815), 1, - anon_sym_EQ, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3826), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - 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_LT_EQ, - anon_sym_EQ_EQ_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(3796), 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, - [8176] = 13, + [7576] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(2341), 1, + ACTIONS(2347), 1, anon_sym_LPAREN, - ACTIONS(2344), 1, + ACTIONS(2350), 1, anon_sym_COLON, ACTIONS(2374), 1, anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(2674), 1, anon_sym_EQ, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_identifier, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2347), 2, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(2353), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1636), 13, + ACTIONS(1672), 13, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, @@ -137890,79 +137488,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_AMP, - anon_sym_CARET, - 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, - [8264] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2070), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 13, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -137978,15 +137504,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 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, @@ -138003,20 +137527,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8350] = 9, + [7664] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, ACTIONS(3808), 1, anon_sym_EQ_GT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3828), 1, + ACTIONS(3814), 1, anon_sym_EQ, - STATE(3853), 1, + ACTIONS(3821), 1, + anon_sym_LT, + STATE(2229), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138032,15 +137556,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, - sym__automatic_semicolon, + ACTIONS(3794), 19, 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_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -138051,8 +137576,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -138074,32 +137598,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [8430] = 13, + [7744] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2386), 1, - anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(1652), 1, anon_sym_EQ, - ACTIONS(3792), 1, + ACTIONS(1670), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, sym_identifier, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2347), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1636), 13, - sym__automatic_semicolon, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1659), 2, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(1672), 11, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138110,7 +137632,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138126,13 +137648,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 24, 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, @@ -138149,99 +137673,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8518] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3808), 1, - anon_sym_EQ_GT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3828), 1, - anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - ACTIONS(3796), 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, - [8602] = 12, + [7832] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2148), 1, - anon_sym_EQ_GT, - ACTIONS(2227), 1, + ACTIONS(2044), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(2046), 1, + anon_sym_EQ_GT, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 12, + ACTIONS(1672), 12, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -138254,7 +137705,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138270,7 +137721,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138296,29 +137747,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [8688] = 12, + [7918] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2042), 1, - anon_sym_EQ, - ACTIONS(2044), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(1902), 1, + anon_sym_EQ, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 12, + ACTIONS(1659), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(1672), 11, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138328,7 +137781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138344,7 +137797,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138369,27 +137822,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [8774] = 12, + [8006] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2068), 1, - anon_sym_EQ, - ACTIONS(2070), 1, + ACTIONS(1992), 1, anon_sym_EQ_GT, - ACTIONS(3498), 1, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(3512), 1, sym_identifier, - STATE(2156), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2157), 1, + STATE(2162), 1, sym_string, - STATE(2271), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, + ACTIONS(1672), 13, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -138403,7 +137855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138419,7 +137871,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138444,41 +137896,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [8860] = 13, + [8092] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2205), 1, - anon_sym_EQ, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(3074), 1, - anon_sym_COLON, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 12, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(3799), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3802), 1, + anon_sym_EQ_GT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3824), 1, + anon_sym_LT, + STATE(2399), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138494,12 +137925,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, - anon_sym_STAR, + ACTIONS(3794), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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_PIPE_RBRACE, + ACTIONS(3790), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -138518,30 +137967,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [8948] = 13, + [8172] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1634), 1, + ACTIONS(2046), 1, anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(2219), 1, anon_sym_EQ, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1623), 2, + ACTIONS(1672), 12, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1636), 11, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -138553,7 +137999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138569,7 +138015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138594,30 +138040,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9036] = 13, + anon_sym_extends, + [8258] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(1634), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(3812), 1, sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1623), 2, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1672), 13, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1636), 11, - anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138628,7 +138077,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138644,15 +138093,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 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, @@ -138669,28 +138116,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9124] = 12, + [8346] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 1, - anon_sym_EQ, - ACTIONS(2070), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(3500), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2380), 1, + anon_sym_RBRACE, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(3812), 1, sym_identifier, - ACTIONS(3502), 1, - anon_sym_DQUOTE, - ACTIONS(3504), 1, - anon_sym_SQUOTE, - STATE(135), 1, - sym_nested_identifier, - STATE(138), 1, - sym_string, - STATE(155), 1, - sym__module, - ACTIONS(1636), 13, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1672), 13, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -138702,7 +138152,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138718,15 +138168,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 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, @@ -138743,20 +138191,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9210] = 9, + [8434] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3826), 1, + ACTIONS(3806), 1, + anon_sym_EQ, + ACTIONS(3808), 1, anon_sym_EQ_GT, - ACTIONS(3830), 1, - anon_sym_LT, - STATE(2226), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3827), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138772,15 +138228,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, + ACTIONS(3794), 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_QMARK_DOT, anon_sym_LT_EQ, @@ -138791,12 +138245,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -138804,9 +138256,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, @@ -138814,20 +138264,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9290] = 9, + [8518] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3815), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3826), 1, + ACTIONS(1984), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 12, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138843,30 +138312,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 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_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3796), 21, + ACTIONS(1655), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -138885,32 +138336,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9370] = 14, + anon_sym_instanceof, + anon_sym_extends, + [8604] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1623), 1, - anon_sym_RBRACK, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(3045), 1, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3532), 1, + ACTIONS(2217), 1, + anon_sym_EQ_GT, + ACTIONS(3068), 1, + anon_sym_COLON, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 11, + ACTIONS(1672), 12, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -138920,7 +138372,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -138936,7 +138388,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -138961,29 +138413,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9460] = 12, + [8692] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2068), 1, - anon_sym_EQ, - ACTIONS(2070), 1, + ACTIONS(1659), 1, + anon_sym_RBRACK, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(3833), 1, + ACTIONS(3029), 1, + anon_sym_EQ, + ACTIONS(3032), 1, + anon_sym_COMMA, + ACTIONS(3512), 1, sym_identifier, - STATE(4127), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(4273), 1, + STATE(2162), 1, sym_string, - STATE(4600), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 13, - sym__automatic_semicolon, + ACTIONS(1672), 11, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -138994,7 +138448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139010,7 +138464,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139035,14 +138489,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [9546] = 6, + [8782] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1898), 1, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(1900), 1, + ACTIONS(1992), 1, anon_sym_EQ_GT, - ACTIONS(1640), 15, + ACTIONS(3506), 1, + sym_identifier, + ACTIONS(3508), 1, + anon_sym_DQUOTE, + ACTIONS(3510), 1, + anon_sym_SQUOTE, + STATE(135), 1, + sym_nested_identifier, + STATE(136), 1, + sym_string, + STATE(149), 1, + sym__module, + ACTIONS(1672), 13, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139058,29 +138538,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 20, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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_PIPE_RBRACE, - ACTIONS(1619), 22, + ACTIONS(1655), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -139102,30 +138562,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9619] = 12, + anon_sym_instanceof, + [8868] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2374), 1, - anon_sym_RBRACE, - ACTIONS(3835), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(3837), 1, - anon_sym_LPAREN, - ACTIONS(3843), 1, + ACTIONS(1992), 1, anon_sym_EQ_GT, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3840), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3800), 15, + ACTIONS(3504), 1, + sym_identifier, + STATE(1044), 1, + sym_nested_identifier, + STATE(1056), 1, + sym_string, + STATE(1190), 1, + sym__module, + ACTIONS(1672), 13, sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, @@ -139134,11 +138593,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139154,12 +138612,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 20, + ACTIONS(1655), 24, 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, @@ -139175,108 +138636,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9704] = 33, + anon_sym_instanceof, + [8954] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, - anon_sym_AMP, - ACTIONS(1290), 1, - anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2347), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, - anon_sym_readonly, - ACTIONS(2914), 1, - anon_sym_LBRACE, - ACTIONS(2918), 1, - anon_sym_LBRACK, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3845), 1, - sym_identifier, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5409), 1, - sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5822), 1, - sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4181), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4482), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [9831] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3815), 1, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2372), 1, + anon_sym_RBRACE, + ACTIONS(2674), 1, anon_sym_EQ, - ACTIONS(3826), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(3812), 1, + sym_identifier, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1672), 13, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139292,35 +138689,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 20, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(1655), 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, @@ -139336,45 +138711,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [9904] = 3, + anon_sym_instanceof, + [9042] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 23, - anon_sym_STAR, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2390), 1, + anon_sym_RBRACE, + ACTIONS(2674), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3812), 1, + sym_identifier, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2353), 2, 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(3496), 36, + ACTIONS(1672), 13, 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139390,36 +138764,50 @@ 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(1655), 22, + anon_sym_STAR, + anon_sym_as, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_AMP, + anon_sym_CARET, + 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_extends, - anon_sym_PIPE_RBRACE, - [9971] = 12, + [9130] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2227), 1, - anon_sym_EQ, - ACTIONS(2229), 1, + ACTIONS(2046), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 11, + ACTIONS(1672), 12, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -139431,7 +138819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139447,7 +138835,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, + ACTIONS(1655), 25, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -139473,51 +138861,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [10056] = 6, + [9216] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(3808), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, anon_sym_SLASH_EQ, anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 20, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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_PIPE_RBRACE, - ACTIONS(3796), 22, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139540,44 +138905,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10129] = 11, + ACTIONS(3794), 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_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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, + [9288] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3847), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(3849), 1, + ACTIONS(1992), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 15, + ACTIONS(3514), 1, + sym_identifier, + STATE(2154), 1, + sym_string, + STATE(2159), 1, + sym_nested_identifier, + STATE(2251), 1, + sym__module, + ACTIONS(1672), 13, 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_LT_EQ, anon_sym_EQ_EQ_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(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139593,10 +138977,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(1655), 24, 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, @@ -139604,7 +138991,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, @@ -139612,20 +139001,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10212] = 9, + anon_sym_instanceof, + [9374] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 1, + ACTIONS(3792), 1, + anon_sym_EQ, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3808), 1, + ACTIONS(3802), 1, anon_sym_EQ_GT, - ACTIONS(3851), 1, - anon_sym_EQ, - STATE(3946), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3827), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139641,14 +139039,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, + ACTIONS(3794), 16, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -139658,13 +139055,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, - ACTIONS(3796), 21, + ACTIONS(3790), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -139672,9 +139067,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, @@ -139682,20 +139075,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10291] = 9, + [9458] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3847), 1, - anon_sym_EQ, - ACTIONS(3849), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(2674), 1, + anon_sym_EQ, + ACTIONS(3812), 1, + sym_identifier, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1672), 13, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139711,32 +139127,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, - 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_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3796), 21, + ACTIONS(1655), 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, @@ -139752,27 +139149,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10370] = 12, + anon_sym_instanceof, + [9546] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, + ACTIONS(2350), 1, anon_sym_COLON, - ACTIONS(2676), 1, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(3833), 1, anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2347), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3838), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1636), 15, + ACTIONS(3794), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -139788,7 +139186,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139804,7 +139202,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + ACTIONS(3790), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -139825,20 +139223,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10455] = 9, + [9631] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3849), 1, + ACTIONS(1884), 1, anon_sym_EQ_GT, - ACTIONS(3853), 1, - anon_sym_LT, - STATE(2829), 1, - sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139854,15 +139246,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1672), 20, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -139873,10 +139267,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -139895,43 +139290,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10534] = 12, + [9704] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(3835), 1, - anon_sym_EQ, - ACTIONS(3837), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(3843), 1, - anon_sym_EQ_GT, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(3840), 2, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2129), 1, + anon_sym_typeof, + ACTIONS(2131), 1, + anon_sym_new, + ACTIONS(2139), 1, + anon_sym_readonly, + ACTIONS(2920), 1, anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3800), 15, - sym__automatic_semicolon, - anon_sym_as, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5432), 1, + sym_type_parameters, + STATE(5667), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3032), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4128), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [9831] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1876), 1, + anon_sym_EQ, + ACTIONS(1884), 1, + anon_sym_EQ_GT, + ACTIONS(3843), 3, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, + anon_sym_extends, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139947,12 +139415,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 20, + ACTIONS(1672), 17, + 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_LT_EQ, + anon_sym_EQ_EQ_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(1655), 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, + [9908] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3774), 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, @@ -139968,14 +139480,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10619] = 6, + ACTIONS(3776), 36, + 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_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_extends, + anon_sym_PIPE_RBRACE, + [9975] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3806), 1, anon_sym_EQ, - ACTIONS(3826), 1, + ACTIONS(3808), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -139991,7 +139540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 20, + ACTIONS(3794), 20, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -140012,7 +139561,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140035,22 +139584,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10692] = 8, + [10048] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1898), 1, - anon_sym_EQ, - ACTIONS(1900), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(3856), 3, - anon_sym_COMMA, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 12, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1640), 15, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140066,29 +139632,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_PIPE_RBRACE, - ACTIONS(1619), 19, + ACTIONS(1655), 24, 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, @@ -140096,7 +139646,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, @@ -140104,26 +139656,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10769] = 12, + anon_sym_instanceof, + [10133] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(2225), 1, + ACTIONS(2230), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, + ACTIONS(3512), 1, sym_identifier, - STATE(2163), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(2164), 1, + STATE(2162), 1, sym_string, - STATE(2170), 1, + STATE(2169), 1, sym__module, - ACTIONS(1636), 12, + ACTIONS(1672), 12, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LBRACK, @@ -140136,7 +139689,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140152,7 +139705,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -140177,35 +139730,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [10854] = 13, + [10218] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3802), 1, - anon_sym_LT, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3851), 1, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2380), 1, + anon_sym_RBRACE, + ACTIONS(3833), 1, anon_sym_EQ, - ACTIONS(3868), 1, - anon_sym_DOT, - ACTIONS(3871), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, anon_sym_EQ_GT, - STATE(3946), 1, - sym_type_arguments, - ACTIONS(3823), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3862), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3866), 4, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3838), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3794), 15, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3800), 11, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -140215,7 +139766,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140231,19 +139782,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 19, + ACTIONS(3790), 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, @@ -140251,121 +139803,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [10941] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, - anon_sym_AMP, - ACTIONS(1290), 1, - anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3873), 1, - sym_identifier, - ACTIONS(3875), 1, - anon_sym_LBRACE, - ACTIONS(3877), 1, - anon_sym_LBRACK, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5409), 1, - sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5822), 1, - sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(4181), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4482), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [11068] = 12, + [10303] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, + ACTIONS(2350), 1, anon_sym_COLON, - ACTIONS(2388), 1, + ACTIONS(2390), 1, anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(3833), 1, anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2347), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(3838), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1636), 15, + ACTIONS(3794), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -140381,7 +139839,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140397,7 +139855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + ACTIONS(3790), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140418,22 +139876,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11153] = 8, + [10388] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1876), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2219), 1, anon_sym_EQ, - ACTIONS(1884), 1, + ACTIONS(2221), 1, anon_sym_EQ_GT, - ACTIONS(3856), 3, - anon_sym_COMMA, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 11, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1640), 15, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140449,29 +139923,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - 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_LT_EQ, - anon_sym_EQ_EQ_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(1619), 19, + ACTIONS(1655), 25, 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, @@ -140479,7 +139937,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, @@ -140487,14 +139947,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11230] = 6, + anon_sym_instanceof, + anon_sym_extends, + [10473] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2390), 1, + anon_sym_RBRACE, + ACTIONS(2674), 1, anon_sym_EQ, - ACTIONS(1640), 15, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1672), 15, + 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, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140510,35 +140001,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 20, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1655), 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, @@ -140554,45 +140022,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11303] = 12, + [10558] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3851), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(3866), 1, - anon_sym_extends, - ACTIONS(3871), 1, + ACTIONS(2217), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 15, - anon_sym_as, - anon_sym_RBRACE, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 12, 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(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140608,31 +140070,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [11388] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3788), 23, + ACTIONS(1655), 24, anon_sym_STAR, - anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -140654,18 +140094,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3790), 36, - 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_LBRACK, + anon_sym_instanceof, + [10643] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3799), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3849), 1, + anon_sym_LT, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + STATE(2845), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140681,6 +140124,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 18, + 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_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140690,28 +140143,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [11455] = 12, + ACTIONS(3790), 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, + [10722] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(2341), 1, + ACTIONS(2347), 1, anon_sym_LPAREN, - ACTIONS(2344), 1, + ACTIONS(2350), 1, anon_sym_COLON, - ACTIONS(2386), 1, + ACTIONS(2372), 1, anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(2674), 1, anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2347), 2, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(2353), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1636), 15, + ACTIONS(1672), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -140727,7 +140201,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140743,7 +140217,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + ACTIONS(1655), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -140764,45 +140238,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11540] = 3, + [10807] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3776), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3796), 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(3778), 36, - 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_LBRACK, + ACTIONS(3799), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3854), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140818,6 +140267,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 18, + 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_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -140827,46 +140286,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [11607] = 12, + ACTIONS(3790), 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, + [10886] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_COMMA, - ACTIONS(3879), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3881), 1, + ACTIONS(2230), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 15, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(3016), 1, + anon_sym_in, + ACTIONS(3019), 1, + anon_sym_of, + ACTIONS(3512), 1, + sym_identifier, + STATE(2161), 1, + sym_nested_identifier, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 11, 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(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -140882,10 +140359,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(1655), 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, @@ -140893,7 +140372,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, @@ -140901,108 +140382,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11692] = 33, + anon_sym_instanceof, + [10975] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(576), 1, - anon_sym_QMARK, - ACTIONS(578), 1, - anon_sym_AMP, - ACTIONS(580), 1, - anon_sym_PIPE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2221), 1, + anon_sym_EQ_GT, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(3512), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2078), 1, - anon_sym_new, - ACTIONS(2086), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5432), 1, - sym_type_parameters, - STATE(5706), 1, + STATE(2161), 1, sym_nested_identifier, - STATE(5805), 1, - sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3048), 3, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4206), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [11819] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1876), 1, - anon_sym_EQ, - ACTIONS(1884), 1, - anon_sym_EQ_GT, - ACTIONS(1640), 15, + STATE(2162), 1, + sym_string, + STATE(2169), 1, + sym__module, + ACTIONS(1672), 11, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141018,29 +140430,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 20, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1655), 25, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141062,58 +140454,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11892] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3849), 1, - anon_sym_EQ_GT, - ACTIONS(3879), 1, - anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, - 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_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3796), 21, + [11060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 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, @@ -141132,33 +140483,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [11971] = 12, + ACTIONS(3788), 36, + 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_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_extends, + anon_sym_PIPE_RBRACE, + [11127] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, + ACTIONS(3816), 1, + anon_sym_LT, + ACTIONS(3827), 1, + anon_sym_LBRACK, + ACTIONS(3856), 1, + anon_sym_EQ, + ACTIONS(3864), 1, + anon_sym_DOT, + ACTIONS(3867), 1, anon_sym_EQ_GT, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2374), 1, + STATE(3936), 1, + sym_type_arguments, + ACTIONS(3830), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3858), 2, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2676), 1, - anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2347), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1636), 15, + ACTIONS(3862), 4, sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3794), 11, + anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141168,7 +140558,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141184,20 +140574,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + ACTIONS(3790), 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, @@ -141205,38 +140594,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12056] = 12, + [11214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(2229), 1, + ACTIONS(3802), 1, anon_sym_EQ_GT, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 11, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141252,9 +140617,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 25, - anon_sym_STAR, + ACTIONS(3794), 20, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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_PIPE_RBRACE, + ACTIONS(3790), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141276,41 +140661,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [12141] = 12, + [11287] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2205), 1, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(3833), 1, anon_sym_EQ, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 12, + ACTIONS(3835), 1, anon_sym_LPAREN, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(3838), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3794), 15, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141326,15 +140713,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(3790), 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, @@ -141350,15 +140734,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [12226] = 6, + [11372] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3808), 1, + ACTIONS(1900), 1, anon_sym_EQ_GT, - ACTIONS(3828), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141374,7 +140757,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 20, + ACTIONS(1672), 20, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -141395,7 +140778,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141418,10 +140801,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12299] = 3, + [11445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 23, + ACTIONS(3492), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -141445,7 +140828,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3782), 36, + ACTIONS(3494), 36, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -141482,43 +140865,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [12366] = 12, + [11512] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2372), 1, - anon_sym_RBRACE, - ACTIONS(3835), 1, + ACTIONS(1898), 1, anon_sym_EQ, - ACTIONS(3837), 1, - anon_sym_LPAREN, - ACTIONS(3843), 1, + ACTIONS(1900), 1, anon_sym_EQ_GT, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(3840), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3800), 15, - 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, - anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141534,78 +140888,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [12451] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 12, + ACTIONS(1672), 20, + 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_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(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1655), 22, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -141627,46 +140932,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [12536] = 3, + [11585] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 23, - anon_sym_STAR, + ACTIONS(1898), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(1900), 1, + anon_sym_EQ_GT, + ACTIONS(3843), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3846), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_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(3774), 36, - 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_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141682,6 +140963,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 17, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -141690,12 +140980,31 @@ 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, - [12603] = 3, + ACTIONS(1655), 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, + [11662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 23, + ACTIONS(3770), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -141719,7 +141028,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3786), 36, + ACTIONS(3772), 36, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -141756,27 +141065,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [12670] = 12, + [11729] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(2341), 1, + ACTIONS(2347), 1, anon_sym_LPAREN, - ACTIONS(2344), 1, + ACTIONS(2350), 1, anon_sym_COLON, - ACTIONS(2372), 1, + ACTIONS(2374), 1, anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(2674), 1, anon_sym_EQ, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(5045), 1, aux_sym_object_repeat1, - ACTIONS(2347), 2, + ACTIONS(2353), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1636), 15, + ACTIONS(1672), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -141792,7 +141101,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141808,7 +141117,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + ACTIONS(1655), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -141829,87 +141138,114 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12755] = 12, + [11814] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2386), 1, - anon_sym_RBRACE, - ACTIONS(3835), 1, - anon_sym_EQ, - ACTIONS(3837), 1, - anon_sym_LPAREN, - ACTIONS(3843), 1, - anon_sym_EQ_GT, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(3840), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3800), 15, - 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, - anon_sym_BQUOTE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 20, + ACTIONS(540), 1, 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, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(1350), 1, anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, + anon_sym_readonly, + ACTIONS(2912), 1, + anon_sym_LBRACE, + ACTIONS(2916), 1, + anon_sym_LBRACK, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3869), 1, + sym_identifier, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, + sym_type_parameters, + STATE(5483), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 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, - [12840] = 6, + STATE(4208), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4723), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [11941] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3802), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(3816), 1, + anon_sym_LT, + ACTIONS(3856), 1, anon_sym_EQ, - ACTIONS(1640), 15, + STATE(3936), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -141925,16 +141261,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 20, + ACTIONS(3794), 18, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -141946,11 +141280,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(1619), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -141969,42 +141302,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [12913] = 14, + [12020] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(2225), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3852), 1, anon_sym_EQ_GT, - ACTIONS(3002), 1, - anon_sym_in, - ACTIONS(3005), 1, - anon_sym_of, - ACTIONS(3532), 1, - sym_identifier, - STATE(2163), 1, - sym_nested_identifier, - STATE(2164), 1, - sym_string, - STATE(2170), 1, - sym__module, - ACTIONS(1636), 11, - anon_sym_LPAREN, + ACTIONS(3854), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 3, + anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 15, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142020,12 +141355,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 23, + ACTIONS(3790), 18, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, - anon_sym_LT, - anon_sym_GT, + anon_sym_in, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -142033,9 +141366,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, @@ -142043,46 +141374,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [13002] = 3, + [12103] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 23, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3796), 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(3484), 36, - 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_LBRACK, + ACTIONS(3799), 1, anon_sym_DOT, - anon_sym_QMARK_DOT, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3871), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142098,43 +141403,15 @@ 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_extends, - anon_sym_PIPE_RBRACE, - [13069] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2366), 1, - anon_sym_RBRACE, - ACTIONS(2676), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(2347), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(1636), 15, + ACTIONS(3794), 18, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142144,28 +141421,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + anon_sym_extends, + ACTIONS(3790), 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, @@ -142181,20 +141444,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13154] = 9, + [12182] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, + anon_sym_readonly, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3826), 1, - anon_sym_EQ_GT, - ACTIONS(3851), 1, + ACTIONS(3873), 1, + sym_identifier, + ACTIONS(3875), 1, + anon_sym_LBRACE, + ACTIONS(3877), 1, + anon_sym_LBRACK, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, + sym_type_parameters, + STATE(5483), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(4208), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4723), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [12309] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3792), 1, anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3802), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142210,15 +141561,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, + ACTIONS(3794), 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_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142229,10 +141581,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -142251,27 +141605,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13233] = 12, + [12382] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2341), 1, - anon_sym_LPAREN, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2376), 1, + ACTIONS(2337), 1, anon_sym_RBRACE, - ACTIONS(2676), 1, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(3833), 1, anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2347), 2, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(3838), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(1636), 15, + ACTIONS(3794), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -142287,7 +141641,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142303,7 +141657,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + ACTIONS(3790), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142324,27 +141678,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13318] = 12, + [12467] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, anon_sym_COLON, - ACTIONS(2376), 1, + ACTIONS(2380), 1, anon_sym_RBRACE, - ACTIONS(3835), 1, + ACTIONS(2674), 1, anon_sym_EQ, - ACTIONS(3837), 1, - anon_sym_LPAREN, - ACTIONS(3843), 1, - anon_sym_EQ_GT, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(3840), 2, + ACTIONS(2353), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3800), 15, + ACTIONS(1672), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -142360,7 +141714,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142376,7 +141730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 20, + ACTIONS(1655), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142397,27 +141751,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13403] = 12, + [12552] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, + ACTIONS(2350), 1, anon_sym_COLON, - ACTIONS(2366), 1, + ACTIONS(2374), 1, anon_sym_RBRACE, - ACTIONS(3835), 1, + ACTIONS(3833), 1, anon_sym_EQ, - ACTIONS(3837), 1, + ACTIONS(3835), 1, anon_sym_LPAREN, - ACTIONS(3843), 1, + ACTIONS(3841), 1, anon_sym_EQ_GT, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(5045), 1, aux_sym_object_repeat1, - ACTIONS(3840), 2, + ACTIONS(3838), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3800), 15, + ACTIONS(3794), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -142433,7 +141787,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142449,7 +141803,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 20, + ACTIONS(3790), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142470,33 +141824,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13488] = 12, + [12637] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2344), 1, - anon_sym_COLON, - ACTIONS(2388), 1, - anon_sym_RBRACE, - ACTIONS(3835), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3862), 1, + anon_sym_COMMA, + ACTIONS(3871), 1, anon_sym_EQ, - ACTIONS(3837), 1, - anon_sym_LPAREN, - ACTIONS(3843), 1, + ACTIONS(3879), 1, anon_sym_EQ_GT, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, - aux_sym_object_repeat1, - ACTIONS(3840), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(3800), 15, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 15, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142506,7 +141862,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142522,20 +141878,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 20, + ACTIONS(3790), 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, @@ -142543,38 +141897,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13573] = 16, + [12722] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_extends, - ACTIONS(3871), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(3883), 1, - anon_sym_EQ, - ACTIONS(3886), 1, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, anon_sym_COLON, - ACTIONS(3888), 1, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(2674), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2353), 2, + anon_sym_LT, anon_sym_QMARK, - STATE(3853), 1, - sym_type_arguments, - STATE(5430), 1, - sym_type_annotation, - ACTIONS(3823), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3862), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3800), 11, + ACTIONS(1672), 15, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -142584,7 +141933,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142600,7 +141949,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(1655), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142611,7 +141960,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, @@ -142619,109 +141970,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13665] = 35, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3584), 1, - anon_sym_SEMI, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3604), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3894), 1, - anon_sym_export, - ACTIONS(3896), 1, - anon_sym_STAR, - ACTIONS(3898), 1, - anon_sym_COMMA, - ACTIONS(3900), 1, - anon_sym_RBRACE, - ACTIONS(3902), 1, - anon_sym_async, - ACTIONS(3906), 1, - anon_sym_static, - ACTIONS(3908), 1, - anon_sym_readonly, - STATE(3794), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(3904), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3910), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3912), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3876), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4420), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3892), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [13795] = 6, + [12807] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 1, + ACTIONS(3808), 1, anon_sym_EQ_GT, - ACTIONS(1912), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -142737,15 +141993,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 19, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3794), 20, 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_LT_EQ, @@ -142757,7 +142014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -142780,36 +142037,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13867] = 6, + [12880] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1904), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2674), 1, anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 19, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1672), 15, 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, @@ -142822,15 +142073,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 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, @@ -142846,202 +142110,116 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [13939] = 34, + [12965] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3856), 1, + anon_sym_EQ, + ACTIONS(3862), 1, + anon_sym_extends, + ACTIONS(3867), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_new, - ACTIONS(3928), 1, - anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(3830), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(3932), 1, anon_sym_PIPE, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3944), 1, - anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, - anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2235), 1, - sym_template_string, - STATE(5186), 1, - sym_type_parameters, - STATE(5469), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3548), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [14067] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, - anon_sym_typeof, - ACTIONS(3954), 1, - anon_sym_new, - ACTIONS(3956), 1, - anon_sym_QMARK, - ACTIONS(3958), 1, - anon_sym_AMP, - ACTIONS(3960), 1, - anon_sym_PIPE, - ACTIONS(3962), 1, - anon_sym_readonly, - ACTIONS(3964), 1, - anon_sym_keyof, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2235), 1, - sym_template_string, - STATE(5167), 1, - sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3609), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [14195] = 6, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [13050] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, - anon_sym_EQ, - ACTIONS(3849), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(2347), 1, + anon_sym_LPAREN, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(2674), 1, + anon_sym_EQ, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2353), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(1672), 15, + 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, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143057,13 +142235,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, + ACTIONS(1655), 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, + [13135] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2350), 1, + anon_sym_COLON, + ACTIONS(2372), 1, + anon_sym_RBRACE, + ACTIONS(3833), 1, + anon_sym_EQ, + ACTIONS(3835), 1, + anon_sym_LPAREN, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(3838), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(3794), 15, 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, @@ -143076,15 +142292,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, @@ -143100,14 +142329,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14267] = 6, + [13220] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(1876), 1, anon_sym_EQ, - ACTIONS(3849), 1, + ACTIONS(1884), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143123,15 +142352,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1672), 20, 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_LT_EQ, @@ -143143,7 +142373,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143166,395 +142396,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14339] = 35, + [13293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3748), 1, - anon_sym_SEMI, - ACTIONS(3750), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3894), 1, - anon_sym_export, - ACTIONS(3896), 1, + ACTIONS(3778), 23, anon_sym_STAR, - ACTIONS(3902), 1, - anon_sym_async, - ACTIONS(3906), 1, - anon_sym_static, - ACTIONS(3908), 1, - anon_sym_readonly, - ACTIONS(3966), 1, - anon_sym_COMMA, - ACTIONS(3968), 1, - anon_sym_RBRACE, - STATE(3794), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(3904), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(3910), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(3912), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3876), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4380), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3892), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14469] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, - anon_sym_typeof, - ACTIONS(3972), 1, - anon_sym_new, - ACTIONS(3974), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3976), 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(3978), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3980), 1, - anon_sym_readonly, - ACTIONS(3982), 1, - anon_sym_keyof, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2235), 1, - sym_template_string, - STATE(5176), 1, - sym_type_parameters, - STATE(5615), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3446), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [14597] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3780), 36, + sym__automatic_semicolon, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(3922), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(3924), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, - anon_sym_typeof, - ACTIONS(3986), 1, - anon_sym_new, - ACTIONS(3988), 1, - anon_sym_QMARK, - ACTIONS(3990), 1, - anon_sym_AMP, - ACTIONS(3992), 1, - anon_sym_PIPE, - ACTIONS(3994), 1, - anon_sym_readonly, - ACTIONS(3996), 1, - anon_sym_keyof, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2235), 1, - sym_template_string, - STATE(5207), 1, - sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3618), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [14725] = 32, + 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_extends, + anon_sym_PIPE_RBRACE, + [13360] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(4000), 1, - anon_sym_export, - ACTIONS(4005), 1, - anon_sym_async, - ACTIONS(4007), 1, - anon_sym_static, - ACTIONS(4009), 1, - anon_sym_readonly, - STATE(3789), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(3594), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4011), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4013), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3891), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5152), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5286), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4399), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(3998), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [14849] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3881), 1, + ACTIONS(3808), 1, anon_sym_EQ_GT, - ACTIONS(4015), 1, - anon_sym_LT, - STATE(4117), 1, + ACTIONS(3856), 1, + anon_sym_EQ, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143570,14 +142489,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3794), 18, 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_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -143588,7 +142508,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -143610,40 +142530,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [14927] = 10, + [13439] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1634), 1, - anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(3782), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(3856), 1, - anon_sym_LBRACK, - ACTIONS(3859), 2, + 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(4018), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2278), 4, + anon_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(3784), 36, sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1636), 12, anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, + anon_sym_of, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -143659,8 +142584,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 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, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [13506] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3476), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -143672,7 +142611,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, @@ -143680,195 +142621,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [15007] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1362), 1, - anon_sym_DQUOTE, - ACTIONS(1364), 1, - anon_sym_SQUOTE, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4022), 1, - sym_identifier, - ACTIONS(4024), 1, - anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(3478), 36, + sym__automatic_semicolon, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_new, - ACTIONS(4036), 1, - anon_sym_QMARK, - ACTIONS(4038), 1, - anon_sym_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4048), 1, - sym_this, - ACTIONS(4052), 1, - anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, - anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, - sym_nested_type_identifier, - STATE(3383), 1, - sym_string, - STATE(3394), 1, - sym__primary_type, - STATE(3397), 1, - sym__number, - STATE(3497), 1, - sym_template_string, - STATE(5199), 1, - sym_type_parameters, - STATE(5569), 1, - sym_nested_identifier, - STATE(5821), 1, - sym_formal_parameters, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, - sym_true, - sym_false, - ACTIONS(4044), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3488), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3386), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15135] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, + anon_sym_of, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4060), 1, - sym_identifier, - ACTIONS(4062), 1, - anon_sym_typeof, - ACTIONS(4064), 1, - anon_sym_new, - ACTIONS(4066), 1, - anon_sym_QMARK, - ACTIONS(4068), 1, - anon_sym_AMP, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4072), 1, - sym_this, - ACTIONS(4074), 1, - anon_sym_readonly, - ACTIONS(4076), 1, - anon_sym_asserts, - ACTIONS(4078), 1, - anon_sym_keyof, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5386), 1, - sym_type_parameters, - STATE(5417), 1, - sym_type_predicate, - STATE(5593), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4876), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15263] = 34, + 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_extends, + anon_sym_PIPE_RBRACE, + [13573] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -143885,438 +142675,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, - anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, - anon_sym_new, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, - sym_number, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4080), 1, - sym_identifier, - ACTIONS(4082), 1, - sym_this, - ACTIONS(4084), 1, - anon_sym_asserts, - STATE(3890), 1, - sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3954), 1, - sym__primary_type, - STATE(3963), 1, - sym__number, - STATE(4404), 1, - sym_type_predicate, - STATE(5251), 1, - sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, - sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(2018), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4049), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3945), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15391] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, + ACTIONS(2085), 1, anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(2091), 1, anon_sym_new, - ACTIONS(4100), 1, - anon_sym_QMARK, - ACTIONS(4102), 1, - anon_sym_AMP, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4116), 1, - anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, - anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, - sym_nested_type_identifier, - STATE(2785), 1, - sym_template_string, - STATE(2792), 1, - sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, - sym__primary_type, - STATE(5180), 1, - sym_type_parameters, - STATE(5657), 1, - sym_formal_parameters, - STATE(5782), 1, - sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, - sym_true, - sym_false, - ACTIONS(4108), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3080), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2793), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15519] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, - anon_sym_typeof, - ACTIONS(4126), 1, - anon_sym_new, - ACTIONS(4128), 1, - anon_sym_QMARK, - ACTIONS(4130), 1, - anon_sym_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(4136), 1, - anon_sym_keyof, - STATE(2162), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3954), 1, sym_string, - STATE(2181), 1, + STATE(3959), 1, sym__primary_type, - STATE(2182), 1, + STATE(3960), 1, sym__number, - STATE(2235), 1, - sym_template_string, - STATE(5247), 1, + STATE(5242), 1, sym_type_parameters, - STATE(5714), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3297), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15647] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, - sym_identifier, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, - anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4140), 1, - anon_sym_new, - ACTIONS(4142), 1, - anon_sym_QMARK, - ACTIONS(4144), 1, - anon_sym_AMP, - ACTIONS(4146), 1, - anon_sym_PIPE, - ACTIONS(4148), 1, - anon_sym_readonly, - ACTIONS(4150), 1, - anon_sym_keyof, - STATE(2733), 1, - sym_nested_type_identifier, - STATE(2785), 1, - sym_template_string, - STATE(2792), 1, - sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, - sym__primary_type, - STATE(5443), 1, - sym_type_parameters, - STATE(5484), 1, + STATE(5719), 1, sym_formal_parameters, - STATE(5782), 1, - sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4108), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2940), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2793), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [15775] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, - anon_sym_typeof, - ACTIONS(4154), 1, - anon_sym_new, - ACTIONS(4156), 1, - anon_sym_QMARK, - ACTIONS(4158), 1, - anon_sym_AMP, - ACTIONS(4160), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_readonly, - ACTIONS(4164), 1, - anon_sym_keyof, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2235), 1, - sym_template_string, - STATE(5350), 1, - sym_type_parameters, - STATE(5502), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3032), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2606), 7, + STATE(4001), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -144324,7 +142737,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -144338,7 +142751,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [15903] = 34, + [13699] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, @@ -144347,70 +142760,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(3887), 1, anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(2235), 1, + STATE(2198), 1, sym_template_string, - STATE(5444), 1, + STATE(5179), 1, sym_type_parameters, - STATE(5601), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3459), 7, + STATE(3605), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -144418,7 +142831,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -144432,20 +142845,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16031] = 9, + [13827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3808), 1, + ACTIONS(1900), 1, anon_sym_EQ_GT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4180), 1, + ACTIONS(1902), 1, anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144461,7 +142868,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(1672), 19, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -144469,6 +142876,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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -144479,10 +142887,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 21, + anon_sym_PIPE_RBRACE, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -144501,172 +142911,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16109] = 34, + [13899] = 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(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, - anon_sym_LBRACE, - ACTIONS(4188), 1, - anon_sym_typeof, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3827), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_new, - ACTIONS(4196), 1, + ACTIONS(3862), 1, + anon_sym_extends, + ACTIONS(3867), 1, + anon_sym_EQ_GT, + ACTIONS(3919), 1, + anon_sym_EQ, + ACTIONS(3922), 1, + anon_sym_COLON, + ACTIONS(3924), 1, anon_sym_QMARK, - ACTIONS(4198), 1, + STATE(3833), 1, + sym_type_arguments, + STATE(5440), 1, + sym_type_annotation, + ACTIONS(3830), 2, anon_sym_AMP, - ACTIONS(4200), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4212), 1, - anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, - anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - STATE(2380), 1, - sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, - sym_string, - STATE(2441), 1, - sym_template_string, - STATE(5447), 1, - sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5548), 1, - sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3858), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3794), 11, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, - ACTIONS(4210), 2, - sym_true, - sym_false, - ACTIONS(4204), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3507), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2408), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16237] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [13991] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(716), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(718), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(736), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, - sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(3930), 1, + sym_this, + ACTIONS(3932), 1, + anon_sym_asserts, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5412), 1, + sym_type_predicate, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3048), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3977), 7, + STATE(4455), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -144674,7 +143067,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -144688,44 +143081,23 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [16363] = 12, + [14119] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_COMMA, - ACTIONS(4220), 1, + ACTIONS(1916), 1, anon_sym_EQ, - ACTIONS(4222), 1, + ACTIONS(1918), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(2294), 1, + anon_sym_COMMA, + ACTIONS(3843), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3823), 3, + ACTIONS(3846), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3800), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144741,10 +143113,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(1672), 16, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1655), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -144760,12 +143150,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16447] = 5, + [14197] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(1670), 1, + anon_sym_EQ_GT, + ACTIONS(1902), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(2294), 1, + anon_sym_extends, + ACTIONS(3843), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -144781,15 +143182,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 20, - sym__automatic_semicolon, + ACTIONS(1672), 16, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -144800,14 +143199,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, - ACTIONS(3796), 22, + ACTIONS(1655), 19, 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, @@ -144815,9 +143211,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, @@ -144825,88 +143219,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16517] = 32, + [14275] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(125), 1, + ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3576), 1, - anon_sym_STAR, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3586), 1, + ACTIONS(3582), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(4000), 1, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3936), 1, anon_sym_export, - ACTIONS(4005), 1, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(3940), 1, + anon_sym_COMMA, + ACTIONS(3942), 1, + anon_sym_RBRACE, + ACTIONS(3944), 1, anon_sym_async, - ACTIONS(4007), 1, + ACTIONS(3948), 1, anon_sym_static, - ACTIONS(4009), 1, + ACTIONS(3950), 1, anon_sym_readonly, - STATE(3789), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3594), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4011), 2, + ACTIONS(3952), 2, anon_sym_get, anon_sym_set, - ACTIONS(4013), 3, + ACTIONS(3954), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3891), 3, + STATE(3889), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5152), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5286), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4417), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3998), 10, + ACTIONS(3934), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -144917,114 +143314,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [16641] = 34, + [14405] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, - anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, - anon_sym_typeof, - ACTIONS(4226), 1, - anon_sym_new, - ACTIONS(4228), 1, - anon_sym_QMARK, - ACTIONS(4230), 1, - anon_sym_AMP, - ACTIONS(4232), 1, - anon_sym_PIPE, - ACTIONS(4234), 1, - anon_sym_readonly, - ACTIONS(4236), 1, - anon_sym_keyof, - STATE(2380), 1, - sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, - sym_string, - STATE(2441), 1, - sym_template_string, - STATE(5439), 1, - sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5530), 1, - sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - sym_true, - sym_false, - ACTIONS(4204), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2638), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2408), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [16769] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3826), 1, + ACTIONS(3808), 1, anon_sym_EQ_GT, - ACTIONS(4220), 1, + ACTIONS(3814), 1, anon_sym_EQ, - STATE(3853), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145040,14 +143343,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(3794), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145058,7 +143361,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145080,23 +143383,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16847] = 9, + [14483] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1634), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(1902), 1, anon_sym_EQ, - ACTIONS(2278), 1, - anon_sym_extends, - ACTIONS(3856), 2, - anon_sym_COMMA, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(3859), 3, - anon_sym_GT, + ACTIONS(3846), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1640), 15, + ACTIONS(3956), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2294), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1672), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145112,28 +143432,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1619), 19, + ACTIONS(1655), 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, @@ -145149,92 +143453,302 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [16925] = 9, + [14563] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3826), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, - anon_sym_as, + ACTIONS(3960), 1, + sym_identifier, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(3966), 1, + anon_sym_typeof, + ACTIONS(3968), 1, anon_sym_LPAREN, - anon_sym_COLON, + ACTIONS(3970), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, + ACTIONS(3972), 1, + anon_sym_new, + ACTIONS(3974), 1, + anon_sym_QMARK, + ACTIONS(3976), 1, + anon_sym_AMP, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3990), 1, + anon_sym_readonly, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3994), 1, + anon_sym_keyof, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + STATE(2384), 1, + sym_nested_type_identifier, + STATE(2458), 1, + sym__number, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(2577), 1, + sym_template_string, + STATE(5457), 1, + sym_type_parameters, + STATE(5527), 1, + sym_formal_parameters, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3513), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2465), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14691] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1192), 1, + anon_sym_DQUOTE, + ACTIONS(1194), 1, + anon_sym_SQUOTE, + ACTIONS(1196), 1, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3998), 1, + sym_identifier, + ACTIONS(4000), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, + anon_sym_new, + ACTIONS(4012), 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(4014), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4016), 1, anon_sym_PIPE, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4024), 1, + sym_this, + ACTIONS(4028), 1, + anon_sym_readonly, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, + anon_sym_keyof, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, + sym_nested_type_identifier, + STATE(3286), 1, + sym_template_string, + STATE(3387), 1, + sym__number, + STATE(3395), 1, + sym__primary_type, + STATE(3407), 1, + sym_string, + STATE(5189), 1, + sym_type_parameters, + STATE(5654), 1, + sym_formal_parameters, + STATE(5807), 1, + sym_nested_identifier, + ACTIONS(4018), 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, - [17003] = 9, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3287), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3403), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [14819] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(3574), 1, + anon_sym_STAR, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(3584), 1, + anon_sym_LBRACK, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(4038), 1, + anon_sym_export, + ACTIONS(4043), 1, + anon_sym_async, + ACTIONS(4045), 1, + anon_sym_static, + ACTIONS(4047), 1, + anon_sym_readonly, + STATE(3785), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(3592), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4040), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4049), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4051), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3894), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5260), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5261), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4326), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4036), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [14943] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1904), 1, anon_sym_EQ, - ACTIONS(1914), 1, + ACTIONS(1906), 1, anon_sym_EQ_GT, - ACTIONS(2278), 1, + ACTIONS(3843), 3, anon_sym_COMMA, - ACTIONS(3856), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3859), 3, + ACTIONS(3846), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145250,7 +143764,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(1672), 16, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -145267,7 +143781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1619), 19, + ACTIONS(1655), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145287,185 +143801,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17081] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4238), 1, - sym_identifier, - ACTIONS(4240), 1, - sym_this, - ACTIONS(4242), 1, - anon_sym_asserts, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, - sym_type_parameters, - STATE(5417), 1, - sym_type_predicate, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4452), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17209] = 35, + [15019] = 35, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, ACTIONS(3584), 1, - anon_sym_SEMI, - ACTIONS(3586), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, + ACTIONS(3754), 1, + anon_sym_SEMI, + ACTIONS(3756), 1, anon_sym_PIPE_RBRACE, - ACTIONS(3894), 1, + ACTIONS(3936), 1, anon_sym_export, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(3898), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, + ACTIONS(3944), 1, anon_sym_async, - ACTIONS(3906), 1, + ACTIONS(3948), 1, anon_sym_static, - ACTIONS(3908), 1, + ACTIONS(3950), 1, anon_sym_readonly, - ACTIONS(4244), 1, + ACTIONS(4053), 1, + anon_sym_COMMA, + ACTIONS(4055), 1, anon_sym_RBRACE, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3904), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(3910), 2, + ACTIONS(3952), 2, anon_sym_get, anon_sym_set, - ACTIONS(3912), 3, + ACTIONS(3954), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3876), 3, + STATE(3889), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4377), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3892), 10, + ACTIONS(3934), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -145476,14 +143896,200 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [17339] = 6, + [15149] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, + sym_identifier, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_typeof, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_LBRACK, + ACTIONS(4069), 1, + anon_sym_new, + ACTIONS(4071), 1, + anon_sym_QMARK, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4087), 1, + anon_sym_readonly, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, + anon_sym_keyof, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, + sym_nested_type_identifier, + STATE(2929), 1, + sym__number, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(2997), 1, + sym_template_string, + STATE(5161), 1, + sym_type_parameters, + STATE(5490), 1, + sym_formal_parameters, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2788), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2942), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15277] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, + sym_identifier, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_LBRACK, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4095), 1, + anon_sym_typeof, + ACTIONS(4097), 1, + anon_sym_new, + ACTIONS(4099), 1, + anon_sym_QMARK, + ACTIONS(4101), 1, + anon_sym_AMP, + ACTIONS(4103), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_readonly, + ACTIONS(4107), 1, + anon_sym_keyof, + STATE(2384), 1, + sym_nested_type_identifier, + STATE(2458), 1, + sym__number, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(2577), 1, + sym_template_string, + STATE(5194), 1, + sym_type_parameters, + STATE(5663), 1, + sym_formal_parameters, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2610), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2465), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15405] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1904), 1, - anon_sym_EQ_GT, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145499,12 +144105,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 19, + ACTIONS(3794), 20, 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, @@ -145519,7 +144125,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + anon_sym_PIPE_RBRACE, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145542,14 +144149,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17411] = 6, + [15475] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 1, - anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(1904), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(1906), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145565,15 +144172,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 19, + ACTIONS(1672), 19, + 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_LT_EQ, @@ -145585,7 +144192,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145599,125 +144206,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_AMP, - anon_sym_CARET, - 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, - [17483] = 34, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4246), 1, - sym_identifier, - ACTIONS(4248), 1, - anon_sym_STAR, - ACTIONS(4250), 1, - anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, - anon_sym_LPAREN, - ACTIONS(4256), 1, - anon_sym_LBRACK, - ACTIONS(4258), 1, - anon_sym_new, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_AMP, - ACTIONS(4264), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, - sym_number, - ACTIONS(4276), 1, - sym_this, - ACTIONS(4280), 1, - anon_sym_readonly, - ACTIONS(4282), 1, - anon_sym_asserts, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, - anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - STATE(4001), 1, - sym_nested_type_identifier, - STATE(4066), 1, - sym_string, - STATE(4078), 1, - sym__primary_type, - STATE(4080), 1, - sym__number, - STATE(4842), 1, - sym_type_predicate, - STATE(5292), 1, - sym_type_parameters, - STATE(5625), 1, - sym_nested_identifier, - STATE(5704), 1, - sym_formal_parameters, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, - sym_true, - sym_false, - ACTIONS(4268), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4268), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4071), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [17611] = 8, + anon_sym_CARET, + 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, + [15547] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1902), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1904), 1, + ACTIONS(3879), 1, anon_sym_EQ_GT, - ACTIONS(3856), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1640), 15, + ACTIONS(4109), 1, + anon_sym_LT, + STATE(4102), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145733,14 +144244,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(3794), 17, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -145750,11 +144261,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1619), 19, + anon_sym_extends, + ACTIONS(3790), 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, @@ -145762,7 +144274,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, @@ -145770,29 +144284,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17687] = 12, + [15625] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3843), 1, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4114), 1, + anon_sym_typeof, + ACTIONS(4116), 1, + anon_sym_new, + ACTIONS(4118), 1, + anon_sym_QMARK, + ACTIONS(4120), 1, + anon_sym_AMP, + ACTIONS(4122), 1, + anon_sym_PIPE, + ACTIONS(4124), 1, + sym_this, + ACTIONS(4126), 1, + anon_sym_readonly, + ACTIONS(4128), 1, + anon_sym_asserts, + ACTIONS(4130), 1, + anon_sym_keyof, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5363), 1, + sym_type_parameters, + STATE(5412), 1, + sym_type_predicate, + STATE(5610), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4780), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [15753] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3841), 1, anon_sym_EQ_GT, - ACTIONS(3866), 1, + ACTIONS(3862), 1, anon_sym_extends, - ACTIONS(4180), 1, + ACTIONS(4132), 1, anon_sym_EQ, - STATE(3853), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3827), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(3823), 3, + ACTIONS(3830), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3800), 14, + ACTIONS(3794), 14, sym__automatic_semicolon, anon_sym_as, anon_sym_RBRACE, @@ -145807,7 +144415,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145823,7 +144431,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(3790), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145842,12 +144450,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17771] = 5, + [15837] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(1906), 1, + anon_sym_EQ_GT, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -145863,12 +144473,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 20, + ACTIONS(1672), 19, 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, @@ -145883,8 +144493,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -145907,85 +144516,108 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17841] = 5, + [15909] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_EQ, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 20, - anon_sym_as, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3889), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3891), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, + anon_sym_typeof, + ACTIONS(4136), 1, + anon_sym_new, + ACTIONS(4138), 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(4140), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4142), 1, anon_sym_PIPE, + ACTIONS(4144), 1, + anon_sym_readonly, + ACTIONS(4146), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2198), 1, + sym_template_string, + STATE(5218), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 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, - [17911] = 9, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3564), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [16037] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3853), 1, - anon_sym_LT, - ACTIONS(3881), 1, + ACTIONS(3852), 1, anon_sym_EQ_GT, - STATE(2829), 1, - sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146001,14 +144633,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(3794), 19, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -146019,10 +144653,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -146041,91 +144676,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [17989] = 35, + [16109] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(670), 1, + ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3582), 1, + ACTIONS(3574), 1, + anon_sym_STAR, + ACTIONS(3580), 1, anon_sym_LPAREN, ACTIONS(3584), 1, - anon_sym_SEMI, - ACTIONS(3586), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3604), 1, - anon_sym_PIPE_RBRACE, - ACTIONS(3894), 1, + ACTIONS(4038), 1, anon_sym_export, - ACTIONS(3896), 1, - anon_sym_STAR, - ACTIONS(3898), 1, - anon_sym_COMMA, - ACTIONS(3902), 1, + ACTIONS(4043), 1, anon_sym_async, - ACTIONS(3906), 1, + ACTIONS(4045), 1, anon_sym_static, - ACTIONS(3908), 1, + ACTIONS(4047), 1, anon_sym_readonly, - ACTIONS(4290), 1, - anon_sym_RBRACE, - STATE(3794), 1, + STATE(3785), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3904), 2, + ACTIONS(3592), 2, sym_number, sym_private_property_identifier, - ACTIONS(3910), 2, + ACTIONS(4040), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4049), 2, anon_sym_get, anon_sym_set, - ACTIONS(3912), 3, + ACTIONS(4051), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3876), 3, + STATE(3894), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5059), 3, + STATE(5260), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5261), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4420), 6, + STATE(4394), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(3892), 10, + ACTIONS(4036), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -146136,7 +144768,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [18119] = 34, + [16233] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4150), 1, + anon_sym_new, + ACTIONS(4152), 1, + anon_sym_QMARK, + ACTIONS(4154), 1, + anon_sym_AMP, + ACTIONS(4156), 1, + anon_sym_PIPE, + ACTIONS(4158), 1, + anon_sym_readonly, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2198), 1, + sym_template_string, + STATE(5239), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5724), 1, + sym_formal_parameters, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3292), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [16361] = 34, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, @@ -146145,70 +144871,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SQUOTE, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(4162), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4174), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2458), 1, sym__number, - STATE(2406), 1, + STATE(2459), 1, sym__primary_type, - STATE(2410), 1, + STATE(2466), 1, sym_string, - STATE(2441), 1, + STATE(2577), 1, sym_template_string, - STATE(5172), 1, + STATE(5167), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5758), 1, + STATE(5694), 1, sym_formal_parameters, - ACTIONS(4202), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3201), 7, + STATE(3195), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146216,7 +144942,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146230,14 +144956,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18247] = 6, + [16489] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 1, - anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(3852), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146253,11 +144979,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 19, + ACTIONS(3794), 19, 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, @@ -146272,8 +144999,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146296,77 +145022,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [18319] = 33, + [16561] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, + ACTIONS(2085), 1, anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, + ACTIONS(2091), 1, anon_sym_new, - ACTIONS(1894), 1, - sym_this, - ACTIONS(1896), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, + sym_number, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4306), 1, - anon_sym_GT, - STATE(3840), 1, + ACTIONS(4176), 1, + sym_identifier, + ACTIONS(4178), 1, + sym_this, + ACTIONS(4180), 1, + anon_sym_asserts, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5255), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(4382), 1, + sym_type_predicate, + STATE(5242), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4028), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146374,7 +145102,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146388,77 +145116,79 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18444] = 33, + [16689] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(1896), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, + anon_sym_new, + ACTIONS(4186), 1, + anon_sym_QMARK, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4308), 1, - anon_sym_GT, - STATE(3840), 1, + ACTIONS(4194), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5255), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2198), 1, + sym_template_string, + STATE(5289), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5540), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(2692), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146466,7 +145196,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146480,77 +145210,210 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18569] = 33, + [16817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(3806), 1, + anon_sym_EQ, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 20, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3790), 22, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 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, + [16887] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, + anon_sym_EQ_GT, + ACTIONS(1902), 1, + anon_sym_EQ, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(1652), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1655), 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, + [16959] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4312), 1, - anon_sym_RBRACK, - ACTIONS(4314), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5338), 1, + STATE(2997), 1, + sym_template_string, + STATE(5183), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5738), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4785), 7, + STATE(3023), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146558,7 +145421,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146572,77 +145435,214 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18694] = 33, + [17087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(1906), 1, + anon_sym_EQ_GT, + ACTIONS(1916), 1, + anon_sym_EQ, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(1655), 22, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(774), 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(776), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 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, + [17159] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3849), 1, + anon_sym_LT, + ACTIONS(3879), 1, + anon_sym_EQ_GT, + STATE(2845), 1, + sym_type_arguments, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 17, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3790), 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, + [17237] = 34, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4210), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4212), 1, + anon_sym_STAR, + ACTIONS(4214), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, + ACTIONS(4216), 1, anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(4218), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, + ACTIONS(4222), 1, anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(4224), 1, + anon_sym_QMARK, + ACTIONS(4226), 1, + anon_sym_AMP, + ACTIONS(4228), 1, + anon_sym_PIPE, + ACTIONS(4234), 1, + anon_sym_DQUOTE, + ACTIONS(4236), 1, + anon_sym_SQUOTE, + ACTIONS(4238), 1, + sym_number, + ACTIONS(4240), 1, sym_this, - ACTIONS(1896), 1, + ACTIONS(4244), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4326), 1, - anon_sym_GT, - STATE(3840), 1, + ACTIONS(4246), 1, + anon_sym_asserts, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(4121), 1, sym__number, - STATE(3886), 1, + STATE(4122), 1, sym__primary_type, - STATE(3896), 1, + STATE(4125), 1, sym_string, - STATE(5255), 1, + STATE(4850), 1, + sym_type_predicate, + STATE(5198), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4159), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146650,7 +145650,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146664,77 +145664,79 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18819] = 33, + [17365] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(1896), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, + anon_sym_typeof, + ACTIONS(4256), 1, + anon_sym_new, + ACTIONS(4258), 1, + anon_sym_QMARK, + ACTIONS(4260), 1, + anon_sym_AMP, + ACTIONS(4262), 1, + anon_sym_PIPE, + ACTIONS(4264), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4328), 1, - anon_sym_GT, - STATE(3840), 1, + ACTIONS(4266), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5255), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2198), 1, + sym_template_string, + STATE(5191), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(3518), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146742,7 +145744,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146756,147 +145758,79 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [18944] = 11, + [17493] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4330), 1, - anon_sym_EQ, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 13, - anon_sym_as, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, + ACTIONS(3889), 1, anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [19025] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(4268), 1, + anon_sym_typeof, + ACTIONS(4270), 1, + anon_sym_new, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, - sym_this, - ACTIONS(1896), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4334), 1, - anon_sym_GT, - STATE(3840), 1, + ACTIONS(4280), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5255), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2198), 1, + sym_template_string, + STATE(5175), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5469), 1, + sym_nested_identifier, + STATE(5595), 1, sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(3430), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -146904,7 +145838,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -146918,12 +145852,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19150] = 5, + [17621] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3792), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -146939,12 +145873,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, + ACTIONS(3794), 20, 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, @@ -146959,7 +145893,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + anon_sym_PIPE_RBRACE, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -146982,39 +145917,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19219] = 9, + [17691] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2278), 1, - anon_sym_extends, - ACTIONS(3856), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 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(1640), 15, + ACTIONS(3808), 1, + anon_sym_EQ_GT, + ACTIONS(4282), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147030,74 +145946,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 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, - [19296] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2688), 1, - anon_sym_COLON, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(1636), 14, - sym__automatic_semicolon, + ACTIONS(3794), 17, + 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, anon_sym_LT_EQ, anon_sym_EQ_EQ_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(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + anon_sym_extends, + ACTIONS(3790), 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, @@ -147116,41 +145986,115 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [19371] = 12, + [17769] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(4340), 1, - anon_sym_COMMA, - ACTIONS(4342), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - STATE(4833), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(4338), 2, + ACTIONS(2962), 1, anon_sym_LBRACE, - anon_sym_implements, - ACTIONS(3800), 12, - anon_sym_as, + ACTIONS(3580), 1, anon_sym_LPAREN, + ACTIONS(3582), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3936), 1, + anon_sym_export, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(3940), 1, + anon_sym_COMMA, + ACTIONS(3944), 1, + anon_sym_async, + ACTIONS(3948), 1, + anon_sym_static, + ACTIONS(3950), 1, + anon_sym_readonly, + ACTIONS(4284), 1, + anon_sym_RBRACE, + STATE(3786), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(3946), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3952), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3954), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3889), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4295), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3934), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [17899] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_EQ_GT, + ACTIONS(4132), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147166,7 +146110,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(3794), 17, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147188,169 +146150,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [19454] = 33, + [17977] = 34, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4238), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4240), 1, - sym_this, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3877), 1, - sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, - sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4217), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [19579] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4286), 1, + anon_sym_typeof, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(4196), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(4198), 1, + ACTIONS(4292), 1, anon_sym_AMP, - ACTIONS(4200), 1, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4212), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, + ACTIONS(4298), 1, anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4344), 1, - sym_identifier, - ACTIONS(4346), 1, - sym_this, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(2438), 1, - sym_type_predicate, - STATE(5447), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2198), 1, + sym_template_string, + STATE(5216), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5548), 1, + STATE(5757), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3523), 7, + STATE(3302), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -147358,7 +146230,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -147372,353 +146244,244 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [19704] = 33, + [18105] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(4310), 1, - anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3862), 1, + anon_sym_COMMA, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4300), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4320), 1, anon_sym_PIPE, - ACTIONS(4322), 1, - anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - ACTIONS(4348), 1, - anon_sym_RBRACK, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5338), 1, - sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, - sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3794), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4806), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [19829] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [18189] = 35, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(3582), 1, + anon_sym_SEMI, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, - anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3602), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(3936), 1, + anon_sym_export, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(3940), 1, + anon_sym_COMMA, + ACTIONS(3944), 1, + anon_sym_async, + ACTIONS(3948), 1, + anon_sym_static, + ACTIONS(3950), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - ACTIONS(4350), 1, - anon_sym_RBRACK, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5338), 1, - sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + ACTIONS(4302), 1, + anon_sym_RBRACE, + STATE(3786), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(3946), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(3952), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(3954), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3889), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4295), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(3934), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4839), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [19954] = 33, + [18319] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4210), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4212), 1, + anon_sym_STAR, + ACTIONS(4214), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, + ACTIONS(4216), 1, anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(4218), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, + ACTIONS(4222), 1, anon_sym_new, - ACTIONS(1894), 1, - sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4352), 1, - anon_sym_GT, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5255), 1, - sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4484), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [20079] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4354), 1, - sym_identifier, - ACTIONS(4356), 1, + ACTIONS(4240), 1, sym_this, - STATE(3840), 1, + ACTIONS(4244), 1, + anon_sym_readonly, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3866), 1, + STATE(4068), 1, sym_type_predicate, - STATE(3881), 1, + STATE(4121), 1, sym__number, - STATE(3886), 1, + STATE(4122), 1, sym__primary_type, - STATE(3896), 1, + STATE(4125), 1, sym_string, - STATE(5255), 1, + STATE(5198), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4350), 7, + STATE(4069), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -147726,7 +146489,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -147740,77 +146503,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20204] = 33, + [18444] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(4254), 1, + anon_sym_typeof, + ACTIONS(4256), 1, + anon_sym_new, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(4260), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(4262), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(4264), 1, + anon_sym_readonly, + ACTIONS(4266), 1, anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(4304), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(4306), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4358), 1, - anon_sym_GT, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5255), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2336), 1, + sym_type_predicate, + STATE(5191), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(3524), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -147818,7 +146581,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -147832,14 +146595,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20329] = 6, + [18569] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1634), 1, - anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(3871), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -147855,15 +146616,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 18, + ACTIONS(3794), 19, + 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_LT_EQ, @@ -147874,7 +146635,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1619), 22, + anon_sym_extends, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -147897,7 +146659,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20400] = 33, + [18638] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -147906,252 +146668,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1878), 1, anon_sym_LBRACE, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4060), 1, + ACTIONS(4308), 1, sym_identifier, - ACTIONS(4062), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4064), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4066), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4068), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4070), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4072), 1, + ACTIONS(4320), 1, sym_this, - ACTIONS(4074), 1, - anon_sym_readonly, - ACTIONS(4078), 1, - anon_sym_keyof, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3866), 1, - sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5386), 1, - sym_type_parameters, - STATE(5593), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4645), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [20525] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_new, - ACTIONS(3928), 1, - anon_sym_QMARK, - ACTIONS(3930), 1, - anon_sym_AMP, - ACTIONS(3932), 1, - anon_sym_PIPE, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3944), 1, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(4324), 1, anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4360), 1, - sym_identifier, - ACTIONS(4362), 1, - sym_this, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(2333), 1, + STATE(3890), 1, sym_type_predicate, - STATE(5186), 1, + STATE(5266), 1, sym_type_parameters, - STATE(5469), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5735), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3529), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [20650] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, - anon_sym_typeof, - ACTIONS(3954), 1, - anon_sym_new, - ACTIONS(3956), 1, - anon_sym_QMARK, - ACTIONS(3958), 1, - anon_sym_AMP, - ACTIONS(3960), 1, - anon_sym_PIPE, - ACTIONS(3962), 1, - anon_sym_readonly, - ACTIONS(3964), 1, - anon_sym_keyof, - ACTIONS(4364), 1, - sym_identifier, - ACTIONS(4366), 1, - sym_this, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2294), 1, - sym_type_predicate, - STATE(5167), 1, - sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3594), 7, + STATE(4184), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148159,7 +146737,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148173,20 +146751,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [20775] = 9, + [18763] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4330), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(4332), 1, + ACTIONS(3824), 1, + anon_sym_LT, + ACTIONS(4326), 1, anon_sym_EQ_GT, - STATE(3853), 1, + STATE(2399), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148202,11 +146780,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148217,9 +146796,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148241,12 +146819,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20852] = 5, + [18840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(1916), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(1918), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148262,15 +146842,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, + ACTIONS(1672), 18, + 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_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -148282,7 +146861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -148305,7 +146884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [20921] = 33, + [18911] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -148314,68 +146893,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, + ACTIONS(1874), 1, + sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4368), 1, - sym_identifier, - ACTIONS(4370), 1, - anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(1886), 1, anon_sym_new, - ACTIONS(4374), 1, - anon_sym_QMARK, - ACTIONS(4376), 1, - anon_sym_AMP, - ACTIONS(4378), 1, - anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4382), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4384), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4328), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3866), 1, - sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5309), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5737), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4174), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148383,7 +146962,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148397,14 +146976,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21046] = 6, + [19036] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3816), 1, + anon_sym_LT, + ACTIONS(4326), 1, anon_sym_EQ_GT, - ACTIONS(1924), 1, - anon_sym_EQ, - ACTIONS(1640), 15, + STATE(3936), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148420,15 +147005,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 18, + ACTIONS(3794), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148439,11 +147022,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -148462,32 +147044,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21117] = 11, + [19113] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4386), 1, + ACTIONS(1908), 1, anon_sym_EQ, - ACTIONS(4388), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 3, + ACTIONS(2294), 1, + anon_sym_extends, + ACTIONS(3843), 2, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, + ACTIONS(3846), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3800), 13, + ACTIONS(1672), 15, sym__automatic_semicolon, anon_sym_as, + anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -148497,7 +147076,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -148513,76 +147092,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(1655), 19, 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, - [21198] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(4336), 1, - anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - ACTIONS(3796), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -148590,9 +147104,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, @@ -148600,77 +147112,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21275] = 33, + [19190] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(3954), 1, + ACTIONS(4332), 1, + anon_sym_RBRACK, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(3956), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(3960), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(3962), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(3964), 1, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(4364), 1, - sym_identifier, - ACTIONS(4366), 1, - sym_this, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(2333), 1, - sym_type_predicate, - STATE(5167), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3586), 7, + STATE(4847), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148678,7 +147190,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148692,80 +147204,10 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21400] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4390), 1, - anon_sym_EQ, - ACTIONS(4392), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [21481] = 3, + [19315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3780), 23, + ACTIONS(3774), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -148789,7 +147231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3782), 34, + ACTIONS(3776), 34, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -148824,77 +147266,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [21546] = 33, + [19380] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 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(614), 1, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2113), 1, + anon_sym_readonly, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4368), 1, + ACTIONS(4176), 1, sym_identifier, - ACTIONS(4370), 1, - anon_sym_typeof, - ACTIONS(4372), 1, - anon_sym_new, - ACTIONS(4374), 1, - anon_sym_QMARK, - ACTIONS(4376), 1, - anon_sym_AMP, - ACTIONS(4378), 1, - anon_sym_PIPE, - ACTIONS(4380), 1, + ACTIONS(4178), 1, sym_this, - ACTIONS(4382), 1, - anon_sym_readonly, - ACTIONS(4384), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3877), 1, + STATE(3953), 1, sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5309), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5737), 1, + STATE(5719), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4190), 7, + STATE(3976), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148902,7 +147344,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -148916,7 +147358,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21671] = 33, + [19505] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -148925,24 +147367,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, ACTIONS(1880), 1, @@ -148951,42 +147391,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1886), 1, anon_sym_new, - ACTIONS(1894), 1, - sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4394), 1, - anon_sym_GT, - STATE(3840), 1, + ACTIONS(4346), 1, + sym_identifier, + ACTIONS(4348), 1, + sym_this, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3866), 1, + sym_type_predicate, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4361), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -148994,7 +147436,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149008,43 +147450,104 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [21796] = 12, + [19630] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_extends, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(4342), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_COMMA, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3823), 3, - anon_sym_GT, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4350), 1, + sym_identifier, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, anon_sym_AMP, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(3800), 13, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(3810), 15, + ACTIONS(4362), 1, + sym_this, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, + anon_sym_keyof, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(3890), 1, + sym_type_predicate, + STATE(5290), 1, + sym_type_parameters, + STATE(5716), 1, + sym_nested_identifier, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4598), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [19755] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149060,10 +147563,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(3794), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3790), 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, @@ -149071,7 +147596,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, @@ -149079,14 +147606,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21879] = 6, + [19824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3871), 1, + ACTIONS(1918), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149102,15 +147629,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, + ACTIONS(1672), 18, + 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_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -149121,7 +147647,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3796), 22, + anon_sym_extends, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149144,125 +147671,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [21950] = 33, + [19895] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(4396), 1, - sym_identifier, - ACTIONS(4398), 1, - anon_sym_typeof, - ACTIONS(4400), 1, - anon_sym_new, - ACTIONS(4402), 1, - anon_sym_QMARK, - ACTIONS(4404), 1, - anon_sym_AMP, - ACTIONS(4406), 1, - anon_sym_PIPE, - ACTIONS(4408), 1, - sym_this, - ACTIONS(4410), 1, - anon_sym_readonly, - ACTIONS(4412), 1, - anon_sym_keyof, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3866), 1, - sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5354), 1, - sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4177), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [22075] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_COMMA, - ACTIONS(4414), 1, + ACTIONS(4368), 1, anon_sym_EQ, - ACTIONS(4416), 1, + ACTIONS(4370), 1, anon_sym_EQ_GT, - STATE(3853), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3827), 3, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3823), 3, + ACTIONS(3830), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3800), 13, - sym__automatic_semicolon, + ACTIONS(3794), 13, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149272,7 +147705,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + anon_sym_implements, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149288,7 +147722,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(3790), 18, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -149307,104 +147741,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22158] = 33, + [19976] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, - anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, - anon_sym_typeof, - ACTIONS(4226), 1, - anon_sym_new, - ACTIONS(4228), 1, - anon_sym_QMARK, - ACTIONS(4230), 1, - anon_sym_AMP, - ACTIONS(4232), 1, - anon_sym_PIPE, - ACTIONS(4234), 1, - anon_sym_readonly, - ACTIONS(4236), 1, - anon_sym_keyof, - ACTIONS(4418), 1, - sym_identifier, - ACTIONS(4420), 1, - sym_this, - STATE(2380), 1, - sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, - sym_string, - STATE(2438), 1, - sym_type_predicate, - STATE(5439), 1, - sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5530), 1, - sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - sym_true, - sym_false, - ACTIONS(4204), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2639), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2408), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [22283] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3847), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4370), 1, + anon_sym_EQ_GT, + ACTIONS(4372), 1, anon_sym_EQ, - ACTIONS(3810), 15, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149420,16 +147770,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3794), 16, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149439,12 +147785,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, - ACTIONS(3796), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149463,7 +147809,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22352] = 33, + [20053] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -149472,21 +147818,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -149502,38 +147848,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4422), 1, + ACTIONS(4374), 1, anon_sym_GT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -149541,7 +147887,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149555,7 +147901,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22477] = 33, + [20178] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -149564,68 +147910,160 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(4376), 1, + anon_sym_GT, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, + sym_type_parameters, + STATE(5715), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4425), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [20303] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4292), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4298), 1, anon_sym_keyof, - ACTIONS(4424), 1, - anon_sym_RBRACK, - STATE(3840), 1, + ACTIONS(4378), 1, + sym_identifier, + ACTIONS(4380), 1, + sym_this, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5338), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2297), 1, + sym_type_predicate, + STATE(5216), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5757), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4840), 7, + STATE(3496), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -149633,7 +148071,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149647,25 +148085,59 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22602] = 9, + [20428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4392), 1, - anon_sym_EQ_GT, - ACTIONS(4426), 1, + ACTIONS(3770), 23, + anon_sym_STAR, anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 15, + 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(3772), 34, + 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -149675,8 +148147,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(3810), 15, + [20493] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(4300), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149692,9 +148176,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, - anon_sym_STAR, + ACTIONS(3794), 16, + anon_sym_as, anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3790), 21, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -149715,77 +148215,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [22679] = 33, + [20570] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, - anon_sym_AMP, - ACTIONS(1290), 1, - anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4428), 1, + ACTIONS(4382), 1, sym_identifier, - ACTIONS(4430), 1, + ACTIONS(4384), 1, + anon_sym_typeof, + ACTIONS(4386), 1, + anon_sym_new, + ACTIONS(4388), 1, + anon_sym_QMARK, + ACTIONS(4390), 1, + anon_sym_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE, + ACTIONS(4394), 1, sym_this, - STATE(3840), 1, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4398), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3877), 1, + STATE(3953), 1, sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5409), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5262), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5822), 1, + STATE(5512), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5671), 1, + sym_nested_identifier, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4191), 7, + STATE(4353), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -149793,7 +148293,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149807,7 +148307,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22804] = 33, + [20695] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -149816,68 +148316,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, + ACTIONS(1874), 1, + sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4060), 1, - sym_identifier, - ACTIONS(4062), 1, - anon_sym_typeof, - ACTIONS(4064), 1, + ACTIONS(1886), 1, anon_sym_new, - ACTIONS(4066), 1, - anon_sym_QMARK, - ACTIONS(4068), 1, - anon_sym_AMP, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4072), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4074), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4078), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4400), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3877), 1, - sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5386), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5593), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4634), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -149885,7 +148385,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -149899,20 +148399,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [22929] = 9, + [20820] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3808), 1, - anon_sym_EQ_GT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4414), 1, + ACTIONS(3856), 1, anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -149928,13 +148420,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - sym__automatic_semicolon, + ACTIONS(3794), 19, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -149945,10 +148440,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -149967,145 +148463,261 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23006] = 9, + [20889] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, - anon_sym_EQ, - ACTIONS(1926), 1, - anon_sym_EQ_GT, - ACTIONS(2278), 1, - anon_sym_COMMA, - ACTIONS(3856), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, anon_sym_AMP, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1636), 15, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3928), 1, + sym_identifier, + ACTIONS(3930), 1, + sym_this, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(3890), 1, + sym_type_predicate, + STATE(5238), 1, + sym_type_parameters, + STATE(5716), 1, + sym_nested_identifier, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4257), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [21014] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, + anon_sym_new, + ACTIONS(4336), 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(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, + anon_sym_readonly, + ACTIONS(4344), 1, + anon_sym_keyof, + ACTIONS(4402), 1, + anon_sym_RBRACK, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, + sym_type_parameters, + STATE(5716), 1, + sym_nested_identifier, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 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, - [23083] = 33, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4813), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [21139] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4150), 1, anon_sym_new, - ACTIONS(4196), 1, + ACTIONS(4152), 1, anon_sym_QMARK, - ACTIONS(4198), 1, + ACTIONS(4154), 1, anon_sym_AMP, - ACTIONS(4200), 1, + ACTIONS(4156), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4212), 1, + ACTIONS(4158), 1, anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, + ACTIONS(4160), 1, anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4344), 1, + ACTIONS(4404), 1, sym_identifier, - ACTIONS(4346), 1, + ACTIONS(4406), 1, sym_this, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(2559), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2297), 1, sym_type_predicate, - STATE(5447), 1, + STATE(5239), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5548), 1, + STATE(5724), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3537), 7, + STATE(3458), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150113,7 +148725,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150127,36 +148739,33 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23208] = 9, + [21264] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(1908), 1, anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(4392), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(4432), 1, - anon_sym_LT, - STATE(3418), 1, - sym_type_arguments, - ACTIONS(3800), 15, - anon_sym_as, + ACTIONS(2686), 1, + anon_sym_COLON, + ACTIONS(3812), 1, + sym_identifier, + ACTIONS(1672), 14, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150172,11 +148781,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 24, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -150195,149 +148805,262 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23285] = 13, + anon_sym_instanceof, + [21339] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(4338), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4435), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4437), 1, - anon_sym_COMMA, - ACTIONS(4439), 1, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, + sym_this, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4442), 1, - anon_sym_DOT, - ACTIONS(4445), 1, - anon_sym_EQ_GT, - STATE(4764), 1, - aux_sym_extends_clause_repeat1, - STATE(4958), 1, - sym_type_arguments, - ACTIONS(3800), 12, - anon_sym_as, + ACTIONS(4408), 1, + anon_sym_GT, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, + sym_type_parameters, + STATE(5715), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4425), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [21464] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, + anon_sym_new, + ACTIONS(4336), 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(4338), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4340), 1, anon_sym_PIPE, + ACTIONS(4342), 1, + anon_sym_readonly, + ACTIONS(4344), 1, + anon_sym_keyof, + ACTIONS(4410), 1, + anon_sym_RBRACK, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, + sym_type_parameters, + STATE(5716), 1, + sym_nested_identifier, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 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, - [23370] = 33, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4846), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [21589] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(3928), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(3932), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3944), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4360), 1, + ACTIONS(4412), 1, sym_identifier, - ACTIONS(4362), 1, + ACTIONS(4414), 1, sym_this, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3866), 1, + sym_type_predicate, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(2294), 1, - sym_type_predicate, - STATE(5186), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5469), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3534), 7, + STATE(4629), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150345,7 +149068,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150359,14 +149082,44 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23495] = 6, + [21714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1912), 1, + ACTIONS(3778), 23, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(1914), 1, - anon_sym_EQ_GT, - ACTIONS(1640), 15, + 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(3780), 34, + 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_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150382,16 +149135,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 18, - 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_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150401,8 +149144,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + [21779] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3782), 23, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -150424,20 +149171,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23566] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, + ACTIONS(3784), 34, + 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, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4386), 1, - anon_sym_EQ, - ACTIONS(4388), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, + anon_sym_QMARK_DOT, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150453,14 +149197,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -150470,99 +149206,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 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, - [23643] = 33, + [21844] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4100), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4102), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4104), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4116), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4447), 1, + ACTIONS(4412), 1, sym_identifier, - ACTIONS(4449), 1, + ACTIONS(4414), 1, sym_this, - STATE(2733), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3864), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(3868), 1, sym__primary_type, - STATE(2993), 1, + STATE(3869), 1, + sym__number, + STATE(3890), 1, sym_type_predicate, - STATE(5180), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5657), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3182), 7, + STATE(4632), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150570,7 +149284,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150584,77 +149298,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23768] = 33, + [21969] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4292), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4298), 1, anon_sym_keyof, - ACTIONS(4451), 1, + ACTIONS(4378), 1, sym_identifier, - ACTIONS(4453), 1, + ACTIONS(4380), 1, sym_this, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(2438), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2336), 1, sym_type_predicate, - STATE(5172), 1, + STATE(5216), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5758), 1, + STATE(5757), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3220), 7, + STATE(3461), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150662,7 +149376,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150676,44 +149390,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [23893] = 14, + [22094] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_extends, - ACTIONS(3871), 1, - anon_sym_EQ_GT, - ACTIONS(4455), 1, + ACTIONS(3856), 1, anon_sym_EQ, - ACTIONS(4461), 1, - anon_sym_COLON, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3823), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4457), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3800), 11, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3867), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150729,10 +149413,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 19, + ACTIONS(3794), 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(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -150741,7 +149445,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, @@ -150749,14 +149455,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [23980] = 6, + [22165] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 1, - anon_sym_EQ_GT, - ACTIONS(1908), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(3879), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -150772,11 +149478,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 18, + ACTIONS(3794), 18, 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, @@ -150791,7 +149497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -150814,99 +149520,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [24051] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, - anon_sym_typeof, - ACTIONS(3972), 1, - anon_sym_new, - ACTIONS(3974), 1, - anon_sym_QMARK, - ACTIONS(3976), 1, - anon_sym_AMP, - ACTIONS(3978), 1, - anon_sym_PIPE, - ACTIONS(3980), 1, - anon_sym_readonly, - ACTIONS(3982), 1, - anon_sym_keyof, - ACTIONS(4463), 1, - sym_identifier, - ACTIONS(4465), 1, - sym_this, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2294), 1, - sym_type_predicate, - STATE(5176), 1, - sym_type_parameters, - STATE(5615), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3314), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [24176] = 33, + [22236] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -150915,21 +149529,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -150945,38 +149559,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4467), 1, + ACTIONS(4416), 1, anon_sym_GT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -150984,7 +149598,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -150998,77 +149612,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24301] = 33, + [22361] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, ACTIONS(610), 1, anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(2129), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(2131), 1, anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(2139), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - ACTIONS(4469), 1, - anon_sym_RBRACK, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4418), 1, + sym_identifier, + ACTIONS(4420), 1, + sym_this, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(3890), 1, + sym_type_predicate, + STATE(5432), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5667), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4744), 7, + STATE(4240), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151076,7 +149690,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151090,7 +149704,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24426] = 33, + [22486] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -151099,21 +149713,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -151129,38 +149743,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4471), 1, + ACTIONS(4422), 1, anon_sym_GT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151168,7 +149782,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151182,77 +149796,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24551] = 33, + [22611] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4088), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, + anon_sym_typeof, + ACTIONS(4136), 1, anon_sym_new, - ACTIONS(4100), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(4102), 1, + ACTIONS(4140), 1, anon_sym_AMP, - ACTIONS(4104), 1, + ACTIONS(4142), 1, anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4116), 1, + ACTIONS(4144), 1, anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, + ACTIONS(4146), 1, anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4447), 1, + ACTIONS(4424), 1, sym_identifier, - ACTIONS(4449), 1, + ACTIONS(4426), 1, sym_this, - STATE(2733), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(2176), 1, sym_string, - STATE(2805), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, sym__number, - STATE(2860), 1, + STATE(2336), 1, sym_type_predicate, - STATE(2884), 1, - sym__primary_type, - STATE(5180), 1, + STATE(5218), 1, sym_type_parameters, - STATE(5657), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(4106), 2, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3176), 7, + STATE(3580), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151260,7 +149874,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151274,77 +149888,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24676] = 33, + [22736] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4208), 1, anon_sym_keyof, - ACTIONS(4473), 1, + ACTIONS(4428), 1, sym_identifier, - ACTIONS(4475), 1, + ACTIONS(4430), 1, sym_this, - STATE(3840), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3877), 1, + STATE(2774), 1, sym_type_predicate, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5338), 1, + STATE(5183), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5738), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4692), 7, + STATE(3230), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151352,7 +149966,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151366,142 +149980,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24801] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1914), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 18, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(1619), 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, - [24872] = 33, + [22861] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4382), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(4388), 1, + anon_sym_QMARK, + ACTIONS(4390), 1, + anon_sym_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE, + ACTIONS(4394), 1, sym_this, - ACTIONS(1896), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4477), 1, - anon_sym_GT, - STATE(3840), 1, + ACTIONS(4398), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5255), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(3961), 1, + sym_type_predicate, + STATE(5262), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4359), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151509,7 +150058,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151523,14 +150072,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [24997] = 6, + [22986] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1634), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(3867), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151546,7 +150095,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 18, + ACTIONS(3794), 18, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -151565,7 +150114,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -151588,31 +150137,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25068] = 33, + [23057] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3966), 1, + anon_sym_typeof, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, ACTIONS(3970), 1, - anon_sym_typeof, + anon_sym_LBRACK, ACTIONS(3972), 1, anon_sym_new, ACTIONS(3974), 1, @@ -151621,44 +150164,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3990), 1, anon_sym_readonly, - ACTIONS(3982), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3994), 1, anon_sym_keyof, - ACTIONS(4463), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4432), 1, sym_identifier, - ACTIONS(4465), 1, + ACTIONS(4434), 1, sym_this, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(2333), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(2518), 1, sym_type_predicate, - STATE(5176), 1, + STATE(5457), 1, sym_type_parameters, - STATE(5615), 1, + STATE(5527), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3307), 7, + STATE(3542), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151666,7 +150215,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151680,77 +150229,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25193] = 33, + [23182] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4479), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4481), 1, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4491), 1, - sym_this, - ACTIONS(4493), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(3890), 1, + ACTIONS(4436), 1, + anon_sym_RBRACK, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3953), 1, - sym_type_predicate, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4401), 7, + STATE(4902), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151758,7 +150307,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151772,77 +150321,169 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25318] = 33, + [23307] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4024), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_typeof, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_LBRACK, + ACTIONS(4069), 1, + anon_sym_new, + ACTIONS(4071), 1, + anon_sym_QMARK, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4087), 1, + anon_sym_readonly, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, + anon_sym_keyof, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + sym_this, + STATE(2700), 1, + sym_nested_type_identifier, + STATE(2815), 1, + sym_type_predicate, + STATE(2929), 1, + sym__number, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5161), 1, + sym_type_parameters, + STATE(5490), 1, + sym_formal_parameters, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2860), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2942), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [23432] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(4026), 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(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, + ACTIONS(2085), 1, anon_sym_typeof, - ACTIONS(4030), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(2091), 1, anon_sym_new, - ACTIONS(4036), 1, - anon_sym_QMARK, - ACTIONS(4038), 1, - anon_sym_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE, - ACTIONS(4046), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(4052), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, - anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4497), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4176), 1, sym_identifier, - ACTIONS(4499), 1, + ACTIONS(4178), 1, sym_this, - STATE(3145), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(3954), 1, sym_string, - STATE(3394), 1, + STATE(3959), 1, sym__primary_type, - STATE(3397), 1, + STATE(3960), 1, sym__number, - STATE(3483), 1, + STATE(3961), 1, sym_type_predicate, - STATE(5199), 1, + STATE(5242), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5719), 1, sym_formal_parameters, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3348), 7, + STATE(3975), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -151850,7 +150491,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -151864,20 +150505,46 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25443] = 9, + [23557] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3802), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(4388), 1, + ACTIONS(3827), 1, + anon_sym_LBRACK, + ACTIONS(3858), 1, + anon_sym_RPAREN, + ACTIONS(3862), 1, + anon_sym_extends, + ACTIONS(3867), 1, anon_sym_EQ_GT, - STATE(3946), 1, + ACTIONS(3919), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_QMARK, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3830), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4442), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3794), 11, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -151893,38 +150560,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 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, @@ -151932,77 +150579,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [25520] = 33, + [23646] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4024), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4052), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4497), 1, + ACTIONS(4448), 1, sym_identifier, - ACTIONS(4499), 1, + ACTIONS(4450), 1, sym_this, - STATE(3145), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(2176), 1, sym_string, - STATE(3394), 1, + STATE(2178), 1, sym__primary_type, - STATE(3397), 1, + STATE(2179), 1, sym__number, - STATE(3503), 1, + STATE(2297), 1, sym_type_predicate, - STATE(5199), 1, + STATE(5289), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5540), 1, sym_formal_parameters, - ACTIONS(4042), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3342), 7, + STATE(2738), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152010,7 +150657,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152024,142 +150671,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25645] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3881), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3796), 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, - [25716] = 33, + [23771] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1346), 1, anon_sym_QMARK, - ACTIONS(716), 1, + ACTIONS(1348), 1, anon_sym_AMP, - ACTIONS(718), 1, + ACTIONS(1350), 1, anon_sym_PIPE, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(736), 1, + ACTIONS(1364), 1, anon_sym_keyof, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, - anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2030), 1, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4080), 1, + ACTIONS(4452), 1, sym_identifier, - ACTIONS(4082), 1, + ACTIONS(4454), 1, sym_this, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3953), 1, - sym_type_predicate, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(3890), 1, + sym_type_predicate, + STATE(5404), 1, sym_type_parameters, - STATE(5709), 1, + STATE(5483), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3995), 7, + STATE(4195), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152167,7 +150749,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152181,7 +150763,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25841] = 33, + [23896] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -152190,68 +150772,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, + ACTIONS(1874), 1, + sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(1896), 1, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4354), 1, - sym_identifier, - ACTIONS(4356), 1, - sym_this, - STATE(3840), 1, + ACTIONS(4344), 1, + anon_sym_keyof, + ACTIONS(4456), 1, + anon_sym_RBRACK, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3877), 1, - sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4343), 7, + STATE(4747), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152259,7 +150841,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152273,77 +150855,207 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [25966] = 33, + [24021] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4458), 1, + anon_sym_EQ, + ACTIONS(4460), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [24098] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3786), 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(3788), 34, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1652), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [24163] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4396), 1, - sym_identifier, - ACTIONS(4398), 1, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4400), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4402), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4404), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4406), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4408), 1, - sym_this, - ACTIONS(4410), 1, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4412), 1, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4462), 1, + sym_identifier, + ACTIONS(4464), 1, + sym_this, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3877), 1, + STATE(3331), 1, sym_type_predicate, - STATE(3881), 1, + STATE(3387), 1, sym__number, - STATE(3886), 1, + STATE(3395), 1, sym__primary_type, - STATE(3896), 1, + STATE(3407), 1, sym_string, - STATE(5354), 1, + STATE(5189), 1, sym_type_parameters, - STATE(5473), 1, + STATE(5654), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5807), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4154), 7, + STATE(3494), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152351,7 +151063,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152365,77 +151077,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26091] = 33, + [24288] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(716), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(718), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(736), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, - anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4080), 1, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4082), 1, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, sym_this, - STATE(3890), 1, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4466), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3949), 1, - sym_type_predicate, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(5244), 1, sym_type_parameters, - STATE(5709), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3997), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152443,7 +151155,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152457,10 +151169,10 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26216] = 3, + [24413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 23, + ACTIONS(3492), 23, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -152484,7 +151196,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3786), 34, + ACTIONS(3494), 34, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -152519,77 +151231,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [26281] = 33, + [24478] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4501), 1, - sym_identifier, - ACTIONS(4503), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(3966), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_LBRACK, + ACTIONS(3972), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(3976), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(4513), 1, - sym_this, - ACTIONS(4515), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3990), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3994), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4432), 1, + sym_identifier, + ACTIONS(4434), 1, + sym_this, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3877), 1, - sym_type_predicate, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5344), 1, + STATE(2483), 1, + sym_type_predicate, + STATE(5457), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5527), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4588), 7, + STATE(3544), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152597,7 +151309,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152611,77 +151323,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26406] = 33, + [24603] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(4451), 1, - sym_identifier, - ACTIONS(4453), 1, - sym_this, - STATE(2380), 1, + ACTIONS(4468), 1, + anon_sym_RBRACK, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(2559), 1, - sym_type_predicate, - STATE(5172), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5758), 1, + STATE(5819), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3208), 7, + STATE(4833), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152689,7 +151401,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152703,7 +151415,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26531] = 33, + [24728] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + anon_sym_EQ_GT, + ACTIONS(4470), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 13, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [24809] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -152712,21 +151494,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -152742,38 +151524,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4519), 1, + ACTIONS(4472), 1, anon_sym_GT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152781,7 +151563,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152795,20 +151577,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26656] = 9, + [24934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3808), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4521), 1, + ACTIONS(1902), 1, anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -152824,13 +151600,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - sym__automatic_semicolon, + ACTIONS(1672), 18, anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -152840,11 +151619,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -152863,7 +151642,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [26733] = 33, + [25005] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -152872,68 +151651,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4523), 1, + ACTIONS(4474), 1, sym_identifier, - ACTIONS(4525), 1, + ACTIONS(4476), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4482), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(4535), 1, + ACTIONS(4486), 1, sym_this, - ACTIONS(4537), 1, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4490), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3953), 1, - sym_type_predicate, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5164), 1, + STATE(3961), 1, + sym_type_predicate, + STATE(5453), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5783), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4124), 7, + STATE(4105), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -152941,7 +151720,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -152955,77 +151734,169 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26858] = 33, + [25130] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3887), 1, + anon_sym_typeof, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3893), 1, + anon_sym_new, + ACTIONS(3895), 1, + anon_sym_QMARK, + ACTIONS(3897), 1, + anon_sym_AMP, + ACTIONS(3899), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3911), 1, + anon_sym_readonly, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3915), 1, + anon_sym_keyof, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(4492), 1, + sym_identifier, + ACTIONS(4494), 1, + sym_this, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2297), 1, + sym_type_predicate, + STATE(5179), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3587), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [25255] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4280), 1, anon_sym_keyof, - ACTIONS(4541), 1, - anon_sym_RBRACK, - STATE(3840), 1, + ACTIONS(4496), 1, + sym_identifier, + ACTIONS(4498), 1, + sym_this, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5338), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2336), 1, + sym_type_predicate, + STATE(5175), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5595), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4740), 7, + STATE(3481), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153033,7 +151904,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153047,12 +151918,49 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [26983] = 3, + [25380] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3788), 23, - anon_sym_STAR, + ACTIONS(3814), 1, anon_sym_EQ, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 19, + 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3790), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -153074,17 +151982,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3790), 34, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + [25449] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3862), 1, + anon_sym_extends, + ACTIONS(4458), 1, + anon_sym_EQ, + ACTIONS(4500), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 2, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 12, + anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153100,16 +152033,27 @@ 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_extends, - [27048] = 33, + ACTIONS(3790), 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, + [25532] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -153118,68 +152062,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1878), 1, anon_sym_LBRACE, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4116), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4120), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4122), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4124), 1, + sym_this, + ACTIONS(4126), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4130), 1, anon_sym_keyof, - ACTIONS(4473), 1, - sym_identifier, - ACTIONS(4475), 1, - sym_this, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, + STATE(3864), 1, + sym_string, STATE(3866), 1, sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, + STATE(3868), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5338), 1, + STATE(3869), 1, + sym__number, + STATE(5363), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5610), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4694), 7, + STATE(4640), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153187,7 +152131,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153201,7 +152145,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27173] = 33, + [25657] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -153210,21 +152154,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -153240,38 +152184,38 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4543), 1, + ACTIONS(4502), 1, anon_sym_GT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153279,7 +152223,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153293,77 +152237,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27298] = 33, + [25782] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4246), 1, - sym_identifier, - ACTIONS(4248), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4250), 1, - anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, - anon_sym_LPAREN, - ACTIONS(4256), 1, - anon_sym_LBRACK, - ACTIONS(4258), 1, - anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(4264), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(4270), 1, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(4272), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(4274), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(4276), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, sym_this, - ACTIONS(4280), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, - anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - STATE(4001), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4504), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(4066), 1, + STATE(3864), 1, sym_string, - STATE(4078), 1, + STATE(3868), 1, sym__primary_type, - STATE(4080), 1, + STATE(3869), 1, sym__number, - STATE(4092), 1, - sym_type_predicate, - STATE(5292), 1, + STATE(5244), 1, sym_type_parameters, - STATE(5625), 1, - sym_nested_identifier, - STATE(5704), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4091), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153371,7 +152315,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153379,145 +152323,83 @@ static uint16_t ts_small_parse_table[] = { sym_lookup_type, sym_literal_type, sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [27423] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3482), 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(3484), 34, - 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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_extends, - [27488] = 33, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [25907] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(4134), 1, anon_sym_typeof, - ACTIONS(4126), 1, + ACTIONS(4136), 1, anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(4130), 1, + ACTIONS(4140), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4142), 1, anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(4144), 1, anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4146), 1, anon_sym_keyof, - ACTIONS(4545), 1, + ACTIONS(4424), 1, sym_identifier, - ACTIONS(4547), 1, + ACTIONS(4426), 1, sym_this, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(2294), 1, + STATE(2297), 1, sym_type_predicate, - STATE(5247), 1, + STATE(5218), 1, sym_type_parameters, - STATE(5714), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3482), 7, + STATE(3583), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153525,7 +152407,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153539,148 +152421,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27613] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_extends, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4445), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [27696] = 33, + [26032] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2922), 1, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4523), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3928), 1, sym_identifier, - ACTIONS(4525), 1, - anon_sym_typeof, - ACTIONS(4527), 1, - anon_sym_new, - ACTIONS(4529), 1, - anon_sym_QMARK, - ACTIONS(4531), 1, - anon_sym_AMP, - ACTIONS(4533), 1, - anon_sym_PIPE, - ACTIONS(4535), 1, + ACTIONS(3930), 1, sym_this, - ACTIONS(4537), 1, - anon_sym_readonly, - ACTIONS(4539), 1, - anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3949), 1, + STATE(3866), 1, sym_type_predicate, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5164), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4094), 7, + STATE(4223), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153688,7 +152499,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153702,77 +152513,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27821] = 33, + [26157] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3946), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(4162), 1, anon_sym_typeof, - ACTIONS(4126), 1, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4130), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4174), 1, anon_sym_keyof, - ACTIONS(4545), 1, + ACTIONS(4506), 1, sym_identifier, - ACTIONS(4547), 1, + ACTIONS(4508), 1, sym_this, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(2333), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(2483), 1, sym_type_predicate, - STATE(5247), 1, + STATE(5167), 1, sym_type_parameters, - STATE(5714), 1, + STATE(5694), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3437), 7, + STATE(3213), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153780,7 +152591,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153794,145 +152605,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [27946] = 9, + [26282] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - anon_sym_as, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2083), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(2087), 1, anon_sym_LPAREN, + ACTIONS(2089), 1, anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - ACTIONS(3796), 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, - [28023] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, + sym_number, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4246), 1, + ACTIONS(4474), 1, sym_identifier, - ACTIONS(4248), 1, - anon_sym_STAR, - ACTIONS(4250), 1, - anon_sym_LBRACE, - ACTIONS(4252), 1, + ACTIONS(4476), 1, anon_sym_typeof, - ACTIONS(4254), 1, - anon_sym_LPAREN, - ACTIONS(4256), 1, - anon_sym_LBRACK, - ACTIONS(4258), 1, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4482), 1, anon_sym_AMP, - ACTIONS(4264), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, - sym_number, - ACTIONS(4276), 1, + ACTIONS(4486), 1, sym_this, - ACTIONS(4280), 1, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, + ACTIONS(4490), 1, anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - STATE(4001), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(4065), 1, + STATE(3953), 1, sym_type_predicate, - STATE(4066), 1, + STATE(3954), 1, sym_string, - STATE(4078), 1, + STATE(3959), 1, sym__primary_type, - STATE(4080), 1, + STATE(3960), 1, sym__number, - STATE(5292), 1, + STATE(5453), 1, sym_type_parameters, - STATE(5625), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5704), 1, + STATE(5783), 1, sym_formal_parameters, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4064), 7, + STATE(4093), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -153940,7 +152683,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -153954,20 +152697,36 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28148] = 9, + [26407] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4222), 1, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(4460), 1, anon_sym_EQ_GT, - STATE(2226), 1, + ACTIONS(4510), 1, + anon_sym_LT, + STATE(3473), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -153983,25 +152742,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 22, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -154022,139 +152765,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [28225] = 3, + [26484] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 23, + ACTIONS(540), 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(3496), 34, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 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, - anon_sym_extends, - [28290] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4112), 1, + sym_identifier, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4140), 1, + ACTIONS(4116), 1, anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(4120), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(4122), 1, anon_sym_PIPE, - ACTIONS(4148), 1, + ACTIONS(4124), 1, + sym_this, + ACTIONS(4126), 1, anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(4130), 1, anon_sym_keyof, - ACTIONS(4549), 1, - sym_identifier, - ACTIONS(4551), 1, - sym_this, - STATE(2733), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3864), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(3868), 1, sym__primary_type, - STATE(2993), 1, + STATE(3869), 1, + sym__number, + STATE(3890), 1, sym_type_predicate, - STATE(5443), 1, + STATE(5363), 1, sym_type_parameters, - STATE(5484), 1, + STATE(5610), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2813), 7, + STATE(4651), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154162,7 +152843,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154176,77 +152857,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28415] = 33, + [26609] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4479), 1, - sym_identifier, - ACTIONS(4481), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(4491), 1, - sym_this, - ACTIONS(4493), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(3890), 1, + ACTIONS(4496), 1, + sym_identifier, + ACTIONS(4498), 1, + sym_this, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(2176), 1, sym_string, - STATE(3949), 1, - sym_type_predicate, - STATE(3954), 1, + STATE(2178), 1, sym__primary_type, - STATE(3963), 1, + STATE(2179), 1, sym__number, - STATE(5188), 1, + STATE(2297), 1, + sym_type_predicate, + STATE(5175), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + STATE(5595), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4303), 7, + STATE(3497), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154254,7 +152935,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154268,14 +152949,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28540] = 6, + [26734] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4368), 1, anon_sym_EQ, - ACTIONS(3871), 1, + ACTIONS(4370), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154291,16 +152978,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, + ACTIONS(3794), 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -154310,11 +152993,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3796), 22, + anon_sym_implements, + anon_sym_extends, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -154333,77 +153017,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [28611] = 33, + [26811] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, - anon_sym_typeof, - ACTIONS(4168), 1, - anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(4176), 1, - anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(4553), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4555), 1, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, sym_this, - STATE(2162), 1, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4513), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(2294), 1, - sym_type_predicate, - STATE(5444), 1, + STATE(5244), 1, sym_type_parameters, - STATE(5601), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3337), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154411,7 +153095,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154425,77 +153109,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28736] = 33, + [26936] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(576), 1, - anon_sym_QMARK, - ACTIONS(578), 1, - anon_sym_AMP, - ACTIONS(580), 1, - anon_sym_PIPE, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, + ACTIONS(1874), 1, + sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2078), 1, + ACTIONS(1886), 1, anon_sym_new, - ACTIONS(2086), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4557), 1, - sym_identifier, - ACTIONS(4559), 1, - sym_this, - STATE(3840), 1, + ACTIONS(4515), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3877), 1, - sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5432), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5805), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4151), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154503,7 +153187,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154517,77 +153201,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28861] = 33, + [27061] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, - anon_sym_typeof, - ACTIONS(3986), 1, - anon_sym_new, - ACTIONS(3988), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(3990), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(3992), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(3994), 1, - anon_sym_readonly, - ACTIONS(3996), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(4561), 1, - sym_identifier, - ACTIONS(4563), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, sym_this, - STATE(2162), 1, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4517), 1, + sym_identifier, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(2294), 1, - sym_type_predicate, - STATE(5207), 1, + STATE(5031), 1, + sym_type_parameter, + STATE(5244), 1, sym_type_parameters, - STATE(5751), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3573), 7, + STATE(4375), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154595,7 +153279,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154609,77 +153293,148 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [28986] = 33, + [27186] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3827), 1, + anon_sym_LBRACK, + ACTIONS(4519), 1, + anon_sym_EQ, + ACTIONS(4521), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 13, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [27269] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3887), 1, + anon_sym_typeof, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, - anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, anon_sym_keyof, - ACTIONS(4553), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4492), 1, sym_identifier, - ACTIONS(4555), 1, + ACTIONS(4494), 1, sym_this, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(2333), 1, + STATE(2336), 1, sym_type_predicate, - STATE(5444), 1, + STATE(5179), 1, sym_type_parameters, - STATE(5601), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3324), 7, + STATE(3579), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -154687,7 +153442,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -154701,12 +153456,50 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [29111] = 3, + [27394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 23, - anon_sym_STAR, + ACTIONS(1900), 1, + anon_sym_EQ_GT, + ACTIONS(1908), 1, anon_sym_EQ, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 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(1655), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -154728,17 +153521,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3774), 34, - 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, + [27465] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1884), 1, + anon_sym_EQ_GT, + ACTIONS(1936), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154754,6 +153544,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 18, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -154763,36 +153563,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [29176] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, + ACTIONS(1655), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3862), 1, - anon_sym_RPAREN, - ACTIONS(3866), 1, - anon_sym_extends, - ACTIONS(3871), 1, - anon_sym_EQ_GT, - ACTIONS(3883), 1, - anon_sym_EQ, - ACTIONS(4568), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3823), 2, + anon_sym_AMP_AMP, + anon_sym_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(4565), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3800), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [27536] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym_EQ, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -154802,7 +153625,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3790), 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, + [27605] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4326), 1, + anon_sym_EQ_GT, + ACTIONS(4470), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154818,18 +153679,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(3794), 16, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3790), 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, @@ -154837,14 +153718,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [29265] = 6, + [27682] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_EQ, - ACTIONS(3881), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3802), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(4523), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -154860,15 +153747,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, + ACTIONS(3794), 16, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -154879,11 +153764,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -154902,99 +153786,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [29336] = 33, + [27759] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3862), 1, + anon_sym_extends, + ACTIONS(4372), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 13, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(3922), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [27842] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_EQ_GT, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 18, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, - anon_sym_typeof, - ACTIONS(3986), 1, - anon_sym_new, - ACTIONS(3988), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1655), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3990), 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(3992), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3994), 1, - anon_sym_readonly, - ACTIONS(3996), 1, - anon_sym_keyof, - ACTIONS(4561), 1, - sym_identifier, - ACTIONS(4563), 1, - sym_this, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2333), 1, - sym_type_predicate, - STATE(5207), 1, - sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3588), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [29461] = 8, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [27913] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(1908), 1, @@ -155003,9 +153931,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_GT, ACTIONS(2690), 1, anon_sym_COLON, - ACTIONS(3792), 1, + ACTIONS(3812), 1, sym_identifier, - ACTIONS(1636), 14, + ACTIONS(1672), 14, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_LPAREN, @@ -155020,7 +153948,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155036,7 +153964,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(1655), 24, anon_sym_STAR, anon_sym_as, anon_sym_BANG, @@ -155061,125 +153989,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [29536] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, - anon_sym_typeof, - ACTIONS(4154), 1, - anon_sym_new, - ACTIONS(4156), 1, - anon_sym_QMARK, - ACTIONS(4158), 1, - anon_sym_AMP, - ACTIONS(4160), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_readonly, - ACTIONS(4164), 1, - anon_sym_keyof, - ACTIONS(4571), 1, - sym_identifier, - ACTIONS(4573), 1, - sym_this, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(2333), 1, - sym_type_predicate, - STATE(5350), 1, - sym_type_parameters, - STATE(5502), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2581), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [29661] = 12, + [27988] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4521), 1, + ACTIONS(1936), 1, anon_sym_EQ, - ACTIONS(4575), 1, + ACTIONS(1938), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 2, + ACTIONS(2294), 1, anon_sym_COMMA, + ACTIONS(3843), 2, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3823), 3, + ACTIONS(3846), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3800), 13, - sym__automatic_semicolon, + ACTIONS(1672), 15, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -155189,7 +154021,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155205,10 +154037,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(1655), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -155224,99 +154057,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [29744] = 33, + [28065] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4460), 1, + anon_sym_EQ_GT, + ACTIONS(4527), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 22, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(774), 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(776), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, - sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4577), 1, - anon_sym_GT, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5255), 1, - sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4484), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [29869] = 33, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [28142] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -155325,160 +154134,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1878), 1, anon_sym_LBRACE, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4238), 1, + ACTIONS(4529), 1, sym_identifier, - ACTIONS(4240), 1, - sym_this, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3866), 1, - sym_type_predicate, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, - sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4167), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [29994] = 33, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(4531), 1, + anon_sym_typeof, + ACTIONS(4533), 1, + anon_sym_new, + ACTIONS(4535), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(4537), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(4539), 1, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(4541), 1, sym_this, - ACTIONS(1896), 1, + ACTIONS(4543), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4579), 1, - anon_sym_GT, - STATE(3840), 1, + ACTIONS(4545), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(3890), 1, + sym_type_predicate, + STATE(5316), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(4273), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155486,7 +154203,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155500,77 +154217,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30119] = 33, + [28267] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(4581), 1, - anon_sym_RBRACK, - STATE(3840), 1, + ACTIONS(4448), 1, + sym_identifier, + ACTIONS(4450), 1, + sym_this, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5338), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2336), 1, + sym_type_predicate, + STATE(5289), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5540), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4831), 7, + STATE(2756), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155578,7 +154295,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155592,77 +154309,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30244] = 33, + [28392] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(1192), 1, + anon_sym_DQUOTE, + ACTIONS(1194), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(576), 1, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, + anon_sym_new, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(578), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(580), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(610), 1, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4028), 1, + anon_sym_readonly, + ACTIONS(4030), 1, anon_sym_infer, - ACTIONS(612), 1, + ACTIONS(4032), 1, anon_sym_keyof, - ACTIONS(614), 1, + ACTIONS(4034), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2078), 1, - anon_sym_new, - ACTIONS(2086), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4557), 1, + ACTIONS(4462), 1, sym_identifier, - ACTIONS(4559), 1, + ACTIONS(4464), 1, sym_this, - STATE(3840), 1, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3866), 1, + STATE(3255), 1, sym_type_predicate, - STATE(3881), 1, + STATE(3387), 1, sym__number, - STATE(3886), 1, + STATE(3395), 1, sym__primary_type, - STATE(3896), 1, + STATE(3407), 1, sym_string, - STATE(5432), 1, + STATE(5189), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5805), 1, + STATE(5654), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5807), 1, + sym_nested_identifier, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4143), 7, + STATE(3452), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155670,7 +154387,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155684,139 +154401,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30369] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3776), 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(3778), 34, - 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_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_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_extends, - [30434] = 33, + [28517] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4088), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4118), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4122), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(4140), 1, + ACTIONS(4256), 1, anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(4260), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(4262), 1, anon_sym_PIPE, - ACTIONS(4148), 1, + ACTIONS(4264), 1, anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(4266), 1, anon_sym_keyof, - ACTIONS(4549), 1, + ACTIONS(4304), 1, sym_identifier, - ACTIONS(4551), 1, + ACTIONS(4306), 1, sym_this, - STATE(2733), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(2176), 1, sym_string, - STATE(2805), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, sym__number, - STATE(2860), 1, + STATE(2297), 1, sym_type_predicate, - STATE(2884), 1, - sym__primary_type, - STATE(5443), 1, + STATE(5191), 1, sym_type_parameters, - STATE(5484), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(4106), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2838), 7, + STATE(3523), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155824,7 +154479,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155838,77 +154493,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30559] = 33, + [28642] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3946), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(4097), 1, anon_sym_new, - ACTIONS(4156), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4158), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(4160), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(4164), 1, + ACTIONS(4107), 1, anon_sym_keyof, - ACTIONS(4571), 1, + ACTIONS(4547), 1, sym_identifier, - ACTIONS(4573), 1, + ACTIONS(4549), 1, sym_this, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(2294), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(2518), 1, sym_type_predicate, - STATE(5350), 1, + STATE(5194), 1, sym_type_parameters, - STATE(5502), 1, + STATE(5663), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2625), 7, + STATE(2701), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -155916,7 +154571,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -155930,20 +154585,20 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30684] = 9, + [28767] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3812), 1, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3821), 1, anon_sym_LT, - ACTIONS(4388), 1, + ACTIONS(4370), 1, anon_sym_EQ_GT, - STATE(2495), 1, + STATE(2229), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -155959,12 +154614,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - sym__automatic_semicolon, + ACTIONS(3794), 16, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -155975,8 +154629,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -155998,20 +154653,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30761] = 9, + [28844] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3827), 1, + anon_sym_LBRACK, + ACTIONS(3862), 1, + anon_sym_extends, + ACTIONS(3867), 1, + anon_sym_EQ_GT, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(3805), 1, + ACTIONS(4557), 1, + anon_sym_COLON, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3830), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4553), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3794), 11, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [28931] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3821), 1, anon_sym_LT, - ACTIONS(4222), 1, + ACTIONS(4300), 1, anon_sym_EQ_GT, - STATE(3853), 1, + STATE(2229), 1, sym_type_arguments, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156027,7 +154755,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, anon_sym_as, anon_sym_LBRACE, anon_sym_LPAREN, @@ -156044,7 +154772,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156066,77 +154794,261 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [30838] = 33, + [29008] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, ACTIONS(610), 1, anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1878), 1, anon_sym_LBRACE, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(2922), 1, + ACTIONS(2129), 1, + anon_sym_typeof, + ACTIONS(2131), 1, + anon_sym_new, + ACTIONS(2139), 1, + anon_sym_readonly, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4501), 1, + ACTIONS(4418), 1, sym_identifier, - ACTIONS(4503), 1, + ACTIONS(4420), 1, + sym_this, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3866), 1, + sym_type_predicate, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5432), 1, + sym_type_parameters, + STATE(5667), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4258), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [29133] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_LBRACK, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4162), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4513), 1, - sym_this, - ACTIONS(4515), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4174), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(4506), 1, + sym_identifier, + ACTIONS(4508), 1, + sym_this, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3866), 1, - sym_type_predicate, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5344), 1, + STATE(2518), 1, + sym_type_predicate, + STATE(5167), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5694), 1, + sym_formal_parameters, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3225), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2465), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [29258] = 33, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4452), 1, + sym_identifier, + ACTIONS(4454), 1, + sym_this, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3866), 1, + sym_type_predicate, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, + sym_type_parameters, + STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4593), 7, + STATE(4186), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156144,7 +155056,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156158,24 +155070,30 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [30963] = 9, + [29383] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(4390), 1, - anon_sym_EQ, - ACTIONS(4392), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4460), 1, anon_sym_EQ_GT, - STATE(3853), 1, + ACTIONS(4527), 1, + anon_sym_EQ, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3800), 15, - anon_sym_as, + ACTIONS(3827), 3, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 12, + anon_sym_as, + anon_sym_LPAREN, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -156185,9 +155103,8 @@ 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, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156203,12 +155120,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3790), 19, 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, @@ -156216,9 +155132,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, @@ -156226,71 +155140,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [31040] = 5, + [29464] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_typeof, + ACTIONS(4065), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4067), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3796), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4069), 1, + anon_sym_new, + ACTIONS(4071), 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(4073), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4087), 1, + anon_sym_readonly, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, + anon_sym_keyof, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4438), 1, + sym_identifier, + ACTIONS(4440), 1, + sym_this, + STATE(2700), 1, + sym_nested_type_identifier, + STATE(2774), 1, + sym_type_predicate, + STATE(2929), 1, + sym__number, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5161), 1, + sym_type_parameters, + STATE(5490), 1, + sym_formal_parameters, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 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, - [31109] = 33, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2856), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2942), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [29589] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -156299,68 +155241,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, + ACTIONS(1874), 1, + sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4583), 1, - sym_identifier, - STATE(3840), 1, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, + anon_sym_new, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, + anon_sym_readonly, + ACTIONS(4344), 1, + anon_sym_keyof, + ACTIONS(4559), 1, + anon_sym_RBRACK, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5017), 1, - sym_type_parameter, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4313), 7, + STATE(4767), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156368,7 +155310,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156382,77 +155324,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31234] = 33, + [29714] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4308), 1, + sym_identifier, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4320), 1, + sym_this, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4324), 1, anon_sym_keyof, - ACTIONS(4418), 1, - sym_identifier, - ACTIONS(4420), 1, - sym_this, - STATE(2380), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(2559), 1, + STATE(3866), 1, sym_type_predicate, - STATE(5439), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5266), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5530), 1, + STATE(5735), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2594), 7, + STATE(4200), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156460,7 +155402,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156474,12 +155416,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31359] = 5, + [29839] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, + ACTIONS(3871), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3879), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -156495,12 +155439,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 19, + ACTIONS(3794), 18, 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, @@ -156515,7 +155458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -156538,77 +155481,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [31428] = 33, + [29910] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4210), 1, + sym_identifier, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, + ACTIONS(4214), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, + anon_sym_LBRACK, + ACTIONS(4222), 1, + anon_sym_new, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(1288), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(1290), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4428), 1, - sym_identifier, - ACTIONS(4430), 1, + ACTIONS(4240), 1, sym_this, - STATE(3840), 1, + ACTIONS(4244), 1, + anon_sym_readonly, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3866), 1, - sym_type_predicate, - STATE(3881), 1, + STATE(4121), 1, sym__number, - STATE(3886), 1, + STATE(4122), 1, sym__primary_type, - STATE(3896), 1, + STATE(4125), 1, sym_string, - STATE(5409), 1, + STATE(4126), 1, + sym_type_predicate, + STATE(5198), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5822), 1, + STATE(5618), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5767), 1, + sym_nested_identifier, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4203), 7, + STATE(4085), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156616,7 +155559,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156630,75 +155573,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31553] = 32, + [30035] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4529), 1, + sym_identifier, + ACTIONS(4531), 1, anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(4533), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(4535), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(4537), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(4539), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4541), 1, + sym_this, + ACTIONS(4543), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(4545), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3866), 1, + sym_type_predicate, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5444), 1, + STATE(5316), 1, sym_type_parameters, - STATE(5601), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3298), 7, + STATE(4249), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156706,7 +155651,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156720,75 +155665,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31675] = 32, + [30160] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 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, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(736), 1, - anon_sym_keyof, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, - anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4350), 1, + sym_identifier, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4362), 1, sym_this, - ACTIONS(2030), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3890), 1, + ACTIONS(4366), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3866), 1, + sym_type_predicate, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3971), 7, + STATE(4590), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156796,7 +155743,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156810,75 +155757,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31797] = 32, + [30285] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, sym_this, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, - anon_sym_typeof, - ACTIONS(4156), 1, - anon_sym_QMARK, - ACTIONS(4164), 1, - anon_sym_keyof, - STATE(2162), 1, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4561), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2182), 1, - sym__number, - STATE(2229), 1, + STATE(3868), 1, sym__primary_type, - STATE(5228), 1, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5087), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156886,7 +155835,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156900,75 +155849,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [31919] = 32, + [30410] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4186), 1, - anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4214), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, - anon_sym_typeof, - ACTIONS(4294), 1, - anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(790), 1, anon_sym_keyof, - STATE(2380), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, + sym_this, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4563), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(5172), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5758), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2400), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -156976,7 +155927,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -156990,206 +155941,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32041] = 9, + [30535] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3802), 1, - anon_sym_LT, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(4416), 1, - anon_sym_EQ_GT, - STATE(3946), 1, - sym_type_arguments, - ACTIONS(3800), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(540), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(764), 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(766), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(768), 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, - [32117] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1918), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 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, - [32187] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, anon_sym_new, - ACTIONS(4156), 1, - anon_sym_QMARK, - ACTIONS(4158), 1, - anon_sym_AMP, - ACTIONS(4160), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4164), 1, - anon_sym_keyof, - STATE(2162), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4346), 1, + sym_identifier, + ACTIONS(4348), 1, + sym_this, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5350), 1, + STATE(3890), 1, + sym_type_predicate, + STATE(5244), 1, sym_type_parameters, - STATE(5502), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2604), 7, + STATE(4335), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157197,7 +156019,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157211,75 +156033,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32309] = 32, + [30660] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(4148), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4150), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4152), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4154), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4156), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4158), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4160), 1, anon_sym_keyof, - STATE(2380), 1, + ACTIONS(4404), 1, + sym_identifier, + ACTIONS(4406), 1, + sym_this, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5172), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(2336), 1, + sym_type_predicate, + STATE(5239), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5758), 1, + STATE(5724), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3223), 7, + STATE(3433), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157287,7 +156111,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157301,75 +156125,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32431] = 32, + [30785] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4214), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4097), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4107), 1, anon_sym_keyof, - STATE(2380), 1, + ACTIONS(4547), 1, + sym_identifier, + ACTIONS(4549), 1, + sym_this, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2458), 1, sym__number, - STATE(2406), 1, + STATE(2459), 1, sym__primary_type, - STATE(2410), 1, + STATE(2466), 1, sym_string, - STATE(5172), 1, + STATE(2483), 1, + sym_type_predicate, + STATE(5194), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5758), 1, + STATE(5663), 1, sym_formal_parameters, - ACTIONS(4202), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2443), 7, + STATE(2694), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157377,7 +156203,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157391,113 +156217,33 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32553] = 32, + [30910] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, - anon_sym_AMP, - ACTIONS(1290), 1, - anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5409), 1, - sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5822), 1, - sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3869), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [32675] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3862), 1, + anon_sym_COMMA, + ACTIONS(4523), 1, anon_sym_EQ, - ACTIONS(3871), 1, + ACTIONS(4565), 1, anon_sym_EQ_GT, - ACTIONS(4585), 2, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 13, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3800), 15, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_SEMI, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -157507,7 +156253,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -157523,11 +156269,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3790), 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, + [30993] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3802), 1, + anon_sym_EQ_GT, + ACTIONS(4519), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 16, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3790), 21, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -157546,97 +156356,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [32747] = 32, + [31070] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3476), 23, anon_sym_STAR, - ACTIONS(4186), 1, - anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, - anon_sym_typeof, - ACTIONS(4294), 1, - anon_sym_new, - ACTIONS(4296), 1, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4298), 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(4300), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_readonly, - ACTIONS(4304), 1, - anon_sym_keyof, - STATE(2380), 1, - sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, - sym_string, - STATE(5172), 1, - sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5758), 1, - sym_formal_parameters, - ACTIONS(4202), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, - sym_true, - sym_false, - ACTIONS(4204), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3209), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2408), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [32869] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + ACTIONS(3478), 34, + 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_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_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_extends, + [31135] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -157645,66 +156427,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(1896), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4567), 1, + anon_sym_GT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4252), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157712,7 +156496,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157726,75 +156510,77 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [32991] = 32, + [31260] = 33, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(4081), 1, sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4214), 1, + ACTIONS(4089), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(4093), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(2380), 1, + ACTIONS(4428), 1, + sym_identifier, + ACTIONS(4430), 1, + sym_this, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2815), 1, + sym_type_predicate, + STATE(2929), 1, sym__number, - STATE(2406), 1, + STATE(2934), 1, sym__primary_type, - STATE(2410), 1, + STATE(2957), 1, sym_string, - STATE(5172), 1, + STATE(5183), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5758), 1, + STATE(5738), 1, sym_formal_parameters, - ACTIONS(4202), 2, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2555), 7, + STATE(3248), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157802,7 +156588,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157816,75 +156602,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33113] = 32, + [31385] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4182), 1, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, sym_this, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, - anon_sym_typeof, - ACTIONS(4296), 1, - anon_sym_QMARK, - ACTIONS(4304), 1, - anon_sym_keyof, - STATE(2380), 1, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(2509), 1, + STATE(3868), 1, sym__primary_type, - STATE(5228), 1, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5483), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5109), 7, + STATE(4416), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157892,7 +156678,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157906,75 +156692,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33235] = 32, + [31507] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5172), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5175), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5758), 1, + STATE(5595), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3224), 7, + STATE(2165), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -157982,7 +156768,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -157996,75 +156782,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33357] = 32, + [31629] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, + anon_sym_infer, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2124), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4186), 1, + anon_sym_QMARK, + ACTIONS(4194), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2176), 1, + sym_string, + STATE(2179), 1, sym__number, - STATE(3895), 1, + STATE(2225), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5134), 7, + STATE(5119), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158072,7 +156858,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158086,7 +156872,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33479] = 32, + [31751] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -158095,25 +156881,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(1346), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(1348), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(1350), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(1364), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -158123,38 +156905,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(4178), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158162,7 +156948,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158176,75 +156962,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33601] = 32, + [31873] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(4148), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4150), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4152), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4154), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4156), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4158), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4160), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5439), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5239), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5530), 1, + STATE(5724), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2626), 7, + STATE(3279), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158252,7 +157038,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158266,7 +157052,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33723] = 32, + [31995] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -158275,13 +157061,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -158291,50 +157077,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4774), 7, + STATE(4792), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158342,7 +157128,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158356,7 +157142,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33845] = 32, + [32117] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -158365,25 +157151,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -158393,38 +157173,134 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4114), 1, + anon_sym_typeof, + ACTIONS(4118), 1, + anon_sym_QMARK, + ACTIONS(4130), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3884), 1, sym__primary_type, - STATE(3896), 1, + STATE(5238), 1, + sym_type_parameters, + STATE(5716), 1, + sym_nested_identifier, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5151), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [32239] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, + sym_number, + ACTIONS(2109), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4384), 1, + anon_sym_typeof, + ACTIONS(4386), 1, + anon_sym_new, + ACTIONS(4388), 1, + anon_sym_QMARK, + ACTIONS(4390), 1, + anon_sym_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4398), 1, + anon_sym_keyof, + STATE(3885), 1, + sym_nested_type_identifier, + STATE(3954), 1, sym_string, - STATE(5228), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5262), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4452), 7, + STATE(4645), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158432,7 +157308,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158446,75 +157322,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [33967] = 32, + [32361] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5172), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5289), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5758), 1, + STATE(5540), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3221), 7, + STATE(2733), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158522,7 +157398,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158536,75 +157412,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34089] = 32, + [32483] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4294), 1, - anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4298), 1, - anon_sym_AMP, - ACTIONS(4300), 1, - anon_sym_PIPE, - ACTIONS(4302), 1, - anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2176), 1, + sym_string, + STATE(2179), 1, sym__number, - STATE(2406), 1, + STATE(2232), 1, sym__primary_type, - STATE(2410), 1, - sym_string, - STATE(5172), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5758), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2488), 7, + STATE(5119), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158612,7 +157488,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158626,7 +157502,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34211] = 32, + [32605] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -158635,13 +157511,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -158651,50 +157539,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4781), 7, + STATE(4140), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158702,7 +157578,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158716,75 +157592,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34333] = 32, + [32727] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, + anon_sym_QMARK, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1638), 1, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4182), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, - anon_sym_typeof, - ACTIONS(4296), 1, - anon_sym_QMARK, - ACTIONS(4304), 1, - anon_sym_keyof, - STATE(2380), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(2477), 1, + STATE(3868), 1, sym__primary_type, - STATE(5228), 1, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5483), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5109), 7, + STATE(4746), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158792,7 +157668,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158806,75 +157682,140 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34455] = 32, + [32849] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(4569), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + 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(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [32921] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(2129), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(2131), 1, anon_sym_new, - ACTIONS(4156), 1, - anon_sym_QMARK, - ACTIONS(4158), 1, - anon_sym_AMP, - ACTIONS(4160), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(2139), 1, anon_sym_readonly, - ACTIONS(4164), 1, - anon_sym_keyof, - STATE(2162), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5350), 1, + STATE(5432), 1, sym_type_parameters, - STATE(5502), 1, + STATE(5667), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2602), 7, + STATE(4274), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158882,7 +157823,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158896,75 +157837,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34577] = 32, + [33043] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(2129), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(2131), 1, anon_sym_new, - ACTIONS(4156), 1, - anon_sym_QMARK, - ACTIONS(4158), 1, - anon_sym_AMP, - ACTIONS(4160), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(2139), 1, anon_sym_readonly, - ACTIONS(4164), 1, - anon_sym_keyof, - STATE(2162), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5350), 1, + STATE(5432), 1, sym_type_parameters, - STATE(5502), 1, + STATE(5667), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2223), 7, + STATE(3880), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -158972,7 +157913,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -158986,75 +157927,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34699] = 32, + [33165] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4218), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4228), 1, + ACTIONS(4184), 1, + anon_sym_new, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4236), 1, + ACTIONS(4188), 1, + anon_sym_AMP, + ACTIONS(4190), 1, + anon_sym_PIPE, + ACTIONS(4192), 1, + anon_sym_readonly, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(2509), 1, + STATE(2178), 1, sym__primary_type, - STATE(5228), 1, + STATE(2179), 1, + sym__number, + STATE(5289), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5483), 1, + STATE(5540), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5063), 7, + STATE(2732), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159062,7 +158003,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159076,75 +158017,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34821] = 32, + [33287] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(4162), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4174), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2458), 1, sym__number, - STATE(2406), 1, + STATE(2459), 1, sym__primary_type, - STATE(2410), 1, + STATE(2466), 1, sym_string, - STATE(5439), 1, + STATE(5167), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5530), 1, + STATE(5694), 1, sym_formal_parameters, - ACTIONS(4202), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2555), 7, + STATE(2514), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159152,7 +158093,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159166,75 +158107,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [34943] = 32, + [33409] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3966), 1, + anon_sym_typeof, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, - anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(3972), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(3976), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3990), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3994), 1, anon_sym_keyof, - STATE(2380), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2458), 1, sym__number, - STATE(2406), 1, + STATE(2459), 1, sym__primary_type, - STATE(2410), 1, + STATE(2466), 1, sym_string, - STATE(5439), 1, + STATE(5457), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5530), 1, + STATE(5527), 1, sym_formal_parameters, - ACTIONS(4202), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2596), 7, + STATE(3539), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159242,7 +158183,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159256,7 +158197,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35065] = 32, + [33531] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -159265,13 +158206,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -159281,50 +158222,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4783), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159332,7 +158273,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159346,7 +158287,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35187] = 32, + [33653] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -159355,25 +158296,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -159383,38 +158312,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4531), 1, + anon_sym_typeof, + ACTIONS(4533), 1, + anon_sym_new, + ACTIONS(4535), 1, + anon_sym_QMARK, + ACTIONS(4537), 1, + anon_sym_AMP, + ACTIONS(4539), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4545), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5316), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4787), 7, + STATE(4248), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159422,7 +158363,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159436,75 +158377,140 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35309] = 32, + [33775] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(2690), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 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(3790), 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, + [33847] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(4081), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(4089), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(4093), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2929), 1, sym__number, - STATE(2406), 1, + STATE(2934), 1, sym__primary_type, - STATE(2410), 1, + STATE(2957), 1, sym_string, - STATE(5439), 1, + STATE(5183), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5530), 1, + STATE(5738), 1, sym_formal_parameters, - ACTIONS(4202), 2, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2628), 7, + STATE(3118), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159512,7 +158518,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159526,7 +158532,71 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35431] = 32, + [33969] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_EQ, + ACTIONS(2193), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 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, + 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(1655), 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, + [34039] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -159535,13 +158605,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -159551,50 +158621,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4324), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5266), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5735), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4786), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159602,7 +158672,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159616,75 +158686,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35553] = 32, + [34161] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4116), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4120), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4122), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4126), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4130), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(5439), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5363), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5530), 1, + STATE(5610), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2488), 7, + STATE(4608), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159692,7 +158762,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159706,165 +158776,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35675] = 32, + [34283] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3821), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, - anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(4571), 1, + anon_sym_EQ_GT, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4192), 1, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, - anon_sym_typeof, - ACTIONS(4228), 1, - anon_sym_QMARK, - ACTIONS(4236), 1, - anon_sym_keyof, - STATE(2380), 1, - sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2410), 1, - sym_string, - STATE(2477), 1, - sym__primary_type, - STATE(5228), 1, - sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5483), 1, - sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - sym_true, - sym_false, - ACTIONS(4204), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(5063), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2408), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [35797] = 32, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [34359] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4531), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(4533), 1, anon_sym_new, - ACTIONS(4156), 1, + ACTIONS(4535), 1, anon_sym_QMARK, - ACTIONS(4158), 1, + ACTIONS(4537), 1, anon_sym_AMP, - ACTIONS(4160), 1, + ACTIONS(4539), 1, anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(4543), 1, anon_sym_readonly, - ACTIONS(4164), 1, + ACTIONS(4545), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5350), 1, + STATE(5316), 1, sym_type_parameters, - STATE(5502), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2758), 7, + STATE(3880), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159872,7 +158919,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159886,7 +158933,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [35919] = 32, + [34481] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -159895,13 +158942,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -159911,50 +158966,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(2163), 1, anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4790), 7, + STATE(4165), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -159962,7 +159009,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -159976,75 +159023,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36041] = 32, + [34603] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4292), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4476), 1, anon_sym_typeof, - ACTIONS(4294), 1, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(4296), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(4298), 1, + ACTIONS(4482), 1, anon_sym_AMP, - ACTIONS(4300), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(4302), 1, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(4304), 1, + ACTIONS(4490), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3954), 1, sym_string, - STATE(5172), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5453), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5758), 1, + STATE(5783), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3247), 7, + STATE(4084), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160052,7 +159099,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160066,75 +159113,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36163] = 32, + [34725] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4476), 1, + anon_sym_typeof, + ACTIONS(4480), 1, + anon_sym_QMARK, + ACTIONS(4490), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, + STATE(3933), 1, sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5255), 1, + STATE(3960), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4340), 7, + STATE(5116), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160142,7 +159189,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160156,75 +159203,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36285] = 32, + [34847] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(3950), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4156), 1, + ACTIONS(4097), 1, + anon_sym_new, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4164), 1, + ACTIONS(4101), 1, + anon_sym_AMP, + ACTIONS(4103), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_readonly, + ACTIONS(4107), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(2222), 1, + STATE(2459), 1, sym__primary_type, - STATE(5228), 1, + STATE(2466), 1, + sym_string, + STATE(5194), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5663), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5087), 7, + STATE(2510), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160232,7 +159279,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160246,75 +159293,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36407] = 32, + [34969] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4097), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4107), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5344), 1, + STATE(5194), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5663), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4795), 7, + STATE(2695), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160322,7 +159369,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160336,7 +159383,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36529] = 32, + [35091] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -160345,13 +159392,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -160361,50 +159408,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4062), 1, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4064), 1, + ACTIONS(4116), 1, anon_sym_new, - ACTIONS(4066), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4068), 1, + ACTIONS(4120), 1, anon_sym_AMP, - ACTIONS(4070), 1, + ACTIONS(4122), 1, anon_sym_PIPE, - ACTIONS(4074), 1, + ACTIONS(4126), 1, anon_sym_readonly, - ACTIONS(4078), 1, + ACTIONS(4130), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5386), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5363), 1, sym_type_parameters, - STATE(5593), 1, + STATE(5610), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4687), 7, + STATE(3880), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160412,7 +159459,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160426,139 +159473,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36651] = 6, + [35213] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 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(1619), 22, + ACTIONS(540), 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, - [36721] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(3974), 1, + ACTIONS(4312), 1, + anon_sym_new, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(3982), 1, + ACTIONS(4316), 1, + anon_sym_AMP, + ACTIONS(4318), 1, + anon_sym_PIPE, + ACTIONS(4322), 1, + anon_sym_readonly, + ACTIONS(4324), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2182), 1, - sym__number, - STATE(2222), 1, + STATE(3868), 1, sym__primary_type, - STATE(5228), 1, + STATE(3869), 1, + sym__number, + STATE(5266), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5735), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5115), 7, + STATE(4185), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160566,7 +159549,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160580,75 +159563,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36843] = 32, + [35335] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4476), 1, anon_sym_typeof, - ACTIONS(3972), 1, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(3974), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(3976), 1, + ACTIONS(4482), 1, anon_sym_AMP, - ACTIONS(3978), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(3982), 1, + ACTIONS(4490), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3954), 1, sym_string, - STATE(2181), 1, + STATE(3959), 1, sym__primary_type, - STATE(2182), 1, + STATE(3960), 1, sym__number, - STATE(5176), 1, + STATE(5453), 1, sym_type_parameters, - STATE(5615), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5783), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2223), 7, + STATE(4114), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160656,7 +159639,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160670,75 +159653,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [36965] = 32, + [35457] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(3972), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(3974), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(3976), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(3978), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(3982), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5176), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5615), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3481), 7, + STATE(4516), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160746,7 +159729,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160760,7 +159743,76 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37087] = 32, + [35579] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4458), 1, + anon_sym_EQ, + ACTIONS(4500), 1, + anon_sym_EQ_GT, + ACTIONS(4573), 1, + anon_sym_LBRACE, + ACTIONS(4577), 1, + anon_sym_LT, + ACTIONS(4580), 1, + anon_sym_DOT, + STATE(4880), 1, + sym_type_arguments, + ACTIONS(4575), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + ACTIONS(3794), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [35659] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -160777,17 +159829,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1626), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -160797,128 +159849,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, - sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4745), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [37209] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, - anon_sym_typeof, - ACTIONS(3972), 1, - anon_sym_new, - ACTIONS(3974), 1, - anon_sym_QMARK, - ACTIONS(3976), 1, - anon_sym_AMP, - ACTIONS(3978), 1, - anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(3982), 1, - anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5176), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5615), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3487), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -160926,7 +159888,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -160940,27 +159902,25 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37331] = 8, + [35781] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1916), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1918), 1, + ACTIONS(3824), 1, + anon_sym_LT, + ACTIONS(4565), 1, anon_sym_EQ_GT, - ACTIONS(3856), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 14, + STATE(2399), 1, + sym_type_arguments, + ACTIONS(3794), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -160970,7 +159930,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -160986,11 +159947,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(3790), 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, @@ -160998,7 +159959,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, @@ -161006,75 +159969,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [37405] = 32, + [35857] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3950), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(3974), 1, + ACTIONS(4288), 1, + anon_sym_new, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(3982), 1, + ACTIONS(4292), 1, + anon_sym_AMP, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4298), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2182), 1, - sym__number, - STATE(2229), 1, + STATE(2178), 1, sym__primary_type, - STATE(5228), 1, + STATE(2179), 1, + sym__number, + STATE(5216), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5757), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5115), 7, + STATE(3440), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161082,7 +160045,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161096,7 +160059,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37527] = 32, + [35979] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -161113,17 +160076,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1626), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -161133,38 +160096,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4775), 7, + STATE(4455), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161172,7 +160135,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161186,75 +160149,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37649] = 32, + [36101] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, - anon_sym_AMP, - ACTIONS(1290), 1, - anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2124), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4476), 1, anon_sym_typeof, - ACTIONS(2126), 1, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(2134), 1, + ACTIONS(4480), 1, + anon_sym_QMARK, + ACTIONS(4482), 1, + anon_sym_AMP, + ACTIONS(4484), 1, + anon_sym_PIPE, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4490), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5409), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5453), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5783), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4179), 7, + STATE(4113), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161262,7 +160225,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161276,139 +160239,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37771] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(4388), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, - 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, - anon_sym_extends, - ACTIONS(3796), 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, - [37841] = 32, + [36223] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4384), 1, + anon_sym_typeof, + ACTIONS(4386), 1, + anon_sym_new, + ACTIONS(4388), 1, + anon_sym_QMARK, + ACTIONS(4390), 1, + anon_sym_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE, + ACTIONS(4396), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4398), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5228), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5262), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4881), 7, + STATE(4668), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161416,7 +160315,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161430,75 +160329,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [37963] = 32, + [36345] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, + ACTIONS(4148), 1, anon_sym_typeof, - ACTIONS(3972), 1, + ACTIONS(4150), 1, anon_sym_new, - ACTIONS(3974), 1, + ACTIONS(4152), 1, anon_sym_QMARK, - ACTIONS(3976), 1, + ACTIONS(4154), 1, anon_sym_AMP, - ACTIONS(3978), 1, + ACTIONS(4156), 1, anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(4158), 1, anon_sym_readonly, - ACTIONS(3982), 1, + ACTIONS(4160), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5176), 1, + STATE(5239), 1, sym_type_parameters, - STATE(5615), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5724), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2296), 7, + STATE(2302), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161506,7 +160405,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161520,75 +160419,255 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38085] = 32, + [36467] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(3972), 1, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(3974), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(3976), 1, + ACTIONS(4292), 1, anon_sym_AMP, - ACTIONS(3978), 1, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4298), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5216), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5757), 1, + sym_formal_parameters, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3299), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [36589] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, + sym_number, + ACTIONS(2109), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4476), 1, + anon_sym_typeof, + ACTIONS(4478), 1, + anon_sym_new, + ACTIONS(4480), 1, + anon_sym_QMARK, + ACTIONS(4482), 1, + anon_sym_AMP, + ACTIONS(4484), 1, + anon_sym_PIPE, + ACTIONS(4488), 1, + anon_sym_readonly, + ACTIONS(4490), 1, + anon_sym_keyof, + STATE(3885), 1, + sym_nested_type_identifier, + STATE(3954), 1, + sym_string, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5453), 1, + sym_type_parameters, + STATE(5671), 1, + sym_nested_identifier, + STATE(5783), 1, + sym_formal_parameters, + ACTIONS(2111), 2, + sym_true, + sym_false, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3941), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3956), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [36711] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(3982), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5176), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5615), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3312), 7, + STATE(4760), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161596,7 +160675,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161610,75 +160689,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38207] = 32, + [36833] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(3972), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(3974), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(3976), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(3978), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(3982), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3954), 1, sym_string, - STATE(2181), 1, + STATE(3959), 1, sym__primary_type, - STATE(2182), 1, + STATE(3960), 1, sym__number, - STATE(5176), 1, + STATE(5262), 1, sym_type_parameters, - STATE(5615), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2328), 7, + STATE(4350), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161686,7 +160765,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161700,7 +160779,72 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38329] = 32, + [36955] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2690), 1, + anon_sym_COLON, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 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(1655), 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, + [37027] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -161709,66 +160853,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(1896), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4834), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161776,7 +160920,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161790,75 +160934,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38451] = 32, + [37149] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, - anon_sym_AMP, - ACTIONS(1290), 1, - anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2124), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, anon_sym_typeof, - ACTIONS(2126), 1, + ACTIONS(4150), 1, anon_sym_new, - ACTIONS(2134), 1, + ACTIONS(4152), 1, + anon_sym_QMARK, + ACTIONS(4154), 1, + anon_sym_AMP, + ACTIONS(4156), 1, + anon_sym_PIPE, + ACTIONS(4158), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5409), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5239), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5724), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(3421), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161866,7 +161010,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161880,7 +161024,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38573] = 32, + [37271] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -161889,66 +161033,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(1896), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4811), 7, + STATE(4336), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -161956,7 +161100,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -161970,75 +161114,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38695] = 32, + [37393] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4014), 1, + anon_sym_AMP, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4024), 1, sym_this, - ACTIONS(1896), 1, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, + anon_sym_keyof, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3387), 1, sym__number, - STATE(3886), 1, + STATE(3395), 1, sym__primary_type, - STATE(3896), 1, + STATE(3407), 1, sym_string, - STATE(5255), 1, + STATE(5189), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5654), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5807), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4484), 7, + STATE(3488), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162046,7 +161190,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162060,139 +161204,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [38817] = 6, + [37515] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1924), 1, - anon_sym_EQ, - ACTIONS(1926), 1, - anon_sym_EQ_GT, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - anon_sym_as, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, + sym_identifier, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_typeof, + ACTIONS(4065), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4067), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4069), 1, + anon_sym_new, + ACTIONS(4071), 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(4073), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4075), 1, anon_sym_PIPE, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4087), 1, + anon_sym_readonly, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, + anon_sym_keyof, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, + sym_nested_type_identifier, + STATE(2929), 1, + sym__number, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5161), 1, + sym_type_parameters, + STATE(5490), 1, + sym_formal_parameters, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 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, - [38887] = 32, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2784), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2942), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [37637] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4212), 1, + anon_sym_STAR, + ACTIONS(4214), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, + anon_sym_LBRACK, + ACTIONS(4224), 1, + anon_sym_QMARK, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1874), 1, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4585), 1, sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3840), 1, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3883), 1, + STATE(4095), 1, sym__primary_type, - STATE(3896), 1, + STATE(4121), 1, + sym__number, + STATE(4125), 1, sym_string, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5134), 7, + STATE(5129), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162200,7 +161370,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162214,75 +161384,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39009] = 32, + [37759] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4476), 1, + anon_sym_typeof, + ACTIONS(4478), 1, + anon_sym_new, + ACTIONS(4480), 1, + anon_sym_QMARK, + ACTIONS(4482), 1, + anon_sym_AMP, + ACTIONS(4484), 1, + anon_sym_PIPE, + ACTIONS(4488), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4490), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5228), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5453), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5783), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4861), 7, + STATE(3948), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162290,7 +161460,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162304,7 +161474,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39131] = 32, + [37881] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -162313,13 +161483,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -162329,50 +161507,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(2163), 1, anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4812), 7, + STATE(4280), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162380,7 +161550,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162394,75 +161564,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39253] = 32, + [38003] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4324), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5266), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5735), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4408), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162470,7 +161640,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162484,75 +161654,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39375] = 32, + [38125] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4214), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(4220), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, - anon_sym_typeof, - ACTIONS(3972), 1, + ACTIONS(4222), 1, anon_sym_new, - ACTIONS(3974), 1, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(3976), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(3978), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(4234), 1, + anon_sym_DQUOTE, + ACTIONS(4236), 1, + anon_sym_SQUOTE, + ACTIONS(4238), 1, + sym_number, + ACTIONS(4244), 1, anon_sym_readonly, - ACTIONS(3982), 1, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, + sym_identifier, + ACTIONS(4585), 1, + sym_this, + STATE(3999), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(4121), 1, sym__number, - STATE(5176), 1, + STATE(4122), 1, + sym__primary_type, + STATE(4125), 1, + sym_string, + STATE(5198), 1, sym_type_parameters, - STATE(5615), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(4242), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2339), 7, + STATE(4097), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162560,7 +161730,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162574,140 +161744,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39497] = 7, + [38247] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2690), 1, - anon_sym_COLON, - ACTIONS(3843), 1, - anon_sym_EQ_GT, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 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(3796), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(2920), 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, - [39569] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(576), 1, + ACTIONS(4214), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, + anon_sym_LBRACK, + ACTIONS(4222), 1, + anon_sym_new, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1874), 1, + ACTIONS(4244), 1, + anon_sym_readonly, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4585), 1, sym_this, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3840), 1, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(4121), 1, sym__number, - STATE(3883), 1, + STATE(4122), 1, sym__primary_type, - STATE(3896), 1, + STATE(4125), 1, sym_string, - STATE(5228), 1, + STATE(5198), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5132), 7, + STATE(4104), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162715,7 +161820,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162729,7 +161834,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39691] = 32, + [38369] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -162746,13 +161851,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -162762,42 +161867,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2076), 1, + ACTIONS(2129), 1, anon_sym_typeof, - ACTIONS(2078), 1, + ACTIONS(2131), 1, anon_sym_new, - ACTIONS(2086), 1, + ACTIONS(2139), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, STATE(5432), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5805), 1, + STATE(5667), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(4136), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162805,7 +161910,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162819,140 +161924,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [39813] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2690), 1, - anon_sym_COLON, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 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(1619), 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, - [39885] = 32, + [38491] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4214), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(4220), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, - anon_sym_typeof, - ACTIONS(3972), 1, + ACTIONS(4222), 1, anon_sym_new, - ACTIONS(3974), 1, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(3976), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(3978), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(4234), 1, + anon_sym_DQUOTE, + ACTIONS(4236), 1, + anon_sym_SQUOTE, + ACTIONS(4238), 1, + sym_number, + ACTIONS(4244), 1, anon_sym_readonly, - ACTIONS(3982), 1, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, + sym_identifier, + ACTIONS(4585), 1, + sym_this, + STATE(3999), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(4121), 1, sym__number, - STATE(5176), 1, + STATE(4122), 1, + sym__primary_type, + STATE(4125), 1, + sym_string, + STATE(5198), 1, sym_type_parameters, - STATE(5615), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(4242), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3305), 7, + STATE(4106), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -162960,7 +162000,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -162974,75 +162014,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40007] = 32, + [38613] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(576), 1, - anon_sym_QMARK, - ACTIONS(578), 1, - anon_sym_AMP, - ACTIONS(580), 1, - anon_sym_PIPE, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4212), 1, + anon_sym_STAR, + ACTIONS(4214), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(4220), 1, + anon_sym_LBRACK, + ACTIONS(4224), 1, + anon_sym_QMARK, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1874), 1, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4585), 1, sym_this, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2078), 1, - anon_sym_new, - ACTIONS(2086), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, + STATE(4107), 1, sym__primary_type, - STATE(3896), 1, + STATE(4121), 1, + sym__number, + STATE(4125), 1, sym_string, - STATE(5432), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5767), 1, sym_nested_identifier, - STATE(5805), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4198), 7, + STATE(5129), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163050,7 +162090,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163064,139 +162104,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40129] = 6, + [38735] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - anon_sym_EQ, - ACTIONS(1922), 1, - anon_sym_EQ_GT, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - anon_sym_as, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4212), 1, + anon_sym_STAR, + ACTIONS(4214), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, anon_sym_LPAREN, + ACTIONS(4220), 1, anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - ACTIONS(1619), 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, - [40199] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(4222), 1, + anon_sym_new, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1874), 1, + ACTIONS(4244), 1, + anon_sym_readonly, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(4585), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(4121), 1, sym__number, - STATE(3886), 1, + STATE(4122), 1, sym__primary_type, - STATE(3896), 1, + STATE(4125), 1, sym_string, - STATE(5255), 1, + STATE(5198), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4329), 7, + STATE(4067), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163204,7 +162180,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163218,7 +162194,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40321] = 32, + [38857] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -163227,25 +162203,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -163255,38 +162219,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4366), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4141), 7, + STATE(4762), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163294,7 +162270,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163308,75 +162284,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40443] = 32, + [38979] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4162), 1, + anon_sym_typeof, + ACTIONS(4164), 1, + anon_sym_new, + ACTIONS(4166), 1, + anon_sym_QMARK, + ACTIONS(4168), 1, + anon_sym_AMP, + ACTIONS(4170), 1, + anon_sym_PIPE, + ACTIONS(4172), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4174), 1, + anon_sym_keyof, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5228), 1, + STATE(5167), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5694), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(2510), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163384,7 +162360,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163398,96 +162374,22 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40565] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(4392), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 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, - 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(3796), 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, - [40635] = 32, + [39101] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(576), 1, - anon_sym_QMARK, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -163497,40 +162399,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4531), 1, + anon_sym_typeof, + ACTIONS(4533), 1, + anon_sym_new, + ACTIONS(4535), 1, + anon_sym_QMARK, + ACTIONS(4537), 1, + anon_sym_AMP, + ACTIONS(4539), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4545), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3895), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5316), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5132), 7, + STATE(4268), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163538,7 +162450,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163552,77 +162464,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [40757] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 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(3796), 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, - [40825] = 6, + [39223] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(4392), 1, + ACTIONS(4300), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -163638,10 +162487,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 17, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -163654,10 +162505,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(3796), 23, + ACTIONS(3790), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -163679,75 +162528,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [40895] = 32, + [39293] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3887), 1, + anon_sym_typeof, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3893), 1, + anon_sym_new, + ACTIONS(3895), 1, + anon_sym_QMARK, + ACTIONS(3897), 1, + anon_sym_AMP, + ACTIONS(3899), 1, + anon_sym_PIPE, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3911), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, + anon_sym_keyof, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5228), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5179), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4822), 7, + STATE(2165), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163755,7 +162604,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163769,7 +162618,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41017] = 32, + [39415] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -163778,13 +162627,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -163794,50 +162655,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4310), 1, - anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4729), 7, + STATE(4811), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163845,7 +162694,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163859,22 +162708,32 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41139] = 32, + [39537] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, ACTIONS(610), 1, anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -163884,50 +162743,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(2129), 1, anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3884), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5338), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4727), 7, + STATE(5148), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -163935,7 +162784,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -163949,7 +162798,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41261] = 32, + [39659] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -163958,21 +162807,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(1288), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(1290), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1304), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -163982,42 +162835,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5409), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4224), 7, + STATE(4891), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164025,7 +162874,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164039,75 +162888,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41383] = 32, + [39781] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5344), 1, + STATE(5183), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5738), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4846), 7, + STATE(2813), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164115,7 +162964,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164129,75 +162978,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41505] = 32, + [39903] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3887), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5344), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5179), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4855), 7, + STATE(3590), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164205,7 +163054,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164219,7 +163068,138 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41627] = 32, + [40025] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3808), 1, + anon_sym_EQ_GT, + ACTIONS(4587), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [40101] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2193), 1, + anon_sym_EQ_GT, + ACTIONS(2224), 1, + anon_sym_EQ, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 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, + 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(1655), 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, + [40171] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -164228,19 +163208,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(1350), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -164250,44 +163232,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4310), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3883), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5148), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164295,7 +163275,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164309,75 +163289,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41749] = 32, + [40293] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4256), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4260), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4262), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4264), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4266), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5338), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5191), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5745), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(2302), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164385,7 +163365,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164399,7 +163379,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41871] = 32, + [40415] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -164408,13 +163388,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -164424,50 +163416,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4310), 1, - anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4598), 7, + STATE(4783), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164475,7 +163455,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164489,7 +163469,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [41993] = 32, + [40537] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -164498,66 +163478,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4856), 7, + STATE(4375), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164565,7 +163545,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164579,75 +163559,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42115] = 32, + [40659] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, + ACTIONS(3966), 1, anon_sym_typeof, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3972), 1, anon_sym_new, - ACTIONS(3928), 1, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(3976), 1, anon_sym_AMP, - ACTIONS(3932), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(3944), 1, + ACTIONS(3990), 1, anon_sym_readonly, - ACTIONS(3946), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(3994), 1, anon_sym_keyof, - ACTIONS(3950), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(5186), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5457), 1, sym_type_parameters, - STATE(5469), 1, + STATE(5527), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3545), 7, + STATE(2510), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164655,7 +163635,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164669,7 +163649,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42237] = 32, + [40781] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -164678,19 +163658,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -164700,44 +163674,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4310), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4316), 1, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4324), 1, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3895), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5148), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164745,7 +163725,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164759,165 +163739,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42359] = 32, + [40903] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, - sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5255), 1, - sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, - sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4345), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [42481] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(576), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(578), 1, - anon_sym_AMP, - ACTIONS(580), 1, - anon_sym_PIPE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4022), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4024), 1, sym_this, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2078), 1, - anon_sym_new, - ACTIONS(2086), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4032), 1, + anon_sym_keyof, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, + STATE(3341), 1, sym__primary_type, - STATE(3896), 1, + STATE(3387), 1, + sym__number, + STATE(3407), 1, sym_string, - STATE(5432), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5807), 1, sym_nested_identifier, - STATE(5805), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3869), 7, + STATE(5131), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -164925,7 +163815,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -164939,75 +163829,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42603] = 32, + [41025] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(576), 1, - anon_sym_QMARK, - ACTIONS(578), 1, - anon_sym_AMP, - ACTIONS(580), 1, - anon_sym_PIPE, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2076), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(2078), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(2086), 1, + ACTIONS(4388), 1, + anon_sym_QMARK, + ACTIONS(4390), 1, + anon_sym_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4398), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5432), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5262), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5805), 1, + STATE(5512), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5671), 1, + sym_nested_identifier, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4138), 7, + STATE(4585), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165015,7 +163905,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165029,143 +163919,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42725] = 10, + [41147] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(4342), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(4587), 3, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(3800), 12, - anon_sym_as, + ACTIONS(3889), 1, anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [42803] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, + anon_sym_new, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(1288), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(1290), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4194), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5409), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5289), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5540), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4200), 7, + STATE(2754), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165173,7 +163995,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165187,75 +164009,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [42925] = 32, + [41269] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(576), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(578), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(580), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(612), 1, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2078), 1, - anon_sym_new, - ACTIONS(2086), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5432), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5805), 1, + STATE(5719), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(3984), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165263,7 +164085,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165277,14 +164099,38 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43047] = 6, + [41391] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1900), 1, - anon_sym_EQ_GT, - ACTIONS(2068), 1, + ACTIONS(1924), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(1926), 1, + anon_sym_EQ_GT, + ACTIONS(2294), 1, + anon_sym_COMMA, + ACTIONS(3843), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 14, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -165300,30 +164146,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - 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, - anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1655), 19, 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, @@ -165331,9 +164158,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, @@ -165341,7 +164166,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [43117] = 32, + [41467] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -165350,13 +164175,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -165366,50 +164203,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4310), 1, - anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4750), 7, + STATE(4836), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165417,7 +164242,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165431,75 +164256,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43239] = 32, + [41589] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5338), 1, + STATE(5183), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5738), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4751), 7, + STATE(2770), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165507,7 +164332,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165521,7 +164346,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43361] = 32, + [41711] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -165530,13 +164355,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -165546,50 +164371,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4398), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4400), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4402), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4404), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4406), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(4412), 1, + ACTIONS(4324), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5354), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5266), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5735), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4211), 7, + STATE(4183), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165597,7 +164422,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165611,75 +164436,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43483] = 32, + [41833] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4063), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_LBRACK, + ACTIONS(4069), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4071), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4087), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5344), 1, + STATE(5161), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5490), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4857), 7, + STATE(2855), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165687,7 +164512,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165701,75 +164526,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43605] = 32, + [41955] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, - anon_sym_typeof, - ACTIONS(3954), 1, - anon_sym_new, - ACTIONS(3956), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(3960), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(3962), 1, - anon_sym_readonly, - ACTIONS(3964), 1, + ACTIONS(692), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5167), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3579), 7, + STATE(4742), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165777,7 +164602,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165791,75 +164616,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43727] = 32, + [42077] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3887), 1, + anon_sym_typeof, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3895), 1, + anon_sym_QMARK, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, - anon_sym_typeof, - ACTIONS(4154), 1, - anon_sym_new, - ACTIONS(4156), 1, - anon_sym_QMARK, - ACTIONS(4158), 1, - anon_sym_AMP, - ACTIONS(4160), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, - anon_sym_readonly, - ACTIONS(4164), 1, + ACTIONS(3915), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5350), 1, + STATE(2225), 1, + sym__primary_type, + STATE(5238), 1, sym_type_parameters, - STATE(5502), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2296), 7, + STATE(5134), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165867,7 +164692,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165881,7 +164706,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43849] = 32, + [42199] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -165890,13 +164715,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -165906,50 +164731,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4318), 1, anon_sym_PIPE, ACTIONS(4322), 1, anon_sym_readonly, ACTIONS(4324), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5266), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5735), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3869), 7, + STATE(4334), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -165957,7 +164782,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -165971,7 +164796,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [43971] = 32, + [42321] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -165980,13 +164805,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -165996,50 +164829,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, + anon_sym_readonly, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4310), 1, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, + sym_type_parameters, + STATE(5483), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3880), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [42443] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1192), 1, + anon_sym_DQUOTE, + ACTIONS(1194), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3998), 1, + sym_identifier, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, + anon_sym_LBRACE, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4024), 1, + sym_this, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3387), 1, sym__number, - STATE(3886), 1, + STATE(3395), 1, sym__primary_type, - STATE(3896), 1, + STATE(3407), 1, sym_string, - STATE(5338), 1, + STATE(5189), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5654), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5807), 1, + sym_nested_identifier, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4693), 7, + STATE(3343), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166047,7 +164962,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166061,75 +164976,211 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44093] = 32, + [42565] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(3843), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 19, anon_sym_STAR, - ACTIONS(714), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(716), 1, + 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, + [42639] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3862), 1, + anon_sym_COMMA, + ACTIONS(4589), 1, + anon_sym_EQ, + ACTIONS(4591), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(734), 1, + ACTIONS(3794), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [42721] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(736), 1, - anon_sym_keyof, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4068), 7, + STATE(4204), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166137,7 +165188,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166151,75 +165202,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44215] = 32, + [42843] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 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, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(736), 1, - anon_sym_keyof, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, - anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + ACTIONS(4531), 1, + anon_sym_typeof, + ACTIONS(4533), 1, + anon_sym_new, + ACTIONS(4535), 1, + anon_sym_QMARK, + ACTIONS(4537), 1, + anon_sym_AMP, + ACTIONS(4539), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, + anon_sym_readonly, + ACTIONS(4545), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(5316), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4069), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166227,7 +165278,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166241,12 +165292,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44337] = 32, + [42965] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, ACTIONS(610), 1, anon_sym_infer, @@ -166254,62 +165305,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(3887), 1, anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4196), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4216), 1, + ACTIONS(3915), 1, anon_sym_keyof, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(2477), 1, + STATE(2179), 1, + sym__number, + STATE(2232), 1, sym__primary_type, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5483), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5089), 7, + STATE(5134), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166317,7 +165368,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166331,75 +165382,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44459] = 32, + [43087] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3808), 1, + anon_sym_EQ_GT, + ACTIONS(4589), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [43163] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(3966), 1, anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(3972), 1, anon_sym_new, - ACTIONS(4196), 1, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(4198), 1, + ACTIONS(3976), 1, anon_sym_AMP, - ACTIONS(4200), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(4212), 1, + ACTIONS(3990), 1, anon_sym_readonly, - ACTIONS(4214), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(4216), 1, + ACTIONS(3994), 1, anon_sym_keyof, - ACTIONS(4218), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - STATE(2380), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2458), 1, sym__number, - STATE(2406), 1, + STATE(2459), 1, sym__primary_type, - STATE(2410), 1, + STATE(2466), 1, sym_string, - STATE(5447), 1, + STATE(5457), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5548), 1, + STATE(5527), 1, sym_formal_parameters, - ACTIONS(4202), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2488), 7, + STATE(3543), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166407,7 +165525,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166421,75 +165539,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44581] = 32, + [43285] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4214), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(4220), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(4222), 1, + anon_sym_new, + ACTIONS(4224), 1, + anon_sym_QMARK, + ACTIONS(4226), 1, + anon_sym_AMP, + ACTIONS(4228), 1, + anon_sym_PIPE, + ACTIONS(4234), 1, + anon_sym_DQUOTE, + ACTIONS(4236), 1, + anon_sym_SQUOTE, + ACTIONS(4238), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(4244), 1, + anon_sym_readonly, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, + sym_identifier, + ACTIONS(4585), 1, sym_this, - ACTIONS(3946), 1, + STATE(3999), 1, + sym_nested_type_identifier, + STATE(4121), 1, + sym__number, + STATE(4122), 1, + sym__primary_type, + STATE(4125), 1, + sym_string, + STATE(5198), 1, + sym_type_parameters, + STATE(5618), 1, + sym_formal_parameters, + STATE(5767), 1, + sym_nested_identifier, + ACTIONS(4230), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4081), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(4123), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [43407] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(4116), 1, anon_sym_new, - ACTIONS(4156), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4158), 1, + ACTIONS(4120), 1, anon_sym_AMP, - ACTIONS(4160), 1, + ACTIONS(4122), 1, anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(4126), 1, anon_sym_readonly, - ACTIONS(4164), 1, + ACTIONS(4130), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5350), 1, + STATE(5363), 1, sym_type_parameters, - STATE(5502), 1, + STATE(5610), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2627), 7, + STATE(4636), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166497,7 +165705,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166511,75 +165719,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44703] = 32, + [43529] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(3887), 1, anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(4196), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(4198), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(4200), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4212), 1, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4216), 1, + ACTIONS(3915), 1, anon_sym_keyof, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5447), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5179), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5548), 1, + STATE(5482), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3546), 7, + STATE(3571), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166587,7 +165795,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166601,75 +165809,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44825] = 32, + [43651] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4196), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4198), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4200), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4212), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5447), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5289), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5548), 1, + STATE(5540), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3514), 7, + STATE(2226), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166677,7 +165885,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166691,75 +165899,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [44947] = 32, + [43773] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, ACTIONS(610), 1, anon_sym_infer, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1638), 1, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4182), 1, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(4063), 1, anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(4196), 1, + ACTIONS(4071), 1, anon_sym_QMARK, - ACTIONS(4206), 1, + ACTIONS(4081), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(4216), 1, + ACTIONS(4091), 1, anon_sym_keyof, - ACTIONS(4218), 1, + ACTIONS(4093), 1, anon_sym_LBRACE_PIPE, - STATE(2380), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(2842), 1, + sym__primary_type, + STATE(2929), 1, sym__number, - STATE(2410), 1, + STATE(2957), 1, sym_string, - STATE(2509), 1, - sym__primary_type, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5483), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(4202), 2, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5089), 7, + STATE(5145), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166767,7 +165975,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166781,75 +165989,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45069] = 32, + [43895] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(576), 1, + ACTIONS(4214), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, + anon_sym_LBRACK, + ACTIONS(4222), 1, + anon_sym_new, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(578), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(580), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1874), 1, + ACTIONS(4244), 1, + anon_sym_readonly, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4585), 1, sym_this, - ACTIONS(2076), 1, - anon_sym_typeof, - ACTIONS(2078), 1, - anon_sym_new, - ACTIONS(2086), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(4121), 1, sym__number, - STATE(3886), 1, + STATE(4122), 1, sym__primary_type, - STATE(3896), 1, + STATE(4125), 1, sym_string, - STATE(5432), 1, + STATE(5198), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5805), 1, + STATE(5618), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5767), 1, + sym_nested_identifier, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(4077), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166857,7 +166065,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166871,7 +166079,74 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45191] = 32, + [44017] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3816), 1, + anon_sym_LT, + ACTIONS(4565), 1, + anon_sym_EQ_GT, + STATE(3936), 1, + sym_type_arguments, + ACTIONS(3794), 15, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [44093] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -166880,13 +166155,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -166896,50 +166183,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4398), 1, - anon_sym_typeof, - ACTIONS(4400), 1, - anon_sym_new, - ACTIONS(4402), 1, - anon_sym_QMARK, - ACTIONS(4404), 1, - anon_sym_AMP, - ACTIONS(4406), 1, - anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4412), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3884), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5354), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4152), 7, + STATE(5146), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -166947,7 +166222,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -166961,75 +166236,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45313] = 32, + [44215] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 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(614), 1, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4398), 1, - anon_sym_typeof, - ACTIONS(4400), 1, - anon_sym_new, - ACTIONS(4402), 1, - anon_sym_QMARK, - ACTIONS(4404), 1, - anon_sym_AMP, - ACTIONS(4406), 1, - anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(4412), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5354), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(4028), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167037,7 +166312,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167051,7 +166326,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45435] = 32, + [44337] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -167060,66 +166335,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3884), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5344), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4859), 7, + STATE(5023), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167127,7 +166402,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167141,22 +166416,30 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45557] = 32, + [44459] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, ACTIONS(610), 1, anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -167166,50 +166449,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(2129), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(2131), 1, anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(2139), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5432), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5667), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(4128), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167217,7 +166492,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167231,75 +166506,141 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45679] = 32, + [44581] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(3016), 1, + anon_sym_in, + ACTIONS(4593), 1, + anon_sym_of, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 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(1655), 21, anon_sym_STAR, - ACTIONS(576), 1, + anon_sym_BANG, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(578), 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(580), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(610), 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, + [44655] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(612), 1, - anon_sym_keyof, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2076), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(2078), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(2086), 1, + ACTIONS(4388), 1, + anon_sym_QMARK, + ACTIONS(4390), 1, + anon_sym_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4398), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5432), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5262), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5805), 1, + STATE(5512), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5671), 1, + sym_nested_identifier, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4159), 7, + STATE(3969), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167307,7 +166648,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167321,7 +166662,73 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45801] = 32, + [44777] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2191), 1, + anon_sym_EQ, + ACTIONS(2193), 1, + anon_sym_EQ_GT, + ACTIONS(3843), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 13, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 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, + [44851] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -167330,13 +166737,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -167346,50 +166759,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, - anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4130), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3879), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5338), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(5151), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167397,7 +166804,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167411,7 +166818,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [45923] = 32, + [44973] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -167420,66 +166827,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, - anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4691), 7, + STATE(4284), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167487,7 +166894,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167501,7 +166908,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46045] = 32, + [45095] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -167510,13 +166917,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -167526,50 +166941,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(2163), 1, anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4864), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167577,7 +166984,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167591,75 +166998,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46167] = 32, + [45217] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1936), 1, + anon_sym_EQ, + ACTIONS(1938), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1655), 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, + [45287] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4022), 1, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4030), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4046), 1, + ACTIONS(4022), 1, sym_number, - ACTIONS(4048), 1, + ACTIONS(4024), 1, sym_this, - ACTIONS(4052), 1, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4054), 1, + ACTIONS(4030), 1, anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4032), 1, anon_sym_keyof, - ACTIONS(4058), 1, + ACTIONS(4034), 1, anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3383), 1, - sym_string, - STATE(3394), 1, - sym__primary_type, - STATE(3397), 1, + STATE(3387), 1, sym__number, - STATE(5199), 1, + STATE(3395), 1, + sym__primary_type, + STATE(3407), 1, + sym_string, + STATE(5189), 1, sym_type_parameters, - STATE(5569), 1, - sym_nested_identifier, - STATE(5821), 1, + STATE(5654), 1, sym_formal_parameters, - ACTIONS(4042), 2, + STATE(5807), 1, + sym_nested_identifier, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(4026), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3349), 7, + STATE(3454), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167667,7 +167138,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167681,75 +167152,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46289] = 32, + [45409] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 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(614), 1, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4398), 1, - anon_sym_typeof, - ACTIONS(4400), 1, - anon_sym_new, - ACTIONS(4402), 1, - anon_sym_QMARK, - ACTIONS(4404), 1, - anon_sym_AMP, - ACTIONS(4406), 1, - anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(4412), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5354), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4294), 7, + STATE(3948), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167757,7 +167228,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167771,142 +167242,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46411] = 9, + [45531] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3812), 1, - anon_sym_LT, - ACTIONS(4416), 1, - anon_sym_EQ_GT, - STATE(2495), 1, - sym_type_arguments, - ACTIONS(3800), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(540), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 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(674), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(676), 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, - [46487] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3970), 1, - anon_sym_typeof, - ACTIONS(3972), 1, - anon_sym_new, - ACTIONS(3974), 1, - anon_sym_QMARK, - ACTIONS(3976), 1, - anon_sym_AMP, - ACTIONS(3978), 1, - anon_sym_PIPE, - ACTIONS(3980), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(3982), 1, - anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5176), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5615), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3302), 7, + STATE(4776), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -167914,7 +167318,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -167928,7 +167332,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46609] = 32, + [45653] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -167937,66 +167341,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, - anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4597), 7, + STATE(4420), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168004,7 +167408,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168018,75 +167422,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46731] = 32, + [45775] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4292), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4298), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5439), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5216), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5530), 1, + STATE(5757), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2443), 7, + STATE(2226), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168094,7 +167498,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168108,75 +167512,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46853] = 32, + [45897] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4398), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(4400), 1, - anon_sym_new, - ACTIONS(4402), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(4404), 1, - anon_sym_AMP, - ACTIONS(4406), 1, - anon_sym_PIPE, - ACTIONS(4410), 1, - anon_sym_readonly, - ACTIONS(4412), 1, + ACTIONS(4298), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2176), 1, + sym_string, + STATE(2179), 1, sym__number, - STATE(3886), 1, + STATE(2225), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5354), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(5120), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168184,7 +167588,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168198,75 +167602,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [46975] = 32, + [46019] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5344), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5289), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5540), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4869), 7, + STATE(2302), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168274,7 +167678,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168288,75 +167692,141 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47097] = 32, + [46141] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(4595), 1, + anon_sym_in, + ACTIONS(4598), 1, + anon_sym_of, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 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(3790), 21, + anon_sym_STAR, + anon_sym_BANG, anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 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, + [46215] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(4186), 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(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(2085), 1, anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(2091), 1, anon_sym_new, - ACTIONS(4196), 1, - anon_sym_QMARK, - ACTIONS(4198), 1, - anon_sym_AMP, - ACTIONS(4200), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(4212), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, - anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - STATE(2380), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3954), 1, sym_string, - STATE(5447), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5548), 1, + STATE(5719), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2555), 7, + STATE(3969), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168364,7 +167834,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168378,7 +167848,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47219] = 32, + [46337] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -168395,17 +167865,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1626), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -168415,38 +167885,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4168), 7, + STATE(4773), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168454,7 +167924,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168468,7 +167938,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47341] = 32, + [46459] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -168485,17 +167955,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1626), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -168505,38 +167975,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3869), 7, + STATE(4857), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168544,7 +168014,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168558,75 +168028,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47463] = 32, + [46581] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - anon_sym_typeof, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_new, - ACTIONS(4196), 1, - anon_sym_QMARK, - ACTIONS(4198), 1, - anon_sym_AMP, - ACTIONS(4200), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4212), 1, + ACTIONS(2129), 1, + anon_sym_typeof, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, - anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - STATE(2380), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(2406), 1, + STATE(3879), 1, sym__primary_type, - STATE(2410), 1, - sym_string, - STATE(5447), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5548), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3533), 7, + STATE(5148), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168634,7 +168104,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168648,75 +168118,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47585] = 32, + [46703] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4539), 7, + STATE(4798), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168724,7 +168194,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168738,75 +168208,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47707] = 32, + [46825] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(4097), 1, anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4318), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(4320), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4107), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5338), 1, + STATE(5194), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5663), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4792), 7, + STATE(2514), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168814,7 +168284,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168828,75 +168298,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47829] = 32, + [46947] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4398), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4400), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4402), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4404), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4406), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4412), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5354), 1, + STATE(5183), 1, sym_type_parameters, - STATE(5473), 1, + STATE(5738), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4156), 7, + STATE(3143), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168904,7 +168374,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -168918,7 +168388,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [47951] = 32, + [47069] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -168927,21 +168397,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -168957,36 +168427,36 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4299), 7, + STATE(4287), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -168994,7 +168464,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169008,7 +168478,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48073] = 32, + [47191] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -169017,13 +168487,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -169033,50 +168503,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4398), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4400), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4402), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4404), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4406), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4412), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5354), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3869), 7, + STATE(4799), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169084,7 +168554,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169098,7 +168568,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48195] = 32, + [47313] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -169107,19 +168577,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, + anon_sym_QMARK, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -169129,44 +168605,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4398), 1, - anon_sym_typeof, - ACTIONS(4402), 1, - anon_sym_QMARK, - ACTIONS(4412), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3895), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5144), 7, + STATE(4867), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169174,7 +168644,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169188,75 +168658,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48317] = 32, + [47435] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4097), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4107), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5344), 1, + STATE(5194), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5663), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4638), 7, + STATE(2744), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169264,7 +168734,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169278,71 +168748,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48439] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2066), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 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, - 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(1619), 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, - [48509] = 32, + [47557] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -169351,19 +168757,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -169373,44 +168773,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4062), 1, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4066), 1, + ACTIONS(4116), 1, + anon_sym_new, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4078), 1, + ACTIONS(4120), 1, + anon_sym_AMP, + ACTIONS(4122), 1, + anon_sym_PIPE, + ACTIONS(4126), 1, + anon_sym_readonly, + ACTIONS(4130), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3883), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5363), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5610), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5135), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169418,7 +168824,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169432,25 +168838,29 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48631] = 9, + [47679] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, + ACTIONS(1652), 1, anon_sym_EQ, - ACTIONS(2074), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(2278), 1, + ACTIONS(2294), 1, anon_sym_extends, - ACTIONS(3856), 2, - anon_sym_COMMA, + ACTIONS(2967), 1, + anon_sym_QMARK, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(3859), 3, - anon_sym_GT, + ACTIONS(3956), 1, + anon_sym_RPAREN, + ACTIONS(1659), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3846), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1636), 14, + ACTIONS(1672), 12, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -169462,8 +168872,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -169479,13 +168888,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(1655), 19, 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, @@ -169499,75 +168908,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [48707] = 32, + [47761] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4062), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4064), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4066), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4068), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4070), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4074), 1, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4024), 1, + sym_this, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4078), 1, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3387), 1, sym__number, - STATE(3886), 1, + STATE(3395), 1, sym__primary_type, - STATE(3896), 1, + STATE(3407), 1, sym_string, - STATE(5386), 1, + STATE(5189), 1, sym_type_parameters, - STATE(5593), 1, + STATE(5654), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5807), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(3288), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169575,7 +168984,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169589,7 +168998,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48829] = 32, + [47883] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -169598,13 +169007,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -169614,50 +169023,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4398), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4400), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4402), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4404), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4406), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(4412), 1, + ACTIONS(4324), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5354), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5266), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5735), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4183), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169665,7 +169074,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169679,75 +169088,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [48951] = 32, + [48005] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4062), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4476), 1, anon_sym_typeof, - ACTIONS(4064), 1, - anon_sym_new, - ACTIONS(4066), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(4068), 1, - anon_sym_AMP, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4074), 1, - anon_sym_readonly, - ACTIONS(4078), 1, + ACTIONS(4490), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, + STATE(3942), 1, sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5386), 1, + STATE(3960), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5593), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4688), 7, + STATE(5116), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169755,7 +169164,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169769,7 +169178,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49073] = 32, + [48127] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -169778,66 +169187,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(1896), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4776), 7, + STATE(3880), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169845,7 +169254,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169859,7 +169268,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49195] = 32, + [48249] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -169868,13 +169277,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -169884,50 +169293,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4398), 1, + ACTIONS(4531), 1, anon_sym_typeof, - ACTIONS(4400), 1, + ACTIONS(4533), 1, anon_sym_new, - ACTIONS(4402), 1, + ACTIONS(4535), 1, anon_sym_QMARK, - ACTIONS(4404), 1, + ACTIONS(4537), 1, anon_sym_AMP, - ACTIONS(4406), 1, + ACTIONS(4539), 1, anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(4543), 1, anon_sym_readonly, - ACTIONS(4412), 1, + ACTIONS(4545), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5354), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5316), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4176), 7, + STATE(4169), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -169935,7 +169344,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -169949,7 +169358,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49317] = 32, + [48371] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -169958,13 +169367,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -169974,50 +169383,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4398), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4400), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4402), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4404), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4406), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4410), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4412), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5354), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5473), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(4878), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170025,7 +169434,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170039,7 +169448,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49439] = 32, + [48493] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -170052,62 +169461,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4062), 1, - anon_sym_typeof, - ACTIONS(4066), 1, - anon_sym_QMARK, - ACTIONS(4078), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3895), 1, + STATE(3879), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5135), 7, + STATE(5023), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170115,7 +169524,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170129,75 +169538,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49561] = 32, + [48615] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4150), 1, + anon_sym_new, + ACTIONS(4152), 1, + anon_sym_QMARK, + ACTIONS(4154), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(4156), 1, anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(4158), 1, + anon_sym_readonly, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5239), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5724), 1, + sym_formal_parameters, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3406), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [48737] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4398), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(4402), 1, + ACTIONS(4256), 1, + anon_sym_new, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(4412), 1, + ACTIONS(4260), 1, + anon_sym_AMP, + ACTIONS(4262), 1, + anon_sym_PIPE, + ACTIONS(4264), 1, + anon_sym_readonly, + ACTIONS(4266), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3883), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5228), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5191), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5144), 7, + STATE(3540), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170205,7 +169704,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170219,7 +169718,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49683] = 32, + [48859] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -170236,17 +169735,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1626), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -170256,38 +169755,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4780), 7, + STATE(4819), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170295,7 +169794,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170309,75 +169808,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49805] = 32, + [48981] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(4214), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, + anon_sym_LPAREN, + ACTIONS(4220), 1, + anon_sym_LBRACK, + ACTIONS(4222), 1, + anon_sym_new, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1874), 1, + ACTIONS(4244), 1, + anon_sym_readonly, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, - ACTIONS(1894), 1, + ACTIONS(4585), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(4121), 1, sym__number, - STATE(3886), 1, + STATE(4122), 1, sym__primary_type, - STATE(3896), 1, + STATE(4125), 1, sym_string, - STATE(5255), 1, + STATE(5198), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(4103), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170385,7 +169884,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170399,75 +169898,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [49927] = 32, + [49103] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3887), 1, + anon_sym_typeof, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, - anon_sym_typeof, - ACTIONS(3954), 1, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(3956), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(3960), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(3962), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(3964), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5167), 1, + STATE(5179), 1, sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3584), 7, + STATE(2302), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170475,7 +169974,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170489,7 +169988,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50049] = 32, + [49225] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -170498,13 +169997,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -170514,50 +170019,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4531), 1, anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4535), 1, anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, - anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4545), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3879), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5344), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4871), 7, + STATE(5155), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170565,7 +170064,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170579,75 +170078,319 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50171] = 32, + [49347] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4152), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2179), 1, + sym__number, + STATE(2232), 1, + sym__primary_type, + STATE(5238), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5127), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49469] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4256), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4260), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4262), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4264), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4266), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5344), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5191), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2165), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [49591] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4368), 1, + anon_sym_EQ, + ACTIONS(4370), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 17, + 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, + anon_sym_extends, + ACTIONS(3790), 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, + [49661] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, + anon_sym_typeof, + ACTIONS(4256), 1, + anon_sym_new, + ACTIONS(4258), 1, + anon_sym_QMARK, + ACTIONS(4260), 1, + anon_sym_AMP, + ACTIONS(4262), 1, + anon_sym_PIPE, + ACTIONS(4264), 1, + anon_sym_readonly, + ACTIONS(4266), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5191), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4798), 7, + STATE(3531), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170655,7 +170398,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170669,75 +170412,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50293] = 32, + [49783] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(3954), 1, + ACTIONS(4256), 1, anon_sym_new, - ACTIONS(3956), 1, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(4260), 1, anon_sym_AMP, - ACTIONS(3960), 1, + ACTIONS(4262), 1, anon_sym_PIPE, - ACTIONS(3962), 1, + ACTIONS(4264), 1, anon_sym_readonly, - ACTIONS(3964), 1, + ACTIONS(4266), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5167), 1, + STATE(5191), 1, sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2339), 7, + STATE(2299), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170745,7 +170488,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170759,75 +170502,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50415] = 32, + [49905] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(4063), 1, + anon_sym_typeof, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, - anon_sym_typeof, - ACTIONS(3954), 1, + ACTIONS(4069), 1, anon_sym_new, - ACTIONS(3956), 1, + ACTIONS(4071), 1, anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(3960), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(3962), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4087), 1, anon_sym_readonly, - ACTIONS(3964), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2929), 1, sym__number, - STATE(5167), 1, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5161), 1, sym_type_parameters, - STATE(5759), 1, + STATE(5490), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2328), 7, + STATE(2770), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170835,7 +170578,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170849,75 +170592,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50537] = 32, + [50027] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3887), 1, + anon_sym_typeof, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, - anon_sym_typeof, - ACTIONS(3954), 1, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(3956), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(3960), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(3962), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(3964), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5167), 1, + STATE(5179), 1, sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3592), 7, + STATE(3591), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -170925,7 +170668,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -170939,75 +170682,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50659] = 32, + [50149] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5344), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5262), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4875), 7, + STATE(4411), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171015,7 +170758,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171029,7 +170772,72 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50781] = 32, + [50271] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2686), 1, + anon_sym_COLON, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 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(3790), 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, + [50343] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -171038,25 +170846,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -171066,38 +170862,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4531), 1, + anon_sym_typeof, + ACTIONS(4533), 1, + anon_sym_new, + ACTIONS(4535), 1, + anon_sym_QMARK, + ACTIONS(4537), 1, + anon_sym_AMP, + ACTIONS(4539), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4545), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5316), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4739), 7, + STATE(4265), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171105,7 +170913,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171119,97 +170927,203 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [50903] = 32, + [50465] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(2686), 1, + anon_sym_COLON, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 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(1655), 22, anon_sym_STAR, - ACTIONS(3918), 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, + [50537] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(4370), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 17, + anon_sym_as, anon_sym_LBRACE, - ACTIONS(3922), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3924), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, - anon_sym_typeof, - ACTIONS(3954), 1, - anon_sym_new, - ACTIONS(3956), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + ACTIONS(3790), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(3958), 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(3960), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(3962), 1, - anon_sym_readonly, - ACTIONS(3964), 1, - anon_sym_keyof, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(5167), 1, - sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2296), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [51025] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [50607] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(4571), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [50683] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -171218,66 +171132,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4354), 7, + STATE(4865), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171285,7 +171199,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171299,7 +171213,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51147] = 32, + [50805] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -171308,13 +171222,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -171324,50 +171238,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4815), 7, + STATE(4512), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171375,7 +171289,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171389,75 +171303,202 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51269] = 32, + [50927] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 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(3790), 22, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 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, + [50995] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1914), 1, + anon_sym_EQ_GT, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 17, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(1652), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1655), 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, + [51065] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4062), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(4064), 1, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(4066), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(4068), 1, + ACTIONS(4292), 1, anon_sym_AMP, - ACTIONS(4070), 1, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(4074), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4078), 1, + ACTIONS(4298), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5386), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5216), 1, sym_type_parameters, - STATE(5593), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5757), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3869), 7, + STATE(2165), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171465,7 +171506,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171479,7 +171520,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51391] = 32, + [51187] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -171488,13 +171529,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -171504,50 +171553,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(2163), 1, anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4816), 7, + STATE(4155), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171555,7 +171596,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171569,7 +171610,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51513] = 32, + [51309] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -171578,13 +171619,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -171594,50 +171647,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4880), 7, + STATE(4818), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171645,7 +171686,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171659,165 +171700,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51635] = 32, + [51431] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(81), 1, anon_sym_DQUOTE, ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_new, - ACTIONS(4196), 1, - anon_sym_QMARK, - ACTIONS(4198), 1, - anon_sym_AMP, - ACTIONS(4200), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(4212), 1, - anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, - anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - STATE(2380), 1, - sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, - sym_string, - STATE(5447), 1, - sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5548), 1, - sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, - sym_true, - sym_false, - ACTIONS(4204), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2443), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2408), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [51757] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4062), 1, + ACTIONS(4162), 1, anon_sym_typeof, - ACTIONS(4064), 1, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4066), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4068), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4070), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4074), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4078), 1, + ACTIONS(4174), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5386), 1, + STATE(5167), 1, sym_type_parameters, - STATE(5593), 1, + STATE(5694), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4644), 7, + STATE(2526), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171825,7 +171776,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171839,75 +171790,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [51879] = 32, + [51553] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(3950), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, + ACTIONS(4162), 1, anon_sym_typeof, - ACTIONS(3956), 1, + ACTIONS(4164), 1, + anon_sym_new, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(3964), 1, + ACTIONS(4168), 1, + anon_sym_AMP, + ACTIONS(4170), 1, + anon_sym_PIPE, + ACTIONS(4172), 1, + anon_sym_readonly, + ACTIONS(4174), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(2229), 1, + STATE(2459), 1, sym__primary_type, - STATE(5228), 1, + STATE(2466), 1, + sym_string, + STATE(5167), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5694), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5107), 7, + STATE(3228), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -171915,7 +171866,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -171929,7 +171880,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52001] = 32, + [51675] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -171938,13 +171889,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -171954,50 +171905,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4894), 7, + STATE(4735), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172005,7 +171956,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172019,165 +171970,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52123] = 32, + [51797] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, - anon_sym_typeof, - ACTIONS(3954), 1, - anon_sym_new, - ACTIONS(3956), 1, - anon_sym_QMARK, - ACTIONS(3958), 1, - anon_sym_AMP, - ACTIONS(3960), 1, - anon_sym_PIPE, - ACTIONS(3962), 1, - anon_sym_readonly, - ACTIONS(3964), 1, - anon_sym_keyof, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(5167), 1, - sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3630), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [52245] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(3954), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(3956), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(3960), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(3962), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(3964), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5167), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3622), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172185,7 +172046,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172199,75 +172060,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52367] = 32, + [51919] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(3954), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(3956), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(3958), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(3960), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(3962), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(3964), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5167), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5759), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2223), 7, + STATE(4858), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172275,7 +172136,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172289,7 +172150,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52489] = 32, + [52041] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -172298,13 +172159,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -172314,50 +172183,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(4314), 1, + ACTIONS(2163), 1, anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5786), 1, + STATE(5483), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4635), 7, + STATE(4648), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172365,7 +172226,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172379,7 +172240,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52611] = 32, + [52163] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, @@ -172392,62 +172253,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3952), 1, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(3956), 1, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(3964), 1, + ACTIONS(4266), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(2222), 1, + STATE(2232), 1, sym__primary_type, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5107), 7, + STATE(5144), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172455,7 +172316,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172469,139 +172330,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52733] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2064), 1, - anon_sym_EQ, - ACTIONS(2066), 1, - anon_sym_EQ_GT, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 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, - 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(1619), 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, - [52803] = 32, + [52285] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4310), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, - anon_sym_readonly, - ACTIONS(4324), 1, + ACTIONS(4146), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2176), 1, + sym_string, + STATE(2179), 1, sym__number, - STATE(3886), 1, + STATE(2225), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5338), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4791), 7, + STATE(5130), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172609,7 +172406,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172623,28 +172420,25 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [52925] = 9, + [52407] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 1, - anon_sym_EQ, - ACTIONS(2070), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4571), 1, anon_sym_EQ_GT, - ACTIONS(3856), 1, - anon_sym_LBRACK, - ACTIONS(2278), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 14, - sym__automatic_semicolon, + ACTIONS(4600), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -172654,7 +172448,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -172670,11 +172465,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(3790), 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, @@ -172682,7 +172477,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, @@ -172690,75 +172487,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [53001] = 32, + [52483] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, + anon_sym_new, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(716), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(718), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(736), 1, + ACTIONS(4192), 1, + anon_sym_readonly, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5289), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5540), 1, + sym_formal_parameters, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2165), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [52605] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(2002), 1, + ACTIONS(4063), 1, anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(2008), 1, + ACTIONS(4069), 1, anon_sym_new, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(4071), 1, + anon_sym_QMARK, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4081), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(2030), 1, + ACTIONS(4087), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3890), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, + anon_sym_keyof, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3954), 1, - sym__primary_type, - STATE(3963), 1, + STATE(2929), 1, sym__number, - STATE(5251), 1, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5161), 1, sym_type_parameters, - STATE(5709), 1, + STATE(5490), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3986), 7, + STATE(2778), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172766,7 +172653,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172780,7 +172667,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53123] = 32, + [52727] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -172789,13 +172676,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -172805,50 +172704,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4310), 1, - anon_sym_typeof, - ACTIONS(4314), 1, - anon_sym_new, - ACTIONS(4316), 1, - anon_sym_QMARK, - ACTIONS(4318), 1, - anon_sym_AMP, - ACTIONS(4320), 1, - anon_sym_PIPE, - ACTIONS(4322), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4324), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5338), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5786), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4793), 7, + STATE(4150), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172856,7 +172743,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172870,75 +172757,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53245] = 32, + [52849] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3948), 7, + STATE(4587), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -172946,7 +172833,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -172960,75 +172847,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53367] = 32, + [52971] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(4186), 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(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, + ACTIONS(2085), 1, anon_sym_typeof, - ACTIONS(4190), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(2091), 1, anon_sym_new, - ACTIONS(4196), 1, - anon_sym_QMARK, - ACTIONS(4198), 1, - anon_sym_AMP, - ACTIONS(4200), 1, - anon_sym_PIPE, - ACTIONS(4206), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(4212), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, - anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - STATE(2380), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3954), 1, sym_string, - STATE(5447), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5548), 1, + STATE(5719), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2400), 7, + STATE(3982), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173036,7 +172923,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173050,75 +172937,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53489] = 32, + [53093] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(2129), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(2131), 1, anon_sym_new, - ACTIONS(4156), 1, - anon_sym_QMARK, - ACTIONS(4158), 1, - anon_sym_AMP, - ACTIONS(4160), 1, - anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(2139), 1, anon_sym_readonly, - ACTIONS(4164), 1, - anon_sym_keyof, - STATE(2162), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5350), 1, + STATE(5432), 1, sym_type_parameters, - STATE(5502), 1, + STATE(5667), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2328), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173126,7 +173013,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173140,75 +173027,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53611] = 32, + [53215] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4188), 1, - anon_sym_typeof, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4194), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4196), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4198), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4200), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4212), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4216), 1, + ACTIONS(4366), 1, anon_sym_keyof, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - STATE(2380), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(5447), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5548), 1, + STATE(5810), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3520), 7, + STATE(4515), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173216,7 +173103,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173230,75 +173117,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53733] = 32, + [53337] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4062), 1, + ACTIONS(4063), 1, anon_sym_typeof, - ACTIONS(4064), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_LBRACK, + ACTIONS(4069), 1, anon_sym_new, - ACTIONS(4066), 1, + ACTIONS(4071), 1, anon_sym_QMARK, - ACTIONS(4068), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4070), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4074), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4087), 1, anon_sym_readonly, - ACTIONS(4078), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5386), 1, + STATE(5161), 1, sym_type_parameters, - STATE(5593), 1, + STATE(5490), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(2779), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173306,7 +173193,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173320,75 +173207,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53855] = 32, + [53459] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, + STATE(3933), 1, sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5344), 1, + STATE(3960), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4903), 7, + STATE(5123), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173396,7 +173283,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173410,7 +173297,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [53977] = 32, + [53581] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -173419,13 +173306,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -173435,50 +173334,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4892), 7, + STATE(3880), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173486,7 +173373,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173500,77 +173387,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54099] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4589), 1, - anon_sym_EQ, - ACTIONS(4591), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [54181] = 32, + [53703] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -173579,66 +173396,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(1896), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4841), 7, + STATE(4728), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173646,7 +173463,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173660,203 +173477,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54303] = 6, + [53825] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 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(1619), 22, + ACTIONS(540), 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, - [54373] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1900), 1, - anon_sym_EQ_GT, - ACTIONS(1952), 1, - anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 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, - [54443] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(81), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4184), 1, - anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4214), 1, - anon_sym_infer, - ACTIONS(4218), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(5439), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5530), 1, + STATE(5810), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2640), 7, + STATE(4768), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173864,7 +173553,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173878,7 +173567,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54565] = 32, + [53947] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -173887,13 +173576,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -173903,50 +173592,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4062), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4064), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4066), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4068), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4070), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4074), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4078), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5386), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5593), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(4889), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -173954,7 +173643,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -173968,75 +173657,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54687] = 32, + [54069] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, - anon_sym_DQUOTE, - ACTIONS(83), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4182), 1, - sym_identifier, - ACTIONS(4184), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4186), 1, - anon_sym_LBRACE, - ACTIONS(4188), 1, - anon_sym_typeof, - ACTIONS(4190), 1, - anon_sym_LPAREN, - ACTIONS(4192), 1, - anon_sym_LBRACK, - ACTIONS(4194), 1, - anon_sym_new, - ACTIONS(4196), 1, + ACTIONS(576), 1, anon_sym_QMARK, - ACTIONS(4198), 1, + ACTIONS(578), 1, anon_sym_AMP, - ACTIONS(4200), 1, + ACTIONS(580), 1, anon_sym_PIPE, - ACTIONS(4206), 1, - sym_number, - ACTIONS(4208), 1, - sym_this, - ACTIONS(4212), 1, - anon_sym_readonly, - ACTIONS(4214), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(4216), 1, + ACTIONS(612), 1, anon_sym_keyof, - ACTIONS(4218), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - STATE(2380), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2129), 1, + anon_sym_typeof, + ACTIONS(2131), 1, + anon_sym_new, + ACTIONS(2139), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(3864), 1, sym_string, - STATE(5447), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5432), 1, sym_type_parameters, - STATE(5475), 1, - sym_nested_identifier, - STATE(5548), 1, + STATE(5667), 1, sym_formal_parameters, - ACTIONS(4202), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4210), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3513), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174044,7 +173733,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174058,75 +173747,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54809] = 32, + [54191] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4476), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(4156), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(4158), 1, + ACTIONS(4482), 1, anon_sym_AMP, - ACTIONS(4160), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(4164), 1, + ACTIONS(4490), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3954), 1, sym_string, - STATE(2181), 1, + STATE(3959), 1, sym__primary_type, - STATE(2182), 1, + STATE(3960), 1, sym__number, - STATE(5350), 1, + STATE(5453), 1, sym_type_parameters, - STATE(5502), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5783), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2339), 7, + STATE(3969), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174134,7 +173823,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174148,14 +173837,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [54931] = 6, + [54313] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3843), 1, + ACTIONS(1900), 1, anon_sym_EQ_GT, - ACTIONS(4180), 1, + ACTIONS(1924), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -174171,11 +173860,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(1672), 17, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -174189,7 +173877,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3796), 22, + anon_sym_extends, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -174212,7 +173901,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [55001] = 32, + [54383] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -174221,66 +173910,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4062), 1, - anon_sym_typeof, - ACTIONS(4064), 1, - anon_sym_new, - ACTIONS(4066), 1, - anon_sym_QMARK, - ACTIONS(4068), 1, - anon_sym_AMP, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4074), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4078), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5386), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5593), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4630), 7, + STATE(4331), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174288,7 +173977,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174302,144 +173991,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55123] = 11, + [54505] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4595), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_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(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(698), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - 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, - 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, - [55203] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4086), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(4112), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4142), 1, - anon_sym_QMARK, - ACTIONS(4150), 1, - anon_sym_keyof, - STATE(2733), 1, + ACTIONS(2113), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3954), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2821), 1, + STATE(3959), 1, sym__primary_type, - STATE(5228), 1, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5130), 7, + STATE(3979), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174447,7 +174067,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174461,75 +174081,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55325] = 32, + [54627] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4140), 1, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4148), 1, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4024), 1, + sym_this, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, anon_sym_keyof, - STATE(2733), 1, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, + STATE(3387), 1, sym__number, - STATE(2884), 1, + STATE(3395), 1, sym__primary_type, - STATE(5443), 1, + STATE(3407), 1, + sym_string, + STATE(5189), 1, sym_type_parameters, - STATE(5484), 1, + STATE(5654), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5807), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(4026), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2822), 7, + STATE(3347), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174537,7 +174157,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174551,75 +174171,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55447] = 32, + [54749] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(3887), 1, + anon_sym_typeof, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4140), 1, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(4148), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, anon_sym_keyof, - STATE(2733), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(2176), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(2178), 1, sym__primary_type, - STATE(5443), 1, + STATE(2179), 1, + sym__number, + STATE(5179), 1, sym_type_parameters, - STATE(5484), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(4106), 2, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2948), 7, + STATE(3574), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174627,7 +174247,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174641,75 +174261,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55569] = 32, + [54871] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4140), 1, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4148), 1, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4024), 1, + sym_this, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, anon_sym_keyof, - STATE(2733), 1, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, + STATE(3387), 1, sym__number, - STATE(2884), 1, + STATE(3395), 1, sym__primary_type, - STATE(5443), 1, + STATE(3407), 1, + sym_string, + STATE(5189), 1, sym_type_parameters, - STATE(5484), 1, + STATE(5654), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5807), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(4026), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2949), 7, + STATE(3349), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174717,7 +174337,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174731,75 +174351,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55691] = 32, + [54993] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4086), 1, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(4063), 1, + anon_sym_typeof, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, + ACTIONS(4069), 1, + anon_sym_new, + ACTIONS(4071), 1, + anon_sym_QMARK, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4081), 1, sym_number, - ACTIONS(4112), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4142), 1, - anon_sym_QMARK, - ACTIONS(4150), 1, + ACTIONS(4087), 1, + anon_sym_readonly, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, anon_sym_keyof, - STATE(2733), 1, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, + STATE(2929), 1, sym__number, - STATE(2832), 1, + STATE(2934), 1, sym__primary_type, - STATE(5228), 1, + STATE(2957), 1, + sym_string, + STATE(5161), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5490), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5130), 7, + STATE(2849), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174807,7 +174427,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174821,75 +174441,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55813] = 32, + [55115] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, + anon_sym_typeof, + ACTIONS(4256), 1, + anon_sym_new, + ACTIONS(4258), 1, + anon_sym_QMARK, + ACTIONS(4260), 1, + anon_sym_AMP, + ACTIONS(4262), 1, + anon_sym_PIPE, + ACTIONS(4264), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4266), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5228), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5191), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4803), 7, + STATE(3516), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174897,7 +174517,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -174911,75 +174531,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [55935] = 32, + [55237] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, + ACTIONS(4063), 1, anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(4069), 1, anon_sym_new, - ACTIONS(4100), 1, + ACTIONS(4071), 1, anon_sym_QMARK, - ACTIONS(4102), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4104), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4110), 1, + ACTIONS(4081), 1, sym_number, - ACTIONS(4112), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(4116), 1, + ACTIONS(4087), 1, anon_sym_readonly, - ACTIONS(4118), 1, + ACTIONS(4089), 1, anon_sym_infer, - ACTIONS(4120), 1, + ACTIONS(4091), 1, anon_sym_keyof, - ACTIONS(4122), 1, + ACTIONS(4093), 1, anon_sym_LBRACE_PIPE, - STATE(2733), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, + STATE(2929), 1, sym__number, - STATE(2884), 1, + STATE(2934), 1, sym__primary_type, - STATE(5180), 1, + STATE(2957), 1, + sym_string, + STATE(5161), 1, sym_type_parameters, - STATE(5657), 1, + STATE(5490), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3187), 7, + STATE(2857), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -174987,7 +174607,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175001,75 +174621,335 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56057] = 32, + [55359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(4460), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 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, + 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(3790), 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, + [55429] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym_EQ, + ACTIONS(3867), 1, + anon_sym_EQ_GT, + ACTIONS(4602), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + 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(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [55501] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1986), 1, + anon_sym_EQ, + ACTIONS(1988), 1, + anon_sym_EQ_GT, + ACTIONS(2294), 1, + anon_sym_extends, + ACTIONS(3843), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 14, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 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, + [55577] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1952), 1, + anon_sym_EQ, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 17, + 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, + anon_sym_extends, + ACTIONS(1655), 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, + [55647] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4292), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4298), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5439), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5216), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5530), 1, + STATE(5757), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2400), 7, + STATE(3313), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175077,7 +174957,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175091,75 +174971,209 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56179] = 32, + [55769] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3827), 1, + anon_sym_LBRACK, + ACTIONS(4587), 1, + anon_sym_EQ, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [55851] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1900), 1, + anon_sym_EQ_GT, + ACTIONS(1990), 1, + anon_sym_EQ, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 17, + 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, + anon_sym_extends, + ACTIONS(1655), 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, + [55921] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4112), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(4118), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(4122), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4140), 1, + ACTIONS(4097), 1, anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(4148), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(4107), 1, anon_sym_keyof, - STATE(2733), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, + STATE(2458), 1, sym__number, - STATE(2884), 1, + STATE(2459), 1, sym__primary_type, - STATE(5443), 1, + STATE(2466), 1, + sym_string, + STATE(5194), 1, sym_type_parameters, - STATE(5484), 1, + STATE(5663), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2864), 7, + STATE(2526), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175167,7 +175181,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175181,75 +175195,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56301] = 32, + [56043] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, - sym_identifier, - ACTIONS(4088), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, - anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4118), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(4122), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4140), 1, - anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(4148), 1, - anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(692), 1, anon_sym_keyof, - STATE(2733), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3864), 1, sym_string, - STATE(2805), 1, + STATE(3869), 1, sym__number, - STATE(2884), 1, + STATE(3879), 1, sym__primary_type, - STATE(5443), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5484), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2916), 7, + STATE(5146), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175257,7 +175271,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175271,34 +175285,30 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56423] = 32, + [56165] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(576), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(578), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(580), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(612), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -175308,38 +175318,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(2129), 1, + anon_sym_typeof, + ACTIONS(2131), 1, + anon_sym_new, + ACTIONS(2139), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3895), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5432), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5667), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5131), 7, + STATE(4221), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175347,7 +175361,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175361,7 +175375,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56545] = 32, + [56287] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -175370,13 +175384,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -175386,50 +175412,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4062), 1, - anon_sym_typeof, - ACTIONS(4064), 1, - anon_sym_new, - ACTIONS(4066), 1, - anon_sym_QMARK, - ACTIONS(4068), 1, - anon_sym_AMP, - ACTIONS(4070), 1, - anon_sym_PIPE, - ACTIONS(4074), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4078), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5386), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5593), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4519), 7, + STATE(4912), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175437,7 +175451,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175451,145 +175465,255 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56667] = 12, + [56409] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_COMMA, - ACTIONS(4597), 1, - anon_sym_EQ, - ACTIONS(4599), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 2, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3887), 1, + anon_sym_typeof, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, + ACTIONS(3893), 1, + anon_sym_new, + ACTIONS(3895), 1, + anon_sym_QMARK, + ACTIONS(3897), 1, anon_sym_AMP, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(3800), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3911), 1, + anon_sym_readonly, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, + anon_sym_keyof, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5179), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 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, - [56749] = 32, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2226), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56531] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(576), 1, - anon_sym_QMARK, - ACTIONS(578), 1, - anon_sym_AMP, - ACTIONS(580), 1, - anon_sym_PIPE, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(612), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4057), 1, + sym_identifier, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, + anon_sym_LBRACE, + ACTIONS(4063), 1, + anon_sym_typeof, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, + anon_sym_LBRACK, + ACTIONS(4071), 1, + anon_sym_QMARK, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4091), 1, anon_sym_keyof, - ACTIONS(614), 1, + ACTIONS(4093), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + STATE(2700), 1, + sym_nested_type_identifier, + STATE(2852), 1, + sym__primary_type, + STATE(2929), 1, + sym__number, + STATE(2957), 1, + sym_string, + STATE(5238), 1, + sym_type_parameters, + STATE(5813), 1, + sym_formal_parameters, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5145), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2942), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [56653] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2076), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4286), 1, anon_sym_typeof, - ACTIONS(2078), 1, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(2086), 1, + ACTIONS(4290), 1, + anon_sym_QMARK, + ACTIONS(4292), 1, + anon_sym_AMP, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4298), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5432), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5216), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5805), 1, + STATE(5757), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4206), 7, + STATE(2299), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175597,7 +175721,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175611,75 +175735,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56871] = 32, + [56775] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1192), 1, + anon_sym_DQUOTE, + ACTIONS(1194), 1, + anon_sym_SQUOTE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3998), 1, + sym_identifier, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(4250), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(4258), 1, - anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_AMP, - ACTIONS(4264), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, + ACTIONS(4022), 1, sym_number, - ACTIONS(4280), 1, - anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, + ACTIONS(4024), 1, + sym_this, + ACTIONS(4032), 1, anon_sym_keyof, - ACTIONS(4288), 1, + ACTIONS(4034), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, + STATE(3173), 1, sym_nested_type_identifier, - STATE(4066), 1, - sym_string, - STATE(4078), 1, + STATE(3350), 1, sym__primary_type, - STATE(4080), 1, + STATE(3387), 1, sym__number, - STATE(5292), 1, + STATE(3407), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5625), 1, + STATE(5807), 1, sym_nested_identifier, - STATE(5704), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(4266), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(4026), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4073), 7, + STATE(5131), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175687,7 +175811,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175701,76 +175825,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [56993] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4426), 1, - anon_sym_EQ, - ACTIONS(4439), 1, - anon_sym_LT, - ACTIONS(4442), 1, - anon_sym_DOT, - ACTIONS(4445), 1, - anon_sym_EQ_GT, - ACTIONS(4605), 1, - anon_sym_LBRACE, - STATE(4958), 1, - sym_type_arguments, - ACTIONS(4587), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(3800), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [57073] = 32, + [56897] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -175779,25 +175834,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -175807,38 +175850,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4531), 1, + anon_sym_typeof, + ACTIONS(4533), 1, + anon_sym_new, + ACTIONS(4535), 1, + anon_sym_QMARK, + ACTIONS(4537), 1, + anon_sym_AMP, + ACTIONS(4539), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4545), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5316), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4140), 7, + STATE(4329), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175846,7 +175901,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175860,75 +175915,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57195] = 32, + [57019] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, - sym_identifier, - ACTIONS(4088), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, - anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4118), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(4122), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4140), 1, - anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(4148), 1, - anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(692), 1, anon_sym_keyof, - STATE(2733), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3864), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(3868), 1, sym__primary_type, - STATE(5443), 1, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5484), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2996), 7, + STATE(4734), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -175936,7 +175991,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -175950,145 +176005,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57317] = 12, + [57141] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(1634), 1, - anon_sym_EQ_GT, - ACTIONS(2278), 1, - anon_sym_extends, - ACTIONS(2957), 1, - anon_sym_QMARK, - ACTIONS(3856), 1, - anon_sym_LBRACK, - ACTIONS(4018), 1, - anon_sym_RPAREN, - ACTIONS(1623), 2, - anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3859), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(540), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_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, - [57399] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4152), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4154), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4156), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4158), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4160), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4162), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4164), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5350), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5502), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2645), 7, + STATE(4478), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176096,7 +176081,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176110,75 +176095,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57521] = 32, + [57263] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, + ACTIONS(4214), 1, + anon_sym_LBRACE, + ACTIONS(4216), 1, anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(4218), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(4220), 1, + anon_sym_LBRACK, + ACTIONS(4222), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(4224), 1, + anon_sym_QMARK, + ACTIONS(4226), 1, + anon_sym_AMP, + ACTIONS(4228), 1, + anon_sym_PIPE, + ACTIONS(4234), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(4236), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(4238), 1, sym_number, - ACTIONS(1874), 1, + ACTIONS(4244), 1, + anon_sym_readonly, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, + anon_sym_keyof, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4585), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3840), 1, + STATE(3999), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(4121), 1, sym__number, - STATE(3886), 1, + STATE(4122), 1, sym__primary_type, - STATE(3896), 1, + STATE(4125), 1, sym_string, - STATE(5228), 1, + STATE(5198), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4242), 2, + sym_true, + sym_false, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(4079), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176186,7 +176171,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176200,75 +176185,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57643] = 32, + [57385] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4112), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4118), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4122), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4140), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4148), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(2733), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(2176), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(2178), 1, sym__primary_type, - STATE(5443), 1, + STATE(2179), 1, + sym__number, + STATE(5289), 1, sym_type_parameters, - STATE(5484), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(4106), 2, + STATE(5540), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2985), 7, + STATE(2731), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176276,7 +176261,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176290,75 +176275,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57765] = 32, + [57507] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, - sym_identifier, - ACTIONS(4088), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, - anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4118), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(4122), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4140), 1, - anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(4148), 1, - anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(790), 1, anon_sym_keyof, - STATE(2733), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, + sym_this, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3864), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(3868), 1, sym__primary_type, - STATE(5443), 1, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5484), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2811), 7, + STATE(4292), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176366,7 +176351,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176380,14 +176365,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [57887] = 6, + [57629] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1926), 1, + ACTIONS(1938), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -176403,7 +176388,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, + ACTIONS(1672), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_LPAREN, @@ -176421,7 +176406,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -176444,75 +176429,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [57957] = 32, + [57699] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(4004), 1, + anon_sym_typeof, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4010), 1, + anon_sym_new, + ACTIONS(4012), 1, + anon_sym_QMARK, + ACTIONS(4014), 1, + anon_sym_AMP, + ACTIONS(4016), 1, + anon_sym_PIPE, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4024), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4028), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, + anon_sym_keyof, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3387), 1, sym__number, - STATE(3883), 1, + STATE(3395), 1, sym__primary_type, - STATE(3896), 1, + STATE(3407), 1, sym_string, - STATE(5228), 1, + STATE(5189), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5654), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5807), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5131), 7, + STATE(3253), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176520,7 +176505,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176534,75 +176519,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58079] = 32, + [57821] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, + ACTIONS(4134), 1, anon_sym_typeof, - ACTIONS(3986), 1, + ACTIONS(4136), 1, anon_sym_new, - ACTIONS(3988), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(3990), 1, + ACTIONS(4140), 1, anon_sym_AMP, - ACTIONS(3992), 1, + ACTIONS(4142), 1, anon_sym_PIPE, - ACTIONS(3994), 1, + ACTIONS(4144), 1, anon_sym_readonly, - ACTIONS(3996), 1, + ACTIONS(4146), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5207), 1, + STATE(5218), 1, sym_type_parameters, - STATE(5751), 1, + STATE(5469), 1, + sym_nested_identifier, + STATE(5761), 1, sym_formal_parameters, - STATE(5824), 1, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2226), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [57943] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4268), 1, + anon_sym_typeof, + ACTIONS(4272), 1, + anon_sym_QMARK, + ACTIONS(4280), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2179), 1, + sym__number, + STATE(2225), 1, + sym__primary_type, + STATE(5238), 1, + sym_type_parameters, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3639), 7, + STATE(5139), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176610,7 +176685,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176624,75 +176699,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58201] = 32, + [58065] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(3986), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(3988), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(3990), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(3992), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(3994), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(3996), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5207), 1, + STATE(5175), 1, sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5595), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3644), 7, + STATE(2226), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176700,7 +176775,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176714,7 +176789,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58323] = 32, + [58187] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -176727,15 +176802,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -176745,44 +176820,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4503), 1, + ACTIONS(4531), 1, anon_sym_typeof, - ACTIONS(4507), 1, + ACTIONS(4535), 1, anon_sym_QMARK, - ACTIONS(4517), 1, + ACTIONS(4545), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3883), 1, + STATE(3884), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5145), 7, + STATE(5155), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176790,7 +176865,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176804,7 +176879,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58445] = 32, + [58309] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -176813,13 +176888,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -176829,50 +176904,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(4831), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176880,7 +176955,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176894,75 +176969,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58567] = 32, + [58431] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4136), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4140), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4142), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4144), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4146), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5344), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5218), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4639), 7, + STATE(3562), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -176970,7 +177045,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -176984,75 +177059,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58689] = 32, + [58553] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4503), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, anon_sym_typeof, - ACTIONS(4507), 1, + ACTIONS(4150), 1, + anon_sym_new, + ACTIONS(4152), 1, anon_sym_QMARK, - ACTIONS(4517), 1, + ACTIONS(4154), 1, + anon_sym_AMP, + ACTIONS(4156), 1, + anon_sym_PIPE, + ACTIONS(4158), 1, + anon_sym_readonly, + ACTIONS(4160), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3895), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5228), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5239), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5724), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5145), 7, + STATE(2226), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177060,7 +177135,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177074,75 +177149,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58811] = 32, + [58675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(4326), 1, + anon_sym_EQ_GT, + ACTIONS(4470), 1, + anon_sym_EQ, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 17, + 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, + anon_sym_extends, + ACTIONS(3790), 22, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(1288), 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(1290), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 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, + [58745] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2124), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(2126), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(2134), 1, + ACTIONS(4272), 1, + anon_sym_QMARK, + ACTIONS(4274), 1, + anon_sym_AMP, + ACTIONS(4276), 1, + anon_sym_PIPE, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4280), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5409), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5175), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5595), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4699), 7, + STATE(3402), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177150,7 +177289,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177164,75 +177303,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [58933] = 32, + [58867] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(4134), 1, anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(4136), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(4140), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(4142), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4144), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(4146), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5444), 1, + STATE(5218), 1, sym_type_parameters, - STATE(5601), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3320), 7, + STATE(3554), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177240,7 +177379,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177254,7 +177393,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59055] = 32, + [58989] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -177271,13 +177410,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -177287,42 +177426,132 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2076), 1, + ACTIONS(2129), 1, anon_sym_typeof, - ACTIONS(2078), 1, + ACTIONS(2131), 1, anon_sym_new, - ACTIONS(2086), 1, + ACTIONS(2139), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, + STATE(3864), 1, + sym_string, + STATE(3868), 1, sym__primary_type, - STATE(3896), 1, + STATE(3869), 1, + sym__number, + STATE(5432), 1, + sym_type_parameters, + STATE(5667), 1, + sym_formal_parameters, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(4244), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [59111] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(576), 1, + anon_sym_QMARK, + ACTIONS(578), 1, + anon_sym_AMP, + ACTIONS(580), 1, + anon_sym_PIPE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(612), 1, + anon_sym_keyof, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2129), 1, + anon_sym_typeof, + ACTIONS(2131), 1, + anon_sym_new, + ACTIONS(2139), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, STATE(5432), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5667), 1, + sym_formal_parameters, + STATE(5716), 1, sym_nested_identifier, - STATE(5805), 1, - sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4165), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177330,7 +177559,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177344,75 +177573,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59177] = 32, + [59233] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4248), 1, - anon_sym_STAR, - ACTIONS(4250), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, + ACTIONS(2085), 1, anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4270), 1, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(4272), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4274), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(4286), 1, - anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, + ACTIONS(2109), 1, sym_this, - STATE(4001), 1, + ACTIONS(2113), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(4066), 1, + STATE(3954), 1, sym_string, - STATE(4080), 1, - sym__number, - STATE(4107), 1, + STATE(3959), 1, sym__primary_type, - STATE(5228), 1, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5625), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5103), 7, + STATE(4001), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177420,7 +177649,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177434,7 +177663,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59299] = 32, + [59355] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -177443,66 +177672,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4285), 7, + STATE(4907), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177510,7 +177739,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177524,7 +177753,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59421] = 32, + [59477] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -177533,66 +177762,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3869), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177600,7 +177829,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177614,75 +177843,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59543] = 32, + [59599] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5344), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5175), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5595), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4592), 7, + STATE(3435), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177690,7 +177919,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177704,75 +177933,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59665] = 32, + [59721] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(3986), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(3988), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(3990), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(3992), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(3994), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(3996), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5207), 1, + STATE(5175), 1, sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5595), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2328), 7, + STATE(3436), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177780,7 +178009,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177794,7 +178023,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59787] = 32, + [59843] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4372), 1, + anon_sym_EQ, + ACTIONS(4525), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(4575), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_implements, + ACTIONS(3794), 11, + anon_sym_as, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [59921] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -177803,13 +178100,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -177819,50 +178128,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(4808), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177870,7 +178167,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177884,75 +178181,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [59909] = 32, + [60043] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(1192), 1, + anon_sym_DQUOTE, + ACTIONS(1194), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(3998), 1, + sym_identifier, + ACTIONS(4000), 1, anon_sym_STAR, - ACTIONS(4250), 1, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(4006), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(4008), 1, anon_sym_LBRACK, - ACTIONS(4258), 1, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4264), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, + ACTIONS(4022), 1, sym_number, - ACTIONS(4280), 1, + ACTIONS(4024), 1, + sym_this, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4284), 1, + ACTIONS(4030), 1, anon_sym_infer, - ACTIONS(4286), 1, + ACTIONS(4032), 1, anon_sym_keyof, - ACTIONS(4288), 1, + ACTIONS(4034), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, + STATE(3173), 1, sym_nested_type_identifier, - STATE(4066), 1, - sym_string, - STATE(4078), 1, - sym__primary_type, - STATE(4080), 1, + STATE(3387), 1, sym__number, - STATE(5292), 1, + STATE(3395), 1, + sym__primary_type, + STATE(3407), 1, + sym_string, + STATE(5189), 1, sym_type_parameters, - STATE(5625), 1, - sym_nested_identifier, - STATE(5704), 1, + STATE(5654), 1, sym_formal_parameters, - ACTIONS(4266), 2, + STATE(5807), 1, + sym_nested_identifier, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(4026), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4101), 7, + STATE(3491), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -177960,7 +178257,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -177974,75 +178271,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60031] = 32, + [60165] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(3960), 1, + sym_identifier, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4250), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4258), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4162), 1, + anon_sym_typeof, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4264), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, - sym_number, - ACTIONS(4280), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, + ACTIONS(4174), 1, anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(4066), 1, - sym_string, - STATE(4078), 1, - sym__primary_type, - STATE(4080), 1, + STATE(2458), 1, sym__number, - STATE(5292), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5167), 1, sym_type_parameters, - STATE(5625), 1, - sym_nested_identifier, - STATE(5704), 1, + STATE(5694), 1, sym_formal_parameters, - ACTIONS(4266), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4113), 7, + STATE(3243), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178050,7 +178347,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178064,7 +178361,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60153] = 32, + [60287] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -178073,13 +178370,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -178089,50 +178386,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(4779), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178140,7 +178437,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178154,165 +178451,144 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60275] = 32, + [60409] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(4248), 1, - anon_sym_STAR, - ACTIONS(4250), 1, - anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, - anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4571), 1, + anon_sym_EQ_GT, + ACTIONS(4600), 1, + anon_sym_EQ, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4258), 1, - anon_sym_new, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(4264), 1, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, - sym_number, - ACTIONS(4280), 1, - anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, - anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, - sym_nested_type_identifier, - STATE(4066), 1, - sym_string, - STATE(4078), 1, - sym__primary_type, - STATE(4080), 1, - sym__number, - STATE(5292), 1, - sym_type_parameters, - STATE(5625), 1, - sym_nested_identifier, - STATE(5704), 1, - sym_formal_parameters, - ACTIONS(4266), 2, + ACTIONS(3794), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, - ACTIONS(4278), 2, - sym_true, - sym_false, - ACTIONS(4268), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4118), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4071), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [60397] = 32, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [60489] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5344), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5262), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4584), 7, + STATE(4679), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178320,7 +178596,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178334,75 +178610,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60519] = 32, + [60611] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4248), 1, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4250), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, + ACTIONS(3905), 1, sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, ACTIONS(4286), 1, - anon_sym_keyof, + anon_sym_typeof, ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, + anon_sym_new, + ACTIONS(4290), 1, + anon_sym_QMARK, + ACTIONS(4292), 1, + anon_sym_AMP, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, + anon_sym_readonly, + ACTIONS(4298), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(4066), 1, + STATE(2176), 1, sym_string, - STATE(4080), 1, - sym__number, - STATE(4120), 1, + STATE(2178), 1, sym__primary_type, - STATE(5228), 1, + STATE(2179), 1, + sym__number, + STATE(5216), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5625), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(4266), 2, + STATE(5757), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5103), 7, + STATE(3449), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178410,7 +178686,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178424,7 +178700,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60641] = 32, + [60733] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -178433,21 +178709,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -178463,36 +178739,36 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(4389), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178500,7 +178776,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178514,75 +178790,142 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60763] = 32, + [60855] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(1990), 1, + anon_sym_EQ, + ACTIONS(1992), 1, + anon_sym_EQ_GT, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(2294), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 14, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 19, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + anon_sym_SLASH, + anon_sym_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, + [60931] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, - anon_sym_typeof, - ACTIONS(4168), 1, - anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(4176), 1, - anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(790), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, + ACTIONS(1894), 1, + sym_this, + ACTIONS(1896), 1, + anon_sym_readonly, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5444), 1, + STATE(5244), 1, sym_type_parameters, - STATE(5601), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2339), 7, + STATE(4310), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178590,7 +178933,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178604,75 +178947,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [60885] = 32, + [61053] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(1908), 1, + anon_sym_EQ, + ACTIONS(1910), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 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(1655), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 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, + [61123] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(3918), 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(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, - anon_sym_typeof, - ACTIONS(3986), 1, - anon_sym_new, - ACTIONS(3988), 1, - anon_sym_QMARK, - ACTIONS(3990), 1, - anon_sym_AMP, - ACTIONS(3992), 1, - anon_sym_PIPE, - ACTIONS(3994), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(3996), 1, - anon_sym_keyof, - STATE(2162), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3954), 1, sym_string, - STATE(2181), 1, + STATE(3959), 1, sym__primary_type, - STATE(2182), 1, + STATE(3960), 1, sym__number, - STATE(5207), 1, + STATE(5242), 1, sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3563), 7, + STATE(3973), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178680,7 +179087,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178694,75 +179101,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61007] = 32, + [61245] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3954), 1, sym_string, - STATE(2181), 1, + STATE(3959), 1, sym__primary_type, - STATE(2182), 1, + STATE(3960), 1, sym__number, - STATE(5444), 1, + STATE(5262), 1, sym_type_parameters, - STATE(5601), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2328), 7, + STATE(3948), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178770,7 +179177,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178784,75 +179191,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61129] = 32, + [61367] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(4326), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 17, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(3924), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3790), 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, + [61437] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, - anon_sym_typeof, - ACTIONS(3986), 1, - anon_sym_new, - ACTIONS(3988), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(3990), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(3992), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(3994), 1, - anon_sym_readonly, - ACTIONS(3996), 1, + ACTIONS(692), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5207), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2296), 7, + STATE(4790), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178860,7 +179331,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178874,75 +179345,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61251] = 32, + [61559] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4094), 1, + ACTIONS(4063), 1, + anon_sym_typeof, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4138), 1, - anon_sym_typeof, - ACTIONS(4140), 1, + ACTIONS(4069), 1, anon_sym_new, - ACTIONS(4142), 1, + ACTIONS(4071), 1, anon_sym_QMARK, - ACTIONS(4144), 1, + ACTIONS(4073), 1, anon_sym_AMP, - ACTIONS(4146), 1, + ACTIONS(4075), 1, anon_sym_PIPE, - ACTIONS(4148), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4087), 1, anon_sym_readonly, - ACTIONS(4150), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, anon_sym_keyof, - STATE(2733), 1, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, + STATE(2929), 1, sym__number, - STATE(2884), 1, + STATE(2934), 1, sym__primary_type, - STATE(5443), 1, + STATE(2957), 1, + sym_string, + STATE(5161), 1, sym_type_parameters, - STATE(5484), 1, + STATE(5490), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2812), 7, + STATE(2813), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -178950,7 +179421,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -178964,75 +179435,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61373] = 32, + [61681] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1638), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(3988), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(3996), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(2229), 1, + STATE(3879), 1, sym__primary_type, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5105), 7, + STATE(5156), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179040,7 +179511,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179054,75 +179525,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61495] = 32, + [61803] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3928), 1, - anon_sym_QMARK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3948), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4531), 1, + anon_sym_typeof, + ACTIONS(4533), 1, + anon_sym_new, + ACTIONS(4535), 1, + anon_sym_QMARK, + ACTIONS(4537), 1, + anon_sym_AMP, + ACTIONS(4539), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, + anon_sym_readonly, + ACTIONS(4545), 1, anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2182), 1, - sym__number, - STATE(2222), 1, + STATE(3868), 1, sym__primary_type, - STATE(5228), 1, + STATE(3869), 1, + sym__number, + STATE(5316), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5125), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179130,7 +179601,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179144,75 +179615,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61617] = 32, + [61925] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(3986), 1, - anon_sym_new, - ACTIONS(3988), 1, - anon_sym_QMARK, - ACTIONS(3990), 1, - anon_sym_AMP, - ACTIONS(3992), 1, - anon_sym_PIPE, - ACTIONS(3994), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(3996), 1, - anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5207), 1, + STATE(3879), 1, + sym__primary_type, + STATE(5238), 1, sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3643), 7, + STATE(5149), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179220,7 +179691,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179234,75 +179705,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61739] = 32, + [62047] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1880), 1, + ACTIONS(2109), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1886), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(1894), 1, - sym_this, - ACTIONS(1896), 1, + ACTIONS(4388), 1, + anon_sym_QMARK, + ACTIONS(4390), 1, + anon_sym_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4398), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5255), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5262), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4410), 7, + STATE(4711), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179310,7 +179781,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179324,75 +179795,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61861] = 32, + [62169] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(3928), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(3932), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3944), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(4366), 1, anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5186), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5469), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2223), 7, + STATE(4771), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179400,7 +179871,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179414,75 +179885,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [61983] = 32, + [62291] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_new, - ACTIONS(3928), 1, - anon_sym_QMARK, - ACTIONS(3930), 1, - anon_sym_AMP, - ACTIONS(3932), 1, - anon_sym_PIPE, - ACTIONS(3938), 1, + ACTIONS(4081), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(3944), 1, - anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, - anon_sym_keyof, - ACTIONS(3950), 1, + ACTIONS(4093), 1, anon_sym_LBRACE_PIPE, - STATE(2162), 1, + ACTIONS(4196), 1, + anon_sym_typeof, + ACTIONS(4200), 1, + anon_sym_QMARK, + ACTIONS(4208), 1, + anon_sym_keyof, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, + STATE(2842), 1, sym__primary_type, - STATE(2182), 1, + STATE(2929), 1, sym__number, - STATE(5186), 1, + STATE(2957), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5469), 1, + STATE(5813), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3531), 7, + STATE(5142), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179490,7 +179961,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179504,139 +179975,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62105] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3843), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 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(3796), 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, - [62175] = 32, + [62413] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3840), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, + anon_sym_typeof, + ACTIONS(4138), 1, + anon_sym_QMARK, + ACTIONS(4146), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2176), 1, + sym_string, + STATE(2179), 1, sym__number, - STATE(3886), 1, + STATE(2232), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4836), 7, + STATE(5130), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179644,7 +180051,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179658,7 +180065,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62297] = 32, + [62535] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -179667,66 +180074,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4366), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3884), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5255), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4348), 7, + STATE(5156), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179734,7 +180141,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179748,75 +180155,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62419] = 32, + [62657] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(4168), 1, - anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4172), 1, - anon_sym_AMP, - ACTIONS(4174), 1, - anon_sym_PIPE, - ACTIONS(4176), 1, - anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5444), 1, + STATE(2232), 1, + sym__primary_type, + STATE(5238), 1, sym_type_parameters, - STATE(5601), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3336), 7, + STATE(5139), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179824,7 +180231,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179838,139 +180245,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62541] = 6, + [62779] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1922), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - 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, - anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(540), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 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(674), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(676), 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, - [62611] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, - anon_sym_typeof, - ACTIONS(3986), 1, - anon_sym_new, - ACTIONS(3988), 1, - anon_sym_QMARK, - ACTIONS(3990), 1, - anon_sym_AMP, - ACTIONS(3992), 1, - anon_sym_PIPE, - ACTIONS(3994), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(3996), 1, - anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5207), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3632), 7, + STATE(4751), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -179978,7 +180321,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -179992,75 +180335,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62733] = 32, + [62901] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5444), 1, + STATE(5175), 1, sym_type_parameters, - STATE(5601), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5595), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2296), 7, + STATE(2299), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180068,7 +180411,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180082,75 +180425,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62855] = 32, + [63023] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(3918), 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(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, - anon_sym_typeof, - ACTIONS(3986), 1, - anon_sym_new, - ACTIONS(3988), 1, - anon_sym_QMARK, - ACTIONS(3990), 1, - anon_sym_AMP, - ACTIONS(3992), 1, - anon_sym_PIPE, - ACTIONS(3994), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(3996), 1, - anon_sym_keyof, - STATE(2162), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3954), 1, sym_string, - STATE(2181), 1, + STATE(3959), 1, sym__primary_type, - STATE(2182), 1, + STATE(3960), 1, sym__number, - STATE(5207), 1, + STATE(5242), 1, sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2223), 7, + STATE(3926), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180158,7 +180501,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180172,139 +180515,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [62977] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1922), 1, - anon_sym_EQ_GT, - ACTIONS(2072), 1, - anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - 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, - anon_sym_extends, - ACTIONS(1619), 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, - [63047] = 32, + [63145] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(734), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4476), 1, + anon_sym_typeof, + ACTIONS(4478), 1, + anon_sym_new, + ACTIONS(4480), 1, + anon_sym_QMARK, + ACTIONS(4482), 1, + anon_sym_AMP, + ACTIONS(4484), 1, + anon_sym_PIPE, + ACTIONS(4488), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4490), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5228), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5453), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5783), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4845), 7, + STATE(4101), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180312,7 +180591,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180326,139 +180605,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63169] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1916), 1, - anon_sym_EQ, - ACTIONS(1918), 1, - anon_sym_EQ_GT, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 17, - 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, - anon_sym_extends, - ACTIONS(1619), 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, - [63239] = 32, + [63267] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, - anon_sym_new, - ACTIONS(3928), 1, - anon_sym_QMARK, - ACTIONS(3930), 1, - anon_sym_AMP, - ACTIONS(3932), 1, - anon_sym_PIPE, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3944), 1, - anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, - anon_sym_keyof, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - STATE(2162), 1, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4152), 1, + anon_sym_QMARK, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5186), 1, + STATE(2225), 1, + sym__primary_type, + STATE(5238), 1, sym_type_parameters, STATE(5469), 1, - sym_formal_parameters, - STATE(5824), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3506), 7, + STATE(5127), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180466,7 +180681,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180480,75 +180695,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63361] = 32, + [63389] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3928), 1, - anon_sym_QMARK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3948), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, + anon_sym_new, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, + anon_sym_readonly, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2182), 1, - sym__number, - STATE(2229), 1, + STATE(3868), 1, sym__primary_type, - STATE(5228), 1, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5125), 7, + STATE(4741), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180556,7 +180771,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180570,75 +180785,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63483] = 32, + [63511] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3950), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(3988), 1, + ACTIONS(4256), 1, + anon_sym_new, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(3996), 1, + ACTIONS(4260), 1, + anon_sym_AMP, + ACTIONS(4262), 1, + anon_sym_PIPE, + ACTIONS(4264), 1, + anon_sym_readonly, + ACTIONS(4266), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2182), 1, - sym__number, - STATE(2222), 1, + STATE(2178), 1, sym__primary_type, - STATE(5228), 1, + STATE(2179), 1, + sym__number, + STATE(5191), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5105), 7, + STATE(3517), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180646,7 +180861,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180660,75 +180875,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63605] = 32, + [63633] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4256), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4260), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4262), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4264), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4266), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(2176), 1, sym_string, - STATE(3954), 1, + STATE(2178), 1, sym__primary_type, - STATE(3963), 1, + STATE(2179), 1, sym__number, - STATE(5188), 1, + STATE(5191), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4495), 7, + STATE(2226), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180736,7 +180951,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180750,75 +180965,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63727] = 32, + [63755] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4095), 1, + anon_sym_typeof, + ACTIONS(4097), 1, anon_sym_new, - ACTIONS(3928), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(3932), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3944), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(4107), 1, anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(5186), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5194), 1, sym_type_parameters, - STATE(5469), 1, + STATE(5663), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2296), 7, + STATE(2704), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180826,7 +181041,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180840,75 +181055,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63849] = 32, + [63877] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(81), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(83), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4182), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4184), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4186), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4190), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4192), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4206), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4208), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4214), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(4218), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4224), 1, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(4226), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(4228), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4230), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(4232), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(4234), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(4236), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(2380), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2405), 1, - sym__number, - STATE(2406), 1, - sym__primary_type, - STATE(2410), 1, + STATE(2176), 1, sym_string, - STATE(5439), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5175), 1, sym_type_parameters, - STATE(5475), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5530), 1, + STATE(5595), 1, sym_formal_parameters, - ACTIONS(4202), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4210), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4204), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2671), 7, + STATE(3482), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -180916,7 +181131,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2408), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -180930,7 +181145,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [63971] = 32, + [63999] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -180939,21 +181154,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -180969,36 +181184,36 @@ static uint16_t ts_small_parse_table[] = { sym_this, ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4334), 7, + STATE(4425), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181006,7 +181221,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181020,75 +181235,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64093] = 32, + [64121] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4150), 1, + anon_sym_new, + ACTIONS(4152), 1, + anon_sym_QMARK, + ACTIONS(4154), 1, + anon_sym_AMP, + ACTIONS(4156), 1, + anon_sym_PIPE, + ACTIONS(4158), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5228), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5239), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5724), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4758), 7, + STATE(2165), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181096,7 +181311,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181110,75 +181325,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64215] = 32, + [64243] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4256), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4258), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4260), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4262), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4264), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4266), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5344), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5191), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5745), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4870), 7, + STATE(3551), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181186,7 +181401,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181200,75 +181415,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64337] = 32, + [64365] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4286), 1, + anon_sym_typeof, + ACTIONS(4288), 1, + anon_sym_new, + ACTIONS(4290), 1, + anon_sym_QMARK, + ACTIONS(4292), 1, + anon_sym_AMP, + ACTIONS(4294), 1, + anon_sym_PIPE, + ACTIONS(4296), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4298), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5228), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5216), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5757), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4820), 7, + STATE(3301), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181276,7 +181491,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181290,7 +181505,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64459] = 32, + [64487] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -181299,25 +181514,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -181327,38 +181530,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4114), 1, + anon_sym_typeof, + ACTIONS(4116), 1, + anon_sym_new, + ACTIONS(4118), 1, + anon_sym_QMARK, + ACTIONS(4120), 1, + anon_sym_AMP, + ACTIONS(4122), 1, + anon_sym_PIPE, + ACTIONS(4126), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4130), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5363), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5610), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4821), 7, + STATE(4650), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181366,7 +181581,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181380,75 +181595,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64581] = 32, + [64609] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, + ACTIONS(714), 1, anon_sym_QMARK, - ACTIONS(1288), 1, + ACTIONS(716), 1, anon_sym_AMP, - ACTIONS(1290), 1, + ACTIONS(718), 1, anon_sym_PIPE, - ACTIONS(1304), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(736), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3954), 1, sym_string, - STATE(5409), 1, + STATE(3959), 1, + sym__primary_type, + STATE(3960), 1, + sym__number, + STATE(5242), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5719), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4720), 7, + STATE(3941), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181456,7 +181671,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181470,75 +181685,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64703] = 32, + [64731] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4126), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4130), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5247), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5714), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3421), 7, + STATE(4739), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181546,7 +181761,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181560,75 +181775,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64825] = 32, + [64853] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4150), 1, + anon_sym_new, + ACTIONS(4152), 1, + anon_sym_QMARK, + ACTIONS(4154), 1, + anon_sym_AMP, + ACTIONS(4156), 1, + anon_sym_PIPE, + ACTIONS(4158), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3883), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5228), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5239), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5724), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4917), 7, + STATE(3275), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181636,7 +181851,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181650,7 +181865,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [64947] = 32, + [64975] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -181659,66 +181874,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(4793), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181726,7 +181941,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181740,7 +181955,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65069] = 32, + [65097] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -181749,66 +181964,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4393), 7, + STATE(4564), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181816,7 +182031,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181830,141 +182045,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65191] = 8, + [65219] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1920), 1, - anon_sym_EQ, - ACTIONS(1922), 1, - anon_sym_EQ_GT, - ACTIONS(3856), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, anon_sym_AMP, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1636), 14, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 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, - [65265] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(3966), 1, + anon_sym_typeof, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3974), 1, + anon_sym_QMARK, + ACTIONS(3984), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4481), 1, - anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4493), 1, - anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(3994), 1, anon_sym_keyof, - STATE(3890), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3954), 1, + STATE(2395), 1, sym__primary_type, - STATE(3963), 1, + STATE(2458), 1, sym__number, - STATE(5188), 1, + STATE(2466), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5769), 1, + STATE(5813), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3967), 7, + STATE(5121), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -181972,7 +182121,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -181986,7 +182135,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65387] = 32, + [65341] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -181995,66 +182144,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4412), 7, + STATE(4845), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182062,7 +182211,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182076,75 +182225,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65509] = 32, + [65463] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3840), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4254), 1, + anon_sym_typeof, + ACTIONS(4258), 1, + anon_sym_QMARK, + ACTIONS(4266), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2176), 1, + sym_string, + STATE(2179), 1, sym__number, - STATE(3886), 1, + STATE(2225), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4813), 7, + STATE(5144), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182152,7 +182301,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182166,75 +182315,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65631] = 32, + [65585] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, - ACTIONS(1882), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4150), 1, + anon_sym_new, + ACTIONS(4152), 1, + anon_sym_QMARK, + ACTIONS(4154), 1, + anon_sym_AMP, + ACTIONS(4156), 1, + anon_sym_PIPE, + ACTIONS(4158), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3895), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5228), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5239), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5724), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4917), 7, + STATE(3442), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182242,7 +182391,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182256,25 +182405,36 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65753] = 9, + [65707] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(4282), 1, anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 15, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 18, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -182285,7 +182445,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(3790), 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, + [65775] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1954), 1, + anon_sym_EQ_GT, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -182301,10 +182491,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(1672), 17, + 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, + anon_sym_extends, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -182323,7 +182532,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [65829] = 32, + [65845] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -182340,17 +182549,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1626), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -182360,38 +182569,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4784), 7, + STATE(4810), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182399,7 +182608,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182413,140 +182622,255 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [65951] = 7, + [65967] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2688), 1, - anon_sym_COLON, - ACTIONS(3843), 1, - anon_sym_EQ_GT, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3891), 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(3796), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4148), 1, + anon_sym_typeof, + ACTIONS(4150), 1, + anon_sym_new, + ACTIONS(4152), 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(4154), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4156), 1, anon_sym_PIPE, + ACTIONS(4158), 1, + anon_sym_readonly, + ACTIONS(4160), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5239), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5724), 1, + sym_formal_parameters, + ACTIONS(3901), 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, - [66023] = 32, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2299), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [66089] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(698), 1, + anon_sym_STAR, + ACTIONS(714), 1, + anon_sym_QMARK, + ACTIONS(736), 1, + anon_sym_keyof, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, + anon_sym_LPAREN, + ACTIONS(2089), 1, + anon_sym_LBRACK, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, + sym_number, + ACTIONS(2109), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3885), 1, + sym_nested_type_identifier, + STATE(3942), 1, + sym__primary_type, + STATE(3954), 1, + sym_string, + STATE(3960), 1, + sym__number, + STATE(5238), 1, + sym_type_parameters, + STATE(5671), 1, + sym_nested_identifier, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(2111), 2, + sym_true, + sym_false, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(5123), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3956), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [66211] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(4250), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4258), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, + sym_number, + ACTIONS(2109), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4476), 1, + anon_sym_typeof, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4482), 1, anon_sym_AMP, - ACTIONS(4264), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, - sym_number, - ACTIONS(4280), 1, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, + ACTIONS(4490), 1, anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(4066), 1, + STATE(3954), 1, sym_string, - STATE(4078), 1, + STATE(3959), 1, sym__primary_type, - STATE(4080), 1, + STATE(3960), 1, sym__number, - STATE(5292), 1, + STATE(5453), 1, sym_type_parameters, - STATE(5625), 1, + STATE(5671), 1, sym_nested_identifier, - STATE(5704), 1, + STATE(5783), 1, sym_formal_parameters, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4070), 7, + STATE(4181), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182554,7 +182878,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182568,140 +182892,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66145] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1908), 1, - anon_sym_EQ, - ACTIONS(1910), 1, - anon_sym_EQ_GT, - ACTIONS(2688), 1, - anon_sym_COLON, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 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(1619), 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, - [66217] = 32, + [66333] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4250), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4258), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4268), 1, + anon_sym_typeof, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(4264), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, - sym_number, - ACTIONS(4280), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, + ACTIONS(4280), 1, anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(4066), 1, + STATE(2176), 1, sym_string, - STATE(4078), 1, + STATE(2178), 1, sym__primary_type, - STATE(4080), 1, + STATE(2179), 1, sym__number, - STATE(5292), 1, + STATE(5175), 1, sym_type_parameters, - STATE(5625), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5704), 1, + STATE(5595), 1, sym_formal_parameters, - ACTIONS(4266), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4074), 7, + STATE(2302), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182709,7 +182968,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182723,7 +182982,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66339] = 32, + [66455] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -182732,21 +182991,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(1288), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(1290), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1304), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -182756,42 +183019,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5409), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4182), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182799,7 +183058,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182813,75 +183072,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66461] = 32, + [66577] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, + anon_sym_typeof, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(3928), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(3932), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3944), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(4208), 1, anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2929), 1, sym__number, - STATE(5186), 1, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5183), 1, sym_type_parameters, - STATE(5469), 1, + STATE(5738), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3538), 7, + STATE(3191), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182889,7 +183148,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182903,12 +183162,12 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66583] = 32, + [66699] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, ACTIONS(610), 1, anon_sym_infer, @@ -182916,62 +183175,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(3950), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(4162), 1, anon_sym_typeof, - ACTIONS(4170), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4178), 1, + ACTIONS(4174), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2182), 1, - sym__number, - STATE(2229), 1, + STATE(2404), 1, sym__primary_type, - STATE(5228), 1, + STATE(2458), 1, + sym__number, + STATE(2466), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5813), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5088), 7, + STATE(5135), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -182979,7 +183238,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -182993,139 +183252,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66705] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4386), 1, - anon_sym_EQ, - ACTIONS(4388), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, - 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, - anon_sym_extends, - ACTIONS(3796), 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, - [66775] = 32, + [66821] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(4162), 1, anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(4174), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(5444), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5167), 1, sym_type_parameters, - STATE(5601), 1, + STATE(5694), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3357), 7, + STATE(2402), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183133,7 +183328,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183147,7 +183342,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [66897] = 32, + [66943] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -183156,13 +183351,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -183172,50 +183379,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, - anon_sym_typeof, - ACTIONS(4505), 1, - anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4843), 7, + STATE(4913), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183223,7 +183418,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183237,7 +183432,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67019] = 32, + [67065] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -183246,66 +183441,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4353), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183313,7 +183508,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183327,75 +183522,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67141] = 32, + [67187] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1912), 1, + anon_sym_EQ, + ACTIONS(1914), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 17, + 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, + anon_sym_extends, + ACTIONS(1655), 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, + [67257] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, - anon_sym_typeof, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4286), 1, + anon_sym_typeof, + ACTIONS(4288), 1, anon_sym_new, - ACTIONS(3928), 1, + ACTIONS(4290), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(4292), 1, anon_sym_AMP, - ACTIONS(3932), 1, + ACTIONS(4294), 1, anon_sym_PIPE, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3944), 1, + ACTIONS(4296), 1, anon_sym_readonly, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(4298), 1, anon_sym_keyof, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5186), 1, + STATE(5216), 1, sym_type_parameters, STATE(5469), 1, - sym_formal_parameters, - STATE(5824), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5757), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2328), 7, + STATE(2302), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183403,7 +183662,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183417,7 +183676,71 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67263] = 32, + [67379] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3841), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 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(3790), 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, + [67449] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -183426,66 +183749,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(1346), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(1348), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(1350), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(1364), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3869), 7, + STATE(4170), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183493,7 +183816,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183507,75 +183830,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67385] = 32, + [67571] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4476), 1, anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(4482), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(4490), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3954), 1, sym_string, - STATE(2181), 1, + STATE(3959), 1, sym__primary_type, - STATE(2182), 1, + STATE(3960), 1, sym__number, - STATE(5444), 1, + STATE(5453), 1, sym_type_parameters, - STATE(5601), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5783), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3363), 7, + STATE(3926), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183583,7 +183906,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183597,74 +183920,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67507] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4595), 1, - anon_sym_EQ_GT, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(3800), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [67583] = 32, + [67693] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -183673,25 +183929,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(1346), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(1348), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(1350), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(1364), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -183701,38 +183953,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4899), 7, + STATE(4194), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183740,7 +183996,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183754,7 +184010,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67705] = 32, + [67815] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -183763,66 +184019,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, + ACTIONS(1346), 1, anon_sym_QMARK, - ACTIONS(774), 1, + ACTIONS(1348), 1, anon_sym_AMP, - ACTIONS(776), 1, + ACTIONS(1350), 1, anon_sym_PIPE, - ACTIONS(798), 1, + ACTIONS(1364), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, + ACTIONS(2161), 1, + anon_sym_typeof, + ACTIONS(2163), 1, + anon_sym_new, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, - STATE(5705), 1, + STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4313), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183830,7 +184086,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183844,7 +184100,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67827] = 32, + [67937] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -183853,13 +184109,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(672), 1, + anon_sym_QMARK, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -183869,50 +184137,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4370), 1, - anon_sym_typeof, - ACTIONS(4372), 1, - anon_sym_new, - ACTIONS(4374), 1, - anon_sym_QMARK, - ACTIONS(4376), 1, - anon_sym_AMP, - ACTIONS(4378), 1, - anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4384), 1, - anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5309), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5737), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4416), 7, + STATE(4256), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -183920,7 +184176,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -183934,75 +184190,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [67949] = 32, + [68059] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(4300), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 17, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3790), 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, + [68129] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4168), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4170), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4172), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4174), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4176), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4178), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5444), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5601), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2223), 7, + STATE(4860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184010,7 +184330,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184024,7 +184344,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68071] = 32, + [68251] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -184033,66 +184353,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(772), 1, - anon_sym_QMARK, - ACTIONS(774), 1, - anon_sym_AMP, - ACTIONS(776), 1, - anon_sym_PIPE, - ACTIONS(798), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(1880), 1, - anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(1886), 1, - anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(1896), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5255), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5705), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4483), 7, + STATE(4785), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184100,7 +184420,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184114,75 +184434,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68193] = 32, + [68373] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, + ACTIONS(3966), 1, anon_sym_typeof, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3972), 1, anon_sym_new, - ACTIONS(3928), 1, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(3976), 1, anon_sym_AMP, - ACTIONS(3932), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(3944), 1, + ACTIONS(3990), 1, anon_sym_readonly, - ACTIONS(3946), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(3994), 1, anon_sym_keyof, - ACTIONS(3950), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(5186), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5457), 1, sym_type_parameters, - STATE(5469), 1, + STATE(5527), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2339), 7, + STATE(3529), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184190,7 +184510,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184204,75 +184524,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68315] = 32, + [68495] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3966), 1, + anon_sym_typeof, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3972), 1, + anon_sym_new, + ACTIONS(3974), 1, + anon_sym_QMARK, + ACTIONS(3976), 1, + anon_sym_AMP, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3984), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4166), 1, - anon_sym_typeof, - ACTIONS(4170), 1, - anon_sym_QMARK, - ACTIONS(4178), 1, + ACTIONS(3990), 1, + anon_sym_readonly, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3994), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(2222), 1, + STATE(2459), 1, sym__primary_type, - STATE(5228), 1, + STATE(2466), 1, + sym_string, + STATE(5457), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5527), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5088), 7, + STATE(3508), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184280,7 +184600,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184294,7 +184614,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68437] = 32, + [68617] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -184303,19 +184623,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -184325,44 +184639,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4370), 1, + ACTIONS(4531), 1, anon_sym_typeof, - ACTIONS(4374), 1, + ACTIONS(4533), 1, + anon_sym_new, + ACTIONS(4535), 1, anon_sym_QMARK, - ACTIONS(4384), 1, + ACTIONS(4537), 1, + anon_sym_AMP, + ACTIONS(4539), 1, + anon_sym_PIPE, + ACTIONS(4543), 1, + anon_sym_readonly, + ACTIONS(4545), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3883), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5316), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5024), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184370,7 +184690,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184384,7 +184704,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68559] = 32, + [68739] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -184393,13 +184713,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1348), 1, + anon_sym_AMP, + ACTIONS(1350), 1, + anon_sym_PIPE, + ACTIONS(1364), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -184409,50 +184737,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(2163), 1, anon_sym_new, - ACTIONS(4507), 1, - anon_sym_QMARK, - ACTIONS(4509), 1, - anon_sym_AMP, - ACTIONS(4511), 1, - anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(2171), 1, anon_sym_readonly, - ACTIONS(4517), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5404), 1, sym_type_parameters, - STATE(5646), 1, + STATE(5483), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4678), 7, + STATE(4696), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184460,7 +184780,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184474,7 +184794,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68681] = 32, + [68861] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -184483,13 +184803,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -184499,50 +184819,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4370), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4374), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4376), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4378), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4384), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5309), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5737), 1, + STATE(5810), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3884), 7, + STATE(4866), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184550,7 +184870,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184564,7 +184884,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68803] = 32, + [68983] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -184573,21 +184893,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, - anon_sym_AMP, - ACTIONS(1290), 1, - anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -184597,42 +184909,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2124), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(2126), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(2134), 1, + ACTIONS(4314), 1, + anon_sym_QMARK, + ACTIONS(4316), 1, + anon_sym_AMP, + ACTIONS(4318), 1, + anon_sym_PIPE, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4324), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5409), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5266), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5735), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4337), 7, + STATE(4212), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184640,7 +184960,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184654,7 +184974,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [68925] = 32, + [69105] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -184663,13 +184983,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -184679,50 +184999,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4370), 1, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(4116), 1, anon_sym_new, - ACTIONS(4374), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4376), 1, + ACTIONS(4120), 1, anon_sym_AMP, - ACTIONS(4378), 1, + ACTIONS(4122), 1, anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(4126), 1, anon_sym_readonly, - ACTIONS(4384), 1, + ACTIONS(4130), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5309), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5363), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5737), 1, + STATE(5610), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4157), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184730,7 +185050,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184744,75 +185064,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69047] = 32, + [69227] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4370), 1, + ACTIONS(3966), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_LBRACK, + ACTIONS(3972), 1, anon_sym_new, - ACTIONS(4374), 1, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(4376), 1, + ACTIONS(3976), 1, anon_sym_AMP, - ACTIONS(4378), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3990), 1, anon_sym_readonly, - ACTIONS(4384), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3994), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5309), 1, + STATE(5457), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5737), 1, + STATE(5527), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4155), 7, + STATE(2402), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184820,7 +185140,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184834,7 +185154,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69169] = 32, + [69349] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -184843,19 +185163,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -184865,44 +185179,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4370), 1, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4374), 1, + ACTIONS(4334), 1, + anon_sym_new, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4384), 1, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, + anon_sym_readonly, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3895), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5024), 7, + STATE(4627), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -184910,7 +185230,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -184924,137 +185244,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69291] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4595), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [69367] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4220), 1, - anon_sym_EQ, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3796), 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, - [69435] = 32, + [69471] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(610), 1, @@ -185067,62 +185257,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4481), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4485), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4495), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3958), 1, + STATE(3942), 1, sym__primary_type, - STATE(3963), 1, + STATE(3954), 1, + sym_string, + STATE(3960), 1, sym__number, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5067), 7, + STATE(5105), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185130,7 +185320,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185144,7 +185334,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69557] = 32, + [69593] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -185153,66 +185343,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5188), 1, + STATE(5262), 1, sym_type_parameters, - STATE(5769), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3956), 7, + STATE(3941), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185220,7 +185410,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185234,7 +185424,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69679] = 32, + [69715] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -185243,66 +185433,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5188), 1, + STATE(5262), 1, sym_type_parameters, - STATE(5769), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4301), 7, + STATE(4362), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185310,7 +185500,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185324,75 +185514,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69801] = 32, + [69837] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3966), 1, + anon_sym_typeof, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, - anon_sym_typeof, - ACTIONS(4126), 1, + ACTIONS(3972), 1, anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(4130), 1, + ACTIONS(3976), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3990), 1, anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3994), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(5247), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5457), 1, sym_type_parameters, - STATE(5714), 1, + STATE(5527), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3466), 7, + STATE(2514), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185400,7 +185590,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185414,75 +185604,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [69923] = 32, + [69959] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4531), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4533), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4535), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4537), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4539), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4543), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4545), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5316), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5768), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4698), 7, + STATE(4172), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185490,7 +185680,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185504,75 +185694,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70045] = 32, + [70081] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 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(1996), 1, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(2002), 1, + ACTIONS(4063), 1, anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(2008), 1, + ACTIONS(4069), 1, anon_sym_new, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(4071), 1, + anon_sym_QMARK, + ACTIONS(4073), 1, + anon_sym_AMP, + ACTIONS(4075), 1, + anon_sym_PIPE, + ACTIONS(4081), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(2030), 1, + ACTIONS(4087), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3890), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4091), 1, + anon_sym_keyof, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3954), 1, - sym__primary_type, - STATE(3963), 1, + STATE(2929), 1, sym__number, - STATE(5251), 1, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5161), 1, sym_type_parameters, - STATE(5709), 1, + STATE(5490), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4049), 7, + STATE(2854), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185580,7 +185770,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185594,7 +185784,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70167] = 32, + [70203] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -185603,66 +185793,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5188), 1, + STATE(5262), 1, sym_type_parameters, - STATE(5769), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4292), 7, + STATE(4360), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185670,7 +185860,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185684,7 +185874,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70289] = 32, + [70325] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(610), 1, @@ -185697,62 +185887,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_STAR, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4481), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4485), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4495), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3935), 1, + STATE(3933), 1, sym__primary_type, - STATE(3944), 1, + STATE(3954), 1, sym_string, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5067), 7, + STATE(5105), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185760,7 +185950,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185774,7 +185964,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70411] = 32, + [70447] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -185783,66 +185973,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4370), 1, - anon_sym_typeof, - ACTIONS(4372), 1, - anon_sym_new, - ACTIONS(4374), 1, - anon_sym_QMARK, - ACTIONS(4376), 1, - anon_sym_AMP, - ACTIONS(4378), 1, - anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4384), 1, - anon_sym_keyof, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5309), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5737), 1, + STATE(5715), 1, sym_formal_parameters, - ACTIONS(1660), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3869), 7, + STATE(4364), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185850,7 +186040,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185864,75 +186054,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70533] = 32, + [70569] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4370), 1, + ACTIONS(3887), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(4374), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(4376), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(4378), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(4384), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3915), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(2176), 1, sym_string, - STATE(5309), 1, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5179), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5737), 1, + STATE(5482), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4175), 7, + STATE(2299), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -185940,7 +186130,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -185954,14 +186144,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [70655] = 6, + [70691] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2066), 1, + ACTIONS(4460), 1, anon_sym_EQ_GT, - ACTIONS(2209), 1, + ACTIONS(4527), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -185977,7 +186167,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(3794), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -185994,7 +186184,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(1619), 23, + ACTIONS(3790), 23, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -186018,114 +186208,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [70725] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, - anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, - anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, - anon_sym_typeof, - ACTIONS(4126), 1, - anon_sym_new, - ACTIONS(4128), 1, - anon_sym_QMARK, - ACTIONS(4130), 1, - anon_sym_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE, - ACTIONS(4134), 1, - anon_sym_readonly, - ACTIONS(4136), 1, - anon_sym_keyof, - STATE(2162), 1, - sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, - sym__number, - STATE(5247), 1, - sym_type_parameters, - STATE(5714), 1, - sym_formal_parameters, - STATE(5824), 1, - sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, - sym_true, - sym_false, - ACTIONS(3936), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(2339), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2180), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [70847] = 8, + [70761] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2064), 1, + ACTIONS(1912), 1, anon_sym_EQ, - ACTIONS(2066), 1, + ACTIONS(1914), 1, anon_sym_EQ_GT, - ACTIONS(3856), 3, + ACTIONS(3843), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3859), 3, + ACTIONS(3846), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1636), 13, + ACTIONS(1672), 14, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -186136,8 +186238,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186153,9 +186254,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + ACTIONS(1655), 19, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -186174,75 +186274,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [70921] = 32, + [70835] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4182), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4184), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4192), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4194), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(2176), 1, sym_string, - STATE(3954), 1, + STATE(2178), 1, sym__primary_type, - STATE(3963), 1, + STATE(2179), 1, sym__number, - STATE(5164), 1, + STATE(5289), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + STATE(5540), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4089), 7, + STATE(2739), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186250,7 +186350,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186264,75 +186364,255 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71043] = 32, + [70957] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(4182), 1, + anon_sym_typeof, + ACTIONS(4184), 1, + anon_sym_new, + ACTIONS(4186), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(4188), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(4190), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(4192), 1, + anon_sym_readonly, + ACTIONS(4194), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5289), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5540), 1, + sym_formal_parameters, + ACTIONS(3901), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2299), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2177), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [71079] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, + anon_sym_typeof, + ACTIONS(4198), 1, + anon_sym_new, + ACTIONS(4200), 1, + anon_sym_QMARK, + ACTIONS(4202), 1, + anon_sym_AMP, + ACTIONS(4204), 1, + anon_sym_PIPE, + ACTIONS(4206), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4208), 1, + anon_sym_keyof, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5228), 1, + STATE(5183), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5738), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(4077), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(4079), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3196), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2942), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [71201] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3881), 1, + sym_identifier, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, + anon_sym_LBRACE, + ACTIONS(3889), 1, + anon_sym_LPAREN, + ACTIONS(3891), 1, + anon_sym_LBRACK, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, + anon_sym_typeof, + ACTIONS(4136), 1, + anon_sym_new, + ACTIONS(4138), 1, + anon_sym_QMARK, + ACTIONS(4140), 1, + anon_sym_AMP, + ACTIONS(4142), 1, + anon_sym_PIPE, + ACTIONS(4144), 1, + anon_sym_readonly, + ACTIONS(4146), 1, + anon_sym_keyof, + STATE(2160), 1, + sym_nested_type_identifier, + STATE(2176), 1, + sym_string, + STATE(2178), 1, + sym__primary_type, + STATE(2179), 1, + sym__number, + STATE(5218), 1, + sym_type_parameters, + STATE(5469), 1, + sym_nested_identifier, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4835), 7, + STATE(3577), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186340,7 +186620,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186354,75 +186634,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71165] = 32, + [71323] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4709), 7, + STATE(4842), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186430,7 +186710,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186444,38 +186724,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71287] = 9, + [71445] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 1, - anon_sym_EQ, ACTIONS(1954), 1, anon_sym_EQ_GT, - ACTIONS(2278), 1, - anon_sym_COMMA, - ACTIONS(3856), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 14, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1986), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -186491,11 +186747,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(1672), 17, + 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, + anon_sym_extends, + ACTIONS(1655), 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, @@ -186503,7 +186778,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, @@ -186511,75 +186788,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [71363] = 32, + [71515] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, + sym_identifier, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_LBRACK, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4162), 1, + anon_sym_typeof, + ACTIONS(4164), 1, + anon_sym_new, + ACTIONS(4166), 1, + anon_sym_QMARK, + ACTIONS(4168), 1, + anon_sym_AMP, + ACTIONS(4170), 1, + anon_sym_PIPE, + ACTIONS(4172), 1, + anon_sym_readonly, + ACTIONS(4174), 1, + anon_sym_keyof, + STATE(2384), 1, + sym_nested_type_identifier, + STATE(2458), 1, + sym__number, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5167), 1, + sym_type_parameters, + STATE(5694), 1, + sym_formal_parameters, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3186), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2465), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [71637] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4126), 1, - anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4130), 1, - anon_sym_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE, - ACTIONS(4134), 1, - anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4107), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, + STATE(2395), 1, sym__primary_type, - STATE(2182), 1, + STATE(2458), 1, sym__number, - STATE(5247), 1, + STATE(2466), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5714), 1, + STATE(5813), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2328), 7, + STATE(5097), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186587,7 +186954,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186601,75 +186968,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71485] = 32, + [71759] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4095), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4097), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4107), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3954), 1, - sym__primary_type, - STATE(3963), 1, + STATE(2458), 1, sym__number, - STATE(5164), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5194), 1, sym_type_parameters, - STATE(5505), 1, + STATE(5663), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3948), 7, + STATE(2690), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186677,7 +187044,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186691,7 +187058,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71607] = 32, + [71881] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -186700,13 +187067,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -186716,50 +187083,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4370), 1, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4374), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4376), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4378), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4384), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5309), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5737), 1, + STATE(5819), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(3886), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186767,7 +187134,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186781,142 +187148,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71729] = 9, + [72003] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3826), 1, - anon_sym_EQ_GT, - ACTIONS(4589), 1, - anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [71805] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4136), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4140), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4142), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4144), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4146), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(2176), 1, sym_string, - STATE(3954), 1, + STATE(2178), 1, sym__primary_type, - STATE(3963), 1, + STATE(2179), 1, sym__number, - STATE(5164), 1, + STATE(5218), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3967), 7, + STATE(2299), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -186924,7 +187224,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -186938,7 +187238,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [71927] = 32, + [72125] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -186955,17 +187255,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(1626), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -186975,38 +187275,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4777), 7, + STATE(4758), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187014,7 +187314,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187028,75 +187328,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72049] = 32, + [72247] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, - sym_identifier, - ACTIONS(3916), 1, + ACTIONS(4212), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4214), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(4216), 1, + anon_sym_typeof, + ACTIONS(4218), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(4220), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, - sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, - anon_sym_typeof, - ACTIONS(4126), 1, + ACTIONS(4222), 1, anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4224), 1, anon_sym_QMARK, - ACTIONS(4130), 1, + ACTIONS(4226), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4228), 1, anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(4234), 1, + anon_sym_DQUOTE, + ACTIONS(4236), 1, + anon_sym_SQUOTE, + ACTIONS(4238), 1, + sym_number, + ACTIONS(4244), 1, anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4248), 1, + anon_sym_infer, + ACTIONS(4250), 1, anon_sym_keyof, - STATE(2162), 1, + ACTIONS(4252), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4583), 1, + sym_identifier, + ACTIONS(4585), 1, + sym_this, + STATE(3999), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, - sym__primary_type, - STATE(2182), 1, + STATE(4121), 1, sym__number, - STATE(5247), 1, + STATE(4122), 1, + sym__primary_type, + STATE(4125), 1, + sym_string, + STATE(5198), 1, sym_type_parameters, - STATE(5714), 1, + STATE(5618), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5767), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(4230), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(4242), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(4232), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3441), 7, + STATE(4071), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187104,7 +187404,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(4123), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187118,7 +187418,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72171] = 32, + [72369] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -187127,25 +187427,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -187155,38 +187443,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4114), 1, + anon_sym_typeof, + ACTIONS(4116), 1, + anon_sym_new, + ACTIONS(4118), 1, + anon_sym_QMARK, + ACTIONS(4120), 1, + anon_sym_AMP, + ACTIONS(4122), 1, + anon_sym_PIPE, + ACTIONS(4126), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4130), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5363), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5610), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4194), 7, + STATE(4625), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187194,7 +187494,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187208,73 +187508,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72293] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym_EQ_GT, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(4607), 1, - anon_sym_in, - ACTIONS(4610), 1, - anon_sym_of, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 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(3796), 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, - [72367] = 32, + [72491] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -187283,21 +187517,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(1290), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(1304), 1, + ACTIONS(1346), 1, + anon_sym_QMARK, + ACTIONS(1364), 1, anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -187307,42 +187543,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2124), 1, + ACTIONS(2161), 1, anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3840), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3884), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5409), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4184), 7, + STATE(5149), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187350,7 +187584,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187364,18 +187598,127 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72489] = 8, + [72613] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1908), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, + sym_identifier, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_LBRACK, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4095), 1, + anon_sym_typeof, + ACTIONS(4097), 1, + anon_sym_new, + ACTIONS(4099), 1, + anon_sym_QMARK, + ACTIONS(4101), 1, + anon_sym_AMP, + ACTIONS(4103), 1, + anon_sym_PIPE, + ACTIONS(4105), 1, + anon_sym_readonly, + ACTIONS(4107), 1, + anon_sym_keyof, + STATE(2384), 1, + sym_nested_type_identifier, + STATE(2458), 1, + sym__number, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5194), 1, + sym_type_parameters, + STATE(5663), 1, + sym_formal_parameters, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2689), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2465), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [72735] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2224), 1, anon_sym_EQ, - ACTIONS(1910), 1, + ACTIONS(2226), 1, anon_sym_EQ_GT, - ACTIONS(3002), 1, - anon_sym_in, - ACTIONS(4612), 1, - anon_sym_of, - ACTIONS(1640), 15, + ACTIONS(2294), 1, + anon_sym_extends, + ACTIONS(3843), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 13, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -187391,28 +187734,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 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(1619), 21, + ACTIONS(1655), 20, 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, @@ -187420,9 +187747,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, @@ -187430,75 +187755,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [72563] = 32, + [72811] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, + ACTIONS(4065), 1, + anon_sym_LPAREN, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(1894), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4370), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4374), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4376), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4378), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4384), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2929), 1, sym__number, - STATE(3886), 1, + STATE(2934), 1, sym__primary_type, - STATE(3896), 1, + STATE(2957), 1, sym_string, - STATE(5309), 1, + STATE(5183), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5737), 1, + STATE(5738), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(2849), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187506,7 +187831,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187520,75 +187845,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72685] = 32, + [72933] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4114), 1, anon_sym_typeof, - ACTIONS(4126), 1, + ACTIONS(4116), 1, anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4130), 1, + ACTIONS(4120), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4122), 1, anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(4126), 1, anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4130), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5247), 1, + STATE(5363), 1, sym_type_parameters, - STATE(5714), 1, + STATE(5610), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2296), 7, + STATE(4607), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187596,7 +187921,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187610,75 +187935,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72807] = 32, + [73055] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3950), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(4134), 1, anon_sym_typeof, - ACTIONS(4128), 1, - anon_sym_QMARK, ACTIONS(4136), 1, + anon_sym_new, + ACTIONS(4138), 1, + anon_sym_QMARK, + ACTIONS(4140), 1, + anon_sym_AMP, + ACTIONS(4142), 1, + anon_sym_PIPE, + ACTIONS(4144), 1, + anon_sym_readonly, + ACTIONS(4146), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2182), 1, - sym__number, - STATE(2229), 1, + STATE(2178), 1, sym__primary_type, - STATE(5228), 1, + STATE(2179), 1, + sym__number, + STATE(5218), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5102), 7, + STATE(3581), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187686,7 +188011,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187700,7 +188025,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [72929] = 32, + [73177] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -187709,25 +188034,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -187737,38 +188056,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3810), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4310), 1, + anon_sym_typeof, + ACTIONS(4314), 1, + anon_sym_QMARK, + ACTIONS(4324), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3864), 1, + sym_string, + STATE(3869), 1, sym__number, - STATE(3886), 1, + STATE(3879), 1, sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4742), 7, + STATE(5030), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187776,7 +188101,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187790,7 +188115,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73051] = 32, + [73299] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -187799,66 +188124,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, + ACTIONS(764), 1, anon_sym_QMARK, - ACTIONS(674), 1, + ACTIONS(766), 1, anon_sym_AMP, - ACTIONS(676), 1, + ACTIONS(768), 1, anon_sym_PIPE, - ACTIONS(692), 1, + ACTIONS(790), 1, anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, ACTIONS(1878), 1, anon_sym_LBRACE, + ACTIONS(1880), 1, + anon_sym_typeof, ACTIONS(1882), 1, anon_sym_LBRACK, + ACTIONS(1886), 1, + anon_sym_new, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(1896), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4802), 7, + STATE(4402), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187866,7 +188191,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187880,75 +188205,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73173] = 32, + [73421] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4715), 7, + STATE(4870), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -187956,7 +188281,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -187970,75 +188295,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73295] = 32, + [73543] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(4268), 1, anon_sym_typeof, - ACTIONS(4126), 1, + ACTIONS(4270), 1, anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4272), 1, anon_sym_QMARK, - ACTIONS(4130), 1, + ACTIONS(4274), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4276), 1, anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(4278), 1, anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4280), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5247), 1, + STATE(5175), 1, sym_type_parameters, - STATE(5714), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5595), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3278), 7, + STATE(3422), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188046,7 +188371,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188060,75 +188385,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73417] = 32, + [73665] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5164), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4153), 7, + STATE(4917), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188136,7 +188461,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188150,165 +188475,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73539] = 32, + [73787] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(3960), 1, + sym_identifier, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4250), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4258), 1, - anon_sym_new, - ACTIONS(4260), 1, - anon_sym_QMARK, - ACTIONS(4262), 1, - anon_sym_AMP, - ACTIONS(4264), 1, - anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4280), 1, - anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, - anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, + ACTIONS(3986), 1, sym_this, - STATE(4001), 1, - sym_nested_type_identifier, - STATE(4066), 1, - sym_string, - STATE(4078), 1, - sym__primary_type, - STATE(4080), 1, - sym__number, - STATE(5292), 1, - sym_type_parameters, - STATE(5625), 1, - sym_nested_identifier, - STATE(5704), 1, - sym_formal_parameters, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, - sym_true, - sym_false, - ACTIONS(4268), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4088), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(4071), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [73661] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(614), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, + ACTIONS(4095), 1, + anon_sym_typeof, + ACTIONS(4097), 1, + anon_sym_new, + ACTIONS(4099), 1, anon_sym_QMARK, - ACTIONS(1288), 1, + ACTIONS(4101), 1, anon_sym_AMP, - ACTIONS(1290), 1, + ACTIONS(4103), 1, anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, - sym_identifier, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2124), 1, - anon_sym_typeof, - ACTIONS(2126), 1, - anon_sym_new, - ACTIONS(2134), 1, + ACTIONS(4105), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4107), 1, + anon_sym_keyof, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(2458), 1, sym__number, - STATE(3886), 1, + STATE(2459), 1, sym__primary_type, - STATE(3896), 1, + STATE(2466), 1, sym_string, - STATE(5409), 1, + STATE(5194), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5822), 1, + STATE(5663), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3879), 7, + STATE(2402), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188316,7 +188551,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188330,75 +188565,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73783] = 32, + [73909] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(540), 1, - anon_sym_STAR, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, - anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1192), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1194), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, - sym_number, - ACTIONS(1874), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3998), 1, sym_identifier, - ACTIONS(1878), 1, + ACTIONS(4000), 1, + anon_sym_STAR, + ACTIONS(4002), 1, anon_sym_LBRACE, - ACTIONS(1882), 1, - anon_sym_LBRACK, - ACTIONS(1894), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4370), 1, + ACTIONS(4004), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(4006), 1, + anon_sym_LPAREN, + ACTIONS(4008), 1, + anon_sym_LBRACK, + ACTIONS(4010), 1, anon_sym_new, - ACTIONS(4374), 1, + ACTIONS(4012), 1, anon_sym_QMARK, - ACTIONS(4376), 1, + ACTIONS(4014), 1, anon_sym_AMP, - ACTIONS(4378), 1, + ACTIONS(4016), 1, anon_sym_PIPE, - ACTIONS(4382), 1, + ACTIONS(4022), 1, + sym_number, + ACTIONS(4024), 1, + sym_this, + ACTIONS(4028), 1, anon_sym_readonly, - ACTIONS(4384), 1, + ACTIONS(4030), 1, + anon_sym_infer, + ACTIONS(4032), 1, anon_sym_keyof, - STATE(3840), 1, + ACTIONS(4034), 1, + anon_sym_LBRACE_PIPE, + STATE(3173), 1, sym_nested_type_identifier, - STATE(3881), 1, + STATE(3387), 1, sym__number, - STATE(3886), 1, + STATE(3395), 1, sym__primary_type, - STATE(3896), 1, + STATE(3407), 1, sym_string, - STATE(5309), 1, + STATE(5189), 1, sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5737), 1, + STATE(5654), 1, sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, + STATE(5807), 1, + sym_nested_identifier, + ACTIONS(4018), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(4026), 2, + sym_true, + sym_false, + ACTIONS(4020), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4187), 7, + STATE(3450), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188406,7 +188641,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3403), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188420,7 +188655,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [73905] = 32, + [74031] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -188429,13 +188664,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -188445,204 +188680,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4370), 1, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4372), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4374), 1, - anon_sym_QMARK, - ACTIONS(4376), 1, - anon_sym_AMP, - ACTIONS(4378), 1, - anon_sym_PIPE, - ACTIONS(4382), 1, - anon_sym_readonly, - ACTIONS(4384), 1, - anon_sym_keyof, - STATE(3840), 1, - sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, - sym_string, - STATE(5309), 1, - sym_type_parameters, - STATE(5706), 1, - sym_nested_identifier, - STATE(5737), 1, - sym_formal_parameters, - ACTIONS(1660), 2, - sym_true, - sym_false, - ACTIONS(2926), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(1650), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(4202), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(3888), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [74027] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4220), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 22, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4314), 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(4316), 1, anon_sym_AMP, - anon_sym_CARET, + ACTIONS(4318), 1, anon_sym_PIPE, + ACTIONS(4322), 1, + anon_sym_readonly, + ACTIONS(4324), 1, + anon_sym_keyof, + STATE(3841), 1, + sym_nested_type_identifier, + STATE(3864), 1, + sym_string, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5266), 1, + sym_type_parameters, + STATE(5716), 1, + sym_nested_identifier, + STATE(5735), 1, + sym_formal_parameters, + ACTIONS(1696), 2, + sym_true, + sym_false, + ACTIONS(2924), 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, - [74097] = 32, + ACTIONS(1686), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(3880), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(3867), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [74153] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, - anon_sym_DQUOTE, - ACTIONS(592), 1, - anon_sym_SQUOTE, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(3914), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4128), 1, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4136), 1, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2182), 1, - sym__number, - STATE(2222), 1, + STATE(3868), 1, sym__primary_type, - STATE(5228), 1, + STATE(3869), 1, + sym__number, + STATE(5290), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5102), 7, + STATE(4911), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188650,7 +188821,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188664,75 +188835,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74219] = 32, + [74275] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5164), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4109), 7, + STATE(4908), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188740,7 +188911,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188754,75 +188925,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74341] = 32, + [74397] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, + ACTIONS(4081), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, + ACTIONS(4093), 1, anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4126), 1, - anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4130), 1, - anon_sym_AMP, - ACTIONS(4132), 1, - anon_sym_PIPE, - ACTIONS(4134), 1, - anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(2179), 1, - sym_string, - STATE(2181), 1, + STATE(2852), 1, sym__primary_type, - STATE(2182), 1, + STATE(2929), 1, sym__number, - STATE(5247), 1, + STATE(2957), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5714), 1, + STATE(5813), 1, sym_formal_parameters, - STATE(5824), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(3934), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(4085), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3280), 7, + STATE(5142), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -188830,7 +189001,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -188844,206 +189015,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74463] = 9, + [74519] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3826), 1, - anon_sym_EQ_GT, - ACTIONS(4597), 1, - anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(540), 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, - [74539] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(4222), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 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, - [74609] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(590), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(3984), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(3986), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(3988), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(3990), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(3992), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(3994), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(3996), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5207), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5751), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2339), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189051,7 +189091,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189065,75 +189105,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74731] = 32, + [74641] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(590), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(592), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(3916), 1, - anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(3922), 1, - anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(3938), 1, - sym_number, - ACTIONS(3940), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(3946), 1, - anon_sym_infer, - ACTIONS(3950), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4124), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4310), 1, anon_sym_typeof, - ACTIONS(4126), 1, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4128), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4130), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4132), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4134), 1, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(4136), 1, + ACTIONS(4324), 1, anon_sym_keyof, - STATE(2162), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(3864), 1, sym_string, - STATE(2181), 1, + STATE(3868), 1, sym__primary_type, - STATE(2182), 1, + STATE(3869), 1, sym__number, - STATE(5247), 1, + STATE(5266), 1, sym_type_parameters, - STATE(5714), 1, - sym_formal_parameters, - STATE(5824), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(3934), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(3942), 2, + STATE(5735), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2223), 7, + STATE(4235), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189141,7 +189181,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189155,75 +189195,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74853] = 32, + [74763] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4162), 1, + anon_sym_typeof, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4100), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4102), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4104), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4116), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, + ACTIONS(4174), 1, anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, + STATE(2458), 1, sym__number, - STATE(2884), 1, + STATE(2459), 1, sym__primary_type, - STATE(5180), 1, + STATE(2466), 1, + sym_string, + STATE(5167), 1, sym_type_parameters, - STATE(5657), 1, + STATE(5694), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3189), 7, + STATE(3214), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189231,7 +189271,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189245,75 +189285,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [74975] = 32, + [74885] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, - sym_identifier, - ACTIONS(4088), 1, + ACTIONS(698), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(734), 1, + anon_sym_infer, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2079), 1, + sym_identifier, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2107), 1, + sym_number, + ACTIONS(2109), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4476), 1, + anon_sym_typeof, + ACTIONS(4478), 1, anon_sym_new, - ACTIONS(4100), 1, + ACTIONS(4480), 1, anon_sym_QMARK, - ACTIONS(4102), 1, + ACTIONS(4482), 1, anon_sym_AMP, - ACTIONS(4104), 1, + ACTIONS(4484), 1, anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4116), 1, + ACTIONS(4488), 1, anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, + ACTIONS(4490), 1, anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3954), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(3959), 1, sym__primary_type, - STATE(5180), 1, + STATE(3960), 1, + sym__number, + STATE(5453), 1, sym_type_parameters, - STATE(5657), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + STATE(5783), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3254), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2985), 7, + STATE(4111), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189321,7 +189361,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189335,75 +189375,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75097] = 32, + [75007] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4250), 1, - anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4258), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4310), 1, + anon_sym_typeof, + ACTIONS(4312), 1, anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(4314), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4316), 1, anon_sym_AMP, - ACTIONS(4264), 1, + ACTIONS(4318), 1, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, - sym_number, - ACTIONS(4280), 1, + ACTIONS(4322), 1, anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, + ACTIONS(4324), 1, anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(4066), 1, + STATE(3864), 1, sym_string, - STATE(4078), 1, + STATE(3868), 1, sym__primary_type, - STATE(4080), 1, + STATE(3869), 1, sym__number, - STATE(5292), 1, + STATE(5266), 1, sym_type_parameters, - STATE(5625), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5704), 1, + STATE(5735), 1, sym_formal_parameters, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4098), 7, + STATE(4234), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189411,7 +189451,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189425,75 +189465,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75219] = 32, + [75129] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(590), 1, anon_sym_DQUOTE, ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3914), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(3916), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(3918), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(3920), 1, + ACTIONS(3887), 1, anon_sym_typeof, - ACTIONS(3922), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(3924), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(3926), 1, + ACTIONS(3893), 1, anon_sym_new, - ACTIONS(3928), 1, + ACTIONS(3895), 1, anon_sym_QMARK, - ACTIONS(3930), 1, + ACTIONS(3897), 1, anon_sym_AMP, - ACTIONS(3932), 1, + ACTIONS(3899), 1, anon_sym_PIPE, - ACTIONS(3938), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(3940), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(3944), 1, + ACTIONS(3911), 1, anon_sym_readonly, - ACTIONS(3946), 1, + ACTIONS(3913), 1, anon_sym_infer, - ACTIONS(3948), 1, + ACTIONS(3915), 1, anon_sym_keyof, - ACTIONS(3950), 1, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - STATE(2162), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(2179), 1, + STATE(2176), 1, sym_string, - STATE(2181), 1, + STATE(2178), 1, sym__primary_type, - STATE(2182), 1, + STATE(2179), 1, sym__number, - STATE(5186), 1, + STATE(5179), 1, sym_type_parameters, STATE(5469), 1, - sym_formal_parameters, - STATE(5824), 1, sym_nested_identifier, - ACTIONS(3934), 2, + STATE(5482), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3942), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(3936), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3542), 7, + STATE(3586), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189501,7 +189541,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2180), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189515,139 +189555,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75341] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_EQ, - ACTIONS(4332), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, - 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, - anon_sym_extends, - ACTIONS(3796), 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, - [75411] = 32, + [75251] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4162), 1, + anon_sym_typeof, + ACTIONS(4164), 1, anon_sym_new, - ACTIONS(4100), 1, + ACTIONS(4166), 1, anon_sym_QMARK, - ACTIONS(4102), 1, + ACTIONS(4168), 1, anon_sym_AMP, - ACTIONS(4104), 1, + ACTIONS(4170), 1, anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4116), 1, + ACTIONS(4172), 1, anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, + ACTIONS(4174), 1, anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, + STATE(2458), 1, sym__number, - STATE(2884), 1, + STATE(2459), 1, sym__primary_type, - STATE(5180), 1, + STATE(2466), 1, + sym_string, + STATE(5167), 1, sym_type_parameters, - STATE(5657), 1, + STATE(5694), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2996), 7, + STATE(3185), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189655,7 +189631,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189669,7 +189645,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75533] = 32, + [75373] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -189678,21 +189654,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1286), 1, - anon_sym_QMARK, - ACTIONS(1288), 1, - anon_sym_AMP, - ACTIONS(1290), 1, - anon_sym_PIPE, - ACTIONS(1304), 1, - anon_sym_keyof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -189702,42 +189670,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2124), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(2126), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(2134), 1, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3840), 1, + ACTIONS(4344), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5409), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5822), 1, + STATE(5819), 1, sym_formal_parameters, - ACTIONS(1660), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3868), 7, + STATE(4893), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189745,7 +189721,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189759,14 +189735,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75655] = 6, + [75495] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(4332), 1, + ACTIONS(1910), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -189782,11 +189758,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(1672), 17, + 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, @@ -189798,9 +189776,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -189823,75 +189799,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [75725] = 32, + [75565] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, + ACTIONS(3966), 1, anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, - anon_sym_new, - ACTIONS(4100), 1, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(4102), 1, - anon_sym_AMP, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4110), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4112), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(4116), 1, - anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, + ACTIONS(3994), 1, anon_sym_keyof, - ACTIONS(4122), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - STATE(2733), 1, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(2404), 1, sym__primary_type, - STATE(5180), 1, + STATE(2458), 1, + sym__number, + STATE(2466), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5657), 1, + STATE(5813), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3165), 7, + STATE(5121), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189899,7 +189875,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -189913,75 +189889,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75847] = 32, + [75687] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, + ACTIONS(1880), 1, anon_sym_typeof, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(1886), 1, anon_sym_new, - ACTIONS(4100), 1, - anon_sym_QMARK, - ACTIONS(4102), 1, - anon_sym_AMP, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4116), 1, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, - anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3864), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(3868), 1, sym__primary_type, - STATE(5180), 1, + STATE(3869), 1, + sym__number, + STATE(5244), 1, sym_type_parameters, - STATE(5657), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2864), 7, + STATE(4358), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -189989,7 +189965,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190003,75 +189979,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [75969] = 32, + [75809] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5164), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(4892), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190079,7 +190055,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190093,7 +190069,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76091] = 32, + [75931] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -190102,13 +190078,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -190118,50 +190094,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4503), 1, + ACTIONS(4330), 1, anon_sym_typeof, - ACTIONS(4505), 1, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4507), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4509), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4511), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4515), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4517), 1, + ACTIONS(4344), 1, anon_sym_keyof, - STATE(3840), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5344), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5646), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4771), 7, + STATE(4890), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190169,7 +190145,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190183,7 +190159,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76213] = 32, + [76053] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(540), 1, @@ -190192,25 +190168,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(672), 1, - anon_sym_QMARK, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(692), 1, - anon_sym_keyof, - ACTIONS(1626), 1, - anon_sym_typeof, - ACTIONS(1628), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1656), 1, + ACTIONS(1692), 1, sym_number, ACTIONS(1874), 1, sym_identifier, @@ -190220,38 +190184,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, + anon_sym_new, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, anon_sym_readonly, - STATE(3840), 1, + ACTIONS(4344), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3881), 1, - sym__number, - STATE(3886), 1, - sym__primary_type, - STATE(3896), 1, + STATE(3864), 1, sym_string, - STATE(5228), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5706), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(1660), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(2926), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(1650), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4779), 7, + STATE(4631), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190259,7 +190235,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3888), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190273,255 +190249,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76335] = 32, + [76175] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, + anon_sym_QMARK, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4086), 1, - sym_identifier, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, - anon_sym_LBRACK, - ACTIONS(4100), 1, - anon_sym_QMARK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4120), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, - sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, - sym__number, - STATE(2832), 1, - sym__primary_type, - STATE(5228), 1, - sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5782), 1, - sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, - sym_true, - sym_false, - ACTIONS(4108), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(5118), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2793), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [76457] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, - anon_sym_DQUOTE, - ACTIONS(842), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, - sym_identifier, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, - anon_sym_LBRACE, - ACTIONS(4092), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, - anon_sym_LBRACK, - ACTIONS(4098), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(4100), 1, - anon_sym_QMARK, - ACTIONS(4102), 1, - anon_sym_AMP, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, - sym_this, - ACTIONS(4116), 1, - anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, - anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, - sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, - sym__primary_type, - STATE(5180), 1, - sym_type_parameters, - STATE(5657), 1, - sym_formal_parameters, - STATE(5782), 1, - sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, - sym_true, - sym_false, - ACTIONS(4108), 6, - anon_sym_void, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - STATE(3137), 7, - sym__type, - sym_constructor_type, - sym_infer_type, - sym_readonly_type, - sym_union_type, - sym_intersection_type, - sym_function_type, - STATE(2793), 13, - sym_conditional_type, - sym_generic_type, - sym_type_query, - sym_index_type_query, - sym_lookup_type, - sym_literal_type, - sym_existential_type, - sym_flow_maybe_type, - sym_parenthesized_type, - sym_predefined_type, - sym_object_type, - sym_array_type, - sym_tuple_type, - [76579] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(840), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, - anon_sym_new, - ACTIONS(4100), 1, - anon_sym_QMARK, - ACTIONS(4102), 1, - anon_sym_AMP, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4116), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, - anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3864), 1, sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(3868), 1, sym__primary_type, - STATE(5180), 1, + STATE(3869), 1, + sym__number, + STATE(5238), 1, sym_type_parameters, - STATE(5657), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3087), 7, + STATE(4729), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190529,7 +190325,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190543,75 +190339,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76701] = 32, + [76297] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(840), 1, + ACTIONS(81), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(83), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4086), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(4088), 1, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(4098), 1, - anon_sym_new, - ACTIONS(4100), 1, - anon_sym_QMARK, - ACTIONS(4102), 1, - anon_sym_AMP, - ACTIONS(4104), 1, - anon_sym_PIPE, - ACTIONS(4110), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(4112), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(4116), 1, - anon_sym_readonly, - ACTIONS(4118), 1, - anon_sym_infer, - ACTIONS(4120), 1, - anon_sym_keyof, - ACTIONS(4122), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - STATE(2733), 1, + ACTIONS(4095), 1, + anon_sym_typeof, + ACTIONS(4099), 1, + anon_sym_QMARK, + ACTIONS(4107), 1, + anon_sym_keyof, + STATE(2384), 1, sym_nested_type_identifier, - STATE(2792), 1, - sym_string, - STATE(2805), 1, - sym__number, - STATE(2884), 1, + STATE(2404), 1, sym__primary_type, - STATE(5180), 1, + STATE(2458), 1, + sym__number, + STATE(2466), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5657), 1, + STATE(5813), 1, sym_formal_parameters, - STATE(5782), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(4106), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4114), 2, + ACTIONS(3988), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(2822), 7, + STATE(5097), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190619,7 +190415,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190633,75 +190429,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76823] = 32, + [76419] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(840), 1, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(842), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4086), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4088), 1, - anon_sym_STAR, - ACTIONS(4090), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4092), 1, - anon_sym_typeof, - ACTIONS(4094), 1, - anon_sym_LPAREN, - ACTIONS(4096), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4100), 1, - anon_sym_QMARK, - ACTIONS(4110), 1, - sym_number, - ACTIONS(4112), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4120), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4310), 1, + anon_sym_typeof, + ACTIONS(4314), 1, + anon_sym_QMARK, + ACTIONS(4324), 1, anon_sym_keyof, - ACTIONS(4122), 1, - anon_sym_LBRACE_PIPE, - STATE(2733), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(2792), 1, + STATE(3864), 1, sym_string, - STATE(2805), 1, + STATE(3869), 1, sym__number, - STATE(2821), 1, + STATE(3884), 1, sym__primary_type, - STATE(5228), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5782), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4106), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4114), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4108), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5118), 7, + STATE(5030), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190709,7 +190505,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(2793), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190723,75 +190519,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [76945] = 32, + [76541] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(698), 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(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2008), 1, - anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + ACTIONS(4384), 1, + anon_sym_typeof, + ACTIONS(4386), 1, + anon_sym_new, + ACTIONS(4388), 1, + anon_sym_QMARK, + ACTIONS(4390), 1, + anon_sym_AMP, + ACTIONS(4392), 1, + anon_sym_PIPE, + ACTIONS(4396), 1, + anon_sym_readonly, + ACTIONS(4398), 1, + anon_sym_keyof, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5251), 1, + STATE(5262), 1, sym_type_parameters, - STATE(5709), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3992), 7, + STATE(4680), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190799,7 +190595,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190813,7 +190609,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77067] = 32, + [76663] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -190830,58 +190626,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_keyof, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2002), 1, + ACTIONS(2085), 1, anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2008), 1, + ACTIONS(2091), 1, anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2030), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5251), 1, + STATE(5242), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3948), 7, + STATE(4112), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190889,7 +190685,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190903,75 +190699,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77189] = 32, + [76785] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4248), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4250), 1, - anon_sym_LBRACE, - ACTIONS(4252), 1, - anon_sym_typeof, - ACTIONS(4254), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(4256), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4258), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4260), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4262), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4264), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4270), 1, - anon_sym_DQUOTE, - ACTIONS(4272), 1, - anon_sym_SQUOTE, - ACTIONS(4274), 1, - sym_number, - ACTIONS(4280), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4284), 1, - anon_sym_infer, - ACTIONS(4286), 1, + ACTIONS(4366), 1, anon_sym_keyof, - ACTIONS(4288), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(4601), 1, - sym_identifier, - ACTIONS(4603), 1, - sym_this, - STATE(4001), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(4066), 1, + STATE(3864), 1, sym_string, - STATE(4078), 1, + STATE(3868), 1, sym__primary_type, - STATE(4080), 1, + STATE(3869), 1, sym__number, - STATE(5292), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5625), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5704), 1, + STATE(5810), 1, sym_formal_parameters, - ACTIONS(4266), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4278), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4268), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4102), 7, + STATE(4777), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -190979,7 +190775,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(4071), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -190993,42 +190789,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77311] = 12, + [76907] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3817), 1, - anon_sym_LBRACK, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4614), 1, + ACTIONS(3841), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -191044,10 +190812,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(3794), 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(3790), 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, @@ -191055,7 +190843,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, @@ -191063,75 +190853,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [77393] = 32, + [76977] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(1024), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(1026), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4022), 1, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(4059), 1, anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(4081), 1, + sym_number, + ACTIONS(4083), 1, + sym_this, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, + anon_sym_typeof, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4046), 1, + ACTIONS(4206), 1, + anon_sym_readonly, + ACTIONS(4208), 1, + anon_sym_keyof, + STATE(2700), 1, + sym_nested_type_identifier, + STATE(2929), 1, + sym__number, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5183), 1, + sym_type_parameters, + STATE(5738), 1, + sym_formal_parameters, + STATE(5825), 1, + sym_nested_identifier, + ACTIONS(4077), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2784), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2942), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [77099] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, sym_number, - ACTIONS(4048), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(4052), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, + anon_sym_new, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(3864), 1, sym_string, - STATE(3394), 1, + STATE(3868), 1, sym__primary_type, - STATE(3397), 1, + STATE(3869), 1, sym__number, - STATE(5199), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5819), 1, sym_formal_parameters, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3350), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191139,7 +191019,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191153,75 +191033,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77515] = 32, + [77221] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4022), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, + anon_sym_typeof, + ACTIONS(4136), 1, anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(4140), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(4142), 1, anon_sym_PIPE, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4048), 1, - sym_this, - ACTIONS(4052), 1, + ACTIONS(4144), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4146), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(2176), 1, sym_string, - STATE(3394), 1, + STATE(2178), 1, sym__primary_type, - STATE(3397), 1, + STATE(2179), 1, sym__number, - STATE(5199), 1, + STATE(5218), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5761), 1, sym_formal_parameters, - ACTIONS(4042), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3475), 7, + STATE(2165), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191229,7 +191109,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191243,75 +191123,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77637] = 32, + [77343] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5164), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4100), 7, + STATE(3880), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191319,7 +191199,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191333,75 +191213,145 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77759] = 32, + [77465] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3827), 1, + anon_sym_LBRACK, + ACTIONS(4606), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3830), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3794), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 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, + [77547] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(698), 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(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2085), 1, + anon_sym_typeof, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2091), 1, + anon_sym_new, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4481), 1, - anon_sym_typeof, - ACTIONS(4483), 1, - anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(2113), 1, anon_sym_readonly, - ACTIONS(4495), 1, - anon_sym_keyof, - STATE(3890), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5188), 1, + STATE(5242), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5719), 1, + sym_formal_parameters, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4469), 7, + STATE(4115), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191409,7 +191359,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191423,75 +191373,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [77881] = 32, + [77669] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, - anon_sym_DQUOTE, - ACTIONS(1364), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4022), 1, - sym_identifier, - ACTIONS(4024), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(4026), 1, - anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, - anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(4046), 1, + ACTIONS(692), 1, + anon_sym_keyof, + ACTIONS(1662), 1, + anon_sym_typeof, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(1692), 1, sym_number, - ACTIONS(4048), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(4052), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, - anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(3864), 1, sym_string, - STATE(3394), 1, + STATE(3868), 1, sym__primary_type, - STATE(3397), 1, + STATE(3869), 1, sym__number, - STATE(5199), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3489), 7, + STATE(4151), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191499,7 +191449,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191513,75 +191463,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78003] = 32, + [77791] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(764), 1, + anon_sym_QMARK, + ACTIONS(766), 1, + anon_sym_AMP, + ACTIONS(768), 1, + anon_sym_PIPE, + ACTIONS(790), 1, + anon_sym_keyof, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, - sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1880), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1886), 1, anon_sym_new, - ACTIONS(4485), 1, - anon_sym_QMARK, - ACTIONS(4487), 1, - anon_sym_AMP, - ACTIONS(4489), 1, - anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(1896), 1, anon_sym_readonly, - ACTIONS(4495), 1, - anon_sym_keyof, - STATE(3890), 1, + ACTIONS(2920), 1, + anon_sym_LT, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5244), 1, sym_type_parameters, - STATE(5769), 1, + STATE(5715), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(3875), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191589,7 +191539,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191603,75 +191553,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78125] = 32, + [77913] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5188), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5769), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4373), 7, + STATE(4772), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191679,7 +191629,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191693,75 +191643,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78247] = 32, + [78035] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 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, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(736), 1, - anon_sym_keyof, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, - anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + ACTIONS(4352), 1, + anon_sym_typeof, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, + anon_sym_QMARK, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3967), 7, + STATE(4769), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191769,7 +191719,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191783,75 +191733,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78369] = 32, + [78157] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4525), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4529), 1, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4539), 1, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3958), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5228), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5080), 7, + STATE(4906), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -191859,7 +191809,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -191873,74 +191823,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78491] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2209), 1, - anon_sym_EQ, - ACTIONS(2211), 1, - anon_sym_EQ_GT, - ACTIONS(2278), 1, - anon_sym_extends, - ACTIONS(3856), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 13, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 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, - [78567] = 32, + [78279] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -191949,66 +191832,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4481), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4483), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4485), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4487), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(4489), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(4493), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4495), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5188), 1, + STATE(5262), 1, sym_type_parameters, - STATE(5769), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4394), 7, + STATE(3926), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192016,7 +191899,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192030,7 +191913,7 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78689] = 32, + [78401] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(698), 1, @@ -192039,66 +191922,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_infer, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(2079), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(2087), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(2089), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(2107), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(2109), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(4384), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4386), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4388), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4390), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4392), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4396), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4398), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3885), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, STATE(3954), 1, + sym_string, + STATE(3959), 1, sym__primary_type, - STATE(3963), 1, + STATE(3960), 1, sym__number, - STATE(5164), 1, + STATE(5262), 1, sym_type_parameters, - STATE(5505), 1, + STATE(5512), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5671), 1, sym_nested_identifier, - ACTIONS(2028), 2, + ACTIONS(2111), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(3254), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(2101), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3956), 7, + STATE(4355), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192106,7 +191989,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3956), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192120,75 +192003,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78811] = 32, + [78523] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(734), 1, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4354), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4358), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4360), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4364), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5164), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5505), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4104), 7, + STATE(4730), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192196,7 +192079,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192210,75 +192093,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [78933] = 32, + [78645] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_QMARK, - ACTIONS(736), 1, - anon_sym_keyof, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1996), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(2002), 1, + ACTIONS(3966), 1, anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3972), 1, + anon_sym_new, + ACTIONS(3974), 1, + anon_sym_QMARK, + ACTIONS(3976), 1, + anon_sym_AMP, + ACTIONS(3978), 1, + anon_sym_PIPE, + ACTIONS(3984), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, + ACTIONS(3990), 1, anon_sym_readonly, - STATE(3890), 1, + ACTIONS(3992), 1, + anon_sym_infer, + ACTIONS(3994), 1, + anon_sym_keyof, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3958), 1, - sym__primary_type, - STATE(3963), 1, + STATE(2458), 1, sym__number, - STATE(5228), 1, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5457), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5527), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5098), 7, + STATE(3530), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192286,7 +192169,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192300,75 +192183,165 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79055] = 32, + [78767] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3960), 1, + sym_identifier, + ACTIONS(3962), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(3964), 1, + anon_sym_LBRACE, + ACTIONS(3966), 1, + anon_sym_typeof, + ACTIONS(3968), 1, + anon_sym_LPAREN, + ACTIONS(3970), 1, + anon_sym_LBRACK, + ACTIONS(3972), 1, + anon_sym_new, + ACTIONS(3974), 1, anon_sym_QMARK, - ACTIONS(716), 1, + ACTIONS(3976), 1, anon_sym_AMP, - ACTIONS(718), 1, + ACTIONS(3978), 1, anon_sym_PIPE, - ACTIONS(734), 1, + ACTIONS(3984), 1, + sym_number, + ACTIONS(3986), 1, + sym_this, + ACTIONS(3990), 1, + anon_sym_readonly, + ACTIONS(3992), 1, anon_sym_infer, - ACTIONS(736), 1, + ACTIONS(3994), 1, anon_sym_keyof, - ACTIONS(738), 1, + ACTIONS(3996), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + STATE(2384), 1, + sym_nested_type_identifier, + STATE(2458), 1, + sym__number, + STATE(2459), 1, + sym__primary_type, + STATE(2466), 1, + sym_string, + STATE(5457), 1, + sym_type_parameters, + STATE(5527), 1, + sym_formal_parameters, + STATE(5840), 1, + sym_nested_identifier, + ACTIONS(3980), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, + anon_sym_void, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + STATE(2526), 7, + sym__type, + sym_constructor_type, + sym_infer_type, + sym_readonly_type, + sym_union_type, + sym_intersection_type, + sym_function_type, + STATE(2465), 13, + sym_conditional_type, + sym_generic_type, + sym_type_query, + sym_index_type_query, + sym_lookup_type, + sym_literal_type, + sym_existential_type, + sym_flow_maybe_type, + sym_parenthesized_type, + sym_predefined_type, + sym_object_type, + sym_array_type, + sym_tuple_type, + [78889] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, + anon_sym_DQUOTE, + ACTIONS(592), 1, + anon_sym_SQUOTE, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(3883), 1, + anon_sym_STAR, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(2008), 1, - anon_sym_new, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, - anon_sym_LT, - STATE(3890), 1, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4286), 1, + anon_sym_typeof, + ACTIONS(4290), 1, + anon_sym_QMARK, + ACTIONS(4298), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(2176), 1, sym_string, - STATE(3954), 1, - sym__primary_type, - STATE(3963), 1, + STATE(2179), 1, sym__number, - STATE(5251), 1, + STATE(2232), 1, + sym__primary_type, + STATE(5238), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3909), 2, + sym_true, + sym_false, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3956), 7, + STATE(5120), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192376,7 +192349,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192390,75 +192363,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79177] = 32, + [79011] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(716), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(718), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(736), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3978), 7, + STATE(4787), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192466,7 +192439,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192480,75 +192453,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79299] = 32, + [79133] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4022), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4024), 1, - anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4048), 1, - sym_this, - ACTIONS(4052), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(3864), 1, sym_string, - STATE(3394), 1, + STATE(3868), 1, sym__primary_type, - STATE(3397), 1, + STATE(3869), 1, sym__number, - STATE(5199), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5819), 1, sym_formal_parameters, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3346), 7, + STATE(4843), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192556,7 +192529,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192570,75 +192543,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79421] = 32, + [79255] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(4022), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(3905), 1, + sym_number, + ACTIONS(3907), 1, + sym_this, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4134), 1, + anon_sym_typeof, + ACTIONS(4136), 1, anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(4138), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(4140), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(4142), 1, anon_sym_PIPE, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4048), 1, - sym_this, - ACTIONS(4052), 1, + ACTIONS(4144), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4146), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(2176), 1, sym_string, - STATE(3394), 1, + STATE(2178), 1, sym__primary_type, - STATE(3397), 1, + STATE(2179), 1, sym__number, - STATE(5199), 1, + STATE(5218), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5469), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5761), 1, sym_formal_parameters, - ACTIONS(4042), 2, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3504), 7, + STATE(2302), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192646,7 +192619,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192660,75 +192633,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79543] = 32, + [79377] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, + ACTIONS(1024), 1, + anon_sym_DQUOTE, + ACTIONS(1026), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4057), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(4059), 1, + anon_sym_STAR, + ACTIONS(4061), 1, anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(4065), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(4067), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(4081), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(4083), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4525), 1, + ACTIONS(4089), 1, + anon_sym_infer, + ACTIONS(4093), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4196), 1, anon_sym_typeof, - ACTIONS(4527), 1, + ACTIONS(4198), 1, anon_sym_new, - ACTIONS(4529), 1, + ACTIONS(4200), 1, anon_sym_QMARK, - ACTIONS(4531), 1, + ACTIONS(4202), 1, anon_sym_AMP, - ACTIONS(4533), 1, + ACTIONS(4204), 1, anon_sym_PIPE, - ACTIONS(4537), 1, + ACTIONS(4206), 1, anon_sym_readonly, - ACTIONS(4539), 1, + ACTIONS(4208), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(2700), 1, sym_nested_type_identifier, - STATE(3944), 1, - sym_string, - STATE(3954), 1, - sym__primary_type, - STATE(3963), 1, + STATE(2929), 1, sym__number, - STATE(5164), 1, + STATE(2934), 1, + sym__primary_type, + STATE(2957), 1, + sym_string, + STATE(5183), 1, sym_type_parameters, - STATE(5505), 1, + STATE(5738), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5825), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + ACTIONS(4077), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(4085), 2, + sym_true, + sym_false, + ACTIONS(4079), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(4106), 7, + STATE(3244), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192736,7 +192709,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2942), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192750,140 +192723,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79665] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3843), 1, - anon_sym_EQ_GT, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(4616), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(3800), 15, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - 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(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [79737] = 32, + [79499] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 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, + ACTIONS(610), 1, anon_sym_infer, - ACTIONS(736), 1, - anon_sym_keyof, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4344), 1, + anon_sym_keyof, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, - sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(3879), 1, + sym__primary_type, + STATE(5238), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3941), 7, + STATE(5157), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192891,7 +192799,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192905,75 +192813,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79859] = 32, + [79621] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(1362), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4022), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4024), 1, - anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4036), 1, - anon_sym_QMARK, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4048), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4056), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, + anon_sym_new, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4338), 1, + anon_sym_AMP, + ACTIONS(4340), 1, + anon_sym_PIPE, + ACTIONS(4342), 1, + anon_sym_readonly, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(3864), 1, sym_string, - STATE(3397), 1, - sym__number, - STATE(3451), 1, + STATE(3868), 1, sym__primary_type, - STATE(5228), 1, + STATE(3869), 1, + sym__number, + STATE(5283), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5569), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, + STATE(5819), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5106), 7, + STATE(3880), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -192981,7 +192889,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -192995,75 +192903,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [79981] = 32, + [79743] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4022), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4024), 1, - anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4334), 1, anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(4336), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(4338), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(4340), 1, anon_sym_PIPE, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4048), 1, - sym_this, - ACTIONS(4052), 1, + ACTIONS(4342), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(3864), 1, sym_string, - STATE(3394), 1, + STATE(3868), 1, sym__primary_type, - STATE(3397), 1, + STATE(3869), 1, sym__number, - STATE(5199), 1, + STATE(5283), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5819), 1, sym_formal_parameters, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3448), 7, + STATE(4479), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193071,7 +192979,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193085,75 +192993,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80103] = 32, + [79865] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(674), 1, + anon_sym_AMP, + ACTIONS(676), 1, + anon_sym_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1674), 1, + anon_sym_new, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4022), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4024), 1, - anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, - anon_sym_new, - ACTIONS(4036), 1, - anon_sym_QMARK, - ACTIONS(4038), 1, - anon_sym_AMP, - ACTIONS(4040), 1, - anon_sym_PIPE, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4048), 1, + ACTIONS(1894), 1, sym_this, - ACTIONS(4052), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4330), 1, + anon_sym_typeof, + ACTIONS(4336), 1, + anon_sym_QMARK, + ACTIONS(4344), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(3864), 1, sym_string, - STATE(3394), 1, - sym__primary_type, - STATE(3397), 1, + STATE(3869), 1, sym__number, - STATE(5199), 1, + STATE(3884), 1, + sym__primary_type, + STATE(5238), 1, sym_type_parameters, - STATE(5569), 1, + STATE(5716), 1, sym_nested_identifier, - STATE(5821), 1, + STATE(5813), 1, sym_formal_parameters, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3442), 7, + STATE(5157), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193161,7 +193069,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193175,75 +193083,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80225] = 32, + [79987] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(1362), 1, + ACTIONS(540), 1, + anon_sym_STAR, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1664), 1, + anon_sym_LPAREN, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(4022), 1, + ACTIONS(1692), 1, + sym_number, + ACTIONS(1874), 1, sym_identifier, - ACTIONS(4024), 1, - anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, - anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(1882), 1, anon_sym_LBRACK, - ACTIONS(4034), 1, + ACTIONS(1894), 1, + sym_this, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(4114), 1, + anon_sym_typeof, + ACTIONS(4116), 1, anon_sym_new, - ACTIONS(4036), 1, + ACTIONS(4118), 1, anon_sym_QMARK, - ACTIONS(4038), 1, + ACTIONS(4120), 1, anon_sym_AMP, - ACTIONS(4040), 1, + ACTIONS(4122), 1, anon_sym_PIPE, - ACTIONS(4046), 1, - sym_number, - ACTIONS(4048), 1, - sym_this, - ACTIONS(4052), 1, + ACTIONS(4126), 1, anon_sym_readonly, - ACTIONS(4054), 1, - anon_sym_infer, - ACTIONS(4056), 1, + ACTIONS(4130), 1, anon_sym_keyof, - ACTIONS(4058), 1, - anon_sym_LBRACE_PIPE, - STATE(3145), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(3864), 1, sym_string, - STATE(3394), 1, + STATE(3868), 1, sym__primary_type, - STATE(3397), 1, + STATE(3869), 1, sym__number, - STATE(5199), 1, + STATE(5363), 1, sym_type_parameters, - STATE(5569), 1, - sym_nested_identifier, - STATE(5821), 1, + STATE(5610), 1, sym_formal_parameters, - ACTIONS(4042), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4050), 2, + STATE(5716), 1, + sym_nested_identifier, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(2924), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3439), 7, + STATE(3860), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193251,7 +193159,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193265,75 +193173,139 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80347] = 32, + [80109] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(610), 1, - anon_sym_infer, - ACTIONS(674), 1, + ACTIONS(2193), 1, + anon_sym_EQ_GT, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1672), 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, + 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(1655), 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, - ACTIONS(676), 1, + anon_sym_CARET, anon_sym_PIPE, - ACTIONS(1362), 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, + [80179] = 32, + ACTIONS(3), 1, + sym_comment, + ACTIONS(590), 1, anon_sym_DQUOTE, - ACTIONS(1364), 1, + ACTIONS(592), 1, anon_sym_SQUOTE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4022), 1, + ACTIONS(3881), 1, sym_identifier, - ACTIONS(4024), 1, + ACTIONS(3883), 1, anon_sym_STAR, - ACTIONS(4026), 1, + ACTIONS(3885), 1, anon_sym_LBRACE, - ACTIONS(4028), 1, - anon_sym_typeof, - ACTIONS(4030), 1, + ACTIONS(3889), 1, anon_sym_LPAREN, - ACTIONS(4032), 1, + ACTIONS(3891), 1, anon_sym_LBRACK, - ACTIONS(4036), 1, - anon_sym_QMARK, - ACTIONS(4046), 1, + ACTIONS(3905), 1, sym_number, - ACTIONS(4048), 1, + ACTIONS(3907), 1, sym_this, - ACTIONS(4056), 1, - anon_sym_keyof, - ACTIONS(4058), 1, + ACTIONS(3913), 1, + anon_sym_infer, + ACTIONS(3917), 1, anon_sym_LBRACE_PIPE, - STATE(3145), 1, + ACTIONS(4134), 1, + anon_sym_typeof, + ACTIONS(4136), 1, + anon_sym_new, + ACTIONS(4138), 1, + anon_sym_QMARK, + ACTIONS(4140), 1, + anon_sym_AMP, + ACTIONS(4142), 1, + anon_sym_PIPE, + ACTIONS(4144), 1, + anon_sym_readonly, + ACTIONS(4146), 1, + anon_sym_keyof, + STATE(2160), 1, sym_nested_type_identifier, - STATE(3383), 1, + STATE(2176), 1, sym_string, - STATE(3397), 1, - sym__number, - STATE(3438), 1, + STATE(2178), 1, sym__primary_type, - STATE(5228), 1, + STATE(2179), 1, + sym__number, + STATE(5218), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5569), 1, + STATE(5469), 1, sym_nested_identifier, - ACTIONS(4042), 2, + STATE(5761), 1, + sym_formal_parameters, + ACTIONS(3901), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4050), 2, + ACTIONS(3909), 2, sym_true, sym_false, - ACTIONS(4044), 6, + ACTIONS(3903), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5106), 7, + STATE(3578), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193341,7 +193313,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3386), 13, + STATE(2177), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193355,75 +193327,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80469] = 32, + [80301] = 32, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(540), 1, anon_sym_STAR, - ACTIONS(714), 1, + ACTIONS(610), 1, + anon_sym_infer, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(672), 1, anon_sym_QMARK, - ACTIONS(716), 1, + ACTIONS(674), 1, anon_sym_AMP, - ACTIONS(718), 1, + ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(734), 1, - anon_sym_infer, - ACTIONS(736), 1, + ACTIONS(692), 1, anon_sym_keyof, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2002), 1, + ACTIONS(1662), 1, anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2008), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2030), 1, - anon_sym_readonly, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3890), 1, + ACTIONS(3810), 1, + anon_sym_readonly, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3954), 1, + STATE(3868), 1, sym__primary_type, - STATE(3963), 1, + STATE(3869), 1, sym__number, - STATE(5251), 1, + STATE(5238), 1, sym_type_parameters, - STATE(5709), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5813), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(3977), 7, + STATE(4805), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193431,7 +193403,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193445,75 +193417,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80591] = 32, + [80423] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(81), 1, + anon_sym_DQUOTE, + ACTIONS(83), 1, + anon_sym_SQUOTE, ACTIONS(610), 1, anon_sym_infer, ACTIONS(674), 1, anon_sym_AMP, ACTIONS(676), 1, anon_sym_PIPE, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(714), 1, - anon_sym_QMARK, - ACTIONS(736), 1, - anon_sym_keyof, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1638), 1, + ACTIONS(1674), 1, anon_sym_new, - ACTIONS(1996), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3810), 1, + anon_sym_readonly, + ACTIONS(3960), 1, sym_identifier, - ACTIONS(2000), 1, + ACTIONS(3962), 1, + anon_sym_STAR, + ACTIONS(3964), 1, anon_sym_LBRACE, - ACTIONS(2002), 1, - anon_sym_typeof, - ACTIONS(2004), 1, + ACTIONS(3968), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, + ACTIONS(3970), 1, anon_sym_LBRACK, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(3984), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(3986), 1, sym_this, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - STATE(3890), 1, + ACTIONS(3996), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(4162), 1, + anon_sym_typeof, + ACTIONS(4166), 1, + anon_sym_QMARK, + ACTIONS(4174), 1, + anon_sym_keyof, + STATE(2384), 1, sym_nested_type_identifier, - STATE(3935), 1, + STATE(2395), 1, sym__primary_type, - STATE(3944), 1, - sym_string, - STATE(3963), 1, + STATE(2458), 1, sym__number, - STATE(5228), 1, + STATE(2466), 1, + sym_string, + STATE(5238), 1, sym_type_parameters, - STATE(5483), 1, + STATE(5813), 1, sym_formal_parameters, - STATE(5804), 1, + STATE(5840), 1, sym_nested_identifier, - ACTIONS(2028), 2, - sym_true, - sym_false, - ACTIONS(3236), 2, + ACTIONS(3980), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(3988), 2, + sym_true, + sym_false, + ACTIONS(3982), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5098), 7, + STATE(5135), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193521,7 +193493,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(2465), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193535,75 +193507,75 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80713] = 32, + [80545] = 32, ACTIONS(3), 1, sym_comment, + ACTIONS(540), 1, + anon_sym_STAR, ACTIONS(610), 1, anon_sym_infer, - ACTIONS(674), 1, - anon_sym_AMP, - ACTIONS(676), 1, - anon_sym_PIPE, - ACTIONS(698), 1, - anon_sym_STAR, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(1638), 1, - anon_sym_new, - ACTIONS(1996), 1, - sym_identifier, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(2004), 1, + ACTIONS(1664), 1, anon_sym_LPAREN, - ACTIONS(2006), 1, - anon_sym_LBRACK, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2024), 1, + ACTIONS(1692), 1, sym_number, - ACTIONS(2026), 1, + ACTIONS(1874), 1, + sym_identifier, + ACTIONS(1878), 1, + anon_sym_LBRACE, + ACTIONS(1882), 1, + anon_sym_LBRACK, + ACTIONS(1894), 1, sym_this, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3794), 1, - anon_sym_readonly, - ACTIONS(4525), 1, + ACTIONS(4352), 1, anon_sym_typeof, - ACTIONS(4529), 1, + ACTIONS(4354), 1, + anon_sym_new, + ACTIONS(4356), 1, anon_sym_QMARK, - ACTIONS(4539), 1, + ACTIONS(4358), 1, + anon_sym_AMP, + ACTIONS(4360), 1, + anon_sym_PIPE, + ACTIONS(4364), 1, + anon_sym_readonly, + ACTIONS(4366), 1, anon_sym_keyof, - STATE(3890), 1, + STATE(3841), 1, sym_nested_type_identifier, - STATE(3935), 1, - sym__primary_type, - STATE(3944), 1, + STATE(3864), 1, sym_string, - STATE(3963), 1, + STATE(3868), 1, + sym__primary_type, + STATE(3869), 1, sym__number, - STATE(5228), 1, + STATE(5290), 1, sym_type_parameters, - STATE(5483), 1, - sym_formal_parameters, - STATE(5804), 1, + STATE(5716), 1, sym_nested_identifier, - ACTIONS(2028), 2, + STATE(5810), 1, + sym_formal_parameters, + ACTIONS(1696), 2, sym_true, sym_false, - ACTIONS(3236), 2, + ACTIONS(2924), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(2018), 6, + ACTIONS(1686), 6, anon_sym_void, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - STATE(5080), 7, + STATE(4596), 7, sym__type, sym_constructor_type, sym_infer_type, @@ -193611,7 +193583,7 @@ static uint16_t ts_small_parse_table[] = { sym_union_type, sym_intersection_type, sym_function_type, - STATE(3945), 13, + STATE(3867), 13, sym_conditional_type, sym_generic_type, sym_type_query, @@ -193625,118 +193597,14 @@ static uint16_t ts_small_parse_table[] = { sym_object_type, sym_array_type, sym_tuple_type, - [80835] = 31, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3586), 1, - anon_sym_LBRACK, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3896), 1, - anon_sym_STAR, - ACTIONS(4620), 1, - anon_sym_export, - ACTIONS(4624), 1, - anon_sym_async, - ACTIONS(4626), 1, - anon_sym_static, - ACTIONS(4628), 1, - anon_sym_readonly, - STATE(3794), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(3904), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4622), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4630), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4632), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3876), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5152), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - STATE(4399), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4618), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [80954] = 6, + [80667] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2209), 1, + ACTIONS(4523), 1, anon_sym_EQ, - ACTIONS(2211), 1, + ACTIONS(4565), 1, anon_sym_EQ_GT, - ACTIONS(1636), 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(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193752,48 +193620,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 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, - [81023] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 14, + ACTIONS(3794), 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, @@ -193804,26 +193637,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -193842,10 +193660,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81098] = 3, + [80736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3482), 24, + ACTIONS(3476), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -193870,7 +193688,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3484), 31, + ACTIONS(3478), 31, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -193902,77 +193720,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [81161] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2211), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(1636), 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(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 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, - [81230] = 6, + [80799] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(4458), 1, anon_sym_EQ, - ACTIONS(4342), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -193988,9 +193741,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -194004,9 +193756,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(3796), 22, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(3790), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -194028,12 +193782,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81299] = 5, + [80866] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(4571), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194049,10 +193805,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194065,10 +193822,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(3796), 23, + ACTIONS(3790), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -194090,19 +193845,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81366] = 7, + [80935] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 1, + ACTIONS(4458), 1, anon_sym_EQ, - ACTIONS(2070), 1, + ACTIONS(4500), 1, anon_sym_EQ_GT, - ACTIONS(3792), 1, - sym_identifier, - ACTIONS(1636), 13, - sym__automatic_semicolon, + ACTIONS(3794), 15, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194110,10 +193863,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194129,9 +193884,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, + ACTIONS(3790), 23, anon_sym_STAR, - anon_sym_as, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -194153,27 +193908,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [81437] = 9, + [81004] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 1, + ACTIONS(1652), 1, anon_sym_EQ, - ACTIONS(2225), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(3856), 1, - anon_sym_LBRACK, - ACTIONS(2278), 2, + ACTIONS(2967), 1, + anon_sym_QMARK, + ACTIONS(1659), 3, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 13, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(1672), 13, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -194184,7 +193935,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194200,19 +193951,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(1655), 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, @@ -194220,12 +193973,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81512] = 5, + [81077] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194241,9 +193994,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(3794), 16, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -194257,37 +194009,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, - ACTIONS(3796), 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, - [81579] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3780), 24, + anon_sym_LBRACE_PIPE, + ACTIONS(3790), 23, anon_sym_STAR, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -194310,49 +194035,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3782), 31, - 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_extends, - anon_sym_LBRACE_PIPE, - [81642] = 6, + [81144] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(4445), 1, + ACTIONS(1992), 1, anon_sym_EQ_GT, - ACTIONS(3800), 15, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(3812), 1, + sym_identifier, + ACTIONS(1672), 13, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194360,12 +194055,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194381,9 +194074,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 23, + ACTIONS(1655), 24, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -194405,34 +194098,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81711] = 6, + anon_sym_instanceof, + [81215] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1938), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(4500), 1, + anon_sym_EQ_GT, + ACTIONS(3794), 15, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194444,38 +194121,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 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, - [81780] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1954), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(1640), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194491,25 +194138,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, - 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, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(3790), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -194531,14 +194162,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81849] = 6, + [81284] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(4595), 1, + ACTIONS(4565), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194554,11 +194185,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -194571,7 +194202,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194594,14 +194225,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81918] = 6, + [81353] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1884), 1, + ACTIONS(4571), 1, anon_sym_EQ_GT, - ACTIONS(2205), 1, + ACTIONS(4600), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194617,12 +194248,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(3794), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -194634,7 +194265,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194657,47 +194288,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [81987] = 6, + [81422] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(4445), 1, - anon_sym_EQ_GT, - ACTIONS(3800), 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(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 23, + ACTIONS(3774), 24, anon_sym_STAR, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -194720,14 +194316,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82056] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(4595), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(3776), 31, + 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, @@ -194743,12 +194338,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - 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_extends, + anon_sym_LBRACE_PIPE, + [81485] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(2230), 1, + anon_sym_EQ_GT, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(2294), 2, anon_sym_COMMA, + anon_sym_extends, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 13, + anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -194759,13 +194378,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 19, 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, @@ -194773,9 +194406,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, @@ -194783,31 +194414,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82125] = 12, + [81560] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(3866), 1, - anon_sym_COMMA, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4639), 1, + ACTIONS(3867), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3817), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 11, + ACTIONS(3919), 1, + anon_sym_EQ, + ACTIONS(4445), 1, + anon_sym_QMARK, + ACTIONS(4442), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3794), 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, @@ -194817,7 +194441,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194833,18 +194457,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(3790), 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, @@ -194852,12 +194479,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82206] = 5, + [81633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4330), 1, + ACTIONS(4519), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194873,11 +194500,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(3794), 17, + sym__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, @@ -194889,9 +194517,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -194914,14 +194541,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82273] = 6, + [81700] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(2224), 1, anon_sym_EQ, - ACTIONS(1938), 1, + ACTIONS(2226), 1, anon_sym_EQ_GT, - ACTIONS(1640), 15, + ACTIONS(1672), 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(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -194937,25 +194580,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1655), 23, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -194977,26 +194604,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82342] = 9, + [81769] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1634), 1, - anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4608), 1, anon_sym_EQ, - ACTIONS(2278), 1, + ACTIONS(4610), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3859), 2, + ACTIONS(3830), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3856), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(1636), 12, + ACTIONS(3794), 11, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -195006,7 +194637,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195022,12 +194653,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 20, + ACTIONS(3790), 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, @@ -195043,14 +194672,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82417] = 6, + [81848] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(1884), 1, anon_sym_EQ_GT, - ACTIONS(2042), 1, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195066,7 +194695,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(1672), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -195083,7 +194712,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195106,16 +194735,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82486] = 7, + [81917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 1, + ACTIONS(3786), 24, + anon_sym_STAR, anon_sym_EQ, - ACTIONS(4607), 1, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, - ACTIONS(4610), 1, - anon_sym_of, - ACTIONS(3810), 15, + 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(3788), 31, + 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, @@ -195131,15 +194785,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 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, @@ -195148,106 +194793,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3796), 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, - [82557] = 31, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [81980] = 31, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3586), 1, + ACTIONS(3584), 1, anon_sym_LBRACK, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4620), 1, + ACTIONS(4615), 1, anon_sym_export, - ACTIONS(4624), 1, + ACTIONS(4619), 1, anon_sym_async, - ACTIONS(4626), 1, + ACTIONS(4621), 1, anon_sym_static, - ACTIONS(4628), 1, + ACTIONS(4623), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3904), 2, + ACTIONS(3946), 2, sym_number, sym_private_property_identifier, - ACTIONS(4622), 2, + ACTIONS(4617), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4630), 2, + ACTIONS(4625), 2, anon_sym_get, anon_sym_set, - ACTIONS(4632), 3, + ACTIONS(4627), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3876), 3, + STATE(3889), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5152), 3, + STATE(5260), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - STATE(4417), 6, + STATE(4326), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4618), 10, + ACTIONS(4613), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -195258,24 +194883,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [82676] = 9, + [82099] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4636), 1, + ACTIONS(2226), 1, anon_sym_EQ_GT, - ACTIONS(4642), 1, + ACTIONS(2228), 1, anon_sym_EQ, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 14, + ACTIONS(1672), 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, @@ -195285,8 +194905,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, + anon_sym_LBRACE_PIPE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195302,10 +194922,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(1655), 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, @@ -195324,14 +194946,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82751] = 6, + [82168] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(4416), 1, + ACTIONS(4591), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 14, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195347,12 +194990,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - sym__automatic_semicolon, - anon_sym_as, + ACTIONS(3790), 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, + [82243] = 31, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(3580), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(3584), 1, + anon_sym_LBRACK, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(4615), 1, + anon_sym_export, + ACTIONS(4619), 1, + anon_sym_async, + ACTIONS(4621), 1, + anon_sym_static, + ACTIONS(4623), 1, + anon_sym_readonly, + STATE(3786), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(3946), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4617), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4625), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4627), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3889), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5260), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + STATE(4394), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4613), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [82362] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1670), 1, + anon_sym_EQ_GT, + ACTIONS(1902), 1, + anon_sym_EQ, + ACTIONS(2294), 1, + anon_sym_extends, + ACTIONS(3846), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3843), 3, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(1672), 12, + anon_sym_as, + anon_sym_LPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -195363,8 +195129,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 20, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195377,9 +195158,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, @@ -195387,30 +195166,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82820] = 11, + [82437] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, + ACTIONS(3796), 1, anon_sym_LT, - ACTIONS(4636), 1, - anon_sym_EQ_GT, - ACTIONS(4642), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4608), 1, anon_sym_EQ, - STATE(3853), 1, + ACTIONS(4610), 1, + anon_sym_EQ_GT, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3817), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3823), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3800), 11, + ACTIONS(3794), 14, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -195420,7 +195193,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195436,10 +195210,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 18, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_AMP_AMP, @@ -195447,7 +195222,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, @@ -195455,12 +195232,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82899] = 5, + [82512] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(4132), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(4595), 1, + anon_sym_in, + ACTIONS(4598), 1, + anon_sym_of, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195476,7 +195257,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(3794), 16, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -195493,11 +195274,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -195517,30 +195296,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [82966] = 7, + [82583] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 1, - anon_sym_EQ, - ACTIONS(2070), 1, + ACTIONS(1988), 1, anon_sym_EQ_GT, - ACTIONS(4644), 1, - sym_identifier, - ACTIONS(1636), 13, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195556,9 +195319,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 24, - anon_sym_STAR, + ACTIONS(1672), 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(1655), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -195580,15 +195359,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [83037] = 6, + [82652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(1924), 1, anon_sym_EQ, - ACTIONS(4342), 1, + ACTIONS(1926), 1, anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195604,11 +195382,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(1672), 16, + sym__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, @@ -195620,8 +195398,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - ACTIONS(3796), 22, + anon_sym_extends, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195644,10 +195422,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83106] = 3, + [82721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3494), 24, + ACTIONS(3770), 24, anon_sym_STAR, anon_sym_EQ, anon_sym_LBRACE, @@ -195672,7 +195450,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3496), 31, + ACTIONS(3772), 31, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -195704,36 +195482,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [83169] = 10, + [82784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4565), 1, - anon_sym_RBRACK, - ACTIONS(4591), 1, - anon_sym_EQ_GT, - ACTIONS(4646), 1, + ACTIONS(1920), 1, anon_sym_EQ, - ACTIONS(4649), 1, - anon_sym_COMMA, - ACTIONS(4651), 1, - anon_sym_in, - ACTIONS(4653), 1, - anon_sym_COLON, - ACTIONS(3800), 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(3810), 15, + ACTIONS(1922), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195749,9 +195505,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(1672), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -195771,34 +195545,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83246] = 9, + [82853] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 1, - anon_sym_RBRACK, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(3045), 1, + ACTIONS(1986), 1, anon_sym_EQ, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(3050), 1, - anon_sym_COLON, - ACTIONS(1636), 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(1640), 15, + ACTIONS(1988), 1, + anon_sym_EQ_GT, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195814,7 +195568,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1672), 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(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -195837,24 +195608,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83321] = 9, + [82922] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(1652), 1, anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3830), 1, - anon_sym_LT, - ACTIONS(4636), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(3800), 14, - anon_sym_as, + ACTIONS(2294), 1, + anon_sym_extends, + ACTIONS(3843), 1, + anon_sym_LBRACK, + ACTIONS(3956), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3846), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 12, + 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, @@ -195864,8 +195639,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195881,21 +195655,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(1655), 19, 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, @@ -195903,38 +195675,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83396] = 10, + [82999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(4368), 1, anon_sym_EQ, - ACTIONS(1634), 1, - anon_sym_EQ_GT, - ACTIONS(2278), 1, - anon_sym_extends, - ACTIONS(3856), 1, - anon_sym_LBRACK, - ACTIONS(4018), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3859), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 12, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -195950,19 +195696,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(3794), 17, + 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, + anon_sym_extends, + ACTIONS(3790), 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, @@ -195970,23 +195737,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83473] = 9, + [83066] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(2207), 1, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(3856), 1, + ACTIONS(3843), 1, anon_sym_LBRACK, - ACTIONS(2278), 2, + ACTIONS(2294), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(3859), 3, + ACTIONS(3846), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1636), 13, + ACTIONS(1672), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_RBRACK, @@ -196000,7 +195767,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196016,7 +195783,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(1655), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196036,12 +195803,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83548] = 5, + [83141] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(1992), 1, + anon_sym_EQ_GT, + ACTIONS(4629), 1, + sym_identifier, + ACTIONS(1672), 13, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196057,26 +195842,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, - 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, - anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(1655), 24, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -196098,56 +195866,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83615] = 3, + anon_sym_instanceof, + [83212] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3784), 24, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(3796), 1, anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3862), 1, + anon_sym_COMMA, + ACTIONS(4631), 1, + anon_sym_EQ, + ACTIONS(4633), 1, + anon_sym_EQ_GT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3827), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3830), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_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(3786), 31, + ACTIONS(3794), 11, 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, @@ -196156,16 +195901,7 @@ 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, - [83678] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4414), 1, - anon_sym_EQ, - ACTIONS(4416), 1, - anon_sym_EQ_GT, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196181,29 +195917,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - 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, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 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, @@ -196211,9 +195928,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, @@ -196221,12 +195936,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83747] = 5, + [83293] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, + ACTIONS(4470), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196242,7 +195957,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 17, + ACTIONS(3794), 17, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -196260,7 +195975,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196283,24 +195998,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83814] = 9, + [83360] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, + ACTIONS(3799), 1, anon_sym_DOT, - ACTIONS(3830), 1, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(3821), 1, anon_sym_LT, - ACTIONS(4599), 1, + ACTIONS(4610), 1, anon_sym_EQ_GT, - STATE(2226), 1, + STATE(2229), 1, sym_type_arguments, - ACTIONS(3800), 14, + ACTIONS(3794), 14, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -196311,7 +196026,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196327,7 +196042,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196349,35 +196064,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [83889] = 9, + [83435] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(4372), 1, anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4599), 1, + ACTIONS(4525), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 14, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196393,35 +196087,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [83964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3788), 24, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(3794), 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(3790), 22, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -196443,46 +196127,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3790), 31, - 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_extends, - anon_sym_LBRACE_PIPE, - [84027] = 6, + [83504] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1952), 1, - anon_sym_EQ, - ACTIONS(1954), 1, + ACTIONS(1922), 1, anon_sym_EQ_GT, - ACTIONS(1640), 15, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196498,11 +196150,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, - sym__automatic_semicolon, + ACTIONS(1672), 16, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -196515,7 +196167,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196538,14 +196190,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84096] = 6, + [83573] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2072), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(2074), 1, + ACTIONS(3821), 1, + anon_sym_LT, + ACTIONS(4591), 1, anon_sym_EQ_GT, - ACTIONS(1640), 15, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(3794), 14, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196561,28 +196234,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 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(1619), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -196601,41 +196256,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84165] = 3, + [83648] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3772), 24, - anon_sym_STAR, + ACTIONS(1920), 1, anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(1922), 1, + anon_sym_EQ_GT, + ACTIONS(3843), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3846), 3, anon_sym_GT, - anon_sym_SLASH, - anon_sym_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(3774), 31, + ACTIONS(1672), 13, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_DOT, anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_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(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196651,27 +196301,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_extends, - anon_sym_LBRACE_PIPE, - [84228] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3776), 24, + ACTIONS(1655), 19, 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, @@ -196679,9 +196313,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, @@ -196689,13 +196321,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - ACTIONS(3778), 31, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + [83721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4523), 1, + anon_sym_EQ, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196711,6 +196342,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 17, + 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, @@ -196720,26 +196360,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [84291] = 8, + ACTIONS(3790), 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, + [83788] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1936), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(1938), 1, + ACTIONS(1984), 1, anon_sym_EQ_GT, - ACTIONS(3856), 3, + ACTIONS(2294), 1, anon_sym_COMMA, + ACTIONS(3843), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(3859), 3, + ACTIONS(3846), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1636), 13, + ACTIONS(1672), 13, anon_sym_as, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -196750,7 +196413,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196766,7 +196429,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(1655), 19, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -196786,26 +196449,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84364] = 9, + [83863] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, - anon_sym_EQ, - ACTIONS(2044), 1, + ACTIONS(1659), 1, + anon_sym_RBRACK, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(2278), 1, + ACTIONS(3029), 1, + anon_sym_EQ, + ACTIONS(3032), 1, anon_sym_COMMA, - ACTIONS(3856), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 13, + ACTIONS(3034), 1, + anon_sym_COLON, + ACTIONS(1672), 13, anon_sym_as, anon_sym_LPAREN, - anon_sym_RBRACK, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -196816,7 +196476,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196832,11 +196492,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(1655), 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, @@ -196844,7 +196505,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, @@ -196852,12 +196515,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84439] = 5, + [83938] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(1884), 1, + anon_sym_EQ_GT, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196873,11 +196538,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(1672), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -196889,10 +196555,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(3796), 23, + ACTIONS(1655), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -196914,12 +196578,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84506] = 5, + [84007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(4525), 1, + anon_sym_EQ_GT, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196935,8 +196601,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -196950,11 +196617,9 @@ 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, - ACTIONS(3796), 23, + anon_sym_implements, + ACTIONS(3790), 22, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -196976,14 +196641,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84573] = 6, + [84076] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2074), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(4372), 1, anon_sym_EQ, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -196999,7 +196662,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1636), 16, + ACTIONS(3794), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -197016,7 +196679,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - ACTIONS(1619), 22, + anon_sym_extends, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197039,20 +196703,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84642] = 8, + [84143] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, - anon_sym_EQ, - ACTIONS(1634), 1, + ACTIONS(4442), 1, + anon_sym_RBRACK, + ACTIONS(4604), 1, anon_sym_EQ_GT, - ACTIONS(2957), 1, - anon_sym_QMARK, - ACTIONS(1623), 3, + ACTIONS(4636), 1, + anon_sym_EQ, + ACTIONS(4639), 1, anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(4641), 1, + anon_sym_in, + ACTIONS(4643), 1, anon_sym_COLON, - ACTIONS(1636), 13, + ACTIONS(3794), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -197066,7 +196732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197082,13 +196748,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 21, + ACTIONS(3790), 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, @@ -197104,34 +196770,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84715] = 8, + [84220] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, - anon_sym_EQ_GT, - ACTIONS(3883), 1, + ACTIONS(4527), 1, anon_sym_EQ, - ACTIONS(4568), 1, - anon_sym_QMARK, - ACTIONS(4565), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3800), 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(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197147,13 +196791,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(3794), 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, + 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(3790), 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, @@ -197169,34 +196832,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84788] = 9, + [84287] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3805), 1, - anon_sym_DOT, - ACTIONS(3820), 1, - anon_sym_LT, - ACTIONS(4639), 1, + ACTIONS(1926), 1, anon_sym_EQ_GT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3800), 13, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197212,10 +196855,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(1672), 16, + 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, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -197234,47 +196895,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84862] = 6, + [84356] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, - anon_sym_EQ_GT, - ACTIONS(2227), 1, - anon_sym_EQ, - ACTIONS(1636), 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_extends, - ACTIONS(1640), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3782), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -197296,31 +196923,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [84930] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2205), 1, - anon_sym_EQ, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(3050), 1, - anon_sym_COLON, - ACTIONS(1636), 14, + ACTIONS(3784), 31, anon_sym_as, + anon_sym_COMMA, 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(1640), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197336,8 +196945,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 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_extends, + anon_sym_LBRACE_PIPE, + [84419] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3492), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -197359,33 +196983,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85000] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4589), 1, - anon_sym_EQ, - ACTIONS(4591), 1, - anon_sym_EQ_GT, - ACTIONS(4651), 1, - anon_sym_in, - ACTIONS(4653), 1, - anon_sym_COLON, - ACTIONS(3800), 14, + ACTIONS(3494), 31, anon_sym_as, + anon_sym_COMMA, 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(3810), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197401,43 +197005,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 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, - [85072] = 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_extends, + anon_sym_LBRACE_PIPE, + [84482] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1634), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(4610), 1, anon_sym_EQ_GT, - ACTIONS(1906), 1, + ACTIONS(4631), 1, anon_sym_EQ, - ACTIONS(1623), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(1636), 13, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 14, 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, @@ -197447,7 +197042,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197463,11 +197059,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -197486,48 +197081,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85142] = 7, + [84557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, - anon_sym_EQ_GT, - ACTIONS(4455), 1, - anon_sym_EQ, - ACTIONS(4655), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3800), 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(3810), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3778), 24, anon_sym_STAR, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -197549,12 +197109,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85212] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3780), 31, + 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, @@ -197570,13 +197131,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [84620] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 1, + anon_sym_EQ, + ACTIONS(4610), 1, + anon_sym_EQ_GT, + ACTIONS(3794), 15, 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_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -197587,7 +197164,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197610,20 +197203,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85278] = 7, + [84688] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, + ACTIONS(1982), 1, anon_sym_EQ, - ACTIONS(3871), 1, + ACTIONS(1984), 1, anon_sym_EQ_GT, - ACTIONS(4655), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3800), 13, + ACTIONS(1672), 15, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -197634,7 +197225,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + anon_sym_extends, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197650,7 +197242,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197673,14 +197265,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85348] = 6, + [84756] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2070), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(1990), 1, anon_sym_EQ, - ACTIONS(1636), 15, + ACTIONS(1992), 1, + anon_sym_EQ_GT, + ACTIONS(1672), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -197696,7 +197288,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197712,7 +197304,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197735,23 +197327,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85416] = 9, + [84824] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(3805), 1, + ACTIONS(2217), 1, + anon_sym_EQ_GT, + ACTIONS(3068), 1, + anon_sym_COLON, + ACTIONS(1672), 14, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(3830), 1, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 22, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, - ACTIONS(4639), 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, + [84894] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4589), 1, + anon_sym_EQ, + ACTIONS(4591), 1, anon_sym_EQ_GT, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(3800), 13, + ACTIONS(3794), 15, 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, @@ -197762,7 +197413,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197778,10 +197429,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -197800,17 +197452,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85490] = 7, + [84962] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3871), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(3883), 1, + ACTIONS(1902), 1, anon_sym_EQ, - ACTIONS(4565), 2, + ACTIONS(1659), 2, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3800), 13, + anon_sym_RBRACE, + ACTIONS(1672), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -197824,7 +197476,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197840,7 +197492,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197863,17 +197515,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85560] = 7, + [85032] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1616), 1, + ACTIONS(4587), 1, anon_sym_EQ, - ACTIONS(1634), 1, - anon_sym_EQ_GT, - ACTIONS(1623), 2, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 16, + anon_sym_as, anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(1636), 13, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3790), 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, + [85098] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3856), 1, + anon_sym_EQ, + ACTIONS(3867), 1, + anon_sym_EQ_GT, + ACTIONS(4442), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(3794), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -197887,7 +197600,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197903,7 +197616,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197926,18 +197639,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85630] = 6, + [85168] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(1652), 1, anon_sym_EQ, - ACTIONS(4599), 1, + ACTIONS(1670), 1, anon_sym_EQ_GT, - ACTIONS(3800), 15, + ACTIONS(1659), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(1672), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -197948,8 +197663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -197965,7 +197679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -197988,14 +197702,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85698] = 6, + [85238] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2044), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(4587), 1, anon_sym_EQ, - ACTIONS(1636), 15, + ACTIONS(4604), 1, + anon_sym_EQ_GT, + ACTIONS(4641), 1, + anon_sym_in, + ACTIONS(4643), 1, + anon_sym_COLON, + ACTIONS(3794), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -198010,8 +197728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198027,10 +197744,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -198050,14 +197766,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85766] = 6, + [85310] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_EQ, - ACTIONS(4599), 1, + ACTIONS(1984), 1, anon_sym_EQ_GT, - ACTIONS(3800), 15, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1672), 15, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -198073,7 +197789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198089,7 +197805,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198112,18 +197828,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85834] = 6, + [85378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(4575), 1, + ACTIONS(2046), 1, anon_sym_EQ_GT, - ACTIONS(3800), 15, - sym__automatic_semicolon, + ACTIONS(2219), 1, + anon_sym_EQ, + ACTIONS(1672), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198135,7 +197850,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + anon_sym_extends, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198151,7 +197867,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198174,25 +197890,144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85902] = 9, + [85446] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 1, + ACTIONS(2219), 1, anon_sym_EQ, - ACTIONS(2229), 1, + ACTIONS(2221), 1, anon_sym_EQ_GT, - ACTIONS(2278), 1, + ACTIONS(2294), 1, + anon_sym_COMMA, + ACTIONS(3843), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 12, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 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, + [85520] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4608), 1, + anon_sym_EQ, + ACTIONS(3804), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(3794), 16, + anon_sym_as, anon_sym_COMMA, - ACTIONS(3856), 2, + anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_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(3859), 3, + ACTIONS(3790), 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, - ACTIONS(1636), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_QMARK_QMARK, + [85586] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(4610), 1, + anon_sym_EQ_GT, + ACTIONS(3794), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -198203,7 +198038,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198219,11 +198055,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(3790), 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, @@ -198231,7 +198068,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, @@ -198239,12 +198078,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [85976] = 5, + [85654] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, + ACTIONS(4600), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198260,12 +198099,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -198277,7 +198116,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198300,17 +198139,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86042] = 7, + [85720] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3871), 1, + ACTIONS(3867), 1, anon_sym_EQ_GT, - ACTIONS(4565), 2, + ACTIONS(3919), 1, + anon_sym_EQ, + ACTIONS(4442), 2, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(3800), 13, + anon_sym_RBRACK, + ACTIONS(3794), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -198324,7 +198163,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198340,7 +198179,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198363,14 +198202,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86112] = 6, + [85790] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2042), 1, + ACTIONS(4587), 1, anon_sym_EQ, - ACTIONS(2044), 1, + ACTIONS(4604), 1, anon_sym_EQ_GT, - ACTIONS(1636), 15, + ACTIONS(4641), 1, + anon_sym_in, + ACTIONS(4645), 1, + anon_sym_COLON, + ACTIONS(3794), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -198385,8 +198228,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198402,10 +198244,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -198425,12 +198266,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86180] = 5, + [85862] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4642), 1, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3821), 1, + anon_sym_LT, + ACTIONS(4633), 1, + anon_sym_EQ_GT, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(3794), 13, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198446,28 +198309,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, - 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_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(3796), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -198486,12 +198331,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86246] = 5, + [85936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, + ACTIONS(4589), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198507,12 +198352,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -198524,7 +198369,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198547,24 +198392,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86312] = 8, + [86002] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, - anon_sym_EQ, - ACTIONS(2148), 1, + ACTIONS(1659), 1, + anon_sym_RBRACK, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(3856), 3, + ACTIONS(3029), 1, + anon_sym_EQ, + ACTIONS(3032), 1, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3859), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1636), 12, + ACTIONS(1672), 13, anon_sym_as, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -198575,7 +198417,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198591,11 +198433,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 19, + ACTIONS(1655), 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, @@ -198603,7 +198446,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, @@ -198611,19 +198456,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86384] = 6, + [86074] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(4575), 1, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(3800), 15, - sym__automatic_semicolon, + ACTIONS(3034), 1, + anon_sym_COLON, + ACTIONS(1672), 14, anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -198634,7 +198480,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198650,7 +198496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198673,18 +198519,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86452] = 8, + [86144] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4565), 1, - anon_sym_RBRACK, - ACTIONS(4591), 1, - anon_sym_EQ_GT, - ACTIONS(4646), 1, + ACTIONS(3856), 1, anon_sym_EQ, - ACTIONS(4649), 1, + ACTIONS(3867), 1, + anon_sym_EQ_GT, + ACTIONS(4647), 2, anon_sym_COMMA, - ACTIONS(3800), 13, + anon_sym_RBRACE, + ACTIONS(3794), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -198698,7 +198543,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198714,7 +198559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198737,16 +198582,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86524] = 6, + [86214] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2148), 1, + ACTIONS(4442), 1, + anon_sym_RBRACK, + ACTIONS(4604), 1, anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(4636), 1, anon_sym_EQ, - ACTIONS(1636), 15, - anon_sym_as, + ACTIONS(4639), 1, anon_sym_COMMA, + ACTIONS(3794), 13, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -198759,8 +198607,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198776,7 +198623,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198799,12 +198646,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86592] = 5, + [86286] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 1, + ACTIONS(4631), 1, anon_sym_EQ, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198820,13 +198667,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3800), 16, + ACTIONS(3794), 16, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, @@ -198837,7 +198684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198860,20 +198707,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86658] = 8, + [86352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1623), 1, - anon_sym_RBRACK, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(3045), 1, + ACTIONS(4519), 1, anon_sym_EQ, - ACTIONS(3048), 1, - anon_sym_COMMA, - ACTIONS(1636), 13, + ACTIONS(4521), 1, + anon_sym_EQ_GT, + ACTIONS(3794), 15, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -198885,7 +198730,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198901,7 +198746,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198924,17 +198769,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86730] = 6, + [86420] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2146), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(2148), 1, + ACTIONS(4521), 1, anon_sym_EQ_GT, - ACTIONS(1636), 15, + ACTIONS(3794), 15, + 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, @@ -198946,8 +198792,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -198963,7 +198808,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -198986,19 +198831,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86798] = 6, + [86488] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3796), 1, + anon_sym_LT, + ACTIONS(3799), 1, + anon_sym_DOT, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(4636), 1, + ACTIONS(4633), 1, anon_sym_EQ_GT, - ACTIONS(3800), 15, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3794), 13, 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, @@ -199009,7 +198858,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199025,11 +198874,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -199048,14 +198896,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86866] = 6, + [86562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2068), 1, - anon_sym_EQ, - ACTIONS(2070), 1, + ACTIONS(1992), 1, anon_sym_EQ_GT, - ACTIONS(1636), 15, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1672), 15, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -199071,7 +198919,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199087,7 +198935,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199110,16 +198958,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [86934] = 6, + [86630] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4636), 1, + ACTIONS(3867), 1, anon_sym_EQ_GT, - ACTIONS(4642), 1, + ACTIONS(4551), 1, anon_sym_EQ, - ACTIONS(3800), 15, - anon_sym_as, + ACTIONS(4647), 2, anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3794), 13, + anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -199132,8 +198982,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199149,7 +198998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199172,20 +199021,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87002] = 7, + [86700] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, + ACTIONS(2044), 1, anon_sym_EQ, - ACTIONS(2207), 1, + ACTIONS(2046), 1, anon_sym_EQ_GT, - ACTIONS(3074), 1, - anon_sym_COLON, - ACTIONS(1636), 14, + ACTIONS(3843), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3846), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1672), 12, anon_sym_as, anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + ACTIONS(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 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, + [86772] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2044), 1, + anon_sym_EQ, + ACTIONS(2046), 1, + anon_sym_EQ_GT, + ACTIONS(1672), 15, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199196,7 +199107,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_extends, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199212,7 +199124,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199235,18 +199147,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87072] = 8, + [86840] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 1, + ACTIONS(3814), 1, anon_sym_EQ, ACTIONS(4591), 1, anon_sym_EQ_GT, - ACTIONS(4651), 1, - anon_sym_in, - ACTIONS(4658), 1, - anon_sym_COLON, - ACTIONS(3800), 14, + ACTIONS(3794), 15, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -199261,7 +199169,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199277,9 +199186,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -199299,15 +199209,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87144] = 6, + [86908] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(4639), 1, + ACTIONS(2046), 1, anon_sym_EQ_GT, - ACTIONS(3800), 14, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1672), 15, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -199321,7 +199232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199337,7 +199248,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199360,18 +199271,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87211] = 6, + [86976] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2205), 1, + ACTIONS(2219), 1, anon_sym_EQ, - ACTIONS(2207), 1, + ACTIONS(2221), 1, anon_sym_EQ_GT, - ACTIONS(1636), 14, + ACTIONS(1672), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199382,7 +199292,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_extends, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199398,7 +199309,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199421,17 +199332,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87278] = 6, + [87043] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(4614), 1, + ACTIONS(4595), 1, + anon_sym_in, + ACTIONS(4598), 1, + anon_sym_of, + ACTIONS(4606), 1, anon_sym_EQ_GT, - ACTIONS(3800), 14, + ACTIONS(3794), 13, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199443,7 +199357,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199459,10 +199373,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3790), 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, + [87114] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(2230), 1, + anon_sym_EQ_GT, + ACTIONS(3016), 1, anon_sym_in, + ACTIONS(4593), 1, + anon_sym_of, + ACTIONS(1672), 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(1676), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + ACTIONS(1655), 21, + anon_sym_STAR, + anon_sym_BANG, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -199482,14 +199458,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87345] = 6, + [87185] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(2215), 1, anon_sym_EQ, - ACTIONS(4591), 1, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(3800), 14, + ACTIONS(1672), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -199504,7 +199480,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199520,7 +199496,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199543,17 +199519,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87412] = 6, + [87252] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(4639), 1, + ACTIONS(2217), 1, anon_sym_EQ_GT, - ACTIONS(3800), 14, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1672), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199564,8 +199541,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(3810), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199581,7 +199557,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199604,14 +199580,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87479] = 6, + [87319] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(2229), 1, + ACTIONS(4633), 1, anon_sym_EQ_GT, - ACTIONS(1636), 14, + ACTIONS(3794), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -199626,7 +199602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199642,7 +199618,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199665,18 +199641,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87546] = 6, + [87386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2207), 1, - anon_sym_EQ_GT, - ACTIONS(2223), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(1636), 14, + ACTIONS(4606), 1, + anon_sym_EQ_GT, + ACTIONS(3794), 14, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199687,7 +199663,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199703,7 +199679,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199726,21 +199702,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87613] = 8, + [87453] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(2225), 1, + ACTIONS(4604), 1, anon_sym_EQ_GT, - ACTIONS(3002), 1, - anon_sym_in, - ACTIONS(4612), 1, - anon_sym_of, - ACTIONS(1636), 13, + ACTIONS(3794), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199751,7 +199724,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199767,9 +199740,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 21, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -199789,18 +199763,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87684] = 6, + [87520] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4589), 1, + ACTIONS(4631), 1, anon_sym_EQ, - ACTIONS(4591), 1, + ACTIONS(4633), 1, anon_sym_EQ_GT, - ACTIONS(3800), 14, + ACTIONS(3794), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199811,7 +199784,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + anon_sym_extends, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199827,7 +199801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 22, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199850,16 +199824,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87751] = 6, + [87587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2227), 1, + ACTIONS(2228), 1, anon_sym_EQ, - ACTIONS(2229), 1, + ACTIONS(2230), 1, anon_sym_EQ_GT, - ACTIONS(1636), 14, + ACTIONS(1672), 14, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199871,8 +199846,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - ACTIONS(1640), 15, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199888,7 +199862,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -199911,21 +199885,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87818] = 8, + [87654] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(4587), 1, anon_sym_EQ, - ACTIONS(4607), 1, - anon_sym_in, - ACTIONS(4610), 1, - anon_sym_of, - ACTIONS(4614), 1, + ACTIONS(4604), 1, anon_sym_EQ_GT, - ACTIONS(3800), 13, + ACTIONS(3794), 14, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_LT_EQ, @@ -199936,7 +199907,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -199952,9 +199923,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(3790), 22, anon_sym_STAR, anon_sym_BANG, + anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -199974,17 +199946,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87889] = 6, + [87721] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2223), 1, - anon_sym_EQ, - ACTIONS(2225), 1, + ACTIONS(2221), 1, anon_sym_EQ_GT, - ACTIONS(1636), 14, + ACTIONS(2228), 1, + anon_sym_EQ, + ACTIONS(1672), 14, anon_sym_as, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -199996,7 +199967,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(1640), 15, + anon_sym_extends, + ACTIONS(1676), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200012,7 +199984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(1619), 22, + ACTIONS(1655), 22, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -200035,16 +200007,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [87956] = 7, + [87788] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(4607), 1, + ACTIONS(4595), 1, anon_sym_in, - ACTIONS(4610), 1, + ACTIONS(4598), 1, anon_sym_of, - ACTIONS(3800), 13, + ACTIONS(3794), 13, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -200058,7 +200030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(3810), 15, + ACTIONS(3804), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -200074,7 +200046,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - ACTIONS(3796), 21, + ACTIONS(3790), 21, anon_sym_STAR, anon_sym_BANG, anon_sym_LT, @@ -200096,70 +200068,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_EQ_EQ, anon_sym_BANG_EQ, anon_sym_QMARK_QMARK, - [88024] = 33, + [87856] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4673), 1, + ACTIONS(4663), 1, anon_sym_RBRACE, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5011), 1, + STATE(5010), 1, aux_sym_object_repeat1, - STATE(5434), 1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200167,7 +200139,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200181,70 +200153,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88142] = 33, + [87974] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4680), 1, + ACTIONS(4670), 1, anon_sym_RBRACE, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5434), 1, + STATE(5045), 1, + aux_sym_object_repeat1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200252,7 +200224,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200266,70 +200238,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88260] = 33, + [88092] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4683), 1, + ACTIONS(4673), 1, anon_sym_RBRACE, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5434), 1, + STATE(5010), 1, + aux_sym_object_repeat1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200337,7 +200309,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200351,70 +200323,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88378] = 33, + [88210] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4686), 1, + ACTIONS(4676), 1, anon_sym_RBRACE, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5434), 1, + STATE(5091), 1, + aux_sym_object_repeat1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200422,7 +200394,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200436,70 +200408,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88496] = 33, + [88328] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4689), 1, + ACTIONS(4679), 1, anon_sym_RBRACE, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5434), 1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200507,7 +200479,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200521,70 +200493,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88614] = 33, + [88446] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4692), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(5434), 1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200592,7 +200564,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200606,70 +200578,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88732] = 33, + [88564] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4695), 1, + ACTIONS(4685), 1, anon_sym_RBRACE, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5434), 1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200677,7 +200649,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200691,70 +200663,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88850] = 33, + [88682] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4698), 1, + ACTIONS(4688), 1, anon_sym_RBRACE, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(5434), 1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200762,7 +200734,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200776,70 +200748,70 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [88968] = 33, + [88800] = 33, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4701), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(5434), 1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -200847,7 +200819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -200861,75 +200833,75 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [89086] = 28, + [88918] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4708), 2, + ACTIONS(3582), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4710), 2, + ACTIONS(3602), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4325), 6, + STATE(4295), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -200940,75 +200912,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89193] = 28, + [89025] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4726), 2, + ACTIONS(4712), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4728), 2, + ACTIONS(4714), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4290), 6, + STATE(4366), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -201019,158 +200991,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89300] = 32, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2329), 1, - anon_sym_LBRACE, - ACTIONS(2856), 1, - anon_sym_namespace, - ACTIONS(2858), 1, - anon_sym_import, - ACTIONS(2860), 1, - anon_sym_var, - ACTIONS(2862), 1, - anon_sym_let, - ACTIONS(2864), 1, - anon_sym_const, - ACTIONS(2866), 1, - anon_sym_class, - ACTIONS(2868), 1, - anon_sym_async, - ACTIONS(2870), 1, - anon_sym_function, - ACTIONS(2872), 1, - anon_sym_declare, - ACTIONS(2876), 1, - anon_sym_abstract, - ACTIONS(2880), 1, - anon_sym_interface, - ACTIONS(2882), 1, - anon_sym_enum, - ACTIONS(4660), 1, - anon_sym_STAR, - ACTIONS(4662), 1, - anon_sym_default, - ACTIONS(4664), 1, - anon_sym_type, - ACTIONS(4666), 1, - anon_sym_EQ, - ACTIONS(4668), 1, - anon_sym_as, - ACTIONS(4678), 1, - anon_sym_module, - ACTIONS(4730), 1, - anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_RBRACE, - STATE(3823), 1, - sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, - sym_declaration, - STATE(4596), 1, - sym_internal_module, - STATE(4879), 1, - sym_export_clause, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5434), 1, - sym_namespace_import, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - STATE(4594), 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, - [89415] = 28, + [89132] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4736), 2, + ACTIONS(4716), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4738), 2, + ACTIONS(4718), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4405), 6, + STATE(4390), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -201181,75 +201070,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89522] = 28, + [89239] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4740), 2, + ACTIONS(4720), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4742), 2, + ACTIONS(4722), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4333), 6, + STATE(4378), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -201260,75 +201149,221 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89629] = 28, + [89346] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4724), 1, + sym_identifier, + ACTIONS(4726), 1, + anon_sym_STAR, + ACTIONS(4732), 1, + anon_sym_LBRACE, + STATE(5222), 1, + sym_import_clause, + ACTIONS(4728), 2, + anon_sym_type, + anon_sym_typeof, + STATE(5223), 2, + sym_string, + sym_import_require_clause, + STATE(5759), 2, + sym_namespace_import, + sym_named_imports, + ACTIONS(4730), 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(4734), 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, + [89421] = 32, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2335), 1, + anon_sym_LBRACE, + ACTIONS(2854), 1, + anon_sym_namespace, + ACTIONS(2856), 1, + anon_sym_import, + ACTIONS(2858), 1, + anon_sym_var, + ACTIONS(2860), 1, + anon_sym_let, + ACTIONS(2862), 1, + anon_sym_const, + ACTIONS(2864), 1, + anon_sym_class, + ACTIONS(2866), 1, + anon_sym_async, + ACTIONS(2868), 1, + anon_sym_function, + ACTIONS(2870), 1, + anon_sym_declare, + ACTIONS(2874), 1, + anon_sym_abstract, + ACTIONS(2878), 1, + anon_sym_interface, + ACTIONS(2880), 1, + anon_sym_enum, + ACTIONS(4650), 1, + anon_sym_STAR, + ACTIONS(4652), 1, + anon_sym_default, + ACTIONS(4654), 1, + anon_sym_type, + ACTIONS(4656), 1, + anon_sym_EQ, + ACTIONS(4658), 1, + anon_sym_as, + ACTIONS(4668), 1, + anon_sym_module, + ACTIONS(4736), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, + anon_sym_RBRACE, + STATE(3823), 1, + sym_decorator, + STATE(4476), 1, + sym_declaration, + STATE(4477), 1, + sym_internal_module, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, + sym_export_clause, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5200), 1, + sym_namespace_import, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + STATE(4475), 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, + [89536] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3748), 2, - anon_sym_COMMA, - anon_sym_SEMI, - ACTIONS(3750), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4724), 3, + ACTIONS(4742), 2, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(4744), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4380), 6, + STATE(4321), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -201339,75 +201374,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89736] = 28, + [89643] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(3584), 2, + ACTIONS(3754), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(3604), 2, + ACTIONS(3756), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4420), 6, + STATE(4377), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -201418,138 +201453,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [89843] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4744), 1, - sym_identifier, - ACTIONS(4746), 1, - anon_sym_STAR, - ACTIONS(4752), 1, - anon_sym_LBRACE, - STATE(5213), 1, - sym_import_clause, - ACTIONS(4748), 2, - anon_sym_type, - anon_sym_typeof, - STATE(5214), 2, - sym_string, - sym_import_require_clause, - STATE(5749), 2, - sym_namespace_import, - sym_named_imports, - ACTIONS(4750), 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(4754), 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, - [89918] = 28, + [89750] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4756), 2, + ACTIONS(4746), 2, anon_sym_COMMA, anon_sym_SEMI, - ACTIONS(4758), 2, + ACTIONS(4748), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4378), 6, + STATE(4281), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -201560,73 +201532,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90025] = 30, + [89857] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, - anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, + ACTIONS(4750), 1, + anon_sym_EQ, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(5434), 1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4760), 2, + ACTIONS(4666), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4676), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -201640,65 +201611,65 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [90135] = 30, + [89965] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4666), 1, + ACTIONS(4656), 1, anon_sym_EQ, - ACTIONS(4668), 1, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(5434), 1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4763), 2, + ACTIONS(4752), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -201706,7 +201677,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -201720,72 +201691,73 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [90245] = 29, + [90075] = 30, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(2856), 1, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2876), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2880), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(4660), 1, + ACTIONS(4650), 1, anon_sym_STAR, - ACTIONS(4662), 1, + ACTIONS(4652), 1, anon_sym_default, - ACTIONS(4664), 1, + ACTIONS(4654), 1, anon_sym_type, - ACTIONS(4668), 1, + ACTIONS(4656), 1, + anon_sym_EQ, + ACTIONS(4658), 1, anon_sym_as, - ACTIONS(4678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(4767), 1, - anon_sym_EQ, STATE(3823), 1, sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4595), 1, + STATE(4476), 1, sym_declaration, - STATE(4596), 1, + STATE(4477), 1, sym_internal_module, - STATE(4879), 1, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4885), 1, sym_export_clause, - STATE(5434), 1, + STATE(5200), 1, sym_namespace_import, - ACTIONS(4676), 9, - sym__automatic_semicolon, + ACTIONS(4756), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4666), 7, + sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - STATE(4594), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -201799,72 +201771,72 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [90353] = 27, + [90185] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4769), 2, + ACTIONS(4759), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -201875,72 +201847,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90456] = 27, + [90288] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4771), 2, + ACTIONS(4761), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -201951,72 +201923,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90559] = 27, + [90391] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4773), 2, + ACTIONS(4763), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202027,72 +201999,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90662] = 27, + [90494] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4775), 2, + ACTIONS(4765), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202103,72 +202075,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90765] = 27, + [90597] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4777), 2, + ACTIONS(4767), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202179,131 +202151,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [90868] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4791), 1, - anon_sym_QMARK_DOT, - STATE(2165), 1, - sym_type_arguments, - STATE(2250), 1, - sym_arguments, - ACTIONS(4779), 14, - 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4781), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [90937] = 27, + [90700] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4793), 2, + ACTIONS(4769), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202314,72 +202227,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91040] = 27, + [90803] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4795), 2, + ACTIONS(4771), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202390,72 +202303,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91143] = 27, + [90906] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4797), 2, + ACTIONS(4773), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202466,72 +202379,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91246] = 27, + [91009] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4799), 2, + ACTIONS(4775), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202542,72 +202455,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91349] = 27, + [91112] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4801), 2, + ACTIONS(4777), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202618,72 +202531,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91452] = 27, + [91215] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4803), 2, + ACTIONS(4779), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202694,72 +202607,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91555] = 27, + [91318] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4805), 2, + ACTIONS(4781), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202770,72 +202683,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91658] = 27, + [91421] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4807), 2, + ACTIONS(4783), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202846,148 +202759,131 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91761] = 27, + [91524] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3896), 1, - anon_sym_STAR, - ACTIONS(4706), 1, - anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, - anon_sym_async, - ACTIONS(4718), 1, - anon_sym_static, - ACTIONS(4720), 1, - anon_sym_readonly, - STATE(3794), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(4716), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4722), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4809), 2, + ACTIONS(4793), 1, + anon_sym_LT, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4797), 1, + anon_sym_QMARK_DOT, + STATE(2155), 1, + sym_type_arguments, + STATE(2192), 1, + sym_arguments, + ACTIONS(4785), 14, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4787), 26, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4507), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [91864] = 27, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [91593] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4811), 2, + ACTIONS(4799), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -202998,72 +202894,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [91967] = 27, + [91696] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4813), 2, + ACTIONS(4801), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -203074,72 +202970,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92070] = 27, + [91799] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4815), 2, + ACTIONS(4803), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -203150,72 +203046,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92173] = 27, + [91902] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4817), 2, + ACTIONS(4805), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -203226,72 +203122,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92276] = 27, + [92005] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4819), 2, + ACTIONS(4807), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -203302,72 +203198,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92379] = 27, + [92108] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4821), 2, + ACTIONS(4809), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -203378,72 +203274,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92482] = 27, + [92211] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4823), 2, + ACTIONS(4811), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4507), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -203454,702 +203350,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [92585] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4825), 1, - sym__automatic_semicolon, - ACTIONS(1942), 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(1940), 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_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, - [92641] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(4825), 1, - sym__automatic_semicolon, - ACTIONS(1942), 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(1940), 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_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, - [92699] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 1, - anon_sym_LBRACE, - ACTIONS(4829), 1, - anon_sym_DOT, - STATE(2239), 1, - sym_statement_block, - ACTIONS(1930), 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(1928), 28, - 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92759] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 1, - anon_sym_LBRACE, - STATE(2239), 1, - sym_statement_block, - ACTIONS(1930), 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(1928), 29, - 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [92817] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4831), 1, - sym__automatic_semicolon, - ACTIONS(1968), 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(1966), 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_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, - [92873] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2203), 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(2201), 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, - [92927] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 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(2161), 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, - [92981] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_DOT, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(4833), 14, - 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3866), 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_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, - [93041] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - STATE(2231), 1, - sym_type_arguments, - ACTIONS(4837), 14, - 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4839), 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_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, - [93099] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - ACTIONS(4843), 1, - anon_sym_DOT, - STATE(2201), 1, - sym_statement_block, - ACTIONS(1930), 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(1928), 28, - 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_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, - [93159] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(2201), 1, - sym_statement_block, - ACTIONS(1930), 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(1928), 29, - 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_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, - [93217] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4783), 1, - anon_sym_LPAREN, - STATE(2254), 1, - sym_arguments, - ACTIONS(4845), 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(4847), 29, - 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_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, - [93275] = 26, + [92314] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4724), 3, + ACTIONS(4813), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4312), 6, + STATE(4660), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -204160,60 +203426,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [93374] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4849), 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(4851), 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_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, - [93427] = 3, + [92417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 15, + ACTIONS(2051), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -204229,7 +203445,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2100), 30, + ACTIONS(2049), 31, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -204239,259 +203455,8 @@ static uint16_t ts_small_parse_table[] = { 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, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [93480] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1990), 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(1992), 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_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, - [93533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2090), 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(2088), 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_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, - [93586] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4853), 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(4855), 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_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, - [93641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4857), 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(4859), 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_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, - [93694] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4861), 1, - sym__automatic_semicolon, - ACTIONS(1942), 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(1940), 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_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204512,10 +203477,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [93749] = 3, + [92471] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 15, + ACTIONS(4815), 1, + anon_sym_LBRACE, + STATE(2221), 1, + sym_statement_block, + ACTIONS(1930), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -204531,18 +203500,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 30, + ACTIONS(1928), 29, + 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -204560,12 +203528,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, - [93802] = 3, + anon_sym_PIPE_RBRACE, + [92529] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4863), 15, + ACTIONS(4789), 1, + anon_sym_LPAREN, + STATE(2305), 1, + sym_arguments, + ACTIONS(4817), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -204581,12 +203553,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 30, + ACTIONS(4819), 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, @@ -204612,13 +203583,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93855] = 4, + [92587] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4867), 14, + ACTIONS(2175), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -204632,18 +203602,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 30, + ACTIONS(2173), 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -204661,12 +203632,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, - [93910] = 3, + anon_sym_PIPE_RBRACE, + [92641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 15, + ACTIONS(4821), 1, + sym__automatic_semicolon, + ACTIONS(2065), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -204682,7 +203655,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4875), 30, + ACTIONS(2063), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -204713,15 +203686,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [93963] = 3, + [92697] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 15, + ACTIONS(4793), 1, + anon_sym_LT, + ACTIONS(4825), 1, + anon_sym_DOT, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(4823), 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, @@ -204732,7 +203710,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2278), 30, + ACTIONS(3862), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -204742,7 +203720,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204763,10 +203740,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94016] = 3, + [92757] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 15, + ACTIONS(4815), 1, + anon_sym_LBRACE, + ACTIONS(4827), 1, + anon_sym_DOT, + STATE(2221), 1, + sym_statement_block, + ACTIONS(1930), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -204782,18 +203765,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 30, + ACTIONS(1928), 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_COLON, + anon_sym_while, + 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, @@ -204811,17 +203792,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, - [94069] = 3, + anon_sym_PIPE_RBRACE, + [92817] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 15, + ACTIONS(4793), 1, + anon_sym_LT, + STATE(2234), 1, + sym_type_arguments, + ACTIONS(4829), 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, @@ -204832,7 +203816,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 30, + ACTIONS(4831), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -204863,12 +203847,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94122] = 4, + [92875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACK, - ACTIONS(4881), 15, + ACTIONS(4833), 1, + anon_sym_LBRACE, + ACTIONS(4835), 1, + anon_sym_DOT, + STATE(2205), 1, + sym_statement_block, + ACTIONS(1930), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -204884,16 +203872,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4883), 29, + ACTIONS(1928), 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -204914,10 +203901,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94177] = 3, + [92935] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 15, + ACTIONS(4833), 1, + anon_sym_LBRACE, + STATE(2205), 1, + sym_statement_block, + ACTIONS(1930), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -204933,9 +203924,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 30, + ACTIONS(1928), 29, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -204964,88 +203954,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94230] = 26, + [92993] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_in, - ACTIONS(4901), 1, - anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, - anon_sym_QMARK, - ACTIONS(4909), 1, - anon_sym_AMP_AMP, - ACTIONS(4915), 1, - anon_sym_AMP, - ACTIONS(4917), 1, - anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4913), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4923), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4895), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_extends, - [94329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4933), 1, - sym_regex_flags, - ACTIONS(4929), 18, + ACTIONS(4837), 1, + sym__automatic_semicolon, + ACTIONS(1942), 15, anon_sym_STAR, anon_sym_EQ, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -205059,9 +203975,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_extends, - ACTIONS(4931), 26, + ACTIONS(1940), 30, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -205085,15 +204000,21 @@ 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, - [94384] = 3, + anon_sym_implements, + anon_sym_extends, + [93049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 15, - anon_sym_STAR, + ACTIONS(1946), 1, anon_sym_EQ, + ACTIONS(4837), 1, + sym__automatic_semicolon, + ACTIONS(1942), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -205107,7 +204028,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4937), 30, + ACTIONS(1940), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -205138,10 +204059,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94437] = 3, + [93107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 15, + ACTIONS(4839), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -205157,7 +204078,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2161), 30, + ACTIONS(4841), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -205188,246 +204109,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [94490] = 26, + [93160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4843), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_in, - ACTIONS(4901), 1, anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4909), 1, - anon_sym_AMP_AMP, - ACTIONS(4915), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4923), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4939), 7, + ACTIONS(4847), 30, + 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, - [94589] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_in, - ACTIONS(4901), 1, - anon_sym_LT, - ACTIONS(4905), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4907), 1, - anon_sym_QMARK, - ACTIONS(4909), 1, anon_sym_AMP_AMP, - ACTIONS(4915), 1, - anon_sym_AMP, - ACTIONS(4917), 1, - anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4913), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4923), 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(4941), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [94688] = 23, + [93215] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4899), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4901), 1, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4905), 1, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(4915), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4917), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - ACTIONS(4921), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4911), 2, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(4919), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4891), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4903), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4923), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 9, - anon_sym_as, + ACTIONS(4853), 7, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, + anon_sym_SEMI, anon_sym_extends, - [94781] = 12, + anon_sym_PIPE_RBRACE, + [93314] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4947), 1, + ACTIONS(4897), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -205441,14 +204270,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 21, + ACTIONS(4895), 21, + 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -205463,297 +204291,278 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [94852] = 15, + anon_sym_PIPE_RBRACE, + [93385] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, + ACTIONS(2008), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4913), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, + 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(4943), 17, + ACTIONS(2006), 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_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, - [94929] = 21, + [93438] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4899), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4901), 1, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4905), 1, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4909), 1, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(4915), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(4921), 1, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4919), 2, + ACTIONS(4875), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4891), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4903), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(4923), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 11, + ACTIONS(4895), 9, + 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_PIPE_PIPE, - anon_sym_CARET, + anon_sym_SEMI, anon_sym_QMARK_QMARK, anon_sym_extends, - [95018] = 19, + anon_sym_PIPE_RBRACE, + [93531] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4899), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4901), 1, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4905), 1, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_AMP_AMP, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(4889), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4919), 2, + ACTIONS(4875), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4891), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4903), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4923), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 12, - anon_sym_as, + ACTIONS(4900), 7, + sym__automatic_semicolon, 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_CARET, - anon_sym_QMARK_QMARK, + anon_sym_SEMI, anon_sym_extends, - [95103] = 16, + anon_sym_PIPE_RBRACE, + [93630] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4901), 1, - anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, + ACTIONS(1980), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4913), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, + 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(4943), 17, + ACTIONS(1978), 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_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, - [95182] = 6, + [93683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(4950), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(2073), 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(1948), 27, + ACTIONS(2075), 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_EQ_GT, @@ -205775,35 +204584,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [95241] = 13, + anon_sym_extends, + [93736] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4947), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4902), 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, @@ -205814,264 +204604,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 20, + ACTIONS(4904), 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_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_extends, - [95314] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_in, - ACTIONS(4901), 1, - anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, - anon_sym_QMARK, - ACTIONS(4909), 1, - anon_sym_AMP_AMP, - ACTIONS(4915), 1, - anon_sym_AMP, - ACTIONS(4917), 1, - anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4913), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4923), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4956), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [95413] = 26, + [93789] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(2296), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_in, - ACTIONS(4901), 1, anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4909), 1, - anon_sym_AMP_AMP, - ACTIONS(4915), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4923), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4958), 7, + ACTIONS(2294), 30, + 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, - [95512] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_in, - ACTIONS(4901), 1, - anon_sym_LT, - ACTIONS(4905), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(4907), 1, - anon_sym_QMARK, - ACTIONS(4909), 1, anon_sym_AMP_AMP, - ACTIONS(4915), 1, - anon_sym_AMP, - ACTIONS(4917), 1, - anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4913), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4923), 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(4960), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [95611] = 8, + [93842] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4901), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 13, + ACTIONS(4906), 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, @@ -206082,16 +204704,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 26, + ACTIONS(4908), 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -206108,11 +204732,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, - [95674] = 3, + [93895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 15, + ACTIONS(4829), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -206128,7 +204754,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2175), 30, + ACTIONS(4831), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -206159,13 +204785,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [95727] = 4, + [93948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(4966), 14, + ACTIONS(4914), 1, + anon_sym_LBRACK, + ACTIONS(4910), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -206179,7 +204806,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 30, + ACTIONS(4912), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -206187,7 +204814,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_EQ_GT, @@ -206210,10 +204836,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [95782] = 3, + [94003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 15, + ACTIONS(4916), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -206229,7 +204855,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1966), 30, + ACTIONS(4918), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -206260,10 +204886,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [95835] = 3, + [94056] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 15, + ACTIONS(4920), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -206279,7 +204905,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4974), 30, + ACTIONS(4922), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -206310,72 +204936,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [95888] = 26, + [94109] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4998), 1, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(5006), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - ACTIONS(5010), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - ACTIONS(5014), 1, + ACTIONS(4889), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5000), 2, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5008), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4895), 7, + ACTIONS(4924), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -206383,16 +205009,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [95987] = 4, + [94208] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(4885), 1, + anon_sym_STAR_STAR, + ACTIONS(4897), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -206403,44 +205048,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 30, + ACTIONS(4895), 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_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [96042] = 4, + anon_sym_PIPE_RBRACE, + [94281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(1944), 14, + ACTIONS(2175), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -206454,7 +205088,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1948), 30, + ACTIONS(2173), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -206485,83 +205119,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96097] = 26, + [94334] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_in, - ACTIONS(4901), 1, - anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, - anon_sym_QMARK, - ACTIONS(4909), 1, - anon_sym_AMP_AMP, - ACTIONS(4915), 1, - anon_sym_AMP, - ACTIONS(4917), 1, - anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4913), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4923), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5018), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_extends, - [96196] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2094), 15, + ACTIONS(3764), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -206577,7 +205138,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2092), 30, + ACTIONS(3766), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -206608,145 +205169,122 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96249] = 26, + [94387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4926), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, anon_sym_in, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, anon_sym_LT, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4998), 1, - anon_sym_AMP_AMP, - ACTIONS(5004), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5006), 1, anon_sym_PIPE, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - ACTIONS(5014), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5000), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4976), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4990), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4928), 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_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, - ACTIONS(5012), 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(5020), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [96348] = 26, + [94440] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4998), 1, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(5006), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - ACTIONS(5010), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - ACTIONS(5014), 1, + ACTIONS(4889), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5000), 2, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5008), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4941), 7, + ACTIONS(4930), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -206754,145 +205292,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96447] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3896), 1, - anon_sym_STAR, - ACTIONS(4706), 1, - anon_sym_export, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(4714), 1, - anon_sym_async, - ACTIONS(4718), 1, - anon_sym_static, - ACTIONS(4720), 1, - anon_sym_readonly, - STATE(3794), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(4716), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4722), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4507), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [96546] = 26, + [94539] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4998), 1, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(5006), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - ACTIONS(5010), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - ACTIONS(5014), 1, + ACTIONS(4889), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5000), 2, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5008), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5018), 7, + ACTIONS(4932), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -206900,72 +205365,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96645] = 26, + [94638] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4998), 1, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(5006), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - ACTIONS(5010), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - ACTIONS(5014), 1, + ACTIONS(4889), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5000), 2, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5008), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4939), 7, + ACTIONS(4934), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -206973,10 +205438,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [96744] = 3, + [94737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 15, + ACTIONS(4936), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -206992,7 +205457,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5024), 30, + ACTIONS(4938), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207023,10 +205488,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96797] = 3, + [94790] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 15, + ACTIONS(4940), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207042,7 +205507,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5028), 30, + ACTIONS(4942), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207073,10 +205538,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96850] = 3, + [94843] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 15, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(4696), 1, + anon_sym_export, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(4700), 1, + anon_sym_async, + ACTIONS(4704), 1, + anon_sym_static, + ACTIONS(4706), 1, + anon_sym_readonly, + STATE(3786), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(4702), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4708), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3872), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4339), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [94942] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4944), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207092,7 +205630,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2908), 30, + ACTIONS(4946), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207123,153 +205661,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [96903] = 26, + [94995] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4952), 1, + anon_sym_LT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, - anon_sym_QMARK, - ACTIONS(4998), 1, - anon_sym_AMP_AMP, - ACTIONS(5004), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_PIPE, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - ACTIONS(5014), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5000), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5008), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4948), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(4990), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5012), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4851), 7, - sym__automatic_semicolon, + ACTIONS(4950), 21, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97002] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_in, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_LT, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(4998), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, - ACTIONS(5004), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_PIPE, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5000), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5008), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4976), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4990), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5002), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5012), 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(4943), 9, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97095] = 3, + [95066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 15, + ACTIONS(4959), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207285,7 +205739,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4855), 30, + ACTIONS(4961), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207316,10 +205770,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97148] = 3, + [95119] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 15, + ACTIONS(4963), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207335,7 +205789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5032), 30, + ACTIONS(4930), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207366,23 +205820,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97201] = 6, + [95172] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_extends, - ACTIONS(4885), 1, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4965), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4881), 2, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5034), 13, + ACTIONS(4843), 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, @@ -207390,10 +205845,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5036), 28, + ACTIONS(4847), 27, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_RPAREN, @@ -207419,10 +205873,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [97260] = 3, + [95231] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4983), 1, + anon_sym_QMARK, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5001), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4999), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4853), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [95330] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5003), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207438,7 +205965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 30, + ACTIONS(5005), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207469,10 +205996,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97313] = 3, + [95383] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 15, + ACTIONS(3604), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207488,7 +206015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5018), 30, + ACTIONS(3606), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207519,15 +206046,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97366] = 3, + [95436] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 15, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(5007), 1, + anon_sym_LT, + ACTIONS(5009), 1, + anon_sym_QMARK_DOT, + STATE(2383), 1, + sym_type_arguments, + STATE(2568), 1, + sym_arguments, + ACTIONS(4785), 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, @@ -207538,19 +206078,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 30, + ACTIONS(4787), 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_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, @@ -207567,17 +206101,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [97419] = 3, + anon_sym_PIPE_RBRACE, + [95503] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4863), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 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, @@ -207588,18 +206131,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 30, + ACTIONS(5013), 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -207616,47 +206156,135 @@ 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, - [97472] = 12, + anon_sym_PIPE_RBRACE, + [95566] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(4696), 1, + anon_sym_export, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(4700), 1, + anon_sym_async, + ACTIONS(4704), 1, + anon_sym_static, + ACTIONS(4706), 1, + anon_sym_readonly, + STATE(3786), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(4702), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4708), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3872), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4394), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [95665] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4859), 1, + anon_sym_in, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4863), 1, + anon_sym_LT, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5052), 1, - anon_sym_LT, + ACTIONS(4885), 1, + anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4883), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4849), 3, 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, + ACTIONS(4865), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 21, + ACTIONS(4877), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4887), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -207665,23 +206293,87 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [95750] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_in, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, + anon_sym_LT, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, + anon_sym_AMP_AMP, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_STAR_STAR, + ACTIONS(4889), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4875), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4883), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4849), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4865), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4887), 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, + ACTIONS(5015), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [97543] = 3, + [95849] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 15, + ACTIONS(2022), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207697,7 +206389,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 30, + ACTIONS(2020), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207728,14 +206420,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97596] = 4, + [95902] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4885), 1, - anon_sym_LBRACK, - ACTIONS(5059), 15, - anon_sym_STAR, + ACTIONS(5019), 1, anon_sym_EQ, + ACTIONS(5017), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -207749,7 +206440,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 29, + ACTIONS(5021), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207757,6 +206448,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_EQ_GT, @@ -207779,83 +206471,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97651] = 26, + [95957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3896), 1, - anon_sym_STAR, - ACTIONS(4706), 1, - anon_sym_export, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(4714), 1, - anon_sym_async, - ACTIONS(4718), 1, - anon_sym_static, - ACTIONS(4720), 1, - anon_sym_readonly, - STATE(3794), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(4716), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4722), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4322), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [97750] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5063), 15, + ACTIONS(2065), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207871,7 +206490,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5065), 30, + ACTIONS(2063), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -207902,72 +206521,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [97803] = 15, + [96010] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, anon_sym_LT, - STATE(4828), 1, + ACTIONS(4983), 1, + anon_sym_QMARK, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5001), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5002), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, - anon_sym_BANG, - anon_sym_in, + ACTIONS(4981), 3, 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(4943), 17, - 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_CARET, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4999), 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, + ACTIONS(4932), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [97880] = 3, + [96109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 15, + ACTIONS(2004), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -207983,18 +206613,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5069), 30, + ACTIONS(2002), 30, + 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -208012,64 +206642,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [97933] = 3, + anon_sym_PIPE_RBRACE, + [96162] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, anon_sym_in, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(4871), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4873), 1, + anon_sym_AMP_AMP, + ACTIONS(4879), 1, anon_sym_AMP, + ACTIONS(4881), 1, anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_STAR_STAR, + ACTIONS(4889), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4875), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4849), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4865), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4887), 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_implements, + ACTIONS(5023), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [97986] = 3, + anon_sym_PIPE_RBRACE, + [96261] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 15, - anon_sym_STAR, + ACTIONS(1946), 1, anon_sym_EQ, + ACTIONS(1944), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -208083,7 +206737,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5075), 30, + ACTIONS(1948), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208114,10 +206768,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98039] = 3, + [96316] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 15, + ACTIONS(5025), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208133,7 +206787,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5079), 30, + ACTIONS(5027), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208164,12 +206818,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98092] = 3, + [96369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 15, + ACTIONS(5033), 1, + sym_regex_flags, + ACTIONS(5029), 18, anon_sym_STAR, anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -208183,8 +206840,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5020), 30, - anon_sym_as, + anon_sym_instanceof, + anon_sym_extends, + ACTIONS(5031), 26, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -208208,43 +206866,37 @@ 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, - anon_sym_extends, - [98145] = 5, + [96424] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5086), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(3744), 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(3800), 27, + ACTIONS(3746), 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_EQ_GT, @@ -208266,10 +206918,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [98202] = 3, + anon_sym_extends, + [96477] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 15, + ACTIONS(5035), 1, + sym__automatic_semicolon, + ACTIONS(2065), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208285,8 +206940,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2175), 30, - sym__automatic_semicolon, + ACTIONS(2063), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208316,128 +206970,183 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98255] = 21, + [96532] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4998), 1, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(5010), 1, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, anon_sym_STAR_STAR, + ACTIONS(4889), 1, + anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5008), 2, + ACTIONS(4875), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 11, + ACTIONS(5037), 7, sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [96631] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5039), 1, + sym__automatic_semicolon, + ACTIONS(1942), 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(1940), 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_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, - [98344] = 19, + [96686] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5010), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(5008), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 12, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4895), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -208450,10 +207159,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98429] = 3, + [96769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 15, + ACTIONS(5041), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208469,7 +207178,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 30, + ACTIONS(5043), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208500,10 +207209,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98482] = 3, + [96822] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 15, + ACTIONS(2904), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208519,7 +207228,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5095), 30, + ACTIONS(2902), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208550,30 +207259,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98535] = 11, + [96875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5101), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 13, + ACTIONS(2022), 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, @@ -208584,13 +207278,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 23, + ACTIONS(2020), 30, 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, @@ -208606,75 +207306,63 @@ 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, - [98604] = 16, + [96928] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_LT, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5008), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4976), 3, + ACTIONS(2065), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5002), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, + 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(4943), 17, + ACTIONS(2063), 30, 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_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [98683] = 3, + [96981] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 15, + ACTIONS(5045), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208690,7 +207378,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2201), 30, + ACTIONS(5047), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208721,10 +207409,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98736] = 3, + [97034] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 15, + ACTIONS(5049), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208740,7 +207428,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5106), 30, + ACTIONS(5051), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208771,110 +207459,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98789] = 18, + [97087] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4912), 1, + anon_sym_extends, + ACTIONS(4914), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_LT, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5008), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4976), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4990), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5002), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, + ACTIONS(4910), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5012), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 12, - 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_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [98872] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5110), 1, - anon_sym_QMARK_DOT, - STATE(2363), 1, - sym_type_arguments, - STATE(2456), 1, - sym_arguments, - ACTIONS(4779), 14, + ACTIONS(5053), 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(4781), 24, - sym__automatic_semicolon, + ACTIONS(5055), 28, 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_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, @@ -208891,12 +207511,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, - [98939] = 3, + anon_sym_implements, + [97146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 15, + ACTIONS(5057), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -208912,7 +207531,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5114), 30, + ACTIONS(5059), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -208943,35 +207562,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [98992] = 13, + [97199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - ACTIONS(5052), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5061), 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, @@ -208982,31 +207581,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 20, - sym__automatic_semicolon, + ACTIONS(5063), 30, 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_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, - anon_sym_PIPE_RBRACE, - [99065] = 3, + [97252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 15, + ACTIONS(5065), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209022,7 +207631,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5118), 30, + ACTIONS(5067), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209053,83 +207662,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99118] = 26, + [97305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(5069), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, anon_sym_in, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, anon_sym_LT, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4998), 1, - anon_sym_AMP_AMP, - ACTIONS(5004), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5006), 1, anon_sym_PIPE, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - ACTIONS(5014), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5000), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5008), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4976), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4990), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(5071), 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_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, - ACTIONS(5012), 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(5095), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [99217] = 3, + [97358] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 15, + ACTIONS(5073), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209145,7 +207731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 30, + ACTIONS(5037), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209176,10 +207762,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99270] = 3, + [97411] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 15, + ACTIONS(5075), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209195,7 +207781,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 30, + ACTIONS(5077), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209226,10 +207812,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99323] = 3, + [97464] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 15, + ACTIONS(4914), 1, + anon_sym_LBRACK, + ACTIONS(5079), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209245,7 +207833,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 30, + ACTIONS(5081), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209253,7 +207841,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_EQ_GT, @@ -209276,10 +207863,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99376] = 3, + [97519] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(4696), 1, + anon_sym_export, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(4700), 1, + anon_sym_async, + ACTIONS(4704), 1, + anon_sym_static, + ACTIONS(4706), 1, + anon_sym_readonly, + STATE(3786), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(4702), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4708), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3872), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4371), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [97618] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(5083), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209295,7 +207955,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 30, + ACTIONS(5085), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209326,145 +207986,271 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99429] = 26, + [97671] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(4901), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + ACTIONS(4983), 1, anon_sym_QMARK, - ACTIONS(4909), 1, + ACTIONS(4985), 1, anon_sym_AMP_AMP, - ACTIONS(4915), 1, + ACTIONS(4991), 1, anon_sym_AMP, - ACTIONS(4917), 1, + ACTIONS(4993), 1, anon_sym_PIPE, - ACTIONS(4921), 1, + ACTIONS(4997), 1, anon_sym_STAR_STAR, - ACTIONS(4925), 1, + ACTIONS(5001), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4911), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(4919), 2, + ACTIONS(4995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4999), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5087), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [97770] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4983), 1, + anon_sym_QMARK, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5001), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4891), 3, + ACTIONS(4971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4999), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4900), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [97869] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5089), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(1948), 27, + 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_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, - ACTIONS(4923), 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(4851), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_extends, - [99528] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [97928] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4998), 1, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(5006), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - ACTIONS(5010), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - ACTIONS(5014), 1, + ACTIONS(4889), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5000), 2, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5008), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4956), 7, + ACTIONS(5095), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -209472,15 +208258,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [99627] = 3, + [98027] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5101), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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, @@ -209491,19 +208292,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5138), 30, + ACTIONS(5099), 23, + 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_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -209519,13 +208314,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, - [99680] = 3, + anon_sym_PIPE_RBRACE, + [98096] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 15, + ACTIONS(1962), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209541,7 +208335,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5142), 30, + ACTIONS(1964), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209572,122 +208366,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99733] = 3, + [98149] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 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(5146), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(3580), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(4696), 1, + anon_sym_export, + ACTIONS(4698), 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, - [99786] = 26, + ACTIONS(4700), 1, + anon_sym_async, + ACTIONS(4704), 1, + anon_sym_static, + ACTIONS(4706), 1, + anon_sym_readonly, + STATE(3786), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(4702), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4708), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3872), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4315), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [98248] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(4901), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + ACTIONS(4983), 1, anon_sym_QMARK, - ACTIONS(4909), 1, + ACTIONS(4985), 1, anon_sym_AMP_AMP, - ACTIONS(4915), 1, + ACTIONS(4991), 1, anon_sym_AMP, - ACTIONS(4917), 1, + ACTIONS(4993), 1, anon_sym_PIPE, - ACTIONS(4921), 1, + ACTIONS(4997), 1, anon_sym_STAR_STAR, - ACTIONS(4925), 1, + ACTIONS(5001), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4911), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(4919), 2, + ACTIONS(4995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4891), 3, + ACTIONS(4971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4903), 3, + ACTIONS(4981), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(4989), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4923), 5, + ACTIONS(4999), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5095), 7, + ACTIONS(4924), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -209695,10 +208512,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_extends, - [99885] = 3, + [98347] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 15, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(5045), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -209714,7 +208533,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3672), 30, + ACTIONS(5047), 29, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -209724,7 +208543,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -209745,72 +208563,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [99938] = 26, + [98402] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4998), 1, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(5006), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - ACTIONS(5010), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - ACTIONS(5014), 1, + ACTIONS(4889), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5000), 2, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5008), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5148), 7, + ACTIONS(5104), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -209818,242 +208636,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100037] = 3, + [98501] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 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(5152), 30, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4791), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4795), 1, anon_sym_DOT, - anon_sym_EQ_GT, + ACTIONS(4955), 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, - anon_sym_extends, - [100090] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + ACTIONS(4983), 1, anon_sym_QMARK, - ACTIONS(4998), 1, + ACTIONS(4985), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4991), 1, anon_sym_AMP, - ACTIONS(5006), 1, + ACTIONS(4993), 1, anon_sym_PIPE, - ACTIONS(5010), 1, + ACTIONS(4997), 1, anon_sym_STAR_STAR, - ACTIONS(5014), 1, + ACTIONS(5001), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5000), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5008), 2, + ACTIONS(4995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4981), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4989), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4999), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4958), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [100189] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2098), 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(2096), 30, - anon_sym_as, + ACTIONS(4930), 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_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, - [100242] = 26, + [98600] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4305), 6, + STATE(4326), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -210064,72 +208782,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [100341] = 26, + [98699] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, + ACTIONS(4859), 1, anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, + ACTIONS(4863), 1, anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, + ACTIONS(4871), 1, anon_sym_QMARK, - ACTIONS(4998), 1, + ACTIONS(4873), 1, anon_sym_AMP_AMP, - ACTIONS(5004), 1, + ACTIONS(4879), 1, anon_sym_AMP, - ACTIONS(5006), 1, + ACTIONS(4881), 1, anon_sym_PIPE, - ACTIONS(5010), 1, + ACTIONS(4885), 1, anon_sym_STAR_STAR, - ACTIONS(5014), 1, + ACTIONS(4889), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5000), 2, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5008), 2, + ACTIONS(4883), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4849), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4990), 3, + ACTIONS(4865), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5012), 5, + ACTIONS(4887), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5154), 7, + ACTIONS(5106), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -210137,10 +208855,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100440] = 3, + [98798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 15, + ACTIONS(5108), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210156,18 +208874,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2088), 30, - sym__automatic_semicolon, + ACTIONS(5110), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210185,39 +208903,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, - anon_sym_PIPE_RBRACE, - [100493] = 5, + [98851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3796), 12, + ACTIONS(2051), 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(3800), 27, + ACTIONS(2049), 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_EQ_GT, @@ -210239,15 +208954,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [100550] = 3, + anon_sym_extends, + [98904] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4979), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 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, @@ -210258,18 +208983,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3734), 30, + ACTIONS(5013), 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210286,13 +209009,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, - [100603] = 3, + [98967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 15, + ACTIONS(2008), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210308,18 +209029,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 30, + ACTIONS(2006), 30, + 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210337,105 +209058,91 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [100656] = 26, + anon_sym_PIPE_RBRACE, + [99020] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_in, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_LT, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(4996), 1, - anon_sym_QMARK, - ACTIONS(4998), 1, - anon_sym_AMP_AMP, - ACTIONS(5004), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_PIPE, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - ACTIONS(5014), 1, - anon_sym_QMARK_QMARK, + ACTIONS(5112), 1, + anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5000), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5008), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4976), 3, + ACTIONS(4948), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(4990), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5002), 3, + ACTIONS(4950), 21, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5012), 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(4960), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100755] = 12, + [99091] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5164), 1, + ACTIONS(5112), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210449,7 +209156,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 21, + ACTIONS(4950), 21, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -210471,37 +209178,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_extends, anon_sym_PIPE_RBRACE, - [100826] = 5, + [99162] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 3, - anon_sym_COMMA, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5170), 3, - anon_sym_GT, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4983), 1, + anon_sym_QMARK, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_AMP, + ACTIONS(4993), 1, anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5001), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4999), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5023), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [99261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2057), 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(3800), 27, + ACTIONS(2059), 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_EQ_GT, @@ -210523,38 +209300,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [100883] = 6, + anon_sym_extends, + [99314] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5173), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(1972), 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(4871), 27, + ACTIONS(1974), 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_EQ_GT, @@ -210576,12 +209350,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [100942] = 3, + anon_sym_extends, + [99367] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 15, - anon_sym_STAR, + ACTIONS(3814), 1, anon_sym_EQ, + ACTIONS(3790), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -210595,7 +209371,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5181), 30, + ACTIONS(3794), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210626,86 +209402,251 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [100995] = 18, + [99422] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4901), 1, - anon_sym_LT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4921), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4983), 1, + anon_sym_QMARK, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE, + ACTIONS(4997), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5001), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4891), 3, + ACTIONS(4971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4903), 3, + ACTIONS(4981), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(4989), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4923), 5, + ACTIONS(4999), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4945), 5, + ACTIONS(5095), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [99521] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(3588), 1, + anon_sym_new, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(3938), 1, + anon_sym_STAR, + ACTIONS(4696), 1, + anon_sym_export, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(4700), 1, + anon_sym_async, + ACTIONS(4704), 1, + anon_sym_static, + ACTIONS(4706), 1, + anon_sym_readonly, + STATE(3786), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(3985), 1, + sym_formal_parameters, + STATE(4656), 1, + sym__call_signature, + STATE(4838), 1, + aux_sym_export_statement_repeat1, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(4702), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4708), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3872), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4660), 6, + sym_export_statement, + sym_method_signature, + sym_call_signature, + sym_property_signature, + sym_construct_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [99620] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(4977), 1, anon_sym_in, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4983), 1, anon_sym_QMARK, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_AMP, + ACTIONS(4993), 1, anon_sym_PIPE, - ACTIONS(4943), 12, - anon_sym_as, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5001), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4999), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5106), 7, 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_CARET, - anon_sym_QMARK_QMARK, anon_sym_extends, - [101078] = 8, + [99719] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4988), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5115), 1, anon_sym_LT, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - STATE(2520), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -210719,37 +209660,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 26, - sym__automatic_semicolon, + ACTIONS(4895), 20, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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_PIPE_RBRACE, - [101141] = 3, + [99792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 15, + ACTIONS(2199), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210765,7 +209700,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2100), 30, + ACTIONS(2201), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -210796,10 +209731,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101194] = 3, + [99845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 15, + ACTIONS(2185), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210815,18 +209750,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2092), 30, - sym__automatic_semicolon, + ACTIONS(2187), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -210844,35 +209779,17 @@ 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, - [101247] = 12, + [99898] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5164), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + ACTIONS(2028), 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, @@ -210883,13 +209800,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 21, - sym__automatic_semicolon, + ACTIONS(2030), 30, 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -210903,35 +209826,20 @@ 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, - anon_sym_PIPE_RBRACE, - [101318] = 12, + [99951] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5183), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + ACTIONS(2038), 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, @@ -210942,14 +209850,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 21, + ACTIONS(2040), 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -210963,11 +209876,15 @@ 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, - [101389] = 3, + [100004] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 15, + ACTIONS(2155), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -210983,7 +209900,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2896), 30, + ACTIONS(2157), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211014,10 +209931,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101442] = 3, + [100057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 15, + ACTIONS(5118), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211033,7 +209950,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 30, + ACTIONS(5120), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211064,111 +209981,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101495] = 26, + [100110] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(3896), 1, - anon_sym_STAR, - ACTIONS(4706), 1, - anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4797), 1, + anon_sym_QMARK_DOT, + ACTIONS(5047), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4714), 1, - anon_sym_async, - ACTIONS(4718), 1, - anon_sym_static, - ACTIONS(4720), 1, - anon_sym_readonly, - STATE(3794), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(4716), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4722), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4399), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [101594] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5190), 15, - anon_sym_STAR, + anon_sym_extends, + ACTIONS(5045), 4, anon_sym_EQ, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1998), 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(5192), 30, + ACTIONS(2000), 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, anon_sym_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -211186,11 +210035,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [101647] = 3, + [100171] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 15, + ACTIONS(5122), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211206,7 +210054,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 30, + ACTIONS(5124), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211237,10 +210085,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101700] = 3, + [100224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 15, + ACTIONS(5126), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211256,7 +210104,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5200), 30, + ACTIONS(5128), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211287,12 +210135,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101753] = 4, + [100277] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_DOT, - ACTIONS(5202), 15, + ACTIONS(5130), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211308,7 +210154,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 29, + ACTIONS(5132), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211318,6 +210164,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_DOT, anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -211338,44 +210185,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101808] = 12, + [100330] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5183), 1, + ACTIONS(4979), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4971), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 5, 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(5162), 21, + ACTIONS(4999), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 12, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211385,22 +210247,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, anon_sym_extends, - [101879] = 3, + [100413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 15, + ACTIONS(5134), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211416,7 +210269,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 30, + ACTIONS(5136), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211447,195 +210300,271 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [101932] = 26, + [100466] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, - anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, + anon_sym_LT, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(4885), 1, + anon_sym_STAR_STAR, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4883), 2, + anon_sym_PLUS, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4849), 3, anon_sym_STAR, - ACTIONS(4706), 1, - anon_sym_export, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(4714), 1, - anon_sym_async, - ACTIONS(4718), 1, - anon_sym_static, - ACTIONS(4720), 1, - anon_sym_readonly, - STATE(3794), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(3972), 1, - sym_formal_parameters, - STATE(4450), 1, - sym__call_signature, - STATE(4898), 1, - aux_sym_export_statement_repeat1, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(4716), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4722), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3882), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4392), 6, - sym_export_statement, - sym_method_signature, - sym_call_signature, - sym_property_signature, - sym_construct_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [102031] = 3, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4877), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 17, + 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_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_extends, + anon_sym_PIPE_RBRACE, + [100545] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4971), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, 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(5215), 30, + ACTIONS(4895), 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_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_extends, + [100624] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_in, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, + anon_sym_LT, + ACTIONS(4867), 1, anon_sym_DOT, - anon_sym_EQ_GT, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, + ACTIONS(4871), 1, + anon_sym_QMARK, + ACTIONS(4873), 1, anon_sym_AMP_AMP, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4881), 1, + anon_sym_PIPE, + ACTIONS(4885), 1, + anon_sym_STAR_STAR, + ACTIONS(4889), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4875), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4883), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4849), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4865), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4877), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4887), 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_implements, + ACTIONS(5087), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_extends, - [102084] = 26, + anon_sym_PIPE_RBRACE, + [100723] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(4901), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + ACTIONS(4983), 1, anon_sym_QMARK, - ACTIONS(4909), 1, + ACTIONS(4985), 1, anon_sym_AMP_AMP, - ACTIONS(4915), 1, + ACTIONS(4991), 1, anon_sym_AMP, - ACTIONS(4917), 1, + ACTIONS(4993), 1, anon_sym_PIPE, - ACTIONS(4921), 1, + ACTIONS(4997), 1, anon_sym_STAR_STAR, - ACTIONS(4925), 1, + ACTIONS(5001), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4911), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(4919), 2, + ACTIONS(4995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4891), 3, + ACTIONS(4971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4903), 3, + ACTIONS(4981), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(4989), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4923), 5, + ACTIONS(4999), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5217), 7, + ACTIONS(5037), 7, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -211643,93 +210572,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_extends, - [102183] = 3, + [100822] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(4885), 1, + anon_sym_STAR_STAR, + ACTIONS(4897), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4849), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4877), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 10, 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(5221), 30, + ACTIONS(4895), 17, + 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_EQ_GT, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, anon_sym_extends, - [102236] = 7, + anon_sym_PIPE_RBRACE, + [100899] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4791), 1, - anon_sym_QMARK_DOT, - ACTIONS(4855), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4853), 4, - anon_sym_EQ, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(2060), 11, + ACTIONS(5138), 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(2062), 25, + ACTIONS(5140), 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -211747,133 +210683,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [102297] = 26, + anon_sym_extends, + [100952] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4899), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4977), 1, anon_sym_in, - ACTIONS(4901), 1, + ACTIONS(4979), 1, anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, - anon_sym_QMARK, - ACTIONS(4909), 1, - anon_sym_AMP_AMP, - ACTIONS(4915), 1, - anon_sym_AMP, - ACTIONS(4917), 1, - anon_sym_PIPE, - ACTIONS(4921), 1, + ACTIONS(4997), 1, anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4911), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4891), 3, + ACTIONS(4971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(4903), 3, + ACTIONS(4981), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(4989), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4923), 5, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4999), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5148), 7, + ACTIONS(4895), 12, + 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_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [102396] = 3, + [101037] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4977), 1, anon_sym_in, + ACTIONS(4979), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4995), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 30, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4999), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 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_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, - [102449] = 3, + [101126] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 15, + ACTIONS(2004), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -211889,7 +210837,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1978), 30, + ACTIONS(2002), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -211920,83 +210868,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102502] = 26, + [101179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4984), 1, - anon_sym_in, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4988), 1, - anon_sym_LT, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(4996), 1, - anon_sym_QMARK, - ACTIONS(4998), 1, - anon_sym_AMP_AMP, - ACTIONS(5004), 1, - anon_sym_AMP, - ACTIONS(5006), 1, - anon_sym_PIPE, - ACTIONS(5010), 1, - anon_sym_STAR_STAR, - ACTIONS(5014), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5000), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5008), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4976), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4990), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5002), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5012), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5217), 7, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [102601] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2050), 15, + ACTIONS(2145), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212012,7 +210887,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2052), 30, + ACTIONS(2147), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212043,10 +210918,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102654] = 3, + [101232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 15, + ACTIONS(2123), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212062,7 +210937,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 30, + ACTIONS(2125), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212093,16 +210968,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102707] = 6, + [101285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4791), 1, - anon_sym_QMARK_DOT, - ACTIONS(2060), 15, + ACTIONS(2117), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212118,7 +210987,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 27, + ACTIONS(2115), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212126,8 +210995,11 @@ 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -212146,10 +211018,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102766] = 3, + [101338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 15, + ACTIONS(5142), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212165,7 +211037,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1962), 30, + ACTIONS(5144), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212196,10 +211068,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102819] = 3, + [101391] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 15, + ACTIONS(2908), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212215,18 +211087,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2096), 30, - sym__automatic_semicolon, + ACTIONS(2906), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -212244,12 +211116,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, - [102872] = 3, + [101444] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2060), 15, + ACTIONS(5146), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212265,7 +211137,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 30, + ACTIONS(4924), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212296,10 +211168,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102925] = 3, + [101497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 15, + ACTIONS(2890), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212315,7 +211187,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5225), 30, + ACTIONS(2888), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212346,10 +211218,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [102978] = 3, + [101550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 15, + ACTIONS(5148), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212365,7 +211237,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2120), 30, + ACTIONS(5150), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212396,34 +211268,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103031] = 3, + [101603] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 15, + ACTIONS(5152), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5155), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(2195), 30, + ACTIONS(3794), 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_EQ_GT, @@ -212445,11 +211320,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [103084] = 3, + [101660] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 15, + ACTIONS(5158), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212465,7 +211339,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 30, + ACTIONS(5160), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212496,10 +211370,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103137] = 3, + [101713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 15, + ACTIONS(5162), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212515,7 +211389,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2038), 30, + ACTIONS(5164), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212546,10 +211420,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103190] = 3, + [101766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 15, + ACTIONS(5166), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212565,7 +211439,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2110), 30, + ACTIONS(5168), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212596,83 +211470,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103243] = 26, + [101819] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5174), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(5170), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4899), 1, anon_sym_in, - ACTIONS(4901), 1, anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(4909), 1, - anon_sym_AMP_AMP, - ACTIONS(4915), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(4917), 1, anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4913), 3, + ACTIONS(5172), 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_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, - ACTIONS(4923), 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(5020), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [103342] = 3, + [101874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 15, + ACTIONS(5177), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212688,7 +211540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2142), 30, + ACTIONS(5179), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212719,10 +211571,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103395] = 3, + [101927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 15, + ACTIONS(5181), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212738,7 +211590,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2185), 30, + ACTIONS(5183), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212769,34 +211621,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103448] = 3, + [101980] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 15, + ACTIONS(5065), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5067), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3790), 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(5229), 30, + ACTIONS(3794), 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_EQ_GT, @@ -212818,11 +211673,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [103501] = 3, + [102037] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 15, + ACTIONS(5185), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212838,7 +211692,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3770), 30, + ACTIONS(5187), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212869,69 +211723,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103554] = 26, + [102090] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4417), 6, + STATE(4419), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -212942,10 +211796,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [103653] = 3, + [102189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4750), 15, + ACTIONS(5189), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -212961,7 +211815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4754), 30, + ACTIONS(5191), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -212992,10 +211846,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103706] = 3, + [102242] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 15, + ACTIONS(5193), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213011,7 +211865,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5233), 30, + ACTIONS(5195), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213042,10 +211896,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103759] = 3, + [102295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 15, + ACTIONS(5197), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213061,7 +211915,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 30, + ACTIONS(5199), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213092,83 +211946,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103812] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4899), 1, - anon_sym_in, - ACTIONS(4901), 1, - anon_sym_LT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4907), 1, - anon_sym_QMARK, - ACTIONS(4909), 1, - anon_sym_AMP_AMP, - ACTIONS(4915), 1, - anon_sym_AMP, - ACTIONS(4917), 1, - anon_sym_PIPE, - ACTIONS(4921), 1, - anon_sym_STAR_STAR, - ACTIONS(4925), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4911), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(4919), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4891), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(4903), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4913), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4923), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5154), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_extends, - [103911] = 3, + [102348] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 15, + ACTIONS(5201), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213184,7 +211965,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2900), 30, + ACTIONS(5203), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213215,10 +211996,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [103964] = 3, + [102401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 15, + ACTIONS(5205), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213234,7 +212015,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 30, + ACTIONS(5207), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213265,10 +212046,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104017] = 3, + [102454] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 15, + ACTIONS(2900), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213284,7 +212065,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 30, + ACTIONS(2898), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213315,30 +212096,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104070] = 11, + [102507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5247), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 13, + ACTIONS(5209), 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, @@ -213349,14 +212115,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 23, + ACTIONS(5211), 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_EQ_GT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -213372,11 +212143,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, - [104139] = 3, + [102560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 15, + ACTIONS(2179), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213392,18 +212165,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 30, + ACTIONS(2177), 30, + 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213421,12 +212194,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, - [104192] = 3, + anon_sym_PIPE_RBRACE, + [102613] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 15, + ACTIONS(5213), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213442,7 +212215,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5252), 30, + ACTIONS(5106), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213473,69 +212246,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104245] = 26, + [102666] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4983), 1, + anon_sym_QMARK, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5001), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4999), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_extends, + [102765] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(3590), 1, + ACTIONS(3588), 1, anon_sym_new, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(3896), 1, + ACTIONS(3938), 1, anon_sym_STAR, - ACTIONS(4706), 1, + ACTIONS(4696), 1, anon_sym_export, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(4714), 1, + ACTIONS(4700), 1, anon_sym_async, - ACTIONS(4718), 1, + ACTIONS(4704), 1, anon_sym_static, - ACTIONS(4720), 1, + ACTIONS(4706), 1, anon_sym_readonly, - STATE(3794), 1, + STATE(3786), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4450), 1, + STATE(4656), 1, sym__call_signature, - STATE(4898), 1, + STATE(4838), 1, aux_sym_export_statement_repeat1, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(4716), 2, + ACTIONS(4702), 2, sym_number, sym_private_property_identifier, - ACTIONS(4722), 2, + ACTIONS(4708), 2, anon_sym_get, anon_sym_set, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3882), 3, + STATE(3872), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4395), 6, + STATE(4290), 6, sym_export_statement, sym_method_signature, sym_call_signature, sym_property_signature, sym_construct_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_type, anon_sym_namespace, sym_identifier, @@ -213546,10 +212392,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [104344] = 3, + [102864] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 15, + ACTIONS(5215), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213565,7 +212411,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 30, + ACTIONS(5087), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213596,10 +212442,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104397] = 3, + [102917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 15, + ACTIONS(5217), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213615,7 +212461,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5260), 30, + ACTIONS(5219), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213646,61 +212492,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104450] = 4, + [102970] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(5262), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4859), 1, + anon_sym_in, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4863), 1, + anon_sym_LT, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(4873), 1, + anon_sym_AMP_AMP, + ACTIONS(4879), 1, + anon_sym_AMP, + ACTIONS(4885), 1, + anon_sym_STAR_STAR, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4883), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4849), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4865), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4877), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(4887), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 11, sym__automatic_semicolon, - ACTIONS(1968), 15, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [103059] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5115), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4971), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4989), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 10, 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(1966), 29, + ACTIONS(4895), 17, 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_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_extends, - anon_sym_PIPE_RBRACE, - [104505] = 3, + [103136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 15, + ACTIONS(5221), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213716,18 +212641,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 30, - sym__automatic_semicolon, + ACTIONS(4900), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -213745,36 +212670,39 @@ 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, - [104558] = 3, + [103189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 15, + ACTIONS(5223), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(5266), 30, + ACTIONS(3794), 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_EQ_GT, @@ -213796,11 +212724,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - anon_sym_extends, - [104611] = 3, + [103246] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 15, + ACTIONS(1980), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213816,7 +212743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1966), 30, + ACTIONS(1978), 30, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -213847,10 +212774,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [104664] = 3, + [103299] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 15, + ACTIONS(5229), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213866,7 +212793,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5270), 30, + ACTIONS(5231), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213897,10 +212824,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104717] = 3, + [103352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 15, + ACTIONS(2179), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213916,7 +212843,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5274), 30, + ACTIONS(2177), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213947,10 +212874,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104770] = 3, + [103405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 15, + ACTIONS(5233), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -213966,7 +212893,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 30, + ACTIONS(5235), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -213997,15 +212924,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [104823] = 3, + [103458] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4952), 1, + anon_sym_LT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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, @@ -214016,19 +212961,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 30, + ACTIONS(4950), 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_EQ_GT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -214042,157 +212982,177 @@ 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, - [104876] = 3, + [103529] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(4977), 1, anon_sym_in, + ACTIONS(4979), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(4983), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, anon_sym_AMP, + ACTIONS(4993), 1, anon_sym_PIPE, + ACTIONS(4997), 1, + anon_sym_STAR_STAR, + ACTIONS(5001), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4971), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(4981), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 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_EQ_GT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(4989), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4999), 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_implements, + ACTIONS(5104), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - [104929] = 26, + [103628] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5290), 1, - anon_sym_in, - ACTIONS(5292), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5294), 1, - anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4983), 1, anon_sym_QMARK, - ACTIONS(5304), 1, + ACTIONS(4985), 1, anon_sym_AMP_AMP, - ACTIONS(5310), 1, + ACTIONS(4991), 1, anon_sym_AMP, - ACTIONS(5312), 1, + ACTIONS(4993), 1, anon_sym_PIPE, - ACTIONS(5316), 1, + ACTIONS(4997), 1, anon_sym_STAR_STAR, - ACTIONS(5320), 1, + ACTIONS(5001), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5306), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4987), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5314), 2, + ACTIONS(4995), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5282), 3, + ACTIONS(4971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5296), 3, + ACTIONS(4981), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(4989), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5318), 5, + ACTIONS(4999), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4956), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5015), 7, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_extends, - [105027] = 12, + [103727] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5324), 1, + ACTIONS(5115), 1, anon_sym_LT, - STATE(4823), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2917), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -214206,13 +213166,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 20, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4895), 21, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + 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, @@ -214227,317 +213188,71 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [105097] = 23, + [103798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, + ACTIONS(3790), 15, anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5329), 1, - anon_sym_RBRACE, - ACTIONS(5331), 1, - anon_sym_LBRACK, - ACTIONS(5333), 1, - anon_sym_async, - ACTIONS(5335), 1, - anon_sym_static, - ACTIONS(5337), 1, - anon_sym_readonly, - STATE(3784), 1, - sym_accessibility_modifier, - STATE(4974), 1, - aux_sym_object_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5339), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5341), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4169), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4976), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5327), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [105189] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5312), 1, anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4851), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3794), 30, + anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - [105287] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5290), 1, - anon_sym_in, - ACTIONS(5292), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5294), 1, - anon_sym_LT, - ACTIONS(5298), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5300), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5302), 1, - anon_sym_QMARK, - ACTIONS(5304), 1, anon_sym_AMP_AMP, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5318), 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(5095), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [105385] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5331), 1, - anon_sym_LBRACK, - ACTIONS(5345), 1, - anon_sym_RBRACE, - ACTIONS(5347), 1, - anon_sym_async, - ACTIONS(5349), 1, - anon_sym_static, - ACTIONS(5351), 1, - anon_sym_readonly, - STATE(3784), 1, - sym_accessibility_modifier, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5055), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5353), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5355), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4169), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5057), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5343), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [105477] = 13, + [103851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4797), 1, anon_sym_QMARK_DOT, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5324), 1, - anon_sym_LT, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + ACTIONS(1998), 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, @@ -214548,179 +213263,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 19, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2000), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [105549] = 26, + [103910] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, + ACTIONS(5237), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5312), 1, anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(5239), 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_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, - ACTIONS(5318), 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(5154), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [105647] = 26, + [103963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, + ACTIONS(2886), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5312), 1, anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(2884), 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_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, - ACTIONS(5318), 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(4960), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [105745] = 4, + [104016] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5357), 1, - sym_regex_flags, - ACTIONS(4929), 18, + ACTIONS(5241), 15, anon_sym_STAR, anon_sym_EQ, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -214734,17 +213410,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_extends, - ACTIONS(4931), 25, - sym__automatic_semicolon, + ACTIONS(5243), 30, + 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -214758,288 +213435,253 @@ 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_PIPE_RBRACE, - [105799] = 18, + anon_sym_implements, + anon_sym_extends, + [104069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, - anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, + ACTIONS(5245), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 5, + 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, - ACTIONS(5318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5247), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [105881] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5292), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5294), 1, - anon_sym_LT, - ACTIONS(5298), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5300), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5316), 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, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 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(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [104122] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1998), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, + 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(4943), 16, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2000), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, - [105959] = 19, + [104175] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5290), 1, - anon_sym_in, - ACTIONS(5292), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5294), 1, - anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5316), 1, + ACTIONS(4977), 1, + anon_sym_in, + ACTIONS(4979), 1, + anon_sym_LT, + ACTIONS(4985), 1, + anon_sym_AMP_AMP, + ACTIONS(4991), 1, + anon_sym_AMP, + ACTIONS(4993), 1, + anon_sym_PIPE, + ACTIONS(4997), 1, anon_sym_STAR_STAR, - STATE(4823), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2917), 2, + ACTIONS(4987), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(4995), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5282), 3, + ACTIONS(4971), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5296), 3, + ACTIONS(4981), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(4989), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5318), 5, + ACTIONS(4999), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 11, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4895), 9, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_QMARK_QMARK, anon_sym_extends, - [106043] = 26, + [104268] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, + ACTIONS(5249), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5312), 1, anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5251), 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_EQ_GT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5318), 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(4958), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [106141] = 8, + [104321] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5294), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5253), 1, anon_sym_LT, - STATE(4823), 1, + STATE(4914), 1, sym_type_arguments, - STATE(2917), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -215053,16 +213695,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 25, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5099), 23, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + 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, @@ -215079,17 +213719,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_extends, - [106203] = 5, + [104390] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5359), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4867), 14, + ACTIONS(5256), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -215103,13 +213738,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 26, + ACTIONS(5258), 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_EQ_GT, anon_sym_QMARK_DOT, @@ -215129,89 +213767,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [106259] = 21, + [104443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, + ACTIONS(5260), 15, + anon_sym_STAR, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5314), 2, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(5262), 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_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, - ACTIONS(5318), 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(4943), 10, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [106347] = 7, + [104496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(5362), 1, - anon_sym_is, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(2014), 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, @@ -215222,7 +213838,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 27, + ACTIONS(2016), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -215232,6 +213848,8 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -215249,87 +213867,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, - [106407] = 26, + [104549] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, + ACTIONS(2117), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5312), 1, anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(2115), 30, + 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, - ACTIONS(5318), 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(5018), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [106505] = 5, + anon_sym_PIPE_RBRACE, + [104602] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, - anon_sym_LPAREN, - STATE(2524), 1, - sym_arguments, - ACTIONS(4845), 15, + ACTIONS(5264), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -215345,15 +213938,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4847), 27, - sym__automatic_semicolon, + ACTIONS(5266), 30, 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_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -215371,421 +213967,181 @@ 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, - [106561] = 15, + [104655] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5324), 1, - anon_sym_LT, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, + ACTIONS(5268), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, + 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(4943), 16, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5270), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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, - [106637] = 23, + [104708] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, + ACTIONS(4730), 15, anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5331), 1, - anon_sym_LBRACK, - ACTIONS(5366), 1, - anon_sym_RBRACE, - ACTIONS(5368), 1, - anon_sym_async, - ACTIONS(5370), 1, - anon_sym_static, - ACTIONS(5372), 1, - anon_sym_readonly, - STATE(3784), 1, - sym_accessibility_modifier, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5055), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5374), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5376), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4169), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5057), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5364), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [106729] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, + anon_sym_EQ, + anon_sym_BANG, anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5312), 1, anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4734), 30, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [106821] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(5290), 1, - anon_sym_in, - ACTIONS(5292), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(5294), 1, - anon_sym_LT, - ACTIONS(5298), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(5300), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5302), 1, - anon_sym_QMARK, - ACTIONS(5304), 1, anon_sym_AMP_AMP, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5318), 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(4939), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, anon_sym_extends, - [106919] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5331), 1, - anon_sym_LBRACK, - ACTIONS(5380), 1, - anon_sym_RBRACE, - ACTIONS(5382), 1, - anon_sym_async, - ACTIONS(5384), 1, - anon_sym_static, - ACTIONS(5386), 1, - anon_sym_readonly, - STATE(3784), 1, - sym_accessibility_modifier, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5051), 1, - aux_sym_object_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5388), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5390), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4169), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5050), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5378), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [107011] = 26, + [104761] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5284), 1, + ACTIONS(5274), 1, anon_sym_as, - ACTIONS(5286), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5290), 1, + ACTIONS(5280), 1, anon_sym_in, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5294), 1, + ACTIONS(5284), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + ACTIONS(5292), 1, anon_sym_QMARK, - ACTIONS(5304), 1, + ACTIONS(5294), 1, anon_sym_AMP_AMP, - ACTIONS(5310), 1, + ACTIONS(5300), 1, anon_sym_AMP, - ACTIONS(5312), 1, + ACTIONS(5302), 1, anon_sym_PIPE, - ACTIONS(5316), 1, + ACTIONS(5306), 1, anon_sym_STAR_STAR, - ACTIONS(5320), 1, + ACTIONS(5310), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5306), 2, + ACTIONS(5296), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5314), 2, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5282), 3, + ACTIONS(5272), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5296), 3, + ACTIONS(5286), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5318), 5, + ACTIONS(5308), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4941), 6, + ACTIONS(5104), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [107109] = 23, + [104859] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(111), 1, @@ -215794,124 +214150,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(5331), 1, - anon_sym_LBRACK, - ACTIONS(5394), 1, + ACTIONS(5316), 1, anon_sym_RBRACE, - ACTIONS(5396), 1, - anon_sym_async, - ACTIONS(5398), 1, - anon_sym_static, - ACTIONS(5400), 1, - anon_sym_readonly, - STATE(3784), 1, - sym_accessibility_modifier, - STATE(4949), 1, - aux_sym_object_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5402), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5404), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4169), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4950), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5392), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [107201] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(5318), 1, anon_sym_LBRACK, - ACTIONS(5408), 1, - anon_sym_RBRACE, - ACTIONS(5410), 1, + ACTIONS(5320), 1, anon_sym_async, - ACTIONS(5412), 1, + ACTIONS(5322), 1, anon_sym_static, - ACTIONS(5414), 1, + ACTIONS(5324), 1, anon_sym_readonly, STATE(3784), 1, sym_accessibility_modifier, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, ACTIONS(129), 2, sym_number, sym_private_property_identifier, - ACTIONS(5416), 2, + ACTIONS(5326), 2, anon_sym_get, anon_sym_set, - ACTIONS(5418), 3, + ACTIONS(5328), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4169), 3, + STATE(4245), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5406), 11, + ACTIONS(5314), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -215923,162 +214210,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [107293] = 26, + [104951] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5284), 1, + ACTIONS(5274), 1, anon_sym_as, - ACTIONS(5286), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5290), 1, + ACTIONS(5280), 1, anon_sym_in, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5294), 1, + ACTIONS(5284), 1, anon_sym_LT, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + ACTIONS(5292), 1, anon_sym_QMARK, - ACTIONS(5304), 1, + ACTIONS(5294), 1, anon_sym_AMP_AMP, - ACTIONS(5310), 1, + ACTIONS(5300), 1, anon_sym_AMP, - ACTIONS(5312), 1, + ACTIONS(5302), 1, anon_sym_PIPE, - ACTIONS(5316), 1, + ACTIONS(5306), 1, anon_sym_STAR_STAR, - ACTIONS(5320), 1, + ACTIONS(5310), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5306), 2, + ACTIONS(5296), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5314), 2, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5282), 3, + ACTIONS(5272), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5296), 3, + ACTIONS(5286), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5318), 5, + ACTIONS(5308), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(5020), 6, + ACTIONS(5015), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - [107391] = 26, + [105049] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5330), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(1944), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5302), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5312), 1, anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5308), 3, + ACTIONS(1948), 26, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5318), 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(4895), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [107489] = 6, + [105105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, + ACTIONS(4793), 1, anon_sym_LT, - ACTIONS(5420), 1, + ACTIONS(4825), 1, anon_sym_DOT, - STATE(2495), 1, + ACTIONS(5333), 1, + anon_sym_is, + STATE(2229), 1, sym_type_arguments, - ACTIONS(4833), 14, + ACTIONS(4823), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -216091,15 +214358,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 27, - sym__automatic_semicolon, + ACTIONS(3862), 27, 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_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -216118,88 +214386,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [107547] = 23, + [105165] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5424), 1, - anon_sym_RBRACE, - ACTIONS(5426), 1, - anon_sym_async, - ACTIONS(5428), 1, - anon_sym_static, - ACTIONS(5430), 1, - anon_sym_readonly, - STATE(3784), 1, - sym_accessibility_modifier, - STATE(4949), 1, - aux_sym_object_repeat1, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(5432), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5434), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4169), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4950), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5422), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [107639] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5420), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5436), 1, - anon_sym_is, - STATE(2495), 1, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5335), 1, + anon_sym_LT, + STATE(4812), 1, sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216213,16 +214423,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 27, + ACTIONS(4950), 20, 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, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -216236,26 +214443,22 @@ 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, - [107699] = 7, + [105235] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(1946), 1, anon_sym_EQ, - ACTIONS(5032), 1, + ACTIONS(2902), 1, anon_sym_extends, - ACTIONS(5173), 2, + ACTIONS(5089), 2, anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5176), 3, + ACTIONS(5092), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(1944), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216267,7 +214470,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 26, + ACTIONS(1948), 26, anon_sym_as, anon_sym_LBRACE, anon_sym_RBRACE, @@ -216294,50 +214497,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_implements, - [107759] = 12, + [105295] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_extends, + ACTIONS(4965), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5438), 1, - anon_sym_LT, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 20, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4847), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, + 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, @@ -216351,31 +214546,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [107829] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [105355] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5438), 1, + ACTIONS(5335), 1, anon_sym_LT, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -216389,7 +214587,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 20, + ACTIONS(4950), 20, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -216410,312 +214608,214 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [107899] = 5, + [105425] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - anon_sym_LT, - STATE(2510), 1, - sym_type_arguments, - ACTIONS(4837), 14, + ACTIONS(111), 1, 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, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4839), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(5318), 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, - anon_sym_PIPE_RBRACE, - [107955] = 26, + ACTIONS(5340), 1, + anon_sym_RBRACE, + ACTIONS(5342), 1, + anon_sym_async, + ACTIONS(5344), 1, + anon_sym_static, + ACTIONS(5346), 1, + anon_sym_readonly, + STATE(3784), 1, + sym_accessibility_modifier, + STATE(5054), 1, + aux_sym_object_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5348), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5350), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5053), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5338), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [105517] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, - anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, - anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5302), 1, - anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, + ACTIONS(111), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5217), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(117), 1, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - [108053] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5284), 1, - anon_sym_as, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5290), 1, - anon_sym_in, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5294), 1, - anon_sym_LT, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5302), 1, - anon_sym_QMARK, - ACTIONS(5304), 1, - anon_sym_AMP_AMP, - ACTIONS(5310), 1, - anon_sym_AMP, - ACTIONS(5312), 1, - anon_sym_PIPE, - ACTIONS(5316), 1, - anon_sym_STAR_STAR, - ACTIONS(5320), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5306), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5314), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5282), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5296), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5308), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5318), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(5148), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2962), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - [108151] = 7, + ACTIONS(5318), 1, + anon_sym_LBRACK, + ACTIONS(5354), 1, + anon_sym_RBRACE, + ACTIONS(5356), 1, + anon_sym_async, + ACTIONS(5358), 1, + anon_sym_static, + ACTIONS(5360), 1, + anon_sym_readonly, + STATE(3784), 1, + sym_accessibility_modifier, + STATE(4955), 1, + aux_sym_object_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5362), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5364), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4956), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5352), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [105609] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_extends, - ACTIONS(4950), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, 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(1948), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + ACTIONS(5288), 1, anon_sym_DOT, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, + ACTIONS(5294), 1, anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5296), 2, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_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(5304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_implements, - [108211] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5441), 1, - anon_sym_LT, - STATE(4823), 1, - sym_type_arguments, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(5272), 3, 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, + ACTIONS(5286), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 22, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5308), 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(4895), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_extends, - [108279] = 23, + [105701] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(111), 1, @@ -216724,55 +214824,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(5318), 1, anon_sym_LBRACK, - ACTIONS(5446), 1, + ACTIONS(5368), 1, anon_sym_RBRACE, - ACTIONS(5448), 1, + ACTIONS(5370), 1, anon_sym_async, - ACTIONS(5450), 1, + ACTIONS(5372), 1, anon_sym_static, - ACTIONS(5452), 1, + ACTIONS(5374), 1, anon_sym_readonly, STATE(3784), 1, sym_accessibility_modifier, - STATE(4949), 1, - aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, + STATE(5087), 1, + aux_sym_object_repeat1, ACTIONS(129), 2, sym_number, sym_private_property_identifier, - ACTIONS(5454), 2, + ACTIONS(5376), 2, anon_sym_get, anon_sym_set, - ACTIONS(5456), 3, + ACTIONS(5378), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4169), 3, + STATE(4245), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(5089), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5444), 11, + ACTIONS(5366), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216784,58 +214884,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [108371] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(5458), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(4966), 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(4970), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [108427] = 23, + [105793] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(111), 1, @@ -216844,55 +214893,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(5318), 1, anon_sym_LBRACK, - ACTIONS(5463), 1, + ACTIONS(5382), 1, anon_sym_RBRACE, - ACTIONS(5465), 1, + ACTIONS(5384), 1, anon_sym_async, - ACTIONS(5467), 1, + ACTIONS(5386), 1, anon_sym_static, - ACTIONS(5469), 1, + ACTIONS(5388), 1, anon_sym_readonly, STATE(3784), 1, sym_accessibility_modifier, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, ACTIONS(129), 2, sym_number, sym_private_property_identifier, - ACTIONS(5471), 2, + ACTIONS(5390), 2, anon_sym_get, anon_sym_set, - ACTIONS(5473), 3, + ACTIONS(5392), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4169), 3, + STATE(4245), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5461), 11, + ACTIONS(5380), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -216904,58 +214953,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [108519] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(5475), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RBRACK, - ACTIONS(1944), 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(1948), 26, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [108575] = 23, + [105885] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(111), 1, @@ -216964,55 +214962,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(5318), 1, anon_sym_LBRACK, - ACTIONS(5480), 1, + ACTIONS(5396), 1, anon_sym_RBRACE, - ACTIONS(5482), 1, + ACTIONS(5398), 1, anon_sym_async, - ACTIONS(5484), 1, + ACTIONS(5400), 1, anon_sym_static, - ACTIONS(5486), 1, + ACTIONS(5402), 1, anon_sym_readonly, STATE(3784), 1, sym_accessibility_modifier, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - STATE(5055), 1, + STATE(5078), 1, aux_sym_object_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, ACTIONS(129), 2, sym_number, sym_private_property_identifier, - ACTIONS(5488), 2, + ACTIONS(5404), 2, anon_sym_get, anon_sym_set, - ACTIONS(5490), 3, + ACTIONS(5406), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4169), 3, + STATE(4245), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5057), 3, + STATE(5081), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5478), 11, + ACTIONS(5394), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217024,7 +215022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [108667] = 23, + [105977] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(111), 1, @@ -217033,55 +215031,55 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, ACTIONS(125), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(5318), 1, anon_sym_LBRACK, - ACTIONS(5494), 1, + ACTIONS(5410), 1, anon_sym_RBRACE, - ACTIONS(5496), 1, + ACTIONS(5412), 1, anon_sym_async, - ACTIONS(5498), 1, + ACTIONS(5414), 1, anon_sym_static, - ACTIONS(5500), 1, + ACTIONS(5416), 1, anon_sym_readonly, STATE(3784), 1, sym_accessibility_modifier, - STATE(4949), 1, + STATE(4955), 1, aux_sym_object_repeat1, - STATE(5048), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, ACTIONS(129), 2, sym_number, sym_private_property_identifier, - ACTIONS(5502), 2, + ACTIONS(5418), 2, anon_sym_get, anon_sym_set, - ACTIONS(5504), 3, + ACTIONS(5420), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4169), 3, + STATE(4245), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4950), 3, + STATE(4956), 3, sym_spread_element, sym_method_definition, sym_pair, - STATE(5059), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(5492), 11, + ACTIONS(5408), 11, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -217093,12 +215091,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [108759] = 3, + [106069] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 15, - anon_sym_STAR, + ACTIONS(4845), 1, anon_sym_EQ, + ACTIONS(5422), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(4843), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -217112,16 +215115,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 28, - sym__automatic_semicolon, + ACTIONS(4847), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -217140,13 +215142,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [108810] = 3, + [106125] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, + anon_sym_LBRACK, + ACTIONS(5427), 1, + anon_sym_RBRACE, + ACTIONS(5429), 1, + anon_sym_async, + ACTIONS(5431), 1, + anon_sym_static, + ACTIONS(5433), 1, + anon_sym_readonly, + STATE(3784), 1, + sym_accessibility_modifier, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5087), 1, + aux_sym_object_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5435), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5437), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5089), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5425), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [106217] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 15, + ACTIONS(5439), 1, + sym_regex_flags, + ACTIONS(5029), 18, anon_sym_STAR, anon_sym_EQ, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -217160,9 +215233,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5225), 28, + anon_sym_instanceof, + anon_sym_extends, + ACTIONS(5031), 25, sym__automatic_semicolon, - anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -217183,21 +215257,37 @@ 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, - [108861] = 3, + [106271] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 15, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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, @@ -217208,17 +215298,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1962), 28, + ACTIONS(4895), 20, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -217232,136 +215318,161 @@ 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, - [108912] = 26, + [106341] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(5274), 1, anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5294), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5300), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5302), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5306), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5310), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5296), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5272), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5286), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4851), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 5, + ACTIONS(5308), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109009] = 3, + ACTIONS(5023), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + [106439] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5294), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, anon_sym_AMP, + ACTIONS(5302), 1, anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5181), 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, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5308), 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, + ACTIONS(4932), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [109060] = 4, + [106537] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3828), 1, + ACTIONS(5019), 1, anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(5444), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RBRACK, + ACTIONS(5017), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217376,16 +215487,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 28, - sym__automatic_semicolon, + ACTIONS(5021), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -217404,64 +215514,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [109113] = 3, + [106593] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5294), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, anon_sym_AMP, + ACTIONS(5302), 1, anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1992), 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, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5308), 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, + ACTIONS(5037), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [109164] = 3, + [106691] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 15, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5284), 1, + anon_sym_LT, + STATE(4812), 1, + sym_type_arguments, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 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, @@ -217472,13 +215614,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 28, + ACTIONS(5013), 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, anon_sym_DOT, @@ -217498,126 +215639,387 @@ 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, - [109215] = 3, + [106753] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 15, + ACTIONS(111), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, + anon_sym_LBRACK, + ACTIONS(5449), 1, + anon_sym_RBRACE, + ACTIONS(5451), 1, + anon_sym_async, + ACTIONS(5453), 1, + anon_sym_static, + ACTIONS(5455), 1, + anon_sym_readonly, + STATE(3784), 1, + sym_accessibility_modifier, + STATE(4955), 1, + aux_sym_object_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5457), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5459), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4956), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5447), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [106845] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, + anon_sym_LBRACK, + ACTIONS(5463), 1, + anon_sym_RBRACE, + ACTIONS(5465), 1, + anon_sym_async, + ACTIONS(5467), 1, + anon_sym_static, + ACTIONS(5469), 1, + anon_sym_readonly, + STATE(3784), 1, + sym_accessibility_modifier, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + STATE(5087), 1, + aux_sym_object_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5471), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5473), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5089), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5461), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [106937] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5294), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, anon_sym_AMP, + ACTIONS(5302), 1, anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5274), 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, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5308), 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, + ACTIONS(5095), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [109266] = 3, + [107035] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5294), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, anon_sym_AMP, + ACTIONS(5302), 1, anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5270), 28, + ACTIONS(5298), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5308), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4934), 6, sym__automatic_semicolon, - anon_sym_as, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_extends, + [107133] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, + anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, + anon_sym_in, + ACTIONS(5282), 1, anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_LT, + ACTIONS(5288), 1, anon_sym_DOT, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, + ACTIONS(5292), 1, + anon_sym_QMARK, + ACTIONS(5294), 1, anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5308), 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, + ACTIONS(4930), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [109317] = 11, + [107231] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5534), 1, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5441), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4812), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -217631,179 +216033,428 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 21, + ACTIONS(4895), 19, + sym__automatic_semicolon, + sym__function_signature_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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [109384] = 26, + anon_sym_extends, + [107303] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5284), 1, + anon_sym_LT, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, - anon_sym_as, - ACTIONS(5541), 1, - anon_sym_in, - ACTIONS(5543), 1, - anon_sym_LT, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_AMP_AMP, - ACTIONS(5555), 1, - anon_sym_AMP, - ACTIONS(5557), 1, - anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5306), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5551), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5272), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5286), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4960), 5, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5308), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 11, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - ACTIONS(5563), 5, + [107385] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_LT, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5298), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 16, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + 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, - [109481] = 26, + anon_sym_extends, + [107463] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5280), 1, + anon_sym_in, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5284), 1, + anon_sym_LT, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5298), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5308), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 11, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - ACTIONS(5541), 1, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [107547] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, + anon_sym_LBRACK, + ACTIONS(5477), 1, + anon_sym_RBRACE, + ACTIONS(5479), 1, + anon_sym_async, + ACTIONS(5481), 1, + anon_sym_static, + ACTIONS(5483), 1, + anon_sym_readonly, + STATE(3784), 1, + sym_accessibility_modifier, + STATE(4955), 1, + aux_sym_object_repeat1, + STATE(5085), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(5485), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5487), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(4956), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5093), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5475), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [107639] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_LT, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5294), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5300), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5298), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5308), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [107727] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5306), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, + ACTIONS(5441), 1, + anon_sym_LT, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5559), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5272), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5154), 5, + ACTIONS(4893), 10, + anon_sym_BANG, + anon_sym_in, + 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(4895), 16, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5563), 5, + 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, - [109578] = 3, + anon_sym_extends, + [107803] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 15, + ACTIONS(5007), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_DOT, + STATE(2399), 1, + sym_type_arguments, + ACTIONS(4823), 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, @@ -217814,7 +216465,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 28, + ACTIONS(3862), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -217823,7 +216474,6 @@ 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, @@ -217843,15 +216493,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [109629] = 3, + [107861] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 15, + ACTIONS(5007), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_DOT, + ACTIONS(5491), 1, + anon_sym_is, + STATE(2399), 1, + sym_type_arguments, + ACTIONS(4823), 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, @@ -217862,7 +216518,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 28, + ACTIONS(3862), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -217871,7 +216527,6 @@ 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, @@ -217891,59 +216546,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [109680] = 4, + [107921] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, - anon_sym_LBRACK, - ACTIONS(4881), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5294), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, anon_sym_AMP, + ACTIONS(5302), 1, anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4883), 27, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - 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, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5308), 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, + ACTIONS(4924), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [109733] = 3, + [108019] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 15, + ACTIONS(4857), 1, + anon_sym_LPAREN, + STATE(2503), 1, + sym_arguments, + ACTIONS(4817), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -217959,13 +216641,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4859), 28, + ACTIONS(4819), 27, 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, @@ -217988,15 +216669,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [109784] = 3, + [108075] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 15, + ACTIONS(5007), 1, + anon_sym_LT, + STATE(2394), 1, + sym_type_arguments, + ACTIONS(4829), 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, @@ -218007,7 +216691,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 28, + ACTIONS(4831), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -218036,86 +216720,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [109835] = 26, + [108131] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5280), 1, + anon_sym_in, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5284), 1, + anon_sym_LT, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, - anon_sym_as, - ACTIONS(5541), 1, - anon_sym_in, - ACTIONS(5543), 1, - anon_sym_LT, - ACTIONS(5547), 1, + ACTIONS(5292), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5294), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5300), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5302), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5306), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, + ACTIONS(5310), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5296), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5272), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5286), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4958), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5308), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [109932] = 3, + ACTIONS(4900), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + [108229] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 15, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5493), 1, + anon_sym_LT, + STATE(4812), 1, + sym_type_arguments, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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, @@ -218126,17 +216826,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 28, + ACTIONS(5099), 22, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -218152,91 +216848,255 @@ 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, - [109983] = 7, + [108297] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, + anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, + anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_LT, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5110), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(4853), 3, - anon_sym_GT, + ACTIONS(5292), 1, + anon_sym_QMARK, + ACTIONS(5294), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, anon_sym_AMP, + ACTIONS(5302), 1, anon_sym_PIPE, - ACTIONS(4855), 3, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5298), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5308), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5087), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(2060), 12, - anon_sym_STAR, - anon_sym_EQ, + [108395] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5294), 1, + anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 23, + ACTIONS(5298), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5308), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(5106), 6, sym__automatic_semicolon, - anon_sym_as, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, + anon_sym_extends, + [108493] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5274), 1, + anon_sym_as, + ACTIONS(5276), 1, + anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5280), 1, + anon_sym_in, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5284), 1, + anon_sym_LT, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5292), 1, + anon_sym_QMARK, + ACTIONS(5294), 1, anon_sym_AMP_AMP, + ACTIONS(5300), 1, + anon_sym_AMP, + ACTIONS(5302), 1, + anon_sym_PIPE, + ACTIONS(5306), 1, + anon_sym_STAR_STAR, + ACTIONS(5310), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5296), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5304), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5272), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5286), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5298), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5308), 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_PIPE_RBRACE, - [110042] = 5, + ACTIONS(4853), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + [108591] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(4861), 1, - sym__automatic_semicolon, - ACTIONS(1942), 14, + ACTIONS(4908), 1, + anon_sym_extends, + ACTIONS(5223), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(1940), 27, + ACTIONS(3794), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218255,35 +217115,87 @@ 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, - [110097] = 12, + anon_sym_implements, + [108648] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5569), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - STATE(4823), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2917), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4934), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [108745] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5130), 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, @@ -218294,12 +217206,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 19, + ACTIONS(5132), 28, 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -218313,11 +217230,15 @@ 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, - [110166] = 3, + anon_sym_PIPE_RBRACE, + [108796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 15, + ACTIONS(3744), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -218333,7 +217254,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 28, + ACTIONS(3746), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -218362,33 +217283,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [110217] = 12, + [108847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5569), 1, - anon_sym_LT, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5083), 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, @@ -218399,12 +217302,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 19, + ACTIONS(5085), 28, 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -218418,14 +217326,19 @@ 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, - [110286] = 4, + anon_sym_PIPE_RBRACE, + [108898] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(5524), 1, + anon_sym_LBRACK, + ACTIONS(5079), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -218439,7 +217352,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 28, + ACTIONS(5081), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -218447,7 +217360,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218468,166 +217380,157 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [110339] = 26, + [108951] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, + ACTIONS(5528), 1, anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5547), 1, + ACTIONS(5536), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5546), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, + ACTIONS(5554), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5540), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5217), 5, + ACTIONS(5023), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110436] = 26, + [109048] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, + ACTIONS(5528), 1, anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5547), 1, + ACTIONS(5536), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5546), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, + ACTIONS(5554), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5540), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5148), 5, + ACTIONS(5037), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [110533] = 8, + [109145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(5510), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 13, + ACTIONS(5075), 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, @@ -218638,14 +217541,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 24, + ACTIONS(5077), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218663,10 +217567,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [110594] = 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [109196] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 15, + ACTIONS(5069), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -218682,7 +217589,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2278), 28, + ACTIONS(5071), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -218711,34 +217618,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [110645] = 3, + [109247] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 15, + ACTIONS(5152), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5155), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(4875), 28, + ACTIONS(3794), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218757,12 +217667,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, - [110696] = 3, + [109302] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 15, + ACTIONS(5065), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -218778,7 +217687,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4851), 28, + ACTIONS(5067), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -218807,10 +217716,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [110747] = 3, + [109353] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4863), 15, + ACTIONS(5057), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -218826,7 +217735,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 28, + ACTIONS(5059), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -218855,81 +217764,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [110798] = 26, + [109404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(3790), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(3794), 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, - ACTIONS(5148), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 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, - [110895] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [109455] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 15, + ACTIONS(4912), 1, + anon_sym_extends, + ACTIONS(5524), 1, + anon_sym_LBRACK, + ACTIONS(4910), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5053), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -218939,13 +217832,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(4937), 28, + ACTIONS(5055), 26, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -218953,7 +217844,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -218972,106 +217862,64 @@ 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, - [110946] = 26, + [109512] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(5049), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5051), 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, - ACTIONS(5217), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 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, - [111043] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5572), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [109563] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5045), 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, @@ -219082,13 +217930,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 19, + ACTIONS(5047), 28, + 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_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, @@ -219102,152 +217954,67 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [111112] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [109614] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4797), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5045), 3, + anon_sym_EQ, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4960), 5, + ACTIONS(5047), 8, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [111209] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + anon_sym_RBRACK, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(1998), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(2000), 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(4895), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 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, - [111306] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [109673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 15, + ACTIONS(2904), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -219263,7 +218030,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5118), 28, + ACTIONS(2902), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -219292,192 +218059,183 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [111357] = 26, + [109724] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, + ACTIONS(5528), 1, anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5547), 1, + ACTIONS(5536), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5546), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, + ACTIONS(5554), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5540), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4956), 5, + ACTIONS(5095), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111454] = 26, + [109821] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, + ACTIONS(5558), 1, + anon_sym_EQ, + ACTIONS(5560), 1, anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(5562), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5095), 5, + ACTIONS(4932), 4, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [111551] = 13, + [109920] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5009), 1, anon_sym_QMARK_DOT, - ACTIONS(5561), 1, - anon_sym_STAR_STAR, - ACTIONS(5575), 1, - anon_sym_LT, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(5322), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5047), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1998), 12, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 18, + ACTIONS(2000), 23, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_LPAREN, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -219485,213 +218243,185 @@ 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_extends, - [111622] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [109979] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5572), 1, + ACTIONS(5146), 1, + anon_sym_EQ, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, + anon_sym_in, + ACTIONS(5564), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5568), 1, + anon_sym_QMARK, + ACTIONS(5570), 1, + anon_sym_AMP_AMP, + ACTIONS(5576), 1, + anon_sym_AMP, + ACTIONS(5578), 1, + anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5572), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5580), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5556), 3, 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, + ACTIONS(5566), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 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, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4924), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5584), 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, - [111691] = 18, + [110078] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5543), 1, + ACTIONS(5562), 1, + anon_sym_in, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5561), 1, + ACTIONS(5570), 1, + anon_sym_AMP_AMP, + ACTIONS(5576), 1, + anon_sym_AMP, + ACTIONS(5578), 1, + anon_sym_PIPE, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - STATE(4823), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5559), 2, + ACTIONS(5572), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(4893), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5563), 5, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 10, + ACTIONS(4895), 6, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [111772] = 26, + [110169] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5588), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5154), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [111869] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5026), 15, + ACTIONS(4893), 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, @@ -219702,17 +218432,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5028), 28, + ACTIONS(4895), 18, 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, @@ -219726,910 +218450,978 @@ 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, - [111920] = 3, + [110238] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 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(5256), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4861), 1, anon_sym_LBRACK, + ACTIONS(4867), 1, anon_sym_DOT, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + ACTIONS(5588), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [111971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5250), 15, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5556), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5574), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 11, 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(5252), 28, + ACTIONS(4895), 14, 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, - [112022] = 3, + [110313] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 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(3672), 28, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4861), 1, anon_sym_LBRACK, + ACTIONS(4867), 1, anon_sym_DOT, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, + ACTIONS(5562), 1, + anon_sym_in, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5570), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5576), 1, + anon_sym_AMP, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5580), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5556), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5566), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4893), 4, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5584), 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, + ACTIONS(4895), 8, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [112073] = 3, + [110400] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5562), 1, anon_sym_in, + ACTIONS(5564), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5556), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5566), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5075), 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, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4893), 5, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5584), 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, + ACTIONS(4895), 9, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [112124] = 26, + [110483] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4958), 5, + ACTIONS(4924), 5, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(5530), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112221] = 3, + [110580] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5580), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5556), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5574), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 9, 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(5245), 28, + ACTIONS(4895), 14, 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, - [112272] = 3, + [110657] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5095), 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, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5095), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 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_PIPE_RBRACE, - [112323] = 16, + [110754] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5543), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5561), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - STATE(4823), 1, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5559), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5553), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5502), 3, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 15, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4930), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 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_extends, - [112400] = 19, + [110851] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5541), 1, - anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5561), 1, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - STATE(4823), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5559), 2, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5563), 5, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 10, + ACTIONS(4893), 6, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4895), 9, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [112483] = 21, + [110932] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5541), 1, + ACTIONS(5221), 1, + anon_sym_EQ, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5549), 1, + ACTIONS(5568), 1, + anon_sym_QMARK, + ACTIONS(5570), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_AMP, - ACTIONS(5561), 1, + ACTIONS(5578), 1, + anon_sym_PIPE, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - STATE(4823), 1, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5559), 2, + ACTIONS(5572), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5537), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5563), 5, + ACTIONS(4900), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 9, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [112570] = 15, + [111031] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5561), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5575), 1, + ACTIONS(5591), 1, anon_sym_LT, - STATE(4823), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2917), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(4893), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5553), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, 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(4943), 15, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4895), 18, anon_sym_as, - anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [112645] = 23, + [111102] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5541), 1, + ACTIONS(5215), 1, + anon_sym_EQ, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5549), 1, + ACTIONS(5568), 1, + anon_sym_QMARK, + ACTIONS(5570), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - STATE(4823), 1, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5322), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5563), 5, + ACTIONS(5087), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 7, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [112736] = 26, + [111201] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, + ACTIONS(5213), 1, + anon_sym_EQ, + ACTIONS(5560), 1, anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(5562), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4851), 5, + ACTIONS(5106), 4, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112833] = 26, + [111300] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5547), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + ACTIONS(5594), 1, + anon_sym_COMMA, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4939), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5596), 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [112930] = 3, + [111399] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 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, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5520), 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_PIPE_RBRACE, - [112981] = 4, + ACTIONS(4895), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [111480] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5362), 1, - anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2902), 1, + anon_sym_COMMA, + ACTIONS(5089), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 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(4839), 28, + ACTIONS(1948), 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, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -220647,35 +219439,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [113034] = 3, + [111539] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 15, + ACTIONS(4831), 1, + anon_sym_extends, + ACTIONS(5152), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5155), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(5106), 28, - sym__automatic_semicolon, + ACTIONS(3794), 26, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -220694,300 +219489,378 @@ 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, - [113085] = 3, + anon_sym_implements, + [111596] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2908), 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, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5037), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 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_PIPE_RBRACE, - [113136] = 3, + [111693] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, 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(5114), 28, - sym__automatic_semicolon, + ACTIONS(4895), 15, 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, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [113187] = 3, + [111770] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 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, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5023), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 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_PIPE_RBRACE, - [113238] = 27, + [111867] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5580), 1, - anon_sym_EQ, - ACTIONS(5582), 1, + ACTIONS(5528), 1, anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5536), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5600), 1, + ACTIONS(5546), 1, anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, + ACTIONS(5554), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5540), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4895), 4, + ACTIONS(4934), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5606), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113337] = 10, + [111964] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5288), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5276), 1, + anon_sym_BANG, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5610), 1, - anon_sym_LT, - ACTIONS(5612), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - STATE(2687), 1, - sym_type_arguments, - STATE(2839), 1, - sym_arguments, - ACTIONS(4779), 13, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(5528), 1, + anon_sym_as, + ACTIONS(5530), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(5536), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5538), 1, + anon_sym_AMP_AMP, + ACTIONS(5544), 1, anon_sym_AMP, + ACTIONS(5546), 1, anon_sym_PIPE, + ACTIONS(5550), 1, + anon_sym_STAR_STAR, + ACTIONS(5554), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5534), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4781), 23, + ACTIONS(5542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4930), 5, sym__automatic_semicolon, sym__function_signature_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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_extends, + ACTIONS(5552), 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, - [113402] = 11, + [112061] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5614), 1, + ACTIONS(5550), 1, + anon_sym_STAR_STAR, + ACTIONS(5598), 1, anon_sym_LT, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - STATE(2917), 2, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -221001,7 +219874,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 21, + ACTIONS(4895), 18, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -221013,45 +219886,48 @@ 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_extends, - [113469] = 3, + [112132] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, - anon_sym_STAR, + ACTIONS(4845), 1, anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_COMMA, + ACTIONS(4965), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 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(5134), 28, - sym__automatic_semicolon, + ACTIONS(4847), 25, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -221069,156 +219945,192 @@ 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, - [113520] = 27, + [112191] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5081), 1, - anon_sym_EQ, - ACTIONS(5582), 1, - anon_sym_as, - ACTIONS(5584), 1, - anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5590), 1, - anon_sym_QMARK, - ACTIONS(5592), 1, - anon_sym_AMP_AMP, - ACTIONS(5598), 1, - anon_sym_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5020), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5606), 5, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [113619] = 27, + ACTIONS(4895), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [112272] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5071), 1, - anon_sym_EQ, - ACTIONS(5582), 1, - anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5590), 1, - anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4941), 4, - sym__automatic_semicolon, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 9, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5606), 5, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [112359] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(5500), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 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(5013), 24, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [113718] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [112420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 15, + ACTIONS(5245), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -221234,7 +220146,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2900), 28, + ACTIONS(5247), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -221263,137 +220175,197 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [113769] = 27, + [112471] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5042), 1, - anon_sym_EQ, - ACTIONS(5582), 1, - anon_sym_as, - ACTIONS(5584), 1, - anon_sym_in, - ACTIONS(5586), 1, - anon_sym_LT, - ACTIONS(5590), 1, - anon_sym_QMARK, - ACTIONS(5592), 1, - anon_sym_AMP_AMP, - ACTIONS(5598), 1, - anon_sym_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + ACTIONS(5591), 1, + anon_sym_LT, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5018), 4, - sym__automatic_semicolon, + ACTIONS(4893), 10, + anon_sym_BANG, + anon_sym_in, + 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(4895), 15, + anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5606), 5, + 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, - [113868] = 7, + [112546] = 12, ACTIONS(3), 1, sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, ACTIONS(4789), 1, - anon_sym_DOT, + anon_sym_LPAREN, ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4853), 3, - anon_sym_EQ, + ACTIONS(5591), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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, - ACTIONS(4855), 8, - anon_sym_LBRACE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 19, + anon_sym_as, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(2060), 12, - anon_sym_STAR, - anon_sym_BANG, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [112615] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, anon_sym_SLASH, - anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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, - [113927] = 4, + ACTIONS(4895), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + [112706] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3815), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(5177), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -221407,16 +220379,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 28, + ACTIONS(5179), 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, @@ -221436,34 +220407,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [113980] = 3, + anon_sym_PIPE_RBRACE, + [112757] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 15, + ACTIONS(5223), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(5146), 28, + ACTIONS(3794), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -221482,17 +220457,31 @@ 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, - [114031] = 3, + [112812] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5601), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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, @@ -221503,17 +220492,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4855), 28, - sym__automatic_semicolon, + ACTIONS(5099), 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, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -221529,473 +220514,471 @@ 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, - [114082] = 26, + [112879] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, - anon_sym_as, - ACTIONS(5541), 1, - anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_AMP_AMP, - ACTIONS(5555), 1, - anon_sym_AMP, - ACTIONS(5557), 1, - anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5018), 5, + ACTIONS(4893), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 15, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, + anon_sym_as, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5563), 5, + 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, - [114179] = 26, + anon_sym_extends, + [112956] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, - anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, - anon_sym_AMP_AMP, - ACTIONS(5555), 1, - anon_sym_AMP, - ACTIONS(5557), 1, - anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4941), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114276] = 26, + ACTIONS(4895), 10, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [113039] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, - anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5547), 1, - anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5557), 1, - anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5020), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114373] = 3, + ACTIONS(4895), 9, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [113126] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 15, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5550), 1, + anon_sym_STAR_STAR, + ACTIONS(5598), 1, + anon_sym_LT, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 10, 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(5032), 28, + ACTIONS(4895), 15, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [114424] = 3, + [113201] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 15, - anon_sym_STAR, - anon_sym_EQ, - anon_sym_BANG, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5530), 1, anon_sym_in, + ACTIONS(5532), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5538), 1, + anon_sym_AMP_AMP, + ACTIONS(5544), 1, anon_sym_AMP, + ACTIONS(5546), 1, anon_sym_PIPE, + ACTIONS(5550), 1, + anon_sym_STAR_STAR, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5534), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4974), 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, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5552), 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, + ACTIONS(4895), 7, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [114475] = 27, + [113292] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5582), 1, + ACTIONS(5528), 1, anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5536), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5600), 1, + ACTIONS(5546), 1, anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, + ACTIONS(5554), 1, anon_sym_QMARK_QMARK, - ACTIONS(5617), 1, - anon_sym_EQ, - STATE(4828), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5540), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4939), 4, + ACTIONS(4924), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5606), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114574] = 27, + [113389] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4849), 1, - anon_sym_EQ, - ACTIONS(4980), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5582), 1, + ACTIONS(5528), 1, anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5536), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5600), 1, + ACTIONS(5546), 1, anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, + ACTIONS(5554), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5540), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4851), 4, + ACTIONS(4932), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5606), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [114673] = 6, + [113486] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_extends, - ACTIONS(5567), 1, - anon_sym_LBRACK, - ACTIONS(4881), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5034), 13, + ACTIONS(1998), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222005,11 +220988,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(5036), 26, + ACTIONS(2000), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222017,6 +221002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -222035,118 +221021,91 @@ 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, - [114730] = 23, + [113537] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5584), 1, + ACTIONS(5333), 1, + anon_sym_is, + ACTIONS(4829), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(5586), 1, anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_AMP_AMP, - ACTIONS(5598), 1, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5600), 1, anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_STAR_STAR, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5602), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5578), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5588), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(4831), 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(5606), 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(4943), 6, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [114821] = 12, + [113590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5089), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5619), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 14, + anon_sym_extends, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 11, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 18, + ACTIONS(1948), 25, sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + 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, @@ -222160,96 +221119,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [114890] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5604), 1, - anon_sym_STAR_STAR, - ACTIONS(5619), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5578), 3, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [113647] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 11, 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(4943), 14, + ACTIONS(4918), 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, - [114965] = 6, + anon_sym_PIPE_RBRACE, + [113698] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5173), 3, - anon_sym_COMMA, + ACTIONS(5524), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(4910), 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(4871), 25, + ACTIONS(4912), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, @@ -222271,21 +221218,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, - [115022] = 6, + [113751] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(4845), 1, anon_sym_EQ, - ACTIONS(4950), 3, + ACTIONS(4965), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(4953), 3, + ACTIONS(4968), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(4843), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -222297,7 +221245,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1948), 25, + ACTIONS(4847), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222323,335 +221271,283 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_PIPE_RBRACE, - [115079] = 21, + [113808] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5584), 1, - anon_sym_in, - ACTIONS(5586), 1, - anon_sym_LT, - ACTIONS(5592), 1, - anon_sym_AMP_AMP, - ACTIONS(5598), 1, - anon_sym_AMP, - ACTIONS(5604), 1, + ACTIONS(5582), 1, anon_sym_STAR_STAR, + ACTIONS(5588), 1, + anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(4893), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5588), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 4, 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, - ACTIONS(5606), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 17, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [115166] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5584), 1, - anon_sym_in, - ACTIONS(5586), 1, - anon_sym_LT, - ACTIONS(5604), 1, - anon_sym_STAR_STAR, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5578), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5588), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5596), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5606), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 9, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_extends, - [115249] = 16, + [113879] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5586), 1, + ACTIONS(4963), 1, + anon_sym_EQ, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, + anon_sym_in, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5604), 1, + ACTIONS(5568), 1, + anon_sym_QMARK, + ACTIONS(5570), 1, + anon_sym_AMP_AMP, + ACTIONS(5576), 1, + anon_sym_AMP, + ACTIONS(5578), 1, + anon_sym_PIPE, + ACTIONS(5582), 1, anon_sym_STAR_STAR, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5602), 2, + ACTIONS(5572), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 9, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5566), 3, anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 14, + ACTIONS(5574), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4930), 4, sym__automatic_semicolon, - anon_sym_as, anon_sym_COMMA, anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_extends, + ACTIONS(5584), 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_extends, - [115326] = 18, + [113978] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5586), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5604), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - STATE(4828), 1, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5602), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5606), 5, + ACTIONS(4932), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4945), 6, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4943), 9, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [115407] = 26, + [114075] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5286), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5288), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5539), 1, + ACTIONS(5560), 1, anon_sym_as, - ACTIONS(5541), 1, + ACTIONS(5562), 1, anon_sym_in, - ACTIONS(5543), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5547), 1, + ACTIONS(5568), 1, anon_sym_QMARK, - ACTIONS(5549), 1, + ACTIONS(5570), 1, anon_sym_AMP_AMP, - ACTIONS(5555), 1, + ACTIONS(5576), 1, anon_sym_AMP, - ACTIONS(5557), 1, + ACTIONS(5578), 1, anon_sym_PIPE, - ACTIONS(5561), 1, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - ACTIONS(5565), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - STATE(4823), 1, + ACTIONS(5604), 1, + anon_sym_EQ, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5551), 2, + ACTIONS(5572), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5559), 2, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2917), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5537), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5545), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5553), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4895), 5, + ACTIONS(4934), 4, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5563), 5, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115504] = 3, + [114174] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 15, + ACTIONS(4829), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222667,7 +221563,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 28, + ACTIONS(4831), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222696,10 +221592,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115555] = 3, + [114225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 15, + ACTIONS(4906), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -222715,7 +221611,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 28, + ACTIONS(4908), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -222744,36 +221640,63 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [115606] = 13, + [114276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(2296), 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(2294), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4986), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4992), 1, anon_sym_DOT, - ACTIONS(4994), 1, anon_sym_QMARK_DOT, - ACTIONS(5604), 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(5619), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 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(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 14, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [114327] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 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, @@ -222784,201 +221707,221 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 17, + ACTIONS(4904), 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, - [115677] = 27, + anon_sym_PIPE_RBRACE, + [114378] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5093), 1, - anon_sym_EQ, - ACTIONS(5582), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5600), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5095), 4, - sym__automatic_semicolon, + ACTIONS(5015), 5, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5606), 5, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115776] = 27, + [114475] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5582), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5600), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - ACTIONS(5622), 1, - anon_sym_EQ, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4956), 4, - sym__automatic_semicolon, + ACTIONS(5104), 5, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5606), 5, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [115875] = 5, + [114572] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 3, - anon_sym_COMMA, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5170), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5606), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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(3800), 25, - sym__automatic_semicolon, + ACTIONS(4950), 19, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_SEMI, - 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, @@ -222992,91 +221935,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_PIPE_RBRACE, - [115930] = 27, + [114641] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5582), 1, - anon_sym_as, - ACTIONS(5584), 1, - anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5606), 1, anon_sym_LT, - ACTIONS(5590), 1, - anon_sym_QMARK, - ACTIONS(5592), 1, - anon_sym_AMP_AMP, - ACTIONS(5598), 1, - anon_sym_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_STAR_STAR, - ACTIONS(5608), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5624), 1, - anon_sym_EQ, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5588), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4958), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5606), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [116029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5048), 15, + ACTIONS(4948), 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, @@ -223087,17 +221972,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 28, - sym__automatic_semicolon, + ACTIONS(4950), 19, 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, @@ -223111,238 +221992,300 @@ 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, - [116080] = 3, + [114710] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5276), 1, anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5528), 1, + anon_sym_as, + ACTIONS(5530), 1, anon_sym_in, + ACTIONS(5532), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5536), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5538), 1, + anon_sym_AMP_AMP, + ACTIONS(5544), 1, anon_sym_AMP, + ACTIONS(5546), 1, anon_sym_PIPE, + ACTIONS(5550), 1, + anon_sym_STAR_STAR, + ACTIONS(5554), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5534), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 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, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4900), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5552), 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_PIPE_RBRACE, - [116131] = 27, + [114807] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5280), 1, - anon_sym_EQ, - ACTIONS(5582), 1, + ACTIONS(5528), 1, anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5536), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5600), 1, + ACTIONS(5546), 1, anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, + ACTIONS(5554), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5540), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5154), 4, + ACTIONS(5087), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5606), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116230] = 27, + [114904] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5582), 1, + ACTIONS(5528), 1, anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(5530), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5532), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5536), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5538), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5544), 1, anon_sym_AMP, - ACTIONS(5600), 1, + ACTIONS(5546), 1, anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5550), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, + ACTIONS(5554), 1, anon_sym_QMARK_QMARK, - ACTIONS(5626), 1, - anon_sym_EQ, - STATE(4828), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5540), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5548), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5526), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5534), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5542), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4960), 4, + ACTIONS(5106), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, anon_sym_extends, - ACTIONS(5606), 5, + ACTIONS(5552), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116329] = 7, + [115001] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5032), 1, - anon_sym_COMMA, - ACTIONS(5173), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5176), 3, + ACTIONS(5609), 1, + anon_sym_LT, + ACTIONS(5611), 1, + anon_sym_DOT, + ACTIONS(5613), 1, + anon_sym_is, + STATE(2845), 1, + sym_type_arguments, + ACTIONS(4823), 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, - ACTIONS(4867), 11, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3862), 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [115060] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5260), 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(4871), 25, + ACTIONS(5262), 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -223360,25 +222303,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [116388] = 8, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [115111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(5586), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 14, + ACTIONS(2890), 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, @@ -223389,10 +222324,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 23, + ACTIONS(2888), 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, @@ -223412,82 +222350,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [116449] = 26, + anon_sym_PIPE_RBRACE, + [115162] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5568), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5570), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5576), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5578), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5582), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5615), 1, + anon_sym_EQ, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5572), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4939), 5, + ACTIONS(4853), 4, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 5, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [116546] = 3, + [115261] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 15, + ACTIONS(5158), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223503,7 +222444,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5024), 28, + ACTIONS(5160), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223532,41 +222473,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116597] = 7, + [115312] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_COMMA, - ACTIONS(4950), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(5162), 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(1948), 25, + ACTIONS(5164), 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -223584,10 +222519,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [116656] = 3, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [115363] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 15, + ACTIONS(5174), 1, + anon_sym_DOT, + ACTIONS(5170), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223603,7 +222542,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5018), 28, + ACTIONS(5172), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223612,7 +222551,6 @@ 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, @@ -223632,37 +222570,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116707] = 5, + [115416] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5086), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(5181), 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(3800), 25, + ACTIONS(5183), 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, @@ -223681,11 +222616,12 @@ 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, - [116762] = 3, + [115467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 15, + ACTIONS(3604), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223701,7 +222637,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 28, + ACTIONS(3606), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223730,10 +222666,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116813] = 3, + [115518] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 15, + ACTIONS(5233), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223749,7 +222685,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5069), 28, + ACTIONS(5235), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223778,10 +222714,74 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116864] = 3, + [115569] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 10, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [115652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 15, + ACTIONS(5189), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -223797,7 +222797,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2038), 28, + ACTIONS(5191), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223826,61 +222826,226 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [116915] = 4, + [115703] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5567), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5059), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 27, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4900), 5, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115800] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5087), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 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, + [115897] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5276), 1, + anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5528), 1, + anon_sym_as, + ACTIONS(5530), 1, + anon_sym_in, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(5536), 1, + anon_sym_QMARK, + ACTIONS(5538), 1, + anon_sym_AMP_AMP, + ACTIONS(5544), 1, + anon_sym_AMP, + ACTIONS(5546), 1, + anon_sym_PIPE, + ACTIONS(5550), 1, + anon_sym_STAR_STAR, + ACTIONS(5554), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5548), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5534), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4853), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [116968] = 3, + ACTIONS(5552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [115994] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 15, - anon_sym_STAR, + ACTIONS(3814), 1, anon_sym_EQ, + ACTIONS(3790), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -223894,7 +223059,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5065), 28, + ACTIONS(3794), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -223923,61 +223088,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117019] = 3, + [116047] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, anon_sym_in, + ACTIONS(5564), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5568), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5570), 1, + anon_sym_AMP_AMP, + ACTIONS(5576), 1, anon_sym_AMP, + ACTIONS(5578), 1, anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5617), 1, + anon_sym_EQ, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5572), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5556), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5566), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5142), 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, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5095), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5584), 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_PIPE_RBRACE, - [117070] = 4, + [116146] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(1944), 14, + ACTIONS(5229), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -223991,7 +223179,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1948), 28, + ACTIONS(5231), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224020,13 +223208,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117123] = 4, + [116197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5436), 1, - anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(5221), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -224040,7 +223227,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 28, + ACTIONS(4900), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224069,58 +223256,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117176] = 3, + [116248] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 15, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5073), 1, + anon_sym_EQ, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, anon_sym_in, + ACTIONS(5564), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5568), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5570), 1, + anon_sym_AMP_AMP, + ACTIONS(5576), 1, anon_sym_AMP, + ACTIONS(5578), 1, anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5572), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5580), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5556), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5566), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5266), 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, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5037), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5584), 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_PIPE_RBRACE, - [117227] = 3, + [116347] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 15, + ACTIONS(5217), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224136,7 +223347,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3770), 28, + ACTIONS(5219), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224165,70 +223376,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117278] = 12, + [116398] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5288), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5292), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5300), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5575), 1, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, + anon_sym_in, + ACTIONS(5564), 1, anon_sym_LT, - STATE(4823), 1, + ACTIONS(5568), 1, + anon_sym_QMARK, + ACTIONS(5570), 1, + anon_sym_AMP_AMP, + ACTIONS(5576), 1, + anon_sym_AMP, + ACTIONS(5578), 1, + anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5619), 1, + anon_sym_EQ, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5322), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2917), 2, + ACTIONS(5572), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5580), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5556), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5566), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5574), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5023), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5584), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [116497] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 19, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5106), 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 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_extends, - [117347] = 4, + [116594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(4966), 14, + ACTIONS(5215), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -224242,7 +223538,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 28, + ACTIONS(5087), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224271,10 +223567,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117400] = 3, + [116645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 15, + ACTIONS(5213), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224290,7 +223586,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 28, + ACTIONS(5106), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224319,12 +223615,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117451] = 3, + [116696] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 15, - anon_sym_STAR, + ACTIONS(4845), 1, anon_sym_EQ, + ACTIONS(4843), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -224338,7 +223635,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 28, + ACTIONS(4847), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224367,10 +223664,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117502] = 3, + [116749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5209), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224386,7 +223683,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 28, + ACTIONS(5211), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224415,10 +223712,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117553] = 3, + [116800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 15, + ACTIONS(5205), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224434,7 +223731,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5020), 28, + ACTIONS(5207), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224463,10 +223760,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117604] = 3, + [116851] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 15, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(5009), 1, + anon_sym_QMARK_DOT, + ACTIONS(1998), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224482,7 +223785,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5138), 28, + ACTIONS(2000), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224490,9 +223793,6 @@ static uint16_t ts_small_parse_table[] = { 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, @@ -224511,10 +223811,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117655] = 3, + [116908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 15, + ACTIONS(2057), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224530,7 +223830,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 28, + ACTIONS(2059), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224559,10 +223859,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117706] = 3, + [116959] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 15, + ACTIONS(1972), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224578,7 +223878,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 28, + ACTIONS(1974), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224607,10 +223907,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117757] = 3, + [117010] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 15, + ACTIONS(5061), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -224626,7 +223926,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5079), 28, + ACTIONS(5063), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -224655,21 +223955,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [117808] = 7, + [117061] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5610), 1, - anon_sym_LT, - ACTIONS(5628), 1, - anon_sym_DOT, - ACTIONS(5630), 1, - anon_sym_is, - STATE(2829), 1, - sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(5108), 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, @@ -224680,15 +223974,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 26, + ACTIONS(5110), 28, 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, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -224707,248 +224002,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [117867] = 26, + anon_sym_PIPE_RBRACE, + [117112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(5025), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4956), 5, + ACTIONS(5027), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [117964] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5020), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 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, - [118061] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5095), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [118158] = 13, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117163] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5185), 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, @@ -224959,31 +224070,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 18, + ACTIONS(5187), 28, + 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_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, - [118229] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117214] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 15, + ACTIONS(5491), 1, + anon_sym_is, + ACTIONS(4829), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -224997,7 +224119,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 28, + ACTIONS(4831), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225026,13 +224148,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118280] = 4, + [117267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4867), 14, + ACTIONS(2886), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -225046,7 +224167,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 28, + ACTIONS(2884), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225075,113 +224196,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118333] = 26, + [117318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(5241), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4941), 5, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [118430] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(5110), 1, - anon_sym_QMARK_DOT, - ACTIONS(4853), 3, - anon_sym_EQ, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4855), 8, + ACTIONS(5243), 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_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(2060), 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(2062), 18, - 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, @@ -225198,155 +224242,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [118489] = 26, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4839), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5018), 5, + ACTIONS(4841), 28, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [118586] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5637), 4, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - ACTIONS(5530), 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, - [118685] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [117420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4853), 15, + ACTIONS(3764), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225362,7 +224311,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4855), 27, + ACTIONS(3766), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225371,6 +224320,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, @@ -225390,31 +224340,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [118738] = 11, + [117471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5639), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 14, + ACTIONS(5249), 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, @@ -225425,11 +224359,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 20, + ACTIONS(5251), 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, @@ -225445,104 +224385,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [118805] = 18, + anon_sym_PIPE_RBRACE, + [117522] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5510), 1, + ACTIONS(5598), 1, anon_sym_LT, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4893), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 5, anon_sym_BANG, anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 10, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [118886] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_extends, - ACTIONS(5167), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5170), 3, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 26, + ACTIONS(4895), 19, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, 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_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -225556,42 +224444,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, - [118943] = 6, + anon_sym_extends, + [117591] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_extends, - ACTIONS(5083), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5086), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(5256), 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(3800), 26, + ACTIONS(5258), 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_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -225610,179 +224491,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [119000] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5582), 1, - anon_sym_as, - ACTIONS(5584), 1, - anon_sym_in, - ACTIONS(5586), 1, - anon_sym_LT, - ACTIONS(5590), 1, - anon_sym_QMARK, - ACTIONS(5592), 1, - anon_sym_AMP_AMP, - ACTIONS(5598), 1, - anon_sym_AMP, - ACTIONS(5600), 1, - anon_sym_PIPE, - ACTIONS(5604), 1, - anon_sym_STAR_STAR, - ACTIONS(5608), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5642), 1, - anon_sym_EQ, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5594), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5602), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5578), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5588), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5596), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5148), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, anon_sym_extends, - ACTIONS(5606), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [119099] = 27, + anon_sym_PIPE_RBRACE, + [117642] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5582), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(5584), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5586), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5590), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5592), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5598), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5600), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5604), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5608), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - ACTIONS(5644), 1, - anon_sym_EQ, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5594), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5602), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5578), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5588), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5596), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5217), 4, - sym__automatic_semicolon, + ACTIONS(4853), 5, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(5606), 5, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [119198] = 12, + [117739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5646), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 14, + ACTIONS(5201), 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, @@ -225793,11 +224583,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 18, + ACTIONS(5203), 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, @@ -225811,31 +224607,26 @@ 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, - [119267] = 12, + anon_sym_PIPE_RBRACE, + [117790] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5646), 1, + ACTIONS(5564), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 14, + ACTIONS(5011), 14, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225850,11 +224641,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 18, + ACTIONS(5013), 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, @@ -225868,11 +224662,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_extends, - [119336] = 3, + [117851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 15, + ACTIONS(2900), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225888,7 +224684,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2120), 28, + ACTIONS(2898), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225917,10 +224713,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119387] = 3, + [117902] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 15, + ACTIONS(4920), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -225936,7 +224732,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 28, + ACTIONS(4922), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -225965,12 +224761,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119438] = 3, + [117953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 15, - anon_sym_STAR, + ACTIONS(3806), 1, anon_sym_EQ, + ACTIONS(3790), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -225984,15 +224781,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2110), 28, - sym__automatic_semicolon, + ACTIONS(3794), 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, @@ -226012,11 +224810,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [119489] = 3, + [118006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 15, + ACTIONS(5197), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226032,7 +224829,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2142), 28, + ACTIONS(5199), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226061,10 +224858,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119540] = 3, + [118057] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 15, + ACTIONS(5193), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226080,7 +224877,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2185), 28, + ACTIONS(5195), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226109,37 +224906,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119591] = 5, + [118108] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3796), 12, - anon_sym_STAR, + ACTIONS(1946), 1, anon_sym_EQ, + ACTIONS(1944), 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(3800), 25, + ACTIONS(1948), 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, @@ -226158,72 +224953,60 @@ 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, - [119646] = 16, + [118161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, + ACTIONS(2908), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, + 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(4943), 15, + ACTIONS(2906), 28, + 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_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, - [119723] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [118212] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 15, + ACTIONS(2199), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226239,7 +225022,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 28, + ACTIONS(2201), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226268,12 +225051,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119774] = 3, + [118263] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 15, - anon_sym_STAR, + ACTIONS(1946), 1, anon_sym_EQ, + ACTIONS(5039), 1, + sym__automatic_semicolon, + ACTIONS(1942), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -226287,8 +225073,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5221), 28, - sym__automatic_semicolon, + ACTIONS(1940), 27, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -226316,10 +225101,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119825] = 3, + [118318] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 15, + ACTIONS(2185), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226335,7 +225120,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 28, + ACTIONS(2187), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226364,10 +225149,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119876] = 3, + [118369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 15, + ACTIONS(2028), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226383,7 +225168,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 28, + ACTIONS(2030), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226412,10 +225197,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119927] = 3, + [118420] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 15, + ACTIONS(2038), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226431,7 +225216,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3734), 28, + ACTIONS(2040), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226460,24 +225245,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [119978] = 8, + [118471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5543), 1, - anon_sym_LT, - STATE(4823), 1, - sym_type_arguments, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 13, + ACTIONS(4926), 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, @@ -226488,11 +225264,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 24, + ACTIONS(4928), 28, 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, anon_sym_DOT, @@ -226512,11 +225290,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, - [120039] = 3, + anon_sym_PIPE_RBRACE, + [118522] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 15, + ACTIONS(2155), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226532,7 +225312,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 28, + ACTIONS(2157), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226561,36 +225341,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120090] = 4, + [118573] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_DOT, - ACTIONS(5202), 15, + ACTIONS(5065), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5067), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3790), 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(5204), 27, + ACTIONS(3794), 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_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -226608,76 +225390,63 @@ 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, - [120143] = 19, + [118628] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5009), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5045), 3, + anon_sym_EQ, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5047), 8, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(1998), 12, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(2000), 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(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5530), 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(4943), 10, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [120226] = 3, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [118687] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 15, + ACTIONS(5166), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226693,7 +225462,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5200), 28, + ACTIONS(5168), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -226722,159 +225491,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120277] = 21, + [118738] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 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, - [120364] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5632), 1, + ACTIONS(5621), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4948), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, 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(4943), 15, + ACTIONS(4950), 19, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_LBRACE, + 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, - [120439] = 12, + anon_sym_extends, + [118807] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5632), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5073), 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, @@ -226885,13 +225567,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 19, + ACTIONS(5037), 28, + 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_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, @@ -226905,78 +225591,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [120508] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - [120599] = 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [118858] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4750), 15, + ACTIONS(5118), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -226992,7 +225615,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4754), 28, + ACTIONS(5120), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227021,12 +225644,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120650] = 3, + [118909] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 15, - anon_sym_STAR, + ACTIONS(5019), 1, anon_sym_EQ, + ACTIONS(5017), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -227040,7 +225664,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 28, + ACTIONS(5021), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227069,15 +225693,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120701] = 3, + [118962] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 15, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5621), 1, + anon_sym_LT, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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, @@ -227088,17 +225730,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 28, + ACTIONS(4950), 19, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -227112,15 +225749,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_extends, + [119031] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5276), 1, + anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5528), 1, + anon_sym_as, + ACTIONS(5530), 1, + anon_sym_in, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(5536), 1, + anon_sym_QMARK, + ACTIONS(5538), 1, + anon_sym_AMP_AMP, + ACTIONS(5544), 1, + anon_sym_AMP, + ACTIONS(5546), 1, + anon_sym_PIPE, + ACTIONS(5550), 1, + anon_sym_STAR_STAR, + ACTIONS(5554), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5312), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(5540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5548), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5534), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5104), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119128] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1028), 1, anon_sym_BQUOTE, + ACTIONS(5276), 1, + anon_sym_BANG, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5290), 1, + anon_sym_QMARK_DOT, + ACTIONS(5528), 1, + anon_sym_as, + ACTIONS(5530), 1, + anon_sym_in, + ACTIONS(5532), 1, + anon_sym_LT, + ACTIONS(5536), 1, + anon_sym_QMARK, + ACTIONS(5538), 1, + anon_sym_AMP_AMP, + ACTIONS(5544), 1, + anon_sym_AMP, + ACTIONS(5546), 1, + anon_sym_PIPE, + ACTIONS(5550), 1, + anon_sym_STAR_STAR, + ACTIONS(5554), 1, + anon_sym_QMARK_QMARK, + STATE(4812), 1, + sym_type_arguments, + ACTIONS(5312), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5540), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5548), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5526), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5534), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5542), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5015), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120752] = 3, + ACTIONS(5552), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [119225] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 15, + ACTIONS(5122), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227136,7 +225911,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5233), 28, + ACTIONS(5124), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227165,10 +225940,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120803] = 3, + [119276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2060), 15, + ACTIONS(5126), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227184,7 +225959,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 28, + ACTIONS(5128), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227213,10 +225988,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120854] = 3, + [119327] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 15, + ACTIONS(5148), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227232,7 +226007,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5260), 28, + ACTIONS(5150), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227261,15 +226036,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [120905] = 3, + [119378] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 15, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, + anon_sym_LBRACK, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5609), 1, + anon_sym_LT, + ACTIONS(5624), 1, + anon_sym_QMARK_DOT, + STATE(2707), 1, + sym_type_arguments, + STATE(2975), 1, + sym_arguments, + ACTIONS(4785), 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, @@ -227280,17 +226067,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 28, + ACTIONS(4787), 23, 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, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -227308,11 +226091,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [120956] = 3, + [119443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 15, + ACTIONS(5142), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227328,7 +226110,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2896), 28, + ACTIONS(5144), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227357,21 +226139,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121007] = 6, + [119494] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4986), 1, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5110), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(2060), 15, + ACTIONS(5626), 1, + anon_sym_LT, + STATE(4812), 1, + sym_type_arguments, + STATE(2954), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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, @@ -227382,13 +226173,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 25, + ACTIONS(5099), 21, 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_AMP_AMP, anon_sym_PIPE_PIPE, @@ -227405,13 +226194,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_PIPE_RBRACE, - [121064] = 3, + [119561] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 15, + ACTIONS(5041), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227427,7 +226214,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 28, + ACTIONS(5043), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227456,10 +226243,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121115] = 3, + [119612] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 15, + ACTIONS(2014), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227475,7 +226262,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1978), 28, + ACTIONS(2016), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227504,12 +226291,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121166] = 3, + [119663] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 15, - anon_sym_STAR, + ACTIONS(3792), 1, anon_sym_EQ, + ACTIONS(3790), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -227523,7 +226311,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2052), 28, + ACTIONS(3794), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227552,10 +226340,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121217] = 3, + [119716] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 15, + ACTIONS(5264), 15, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -227571,7 +226359,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 28, + ACTIONS(5266), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -227600,89 +226388,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121268] = 28, + [119767] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5651), 1, - anon_sym_COMMA, - ACTIONS(5654), 1, - anon_sym_RBRACE, - ACTIONS(5656), 1, - anon_sym_in, - ACTIONS(5658), 1, - anon_sym_LT, - ACTIONS(5662), 1, - anon_sym_QMARK, - ACTIONS(5664), 1, - anon_sym_AMP_AMP, - ACTIONS(5670), 1, - anon_sym_AMP, - ACTIONS(5672), 1, - anon_sym_PIPE, - ACTIONS(5676), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(4956), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5660), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5668), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5678), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [121368] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5682), 1, - anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_PIPE, - ACTIONS(5686), 1, - anon_sym_extends, - ACTIONS(5254), 12, + ACTIONS(5045), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -227690,21 +226403,21 @@ 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(5256), 27, + ACTIONS(5047), 27, + 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, @@ -227722,136 +226435,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [121424] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5690), 1, - anon_sym_in, - ACTIONS(5692), 1, - anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5688), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5694), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5696), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5702), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_extends, - [121506] = 16, + anon_sym_PIPE_RBRACE, + [119820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5692), 1, - anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5688), 3, + ACTIONS(5268), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5696), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4943), 14, - anon_sym_as, - anon_sym_LBRACE, - 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_extends, - [121582] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, anon_sym_EQ, - ACTIONS(3796), 14, - anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -227865,9 +226456,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 27, + ACTIONS(5270), 28, sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LPAREN, @@ -227893,13 +226485,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [121634] = 4, + [119871] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3879), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(5237), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -227913,12 +226504,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 27, + ACTIONS(5239), 28, 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, @@ -227929,109 +226520,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [121686] = 20, - ACTIONS(3), 1, - sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(125), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5331), 1, - anon_sym_LBRACK, - ACTIONS(5706), 1, - anon_sym_async, - ACTIONS(5708), 1, - anon_sym_static, - ACTIONS(5710), 1, - anon_sym_readonly, - STATE(3784), 1, - sym_accessibility_modifier, - ACTIONS(129), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4002), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5712), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(5714), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4169), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(5152), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5286), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(5704), 11, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [121770] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5716), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 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, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119922] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4730), 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, @@ -228042,12 +226552,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 18, + ACTIONS(4734), 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, @@ -228061,94 +226576,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [121838] = 18, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [119973] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5692), 1, + ACTIONS(5629), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(4948), 14, 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, - ACTIONS(5694), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(4950), 18, + 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, - ACTIONS(4945), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5702), 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(4943), 9, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_extends, - [121918] = 13, + [120042] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5719), 1, + ACTIONS(5532), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -228162,49 +226666,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 17, + ACTIONS(5013), 24, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_RPAREN, - 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, - [121988] = 12, + [120103] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5716), 1, + ACTIONS(5629), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4948), 14, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -228217,11 +226729,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 18, + ACTIONS(4950), 18, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -228236,230 +226747,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [122056] = 26, + anon_sym_extends, + [120172] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5564), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + ACTIONS(5568), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5570), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, + ACTIONS(5576), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5578), 1, anon_sym_PIPE, - ACTIONS(5734), 1, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + ACTIONS(5586), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5632), 1, + anon_sym_EQ, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, + ACTIONS(5572), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5580), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(5556), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5694), 3, + ACTIONS(5566), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5574), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4956), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5015), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(5702), 5, + ACTIONS(5584), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [122152] = 29, + [120271] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5634), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(5736), 1, - anon_sym_RPAREN, - ACTIONS(5738), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - STATE(5606), 1, - sym_type_annotation, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5097), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [122254] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5690), 1, anon_sym_in, - ACTIONS(5692), 1, - anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5726), 1, - anon_sym_AMP_AMP, - ACTIONS(5730), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5732), 1, anon_sym_PIPE, - ACTIONS(5734), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5728), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5688), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5694), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5099), 20, + 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, - ACTIONS(4958), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 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, - [122350] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_extends, + [120338] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_PIPE, - ACTIONS(5744), 1, - anon_sym_extends, - ACTIONS(5209), 12, + ACTIONS(5146), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -228467,11 +226889,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(5211), 27, + ACTIONS(4924), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -228498,23 +226922,17 @@ 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, - [122406] = 7, + [120389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, - anon_sym_LT, - ACTIONS(5420), 1, - anon_sym_DOT, - ACTIONS(5746), 1, - anon_sym_is, - STATE(2495), 1, - sym_type_arguments, - ACTIONS(4833), 14, + ACTIONS(4936), 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, @@ -228525,13 +226943,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 24, + ACTIONS(4938), 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, @@ -228550,13 +226971,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [122464] = 4, + anon_sym_PIPE_RBRACE, + [120440] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - anon_sym_AMP, - ACTIONS(5748), 13, + ACTIONS(4940), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -228564,12 +226985,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(5750), 28, + ACTIONS(4942), 28, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -228598,31 +227020,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_PIPE_RBRACE, - [122516] = 11, + [120491] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5752), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 14, + ACTIONS(4944), 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, @@ -228633,10 +227039,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 19, + ACTIONS(4946), 28, + sym__automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, + 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, @@ -228652,95 +227065,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [122582] = 26, + anon_sym_PIPE_RBRACE, + [120542] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(5138), 15, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5690), 1, anon_sym_in, - ACTIONS(5692), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5726), 1, - anon_sym_AMP_AMP, - ACTIONS(5730), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5732), 1, anon_sym_PIPE, - ACTIONS(5734), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5728), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5688), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5694), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5140), 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, - ACTIONS(4960), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 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, - [122678] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(5692), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 13, + ACTIONS(5134), 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, @@ -228751,11 +227135,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 23, + ACTIONS(5136), 28, + sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -228774,18 +227161,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, - [122738] = 6, + anon_sym_PIPE_RBRACE, + [120644] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - anon_sym_LBRACE, - ACTIONS(5757), 1, - anon_sym_DOT, - STATE(2806), 1, - sym_statement_block, - ACTIONS(1930), 14, + ACTIONS(4959), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -228799,14 +227183,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1928), 25, + ACTIONS(4961), 28, 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, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -228825,15 +227211,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [122794] = 5, + anon_sym_PIPE_RBRACE, + [120695] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - anon_sym_LBRACE, - STATE(2806), 1, - sym_statement_block, - ACTIONS(1930), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5560), 1, + anon_sym_as, + ACTIONS(5562), 1, + anon_sym_in, + ACTIONS(5564), 1, + anon_sym_LT, + ACTIONS(5568), 1, + anon_sym_QMARK, + ACTIONS(5570), 1, + anon_sym_AMP_AMP, + ACTIONS(5576), 1, + anon_sym_AMP, + ACTIONS(5578), 1, + anon_sym_PIPE, + ACTIONS(5582), 1, + anon_sym_STAR_STAR, + ACTIONS(5586), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5637), 1, + anon_sym_EQ, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5572), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5580), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5556), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5566), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5574), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5104), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(5584), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [120794] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2073), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -228847,11 +227303,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1928), 26, + ACTIONS(2075), 28, 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, @@ -228874,13 +227331,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [122848] = 4, + anon_sym_PIPE_RBRACE, + [120845] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, - anon_sym_AMP, - ACTIONS(5759), 13, + ACTIONS(4963), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -228888,21 +227345,21 @@ 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(5761), 28, + ACTIONS(4930), 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, @@ -228922,15 +227379,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [122900] = 5, + anon_sym_PIPE_RBRACE, + [120896] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(5763), 1, - sym__automatic_semicolon, - ACTIONS(1942), 14, + ACTIONS(1962), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -228944,11 +227399,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1940), 26, - sym__function_signature_automatic_semicolon, + ACTIONS(1964), 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, @@ -228971,17 +227427,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [122954] = 6, + anon_sym_PIPE_RBRACE, + [120947] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, - anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_PIPE, - ACTIONS(5686), 1, - anon_sym_extends, - ACTIONS(5765), 12, + ACTIONS(2145), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -228989,20 +227441,21 @@ 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(5767), 27, + ACTIONS(2147), 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, @@ -229021,13 +227474,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [123010] = 4, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [120998] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3847), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(5003), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -229041,12 +227495,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 27, + ACTIONS(5005), 28, 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, @@ -229069,17 +227523,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [123062] = 6, + anon_sym_PIPE_RBRACE, + [121049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, - anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_PIPE, - ACTIONS(5686), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(2123), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -229087,20 +227537,21 @@ 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(5075), 27, + ACTIONS(2125), 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, @@ -229119,152 +227570,140 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [123118] = 26, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [121100] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5645), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5649), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5217), 4, - sym__automatic_semicolon, + ACTIONS(4930), 4, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 5, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [123214] = 26, + [121196] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, - anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5669), 1, anon_sym_LT, - ACTIONS(5662), 1, - anon_sym_QMARK, - ACTIONS(5664), 1, - anon_sym_AMP_AMP, - ACTIONS(5670), 1, - anon_sym_AMP, - ACTIONS(5672), 1, - anon_sym_PIPE, - ACTIONS(5676), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(4893), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5660), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(4895), 18, + anon_sym_as, + anon_sym_LBRACE, + 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(5148), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 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, - [123310] = 4, + anon_sym_extends, + [121264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5630), 1, - anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(3856), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229279,12 +227718,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 27, + ACTIONS(3794), 27, 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, @@ -229307,88 +227745,169 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [123362] = 12, + anon_sym_PIPE_RBRACE, + [121316] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5769), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5672), 1, + anon_sym_RPAREN, + ACTIONS(5674), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(5566), 1, + sym_type_annotation, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 14, + ACTIONS(5496), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 17, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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_extends, - [123430] = 12, + [121418] = 20, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(125), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, + anon_sym_LBRACK, + ACTIONS(5678), 1, + anon_sym_async, + ACTIONS(5680), 1, + anon_sym_static, + ACTIONS(5682), 1, + anon_sym_readonly, + STATE(3784), 1, + sym_accessibility_modifier, + ACTIONS(129), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4040), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5684), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(5686), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4245), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5260), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5261), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(5676), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [121502] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5769), 1, + ACTIONS(5688), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 14, + ACTIONS(4948), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -229401,10 +227920,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 17, + ACTIONS(4950), 18, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -229418,31 +227939,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [123498] = 12, + [121570] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5772), 1, + ACTIONS(5688), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229456,11 +227976,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 18, + ACTIONS(4950), 18, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -229474,157 +227995,229 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [123566] = 12, + [121638] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5772), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(5691), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(5616), 1, + sym_type_annotation, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5496), 3, 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, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 18, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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_extends, - [123634] = 26, + [121740] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5734), 1, + ACTIONS(5715), 1, + anon_sym_STAR_STAR, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5713), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5694), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5217), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 5, + ACTIONS(5104), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [123730] = 11, + [121836] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5775), 1, + ACTIONS(5695), 1, + anon_sym_in, + ACTIONS(5697), 1, anon_sym_LT, + ACTIONS(5701), 1, + anon_sym_QMARK, + ACTIONS(5703), 1, + anon_sym_AMP_AMP, + ACTIONS(5709), 1, + anon_sym_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE, + ACTIONS(5715), 1, + anon_sym_STAR_STAR, + ACTIONS(5719), 1, + anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - STATE(2520), 2, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5713), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(5693), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5699), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5707), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5015), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [121932] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5613), 1, + anon_sym_is, + ACTIONS(4829), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -229635,12 +228228,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 20, + ACTIONS(4831), 27, 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, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -229656,91 +228254,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [123796] = 26, + anon_sym_BQUOTE, + anon_sym_extends, + [121984] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, - anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5721), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, - anon_sym_QMARK, - ACTIONS(5726), 1, - anon_sym_AMP_AMP, - ACTIONS(5730), 1, - anon_sym_AMP, - ACTIONS(5732), 1, - anon_sym_PIPE, - ACTIONS(5734), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(5097), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5694), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5099), 20, + 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, - ACTIONS(5148), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 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, - [123892] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [122050] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -229754,7 +228339,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 23, + ACTIONS(5013), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -229778,590 +228363,632 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [123952] = 26, + [122110] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5007), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_DOT, + ACTIONS(5724), 1, + anon_sym_is, + STATE(2399), 1, + sym_type_arguments, + ACTIONS(4823), 14, + 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, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3862), 24, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [122168] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4960), 4, + ACTIONS(5023), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124048] = 11, + [122264] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5778), 1, + ACTIONS(5695), 1, + anon_sym_in, + ACTIONS(5697), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5701), 1, + anon_sym_QMARK, + ACTIONS(5703), 1, + anon_sym_AMP_AMP, + ACTIONS(5709), 1, + anon_sym_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE, + ACTIONS(5715), 1, + anon_sym_STAR_STAR, + ACTIONS(5719), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5713), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(5693), 3, 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, + ACTIONS(5699), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 20, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5037), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 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_extends, - [124114] = 26, + [122360] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5154), 4, - sym__automatic_semicolon, + ACTIONS(5726), 4, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 5, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124210] = 29, + [122456] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4437), 1, - anon_sym_COMMA, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5785), 1, - anon_sym_LBRACE, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5073), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, + anon_sym_in, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - ACTIONS(5825), 1, - anon_sym_LBRACE_PIPE, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - STATE(4766), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5807), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5037), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124312] = 26, + [122554] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4963), 1, + anon_sym_EQ, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4930), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5827), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(5530), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124408] = 26, + [122652] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5146), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5734), 1, + ACTIONS(5752), 1, + anon_sym_STAR_STAR, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5750), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(4924), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5694), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5154), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124504] = 26, + [122750] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5221), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5734), 1, + ACTIONS(5752), 1, + anon_sym_STAR_STAR, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5750), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(4900), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5694), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5095), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124600] = 6, + [122848] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, - anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_PIPE, - ACTIONS(5686), 1, - anon_sym_extends, - ACTIONS(5209), 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(5211), 27, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(4791), 1, anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5215), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, + anon_sym_in, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5738), 1, + anon_sym_QMARK, + ACTIONS(5740), 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(5746), 1, + anon_sym_AMP, + ACTIONS(5748), 1, + anon_sym_PIPE, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [124656] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5740), 1, - anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_PIPE, - ACTIONS(5744), 1, + ACTIONS(5742), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5750), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5087), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5765), 12, + ACTIONS(5728), 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, + ACTIONS(5736), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5767), 27, - 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, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5754), 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_PIPE_RBRACE, - [124712] = 4, + [122946] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, - anon_sym_AMP, - ACTIONS(5748), 13, + ACTIONS(5758), 1, + anon_sym_LBRACE, + ACTIONS(5760), 1, + anon_sym_DOT, + STATE(2928), 1, + sym_statement_block, + ACTIONS(1930), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230370,22 +228997,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(5750), 28, + ACTIONS(1928), 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_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, @@ -230404,12 +229029,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [124764] = 4, + [123002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - anon_sym_AMP, - ACTIONS(5759), 13, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(2928), 1, + sym_statement_block, + ACTIONS(1930), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -230418,17 +229045,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(5761), 28, + ACTIONS(1928), 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, @@ -230451,736 +229078,475 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [124816] = 26, + [123056] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5213), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5106), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4958), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [124912] = 26, + [123154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5762), 1, + sym__automatic_semicolon, + ACTIONS(1942), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5690), 1, anon_sym_in, - ACTIONS(5692), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5726), 1, - anon_sym_AMP_AMP, - ACTIONS(5730), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5732), 1, anon_sym_PIPE, - ACTIONS(5734), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5728), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5688), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5694), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4851), 4, + ACTIONS(1940), 26, + sym__function_signature_automatic_semicolon, + anon_sym_as, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [125008] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, - anon_sym_in, - ACTIONS(5692), 1, - anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, - anon_sym_QMARK, - ACTIONS(5726), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, - anon_sym_AMP, - ACTIONS(5732), 1, - anon_sym_PIPE, - ACTIONS(5734), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5688), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5694), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5696), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5018), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 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, - [125104] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5690), 1, - anon_sym_in, - ACTIONS(5692), 1, - anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, - anon_sym_QMARK, - ACTIONS(5726), 1, - anon_sym_AMP_AMP, - ACTIONS(5730), 1, - anon_sym_AMP, - ACTIONS(5732), 1, - anon_sym_PIPE, - ACTIONS(5734), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5688), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5694), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5696), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4941), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(5702), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [125200] = 26, + [123208] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5734), 1, + ACTIONS(5715), 1, + anon_sym_STAR_STAR, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5713), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5694), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5020), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 5, + ACTIONS(5095), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125296] = 28, + [123304] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4340), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(5770), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5839), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(5778), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(5786), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, + ACTIONS(5794), 1, anon_sym_QMARK_QMARK, - STATE(4832), 1, + STATE(4778), 1, aux_sym_extends_clause_repeat1, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5825), 2, + ACTIONS(5766), 2, anon_sym_LBRACE, anon_sym_implements, - ACTIONS(5843), 2, + ACTIONS(5780), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5829), 3, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125396] = 26, + [123404] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4956), 4, + ACTIONS(4934), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125492] = 26, + [123500] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5095), 4, + ACTIONS(4930), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [125588] = 13, + [123596] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5859), 1, + ACTIONS(5796), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 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(4943), 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, - [125658] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5740), 1, - anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_PIPE, - ACTIONS(5744), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(4893), 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_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5075), 27, - 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_PIPE_RBRACE, - [125714] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5740), 1, anon_sym_AMP, - ACTIONS(5742), 1, anon_sym_PIPE, - ACTIONS(5744), 1, - anon_sym_extends, - ACTIONS(5254), 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(5256), 27, + ACTIONS(4895), 17, 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_PIPE_RBRACE, - [125770] = 6, + [123666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, + ACTIONS(5799), 1, anon_sym_AMP, - ACTIONS(5742), 1, + ACTIONS(5801), 1, anon_sym_PIPE, - ACTIONS(5744), 1, + ACTIONS(5803), 1, anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(5003), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231193,7 +229559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 27, + ACTIONS(5005), 27, sym__automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -231221,59 +229587,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_PIPE_RBRACE, - [125826] = 18, + [123722] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, + ACTIONS(4893), 5, anon_sym_BANG, anon_sym_in, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 9, + ACTIONS(4895), 9, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -231283,43 +229649,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [125906] = 16, + [123802] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 8, + ACTIONS(4893), 8, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -231328,7 +229694,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 14, + ACTIONS(4895), 14, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -231343,60 +229709,111 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [125982] = 19, + [123878] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5609), 1, + anon_sym_LT, + ACTIONS(5611), 1, + anon_sym_DOT, + ACTIONS(5805), 1, + anon_sym_is, + STATE(2845), 1, + sym_type_arguments, + ACTIONS(4823), 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(3862), 25, + 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_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [123936] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, + ACTIONS(4893), 4, anon_sym_BANG, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 9, + ACTIONS(4895), 9, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -231406,162 +229823,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [126064] = 29, + [124018] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(5738), 1, - anon_sym_COLON, - ACTIONS(5866), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - STATE(5563), 1, - sym_type_annotation, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126166] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5682), 1, - anon_sym_AMP, - ACTIONS(5684), 1, - anon_sym_PIPE, - ACTIONS(5868), 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(5870), 28, + ACTIONS(4895), 8, + 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_AMP_AMP, + anon_sym_SEMI, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [126220] = 15, + [124104] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5859), 1, + ACTIONS(5796), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 10, + ACTIONS(4893), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -231572,7 +229932,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 14, + ACTIONS(4895), 14, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -231587,30 +229947,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [126294] = 12, + [124178] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5859), 1, + ACTIONS(5796), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -231624,7 +229984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 18, + ACTIONS(4895), 18, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -231643,499 +230003,648 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [126362] = 4, + [124246] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5872), 1, - sym_regex_flags, - ACTIONS(4929), 17, - anon_sym_STAR, - anon_sym_as, - anon_sym_BANG, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5695), 1, anon_sym_in, + ACTIONS(5697), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5703), 1, + anon_sym_AMP_AMP, + ACTIONS(5709), 1, anon_sym_AMP, + ACTIONS(5711), 1, anon_sym_PIPE, + ACTIONS(5715), 1, + anon_sym_STAR_STAR, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5705), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5693), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5699), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_extends, - ACTIONS(4931), 24, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 6, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_QMARK_QMARK, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [126414] = 23, + [124336] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5664), 1, + ACTIONS(5701), 1, + anon_sym_QMARK, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, + ACTIONS(5719), 1, + anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5678), 5, + ACTIONS(4924), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 6, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, - [126504] = 26, + [124432] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4851), 4, + ACTIONS(4932), 4, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126600] = 26, + [124528] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, + ACTIONS(5807), 1, + anon_sym_COMMA, + ACTIONS(5810), 1, + anon_sym_RBRACE, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5023), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4939), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126696] = 28, + [124628] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5654), 1, - anon_sym_RBRACE, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - ACTIONS(5874), 1, + ACTIONS(5810), 1, + anon_sym_RBRACE, + ACTIONS(5812), 1, anon_sym_COMMA, STATE(4828), 1, sym_type_arguments, - ACTIONS(4960), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(4934), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126796] = 28, + [124728] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5697), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - ACTIONS(5877), 1, + ACTIONS(5815), 1, anon_sym_COMMA, - ACTIONS(5880), 1, + ACTIONS(5818), 1, anon_sym_RBRACE, STATE(4828), 1, sym_type_arguments, - ACTIONS(4956), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(4934), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5678), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126896] = 29, + [124828] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5820), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, + 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(5099), 20, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_implements, + anon_sym_extends, + [124894] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5645), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5649), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(5738), 1, - anon_sym_COLON, - ACTIONS(5882), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(5580), 1, - sym_type_annotation, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(5015), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [126998] = 11, + [124990] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5643), 1, + anon_sym_in, + ACTIONS(5645), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK, + ACTIONS(5651), 1, + anon_sym_AMP_AMP, + ACTIONS(5657), 1, + anon_sym_AMP, + ACTIONS(5659), 1, + anon_sym_PIPE, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5104), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125086] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5884), 1, + ACTIONS(5823), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232149,7 +230658,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 20, + ACTIONS(4950), 18, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232166,234 +230675,368 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_implements, + anon_sym_extends, + [125154] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5823), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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(4950), 18, + 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, anon_sym_extends, - [127064] = 21, + [125222] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5645), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5726), 1, + ACTIONS(5649), 1, + anon_sym_QMARK, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, + ACTIONS(5657), 1, anon_sym_AMP, - STATE(4906), 1, + ACTIONS(5659), 1, + anon_sym_PIPE, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, + ACTIONS(5653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5688), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5694), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5702), 5, + ACTIONS(4853), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 8, + [125318] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5643), 1, + anon_sym_in, + ACTIONS(5645), 1, + anon_sym_LT, + ACTIONS(5649), 1, + anon_sym_QMARK, + ACTIONS(5651), 1, + anon_sym_AMP_AMP, + ACTIONS(5657), 1, + anon_sym_AMP, + ACTIONS(5659), 1, + anon_sym_PIPE, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - anon_sym_QMARK_QMARK, + ACTIONS(5661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4932), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, anon_sym_extends, - [127150] = 21, + ACTIONS(5665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [125414] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5645), 1, anon_sym_LT, - ACTIONS(5664), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5676), 1, + ACTIONS(5659), 1, + anon_sym_PIPE, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5674), 2, + ACTIONS(5653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5649), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5678), 5, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 8, - sym__automatic_semicolon, + ACTIONS(4895), 6, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [127236] = 26, + anon_sym_implements, + anon_sym_extends, + [125504] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5895), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(5826), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(5628), 1, + sym_type_annotation, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5217), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127332] = 12, + [125606] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5915), 1, + ACTIONS(5828), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232407,7 +231050,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 18, + ACTIONS(4895), 18, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232426,181 +231069,242 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_implements, anon_sym_extends, - [127400] = 12, + [125674] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + ACTIONS(5828), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 14, + ACTIONS(5639), 3, anon_sym_STAR, - anon_sym_EQ, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 10, 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(4943), 17, + ACTIONS(4895), 14, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_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, anon_sym_extends, - [127468] = 26, + [125748] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5645), 1, anon_sym_LT, - ACTIONS(5662), 1, - anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5672), 1, - anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(5661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 8, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + anon_sym_QMARK_QMARK, + anon_sym_implements, + anon_sym_extends, + [125834] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5643), 1, + anon_sym_in, + ACTIONS(5645), 1, + anon_sym_LT, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4895), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 5, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127564] = 15, + ACTIONS(4895), 9, + 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, + anon_sym_extends, + [125916] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5719), 1, + ACTIONS(5645), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5696), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 10, + ACTIONS(4893), 8, anon_sym_BANG, anon_sym_in, 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(4943), 14, + ACTIONS(4895), 14, anon_sym_as, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, @@ -232610,83 +231314,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_implements, anon_sym_extends, - [127638] = 8, + [125992] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5921), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5645), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 14, + ACTIONS(5639), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 22, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5665), 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(4895), 9, + 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, anon_sym_extends, - [127698] = 12, + [126072] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5915), 1, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + ACTIONS(5828), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232700,7 +231417,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 18, + ACTIONS(4895), 17, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -232710,7 +231427,6 @@ 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, @@ -232719,172 +231435,231 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_implements, anon_sym_extends, - [127766] = 27, + [126142] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5642), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5645), 1, + anon_sym_LT, + ACTIONS(5649), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5923), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(4934), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127864] = 27, + [126238] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5644), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5645), 1, + anon_sym_LT, + ACTIONS(5649), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5217), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5923), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5095), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [127962] = 12, + [126334] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5719), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5643), 1, + anon_sym_in, + ACTIONS(5645), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5649), 1, + anon_sym_QMARK, + ACTIONS(5651), 1, + anon_sym_AMP_AMP, + ACTIONS(5657), 1, + anon_sym_AMP, + ACTIONS(5659), 1, + anon_sym_PIPE, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5661), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5647), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5655), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5023), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [126430] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(5645), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -232898,11 +231673,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 18, + ACTIONS(5013), 23, anon_sym_as, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + 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, @@ -232916,607 +231693,653 @@ 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_implements, anon_sym_extends, - [128030] = 26, + [126490] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5645), 1, anon_sym_LT, - ACTIONS(5895), 1, + ACTIONS(5649), 1, anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(5653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5148), 4, + ACTIONS(5106), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128126] = 26, + [126586] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5645), 1, anon_sym_LT, - ACTIONS(5895), 1, + ACTIONS(5649), 1, anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(5653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4895), 4, + ACTIONS(5087), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128222] = 26, + [126682] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5643), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5645), 1, anon_sym_LT, - ACTIONS(5895), 1, + ACTIONS(5649), 1, anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5651), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5657), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5659), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5663), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, + ACTIONS(5667), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(5653), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5639), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5647), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4939), 4, + ACTIONS(4900), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_implements, anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(5665), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128318] = 5, + [126778] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5740), 1, - anon_sym_AMP, - ACTIONS(5742), 1, - anon_sym_PIPE, - ACTIONS(5868), 12, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5643), 1, anon_sym_in, + ACTIONS(5645), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5651), 1, + anon_sym_AMP_AMP, + ACTIONS(5657), 1, + anon_sym_AMP, + ACTIONS(5659), 1, + anon_sym_PIPE, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 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, + ACTIONS(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4924), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 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_PIPE_RBRACE, - [128372] = 23, + [126874] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5837), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5726), 1, + ACTIONS(5841), 1, + anon_sym_QMARK, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - STATE(4906), 1, + ACTIONS(5855), 1, + anon_sym_STAR_STAR, + ACTIONS(5859), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5853), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5694), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5702), 5, + ACTIONS(5037), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 6, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [128462] = 26, + [126970] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5690), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5692), 1, + ACTIONS(5837), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5726), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5730), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5732), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5734), 1, + ACTIONS(5855), 1, + anon_sym_STAR_STAR, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5698), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5728), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5853), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5688), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5694), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4939), 4, + ACTIONS(4930), 4, anon_sym_LBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_extends, - ACTIONS(5702), 5, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128558] = 8, + [127066] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5951), 1, - anon_sym_LT, - STATE(4765), 1, - sym_type_arguments, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 14, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5643), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5645), 1, + anon_sym_LT, + ACTIONS(5649), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5651), 1, + anon_sym_AMP_AMP, + ACTIONS(5657), 1, anon_sym_AMP, + ACTIONS(5659), 1, anon_sym_PIPE, + ACTIONS(5663), 1, + anon_sym_STAR_STAR, + ACTIONS(5667), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5653), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5661), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5639), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5647), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 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(5655), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5037), 4, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5665), 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_extends, - anon_sym_LBRACE_PIPE, - [128618] = 27, + [127162] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5626), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4960), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(4900), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128716] = 27, + [127258] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5154), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(5087), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [128814] = 4, + [127354] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(5609), 1, + anon_sym_LT, + ACTIONS(5611), 1, + anon_sym_DOT, + STATE(2845), 1, + sym_type_arguments, + ACTIONS(4823), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -233527,7 +232350,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 27, + ACTIONS(3862), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -233536,7 +232359,6 @@ 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, @@ -233555,21 +232377,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [128866] = 7, + [127410] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5610), 1, - anon_sym_LT, - ACTIONS(5628), 1, - anon_sym_DOT, - ACTIONS(5979), 1, - anon_sym_is, - STATE(2829), 1, - sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(5861), 1, + sym_regex_flags, + ACTIONS(5029), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -233580,14 +232398,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 25, + anon_sym_instanceof, + anon_sym_extends, + ACTIONS(5031), 24, 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, @@ -233601,516 +232422,431 @@ 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, - [128924] = 27, + [127462] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5624), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4958), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(5106), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129022] = 23, + [127558] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5889), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5897), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(5863), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(5503), 1, + sym_type_annotation, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5899), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5911), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 6, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_implements, - anon_sym_extends, - [129112] = 26, + [127660] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(3854), 1, + anon_sym_EQ, + ACTIONS(3790), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5690), 1, anon_sym_in, - ACTIONS(5692), 1, anon_sym_LT, - ACTIONS(5700), 1, - anon_sym_STAR_STAR, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5724), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5726), 1, - anon_sym_AMP_AMP, - ACTIONS(5730), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5732), 1, anon_sym_PIPE, - ACTIONS(5734), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5698), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5728), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5688), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5694), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5696), 3, + ACTIONS(3794), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4895), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(5702), 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, - [129208] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [127712] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5622), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5837), 1, + anon_sym_LT, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4956), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(4924), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129306] = 27, + [127808] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5837), 1, + anon_sym_LT, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5095), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(4900), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129404] = 12, + [127904] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5981), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, - anon_sym_STAR, + ACTIONS(4975), 1, 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(4943), 18, - 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, - anon_sym_extends, - [129472] = 29, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5837), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(5738), 1, - anon_sym_COLON, - ACTIONS(5984), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(5817), 1, - sym_type_annotation, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(5087), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [129574] = 13, + [128000] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5869), 1, + anon_sym_LT, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5973), 1, - anon_sym_STAR_STAR, - ACTIONS(5986), 1, - anon_sym_LT, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 14, + ACTIONS(5097), 14, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -234125,55 +232861,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 16, - 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_extends, - anon_sym_LBRACE_PIPE, - [129644] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5288), 1, - anon_sym_LPAREN, - STATE(2879), 1, - sym_arguments, - ACTIONS(4845), 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(4847), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5099), 19, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -234189,1020 +232879,851 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [129698] = 18, + anon_sym_LBRACE_PIPE, + [128066] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5632), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, + anon_sym_in, + ACTIONS(5884), 1, anon_sym_LT, - ACTIONS(5973), 1, + ACTIONS(5888), 1, + anon_sym_QMARK, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - STATE(4765), 1, + ACTIONS(5906), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5971), 2, + ACTIONS(5892), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5953), 3, + ACTIONS(5015), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4945), 6, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4943), 8, - 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, - [129778] = 21, + [128164] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5637), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5889), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5884), 1, anon_sym_LT, - ACTIONS(5897), 1, + ACTIONS(5888), 1, + anon_sym_QMARK, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5909), 1, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5906), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5907), 2, + ACTIONS(5892), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5887), 3, + ACTIONS(5104), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5911), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 8, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_implements, - anon_sym_extends, - [129864] = 16, + [128262] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5973), 1, - anon_sym_STAR_STAR, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5971), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3328), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5953), 3, + ACTIONS(4948), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5965), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 9, 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_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4943), 13, - 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_extends, - anon_sym_LBRACE_PIPE, - [129940] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, - anon_sym_in, - ACTIONS(5973), 1, - anon_sym_STAR_STAR, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5971), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5953), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5957), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5975), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 8, + ACTIONS(4950), 17, 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, - [130022] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, - anon_sym_in, - ACTIONS(5961), 1, - anon_sym_AMP_AMP, - ACTIONS(5967), 1, - anon_sym_AMP, - ACTIONS(5973), 1, - anon_sym_STAR_STAR, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5971), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5953), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5957), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5965), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5975), 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(4943), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_extends, anon_sym_LBRACE_PIPE, - [130108] = 19, + [128330] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5889), 1, - anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5910), 1, anon_sym_LT, - ACTIONS(5909), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5907), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(4948), 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(5893), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(4950), 17, + 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(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5911), 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(4943), 9, - 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, + anon_sym_instanceof, anon_sym_extends, - [130190] = 27, + anon_sym_LBRACE_PIPE, + [128398] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5280), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5154), 3, + ACTIONS(4853), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5923), 3, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130288] = 27, + [128496] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5093), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5837), 1, + anon_sym_LT, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5095), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5923), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5106), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130386] = 27, + [128592] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5213), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4849), 1, - anon_sym_EQ, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4851), 3, + ACTIONS(5106), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5923), 3, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130484] = 27, + [128690] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5215), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5042), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5018), 3, + ACTIONS(5087), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5923), 3, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130582] = 27, + [128788] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5221), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5071), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4941), 3, + ACTIONS(4900), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5923), 3, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130680] = 27, + [128886] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5558), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5081), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5020), 3, + ACTIONS(4932), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5923), 3, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [130778] = 16, + [128984] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5146), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5891), 1, - anon_sym_LT, - ACTIONS(5909), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5907), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5887), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5901), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - anon_sym_GT, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5896), 1, anon_sym_AMP, + ACTIONS(5898), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4943), 14, - 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, - anon_sym_extends, - [130854] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5891), 1, - anon_sym_LT, - ACTIONS(5909), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5906), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5907), 2, + ACTIONS(5892), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(4924), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5911), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 9, - 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, - anon_sym_extends, - [130934] = 15, + [129082] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5973), 1, - anon_sym_STAR_STAR, - ACTIONS(5986), 1, + ACTIONS(5882), 1, + anon_sym_in, + ACTIONS(5884), 1, anon_sym_LT, - STATE(4765), 1, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_STAR_STAR, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(5892), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5953), 3, + ACTIONS(4893), 3, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5965), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 11, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5886), 3, 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(4943), 13, + ACTIONS(5894), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4895), 5, 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, + ACTIONS(5904), 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_extends, - anon_sym_LBRACE_PIPE, - [131008] = 13, + [129172] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5909), 1, - anon_sym_STAR_STAR, - ACTIONS(5981), 1, + ACTIONS(5913), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4893), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -235215,9 +233736,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 17, + ACTIONS(4895), 17, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -235225,62 +233745,66 @@ 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_implements, anon_sym_extends, - [131078] = 12, + anon_sym_LBRACE_PIPE, + [129240] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5986), 1, + ACTIONS(5902), 1, + anon_sym_STAR_STAR, + ACTIONS(5913), 1, anon_sym_LT, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 14, + ACTIONS(5876), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5894), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 11, 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(4943), 17, + ACTIONS(4895), 13, 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_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -235289,437 +233813,284 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_extends, anon_sym_LBRACE_PIPE, - [131146] = 26, + [129314] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5884), 1, anon_sym_LT, - ACTIONS(5895), 1, - anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5905), 1, - anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4956), 4, + ACTIONS(4893), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5911), 5, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131242] = 26, + ACTIONS(4895), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [129400] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5884), 1, anon_sym_LT, - ACTIONS(5895), 1, - anon_sym_QMARK, - ACTIONS(5897), 1, - anon_sym_AMP_AMP, - ACTIONS(5903), 1, - anon_sym_AMP, - ACTIONS(5905), 1, - anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4958), 4, + ACTIONS(4893), 5, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5911), 5, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131338] = 23, + ACTIONS(4895), 8, + 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, + [129482] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, + ACTIONS(5884), 1, anon_sym_LT, - ACTIONS(5955), 1, - anon_sym_in, - ACTIONS(5961), 1, - anon_sym_AMP_AMP, - ACTIONS(5967), 1, - anon_sym_AMP, - ACTIONS(5969), 1, - anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5963), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5953), 3, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4943), 5, + ACTIONS(4893), 9, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 13, anon_sym_as, anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5975), 5, + 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, - [131428] = 27, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [129558] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4849), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, + ACTIONS(5884), 1, anon_sym_LT, - ACTIONS(5955), 1, - anon_sym_in, - ACTIONS(5959), 1, - anon_sym_QMARK, - ACTIONS(5961), 1, - anon_sym_AMP_AMP, - ACTIONS(5967), 1, - anon_sym_AMP, - ACTIONS(5969), 1, - anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5963), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4851), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131526] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5617), 1, + ACTIONS(4893), 6, anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, anon_sym_in, - ACTIONS(5959), 1, anon_sym_QMARK, - ACTIONS(5961), 1, - anon_sym_AMP_AMP, - ACTIONS(5967), 1, anon_sym_AMP, - ACTIONS(5969), 1, anon_sym_PIPE, - ACTIONS(5973), 1, - anon_sym_STAR_STAR, - ACTIONS(5977), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(4895), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(4939), 3, - anon_sym_COMMA, + anon_sym_QMARK_QMARK, anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5957), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5965), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5975), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [131624] = 27, + [129638] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5042), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, - anon_sym_in, - ACTIONS(5959), 1, - anon_sym_QMARK, - ACTIONS(5961), 1, - anon_sym_AMP_AMP, - ACTIONS(5967), 1, - anon_sym_AMP, - ACTIONS(5969), 1, - anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, + ACTIONS(5913), 1, + anon_sym_LT, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5963), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5971), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3328), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5018), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5957), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5965), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5975), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [131722] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5610), 1, - anon_sym_LT, - ACTIONS(5628), 1, - anon_sym_DOT, - STATE(2829), 1, - sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(4893), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -235732,397 +234103,393 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4895), 16, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [131778] = 27, + anon_sym_LBRACE_PIPE, + [129708] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, + ACTIONS(4963), 1, anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4941), 3, + ACTIONS(4930), 3, anon_sym_COMMA, anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131876] = 27, + [129806] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, + ACTIONS(5604), 1, anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5020), 3, + ACTIONS(4934), 3, anon_sym_COMMA, anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [131974] = 27, + [129904] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5617), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5580), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4895), 3, + ACTIONS(5095), 3, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5923), 3, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [132072] = 27, + [130002] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5580), 1, + ACTIONS(5073), 1, anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5884), 1, + anon_sym_LT, + ACTIONS(5888), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5890), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5896), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5898), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5902), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5906), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5892), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5900), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4895), 3, + ACTIONS(5037), 3, anon_sym_COMMA, anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5876), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5886), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(5904), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [132170] = 12, + [130100] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5619), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5989), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5882), 1, + anon_sym_in, + ACTIONS(5884), 1, anon_sym_LT, - STATE(4765), 1, + ACTIONS(5888), 1, + anon_sym_QMARK, + ACTIONS(5890), 1, + anon_sym_AMP_AMP, + ACTIONS(5896), 1, + anon_sym_AMP, + ACTIONS(5898), 1, + anon_sym_PIPE, + ACTIONS(5902), 1, + anon_sym_STAR_STAR, + ACTIONS(5906), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(5892), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5900), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 14, + ACTIONS(5023), 3, + anon_sym_COMMA, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + ACTIONS(5876), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5886), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 17, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5894), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5904), 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_extends, - anon_sym_LBRACE_PIPE, - [132238] = 12, + [130198] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5989), 1, + ACTIONS(5884), 1, anon_sym_LT, - STATE(4765), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 14, + ACTIONS(5011), 14, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -236137,9 +234504,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 17, + ACTIONS(5013), 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_GT_GT_GT, @@ -236153,175 +234523,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [132306] = 27, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5644), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, - anon_sym_in, - ACTIONS(5959), 1, - anon_sym_QMARK, - ACTIONS(5961), 1, - anon_sym_AMP_AMP, - ACTIONS(5967), 1, - anon_sym_AMP, - ACTIONS(5969), 1, - anon_sym_PIPE, - ACTIONS(5973), 1, - anon_sym_STAR_STAR, - ACTIONS(5977), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5823), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5963), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5971), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5217), 3, - anon_sym_COMMA, anon_sym_extends, anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5957), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5965), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5975), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [132404] = 27, + [130258] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5642), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5951), 1, - anon_sym_LT, - ACTIONS(5955), 1, + ACTIONS(5695), 1, anon_sym_in, - ACTIONS(5959), 1, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5961), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5967), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5969), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5973), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5977), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5963), 2, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5971), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, - anon_sym_COMMA, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - ACTIONS(5953), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5957), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5965), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5975), 5, + ACTIONS(4853), 4, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [132502] = 11, + [130354] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5992), 1, - anon_sym_LT, - STATE(4765), 1, - sym_type_arguments, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 14, + ACTIONS(3856), 1, + anon_sym_EQ, + ACTIONS(3790), 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, @@ -236332,9 +234617,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 19, + ACTIONS(3794), 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, @@ -236350,27 +234643,14 @@ 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, - [132568] = 8, + [130406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(4950), 1, - anon_sym_LBRACK, - ACTIONS(4953), 2, + ACTIONS(5799), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5995), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2908), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(1944), 12, + ACTIONS(5916), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236379,13 +234659,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1948), 20, + ACTIONS(5918), 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, @@ -236404,25 +234691,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [132628] = 8, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [130458] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5173), 1, - anon_sym_LBRACK, - ACTIONS(5176), 2, + ACTIONS(5799), 1, anon_sym_AMP, + ACTIONS(5801), 1, anon_sym_PIPE, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(5032), 4, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(5803), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(4867), 12, + ACTIONS(5920), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -236435,9 +234715,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 20, + ACTIONS(5922), 27, + 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, @@ -236456,269 +234742,332 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [132688] = 27, + anon_sym_PIPE_RBRACE, + [130514] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5766), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5617), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5926), 1, + anon_sym_LBRACE, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(4784), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4939), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5923), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [132786] = 29, + [130616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(5956), 1, + anon_sym_AMP, + ACTIONS(5958), 1, + anon_sym_PIPE, + ACTIONS(5960), 1, + anon_sym_extends, + ACTIONS(5003), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5005), 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, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(5738), 1, - anon_sym_COLON, - ACTIONS(6003), 1, - anon_sym_RPAREN, - STATE(4906), 1, - sym_type_arguments, - STATE(5724), 1, - sym_type_annotation, - ACTIONS(4927), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + anon_sym_BQUOTE, + [130672] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5962), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5097), 14, 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, - ACTIONS(5512), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5099), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [132888] = 23, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_extends, + [130738] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5799), 1, + anon_sym_AMP, + ACTIONS(5801), 1, + anon_sym_PIPE, + ACTIONS(5803), 1, + anon_sym_extends, + ACTIONS(5181), 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(5183), 27, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5927), 1, - anon_sym_in, - ACTIONS(5933), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, - anon_sym_AMP, - ACTIONS(5941), 1, - anon_sym_PIPE, - ACTIONS(5945), 1, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5935), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5943), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 3, - anon_sym_EQ, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5923), 3, + anon_sym_BQUOTE, + anon_sym_PIPE_RBRACE, + [130794] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5799), 1, + anon_sym_AMP, + ACTIONS(5965), 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, - ACTIONS(5929), 3, - anon_sym_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5967), 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, - ACTIONS(4943), 5, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(5947), 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, - [132978] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [130846] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, + ACTIONS(5969), 1, anon_sym_LT, - ACTIONS(5945), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5923), 3, + ACTIONS(4948), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5937), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 11, 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, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 13, + ACTIONS(4950), 17, anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, @@ -236726,306 +235075,200 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [133052] = 21, + [130914] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5921), 1, + ACTIONS(5969), 1, anon_sym_LT, - ACTIONS(5927), 1, - anon_sym_in, - ACTIONS(5933), 1, - anon_sym_AMP_AMP, - ACTIONS(5939), 1, - anon_sym_AMP, - ACTIONS(5945), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5943), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5923), 3, + ACTIONS(4948), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5929), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5937), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 4, anon_sym_EQ, anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5947), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [133138] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5656), 1, anon_sym_in, - ACTIONS(5658), 1, - anon_sym_LT, - ACTIONS(5662), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5664), 1, - anon_sym_AMP_AMP, - ACTIONS(5670), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5672), 1, anon_sym_PIPE, - ACTIONS(5676), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5674), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5660), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(4950), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5020), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 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, - [133234] = 26, + anon_sym_extends, + [130982] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, - anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5972), 1, anon_sym_LT, - ACTIONS(5662), 1, - anon_sym_QMARK, - ACTIONS(5664), 1, - anon_sym_AMP_AMP, - ACTIONS(5670), 1, - anon_sym_AMP, - ACTIONS(5672), 1, - anon_sym_PIPE, - ACTIONS(5676), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5674), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(4893), 14, 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, - ACTIONS(5660), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(4895), 17, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4941), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 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, - [133330] = 19, + anon_sym_extends, + [131050] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5921), 1, + anon_sym_LPAREN, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5927), 1, - anon_sym_in, - ACTIONS(5945), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5943), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5923), 3, + ACTIONS(5011), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5929), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5937), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 5, 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, - ACTIONS(5947), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5013), 22, anon_sym_as, anon_sym_COMMA, anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_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, - [133412] = 6, + [131110] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5173), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(5609), 1, + anon_sym_LT, + STATE(2841), 1, + sym_type_arguments, + ACTIONS(4829), 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(4871), 24, + ACTIONS(4831), 27, 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, @@ -237044,24 +235287,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [133468] = 6, + anon_sym_extends, + [131164] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(4950), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, + ACTIONS(5799), 1, anon_sym_AMP, + ACTIONS(5801), 1, anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(5803), 1, + anon_sym_extends, + ACTIONS(5256), 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, @@ -237069,13 +235310,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1948), 24, + ACTIONS(5258), 27, 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -237094,74 +235337,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [133524] = 5, + anon_sym_PIPE_RBRACE, + [131220] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5610), 1, - anon_sym_LT, - STATE(2836), 1, - sym_type_arguments, - ACTIONS(4837), 13, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5632), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5738), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5740), 1, + anon_sym_AMP_AMP, + ACTIONS(5746), 1, anon_sym_AMP, + ACTIONS(5748), 1, anon_sym_PIPE, + ACTIONS(5752), 1, + anon_sym_STAR_STAR, + ACTIONS(5756), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5742), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5015), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5736), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5744), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5754), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [131318] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5637), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, + anon_sym_in, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5738), 1, + anon_sym_QMARK, + ACTIONS(5740), 1, anon_sym_AMP_AMP, + ACTIONS(5746), 1, + anon_sym_AMP, + ACTIONS(5748), 1, + anon_sym_PIPE, + ACTIONS(5752), 1, + anon_sym_STAR_STAR, + ACTIONS(5756), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5750), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5104), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5736), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5754), 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, - [133578] = 7, + [131416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5032), 1, - anon_sym_COMMA, - ACTIONS(5173), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, + ACTIONS(5799), 1, anon_sym_AMP, + ACTIONS(5801), 1, anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(5975), 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, @@ -237169,13 +235500,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 24, + ACTIONS(5977), 28, 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -237194,39 +235527,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [133636] = 7, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [131470] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_COMMA, - ACTIONS(4950), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(3790), 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(1948), 24, + ACTIONS(3794), 27, 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, @@ -237245,232 +235576,242 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [133694] = 16, + anon_sym_extends, + [131522] = 29, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5921), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5945), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(5979), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(5661), 1, + sym_type_annotation, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5943), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5923), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5937), 3, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 9, - anon_sym_EQ, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [131624] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5278), 1, + anon_sym_LPAREN, + STATE(2976), 1, + sym_arguments, + ACTIONS(4817), 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(4943), 13, + ACTIONS(4819), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [133770] = 26, + [131678] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5615), 1, + anon_sym_EQ, + ACTIONS(5730), 1, anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5895), 1, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(4853), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4960), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [133866] = 18, + [131776] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5921), 1, + ACTIONS(5981), 1, anon_sym_LT, - ACTIONS(5945), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5943), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5923), 3, + ACTIONS(4948), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5929), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5937), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5947), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4945), 6, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4943), 8, - anon_sym_as, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [133946] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_COMMA, - ACTIONS(5083), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5086), 3, anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 25, + ACTIONS(4950), 18, anon_sym_as, anon_sym_LBRACE, - anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, - 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, @@ -237484,37 +235825,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, - [134002] = 13, + anon_sym_extends, + [131844] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5918), 1, + ACTIONS(5981), 1, anon_sym_LT, - ACTIONS(5945), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 14, + ACTIONS(4948), 13, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -237527,16 +235863,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 16, + ACTIONS(4950), 18, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, 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, @@ -237544,206 +235882,308 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [134072] = 27, + [131912] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5622), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5837), 1, + anon_sym_LT, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4956), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5923), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5104), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [134170] = 27, + [132008] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5624), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5558), 1, anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, + ACTIONS(5730), 1, anon_sym_as, - ACTIONS(5927), 1, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5931), 1, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5933), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5939), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5941), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5935), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5943), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4958), 3, + ACTIONS(4932), 3, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_extends, - ACTIONS(5923), 3, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [134268] = 4, + [132106] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4867), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5835), 1, anon_sym_in, + ACTIONS(5837), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5841), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5851), 1, anon_sym_PIPE, + ACTIONS(5855), 1, + anon_sym_STAR_STAR, + ACTIONS(5859), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5845), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5831), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5839), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + ACTIONS(5847), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5015), 4, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [132202] = 23, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(5732), 1, + anon_sym_in, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5740), 1, anon_sym_AMP_AMP, + ACTIONS(5746), 1, + anon_sym_AMP, + ACTIONS(5748), 1, + anon_sym_PIPE, + ACTIONS(5752), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5750), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 3, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(5728), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5736), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4895), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_QMARK_QMARK, + anon_sym_extends, + ACTIONS(5754), 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, - [134320] = 4, + [132292] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(4966), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5984), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -237754,17 +236194,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5099), 20, 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_RPAREN, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -237780,142 +236214,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [134372] = 27, + [132358] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5626), 1, - anon_sym_EQ, - ACTIONS(5921), 1, - anon_sym_LT, - ACTIONS(5925), 1, - anon_sym_as, - ACTIONS(5927), 1, - anon_sym_in, - ACTIONS(5931), 1, - anon_sym_QMARK, - ACTIONS(5933), 1, - anon_sym_AMP_AMP, - ACTIONS(5939), 1, - anon_sym_AMP, - ACTIONS(5941), 1, - anon_sym_PIPE, - ACTIONS(5945), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5949), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5972), 1, + anon_sym_LT, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5935), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5943), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4960), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_extends, - ACTIONS(5923), 3, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5929), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5937), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5947), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [134470] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1946), 1, + ACTIONS(4893), 11, anon_sym_EQ, - ACTIONS(1944), 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(1948), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4895), 13, 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_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [134522] = 8, + [132432] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5891), 1, + ACTIONS(5837), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -237929,10 +236302,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 23, + ACTIONS(5013), 23, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -237951,111 +236325,165 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_implements, anon_sym_extends, - [134582] = 26, + [132492] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5895), 1, - anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5905), 1, - anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5020), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(4893), 4, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [134678] = 6, + ACTIONS(4895), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [132578] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(5167), 2, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5170), 3, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5732), 1, + anon_sym_in, + ACTIONS(5734), 1, + anon_sym_LT, + ACTIONS(5752), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5750), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5728), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5736), 3, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5744), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 5, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(5754), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [132660] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3871), 1, + anon_sym_EQ, + ACTIONS(3790), 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(3800), 25, + ACTIONS(3794), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -238073,494 +236501,416 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [134734] = 26, + anon_sym_extends, + [132712] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5837), 1, anon_sym_LT, - ACTIONS(5895), 1, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4941), 4, + ACTIONS(5023), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [134830] = 26, + [132808] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5837), 1, anon_sym_LT, - ACTIONS(5895), 1, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5018), 4, + ACTIONS(5095), 4, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [134926] = 26, + [132904] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5889), 1, - anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5895), 1, - anon_sym_QMARK, - ACTIONS(5897), 1, - anon_sym_AMP_AMP, - ACTIONS(5903), 1, - anon_sym_AMP, - ACTIONS(5905), 1, - anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4851), 4, - anon_sym_LBRACE, + ACTIONS(4893), 9, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 13, + anon_sym_as, anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5911), 5, + anon_sym_RPAREN, + 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, - [135022] = 26, + anon_sym_extends, + [132980] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, - anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5662), 1, - anon_sym_QMARK, - ACTIONS(5664), 1, - anon_sym_AMP_AMP, - ACTIONS(5670), 1, - anon_sym_AMP, - ACTIONS(5672), 1, - anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5018), 4, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - ACTIONS(5678), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135118] = 26, + ACTIONS(4893), 6, + anon_sym_EQ, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4895), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [133060] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5889), 1, - anon_sym_in, - ACTIONS(5891), 1, - anon_sym_LT, - ACTIONS(5895), 1, - anon_sym_QMARK, - ACTIONS(5897), 1, - anon_sym_AMP_AMP, - ACTIONS(5903), 1, - anon_sym_AMP, - ACTIONS(5905), 1, - anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5972), 1, + anon_sym_LT, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5907), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(4893), 14, 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, - ACTIONS(5893), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(4895), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5095), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5911), 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, - [135214] = 29, + anon_sym_extends, + [133130] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5604), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(5738), 1, - anon_sym_COLON, - ACTIONS(6005), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(5808), 1, - sym_type_annotation, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4934), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135316] = 15, + [133228] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5089), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5909), 1, - anon_sym_STAR_STAR, - ACTIONS(5981), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5887), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5901), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, - anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_QMARK, + ACTIONS(5092), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4943), 14, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5987), 2, 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, + anon_sym_RBRACE, + ACTIONS(2902), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - [135390] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3851), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + anon_sym_PIPE_RBRACE, + ACTIONS(1944), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238569,21 +236919,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(3800), 27, + ACTIONS(1948), 20, 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, @@ -238602,17 +236944,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [135442] = 6, + [133288] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5682), 1, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4965), 1, + anon_sym_LBRACK, + ACTIONS(4968), 2, anon_sym_AMP, - ACTIONS(5684), 1, anon_sym_PIPE, - ACTIONS(5686), 1, + ACTIONS(5991), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5051), 4, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(5862), 12, + anon_sym_PIPE_RBRACE, + ACTIONS(4843), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238625,16 +236975,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 27, + ACTIONS(4847), 20, 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, @@ -238653,186 +236996,229 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [135498] = 26, + [133348] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5617), 1, + anon_sym_EQ, + ACTIONS(5730), 1, anon_sym_as, - ACTIONS(5889), 1, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5891), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5895), 1, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5897), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5903), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5905), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5909), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5913), 1, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5899), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5907), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5887), 3, + ACTIONS(5095), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5893), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5901), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5154), 4, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - anon_sym_extends, - ACTIONS(5911), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135594] = 26, + [133446] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5619), 1, + anon_sym_EQ, + ACTIONS(5730), 1, + anon_sym_as, + ACTIONS(5732), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5734), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5738), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5740), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5746), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5748), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5752), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5756), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5742), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5750), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5023), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_extends, + ACTIONS(5728), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5736), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5744), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6007), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - ACTIONS(5530), 5, + ACTIONS(5754), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135689] = 12, + [133544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(5956), 1, + anon_sym_AMP, + ACTIONS(5958), 1, + anon_sym_PIPE, + ACTIONS(5960), 1, + anon_sym_extends, + ACTIONS(5995), 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(5997), 27, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4986), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4992), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4994), 1, anon_sym_QMARK_DOT, - ACTIONS(6009), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + anon_sym_BQUOTE, + [133600] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + anon_sym_AMP, + ACTIONS(5916), 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(5162), 17, - sym__automatic_semicolon, + ACTIONS(5918), 28, anon_sym_as, - anon_sym_SEMI, + 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, @@ -238846,11 +237232,20 @@ 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, - [135756] = 3, + [133652] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 14, + ACTIONS(5956), 1, + anon_sym_AMP, + ACTIONS(5958), 1, + anon_sym_PIPE, + ACTIONS(5960), 1, + anon_sym_extends, + ACTIONS(5920), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -238859,21 +237254,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(5142), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5922), 27, 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, @@ -238892,164 +237286,175 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [135805] = 19, + [133708] = 29, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5817), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - STATE(4765), 1, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(5999), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5815), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5823), 2, + STATE(5619), 1, + sym_type_annotation, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5819), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 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, - [135886] = 28, + [133810] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5837), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5841), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5859), 1, anon_sym_QMARK_QMARK, - ACTIONS(6012), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(5121), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(4934), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [135985] = 12, + [133906] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6014), 1, + ACTIONS(5669), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5855), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239063,17 +237468,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 17, + ACTIONS(4895), 17, anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_LBRACE, + 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, @@ -239081,169 +237486,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_QMARK_QMARK, anon_sym_instanceof, anon_sym_extends, - [136052] = 21, + [133976] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5811), 1, - anon_sym_AMP, - ACTIONS(5817), 1, + ACTIONS(5837), 1, + anon_sym_LT, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5815), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5823), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + ACTIONS(5853), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_LBRACE, + ACTIONS(4893), 5, anon_sym_BANG, + anon_sym_in, anon_sym_QMARK, + anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5819), 5, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 6, + ACTIONS(4895), 9, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - [136137] = 15, + anon_sym_extends, + [134056] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5817), 1, - anon_sym_STAR_STAR, - ACTIONS(6017), 1, - anon_sym_LT, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5956), 1, + anon_sym_AMP, + ACTIONS(5958), 1, + anon_sym_PIPE, + ACTIONS(5960), 1, + anon_sym_extends, + ACTIONS(5181), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5809), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 11, - 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(4943), 12, + ACTIONS(5183), 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_LT_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, - [136210] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(6017), 1, - anon_sym_LT, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5823), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 14, + anon_sym_BQUOTE, + [134112] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + anon_sym_AMP, + ACTIONS(5965), 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(4943), 16, + ACTIONS(5967), 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, @@ -239257,215 +237642,231 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [136277] = 11, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [134164] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6020), 1, + ACTIONS(5837), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5855), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5853), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(5831), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5847), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, 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(5099), 19, + ACTIONS(4895), 14, anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_LBRACE, + 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_extends, - [136342] = 18, + [134240] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5817), 1, + ACTIONS(5669), 1, + anon_sym_LT, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5815), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5823), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4945), 6, - anon_sym_LBRACE, + ACTIONS(4893), 10, anon_sym_BANG, anon_sym_in, + anon_sym_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4943), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 14, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, + 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_LBRACE_PIPE, - [136421] = 23, + anon_sym_instanceof, + anon_sym_extends, + [134314] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5805), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5835), 1, + anon_sym_in, + ACTIONS(5837), 1, + anon_sym_LT, + ACTIONS(5841), 1, + anon_sym_QMARK, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(5851), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - STATE(4765), 1, + ACTIONS(5859), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5807), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5845), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5781), 3, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4943), 4, - anon_sym_as, - anon_sym_COMMA, - anon_sym_QMARK_QMARK, - anon_sym_LBRACE_PIPE, - ACTIONS(5819), 5, + ACTIONS(4932), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [136510] = 3, + [134410] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 14, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5089), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 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(5138), 27, + ACTIONS(1948), 24, 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, @@ -239484,24 +237885,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [136559] = 6, + [134466] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_COMMA, - ACTIONS(5083), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5086), 3, - anon_sym_GT, + ACTIONS(5799), 1, anon_sym_AMP, + ACTIONS(5801), 1, anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(5803), 1, + anon_sym_extends, + ACTIONS(5995), 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, @@ -239509,13 +237907,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 24, + ACTIONS(5997), 27, 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -239534,34 +237934,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [136614] = 3, + anon_sym_PIPE_RBRACE, + [134522] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 14, + ACTIONS(4831), 1, + anon_sym_COMMA, + ACTIONS(5152), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5155), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(2038), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3794), 25, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -239579,38 +237985,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [136663] = 6, + [134578] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(4845), 1, anon_sym_EQ, - ACTIONS(1950), 1, - sym__automatic_semicolon, - ACTIONS(1940), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1944), 14, + ACTIONS(4965), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 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(1948), 23, + ACTIONS(4847), 24, + 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, @@ -239629,127 +238035,147 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [136718] = 3, + [134634] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5835), 1, anon_sym_in, + ACTIONS(5837), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5841), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5849), 1, anon_sym_AMP, + ACTIONS(5851), 1, anon_sym_PIPE, + ACTIONS(5855), 1, + anon_sym_STAR_STAR, + ACTIONS(5859), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5845), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5831), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5839), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4937), 27, - 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, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4853), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_extends, + ACTIONS(5857), 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, - [136767] = 28, + [134730] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5835), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5837), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5843), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5849), 1, anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5855), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6023), 1, - anon_sym_RBRACK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(5097), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5853), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5831), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5839), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5847), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(5857), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [136866] = 3, + ACTIONS(4895), 8, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [134816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 14, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4843), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239764,7 +238190,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4875), 27, + ACTIONS(4847), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -239792,10 +238218,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [136915] = 3, + [134868] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4863), 14, + ACTIONS(5019), 1, + anon_sym_EQ, + ACTIONS(5017), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239810,7 +238238,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 27, + ACTIONS(5021), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -239838,37 +238266,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [136964] = 6, + [134920] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(5167), 2, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5170), 3, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5835), 1, + anon_sym_in, + ACTIONS(5837), 1, + anon_sym_LT, + ACTIONS(5855), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5853), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5831), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5839), 3, anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5847), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(5857), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 9, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [135002] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(1944), 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(3800), 24, + ACTIONS(1948), 27, 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, @@ -239887,39 +238376,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [137019] = 8, + anon_sym_extends, + [135054] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5795), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5835), 1, + anon_sym_in, + ACTIONS(5837), 1, anon_sym_LT, - STATE(4765), 1, + ACTIONS(5843), 1, + anon_sym_AMP_AMP, + ACTIONS(5849), 1, + anon_sym_AMP, + ACTIONS(5851), 1, + anon_sym_PIPE, + ACTIONS(5855), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - STATE(3328), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5845), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5853), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 14, + ACTIONS(5831), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5839), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5847), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5857), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 6, + anon_sym_as, anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [135144] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5956), 1, + anon_sym_AMP, + ACTIONS(5958), 1, + anon_sym_PIPE, + ACTIONS(5975), 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(4964), 21, + ACTIONS(5977), 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, @@ -239937,19 +238491,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_LBRACE_PIPE, - [137078] = 5, + anon_sym_BQUOTE, + anon_sym_extends, + [135198] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 3, + ACTIONS(4908), 1, anon_sym_COMMA, + ACTIONS(5223), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5086), 3, + ACTIONS(5226), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(3790), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239961,14 +238517,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 24, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3794), 25, anon_sym_as, anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -239986,10 +238543,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [137131] = 3, + [135254] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 14, + ACTIONS(5956), 1, + anon_sym_AMP, + ACTIONS(5958), 1, + anon_sym_PIPE, + ACTIONS(5960), 1, + anon_sym_extends, + ACTIONS(5256), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -239998,21 +238561,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(4851), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5258), 27, 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, @@ -240031,23 +238593,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [137180] = 7, + [135310] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5612), 1, - anon_sym_QMARK_DOT, - ACTIONS(4853), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4855), 3, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2902), 1, anon_sym_COMMA, + ACTIONS(5089), 2, anon_sym_LBRACK, anon_sym_extends, - ACTIONS(2060), 11, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240059,13 +238619,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 22, + ACTIONS(1948), 24, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, 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, @@ -240082,33 +238644,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [137237] = 3, + [135368] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 14, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_COMMA, + ACTIONS(4965), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 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(5075), 27, + ACTIONS(4847), 24, 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, @@ -240127,178 +238695,139 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [137286] = 27, + [135426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(4849), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(4730), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, anon_sym_in, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, anon_sym_LT, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5811), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5813), 1, anon_sym_PIPE, - ACTIONS(5817), 1, - anon_sym_STAR_STAR, - ACTIONS(5821), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(4851), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5815), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5797), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(4734), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5819), 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, - [137383] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [135475] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5617), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, - anon_sym_QMARK, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5811), 1, - anon_sym_AMP, - ACTIONS(5813), 1, - anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, + ACTIONS(6001), 1, + anon_sym_LT, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4939), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5815), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5823), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(4893), 11, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_in, + 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(4895), 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, - [137480] = 5, + anon_sym_LBRACE_PIPE, + [135548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5170), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5045), 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(3800), 24, + ACTIONS(5047), 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_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -240316,66 +238845,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [137533] = 13, + anon_sym_extends, + [135599] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5065), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5067), 7, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5817), 1, - anon_sym_STAR_STAR, - ACTIONS(6017), 1, - anon_sym_LT, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 14, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3790), 12, 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(4943), 15, + ACTIONS(3794), 20, anon_sym_as, - anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_LBRACE_PIPE, - [137602] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [135652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 14, + ACTIONS(4132), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240390,12 +238914,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2278), 27, + ACTIONS(3794), 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, @@ -240418,60 +238941,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [137651] = 3, + [135703] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 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(5079), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2317), 1, anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6004), 1, + anon_sym_RBRACK, + STATE(4914), 1, + sym_type_arguments, + STATE(4986), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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, - [137700] = 3, + [135802] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 14, + ACTIONS(4793), 1, + anon_sym_LT, + ACTIONS(4825), 1, + anon_sym_DOT, + ACTIONS(6006), 1, + anon_sym_is, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(4823), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -240482,16 +239037,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3862), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -240509,11 +239060,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, - [137749] = 3, + [135859] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 14, + ACTIONS(2886), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240528,7 +239080,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 27, + ACTIONS(2884), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -240556,175 +239108,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [137798] = 27, + [135908] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5626), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, + ACTIONS(4851), 1, anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + ACTIONS(5695), 1, + anon_sym_in, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5701), 1, anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(5703), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(5709), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(5711), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, + ACTIONS(5719), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(4960), 2, + ACTIONS(6008), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + ACTIONS(6010), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5699), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(5717), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [137895] = 27, + [136005] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5093), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5624), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, - anon_sym_QMARK, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(5045), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(5813), 1, anon_sym_PIPE, - ACTIONS(5817), 1, - anon_sym_STAR_STAR, - ACTIONS(5821), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5095), 2, + ACTIONS(5047), 3, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5815), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5797), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5809), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5819), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [137992] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5223), 14, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1998), 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(5225), 27, + ACTIONS(2000), 22, 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, @@ -240741,11 +239228,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [138041] = 3, + [136062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 14, + ACTIONS(5241), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240760,7 +239246,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 27, + ACTIONS(5243), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -240788,12 +239274,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138090] = 4, + [136111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(4853), 14, + ACTIONS(4839), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240808,7 +239292,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4855), 26, + ACTIONS(4841), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -240817,6 +239301,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, @@ -240835,10 +239320,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138141] = 3, + [136160] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5280), 14, + ACTIONS(6012), 1, + sym__automatic_semicolon, + ACTIONS(2065), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240853,8 +239340,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5154), 27, - sym__automatic_semicolon, + ACTIONS(2063), 26, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -240881,10 +239367,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138190] = 3, + [136211] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 14, + ACTIONS(5049), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240899,7 +239385,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5095), 27, + ACTIONS(5051), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -240927,10 +239413,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138239] = 3, + [136260] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 14, + ACTIONS(5249), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240945,7 +239431,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5181), 27, + ACTIONS(5251), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -240973,10 +239459,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138288] = 3, + [136309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 14, + ACTIONS(5256), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -240991,7 +239477,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1992), 27, + ACTIONS(5258), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -241019,115 +239505,227 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138337] = 3, + [136358] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5695), 1, anon_sym_in, + ACTIONS(5697), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5701), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5703), 1, + anon_sym_AMP_AMP, + ACTIONS(5709), 1, anon_sym_AMP, + ACTIONS(5711), 1, anon_sym_PIPE, + ACTIONS(5715), 1, + anon_sym_STAR_STAR, + ACTIONS(5719), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6008), 1, + anon_sym_COMMA, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4859), 27, + ACTIONS(6014), 2, 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, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5693), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5699), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5717), 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, - [138386] = 16, + [136455] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5817), 1, + ACTIONS(5695), 1, + anon_sym_in, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5701), 1, + anon_sym_QMARK, + ACTIONS(5703), 1, + anon_sym_AMP_AMP, + ACTIONS(5709), 1, + anon_sym_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE, + ACTIONS(5715), 1, anon_sym_STAR_STAR, - STATE(4765), 1, + ACTIONS(5719), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6008), 1, + anon_sym_COMMA, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5815), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5823), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + ACTIONS(5705), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5713), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6016), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5693), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5809), 3, + ACTIONS(5699), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5707), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 9, - anon_sym_LBRACE, + ACTIONS(5717), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [136552] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - anon_sym_GT, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4943), 12, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6018), 1, + anon_sym_RBRACK, + STATE(4914), 1, + sym_type_arguments, + STATE(4991), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5520), 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_LBRACE_PIPE, - [138461] = 3, + [136651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 14, + ACTIONS(6020), 1, + anon_sym_AMP, + ACTIONS(6022), 1, + anon_sym_PIPE, + ACTIONS(6024), 1, + anon_sym_extends, + ACTIONS(5920), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241136,13 +239734,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(4889), 27, + ACTIONS(5922), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -241169,11 +239765,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [138510] = 3, + [136706] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 14, + ACTIONS(6020), 1, + anon_sym_AMP, + ACTIONS(5916), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241182,13 +239779,12 @@ 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(2175), 27, + ACTIONS(5918), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -241216,278 +239812,286 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138559] = 28, + [136757] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6032), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(6036), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(6038), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6044), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(6046), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(6050), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(6054), 1, anon_sym_QMARK_QMARK, - ACTIONS(6025), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(5044), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4853), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6034), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(6052), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [138658] = 11, + [136852] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6027), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 13, - anon_sym_STAR, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6036), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6038), 1, + anon_sym_AMP_AMP, + ACTIONS(6044), 1, anon_sym_AMP, + ACTIONS(6046), 1, anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6054), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5106), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 19, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6052), 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_extends, - [138723] = 27, + [136947] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5280), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6036), 1, anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(6038), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(6044), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(6046), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(6050), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, + ACTIONS(6054), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5154), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5087), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(6034), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(6052), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [138820] = 26, + [137042] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, anon_sym_as, - ACTIONS(6034), 1, + ACTIONS(6030), 1, anon_sym_in, - ACTIONS(6036), 1, + ACTIONS(6032), 1, anon_sym_LT, - ACTIONS(6040), 1, + ACTIONS(6036), 1, anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(6038), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(6044), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(6046), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6050), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, + ACTIONS(6054), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, - sym__automatic_semicolon, - anon_sym_SEMI, + ACTIONS(4900), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(6034), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(6052), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [138915] = 5, + [137137] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 1, - anon_sym_AMP, - ACTIONS(6062), 1, - anon_sym_PIPE, - ACTIONS(5868), 12, + ACTIONS(5185), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241496,11 +240100,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(5870), 27, + ACTIONS(5187), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -241528,17 +240134,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [138968] = 6, + [137186] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 1, - anon_sym_AMP, - ACTIONS(6062), 1, - anon_sym_PIPE, - ACTIONS(6064), 1, - anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(5724), 1, + anon_sym_is, + ACTIONS(4829), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -241546,15 +240149,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(5864), 26, + ACTIONS(4831), 25, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -241577,16 +240180,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [139023] = 6, + anon_sym_extends, + [137237] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6036), 1, + anon_sym_QMARK, + ACTIONS(6038), 1, + anon_sym_AMP_AMP, + ACTIONS(6044), 1, anon_sym_AMP, - ACTIONS(6062), 1, + ACTIONS(6046), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6054), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4932), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6052), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [137332] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6036), 1, + anon_sym_QMARK, + ACTIONS(6038), 1, + anon_sym_AMP_AMP, + ACTIONS(6044), 1, + anon_sym_AMP, + ACTIONS(6046), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6054), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4924), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6052), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [137427] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6020), 1, + anon_sym_AMP, + ACTIONS(6022), 1, anon_sym_PIPE, - ACTIONS(6064), 1, + ACTIONS(6024), 1, anon_sym_extends, - ACTIONS(5254), 12, + ACTIONS(5003), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241599,7 +240341,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 26, + ACTIONS(5005), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -241626,103 +240368,161 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [139078] = 27, + [137482] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5622), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, - anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6038), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(6044), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(6046), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(6050), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4956), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(6026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(6034), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(4895), 5, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_extends, + ACTIONS(6052), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [139175] = 3, + [137571] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6056), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6026), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 10, 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(2908), 27, + ACTIONS(4895), 13, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + 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_extends, + [137644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_COMMA, + ACTIONS(5152), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5155), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 11, + 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(3794), 24, 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, @@ -241741,11 +240541,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [139224] = 3, + [137699] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 14, + ACTIONS(2900), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -241760,7 +240559,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5106), 27, + ACTIONS(2898), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -241788,39 +240587,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [139273] = 6, + [137748] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5170), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5167), 3, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4879), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3796), 12, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6059), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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(3800), 20, + ACTIONS(5099), 19, anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -241836,80 +240640,302 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [139328] = 3, + anon_sym_implements, + [137813] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, anon_sym_in, + ACTIONS(5772), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5776), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, anon_sym_AMP, + ACTIONS(5786), 1, anon_sym_PIPE, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5015), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5774), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4855), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5782), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5792), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [137908] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, anon_sym_as, + ACTIONS(5770), 1, + anon_sym_in, + ACTIONS(5772), 1, + anon_sym_LT, + ACTIONS(5776), 1, + anon_sym_QMARK, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, + anon_sym_AMP, + ACTIONS(5786), 1, + anon_sym_PIPE, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5104), 3, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5774), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5782), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5792), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [138003] = 21, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6038), 1, anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6044), 1, + anon_sym_AMP, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6052), 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, + ACTIONS(4895), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [138088] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6052), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [139377] = 3, + [138169] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 14, + ACTIONS(4908), 1, + anon_sym_COMMA, + ACTIONS(5223), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(5032), 27, + ACTIONS(3794), 24, 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, @@ -241928,92 +240954,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [139426] = 26, + [138224] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6034), 1, - anon_sym_in, - ACTIONS(6036), 1, anon_sym_LT, - ACTIONS(6040), 1, - anon_sym_QMARK, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6048), 1, - anon_sym_AMP, ACTIONS(6050), 1, - anon_sym_PIPE, - ACTIONS(6054), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5217), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(4893), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 13, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + 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, - [139521] = 6, + anon_sym_extends, + [138299] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_extends, - ACTIONS(6066), 1, + ACTIONS(5152), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4881), 2, + anon_sym_extends, + ACTIONS(5155), 3, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5034), 12, + ACTIONS(3790), 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, @@ -242021,12 +241036,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5036), 25, + ACTIONS(3794), 24, 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_DOT, @@ -242047,10 +241061,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [139576] = 3, + [138352] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 14, + ACTIONS(5122), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242065,7 +241079,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 27, + ACTIONS(5124), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -242093,33 +241107,222 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [139625] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5264), 14, + [138401] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6052), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 8, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [138480] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6056), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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(4895), 16, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_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_extends, + [138549] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6036), 1, + anon_sym_QMARK, + ACTIONS(6038), 1, + anon_sym_AMP_AMP, + ACTIONS(6044), 1, + anon_sym_AMP, + ACTIONS(6046), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6054), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4930), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6052), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [138644] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5223), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 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(5266), 27, + ACTIONS(3794), 24, 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, @@ -242138,17 +241341,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [139674] = 4, + [138697] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5763), 1, - sym__automatic_semicolon, - ACTIONS(1942), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6062), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -242159,16 +241378,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1940), 26, - sym__function_signature_automatic_semicolon, + ACTIONS(4950), 17, 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, @@ -242182,34 +241395,31 @@ 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, - [139725] = 12, + anon_sym_implements, + [138764] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6009), 1, + ACTIONS(6062), 1, anon_sym_LT, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242223,10 +241433,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 17, - sym__automatic_semicolon, + ACTIONS(4950), 17, anon_sym_as, - anon_sym_SEMI, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -242240,80 +241450,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [139792] = 26, + anon_sym_implements, + [138831] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6065), 1, + anon_sym_RBRACK, + STATE(4914), 1, + sym_type_arguments, + STATE(4991), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [138930] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(6030), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(6032), 1, anon_sym_LT, - ACTIONS(5839), 1, + ACTIONS(6036), 1, anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(6038), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(6044), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(6046), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(6050), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, + ACTIONS(6054), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4956), 3, - anon_sym_LBRACE, + ACTIONS(4934), 3, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(6034), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(6052), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [139887] = 3, + [139025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 14, + ACTIONS(5197), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242328,7 +241609,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2088), 27, + ACTIONS(5199), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -242356,56 +241637,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [139936] = 3, + [139074] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, anon_sym_in, + ACTIONS(6032), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6036), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6038), 1, + anon_sym_AMP_AMP, + ACTIONS(6044), 1, anon_sym_AMP, + ACTIONS(6046), 1, anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6054), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5095), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6052), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [139169] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6036), 1, + anon_sym_QMARK, + ACTIONS(6038), 1, anon_sym_AMP_AMP, + ACTIONS(6044), 1, + anon_sym_AMP, + ACTIONS(6046), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6054), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5037), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6052), 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, - [139985] = 3, + [139264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 14, + ACTIONS(5193), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242420,7 +241793,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 27, + ACTIONS(5195), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -242448,38 +241821,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140034] = 7, + [139313] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_extends, - ACTIONS(4950), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(2908), 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(1948), 23, + ACTIONS(2906), 27, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_RBRACE, + 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, @@ -242498,10 +241866,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [140091] = 3, + anon_sym_extends, + [139362] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 14, + ACTIONS(5181), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242516,7 +241885,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5057), 27, + ACTIONS(5183), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -242544,12 +241913,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140140] = 4, + [139411] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5059), 14, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6036), 1, + anon_sym_QMARK, + ACTIONS(6038), 1, + anon_sym_AMP_AMP, + ACTIONS(6044), 1, + anon_sym_AMP, + ACTIONS(6046), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6054), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5023), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6052), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [139506] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5174), 1, + anon_sym_DOT, + ACTIONS(5170), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242564,7 +242002,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 26, + ACTIONS(5172), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -242572,7 +242010,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, + anon_sym_LBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -242591,60 +242029,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140191] = 7, + [139557] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5032), 1, - anon_sym_extends, - ACTIONS(5173), 2, - anon_sym_COMMA, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, - anon_sym_STAR, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 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, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6067), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_RBRACK, + ACTIONS(5520), 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, - [140248] = 3, + [139652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4750), 14, + ACTIONS(4282), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242659,14 +242118,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4754), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3794), 26, 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, @@ -242687,19 +242145,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140297] = 5, + [139703] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(6068), 1, - sym__automatic_semicolon, - ACTIONS(1942), 15, + ACTIONS(4793), 1, + anon_sym_LT, + ACTIONS(4825), 1, + anon_sym_DOT, + ACTIONS(6069), 1, + anon_sym_is, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(4823), 14, 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, @@ -242710,12 +242171,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1940), 24, + ACTIONS(3862), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -242734,15 +242195,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [140350] = 3, + [139760] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(6071), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -242753,13 +242223,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5065), 27, + ACTIONS(5013), 22, 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, @@ -242779,116 +242245,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [140399] = 12, + [139819] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6070), 1, + ACTIONS(6071), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6081), 1, + anon_sym_QMARK, + ACTIONS(6083), 1, + anon_sym_AMP_AMP, + ACTIONS(6089), 1, + anon_sym_AMP, + ACTIONS(6091), 1, + anon_sym_PIPE, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + ACTIONS(6099), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(6085), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6093), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5023), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6073), 3, 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, + ACTIONS(6079), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 17, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6097), 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_extends, - [140466] = 6, + [139914] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6081), 1, + anon_sym_QMARK, + ACTIONS(6083), 1, + anon_sym_AMP_AMP, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(6062), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(6064), 1, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + ACTIONS(6099), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6085), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6093), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5037), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_extends, - ACTIONS(5209), 12, + ACTIONS(6073), 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, + ACTIONS(6079), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 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, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6097), 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, - [140521] = 3, + [140009] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 14, + ACTIONS(5162), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242903,7 +242402,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5114), 27, + ACTIONS(5164), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -242931,10 +242430,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140570] = 3, + [140058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 14, + ACTIONS(2179), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242949,7 +242448,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2096), 27, + ACTIONS(2177), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -242977,10 +242476,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140619] = 3, + [140107] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 14, + ACTIONS(2890), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -242995,7 +242494,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5118), 27, + ACTIONS(2888), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243023,56 +242522,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140668] = 3, + [140156] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5695), 1, anon_sym_in, + ACTIONS(5697), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5701), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5703), 1, + anon_sym_AMP_AMP, + ACTIONS(5709), 1, anon_sym_AMP, + ACTIONS(5711), 1, anon_sym_PIPE, + ACTIONS(5715), 1, + anon_sym_STAR_STAR, + ACTIONS(5719), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6008), 1, + anon_sym_COMMA, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5596), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(5705), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5713), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5693), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5699), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5130), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(5707), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5717), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [140253] = 28, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(2317), 1, anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6101), 1, + anon_sym_RPAREN, + STATE(4914), 1, + sym_type_arguments, + STATE(5072), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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, - [140717] = 3, + [140352] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 14, + ACTIONS(5805), 1, + anon_sym_is, + ACTIONS(4829), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243087,12 +242683,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 27, + ACTIONS(4831), 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, @@ -243115,10 +242710,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140766] = 3, + [140403] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 14, + ACTIONS(5201), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243133,7 +242728,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5146), 27, + ACTIONS(5203), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243161,14 +242756,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [140815] = 3, + [140452] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6103), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -243179,17 +242793,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3672), 27, + ACTIONS(4950), 17, 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, @@ -243203,18 +242810,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_extends, - [140864] = 3, + [140519] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2060), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6103), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -243225,17 +242848,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 27, + ACTIONS(4950), 17, 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, @@ -243249,118 +242865,240 @@ 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, - [140913] = 6, + [140586] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5292), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5298), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5612), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(2060), 14, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(6071), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6081), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6083), 1, + anon_sym_AMP_AMP, + ACTIONS(6089), 1, anon_sym_AMP, + ACTIONS(6091), 1, anon_sym_PIPE, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + ACTIONS(6099), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6085), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2062), 24, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5104), 3, 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_AMP_AMP, - anon_sym_PIPE_PIPE, + anon_sym_extends, + ACTIONS(6073), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6079), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6097), 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, - [140968] = 8, + [140681] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5835), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 13, - anon_sym_STAR, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6106), 1, + anon_sym_RPAREN, + STATE(4914), 1, + sym_type_arguments, + STATE(5158), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 22, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [140780] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_LBRACK, + ACTIONS(4867), 1, anon_sym_DOT, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6081), 1, + anon_sym_QMARK, + ACTIONS(6083), 1, anon_sym_AMP_AMP, + ACTIONS(6089), 1, + anon_sym_AMP, + ACTIONS(6091), 1, + anon_sym_PIPE, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + ACTIONS(6099), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6093), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5015), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6073), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6079), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6097), 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_implements, - [141027] = 3, + [140875] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6108), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -243371,17 +243109,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 27, + ACTIONS(5099), 19, 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, @@ -243397,83 +243128,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [141076] = 26, + [140940] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(6077), 1, anon_sym_in, - ACTIONS(5835), 1, - anon_sym_LT, - ACTIONS(5839), 1, + ACTIONS(6081), 1, anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, + ACTIONS(6099), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4960), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + ACTIONS(5095), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [141171] = 4, + [141035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5979), 1, - anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(2175), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243488,11 +243216,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 26, + ACTIONS(2173), 27, 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, @@ -243515,36 +243244,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141222] = 5, + [141084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3796), 11, + ACTIONS(1980), 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(3800), 24, + ACTIONS(1978), 27, 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, @@ -243563,10 +243289,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [141275] = 3, + anon_sym_extends, + [141133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 14, + ACTIONS(2065), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243581,7 +243308,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2896), 27, + ACTIONS(2063), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243609,10 +243336,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141324] = 3, + [141182] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 14, + ACTIONS(5083), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243627,7 +243354,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 27, + ACTIONS(5085), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243655,10 +243382,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141373] = 3, + [141231] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 14, + ACTIONS(6111), 1, + anon_sym_LBRACK, + ACTIONS(5079), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243673,7 +243402,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 27, + ACTIONS(5081), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243681,7 +243410,6 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -243701,12 +243429,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141422] = 4, + [141282] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4851), 1, + anon_sym_as, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5202), 14, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5695), 1, + anon_sym_in, + ACTIONS(5697), 1, + anon_sym_LT, + ACTIONS(5701), 1, + anon_sym_QMARK, + ACTIONS(5703), 1, + anon_sym_AMP_AMP, + ACTIONS(5709), 1, + anon_sym_AMP, + ACTIONS(5711), 1, + anon_sym_PIPE, + ACTIONS(5715), 1, + anon_sym_STAR_STAR, + ACTIONS(5719), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5705), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5713), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5693), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5699), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5707), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6113), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + ACTIONS(5717), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [141377] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5075), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243721,7 +243516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 26, + ACTIONS(5077), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243730,6 +243525,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, @@ -243748,79 +243544,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141473] = 26, + [141426] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(5069), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5656), 1, anon_sym_in, - ACTIONS(5658), 1, anon_sym_LT, - ACTIONS(5662), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5664), 1, - anon_sym_AMP_AMP, - ACTIONS(5670), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5672), 1, anon_sym_PIPE, - ACTIONS(5676), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5674), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5660), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6073), 3, + ACTIONS(5071), 27, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_SEMI, - ACTIONS(5678), 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, - [141568] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [141475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 14, + ACTIONS(5065), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243835,7 +243608,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3734), 27, + ACTIONS(5067), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243863,79 +243636,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141617] = 26, + [141524] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(6028), 1, + anon_sym_as, + ACTIONS(6030), 1, + anon_sym_in, + ACTIONS(6032), 1, + anon_sym_LT, + ACTIONS(6036), 1, + anon_sym_QMARK, + ACTIONS(6038), 1, + anon_sym_AMP_AMP, + ACTIONS(6044), 1, + anon_sym_AMP, + ACTIONS(6046), 1, + anon_sym_PIPE, + ACTIONS(6050), 1, + anon_sym_STAR_STAR, + ACTIONS(6054), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6040), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6048), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5104), 3, + anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6034), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6042), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6052), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [141619] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6028), 1, anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(6030), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(6032), 1, anon_sym_LT, - ACTIONS(5839), 1, + ACTIONS(6036), 1, anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(6038), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(6044), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(6046), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(6050), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, + ACTIONS(6054), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, + ACTIONS(6040), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(6048), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5154), 3, - anon_sym_LBRACE, + ACTIONS(5015), 3, anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6026), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(6034), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(6042), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(6052), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [141712] = 3, + [141714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 14, + ACTIONS(5057), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243950,7 +243792,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 27, + ACTIONS(5059), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -243978,12 +243820,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141761] = 4, + [141763] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6075), 1, - sym__automatic_semicolon, - ACTIONS(1968), 14, + ACTIONS(3744), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -243998,7 +243838,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1966), 26, + ACTIONS(3746), 27, + sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -244025,148 +243866,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [141812] = 26, + [141812] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5839), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6115), 1, + anon_sym_RBRACK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(5096), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4958), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [141907] = 26, + [141911] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4912), 1, + anon_sym_extends, + ACTIONS(6111), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(4910), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5053), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5833), 1, anon_sym_in, - ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5839), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5841), 1, - anon_sym_AMP_AMP, - ACTIONS(5847), 1, - anon_sym_AMP, - ACTIONS(5849), 1, - anon_sym_PIPE, - ACTIONS(5853), 1, - anon_sym_STAR_STAR, - ACTIONS(5857), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5843), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5851), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5837), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5055), 25, + 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_DOT, + anon_sym_QMARK_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(6077), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5855), 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, - [142002] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [141966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 14, + ACTIONS(2051), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244181,7 +244004,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 27, + ACTIONS(2049), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244209,10 +244032,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142051] = 3, + [142015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 14, + ACTIONS(6020), 1, + anon_sym_AMP, + ACTIONS(6022), 1, + anon_sym_PIPE, + ACTIONS(5975), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244221,13 +244048,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(2100), 27, + ACTIONS(5977), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244255,10 +244080,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142100] = 3, + [142068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 14, + ACTIONS(6020), 1, + anon_sym_AMP, + ACTIONS(6022), 1, + anon_sym_PIPE, + ACTIONS(6024), 1, + anon_sym_extends, + ACTIONS(5995), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244267,13 +244098,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(4974), 27, + ACTIONS(5997), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244300,11 +244129,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [142149] = 3, + [142123] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 14, + ACTIONS(6020), 1, + anon_sym_AMP, + ACTIONS(6022), 1, + anon_sym_PIPE, + ACTIONS(6024), 1, + anon_sym_extends, + ACTIONS(5256), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244313,13 +244147,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(1982), 27, + ACTIONS(5258), 26, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244346,38 +244178,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [142198] = 7, + [142178] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6081), 1, - anon_sym_DOT, - ACTIONS(6083), 1, - anon_sym_is, - STATE(3418), 1, - sym_type_arguments, - ACTIONS(4833), 14, + ACTIONS(6020), 1, + anon_sym_AMP, + ACTIONS(5965), 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(3866), 23, + ACTIONS(5967), 27, + 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, @@ -244396,34 +244225,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [142255] = 3, + [142229] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 14, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2902), 1, + anon_sym_extends, + ACTIONS(5089), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 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(5024), 27, + ACTIONS(1948), 23, 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -244442,34 +244275,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [142304] = 3, + [142286] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5042), 14, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_extends, + ACTIONS(4965), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 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(5018), 27, + ACTIONS(4847), 23, 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, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -244488,85 +244325,70 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [142353] = 27, + [142343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5042), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(6020), 1, + anon_sym_AMP, + ACTIONS(6022), 1, + anon_sym_PIPE, + ACTIONS(6024), 1, + anon_sym_extends, + ACTIONS(5181), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, anon_sym_in, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, anon_sym_LT, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5811), 1, - anon_sym_AMP, - ACTIONS(5813), 1, - anon_sym_PIPE, - ACTIONS(5817), 1, - anon_sym_STAR_STAR, - ACTIONS(5821), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5018), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5815), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5797), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5183), 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5819), 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, - [142450] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [142398] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 14, + ACTIONS(4793), 1, + anon_sym_LT, + ACTIONS(4825), 1, + anon_sym_DOT, + ACTIONS(6117), 1, + anon_sym_is, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(4823), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -244577,16 +244399,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5069), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3862), 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, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -244605,10 +244424,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142499] = 3, + [142455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 14, + ACTIONS(5158), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244623,7 +244442,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 27, + ACTIONS(5160), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244651,80 +244470,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142548] = 27, + [142504] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5071), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6081), 1, anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, + ACTIONS(6099), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4941), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4934), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6073), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6079), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6087), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6097), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [142599] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6081), 1, + anon_sym_QMARK, + ACTIONS(6083), 1, + anon_sym_AMP_AMP, + ACTIONS(6089), 1, + anon_sym_AMP, + ACTIONS(6091), 1, + anon_sym_PIPE, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + ACTIONS(6099), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + ACTIONS(6085), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6093), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(4930), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [142645] = 3, + [142694] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 14, + ACTIONS(5025), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -244739,7 +244626,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5020), 27, + ACTIONS(5027), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -244767,254 +244654,354 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [142694] = 27, + [142743] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5624), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + ACTIONS(6119), 1, anon_sym_LT, - ACTIONS(5799), 1, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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(4895), 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_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [142812] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, + anon_sym_in, + ACTIONS(5772), 1, + anon_sym_LT, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(5778), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(5786), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, + ACTIONS(5794), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4958), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(4853), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [142791] = 27, + [142907] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5081), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, + anon_sym_in, + ACTIONS(5772), 1, + anon_sym_LT, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(5778), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(5786), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, + ACTIONS(5794), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5020), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5106), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [142888] = 3, + [143002] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, anon_sym_in, + ACTIONS(5772), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5776), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, anon_sym_AMP, + ACTIONS(5786), 1, anon_sym_PIPE, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5091), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5087), 3, 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_implements, + ACTIONS(5764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5774), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5792), 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, - [142937] = 3, + [143097] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, anon_sym_in, + ACTIONS(5772), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5776), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, anon_sym_AMP, + ACTIONS(5786), 1, anon_sym_PIPE, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5122), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4900), 3, 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_implements, + ACTIONS(5764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5774), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5792), 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, - [142986] = 6, + [143192] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5086), 2, + ACTIONS(5155), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5083), 3, + ACTIONS(5152), 3, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(4839), 4, + ACTIONS(4831), 4, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, anon_sym_PIPE_RBRACE, - ACTIONS(3796), 12, + ACTIONS(3790), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245027,7 +245014,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 20, + ACTIONS(3794), 20, anon_sym_as, anon_sym_LPAREN, anon_sym_DOT, @@ -245048,10 +245035,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [143041] = 3, + [143247] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, + anon_sym_in, + ACTIONS(5772), 1, + anon_sym_LT, + ACTIONS(5776), 1, + anon_sym_QMARK, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, + anon_sym_AMP, + ACTIONS(5786), 1, + anon_sym_PIPE, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4932), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5774), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5782), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5792), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [143342] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 14, + ACTIONS(5045), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245066,7 +245122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 27, + ACTIONS(5047), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -245094,22 +245150,89 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [143090] = 8, + [143391] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(6085), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, + anon_sym_in, + ACTIONS(5772), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5776), 1, + anon_sym_QMARK, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, + anon_sym_AMP, + ACTIONS(5786), 1, + anon_sym_PIPE, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(4924), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5774), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5782), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5792), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [143486] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6122), 1, + anon_sym_LT, + ACTIONS(6124), 1, + anon_sym_DOT, + ACTIONS(6126), 1, + anon_sym_is, + STATE(3473), 1, + sym_type_arguments, + ACTIONS(4823), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -245122,12 +245245,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 22, + ACTIONS(3862), 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, @@ -245144,88 +245266,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [143149] = 28, + anon_sym_LBRACE_PIPE, + [143543] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5770), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5778), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5786), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6087), 1, - anon_sym_RBRACK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(4920), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5780), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(4895), 5, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_implements, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [143248] = 4, + [143632] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6066), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4881), 14, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6128), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -245236,16 +245372,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4883), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4895), 17, anon_sym_as, anon_sym_LBRACE, 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, @@ -245259,224 +245389,258 @@ 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, - [143299] = 12, + anon_sym_implements, + [143699] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6014), 1, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(6128), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5764), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5782), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 10, 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(5162), 17, + ACTIONS(4895), 13, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [143366] = 18, + anon_sym_implements, + [143772] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, + ACTIONS(5770), 1, + anon_sym_in, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(6097), 1, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, + anon_sym_AMP, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6089), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6091), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6099), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 8, + ACTIONS(4895), 7, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_extends, - [143445] = 26, + anon_sym_implements, + [143857] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(5770), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5839), 1, - anon_sym_QMARK, - ACTIONS(5841), 1, - anon_sym_AMP_AMP, - ACTIONS(5847), 1, - anon_sym_AMP, - ACTIONS(5849), 1, - anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5095), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [143540] = 13, + ACTIONS(4895), 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, + [143938] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5853), 1, - anon_sym_STAR_STAR, - ACTIONS(6101), 1, + ACTIONS(5772), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5788), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(5764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5782), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 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, + [144013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2004), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -245487,27 +245651,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 16, + ACTIONS(2002), 27, + 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [143609] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [144062] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5156), 14, + ACTIONS(2117), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245522,7 +245697,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5158), 27, + ACTIONS(2115), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -245550,10 +245725,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [143658] = 3, + [144111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 14, + ACTIONS(2904), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245568,7 +245743,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5221), 27, + ACTIONS(2902), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -245596,10 +245771,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [143707] = 3, + [144160] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 14, + ACTIONS(3604), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -245614,7 +245789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3770), 27, + ACTIONS(3606), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -245642,59 +245817,153 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [143756] = 18, + [144209] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(5065), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5067), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3790), 11, + 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(3794), 24, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, anon_sym_BQUOTE, - ACTIONS(4783), 1, + [144262] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3764), 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(3766), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [144311] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5835), 1, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5853), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5851), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5829), 3, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, + ACTIONS(4893), 5, anon_sym_BANG, anon_sym_in, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5855), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 8, + ACTIONS(4895), 8, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, @@ -245703,481 +245972,636 @@ static uint16_t ts_small_parse_table[] = { anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_implements, - [143835] = 28, + [144390] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - ACTIONS(6104), 1, + ACTIONS(6131), 1, anon_sym_RBRACK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(5015), 1, + STATE(4952), 1, aux_sym_array_repeat1, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [143934] = 16, + [144489] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(6128), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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(4895), 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, + [144558] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5835), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, + anon_sym_in, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5853), 1, + ACTIONS(5776), 1, + anon_sym_QMARK, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, + anon_sym_AMP, + ACTIONS(5786), 1, + anon_sym_PIPE, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5851), 2, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5829), 3, + ACTIONS(4930), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5845), 3, + ACTIONS(5774), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 8, + ACTIONS(5792), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [144653] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, anon_sym_in, - anon_sym_GT, + ACTIONS(5772), 1, + anon_sym_LT, + ACTIONS(5776), 1, anon_sym_QMARK, + ACTIONS(5778), 1, + anon_sym_AMP_AMP, + ACTIONS(5784), 1, anon_sym_AMP, + ACTIONS(5786), 1, anon_sym_PIPE, + ACTIONS(5790), 1, + anon_sym_STAR_STAR, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5764), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5774), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 13, - anon_sym_as, + ACTIONS(5782), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6133), 3, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, + anon_sym_implements, + ACTIONS(5792), 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_implements, - [144009] = 27, + [144748] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, + anon_sym_in, + ACTIONS(5772), 1, + anon_sym_LT, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(5778), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(5786), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, + ACTIONS(5794), 1, anon_sym_QMARK_QMARK, - ACTIONS(6106), 1, - anon_sym_LBRACE, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5807), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5780), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6077), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(4934), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [144106] = 28, + [144843] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5778), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5786), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5794), 1, anon_sym_QMARK_QMARK, - ACTIONS(6108), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(5008), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5780), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5095), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [144205] = 19, + [144938] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5833), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5853), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6135), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(4943), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5851), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5829), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5855), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 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, - [144286] = 27, + [145037] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(5776), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(5778), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(5786), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(5794), 1, anon_sym_QMARK_QMARK, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5637), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5666), 2, + ACTIONS(5780), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(5037), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5678), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [144383] = 21, + [145132] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5833), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5641), 1, + anon_sym_as, + ACTIONS(5770), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5772), 1, anon_sym_LT, - ACTIONS(5841), 1, + ACTIONS(5776), 1, + anon_sym_QMARK, + ACTIONS(5778), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(5784), 1, anon_sym_AMP, - ACTIONS(5853), 1, + ACTIONS(5786), 1, + anon_sym_PIPE, + ACTIONS(5790), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5794), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5851), 2, + ACTIONS(5780), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5788), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(5829), 3, + ACTIONS(5023), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + ACTIONS(5764), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5774), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5782), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(5792), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 7, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_implements, - [144468] = 3, + [145227] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(5772), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246188,14 +246612,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5013), 22, 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, @@ -246214,16 +246634,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [144517] = 3, + anon_sym_implements, + [145286] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6056), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246234,17 +246672,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5260), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4895), 17, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [145353] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(6137), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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(5099), 19, + anon_sym_as, + anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -246260,74 +246743,158 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [144566] = 15, + [145418] = 28, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5853), 1, - anon_sym_STAR_STAR, - ACTIONS(6101), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6140), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + STATE(4996), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5829), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5845), 3, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 10, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [145517] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6142), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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(4943), 13, + ACTIONS(4950), 17, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_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, - [144639] = 3, + anon_sym_extends, + [145584] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 14, + ACTIONS(1196), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5874), 1, + anon_sym_QMARK_DOT, + ACTIONS(6145), 1, + anon_sym_LT, + STATE(4770), 1, + sym_type_arguments, + STATE(3324), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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, @@ -246338,17 +246905,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2092), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5099), 18, 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, @@ -246364,16 +246923,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [144688] = 3, + anon_sym_LBRACE_PIPE, + [145649] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 14, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(6122), 1, + anon_sym_LT, + ACTIONS(6148), 1, + anon_sym_QMARK_DOT, + STATE(3245), 1, + sym_type_arguments, + STATE(3268), 1, + sym_arguments, + ACTIONS(4785), 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, @@ -246384,17 +246956,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5200), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4787), 20, 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, @@ -246412,30 +246976,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [144737] = 12, + anon_sym_LBRACE_PIPE, + [145712] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6101), 1, + ACTIONS(6142), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246449,10 +247014,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 17, + ACTIONS(4950), 17, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -246466,89 +247031,173 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [144804] = 23, + anon_sym_extends, + [145779] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5632), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5833), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(5841), 1, + ACTIONS(5936), 1, + anon_sym_QMARK, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5954), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5015), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5843), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5829), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4943), 5, - anon_sym_as, + ACTIONS(5952), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [145876] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 1, + anon_sym_BQUOTE, + ACTIONS(5637), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5874), 1, + anon_sym_QMARK_DOT, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, + anon_sym_in, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5936), 1, + anon_sym_QMARK, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5944), 1, + anon_sym_AMP, + ACTIONS(5946), 1, + anon_sym_PIPE, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - anon_sym_implements, - ACTIONS(5855), 5, + STATE(4770), 1, + sym_type_arguments, + ACTIONS(5104), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5948), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3324), 2, + sym_template_string, + sym_arguments, + ACTIONS(5924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5934), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5942), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [144893] = 8, + [145973] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(6036), 1, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5874), 1, + anon_sym_QMARK_DOT, + ACTIONS(6150), 1, anon_sym_LT, - STATE(4828), 1, + STATE(4770), 1, sym_type_arguments, - STATE(2520), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(4948), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -246561,13 +247210,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 22, - sym__automatic_semicolon, + ACTIONS(4950), 16, anon_sym_as, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COMMA, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -246581,17 +247226,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, + anon_sym_LBRACE_PIPE, + [146040] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + ACTIONS(6093), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6073), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6079), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6087), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6097), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 8, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, anon_sym_extends, - [144952] = 3, + [146119] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(6032), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -246602,16 +247316,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1978), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5013), 22, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -246628,16 +247338,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, - [145001] = 3, + [146178] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 14, + ACTIONS(1196), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5874), 1, + anon_sym_QMARK_DOT, + ACTIONS(6150), 1, + anon_sym_LT, + STATE(4770), 1, + sym_type_arguments, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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, @@ -246648,17 +247377,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2052), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4950), 16, 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, @@ -246672,14 +247393,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, - anon_sym_extends, - [145050] = 3, + anon_sym_LBRACE_PIPE, + [146245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 14, + ACTIONS(5215), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246694,7 +247412,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 27, + ACTIONS(5087), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -246722,10 +247440,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145099] = 3, + [146294] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 14, + ACTIONS(4902), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -246740,7 +247458,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 27, + ACTIONS(4904), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -246768,269 +247486,265 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145148] = 26, + [146343] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6034), 1, - anon_sym_in, - ACTIONS(6036), 1, + ACTIONS(6071), 1, anon_sym_LT, - ACTIONS(6040), 1, - anon_sym_QMARK, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6048), 1, - anon_sym_AMP, - ACTIONS(6050), 1, - anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, - anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4960), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [145243] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(6112), 1, - anon_sym_is, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(4833), 14, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(4893), 8, 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(3866), 23, + ACTIONS(4895), 13, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_QMARK_DOT, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, anon_sym_extends, - [145300] = 26, + [146418] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6034), 1, - anon_sym_in, - ACTIONS(6036), 1, + ACTIONS(6071), 1, anon_sym_LT, - ACTIONS(6040), 1, - anon_sym_QMARK, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6048), 1, - anon_sym_AMP, - ACTIONS(6050), 1, - anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, - anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5154), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [145395] = 26, + ACTIONS(4895), 8, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [146499] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5833), 1, - anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(6071), 1, anon_sym_LT, - ACTIONS(5839), 1, - anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(5849), 1, - anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4851), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(6087), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6097), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 7, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [146584] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + ACTIONS(6119), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6073), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(4893), 10, + anon_sym_BANG, + anon_sym_in, + 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(4895), 13, + sym__automatic_semicolon, + 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, - [145490] = 4, + anon_sym_extends, + [146657] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 1, + ACTIONS(5226), 2, anon_sym_AMP, - ACTIONS(5748), 13, + anon_sym_PIPE, + ACTIONS(5223), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + ACTIONS(4908), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + ACTIONS(3790), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247039,20 +247753,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(3794), 20, 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, @@ -247071,15 +247778,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [145541] = 3, + [146712] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6119), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -247090,17 +247815,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 27, + ACTIONS(4895), 17, 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, @@ -247114,83 +247832,77 @@ 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, - [145590] = 26, + [146779] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6034), 1, - anon_sym_in, - ACTIONS(6036), 1, + ACTIONS(6071), 1, anon_sym_LT, - ACTIONS(6040), 1, - anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, - anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4958), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(4895), 5, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_SEMI, + anon_sym_QMARK_QMARK, + anon_sym_extends, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [145685] = 3, + [146868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 14, + ACTIONS(2057), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247205,7 +247917,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1962), 27, + ACTIONS(2059), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -247233,81 +247945,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145734] = 26, + [146917] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(1950), 1, + sym__automatic_semicolon, + ACTIONS(1940), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1944), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5833), 1, anon_sym_in, - ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5839), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5841), 1, - anon_sym_AMP_AMP, - ACTIONS(5847), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5849), 1, anon_sym_PIPE, - ACTIONS(5853), 1, - anon_sym_STAR_STAR, - ACTIONS(5857), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5843), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5851), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4939), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5837), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(1948), 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5855), 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, - [145829] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [146972] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4220), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(1972), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247322,13 +248012,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 26, + ACTIONS(1974), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -247349,173 +248040,204 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [145880] = 26, + [147021] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6034), 1, + ACTIONS(6077), 1, anon_sym_in, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6040), 1, + ACTIONS(6081), 1, anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, + ACTIONS(6099), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4956), 3, + ACTIONS(4924), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [145975] = 26, + [147116] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6034), 1, + ACTIONS(6077), 1, anon_sym_in, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6040), 1, + ACTIONS(6081), 1, anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, + ACTIONS(6099), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5095), 3, + ACTIONS(4932), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [146070] = 13, + [147211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(5033), 1, + sym_regex_flags, + ACTIONS(5029), 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, + 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(5031), 24, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - ACTIONS(4986), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4992), 1, + anon_sym_RBRACK, anon_sym_DOT, - ACTIONS(4994), 1, anon_sym_QMARK_DOT, - ACTIONS(6054), 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(6114), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + anon_sym_BQUOTE, + [147262] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(6153), 1, + sym__automatic_semicolon, + ACTIONS(1942), 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, @@ -247526,159 +248248,127 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 16, - sym__automatic_semicolon, + ACTIONS(1940), 24, anon_sym_as, - anon_sym_SEMI, + 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, - [146139] = 28, + anon_sym_LBRACE_PIPE, + [147315] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(2022), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6117), 1, - anon_sym_RPAREN, - STATE(4906), 1, - sym_type_arguments, - STATE(5049), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(2020), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [146238] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6054), 1, - anon_sym_STAR_STAR, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6052), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6030), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [147364] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4916), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6038), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6046), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 5, 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(6056), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 8, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4918), 27, 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, - [146317] = 3, + [147413] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 14, + ACTIONS(2199), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -247693,7 +248383,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 27, + ACTIONS(2201), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -247721,301 +248411,154 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [146366] = 26, + [147462] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(2185), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, anon_sym_in, - ACTIONS(6123), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6131), 1, anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6095), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6127), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5148), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6091), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6099), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [146461] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(2187), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, - anon_sym_in, - ACTIONS(6123), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6131), 1, - anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6127), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5217), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6091), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6093), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6099), 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, - [146556] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6054), 1, - anon_sym_STAR_STAR, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6052), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6030), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [147511] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2028), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6046), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, 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(4943), 13, + ACTIONS(2030), 27, 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [146631] = 28, + [147560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(2038), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6135), 1, - anon_sym_RBRACK, - STATE(4906), 1, - sym_type_arguments, - STATE(4921), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(2040), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [146730] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [147609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(6111), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6137), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4910), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -248026,10 +248569,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 17, + ACTIONS(4912), 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_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -248043,34 +248592,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [146797] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6137), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + anon_sym_BQUOTE, + anon_sym_extends, + [147660] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2155), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -248081,10 +248614,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 17, + ACTIONS(2157), 27, + 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, @@ -248098,15 +248638,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_implements, - [146864] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [147709] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - sym_regex_flags, - ACTIONS(4929), 16, + ACTIONS(5118), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -248120,15 +248660,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4931), 24, + ACTIONS(5120), 27, + 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, @@ -248143,267 +248683,272 @@ 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, - [146915] = 26, + anon_sym_extends, + [147758] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(5839), 1, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6155), 1, + anon_sym_LBRACE, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6133), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5217), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [147010] = 19, + [147855] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6034), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6036), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(6054), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - STATE(4828), 1, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6052), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6030), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6056), 5, + ACTIONS(6113), 3, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 8, + [147950] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2008), 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(2006), 27, 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, - [147091] = 26, + [147999] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5615), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(5839), 1, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4853), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5148), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5845), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5855), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [147186] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6140), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(5934), 3, 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(5099), 19, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5952), 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_implements, - [147251] = 3, + [148096] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 14, + ACTIONS(5762), 1, + sym__automatic_semicolon, + ACTIONS(1942), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248418,8 +248963,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1966), 27, - sym__automatic_semicolon, + ACTIONS(1940), 26, sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, @@ -248446,16 +248990,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [147300] = 6, + [148147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 1, - anon_sym_AMP, - ACTIONS(6062), 1, - anon_sym_PIPE, - ACTIONS(6064), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(4829), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248464,11 +249002,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(5075), 26, + ACTIONS(4831), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -248495,74 +249035,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [147355] = 21, + anon_sym_extends, + [148196] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6034), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6036), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(6042), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6054), 1, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - STATE(4828), 1, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6157), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + STATE(5016), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6052), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6030), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 7, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [147440] = 3, + [148295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 14, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248577,7 +249125,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 27, + ACTIONS(3794), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -248605,68 +249153,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [147489] = 15, + [148344] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5624), 1, anon_sym_QMARK_DOT, - ACTIONS(6054), 1, - anon_sym_STAR_STAR, - ACTIONS(6114), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6030), 3, + ACTIONS(1998), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6046), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, 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(4943), 13, + ACTIONS(2000), 24, 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_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [147562] = 3, + [148399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 14, + ACTIONS(5126), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248681,7 +249220,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2161), 27, + ACTIONS(5128), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -248709,10 +249248,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [147611] = 3, + [148448] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 14, + ACTIONS(1998), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248727,7 +249266,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5028), 27, + ACTIONS(2000), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -248755,33 +249294,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [147660] = 12, + [148497] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6114), 1, + ACTIONS(6071), 1, anon_sym_LT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6077), 1, + anon_sym_in, + ACTIONS(6081), 1, + anon_sym_QMARK, + ACTIONS(6083), 1, + anon_sym_AMP_AMP, + ACTIONS(6089), 1, + anon_sym_AMP, + ACTIONS(6091), 1, + anon_sym_PIPE, + ACTIONS(6095), 1, + anon_sym_STAR_STAR, + ACTIONS(6099), 1, + anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + ACTIONS(6085), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6093), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4900), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_extends, + ACTIONS(6073), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6079), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6087), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6097), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [148592] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5189), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -248792,10 +249381,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 17, + ACTIONS(5191), 27, 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, @@ -248809,79 +249405,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [147727] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6034), 1, - anon_sym_in, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6048), 1, - anon_sym_AMP, - ACTIONS(6050), 1, - anon_sym_PIPE, - ACTIONS(6054), 1, - anon_sym_STAR_STAR, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5016), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6052), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6030), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6038), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6046), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4943), 5, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_QMARK_QMARK, + anon_sym_BQUOTE, anon_sym_extends, - ACTIONS(6056), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [147816] = 4, + [148641] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 1, - anon_sym_AMP, - ACTIONS(5759), 13, + ACTIONS(5130), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248890,12 +249421,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(5761), 27, + ACTIONS(5132), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -248923,16 +249455,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [147867] = 6, + [148690] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6060), 1, - anon_sym_AMP, - ACTIONS(6062), 1, - anon_sym_PIPE, - ACTIONS(6064), 1, - anon_sym_extends, - ACTIONS(5765), 12, + ACTIONS(5177), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -248941,11 +249467,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(5767), 26, + ACTIONS(5179), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -248972,1050 +249500,916 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [147922] = 26, + anon_sym_extends, + [148739] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6034), 1, + ACTIONS(6077), 1, anon_sym_in, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6040), 1, + ACTIONS(6081), 1, anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, + ACTIONS(6099), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4851), 3, + ACTIONS(5087), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [148017] = 26, + [148834] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6034), 1, + ACTIONS(6077), 1, anon_sym_in, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6040), 1, + ACTIONS(6081), 1, anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, + ACTIONS(6099), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4939), 3, + ACTIONS(5106), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [148112] = 26, + [148929] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(5108), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5833), 1, anon_sym_in, - ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5839), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5841), 1, - anon_sym_AMP_AMP, - ACTIONS(5847), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5849), 1, anon_sym_PIPE, - ACTIONS(5853), 1, - anon_sym_STAR_STAR, - ACTIONS(5857), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5843), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5851), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5018), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5837), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5110), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5855), 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, - [148207] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [148978] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5833), 1, - anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(5839), 1, - anon_sym_QMARK, - ACTIONS(5841), 1, - anon_sym_AMP_AMP, - ACTIONS(5847), 1, - anon_sym_AMP, - ACTIONS(5849), 1, - anon_sym_PIPE, - ACTIONS(5853), 1, - anon_sym_STAR_STAR, - ACTIONS(5857), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5843), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5851), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4941), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + ACTIONS(5011), 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(5837), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5013), 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, - ACTIONS(5855), 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, - [148302] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_LBRACE_PIPE, + [149037] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5619), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5831), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(5833), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(5835), 1, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(5839), 1, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(5841), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(5847), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(5849), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(5853), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(5857), 1, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5023), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5843), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5851), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5020), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5837), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5855), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [148397] = 26, + [149134] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(4906), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5831), 1, - anon_sym_as, - ACTIONS(5833), 1, anon_sym_in, - ACTIONS(5835), 1, anon_sym_LT, - ACTIONS(5839), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5841), 1, - anon_sym_AMP_AMP, - ACTIONS(5847), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5849), 1, anon_sym_PIPE, - ACTIONS(5853), 1, - anon_sym_STAR_STAR, - ACTIONS(5857), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5843), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5851), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4895), 3, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_implements, - ACTIONS(5829), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5837), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5845), 3, + ACTIONS(4908), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5855), 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, - [148492] = 28, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(5073), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6143), 1, - anon_sym_RBRACK, - STATE(4906), 1, - sym_type_arguments, - STATE(4921), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5037), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [148591] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(2073), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, anon_sym_in, - ACTIONS(6123), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6131), 1, anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6095), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6127), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2075), 27, + 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, + anon_sym_LT_LT, anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4960), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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(6089), 3, + [149281] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1962), 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(6091), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(1964), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6099), 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, - [148686] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149330] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(2145), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, anon_sym_in, - ACTIONS(6123), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6131), 1, anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6095), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6127), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2147), 27, + 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, + anon_sym_LT_LT, anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5154), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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(6089), 3, + [149379] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2123), 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(6091), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(2125), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6099), 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, - [148781] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149428] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5580), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(5142), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5791), 1, anon_sym_in, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5795), 1, anon_sym_LT, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5811), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5813), 1, anon_sym_PIPE, - ACTIONS(5817), 1, - anon_sym_STAR_STAR, - ACTIONS(5821), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(4895), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5815), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5781), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5797), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5144), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5819), 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, - [148878] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(5148), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, anon_sym_in, - ACTIONS(6123), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6131), 1, anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6095), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6127), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4958), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6091), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5150), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6099), 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, - [148973] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149526] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(5073), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(6034), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(6036), 1, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(6040), 1, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(5037), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5018), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [149068] = 27, + [149623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(5166), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5656), 1, anon_sym_in, - ACTIONS(5658), 1, anon_sym_LT, - ACTIONS(5662), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5664), 1, - anon_sym_AMP_AMP, - ACTIONS(5670), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5672), 1, anon_sym_PIPE, - ACTIONS(5676), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6145), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5660), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5168), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5678), 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, - [149165] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(5041), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5656), 1, anon_sym_in, - ACTIONS(5658), 1, anon_sym_LT, - ACTIONS(5662), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5664), 1, - anon_sym_AMP_AMP, - ACTIONS(5670), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5672), 1, anon_sym_PIPE, - ACTIONS(5676), 1, - anon_sym_STAR_STAR, - ACTIONS(5680), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6110), 1, - anon_sym_COMMA, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5666), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5674), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6147), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5649), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5660), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(5043), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5678), 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, - [149262] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149721] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(5617), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(6034), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(6036), 1, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(6040), 1, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(5095), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4941), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [149357] = 3, + [149818] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 14, + ACTIONS(5245), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250030,7 +250424,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5233), 27, + ACTIONS(5247), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250058,148 +250452,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [149406] = 26, + [149867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4920), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6034), 1, anon_sym_in, - ACTIONS(6036), 1, anon_sym_LT, - ACTIONS(6040), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6042), 1, - anon_sym_AMP_AMP, - ACTIONS(6048), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6050), 1, anon_sym_PIPE, - ACTIONS(6054), 1, - anon_sym_STAR_STAR, - ACTIONS(6058), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6044), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6052), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5020), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_extends, - ACTIONS(6030), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6038), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6056), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [149501] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4922), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, - anon_sym_in, - ACTIONS(6123), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6131), 1, - anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6127), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4956), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6091), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6093), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6099), 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, - [149596] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [149916] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 14, + ACTIONS(4926), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250214,7 +250516,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2185), 27, + ACTIONS(4928), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250242,90 +250544,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [149645] = 26, + [149965] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6071), 1, + anon_sym_LT, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6034), 1, + ACTIONS(6077), 1, anon_sym_in, - ACTIONS(6036), 1, - anon_sym_LT, - ACTIONS(6040), 1, + ACTIONS(6081), 1, anon_sym_QMARK, - ACTIONS(6042), 1, + ACTIONS(6083), 1, anon_sym_AMP_AMP, - ACTIONS(6048), 1, + ACTIONS(6089), 1, anon_sym_AMP, - ACTIONS(6050), 1, + ACTIONS(6091), 1, anon_sym_PIPE, - ACTIONS(6054), 1, + ACTIONS(6095), 1, anon_sym_STAR_STAR, - ACTIONS(6058), 1, + ACTIONS(6099), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6044), 2, + ACTIONS(6085), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6052), 2, + ACTIONS(6093), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4895), 3, + ACTIONS(4853), 3, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_extends, - ACTIONS(6030), 3, + ACTIONS(6073), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6038), 3, + ACTIONS(6079), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6046), 3, + ACTIONS(6087), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6056), 5, + ACTIONS(6097), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [149740] = 7, + [150060] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(6149), 1, - anon_sym_is, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(4936), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -250336,13 +250631,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 24, + ACTIONS(4938), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -250361,10 +250659,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [149797] = 3, + [150109] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 14, + ACTIONS(5061), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250379,7 +250677,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2142), 27, + ACTIONS(5063), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250407,104 +250705,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [149846] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, - anon_sym_in, - ACTIONS(6123), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, - anon_sym_AMP, - ACTIONS(6131), 1, - anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6127), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5095), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6091), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6093), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6099), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [149941] = 13, + [150158] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6070), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4944), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -250515,27 +250723,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 16, + ACTIONS(4946), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + 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, - [150010] = 3, + [150207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 14, + ACTIONS(5205), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250550,7 +250769,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2110), 27, + ACTIONS(5207), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250578,10 +250797,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150059] = 3, + [150256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 14, + ACTIONS(2296), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250596,7 +250815,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 27, + ACTIONS(2294), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250624,10 +250843,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150108] = 3, + [150305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 14, + ACTIONS(5209), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -250642,7 +250861,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2201), 27, + ACTIONS(5211), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -250670,388 +250889,566 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150157] = 16, + [150354] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5213), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, + anon_sym_in, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(6097), 1, + ACTIONS(5936), 1, + anon_sym_QMARK, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5944), 1, + anon_sym_AMP, + ACTIONS(5946), 1, + anon_sym_PIPE, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(5954), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5106), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(6089), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6093), 3, + ACTIONS(5934), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 8, + ACTIONS(5952), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [150451] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5213), 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(4943), 13, + ACTIONS(5106), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + 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, - [150232] = 19, + [150500] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5215), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, + anon_sym_in, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(6097), 1, + ACTIONS(5936), 1, + anon_sym_QMARK, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5944), 1, + anon_sym_AMP, + ACTIONS(5946), 1, + anon_sym_PIPE, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(6121), 1, - anon_sym_in, - STATE(4906), 1, + ACTIONS(5954), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5087), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(6089), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6091), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, + ACTIONS(5952), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [150597] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4940), 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(6099), 5, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4942), 27, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_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(4943), 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [150646] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5217), 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(5219), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + 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, - [150313] = 21, + [150695] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5221), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6121), 1, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(6125), 1, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5936), 1, + anon_sym_QMARK, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(6129), 1, + ACTIONS(5944), 1, anon_sym_AMP, - STATE(4906), 1, + ACTIONS(5946), 1, + anon_sym_PIPE, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + ACTIONS(5954), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4900), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6089), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6091), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6099), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 7, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [150398] = 15, + [150792] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5221), 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(4900), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(6070), 1, - anon_sym_LT, - ACTIONS(6097), 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, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 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(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6089), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [150841] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5229), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6093), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, 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(4943), 13, + ACTIONS(5231), 27, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_EQ_GT, + 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, - [150471] = 23, + [150890] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6121), 1, + ACTIONS(4959), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6125), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6131), 1, anon_sym_PIPE, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6095), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6127), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6089), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6091), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(4961), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(4943), 5, - anon_sym_as, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(6099), 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, - [150560] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [150939] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5604), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(6121), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(6123), 1, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(6129), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(6131), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(6133), 1, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4934), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6127), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5948), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4851), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6091), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6099), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [150655] = 3, + [151036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 14, + ACTIONS(5233), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251066,7 +251463,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 27, + ACTIONS(5235), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251094,79 +251491,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150704] = 26, + [151085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(5260), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, anon_sym_in, - ACTIONS(6123), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6131), 1, anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6095), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6127), 2, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5262), 27, + 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, + anon_sym_LT_LT, anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4939), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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(6089), 3, + [151134] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2014), 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(6091), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(2016), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6099), 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, - [150799] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [151183] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 14, + ACTIONS(5264), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251181,7 +251601,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5270), 27, + ACTIONS(5266), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251209,10 +251629,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150848] = 3, + [151232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 14, + ACTIONS(4963), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251227,7 +251647,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5274), 27, + ACTIONS(4930), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251255,14 +251675,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150897] = 4, + [151281] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5746), 1, - anon_sym_is, - ACTIONS(4837), 15, + ACTIONS(5268), 14, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -251276,9 +251693,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 25, + ACTIONS(5270), 27, sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, @@ -251302,83 +251721,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [150948] = 26, + [151330] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4963), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(6121), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(6123), 1, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(6129), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(6131), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(6133), 1, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4930), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6127), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5948), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5018), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6091), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6099), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [151043] = 3, + [151427] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 14, + ACTIONS(1196), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5874), 1, + anon_sym_QMARK_DOT, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + ACTIONS(6001), 1, + anon_sym_LT, + STATE(4770), 1, + sym_type_arguments, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(3324), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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, @@ -251389,38 +251831,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 27, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(4895), 15, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [151092] = 3, + anon_sym_LBRACE_PIPE, + [151496] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 14, + ACTIONS(5003), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251435,7 +251865,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2120), 27, + ACTIONS(5005), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251463,263 +251893,383 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [151141] = 26, + [151545] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, + ACTIONS(5932), 1, anon_sym_LT, - ACTIONS(6097), 1, + ACTIONS(5950), 1, anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, + STATE(4770), 1, + sym_type_arguments, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5948), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3324), 2, + sym_template_string, + sym_arguments, + ACTIONS(5924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5934), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5942), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5952), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4893), 6, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, - ACTIONS(6123), 1, anon_sym_QMARK, - ACTIONS(6125), 1, - anon_sym_AMP_AMP, - ACTIONS(6129), 1, anon_sym_AMP, - ACTIONS(6131), 1, anon_sym_PIPE, - ACTIONS(6133), 1, + ACTIONS(4895), 7, + anon_sym_as, + anon_sym_COMMA, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_QMARK_QMARK, - STATE(4906), 1, + anon_sym_LBRACE_PIPE, + [151624] = 19, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5874), 1, + anon_sym_QMARK_DOT, + ACTIONS(5930), 1, + anon_sym_in, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6127), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4941), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6091), 3, + ACTIONS(5934), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5942), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 5, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5952), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 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, + [151705] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5237), 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(6093), 3, + ACTIONS(5239), 27, + 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6099), 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, - [151236] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [151754] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, - anon_sym_as, - ACTIONS(6121), 1, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(6123), 1, - anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(6129), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(6131), 1, - anon_sym_PIPE, - ACTIONS(6133), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6127), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5020), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6091), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6099), 5, + ACTIONS(4893), 4, + anon_sym_LBRACE, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [151331] = 3, + ACTIONS(4895), 6, + anon_sym_as, + anon_sym_COMMA, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + [151839] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 14, - anon_sym_STAR, + ACTIONS(1196), 1, + anon_sym_BQUOTE, + ACTIONS(5558), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5874), 1, + anon_sym_QMARK_DOT, + ACTIONS(5878), 1, + anon_sym_as, + ACTIONS(5880), 1, anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, + ACTIONS(5932), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5936), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5944), 1, anon_sym_AMP, + ACTIONS(5946), 1, anon_sym_PIPE, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + ACTIONS(5954), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, + sym_type_arguments, + ACTIONS(4932), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5948), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(3324), 2, + sym_template_string, + sym_arguments, + ACTIONS(5924), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5934), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 27, - 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, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5952), 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, - [151380] = 26, + [151936] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5146), 1, + anon_sym_LBRACE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6085), 1, - anon_sym_LT, - ACTIONS(6097), 1, - anon_sym_STAR_STAR, - ACTIONS(6119), 1, + ACTIONS(5878), 1, anon_sym_as, - ACTIONS(6121), 1, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(5930), 1, anon_sym_in, - ACTIONS(6123), 1, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5936), 1, anon_sym_QMARK, - ACTIONS(6125), 1, + ACTIONS(5938), 1, anon_sym_AMP_AMP, - ACTIONS(6129), 1, + ACTIONS(5944), 1, anon_sym_AMP, - ACTIONS(6131), 1, + ACTIONS(5946), 1, anon_sym_PIPE, - ACTIONS(6133), 1, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + ACTIONS(5954), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4924), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6095), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6127), 2, + ACTIONS(5940), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(5948), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(4895), 3, - anon_sym_COMMA, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6089), 3, + ACTIONS(5924), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6091), 3, + ACTIONS(5934), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6093), 3, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6099), 5, + ACTIONS(5952), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [151475] = 3, + [152033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 14, + ACTIONS(5146), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251734,7 +252284,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5252), 27, + ACTIONS(4924), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251762,10 +252312,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [151524] = 3, + [152082] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 14, + ACTIONS(5138), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251780,7 +252330,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5245), 27, + ACTIONS(5140), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251808,10 +252358,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [151573] = 3, + [152131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 14, + ACTIONS(5134), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -251826,7 +252376,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 27, + ACTIONS(5136), 27, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -251854,352 +252404,329 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [151622] = 11, + [152180] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(6151), 1, + ACTIONS(5930), 1, + anon_sym_in, + ACTIONS(5932), 1, anon_sym_LT, - STATE(4765), 1, + ACTIONS(5938), 1, + anon_sym_AMP_AMP, + ACTIONS(5944), 1, + anon_sym_AMP, + ACTIONS(5946), 1, + anon_sym_PIPE, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + STATE(4770), 1, sym_type_arguments, - STATE(3328), 2, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5940), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5948), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 14, - anon_sym_STAR, + ACTIONS(4893), 3, anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, + ACTIONS(5924), 3, + anon_sym_STAR, + anon_sym_SLASH, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(5934), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 18, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5942), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4895), 4, + anon_sym_as, + anon_sym_COMMA, + anon_sym_QMARK_QMARK, + anon_sym_LBRACE_PIPE, + ACTIONS(5952), 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_LBRACE_PIPE, - [151687] = 10, + [152269] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, + ACTIONS(1196), 1, + anon_sym_BQUOTE, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6154), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - STATE(3146), 1, + ACTIONS(5932), 1, + anon_sym_LT, + ACTIONS(5950), 1, + anon_sym_STAR_STAR, + STATE(4770), 1, sym_type_arguments, - STATE(3393), 1, + ACTIONS(5908), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5948), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3324), 2, + sym_template_string, sym_arguments, - ACTIONS(4779), 14, + ACTIONS(5924), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5942), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 9, 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(4781), 20, + ACTIONS(4895), 12, 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_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [151750] = 27, + [152344] = 28, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5642), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5805), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5811), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5813), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + ACTIONS(6159), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5148), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, + STATE(4918), 1, + aux_sym_array_repeat1, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5815), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [151847] = 28, + [152443] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(4783), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5867), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5872), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(5874), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6001), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6156), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4770), 1, sym_type_arguments, - STATE(5003), 1, - aux_sym_array_repeat1, - ACTIONS(4927), 2, + ACTIONS(5908), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(3324), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4893), 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(5512), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(4895), 16, + 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(5530), 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, - [151946] = 27, + anon_sym_LBRACE_PIPE, + [152510] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(5644), 1, - anon_sym_LBRACE, - ACTIONS(5783), 1, - anon_sym_as, - ACTIONS(5787), 1, - anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(5791), 1, - anon_sym_in, - ACTIONS(5793), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5795), 1, - anon_sym_LT, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5803), 1, - anon_sym_QMARK, - ACTIONS(5805), 1, - anon_sym_AMP_AMP, - ACTIONS(5811), 1, - anon_sym_AMP, - ACTIONS(5813), 1, - anon_sym_PIPE, - ACTIONS(5817), 1, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, + anon_sym_LT, + ACTIONS(6173), 1, anon_sym_STAR_STAR, - ACTIONS(5821), 1, - anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5217), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - ACTIONS(5807), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5815), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(5823), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + ACTIONS(6171), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5781), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5797), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5809), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5819), 5, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [152043] = 12, + ACTIONS(4895), 7, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [152590] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, - anon_sym_BQUOTE, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(5793), 1, - anon_sym_LBRACK, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(5801), 1, - anon_sym_QMARK_DOT, - ACTIONS(6158), 1, - anon_sym_LT, - STATE(4765), 1, - sym_type_arguments, - ACTIONS(5823), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(3328), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 14, + ACTIONS(6126), 1, + anon_sym_is, + ACTIONS(4829), 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, @@ -252210,9 +252737,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 16, + ACTIONS(4831), 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, @@ -252226,216 +252757,225 @@ 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, - [152110] = 26, + [152640] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5037), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6073), 3, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - ACTIONS(5530), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [152205] = 12, + [152734] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6158), 1, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, + anon_sym_in, + ACTIONS(6195), 1, anon_sym_LT, - STATE(4765), 1, + ACTIONS(6199), 1, + anon_sym_QMARK, + ACTIONS(6201), 1, + anon_sym_AMP_AMP, + ACTIONS(6207), 1, + anon_sym_AMP, + ACTIONS(6209), 1, + anon_sym_PIPE, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6217), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - ACTIONS(5823), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(3328), 2, + ACTIONS(4934), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 14, + ACTIONS(6191), 3, 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, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6197), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 16, - anon_sym_as, - anon_sym_COMMA, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6215), 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_LBRACE_PIPE, - [152272] = 27, + [152828] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4978), 1, - anon_sym_as, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5656), 1, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(5658), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(5662), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(5664), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(5670), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(5672), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(5676), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(5680), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, - ACTIONS(6110), 1, - anon_sym_COMMA, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5666), 2, + ACTIONS(4930), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5674), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6161), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5649), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5660), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5668), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5678), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [152369] = 7, + [152922] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(6163), 1, + ACTIONS(6006), 1, anon_sym_is, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(4829), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -252446,12 +252986,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 24, + ACTIONS(4831), 25, 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, @@ -252471,14 +253012,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_implements, anon_sym_extends, - [152426] = 3, + [152972] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6219), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -252489,111 +253051,181 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2900), 27, + ACTIONS(4895), 15, 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, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [152475] = 4, + [153040] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6195), 1, + anon_sym_LT, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6191), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6197), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6205), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 5, 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(3800), 26, + ACTIONS(6215), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 7, 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, + [153118] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6222), 1, + anon_sym_RBRACK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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, - [152526] = 5, + [153214] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 7, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - ACTIONS(3796), 12, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_in, + ACTIONS(6227), 1, + anon_sym_of, + ACTIONS(1944), 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(3800), 20, + ACTIONS(1948), 24, + 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_AMP_AMP, @@ -252612,16 +253244,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [152579] = 4, + [153268] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2060), 14, + ACTIONS(5019), 1, + anon_sym_EQ, + ACTIONS(6229), 1, + anon_sym_in, + ACTIONS(6232), 1, + anon_sym_of, + ACTIONS(5017), 13, anon_sym_STAR, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -252633,7 +253267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 24, + ACTIONS(5021), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -252658,22 +253292,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [152629] = 6, + [153322] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(1946), 1, anon_sym_EQ, - ACTIONS(5173), 3, - anon_sym_COMMA, + ACTIONS(5089), 1, anon_sym_LBRACK, + ACTIONS(2902), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(5176), 3, + ACTIONS(5092), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(4867), 12, + ACTIONS(1944), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -252684,9 +253318,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 21, + ACTIONS(1948), 22, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -252705,103 +253341,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [152683] = 27, + [153378] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6234), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6165), 1, - anon_sym_RBRACK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [152779] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(6167), 1, - anon_sym_in, - ACTIONS(6170), 1, - anon_sym_of, - ACTIONS(1944), 13, + ACTIONS(6238), 1, + anon_sym_extends, + ACTIONS(5003), 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(1948), 24, + ACTIONS(5005), 25, 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, @@ -252823,185 +253389,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [152833] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6174), 1, - anon_sym_in, - ACTIONS(6176), 1, - anon_sym_LT, - ACTIONS(6180), 1, - anon_sym_QMARK, - ACTIONS(6182), 1, - anon_sym_AMP_AMP, - ACTIONS(6188), 1, - anon_sym_AMP, - ACTIONS(6190), 1, - anon_sym_PIPE, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6198), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5095), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6184), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6192), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6178), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6186), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6196), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [152927] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4695), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6208), 2, - anon_sym_get, - anon_sym_set, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [152999] = 22, + [153432] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(6240), 1, anon_sym_STAR, - ACTIONS(6212), 1, + ACTIONS(6242), 1, anon_sym_RBRACE, - ACTIONS(6214), 1, + ACTIONS(6244), 1, anon_sym_async, - ACTIONS(6218), 1, + ACTIONS(6248), 1, anon_sym_static, - ACTIONS(6220), 1, + ACTIONS(6250), 1, anon_sym_readonly, - ACTIONS(6224), 1, + ACTIONS(6254), 1, anon_sym_declare, - ACTIONS(6226), 1, + ACTIONS(6256), 1, anon_sym_abstract, - STATE(3725), 1, + STATE(3724), 1, sym_method_definition, - STATE(3782), 1, + STATE(3780), 1, sym_accessibility_modifier, - ACTIONS(6216), 2, + ACTIONS(6246), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, + ACTIONS(6252), 2, anon_sym_get, anon_sym_set, - STATE(3020), 2, + STATE(3198), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3850), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4928), 4, + STATE(5046), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -253012,598 +253453,530 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [153085] = 6, + [153518] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(6228), 1, - anon_sym_in, - ACTIONS(6231), 1, - anon_sym_of, - ACTIONS(4966), 13, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6181), 1, + anon_sym_AMP_AMP, + ACTIONS(6185), 1, anon_sym_AMP, + ACTIONS(6187), 1, anon_sym_PIPE, + ACTIONS(6189), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4924), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6161), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 24, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6169), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6175), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [153612] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, + anon_sym_LT, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, + anon_sym_QMARK, + ACTIONS(6181), 1, anon_sym_AMP_AMP, + ACTIONS(6185), 1, + anon_sym_AMP, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6189), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4900), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6171), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(6183), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6161), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6175), 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, - [153139] = 26, + [153706] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6237), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6239), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6243), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(6245), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(6251), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5154), 2, + ACTIONS(5087), 2, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6233), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6241), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6259), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [153233] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_static, - ACTIONS(6220), 1, - anon_sym_readonly, - ACTIONS(6224), 1, - anon_sym_declare, - ACTIONS(6226), 1, - anon_sym_abstract, - ACTIONS(6263), 1, - anon_sym_RBRACE, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6216), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6222), 2, - anon_sym_get, - anon_sym_set, - STATE(3070), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [153319] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4695), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6265), 1, - anon_sym_LBRACK, - ACTIONS(6267), 1, - anon_sym_async, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [153393] = 26, + [153800] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5106), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6273), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(2266), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [153487] = 16, + [153894] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6205), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 12, + sym__automatic_semicolon, + 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, + [153968] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2119), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2123), 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(6186), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2125), 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(4945), 8, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [154018] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2141), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2145), 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(4943), 12, - sym__automatic_semicolon, + ACTIONS(2147), 21, anon_sym_as, - 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, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [153561] = 16, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [154068] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4701), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, + ACTIONS(4845), 1, anon_sym_EQ, - ACTIONS(6265), 1, - anon_sym_LBRACK, - ACTIONS(6267), 1, - anon_sym_async, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [153635] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4701), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6258), 1, + anon_sym_in, + ACTIONS(6261), 1, + anon_sym_of, + ACTIONS(4843), 13, anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6267), 1, - anon_sym_async, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6277), 1, - anon_sym_readonly, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_BANG, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [153711] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4701), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6208), 2, - anon_sym_get, - anon_sym_set, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 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(4847), 24, sym__automatic_semicolon, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [153783] = 19, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [154122] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6174), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, + ACTIONS(4893), 4, anon_sym_BANG, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6196), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 7, + ACTIONS(4895), 7, sym__automatic_semicolon, anon_sym_as, anon_sym_SEMI, @@ -253611,103 +253984,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [153863] = 21, + [154202] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6174), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6182), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, + ACTIONS(4893), 3, anon_sym_BANG, anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 6, + ACTIONS(4895), 6, sym__automatic_semicolon, anon_sym_as, anon_sym_SEMI, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [153947] = 15, + [154286] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(6279), 1, + ACTIONS(6219), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6186), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 10, + ACTIONS(4893), 10, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -253718,7 +254091,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 12, + ACTIONS(4895), 12, sym__automatic_semicolon, anon_sym_as, anon_sym_SEMI, @@ -253731,30 +254104,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [154019] = 12, + [154358] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6279), 1, + ACTIONS(6219), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -253768,7 +254141,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 16, + ACTIONS(4895), 16, sym__automatic_semicolon, anon_sym_as, anon_sym_SEMI, @@ -253785,338 +254158,265 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [154085] = 23, + [154424] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6174), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6182), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, STATE(4828), 1, sym_type_arguments, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6184), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4943), 4, + ACTIONS(4895), 4, sym__automatic_semicolon, anon_sym_as, anon_sym_SEMI, anon_sym_QMARK_QMARK, - ACTIONS(6196), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [154173] = 17, + [154512] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(6263), 1, + sym__automatic_semicolon, + ACTIONS(1958), 4, anon_sym_COMMA, - ACTIONS(4695), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6267), 1, - anon_sym_async, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6277), 1, - anon_sym_readonly, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [154249] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(1962), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6174), 1, anon_sym_in, - ACTIONS(6176), 1, anon_sym_LT, - ACTIONS(6180), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6182), 1, - anon_sym_AMP_AMP, - ACTIONS(6188), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6190), 1, anon_sym_PIPE, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6198), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(4851), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6184), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6192), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6178), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(1964), 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(6196), 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, - [154343] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [154564] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(4939), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6184), 2, + ACTIONS(4924), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [154437] = 12, + [154658] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6282), 1, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, + anon_sym_in, + ACTIONS(6195), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(6199), 1, + anon_sym_QMARK, + ACTIONS(6201), 1, + anon_sym_AMP_AMP, + ACTIONS(6207), 1, + anon_sym_AMP, + ACTIONS(6209), 1, + anon_sym_PIPE, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6217), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(4932), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(6191), 3, 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, + ACTIONS(6197), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 16, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6215), 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_extends, - [154503] = 8, + [154752] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(6285), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 13, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4843), 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, @@ -254127,11 +254427,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 21, + ACTIONS(4847), 24, 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, @@ -254148,68 +254449,203 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, + anon_sym_BQUOTE, anon_sym_extends, - [154561] = 13, + anon_sym_LBRACE_PIPE, + [154802] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6279), 1, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, + anon_sym_in, + ACTIONS(6195), 1, anon_sym_LT, + ACTIONS(6199), 1, + anon_sym_QMARK, + ACTIONS(6201), 1, + anon_sym_AMP_AMP, + ACTIONS(6207), 1, + anon_sym_AMP, + ACTIONS(6209), 1, + anon_sym_PIPE, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6217), 1, + anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + ACTIONS(5095), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(6191), 3, 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, + ACTIONS(6197), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 15, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, + ACTIONS(6215), 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, - [154629] = 4, + [154896] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6163), 1, - anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4685), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6273), 2, + anon_sym_get, + anon_sym_set, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [154968] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4685), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6275), 1, + anon_sym_LBRACK, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6281), 1, + anon_sym_readonly, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6279), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6283), 2, + anon_sym_get, + anon_sym_set, + STATE(3895), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [155044] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2010), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2014), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254224,10 +254660,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 25, + ACTIONS(2016), 21, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -254248,87 +254682,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, - [154679] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6237), 1, - anon_sym_in, - ACTIONS(6239), 1, - anon_sym_LT, - ACTIONS(6243), 1, - anon_sym_QMARK, - ACTIONS(6245), 1, - anon_sym_AMP_AMP, - ACTIONS(6251), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5095), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6241), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [154773] = 4, + [155094] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 5, + ACTIONS(5039), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1976), 14, + ACTIONS(1942), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -254342,9 +254703,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1978), 21, + ACTIONS(1940), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -254364,17 +254727,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [154823] = 4, + anon_sym_extends, + [155144] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2050), 14, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(1944), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -254388,8 +254749,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2052), 21, + ACTIONS(1948), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -254410,128 +254772,169 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [154873] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [155194] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4685), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6285), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6279), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6283), 2, + anon_sym_get, + anon_sym_set, + STATE(3895), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(5514), 1, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [155268] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5089), 1, + anon_sym_LBRACK, + ACTIONS(2902), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5092), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6287), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, + ACTIONS(1944), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(1948), 22, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [154967] = 22, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [155324] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(6240), 1, anon_sym_STAR, - ACTIONS(6214), 1, + ACTIONS(6244), 1, anon_sym_async, - ACTIONS(6218), 1, + ACTIONS(6248), 1, anon_sym_static, - ACTIONS(6220), 1, + ACTIONS(6250), 1, anon_sym_readonly, - ACTIONS(6224), 1, + ACTIONS(6254), 1, anon_sym_declare, - ACTIONS(6226), 1, + ACTIONS(6256), 1, anon_sym_abstract, - ACTIONS(6289), 1, + ACTIONS(6287), 1, anon_sym_RBRACE, - STATE(3725), 1, + STATE(3724), 1, sym_method_definition, - STATE(3782), 1, + STATE(3780), 1, sym_accessibility_modifier, - ACTIONS(6216), 2, + ACTIONS(6246), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, + ACTIONS(6252), 2, anon_sym_get, anon_sym_set, - STATE(3045), 2, + STATE(3069), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3850), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4928), 4, + STATE(5046), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254542,21 +254945,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [155053] = 7, + [155410] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(4845), 1, anon_sym_EQ, - ACTIONS(4950), 1, + ACTIONS(4965), 1, anon_sym_LBRACK, - ACTIONS(2908), 2, + ACTIONS(5051), 2, anon_sym_COMMA, anon_sym_extends, - ACTIONS(4953), 3, + ACTIONS(4968), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(4843), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -254568,7 +254971,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1948), 22, + ACTIONS(4847), 22, anon_sym_as, anon_sym_LPAREN, anon_sym_COLON, @@ -254591,60 +254994,155 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [155109] = 22, + [155466] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4965), 1, + anon_sym_LBRACK, + ACTIONS(5051), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 11, + 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(4847), 22, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [155522] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4458), 1, + anon_sym_EQ, + ACTIONS(3790), 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(3794), 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, + [155572] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(6240), 1, anon_sym_STAR, - ACTIONS(6214), 1, + ACTIONS(6244), 1, anon_sym_async, - ACTIONS(6218), 1, + ACTIONS(6248), 1, anon_sym_static, - ACTIONS(6220), 1, + ACTIONS(6250), 1, anon_sym_readonly, - ACTIONS(6224), 1, + ACTIONS(6254), 1, anon_sym_declare, - ACTIONS(6226), 1, + ACTIONS(6256), 1, anon_sym_abstract, - ACTIONS(6291), 1, + ACTIONS(6289), 1, anon_sym_RBRACE, - STATE(3725), 1, + STATE(3724), 1, sym_method_definition, - STATE(3782), 1, + STATE(3780), 1, sym_accessibility_modifier, - ACTIONS(6216), 2, + ACTIONS(6246), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, + ACTIONS(6252), 2, anon_sym_get, anon_sym_set, - STATE(3070), 2, + STATE(3139), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3850), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4928), 4, + STATE(5046), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -254655,174 +255153,250 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [155195] = 26, + [155658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(2069), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2073), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6237), 1, anon_sym_in, - ACTIONS(6239), 1, anon_sym_LT, - ACTIONS(6243), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6245), 1, - anon_sym_AMP_AMP, - ACTIONS(6251), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6253), 1, anon_sym_PIPE, - ACTIONS(6257), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2075), 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, - ACTIONS(6261), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4895), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4927), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, + anon_sym_BQUOTE, + [155708] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4527), 1, + anon_sym_EQ, + ACTIONS(3790), 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, - ACTIONS(6241), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(3794), 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(6259), 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, - [155289] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [155758] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(6237), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6239), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(6243), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(6245), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6251), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6257), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(6261), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6291), 1, + anon_sym_RBRACK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4939), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6247), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6255), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6233), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6241), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6259), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [155383] = 15, + [155854] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(5007), 1, + anon_sym_LT, + ACTIONS(5489), 1, + anon_sym_DOT, + ACTIONS(6293), 1, + anon_sym_is, + STATE(2399), 1, + sym_type_arguments, + ACTIONS(4823), 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(3862), 23, + sym__automatic_semicolon, + anon_sym_as, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [155910] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4686), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6285), 1, anon_sym_LBRACK, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6208), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(4375), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -254830,11 +255404,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -254848,260 +255421,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [155455] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6237), 1, - anon_sym_in, - ACTIONS(6239), 1, - anon_sym_LT, - ACTIONS(6245), 1, - anon_sym_AMP_AMP, - ACTIONS(6251), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6241), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4943), 4, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(6259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [155543] = 26, + [155984] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(4956), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6184), 2, + ACTIONS(5037), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6186), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6196), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [155637] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(6293), 1, - anon_sym_in, - ACTIONS(6296), 1, - anon_sym_of, - ACTIONS(4867), 13, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_LT, + ACTIONS(6197), 3, 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(4871), 24, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6215), 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, - [155691] = 22, + anon_sym_GT_EQ, + anon_sym_instanceof, + [156078] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4673), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6214), 1, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6277), 1, anon_sym_async, - ACTIONS(6218), 1, - anon_sym_static, - ACTIONS(6220), 1, - anon_sym_readonly, - ACTIONS(6224), 1, - anon_sym_declare, - ACTIONS(6226), 1, - anon_sym_abstract, - ACTIONS(6298), 1, - anon_sym_RBRACE, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6216), 2, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3070), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [155777] = 5, + [156152] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1964), 1, + ACTIONS(2042), 1, sym__automatic_semicolon, - ACTIONS(1956), 2, + ACTIONS(2034), 2, anon_sym_else, anon_sym_while, - ACTIONS(1960), 14, + ACTIONS(2038), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255116,7 +255570,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1962), 23, + ACTIONS(2040), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -255140,38 +255594,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [155829] = 15, + [156204] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, ACTIONS(4673), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - STATE(4997), 1, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6281), 1, + anon_sym_readonly, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5011), 1, + STATE(5010), 1, aux_sym_object_repeat1, - ACTIONS(6206), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6208), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(4375), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -255179,14 +255637,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -255197,42 +255653,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [155901] = 17, + [156280] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4673), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, ACTIONS(6267), 1, - anon_sym_async, + anon_sym_EQ, ACTIONS(6275), 1, anon_sym_LBRACK, ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6281), 1, anon_sym_readonly, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(6269), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -255240,7 +255696,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -255256,108 +255712,174 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [155977] = 26, + [156356] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, + anon_sym_in, + ACTIONS(6195), 1, + anon_sym_LT, + ACTIONS(6199), 1, + anon_sym_QMARK, + ACTIONS(6201), 1, + anon_sym_AMP_AMP, + ACTIONS(6207), 1, + anon_sym_AMP, + ACTIONS(6209), 1, + anon_sym_PIPE, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6217), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5023), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6191), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6197), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6205), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6215), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [156450] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6237), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6239), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6243), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(6245), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6251), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6257), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(6261), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4851), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6247), 2, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6255), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6295), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6233), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6241), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6259), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [156071] = 16, + [156544] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4673), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6265), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6267), 1, - anon_sym_async, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(6269), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6273), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(4330), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -255365,10 +255887,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -255382,33 +255905,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [156145] = 12, + [156616] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6300), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + ACTIONS(1994), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(1998), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -255419,9 +255929,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 16, + ACTIONS(2000), 21, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -255435,208 +255948,141 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [156211] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6300), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, - anon_sym_BANG, - anon_sym_in, - 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(4943), 12, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [156283] = 26, + anon_sym_BQUOTE, + [156666] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6237), 1, - anon_sym_in, - ACTIONS(6239), 1, - anon_sym_LT, - ACTIONS(6243), 1, - anon_sym_QMARK, - ACTIONS(6245), 1, - anon_sym_AMP_AMP, - ACTIONS(6251), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5018), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, - anon_sym_PLUS, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(3590), 1, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(6240), 1, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6241), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [156377] = 26, + ACTIONS(6244), 1, + anon_sym_async, + ACTIONS(6248), 1, + anon_sym_static, + ACTIONS(6250), 1, + anon_sym_readonly, + ACTIONS(6254), 1, + anon_sym_declare, + ACTIONS(6256), 1, + anon_sym_abstract, + ACTIONS(6297), 1, + anon_sym_RBRACE, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6246), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6252), 2, + anon_sym_get, + anon_sym_set, + STATE(3198), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [156752] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4673), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6237), 1, - anon_sym_in, - ACTIONS(6239), 1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6273), 2, + anon_sym_get, + anon_sym_set, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6243), 1, anon_sym_QMARK, - ACTIONS(6245), 1, - anon_sym_AMP_AMP, - ACTIONS(6251), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4941), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6241), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [156471] = 4, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [156824] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, - anon_sym_EQ, - ACTIONS(3796), 15, + ACTIONS(2151), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2155), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -255650,9 +256096,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 24, + ACTIONS(2157), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -255673,19 +256118,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, - [156521] = 6, + [156874] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 1, - anon_sym_LBRACE, - ACTIONS(6305), 1, - anon_sym_DOT, - STATE(3399), 1, - sym_statement_block, - ACTIONS(1930), 14, + ACTIONS(4837), 1, + sym__automatic_semicolon, + ACTIONS(1942), 15, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -255699,11 +256139,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1928), 23, + ACTIONS(1940), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -255722,18 +256164,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [156575] = 5, + [156924] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, - sym__automatic_semicolon, - ACTIONS(2104), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2108), 14, + ACTIONS(6224), 1, + anon_sym_EQ, + ACTIONS(1944), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -255748,9 +256184,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2110), 21, + ACTIONS(1948), 25, + 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, @@ -255770,15 +256209,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [156627] = 5, + anon_sym_extends, + [156974] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6303), 1, - anon_sym_LBRACE, - STATE(3399), 1, - sym_statement_block, - ACTIONS(1930), 14, + ACTIONS(5019), 1, + anon_sym_EQ, + ACTIONS(5017), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -255792,7 +256231,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1928), 24, + ACTIONS(5021), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -255817,17 +256256,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [156679] = 4, + [157024] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4825), 1, - sym__automatic_semicolon, - ACTIONS(1942), 15, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(6195), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 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, @@ -255838,11 +256284,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1940), 24, + ACTIONS(5013), 21, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -255861,273 +256306,85 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [156729] = 26, + [157082] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6237), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6239), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6243), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(6245), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6251), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6257), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(6261), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5020), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6247), 2, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6255), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6299), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6233), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6241), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6259), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [156823] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_static, - ACTIONS(6220), 1, - anon_sym_readonly, - ACTIONS(6224), 1, - anon_sym_declare, - ACTIONS(6226), 1, - anon_sym_abstract, - ACTIONS(6309), 1, - anon_sym_RBRACE, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6216), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6222), 2, - anon_sym_get, - anon_sym_set, - STATE(3070), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [156909] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4686), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6267), 1, - anon_sym_async, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6277), 1, - anon_sym_readonly, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [156985] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6314), 1, - anon_sym_STAR, - ACTIONS(6317), 1, - anon_sym_RBRACE, - ACTIONS(6319), 1, - anon_sym_LBRACK, - ACTIONS(6322), 1, - anon_sym_async, - ACTIONS(6325), 1, - anon_sym_DASH, - ACTIONS(6328), 1, - anon_sym_DQUOTE, - ACTIONS(6331), 1, - anon_sym_SQUOTE, - ACTIONS(6337), 1, - anon_sym_AT, - ACTIONS(6340), 1, - anon_sym_static, - ACTIONS(6343), 1, - anon_sym_readonly, - ACTIONS(6349), 1, - anon_sym_declare, - ACTIONS(6355), 1, - anon_sym_abstract, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6334), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6346), 2, - anon_sym_get, - anon_sym_set, - STATE(3070), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(6352), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(6311), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [157071] = 4, + [157176] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 5, + ACTIONS(6301), 1, sym__automatic_semicolon, + ACTIONS(2034), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2169), 14, + ACTIONS(2038), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256142,7 +256399,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 21, + ACTIONS(2040), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -256164,79 +256421,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [157121] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_static, - ACTIONS(6220), 1, - anon_sym_readonly, - ACTIONS(6224), 1, - anon_sym_declare, - ACTIONS(6226), 1, - anon_sym_abstract, - ACTIONS(6358), 1, - anon_sym_RBRACE, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6216), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6222), 2, - anon_sym_get, - anon_sym_set, - STATE(3052), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [157207] = 5, + [157228] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1980), 1, + ACTIONS(6303), 1, sym__automatic_semicolon, - ACTIONS(1972), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1976), 14, + ACTIONS(2024), 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2028), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256251,11 +256446,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1978), 23, + ACTIONS(2030), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -256275,19 +256468,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [157259] = 5, + [157280] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2054), 1, - sym__automatic_semicolon, - ACTIONS(2046), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2050), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6305), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -256298,14 +256505,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2052), 23, + ACTIONS(4950), 16, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -256319,354 +256521,320 @@ 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, - [157311] = 26, + anon_sym_extends, + [157346] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5018), 2, + ACTIONS(4900), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6184), 2, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [157405] = 26, + [157440] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6237), 1, - anon_sym_in, - ACTIONS(6239), 1, + ACTIONS(6305), 1, anon_sym_LT, - ACTIONS(6243), 1, - anon_sym_QMARK, - ACTIONS(6245), 1, - anon_sym_AMP_AMP, - ACTIONS(6251), 1, - anon_sym_AMP, - ACTIONS(6253), 1, - anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5148), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6233), 3, + ACTIONS(4948), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6241), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(4950), 16, + anon_sym_as, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6259), 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, - [157499] = 21, + anon_sym_extends, + [157506] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2902), 1, + anon_sym_COMMA, + ACTIONS(5089), 2, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6237), 1, - anon_sym_in, - ACTIONS(6239), 1, - anon_sym_LT, - ACTIONS(6245), 1, - anon_sym_AMP_AMP, - ACTIONS(6251), 1, + anon_sym_extends, + ACTIONS(5092), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(6233), 3, + ACTIONS(1944), 11, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6241), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(1948), 22, + sym__automatic_semicolon, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6259), 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(4943), 6, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_extends, - [157583] = 26, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [157562] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(4941), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6184), 2, + ACTIONS(5087), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [157677] = 26, + [157656] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4855), 1, anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, STATE(4828), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5020), 2, + ACTIONS(5106), 2, sym__automatic_semicolon, anon_sym_SEMI, - ACTIONS(6184), 2, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [157771] = 6, + [157750] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 1, - anon_sym_AMP, - ACTIONS(6362), 1, - anon_sym_PIPE, - ACTIONS(6364), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(6229), 1, + anon_sym_EQ, + ACTIONS(5017), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -256675,15 +256843,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(5075), 25, + ACTIONS(5021), 25, 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, @@ -256705,21 +256874,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [157825] = 5, + anon_sym_extends, + [157800] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6366), 1, - sym__automatic_semicolon, - ACTIONS(2032), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2036), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6308), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -256730,12 +256909,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2038), 21, + ACTIONS(5099), 18, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -256751,144 +256927,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [157877] = 19, + anon_sym_extends, + [157864] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6237), 1, + ACTIONS(2061), 1, + sym__automatic_semicolon, + ACTIONS(2053), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2057), 14, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6239), 1, anon_sym_LT, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6241), 3, anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, + anon_sym_SLASH, anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 7, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(2059), 23, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [157957] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4986), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4992), 1, anon_sym_DOT, - ACTIONS(4994), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6174), 1, - anon_sym_in, - ACTIONS(6176), 1, - anon_sym_LT, - ACTIONS(6180), 1, - anon_sym_QMARK, - ACTIONS(6182), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, - anon_sym_AMP, - ACTIONS(6190), 1, - anon_sym_PIPE, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6198), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(4958), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6184), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6192), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6178), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6186), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6196), 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, - [158051] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [157916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6368), 1, + ACTIONS(1976), 1, sym__automatic_semicolon, - ACTIONS(1968), 15, + ACTIONS(1968), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1972), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -256902,10 +256998,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1966), 24, + ACTIONS(1974), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -256925,132 +257022,62 @@ 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, - [158101] = 16, + [157968] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6239), 1, - anon_sym_LT, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, + ACTIONS(2203), 1, + sym__automatic_semicolon, + ACTIONS(2195), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2199), 14, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, 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(4943), 12, + ACTIONS(2201), 23, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [158175] = 18, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(6239), 1, - anon_sym_LT, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6255), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6241), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6249), 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(4945), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6259), 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(4943), 7, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - anon_sym_extends, - [158253] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [158020] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 1, - anon_sym_AMP, - ACTIONS(5759), 13, + ACTIONS(2189), 1, + sym__automatic_semicolon, + ACTIONS(2181), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2185), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -257059,16 +257086,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(5761), 26, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2187), 23, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -257090,268 +257116,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [158303] = 26, + [158072] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(2032), 1, + sym__automatic_semicolon, + ACTIONS(2024), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2028), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6237), 1, anon_sym_in, - ACTIONS(6239), 1, anon_sym_LT, - ACTIONS(6243), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6245), 1, - anon_sym_AMP_AMP, - ACTIONS(6251), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6253), 1, anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5217), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6233), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6241), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6259), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [158397] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(2030), 23, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4986), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4992), 1, anon_sym_DOT, - ACTIONS(4994), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6174), 1, - anon_sym_in, - ACTIONS(6176), 1, - anon_sym_LT, - ACTIONS(6180), 1, - anon_sym_QMARK, - ACTIONS(6182), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, - anon_sym_AMP, - ACTIONS(6190), 1, - anon_sym_PIPE, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6198), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5154), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6184), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6192), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6178), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6186), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6196), 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, - [158491] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [158124] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_COMMA, + ACTIONS(4965), 2, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6300), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 15, + ACTIONS(4847), 22, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACK, + 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_extends, - [158559] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [158180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(2181), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2185), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6370), 1, - anon_sym_RBRACK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(2187), 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(5530), 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, - [158655] = 5, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [158230] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(2159), 1, @@ -257398,304 +257305,267 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [158707] = 26, + [158282] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6313), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(6315), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6317), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6321), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6323), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6329), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6339), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4960), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, + ACTIONS(4853), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6184), 2, + ACTIONS(6325), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6319), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6337), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [158801] = 26, + [158376] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6341), 1, + anon_sym_RBRACK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6184), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6372), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [158895] = 27, + [158472] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(4843), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6174), 1, anon_sym_in, - ACTIONS(6176), 1, anon_sym_LT, - ACTIONS(6180), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6182), 1, - anon_sym_AMP_AMP, - ACTIONS(6188), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6190), 1, anon_sym_PIPE, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6198), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6374), 1, - anon_sym_SEMI, - ACTIONS(6376), 1, - sym__automatic_semicolon, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6184), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6192), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6178), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(4847), 25, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6196), 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, - [158991] = 15, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [158522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(2195), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4698), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6208), 2, - anon_sym_get, - anon_sym_set, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_PIPE_RBRACE, + ACTIONS(2199), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [159063] = 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(2201), 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, + [158572] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4698), 1, + ACTIONS(4688), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, ACTIONS(6267), 1, - anon_sym_async, - ACTIONS(6275), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6277), 1, - anon_sym_readonly, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(6269), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6273), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(4330), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -257703,12 +257573,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -257719,39 +257591,105 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [159139] = 8, + [158644] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(6176), 1, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, + anon_sym_in, + ACTIONS(6195), 1, anon_sym_LT, + ACTIONS(6199), 1, + anon_sym_QMARK, + ACTIONS(6201), 1, + anon_sym_AMP_AMP, + ACTIONS(6207), 1, + anon_sym_AMP, + ACTIONS(6209), 1, + anon_sym_PIPE, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6217), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6343), 1, + anon_sym_SEMI, + ACTIONS(6345), 1, + sym__automatic_semicolon, STATE(4828), 1, sym_type_arguments, - STATE(2520), 2, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6203), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(6191), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6197), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6205), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6215), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [158740] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6224), 1, + anon_sym_EQ, + ACTIONS(5089), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 21, + ACTIONS(1948), 22, sym__automatic_semicolon, anon_sym_as, + anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -257769,14 +257707,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [159197] = 4, + anon_sym_BQUOTE, + [158794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4390), 1, - anon_sym_EQ, - ACTIONS(3796), 15, + ACTIONS(2077), 1, + sym__automatic_semicolon, + ACTIONS(2069), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2073), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -257790,10 +257731,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 24, + ACTIONS(2075), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -257813,42 +257755,42 @@ 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, - [159247] = 16, + [158846] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4698), 1, + ACTIONS(4688), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6265), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6267), 1, + ACTIONS(6277), 1, anon_sym_async, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + ACTIONS(6281), 1, + anon_sym_readonly, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(6269), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -257856,13 +257798,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -257873,38 +257814,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [159321] = 15, + [158922] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4689), 1, + ACTIONS(4688), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6285), 1, anon_sym_LBRACK, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6208), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(4375), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -257912,11 +257855,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -257930,35 +257872,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [159393] = 5, + [158996] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1994), 1, - sym__automatic_semicolon, - ACTIONS(1986), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(1990), 14, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(4965), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 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(1992), 23, + ACTIONS(4847), 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, anon_sym_AMP_AMP, @@ -257977,40 +257920,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [159445] = 16, + [159050] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4686), 1, + ACTIONS(4679), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, ACTIONS(6265), 1, - anon_sym_LBRACK, + anon_sym_STAR, ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6277), 1, anon_sym_async, - STATE(4914), 1, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -258018,7 +257961,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -258035,42 +257978,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [159519] = 17, + [159124] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4689), 1, + ACTIONS(4679), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, ACTIONS(6267), 1, - anon_sym_async, + anon_sym_EQ, ACTIONS(6275), 1, anon_sym_LBRACK, ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6281), 1, anon_sym_readonly, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -258078,7 +258021,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -258094,42 +258037,143 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [159595] = 10, + [159200] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_extends, - ACTIONS(5083), 1, - anon_sym_LBRACK, - ACTIONS(6378), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4679), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6383), 1, - anon_sym_RPAREN, - ACTIONS(6387), 1, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6273), 2, + anon_sym_get, + anon_sym_set, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [159272] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1966), 1, + sym__automatic_semicolon, + ACTIONS(1958), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1962), 14, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5086), 2, + anon_sym_GT_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6380), 2, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(1964), 23, + anon_sym_as, anon_sym_COMMA, - anon_sym_COLON, - ACTIONS(3796), 11, + 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, + [159324] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5288), 1, + anon_sym_DOT, + ACTIONS(5624), 1, + anon_sym_QMARK_DOT, + ACTIONS(5045), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5047), 6, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1998), 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(3800), 20, + ACTIONS(2000), 18, 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, @@ -258146,140 +258190,148 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [159657] = 16, + [159380] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4689), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6265), 1, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(6267), 1, + ACTIONS(6240), 1, + anon_sym_STAR, + ACTIONS(6244), 1, anon_sym_async, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, + ACTIONS(6248), 1, + anon_sym_static, + ACTIONS(6250), 1, + anon_sym_readonly, + ACTIONS(6254), 1, + anon_sym_declare, + ACTIONS(6256), 1, + anon_sym_abstract, + ACTIONS(6347), 1, + anon_sym_RBRACE, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6246), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6252), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3203), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4694), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [159731] = 26, + [159466] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6237), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6239), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6243), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(6245), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(6251), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6257), 1, - anon_sym_STAR_STAR, - ACTIONS(6261), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4956), 2, + ACTIONS(5104), 2, anon_sym_RBRACK, anon_sym_extends, - ACTIONS(6247), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6255), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6233), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6241), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6259), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [159825] = 4, + [159560] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - sym_regex_flags, - ACTIONS(4929), 18, + ACTIONS(2149), 1, + sym__automatic_semicolon, + ACTIONS(2141), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2145), 14, anon_sym_STAR, - anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -258293,13 +258345,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_implements, - anon_sym_extends, - ACTIONS(4931), 21, - anon_sym_LBRACE, + ACTIONS(2147), 23, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -258315,467 +258365,247 @@ 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, - [159875] = 27, + [159612] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(2127), 1, + sym__automatic_semicolon, + ACTIONS(2119), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2123), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6390), 1, - anon_sym_RBRACK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(2125), 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, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [159971] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [159664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, + ACTIONS(4372), 1, + anon_sym_EQ, + ACTIONS(3790), 14, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6174), 1, anon_sym_in, - ACTIONS(6176), 1, anon_sym_LT, - ACTIONS(6180), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6182), 1, - anon_sym_AMP_AMP, - ACTIONS(6188), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6190), 1, anon_sym_PIPE, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6198), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6392), 1, - anon_sym_SEMI, - ACTIONS(6394), 1, - sym__automatic_semicolon, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(5016), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6184), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6192), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6172), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6178), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(3794), 25, + 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, - ACTIONS(6196), 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, - [160067] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + anon_sym_extends, + [159714] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6398), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, anon_sym_as, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6404), 1, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(6406), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(6412), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(6414), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - ACTIONS(6422), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4960), 2, - anon_sym_EQ_GT, + ACTIONS(5015), 2, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(6408), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [160161] = 26, + [159808] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6313), 1, anon_sym_as, - ACTIONS(6237), 1, + ACTIONS(6315), 1, anon_sym_in, - ACTIONS(6239), 1, + ACTIONS(6317), 1, anon_sym_LT, - ACTIONS(6243), 1, + ACTIONS(6321), 1, anon_sym_QMARK, - ACTIONS(6245), 1, + ACTIONS(6323), 1, anon_sym_AMP_AMP, - ACTIONS(6251), 1, + ACTIONS(6329), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(6257), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6261), 1, + ACTIONS(6339), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4958), 2, - anon_sym_RBRACK, + ACTIONS(5023), 2, + anon_sym_EQ_GT, anon_sym_extends, - ACTIONS(6247), 2, + ACTIONS(6325), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6255), 2, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6233), 3, + ACTIONS(6311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6241), 3, + ACTIONS(6319), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6259), 5, + ACTIONS(6337), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [160255] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4692), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6265), 1, - anon_sym_LBRACK, - ACTIONS(6267), 1, - anon_sym_async, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [160329] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4692), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6267), 1, - anon_sym_async, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6277), 1, - anon_sym_readonly, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [160405] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4692), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6208), 2, - anon_sym_get, - anon_sym_set, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [160477] = 4, + [159902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1986), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1990), 14, + ACTIONS(6234), 1, + anon_sym_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(5975), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -258784,15 +258614,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(1992), 21, + ACTIONS(5977), 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, @@ -258812,173 +258644,160 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [160527] = 26, + anon_sym_extends, + [159954] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, - anon_sym_as, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6404), 1, - anon_sym_QMARK, - ACTIONS(6406), 1, - anon_sym_AMP_AMP, - ACTIONS(6412), 1, - anon_sym_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - ACTIONS(6422), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5154), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6408), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6416), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6396), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6402), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6410), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6420), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [160621] = 26, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4676), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(6279), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6283), 2, + anon_sym_get, + anon_sym_set, + STATE(3895), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [160028] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(6237), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6239), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(6243), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(6245), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6251), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6253), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6257), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(6261), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6349), 1, + anon_sym_RBRACK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4960), 2, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(6247), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6255), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6233), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6241), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6249), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6259), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [160715] = 7, + [160124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(4368), 1, anon_sym_EQ, - ACTIONS(4950), 1, - anon_sym_LBRACK, - ACTIONS(2908), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(3790), 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(1948), 22, - sym__automatic_semicolon, + ACTIONS(3794), 25, 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, @@ -258997,86 +258816,96 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [160771] = 7, + anon_sym_implements, + anon_sym_extends, + [160174] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5173), 1, - anon_sym_LBRACK, - ACTIONS(5032), 2, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(4676), 1, + anon_sym_RBRACE, + ACTIONS(6265), 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(4871), 22, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6275), 1, + anon_sym_LBRACK, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6281), 1, + anon_sym_readonly, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(6279), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6283), 2, + anon_sym_get, + anon_sym_set, + STATE(3895), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, sym__automatic_semicolon, - anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [160827] = 7, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [160250] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5173), 1, - anon_sym_LBRACK, - ACTIONS(5032), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(2018), 1, + sym__automatic_semicolon, + ACTIONS(2010), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(2014), 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(4871), 22, + ACTIONS(2016), 23, anon_sym_as, + anon_sym_COMMA, 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, @@ -259095,21 +258924,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [160883] = 8, + [160302] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(6239), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6351), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259123,12 +258961,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 21, + ACTIONS(4895), 16, anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -259142,20 +258977,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_extends, - [160941] = 4, + [160368] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4861), 1, - sym__automatic_semicolon, - ACTIONS(1942), 15, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4676), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, anon_sym_STAR, + ACTIONS(6267), 1, anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6273), 2, + anon_sym_get, + anon_sym_set, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [160440] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4793), 1, + anon_sym_LT, + ACTIONS(4825), 1, + anon_sym_DOT, + ACTIONS(6354), 1, + anon_sym_is, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(4823), 13, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -259166,13 +259060,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1940), 24, + ACTIONS(3862), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -259191,33 +259084,100 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [160991] = 4, + [160496] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6149), 1, - anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(6240), 1, + anon_sym_STAR, + ACTIONS(6244), 1, + anon_sym_async, + ACTIONS(6248), 1, + anon_sym_static, + ACTIONS(6250), 1, + anon_sym_readonly, + ACTIONS(6254), 1, + anon_sym_declare, + ACTIONS(6256), 1, + anon_sym_abstract, + ACTIONS(6356), 1, + anon_sym_RBRACE, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6246), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6252), 2, + anon_sym_get, + anon_sym_set, + STATE(3152), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [160582] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2902), 1, + anon_sym_extends, + ACTIONS(5089), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 12, 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(4839), 25, + ACTIONS(1948), 21, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -259236,17 +259196,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [161041] = 4, + anon_sym_LBRACE_PIPE, + [160638] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4426), 1, + ACTIONS(4132), 1, anon_sym_EQ, - ACTIONS(3796), 15, + ACTIONS(4595), 1, + anon_sym_in, + ACTIONS(4598), 1, + anon_sym_of, + ACTIONS(3790), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, - anon_sym_in, anon_sym_LT, anon_sym_GT, anon_sym_SLASH, @@ -259258,10 +259220,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 24, + ACTIONS(3794), 24, + 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, @@ -259281,404 +259245,288 @@ 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, - [161091] = 26, + [160692] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4895), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(5016), 2, + ACTIONS(4853), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6184), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161185] = 4, + [160786] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(1960), 14, - anon_sym_STAR, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 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(1962), 21, - anon_sym_as, + ACTIONS(4857), 1, anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_LBRACK, + ACTIONS(4867), 1, anon_sym_DOT, + ACTIONS(4869), 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, - [161235] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(6075), 1, anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(6193), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6195), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(6199), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(6201), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6207), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(6209), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(6213), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(6217), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4853), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(6203), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(6211), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5654), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(6191), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6197), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6205), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(6215), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161329] = 26, + [160880] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(5051), 1, + anon_sym_extends, + ACTIONS(4965), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 12, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(5880), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(4847), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [161423] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [160936] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, + anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6398), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, anon_sym_as, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6404), 1, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(6406), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(6412), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(6414), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - ACTIONS(6422), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4932), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4958), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6408), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161517] = 6, + [161030] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_extends, - ACTIONS(5083), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5086), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(5439), 1, + sym_regex_flags, + ACTIONS(5029), 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, anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3800), 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_BQUOTE, - [161571] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, - anon_sym_extends, - ACTIONS(5167), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5170), 3, - anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3796), 11, - 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(3800), 23, + anon_sym_instanceof, + ACTIONS(5031), 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, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -259693,20 +259541,20 @@ 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, - [161625] = 4, + [161080] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 5, + ACTIONS(6358), 1, sym__automatic_semicolon, + ACTIONS(1968), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(2118), 14, + ACTIONS(1972), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259721,7 +259569,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2120), 21, + ACTIONS(1974), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -259743,222 +259591,304 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [161675] = 27, + [161132] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6424), 1, - anon_sym_RBRACK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(4895), 4, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + anon_sym_extends, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [161771] = 27, + [161220] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6360), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6426), 1, - anon_sym_RBRACK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4893), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5512), 3, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 16, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [161286] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5089), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5092), 3, anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 12, + 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(5520), 3, + ACTIONS(1948), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [161867] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [161340] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(6240), 1, + anon_sym_STAR, + ACTIONS(6244), 1, + anon_sym_async, + ACTIONS(6248), 1, + anon_sym_static, + ACTIONS(6250), 1, + anon_sym_readonly, + ACTIONS(6254), 1, + anon_sym_declare, + ACTIONS(6256), 1, + anon_sym_abstract, + ACTIONS(6363), 1, + anon_sym_RBRACE, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6246), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6252), 2, + anon_sym_get, + anon_sym_set, + STATE(3198), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [161426] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, - anon_sym_as, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6404), 1, - anon_sym_QMARK, - ACTIONS(6406), 1, - anon_sym_AMP_AMP, - ACTIONS(6412), 1, - anon_sym_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE, - ACTIONS(6418), 1, + ACTIONS(6173), 1, anon_sym_STAR_STAR, - ACTIONS(6422), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6360), 1, + anon_sym_LT, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4895), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6408), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6416), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(4893), 10, + anon_sym_BANG, + anon_sym_in, + 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(4895), 12, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [161961] = 6, + anon_sym_extends, + [161498] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 1, - anon_sym_AMP, - ACTIONS(6362), 1, - anon_sym_PIPE, - ACTIONS(6364), 1, - anon_sym_extends, - ACTIONS(5765), 12, + ACTIONS(2053), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + ACTIONS(2057), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -259967,17 +259897,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(5767), 25, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(2059), 21, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -259997,16 +259925,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [162015] = 4, + [161548] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2193), 14, + ACTIONS(1994), 2, + anon_sym_else, + anon_sym_while, + ACTIONS(1998), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260021,9 +259946,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2195), 21, + ACTIONS(2000), 24, + 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, @@ -260043,309 +259971,251 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [162065] = 27, + [161598] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(6234), 1, + anon_sym_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, + anon_sym_extends, + ACTIONS(5995), 12, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6428), 1, - anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5997), 25, + 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(5530), 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, - [162161] = 27, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [161652] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6430), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4948), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(4950), 16, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [162257] = 27, + anon_sym_extends, + [161718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(6368), 1, + sym_regex_flags, + ACTIONS(5029), 18, + anon_sym_STAR, anon_sym_as, - ACTIONS(4897), 1, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, anon_sym_in, - ACTIONS(5510), 1, anon_sym_LT, - ACTIONS(5514), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(5524), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6432), 1, - anon_sym_RPAREN, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + anon_sym_instanceof, + anon_sym_extends, + ACTIONS(5031), 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, - ACTIONS(5530), 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, - [162353] = 27, + anon_sym_QMARK_QMARK, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [161768] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6434), 1, - anon_sym_RPAREN, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4930), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [162449] = 4, + [161862] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4414), 1, + ACTIONS(4845), 1, anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(4965), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 12, 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(3800), 25, - sym__automatic_semicolon, + ACTIONS(4847), 21, 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, @@ -260364,88 +260234,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [162499] = 27, + anon_sym_LBRACE_PIPE, + [161916] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6365), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6436), 1, - anon_sym_RBRACE, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4948), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(4950), 16, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(5530), 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, - [162595] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6079), 1, - anon_sym_LT, - STATE(3417), 1, - sym_type_arguments, - ACTIONS(4837), 14, + anon_sym_extends, + [161982] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6069), 1, + anon_sym_is, + ACTIONS(4829), 15, 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, @@ -260456,10 +260310,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 24, + ACTIONS(4831), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -260480,20 +260335,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [162647] = 5, + [162032] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - STATE(3433), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6370), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, sym_arguments, - ACTIONS(4845), 15, + ACTIONS(5097), 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, @@ -260504,12 +260369,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4847), 23, + ACTIONS(5099), 18, anon_sym_as, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -260525,86 +260387,143 @@ 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, - [162699] = 27, + [162096] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6438), 1, - anon_sym_RBRACK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [162795] = 4, + ACTIONS(4895), 6, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [162180] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6068), 1, - sym__automatic_semicolon, - ACTIONS(1942), 15, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(6240), 1, anon_sym_STAR, + ACTIONS(6244), 1, + anon_sym_async, + ACTIONS(6248), 1, + anon_sym_static, + ACTIONS(6250), 1, + anon_sym_readonly, + ACTIONS(6254), 1, + anon_sym_declare, + ACTIONS(6256), 1, + anon_sym_abstract, + ACTIONS(6373), 1, + anon_sym_RBRACE, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6246), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6252), 2, + anon_sym_get, + anon_sym_set, + STATE(3198), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [162266] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6375), 1, anon_sym_LBRACE, + STATE(3378), 1, + sym_statement_block, + ACTIONS(1930), 14, + anon_sym_STAR, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -260618,7 +260537,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1940), 24, + ACTIONS(1928), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -260643,128 +260562,60 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [162845] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, - anon_sym_as, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6404), 1, - anon_sym_QMARK, - ACTIONS(6406), 1, - anon_sym_AMP_AMP, - ACTIONS(6412), 1, - anon_sym_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - ACTIONS(6422), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4956), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6408), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6416), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6396), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6402), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6410), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6420), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [162939] = 22, + [162318] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(6240), 1, anon_sym_STAR, - ACTIONS(6214), 1, + ACTIONS(6244), 1, anon_sym_async, - ACTIONS(6218), 1, + ACTIONS(6248), 1, anon_sym_static, - ACTIONS(6220), 1, + ACTIONS(6250), 1, anon_sym_readonly, - ACTIONS(6224), 1, + ACTIONS(6254), 1, anon_sym_declare, - ACTIONS(6226), 1, + ACTIONS(6256), 1, anon_sym_abstract, - ACTIONS(6440), 1, + ACTIONS(6377), 1, anon_sym_RBRACE, - STATE(3725), 1, + STATE(3724), 1, sym_method_definition, - STATE(3782), 1, + STATE(3780), 1, sym_accessibility_modifier, - ACTIONS(6216), 2, + ACTIONS(6246), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, + ACTIONS(6252), 2, anon_sym_get, anon_sym_set, - STATE(3070), 2, + STATE(3198), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3850), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4928), 4, + STATE(5046), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -260775,26 +260626,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [163025] = 10, + [162404] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(4523), 1, anon_sym_EQ, - ACTIONS(5032), 1, + ACTIONS(3790), 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(3794), 25, + 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_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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(5173), 1, + [162454] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4965), 1, anon_sym_LBRACK, - ACTIONS(5999), 1, + ACTIONS(5051), 1, + anon_sym_extends, + ACTIONS(5991), 1, anon_sym_RPAREN, - ACTIONS(6293), 1, + ACTIONS(6258), 1, anon_sym_QMARK, - ACTIONS(5176), 2, + ACTIONS(4968), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5359), 2, + ACTIONS(5422), 2, anon_sym_COMMA, anon_sym_COLON, - ACTIONS(4867), 11, + ACTIONS(4843), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -260806,7 +260703,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 20, + ACTIONS(4847), 20, anon_sym_as, anon_sym_LPAREN, anon_sym_DOT, @@ -260827,23 +260724,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [163087] = 10, + [162516] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6165), 1, + anon_sym_LT, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6171), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6161), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6169), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 12, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_extends, + [162590] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(1946), 1, anon_sym_EQ, - ACTIONS(2908), 1, + ACTIONS(2902), 1, anon_sym_extends, - ACTIONS(4950), 1, + ACTIONS(5089), 1, anon_sym_LBRACK, - ACTIONS(5995), 1, + ACTIONS(5987), 1, anon_sym_RPAREN, - ACTIONS(6167), 1, + ACTIONS(6224), 1, anon_sym_QMARK, - ACTIONS(4953), 2, + ACTIONS(5092), 2, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5475), 2, + ACTIONS(5330), 2, anon_sym_COMMA, anon_sym_COLON, ACTIONS(1944), 11, @@ -260879,13 +260834,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [163149] = 4, + [162652] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4386), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6379), 1, + anon_sym_RBRACK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [162748] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3814), 1, anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(3790), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -260899,12 +260924,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 25, - sym__automatic_semicolon, + ACTIONS(3794), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -260925,60 +260948,61 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [163199] = 22, + anon_sym_LBRACE_PIPE, + [162798] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(6240), 1, anon_sym_STAR, - ACTIONS(6214), 1, + ACTIONS(6244), 1, anon_sym_async, - ACTIONS(6218), 1, + ACTIONS(6248), 1, anon_sym_static, - ACTIONS(6220), 1, + ACTIONS(6250), 1, anon_sym_readonly, - ACTIONS(6224), 1, + ACTIONS(6254), 1, anon_sym_declare, - ACTIONS(6226), 1, + ACTIONS(6256), 1, anon_sym_abstract, - ACTIONS(6442), 1, + ACTIONS(6381), 1, anon_sym_RBRACE, - STATE(3725), 1, + STATE(3724), 1, sym_method_definition, - STATE(3782), 1, + STATE(3780), 1, sym_accessibility_modifier, - ACTIONS(6216), 2, + ACTIONS(6246), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, + ACTIONS(6252), 2, anon_sym_get, anon_sym_set, - STATE(3157), 2, + STATE(3024), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3850), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4928), 4, + STATE(5046), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -260989,103 +261013,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [163285] = 26, + [162884] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(6400), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6404), 1, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(6406), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6412), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6414), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6418), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(6422), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6383), 1, + anon_sym_RBRACK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5095), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6408), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [163379] = 6, + [162980] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6079), 1, - anon_sym_LT, - ACTIONS(6081), 1, - anon_sym_DOT, - STATE(3418), 1, - sym_type_arguments, - ACTIONS(4833), 14, + ACTIONS(4908), 1, + anon_sym_extends, + ACTIONS(5223), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 23, + ACTIONS(3794), 23, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -261103,288 +261130,209 @@ 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, - [163433] = 22, + [163034] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(4712), 1, + ACTIONS(4831), 1, + anon_sym_extends, + ACTIONS(5152), 2, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(5155), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 11, anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_static, - ACTIONS(6220), 1, - anon_sym_readonly, - ACTIONS(6224), 1, - anon_sym_declare, - ACTIONS(6226), 1, - anon_sym_abstract, - ACTIONS(6444), 1, - anon_sym_RBRACE, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6216), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6222), 2, - anon_sym_get, - anon_sym_set, - STATE(3070), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [163519] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(3592), 1, + 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, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_static, - ACTIONS(6220), 1, - anon_sym_readonly, - ACTIONS(6224), 1, - anon_sym_declare, - ACTIONS(6226), 1, - anon_sym_abstract, - ACTIONS(6446), 1, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(3794), 23, + sym__automatic_semicolon, + anon_sym_as, anon_sym_RBRACE, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6216), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6222), 2, - anon_sym_get, - anon_sym_set, - STATE(3150), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [163605] = 18, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [163088] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6176), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6194), 1, + ACTIONS(6173), 1, anon_sym_STAR_STAR, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6192), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, + ACTIONS(4893), 5, anon_sym_BANG, anon_sym_in, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(6196), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 7, - sym__automatic_semicolon, + ACTIONS(4895), 7, anon_sym_as, - anon_sym_SEMI, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, - [163683] = 26, + anon_sym_extends, + [163166] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(6400), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6404), 1, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(6406), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6412), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6414), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6418), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(6422), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6385), 1, + anon_sym_RBRACK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5020), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6408), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [163777] = 12, + [163262] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6448), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6360), 1, anon_sym_LT, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261398,313 +261346,308 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 16, - sym__automatic_semicolon, + ACTIONS(4895), 15, anon_sym_as, - anon_sym_SEMI, + 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, - [163843] = 4, + anon_sym_extends, + [163330] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6083), 1, - anon_sym_is, - ACTIONS(4837), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, anon_sym_in, + ACTIONS(6317), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6321), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6323), 1, + anon_sym_AMP_AMP, + ACTIONS(6329), 1, anon_sym_AMP, + ACTIONS(6331), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4839), 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(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6339), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, + ACTIONS(5106), 2, + anon_sym_EQ_GT, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [163893] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5357), 1, - sym_regex_flags, - ACTIONS(4929), 16, + ACTIONS(6325), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, 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_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, + ACTIONS(6319), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4931), 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, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6337), 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, - [163943] = 12, + anon_sym_instanceof, + [163424] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6448), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, + anon_sym_in, + ACTIONS(6317), 1, anon_sym_LT, - STATE(4828), 1, + ACTIONS(6321), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, + anon_sym_AMP_AMP, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6331), 1, + anon_sym_PIPE, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6339), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + ACTIONS(5087), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6325), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(6311), 3, 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, + ACTIONS(6319), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 16, - sym__automatic_semicolon, - anon_sym_as, - anon_sym_SEMI, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6337), 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, - [164009] = 4, + [163518] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 1, - anon_sym_AMP, - ACTIONS(5748), 13, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4670), 1, + anon_sym_RBRACE, + ACTIONS(6265), 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5750), 26, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6273), 2, + anon_sym_get, + anon_sym_set, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, 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, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [164059] = 22, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [163590] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4670), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6214), 1, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6275), 1, + anon_sym_LBRACK, + ACTIONS(6277), 1, anon_sym_async, - ACTIONS(6218), 1, - anon_sym_static, - ACTIONS(6220), 1, + ACTIONS(6281), 1, anon_sym_readonly, - ACTIONS(6224), 1, - anon_sym_declare, - ACTIONS(6226), 1, - anon_sym_abstract, - ACTIONS(6451), 1, - anon_sym_RBRACE, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6216), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3068), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [164145] = 16, + [163666] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4680), 1, + ACTIONS(4670), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, ACTIONS(6265), 1, - anon_sym_LBRACK, + anon_sym_STAR, ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6277), 1, anon_sym_async, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -261712,7 +261655,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -261729,19 +261672,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [164219] = 7, + [163740] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5108), 1, + ACTIONS(6122), 1, anon_sym_LT, - ACTIONS(5420), 1, - anon_sym_DOT, - ACTIONS(6453), 1, - anon_sym_is, - STATE(2495), 1, + STATE(3465), 1, sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(4829), 14, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_GT, @@ -261754,12 +261694,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 23, - sym__automatic_semicolon, + ACTIONS(4831), 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, @@ -261778,30 +261718,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [164275] = 12, + anon_sym_LBRACE_PIPE, + [163792] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(5572), 1, + ACTIONS(5606), 1, anon_sym_LT, STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2520), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -261815,7 +261756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 16, + ACTIONS(4950), 16, anon_sym_as, anon_sym_COMMA, anon_sym_RBRACE, @@ -261832,493 +261773,364 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [164341] = 26, + [163858] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6313), 1, anon_sym_as, - ACTIONS(6400), 1, + ACTIONS(6315), 1, anon_sym_in, - ACTIONS(6404), 1, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6321), 1, anon_sym_QMARK, - ACTIONS(6406), 1, + ACTIONS(6323), 1, anon_sym_AMP_AMP, - ACTIONS(6412), 1, + ACTIONS(6329), 1, anon_sym_AMP, - ACTIONS(6414), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(6418), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6422), 1, + ACTIONS(6339), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5217), 2, + ACTIONS(5104), 2, anon_sym_EQ_GT, anon_sym_extends, - ACTIONS(6408), 2, + ACTIONS(6325), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(6311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(6319), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(6337), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [164435] = 26, + [163952] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6313), 1, anon_sym_as, - ACTIONS(6400), 1, + ACTIONS(6315), 1, anon_sym_in, - ACTIONS(6404), 1, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6321), 1, anon_sym_QMARK, - ACTIONS(6406), 1, + ACTIONS(6323), 1, anon_sym_AMP_AMP, - ACTIONS(6412), 1, + ACTIONS(6329), 1, anon_sym_AMP, - ACTIONS(6414), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(6418), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6422), 1, + ACTIONS(6339), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5148), 2, + ACTIONS(5015), 2, anon_sym_EQ_GT, anon_sym_extends, - ACTIONS(6408), 2, + ACTIONS(6325), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(6311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(6319), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(6337), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [164529] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4680), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6267), 1, - anon_sym_async, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6277), 1, - anon_sym_readonly, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [164605] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4680), 1, - anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6208), 2, - anon_sym_get, - anon_sym_set, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [164677] = 26, + [164046] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, - anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6163), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6165), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6181), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6194), 1, - anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6189), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4934), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5217), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6184), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6161), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6167), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6175), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [164771] = 13, + [164140] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6282), 1, - anon_sym_LT, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, - anon_sym_STAR, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6163), 1, 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(4943), 15, + ACTIONS(6165), 1, + anon_sym_LT, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, anon_sym_as, - anon_sym_EQ_GT, + ACTIONS(6179), 1, + anon_sym_QMARK, + ACTIONS(6181), 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_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_extends, - [164839] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6360), 1, + ACTIONS(6185), 1, anon_sym_AMP, - ACTIONS(6362), 1, + ACTIONS(6187), 1, anon_sym_PIPE, - ACTIONS(6364), 1, + ACTIONS(6189), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5095), 2, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5209), 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(6171), 2, anon_sym_PLUS, anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5211), 25, - 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, + ACTIONS(6183), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6161), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6175), 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, - [164893] = 9, + [164234] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_extends, - ACTIONS(4950), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(6170), 1, - anon_sym_COLON, - ACTIONS(4953), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5995), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(1944), 12, - anon_sym_STAR, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6163), 1, anon_sym_in, + ACTIONS(6165), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6173), 1, + anon_sym_STAR_STAR, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6179), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6181), 1, + anon_sym_AMP_AMP, + ACTIONS(6185), 1, + anon_sym_AMP, + ACTIONS(6187), 1, + anon_sym_PIPE, + ACTIONS(6189), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5023), 2, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(6171), 2, anon_sym_PLUS, anon_sym_DASH, + ACTIONS(6183), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6161), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6167), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1948), 20, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6169), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6175), 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, - [164953] = 5, + [164328] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2144), 1, - sym__automatic_semicolon, - ACTIONS(2136), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2140), 14, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(6165), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -262329,12 +262141,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2142), 23, + ACTIONS(5013), 21, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -262352,16 +262162,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [165005] = 5, + anon_sym_extends, + [164386] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2112), 1, - sym__automatic_semicolon, - ACTIONS(2104), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2108), 14, + ACTIONS(6375), 1, + anon_sym_LBRACE, + ACTIONS(6387), 1, + anon_sym_DOT, + STATE(3378), 1, + sym_statement_block, + ACTIONS(1930), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262376,13 +262187,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2110), 23, + ACTIONS(1928), 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, @@ -262400,24 +262209,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [165057] = 9, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [164440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(4519), 1, anon_sym_EQ, - ACTIONS(5032), 1, - anon_sym_extends, - ACTIONS(5173), 1, - anon_sym_LBRACK, - ACTIONS(6296), 1, - anon_sym_COLON, - ACTIONS(5176), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4867), 12, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262426,13 +262225,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(4871), 20, + ACTIONS(3794), 25, + 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_AMP_AMP, @@ -262451,63 +262256,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [165117] = 4, + anon_sym_extends, + [164490] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(6112), 1, - anon_sym_is, - ACTIONS(4837), 15, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(6240), 1, anon_sym_STAR, - anon_sym_EQ, + ACTIONS(6244), 1, + anon_sym_async, + ACTIONS(6248), 1, + anon_sym_static, + ACTIONS(6250), 1, + anon_sym_readonly, + ACTIONS(6254), 1, + anon_sym_declare, + ACTIONS(6256), 1, + anon_sym_abstract, + ACTIONS(6389), 1, + anon_sym_RBRACE, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6246), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6252), 2, + anon_sym_get, + anon_sym_set, + STATE(3198), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [164576] = 27, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6391), 1, + anon_sym_RBRACE, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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, - [165167] = 6, + [164672] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 1, + ACTIONS(6393), 1, anon_sym_AMP, - ACTIONS(6362), 1, + ACTIONS(6395), 1, anon_sym_PIPE, - ACTIONS(6364), 1, + ACTIONS(6397), 1, anon_sym_extends, - ACTIONS(5254), 12, + ACTIONS(5920), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -262519,11 +262413,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 25, + ACTIONS(5922), 24, 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, @@ -262545,16 +262438,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [165221] = 5, + [164726] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2197), 1, - sym__automatic_semicolon, - ACTIONS(2189), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2193), 14, + ACTIONS(6393), 1, + anon_sym_AMP, + ACTIONS(5916), 14, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -262562,13 +262453,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(2195), 23, + ACTIONS(5918), 25, + sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -262592,179 +262483,151 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [165273] = 26, + anon_sym_extends, + [164776] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, + ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5148), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6184), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2520), 2, + ACTIONS(6399), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [165367] = 5, + [164870] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2122), 1, - sym__automatic_semicolon, - ACTIONS(2114), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2118), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, anon_sym_in, + ACTIONS(6317), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6321), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6323), 1, + anon_sym_AMP_AMP, + ACTIONS(6329), 1, anon_sym_AMP, + ACTIONS(6331), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2120), 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6339), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4900), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [165419] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2187), 1, - sym__automatic_semicolon, - ACTIONS(2179), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2183), 14, + ACTIONS(6325), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 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, + ACTIONS(6319), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2185), 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, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6337), 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, - [165471] = 6, + [164964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 1, - anon_sym_AMP, - ACTIONS(6362), 1, - anon_sym_PIPE, - ACTIONS(6364), 1, - anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(5033), 1, + sym_regex_flags, + ACTIONS(5029), 18, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -262772,17 +262635,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(5864), 25, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_as, + anon_sym_instanceof, + anon_sym_implements, + anon_sym_extends, + ACTIONS(5031), 21, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -262798,86 +262663,87 @@ 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, - [165525] = 26, + [165014] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(6400), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6404), 1, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(6406), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6412), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6414), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6418), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(6422), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4941), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6408), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(6401), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [165619] = 5, + [165108] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6360), 1, + ACTIONS(6234), 1, anon_sym_AMP, - ACTIONS(6362), 1, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(5868), 12, + ACTIONS(6238), 1, + anon_sym_extends, + ACTIONS(5920), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -262890,7 +262756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 26, + ACTIONS(5922), 25, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_as, @@ -262916,168 +262782,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [165671] = 27, + [165162] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, + ACTIONS(5594), 1, anon_sym_COMMA, - ACTIONS(6455), 1, + ACTIONS(6403), 1, anon_sym_RPAREN, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5506), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(5512), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5520), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(5530), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [165767] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, - anon_sym_as, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6404), 1, - anon_sym_QMARK, - ACTIONS(6406), 1, - anon_sym_AMP_AMP, - ACTIONS(6412), 1, - anon_sym_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - ACTIONS(6422), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5018), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6408), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [165861] = 11, + [165258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(6457), 1, - anon_sym_LT, - STATE(4828), 1, - sym_type_arguments, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 13, + ACTIONS(6153), 1, + sym__automatic_semicolon, + ACTIONS(1942), 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, @@ -263088,10 +262872,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 18, - sym__automatic_semicolon, + ACTIONS(1940), 24, anon_sym_as, - anon_sym_SEMI, + 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, @@ -263107,16 +262894,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [165925] = 4, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [165308] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_EQ, - ACTIONS(4867), 14, + ACTIONS(6122), 1, + anon_sym_LT, + ACTIONS(6124), 1, + anon_sym_DOT, + STATE(3473), 1, + sym_type_arguments, + ACTIONS(4823), 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, @@ -263127,14 +262921,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 25, - sym__automatic_semicolon, + ACTIONS(3862), 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, @@ -263153,13 +262944,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [165975] = 4, + anon_sym_LBRACE_PIPE, + [165362] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_EQ, - ACTIONS(4966), 14, + ACTIONS(6393), 1, + anon_sym_AMP, + ACTIONS(6395), 1, + anon_sym_PIPE, + ACTIONS(6397), 1, + anon_sym_extends, + ACTIONS(5003), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -263167,13 +262964,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(4970), 25, + ACTIONS(5005), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -263198,13 +262993,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [166025] = 4, + [165416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6167), 1, - anon_sym_EQ, - ACTIONS(1944), 14, + ACTIONS(6234), 1, + anon_sym_AMP, + ACTIONS(5916), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -263213,16 +263007,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(1948), 25, + ACTIONS(5918), 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, @@ -263245,293 +263039,461 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [166075] = 27, + [165466] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(4698), 1, + anon_sym_LBRACK, + ACTIONS(6240), 1, + anon_sym_STAR, + ACTIONS(6244), 1, + anon_sym_async, + ACTIONS(6248), 1, + anon_sym_static, + ACTIONS(6250), 1, + anon_sym_readonly, + ACTIONS(6254), 1, + anon_sym_declare, + ACTIONS(6256), 1, + anon_sym_abstract, + ACTIONS(6405), 1, + anon_sym_RBRACE, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6246), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6252), 2, + anon_sym_get, + anon_sym_set, + STATE(3183), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [165552] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6410), 1, + anon_sym_STAR, + ACTIONS(6413), 1, + anon_sym_RBRACE, + ACTIONS(6415), 1, + anon_sym_LBRACK, + ACTIONS(6418), 1, + anon_sym_async, + ACTIONS(6421), 1, + anon_sym_DASH, + ACTIONS(6424), 1, + anon_sym_DQUOTE, + ACTIONS(6427), 1, + anon_sym_SQUOTE, + ACTIONS(6433), 1, + anon_sym_AT, + ACTIONS(6436), 1, + anon_sym_static, + ACTIONS(6439), 1, + anon_sym_readonly, + ACTIONS(6445), 1, + anon_sym_declare, + ACTIONS(6451), 1, + anon_sym_abstract, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6430), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6442), 2, + anon_sym_get, + anon_sym_set, + STATE(3198), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(6448), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(6407), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [165638] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(4897), 1, + ACTIONS(4975), 1, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(5500), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, + ACTIONS(5594), 1, anon_sym_COMMA, - ACTIONS(6460), 1, - anon_sym_RBRACK, - STATE(4906), 1, + ACTIONS(6454), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [166171] = 7, + [165734] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5298), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(5612), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4853), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4855), 6, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2060), 12, - anon_sym_STAR, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, anon_sym_in, + ACTIONS(6317), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6321), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6323), 1, + anon_sym_AMP_AMP, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6331), 1, + anon_sym_PIPE, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6339), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4932), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6325), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6319), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 18, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6337), 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, - [166227] = 4, + [165828] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6462), 1, - sym_regex_flags, - ACTIONS(4929), 18, - anon_sym_STAR, - anon_sym_as, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, anon_sym_in, + ACTIONS(6317), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6321), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6323), 1, + anon_sym_AMP_AMP, + ACTIONS(6329), 1, anon_sym_AMP, + ACTIONS(6331), 1, anon_sym_PIPE, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6339), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5037), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6325), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6319), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_extends, - ACTIONS(4931), 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(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6337), 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, - [166277] = 27, + anon_sym_instanceof, + [165922] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, anon_sym_in, - ACTIONS(5510), 1, + ACTIONS(6317), 1, anon_sym_LT, - ACTIONS(5514), 1, + ACTIONS(6321), 1, anon_sym_QMARK, - ACTIONS(5516), 1, + ACTIONS(6323), 1, anon_sym_AMP_AMP, - ACTIONS(5522), 1, + ACTIONS(6329), 1, anon_sym_AMP, - ACTIONS(5524), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(5528), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(5532), 1, + ACTIONS(6339), 1, anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6464), 1, - anon_sym_RBRACK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4924), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, + ACTIONS(6325), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(6311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6319), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(6337), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [166373] = 22, + [166016] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(3592), 1, + ACTIONS(3590), 1, anon_sym_DASH, - ACTIONS(4712), 1, + ACTIONS(4698), 1, anon_sym_LBRACK, - ACTIONS(6210), 1, + ACTIONS(6240), 1, anon_sym_STAR, - ACTIONS(6214), 1, + ACTIONS(6244), 1, anon_sym_async, - ACTIONS(6218), 1, + ACTIONS(6248), 1, anon_sym_static, - ACTIONS(6220), 1, + ACTIONS(6250), 1, anon_sym_readonly, - ACTIONS(6224), 1, + ACTIONS(6254), 1, anon_sym_declare, - ACTIONS(6226), 1, + ACTIONS(6256), 1, anon_sym_abstract, - ACTIONS(6466), 1, + ACTIONS(6456), 1, anon_sym_RBRACE, - STATE(3725), 1, + STATE(3724), 1, sym_method_definition, - STATE(3782), 1, + STATE(3780), 1, sym_accessibility_modifier, - ACTIONS(6216), 2, + ACTIONS(6246), 2, sym_number, sym_private_property_identifier, - ACTIONS(6222), 2, + ACTIONS(6252), 2, anon_sym_get, anon_sym_set, - STATE(3070), 2, + STATE(3198), 2, sym_decorator, aux_sym_class_body_repeat1, - ACTIONS(4724), 3, + ACTIONS(4710), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(3850), 3, + STATE(3856), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(4928), 4, + STATE(5046), 4, sym_public_field_definition, sym_method_signature, sym_abstract_method_signature, sym_index_signature, - ACTIONS(4704), 10, + ACTIONS(4694), 10, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -263542,193 +263504,399 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [166459] = 6, + [166102] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6315), 1, + anon_sym_in, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6323), 1, + anon_sym_AMP_AMP, + ACTIONS(6329), 1, anon_sym_AMP, - ACTIONS(6470), 1, + ACTIONS(6331), 1, anon_sym_PIPE, - ACTIONS(6472), 1, - anon_sym_extends, - ACTIONS(5073), 13, - anon_sym_STAR, - anon_sym_EQ, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4893), 2, anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6325), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6319), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5075), 24, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4895), 4, + anon_sym_as, + anon_sym_EQ_GT, + anon_sym_QMARK_QMARK, + anon_sym_extends, + ACTIONS(6337), 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, - [166513] = 7, + [166190] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4835), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(6474), 1, - anon_sym_is, - STATE(2226), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6351), 1, + anon_sym_LT, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6327), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 10, 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(3866), 23, + ACTIONS(4895), 12, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, 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_extends, - [166569] = 18, + [166262] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, + ACTIONS(6315), 1, + anon_sym_in, + ACTIONS(6317), 1, anon_sym_LT, - ACTIONS(6418), 1, + ACTIONS(6323), 1, + anon_sym_AMP_AMP, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6416), 2, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(6319), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6420), 5, + ACTIONS(6337), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 7, + ACTIONS(4895), 6, anon_sym_as, anon_sym_EQ_GT, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_CARET, anon_sym_QMARK_QMARK, anon_sym_extends, - [166647] = 6, + [166346] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4180), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4663), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(4607), 1, - anon_sym_in, - ACTIONS(4610), 1, - anon_sym_of, - ACTIONS(3796), 13, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6273), 2, + anon_sym_get, + anon_sym_set, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [166418] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4663), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6275), 1, + anon_sym_LBRACK, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6281), 1, + anon_sym_readonly, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(6279), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6283), 2, + anon_sym_get, + anon_sym_set, + STATE(3895), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [166494] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4663), 1, + anon_sym_RBRACE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(6279), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6283), 2, + anon_sym_get, + anon_sym_set, + STATE(3895), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [166568] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4831), 1, + anon_sym_extends, + ACTIONS(5152), 1, + anon_sym_LBRACK, + ACTIONS(6458), 1, + anon_sym_EQ, + ACTIONS(6463), 1, + anon_sym_RPAREN, + ACTIONS(6467), 1, + anon_sym_QMARK, + ACTIONS(5155), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6460), 2, + anon_sym_COMMA, + anon_sym_COLON, + ACTIONS(3790), 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(3800), 24, - sym__automatic_semicolon, + ACTIONS(3794), 20, 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, @@ -263747,178 +263915,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [166701] = 27, + [166630] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4893), 1, - anon_sym_as, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5508), 1, - anon_sym_in, - ACTIONS(5510), 1, - anon_sym_LT, - ACTIONS(5514), 1, - anon_sym_QMARK, - ACTIONS(5516), 1, - anon_sym_AMP_AMP, - ACTIONS(5522), 1, - anon_sym_AMP, - ACTIONS(5524), 1, - anon_sym_PIPE, - ACTIONS(5528), 1, - anon_sym_STAR_STAR, - ACTIONS(5532), 1, - anon_sym_QMARK_QMARK, - ACTIONS(5635), 1, - anon_sym_COMMA, - ACTIONS(6476), 1, - anon_sym_RPAREN, - STATE(4906), 1, + ACTIONS(6315), 1, + anon_sym_in, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(5518), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(5526), 2, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5506), 3, + ACTIONS(6311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(5512), 3, + ACTIONS(6319), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5520), 3, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(5530), 5, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6337), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [166797] = 5, + ACTIONS(4895), 7, + anon_sym_as, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [166710] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2040), 1, - sym__automatic_semicolon, - ACTIONS(2032), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2036), 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(2038), 23, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [166849] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4330), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(6333), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6327), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, 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(3800), 25, + ACTIONS(4895), 12, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [166899] = 6, + [166784] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, + ACTIONS(6393), 1, anon_sym_AMP, - ACTIONS(6470), 1, + ACTIONS(6395), 1, anon_sym_PIPE, - ACTIONS(6472), 1, + ACTIONS(6397), 1, anon_sym_extends, - ACTIONS(5209), 13, + ACTIONS(5181), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -263932,7 +264057,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 24, + ACTIONS(5183), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -263957,12 +264082,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [166953] = 4, + [166838] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, + ACTIONS(6393), 1, anon_sym_AMP, - ACTIONS(5748), 14, + ACTIONS(5965), 14, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -263977,7 +264102,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 25, + ACTIONS(5967), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -264003,123 +264128,223 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [167003] = 5, + [166888] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(2173), 1, - sym__automatic_semicolon, - ACTIONS(2165), 2, - anon_sym_else, - anon_sym_while, - ACTIONS(2169), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6470), 1, + anon_sym_COLON, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2171), 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, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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, - [167055] = 4, + [166984] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4521), 1, - anon_sym_EQ, - ACTIONS(3796), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6472), 1, + anon_sym_RBRACK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 25, - 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_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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, - [167105] = 11, + [167080] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6478), 1, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, + anon_sym_in, + ACTIONS(6195), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(6199), 1, + anon_sym_QMARK, + ACTIONS(6201), 1, + anon_sym_AMP_AMP, + ACTIONS(6207), 1, + anon_sym_AMP, + ACTIONS(6209), 1, + anon_sym_PIPE, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6217), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6474), 1, + anon_sym_SEMI, + ACTIONS(6476), 1, + sym__automatic_semicolon, + STATE(4828), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6203), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(6191), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6197), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6205), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6215), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [167176] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4470), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -264130,9 +264355,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 18, + ACTIONS(3794), 25, + sym__automatic_semicolon, anon_sym_as, - anon_sym_EQ_GT, + 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, @@ -264148,79 +264379,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, - [167169] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(3592), 1, - anon_sym_DASH, - ACTIONS(4712), 1, - anon_sym_LBRACK, - ACTIONS(6210), 1, - anon_sym_STAR, - ACTIONS(6214), 1, - anon_sym_async, - ACTIONS(6218), 1, - anon_sym_static, - ACTIONS(6220), 1, - anon_sym_readonly, - ACTIONS(6224), 1, - anon_sym_declare, - ACTIONS(6226), 1, - anon_sym_abstract, - ACTIONS(6481), 1, - anon_sym_RBRACE, - STATE(3725), 1, - sym_method_definition, - STATE(3782), 1, - sym_accessibility_modifier, - ACTIONS(6216), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6222), 2, - anon_sym_get, - anon_sym_set, - STATE(3200), 2, - sym_decorator, - aux_sym_class_body_repeat1, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(3850), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - STATE(4928), 4, - sym_public_field_definition, - sym_method_signature, - sym_abstract_method_signature, - sym_index_signature, - ACTIONS(4704), 10, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [167255] = 4, + [167226] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(4867), 15, + ACTIONS(6117), 1, + anon_sym_is, + ACTIONS(4829), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -264234,10 +264401,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 24, + ACTIONS(4831), 25, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -264258,39 +264427,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [167305] = 15, + [167276] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4683), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, + ACTIONS(6271), 2, sym_number, sym_private_property_identifier, - ACTIONS(6208), 2, + ACTIONS(6273), 2, anon_sym_get, anon_sym_set, - STATE(4375), 3, + STATE(4330), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -264298,7 +264466,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -264316,42 +264484,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [167377] = 17, + [167348] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4683), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, ACTIONS(6267), 1, - anon_sym_async, + anon_sym_EQ, ACTIONS(6275), 1, anon_sym_LBRACK, ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6281), 1, anon_sym_readonly, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -264359,7 +264527,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -264375,40 +264543,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [167453] = 16, + [167424] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4683), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, ACTIONS(6265), 1, - anon_sym_LBRACK, + anon_sym_STAR, ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6277), 1, anon_sym_async, - STATE(4914), 1, + ACTIONS(6285), 1, + anon_sym_LBRACK, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6269), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -264416,7 +264584,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -264433,138 +264601,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [167527] = 26, + [167498] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6398), 1, + ACTIONS(4973), 1, anon_sym_as, - ACTIONS(6400), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, - ACTIONS(6404), 1, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, anon_sym_QMARK, - ACTIONS(6406), 1, + ACTIONS(5506), 1, anon_sym_AMP_AMP, - ACTIONS(6412), 1, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6414), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6418), 1, + ACTIONS(5518), 1, anon_sym_STAR_STAR, - ACTIONS(6422), 1, + ACTIONS(5522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4939), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(6408), 2, + ACTIONS(5508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + ACTIONS(5810), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(5496), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(5502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(5520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [167621] = 12, + [167592] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6483), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + ACTIONS(5818), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5496), 3, 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, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 16, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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_extends, - [167687] = 6, + [167686] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, + ACTIONS(6393), 1, anon_sym_AMP, - ACTIONS(6470), 1, + ACTIONS(6395), 1, anon_sym_PIPE, - ACTIONS(6472), 1, + ACTIONS(6397), 1, anon_sym_extends, - ACTIONS(5254), 13, + ACTIONS(5256), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -264578,7 +264760,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 24, + ACTIONS(5258), 24, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -264603,35 +264785,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [167741] = 4, + [167740] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, - anon_sym_AMP, - ACTIONS(5759), 14, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6478), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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(5761), 25, + ACTIONS(5099), 18, 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_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -264647,70 +264838,83 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [167791] = 12, + [167804] = 27, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6483), 1, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, + anon_sym_AMP, + ACTIONS(5514), 1, + anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6481), 1, + anon_sym_RPAREN, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5496), 3, 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, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 16, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(5510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(5520), 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_extends, - [167857] = 5, + [167900] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, + ACTIONS(6393), 1, anon_sym_AMP, - ACTIONS(6470), 1, + ACTIONS(6395), 1, anon_sym_PIPE, - ACTIONS(5868), 13, + ACTIONS(5975), 13, anon_sym_STAR, anon_sym_EQ, anon_sym_BANG, @@ -264724,7 +264928,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 25, + ACTIONS(5977), 25, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -264750,18 +264954,86 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [167909] = 6, + [167952] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5498), 1, + anon_sym_in, + ACTIONS(5500), 1, + anon_sym_LT, + ACTIONS(5504), 1, + anon_sym_QMARK, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, - ACTIONS(6470), 1, + ACTIONS(5514), 1, anon_sym_PIPE, - ACTIONS(6472), 1, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6483), 1, + anon_sym_RPAREN, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [168048] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6234), 1, + anon_sym_AMP, + ACTIONS(6236), 1, + anon_sym_PIPE, + ACTIONS(6238), 1, anon_sym_extends, - ACTIONS(5765), 13, + ACTIONS(5256), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -264773,10 +265045,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5767), 24, + ACTIONS(5258), 25, 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, @@ -264798,58 +265071,149 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [167963] = 4, + [168102] = 27, ACTIONS(3), 1, sym_comment, - ACTIONS(4336), 1, - anon_sym_EQ, - ACTIONS(3796), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4973), 1, + anon_sym_as, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5498), 1, anon_sym_in, + ACTIONS(5500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(5504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(5506), 1, + anon_sym_AMP_AMP, + ACTIONS(5512), 1, anon_sym_AMP, + ACTIONS(5514), 1, anon_sym_PIPE, + ACTIONS(5518), 1, + anon_sym_STAR_STAR, + ACTIONS(5522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(5594), 1, + anon_sym_COMMA, + ACTIONS(6485), 1, + anon_sym_RPAREN, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(5516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5496), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(5502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 25, - anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(5510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(5520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [168198] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, + anon_sym_in, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6321), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, anon_sym_AMP_AMP, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6331), 1, + anon_sym_PIPE, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6339), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5095), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(6325), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6319), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6337), 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_implements, - anon_sym_extends, - [168013] = 4, + [168292] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(1944), 15, + ACTIONS(6487), 1, + sym__automatic_semicolon, + ACTIONS(2065), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -264865,7 +265229,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1948), 24, + ACTIONS(2063), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -264890,95 +265254,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [168063] = 26, + [168342] = 18, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6285), 1, + ACTIONS(6317), 1, anon_sym_LT, - ACTIONS(6398), 1, - anon_sym_as, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6404), 1, - anon_sym_QMARK, - ACTIONS(6406), 1, - anon_sym_AMP_AMP, - ACTIONS(6412), 1, - anon_sym_AMP, - ACTIONS(6414), 1, - anon_sym_PIPE, - ACTIONS(6418), 1, + ACTIONS(6335), 1, anon_sym_STAR_STAR, - ACTIONS(6422), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4851), 2, - anon_sym_EQ_GT, - anon_sym_extends, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6408), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6416), 2, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6396), 3, + ACTIONS(6311), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6402), 3, + ACTIONS(6319), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6420), 5, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6337), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [168157] = 11, + ACTIONS(4895), 7, + anon_sym_as, + anon_sym_EQ_GT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + anon_sym_extends, + [168420] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6486), 1, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6351), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5097), 13, + ACTIONS(4893), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -264992,81 +265353,244 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 18, + ACTIONS(4895), 15, anon_sym_as, - anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_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, - [168221] = 4, + [168488] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(4966), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, anon_sym_in, + ACTIONS(6317), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6321), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6323), 1, + anon_sym_AMP_AMP, + ACTIONS(6329), 1, anon_sym_AMP, + ACTIONS(6331), 1, anon_sym_PIPE, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6339), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4930), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6325), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6319), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 24, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(6327), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6337), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [168582] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6313), 1, + anon_sym_as, + ACTIONS(6315), 1, + anon_sym_in, + ACTIONS(6317), 1, + anon_sym_LT, + ACTIONS(6321), 1, + anon_sym_QMARK, + ACTIONS(6323), 1, anon_sym_AMP_AMP, + ACTIONS(6329), 1, + anon_sym_AMP, + ACTIONS(6331), 1, + anon_sym_PIPE, + ACTIONS(6335), 1, + anon_sym_STAR_STAR, + ACTIONS(6339), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4934), 2, + anon_sym_EQ_GT, + anon_sym_extends, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6325), 2, anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6333), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6311), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6319), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6327), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6337), 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, + [168676] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, + anon_sym_in, + ACTIONS(6195), 1, + anon_sym_LT, + ACTIONS(6199), 1, + anon_sym_QMARK, + ACTIONS(6201), 1, + anon_sym_AMP_AMP, + ACTIONS(6207), 1, + anon_sym_AMP, + ACTIONS(6209), 1, + anon_sym_PIPE, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6217), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [168271] = 4, + ACTIONS(5015), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6191), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6197), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6205), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6215), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [168770] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 5, - sym__automatic_semicolon, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4965), 1, + anon_sym_LBRACK, + ACTIONS(5051), 1, + anon_sym_extends, + ACTIONS(6261), 1, + anon_sym_COLON, + ACTIONS(4968), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5991), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2060), 14, + anon_sym_RBRACK, + ACTIONS(4843), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265075,16 +265599,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(2062), 21, + ACTIONS(4847), 20, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265103,17 +265624,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168321] = 5, + [168830] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, - sym__automatic_semicolon, - ACTIONS(2151), 4, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2902), 1, + anon_sym_extends, + ACTIONS(5089), 1, + anon_sym_LBRACK, + ACTIONS(6227), 1, + anon_sym_COLON, + ACTIONS(5092), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5987), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2155), 14, + anon_sym_RBRACK, + ACTIONS(1944), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265122,16 +265650,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(2157), 21, + ACTIONS(1948), 20, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265150,30 +265675,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168373] = 12, + [168890] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, + ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4861), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6075), 1, + anon_sym_as, + ACTIONS(6193), 1, + anon_sym_in, + ACTIONS(6195), 1, + anon_sym_LT, + ACTIONS(6199), 1, + anon_sym_QMARK, + ACTIONS(6201), 1, + anon_sym_AMP_AMP, + ACTIONS(6207), 1, + anon_sym_AMP, + ACTIONS(6209), 1, + anon_sym_PIPE, + ACTIONS(6213), 1, + anon_sym_STAR_STAR, + ACTIONS(6217), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(5104), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6203), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6211), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6191), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6197), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6205), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6215), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [168984] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, + anon_sym_LBRACK, + ACTIONS(4867), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4869), 1, anon_sym_QMARK_DOT, - ACTIONS(6491), 1, + ACTIONS(6489), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4828), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4891), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2508), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -265187,9 +265780,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 16, + ACTIONS(4950), 16, + sym__automatic_semicolon, anon_sym_as, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -265203,19 +265797,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_extends, - [168439] = 5, + [169050] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, - sym__automatic_semicolon, - ACTIONS(2136), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2140), 14, + ACTIONS(6393), 1, + anon_sym_AMP, + ACTIONS(6395), 1, + anon_sym_PIPE, + ACTIONS(6397), 1, + anon_sym_extends, + ACTIONS(5995), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -265223,15 +265816,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(2142), 21, + ACTIONS(5997), 24, + 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, @@ -265251,46 +265845,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168491] = 12, + [169104] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6491), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + ACTIONS(6234), 1, + anon_sym_AMP, + ACTIONS(5965), 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(5162), 16, + ACTIONS(5967), 26, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_as, - anon_sym_RBRACK, + 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, @@ -265304,38 +265887,37 @@ 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, - [168557] = 7, + [169154] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_COMMA, - ACTIONS(4950), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(5865), 1, + anon_sym_LPAREN, + STATE(3416), 1, + sym_arguments, + ACTIONS(4817), 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(1948), 22, - sym__automatic_semicolon, + ACTIONS(4819), 23, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265354,38 +265936,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168613] = 7, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [169206] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5032), 1, - anon_sym_COMMA, - ACTIONS(5173), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(6317), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 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(4871), 22, - sym__automatic_semicolon, + ACTIONS(5013), 21, anon_sym_as, - anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -265402,39 +265987,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [168669] = 6, + anon_sym_extends, + [169264] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6167), 1, - anon_sym_EQ, - ACTIONS(4950), 3, - anon_sym_COMMA, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(6489), 1, + anon_sym_LT, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4891), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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(1948), 22, + ACTIONS(4950), 16, sym__automatic_semicolon, anon_sym_as, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -265448,27 +266042,21 @@ 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, - [168723] = 6, + [169330] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_EQ, - ACTIONS(5173), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, + ACTIONS(6234), 1, anon_sym_AMP, + ACTIONS(6236), 1, anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(6238), 1, + anon_sym_extends, + ACTIONS(5181), 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, @@ -265476,11 +266064,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 22, + ACTIONS(5183), 25, 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, @@ -265499,35 +266090,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [168777] = 6, + [169384] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(4950), 3, - anon_sym_COMMA, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(3590), 1, + anon_sym_DASH, + ACTIONS(4698), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 12, + ACTIONS(6240), 1, + anon_sym_STAR, + ACTIONS(6244), 1, + anon_sym_async, + ACTIONS(6248), 1, + anon_sym_static, + ACTIONS(6250), 1, + anon_sym_readonly, + ACTIONS(6254), 1, + anon_sym_declare, + ACTIONS(6256), 1, + anon_sym_abstract, + ACTIONS(6492), 1, + anon_sym_RBRACE, + STATE(3724), 1, + sym_method_definition, + STATE(3780), 1, + sym_accessibility_modifier, + ACTIONS(6246), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6252), 2, + anon_sym_get, + anon_sym_set, + STATE(3154), 2, + sym_decorator, + aux_sym_class_body_repeat1, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(3856), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5046), 4, + sym_public_field_definition, + sym_method_signature, + sym_abstract_method_signature, + sym_index_signature, + ACTIONS(4694), 10, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [169470] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2051), 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(1948), 21, + ACTIONS(2049), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265546,149 +266196,81 @@ 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, - [168831] = 21, + [169517] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6406), 1, - anon_sym_AMP_AMP, - ACTIONS(6412), 1, - anon_sym_AMP, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6416), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6396), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6402), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6410), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6420), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 6, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - anon_sym_extends, - [168915] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, anon_sym_LPAREN, - ACTIONS(4986), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4992), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4994), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6032), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6174), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6176), 1, + ACTIONS(6498), 1, + anon_sym_COLON, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6180), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6182), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6188), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6190), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6194), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6198), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4828), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(5016), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6184), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6192), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6496), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - STATE(2520), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6172), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6178), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6186), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6196), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [169009] = 4, + [169610] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - ACTIONS(2183), 14, + ACTIONS(5189), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -265702,8 +266284,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2185), 21, + ACTIONS(5191), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -265724,154 +266307,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [169059] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6400), 1, - anon_sym_in, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6416), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6396), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6402), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6410), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6420), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 7, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, anon_sym_extends, - [169139] = 15, + anon_sym_LBRACE_PIPE, + [169657] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6282), 1, - anon_sym_LT, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6396), 3, + ACTIONS(5185), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6410), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, + 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(4943), 12, + ACTIONS(5187), 24, anon_sym_as, - anon_sym_EQ_GT, + 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, - [169211] = 7, + anon_sym_LBRACE_PIPE, + [169704] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, + ACTIONS(6229), 1, anon_sym_EQ, - ACTIONS(5032), 1, - anon_sym_extends, - ACTIONS(5173), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 12, + ACTIONS(5017), 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(4871), 21, + ACTIONS(5021), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265890,37 +266397,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [169267] = 7, + anon_sym_extends, + [169753] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_extends, - ACTIONS(4950), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 12, + ACTIONS(5181), 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(1948), 21, + ACTIONS(5183), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -265939,19 +266440,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, - [169323] = 6, + [169800] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6468), 1, - anon_sym_AMP, - ACTIONS(6470), 1, - anon_sym_PIPE, - ACTIONS(6472), 1, - anon_sym_extends, - ACTIONS(5862), 13, + ACTIONS(5122), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -265959,16 +266455,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(5864), 24, - sym__automatic_semicolon, + ACTIONS(5124), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -265988,196 +266484,102 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [169377] = 23, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [169847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6400), 1, + ACTIONS(5162), 15, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_BANG, anon_sym_in, - ACTIONS(6406), 1, - anon_sym_AMP_AMP, - ACTIONS(6412), 1, + anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, + anon_sym_QMARK, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6414), 1, anon_sym_PIPE, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6408), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6416), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6396), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6402), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6410), 3, + ACTIONS(5164), 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(4943), 4, - anon_sym_as, - anon_sym_EQ_GT, - anon_sym_QMARK_QMARK, - anon_sym_extends, - ACTIONS(6420), 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, - [169465] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6285), 1, - anon_sym_LT, - ACTIONS(6418), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6416), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6396), 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [169894] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5158), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6410), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 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(4943), 12, + ACTIONS(5160), 24, anon_sym_as, - anon_sym_EQ_GT, - 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_extends, - [169539] = 19, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(6500), 1, - anon_sym_in, - ACTIONS(6502), 1, - anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6506), 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(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6512), 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(4943), 6, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, anon_sym_QMARK_QMARK, - [169618] = 4, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [169941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6453), 1, - anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(2890), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -266191,11 +266593,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 24, - sym__automatic_semicolon, + ACTIONS(2888), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -266216,21 +266617,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [169667] = 7, + anon_sym_LBRACE_PIPE, + [169988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4835), 1, - anon_sym_DOT, - ACTIONS(6514), 1, - anon_sym_is, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(4833), 13, + ACTIONS(5033), 1, + sym_regex_flags, + ACTIONS(5029), 17, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -266241,11 +266639,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3866), 22, - anon_sym_as, + anon_sym_instanceof, + anon_sym_implements, + ACTIONS(5031), 21, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -266259,23 +266660,15 @@ 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, - [169722] = 6, + [170037] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_extends, - ACTIONS(5167), 2, - anon_sym_RPAREN, - anon_sym_LBRACK, - ACTIONS(5170), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(6224), 1, + anon_sym_EQ, + ACTIONS(1944), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -266284,15 +266677,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(3800), 22, + ACTIONS(1948), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -266311,10 +266707,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [169775] = 3, + anon_sym_extends, + [170086] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1960), 15, + ACTIONS(4920), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -266330,7 +266727,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1962), 24, + ACTIONS(4922), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -266355,334 +266752,106 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [169822] = 26, + [170133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(4926), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, anon_sym_in, - ACTIONS(6520), 1, - anon_sym_COLON, - ACTIONS(6522), 1, anon_sym_LT, - ACTIONS(6526), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6536), 1, anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [169915] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, + ACTIONS(4928), 24, + anon_sym_as, anon_sym_COMMA, - ACTIONS(4701), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [169982] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6526), 1, - anon_sym_QMARK, - ACTIONS(6528), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6546), 1, - anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6542), 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, - [170075] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [170180] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(4936), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, anon_sym_in, - ACTIONS(6522), 1, anon_sym_LT, - ACTIONS(6526), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6536), 1, anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6548), 1, - anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(4938), 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(6542), 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, - [170168] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4730), 1, - anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6550), 1, - anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6552), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6554), 2, - anon_sym_get, - anon_sym_set, - STATE(4398), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [170237] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [170227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(6293), 1, - anon_sym_QMARK, - ACTIONS(5359), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4867), 13, + ACTIONS(4940), 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, @@ -266690,8 +266859,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 21, + ACTIONS(4942), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -266712,34 +266882,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [170290] = 5, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [170274] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5086), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(4793), 1, + anon_sym_LT, + ACTIONS(4825), 1, + anon_sym_DOT, + ACTIONS(6524), 1, + anon_sym_is, + STATE(2229), 1, + sym_type_arguments, + ACTIONS(4823), 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(3800), 21, + ACTIONS(3862), 22, anon_sym_as, anon_sym_LPAREN, - anon_sym_DOT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -266757,21 +266931,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [170341] = 5, + anon_sym_extends, + [170329] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 3, - anon_sym_COMMA, + ACTIONS(5152), 1, anon_sym_LBRACK, + ACTIONS(4831), 2, + anon_sym_COMMA, anon_sym_extends, - ACTIONS(5170), 3, + ACTIONS(5155), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(3790), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -266782,9 +266956,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 21, + ACTIONS(3794), 22, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -266803,68 +266979,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [170392] = 16, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4730), 1, - anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6550), 1, - anon_sym_STAR, - ACTIONS(6556), 1, - anon_sym_async, - ACTIONS(6560), 1, - anon_sym_readonly, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6558), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6562), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [170465] = 3, + [170382] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4935), 15, + ACTIONS(4944), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -266880,7 +266998,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4937), 24, + ACTIONS(4946), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -266905,10 +267023,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [170512] = 3, + [170429] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3796), 15, + ACTIONS(5025), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -266924,7 +267042,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 24, + ACTIONS(5027), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -266949,21 +267067,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [170559] = 6, + [170476] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_extends, - ACTIONS(5167), 2, - anon_sym_COMMA, + ACTIONS(5152), 1, anon_sym_LBRACK, - ACTIONS(5170), 3, + ACTIONS(4831), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5155), 3, anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(3790), 11, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -266974,9 +267091,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 21, + ACTIONS(3794), 22, anon_sym_as, anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -266995,22 +267114,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [170612] = 6, + [170529] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5793), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(6154), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(2060), 15, + ACTIONS(6526), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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, @@ -267021,10 +267151,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 21, + ACTIONS(4950), 15, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -267038,131 +267167,164 @@ 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, - [170665] = 3, + [170594] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5026), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5104), 1, + anon_sym_RBRACK, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, anon_sym_in, + ACTIONS(6533), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6537), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, anon_sym_AMP, + ACTIONS(6547), 1, anon_sym_PIPE, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5028), 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(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [170712] = 6, + [170687] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_EQ, - ACTIONS(5173), 3, - anon_sym_COMMA, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5176), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, - anon_sym_STAR, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4932), 1, + anon_sym_RBRACK, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, anon_sym_in, + ACTIONS(6533), 1, anon_sym_LT, - anon_sym_SLASH, + ACTIONS(6537), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, + anon_sym_AMP, + ACTIONS(6547), 1, + anon_sym_PIPE, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4871), 21, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [170765] = 6, + [170780] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6167), 1, - anon_sym_EQ, - ACTIONS(4950), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(4953), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(5249), 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(1948), 21, + ACTIONS(5251), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -267181,24 +267343,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [170818] = 6, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [170827] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_extends, - ACTIONS(5083), 2, - anon_sym_COMMA, - anon_sym_LBRACK, - ACTIONS(5086), 3, - anon_sym_GT, + ACTIONS(6557), 1, anon_sym_AMP, + ACTIONS(6559), 1, anon_sym_PIPE, - ACTIONS(3796), 12, + ACTIONS(6561), 1, + anon_sym_extends, + ACTIONS(5920), 12, 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, @@ -267206,9 +267367,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 21, + ACTIONS(5922), 24, 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, @@ -267227,92 +267391,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [170871] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4730), 1, - anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6265), 1, - anon_sym_LBRACK, - ACTIONS(6550), 1, - anon_sym_STAR, - ACTIONS(6556), 1, - anon_sym_async, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6558), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6562), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [170942] = 6, + anon_sym_implements, + [170880] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 1, - anon_sym_LBRACK, - ACTIONS(4839), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5086), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(2179), 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(3800), 22, - sym__automatic_semicolon, + ACTIONS(2177), 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, @@ -267331,64 +267434,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [170995] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4695), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [171062] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [170927] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2060), 15, + ACTIONS(4959), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -267404,7 +267455,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 24, + ACTIONS(4961), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -267429,35 +267480,95 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [171109] = 6, + [170974] = 23, ACTIONS(3), 1, sym_comment, - ACTIONS(5083), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4839), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5086), 3, - anon_sym_GT, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6531), 1, + anon_sym_in, + ACTIONS(6533), 1, + anon_sym_LT, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, anon_sym_AMP, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4895), 3, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_QMARK_QMARK, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6543), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6553), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [171061] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6557), 1, + anon_sym_AMP, + ACTIONS(5916), 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_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 22, + ACTIONS(5918), 25, anon_sym_as, + anon_sym_LBRACE, + 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, @@ -267476,12 +267587,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [171162] = 4, + anon_sym_implements, + anon_sym_extends, + [171110] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(4853), 15, + ACTIONS(5245), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -267497,11 +267608,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4855), 23, + ACTIONS(5247), 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, @@ -267521,17 +267633,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [171211] = 6, + [171157] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, - anon_sym_AMP, - ACTIONS(6566), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_extends, - ACTIONS(5765), 12, + ACTIONS(4963), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -267539,13 +267646,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(5767), 24, + ACTIONS(4930), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -267567,38 +267675,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [171264] = 7, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [171204] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5799), 1, - anon_sym_DOT, - ACTIONS(6154), 1, - anon_sym_QMARK_DOT, - ACTIONS(4853), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4855), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2060), 12, + ACTIONS(2886), 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(2062), 19, + ACTIONS(2884), 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, @@ -267615,61 +267719,102 @@ 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, - [171319] = 4, + [171251] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, - anon_sym_AMP, - ACTIONS(5759), 13, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6563), 1, + anon_sym_COLON, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5761), 25, - 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, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6520), 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_implements, - anon_sym_extends, - [171368] = 3, + [171344] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4750), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6565), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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, @@ -267680,13 +267825,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4754), 24, + ACTIONS(4895), 15, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -267700,27 +267841,18 @@ 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, - [171415] = 6, + [171409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6570), 1, - anon_sym_LPAREN, - ACTIONS(6573), 1, - anon_sym_COLON, - ACTIONS(6575), 2, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(5227), 12, + ACTIONS(5241), 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, @@ -267728,11 +267860,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 23, - sym__automatic_semicolon, + ACTIONS(5243), 24, anon_sym_as, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -267752,10 +267883,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [171468] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [171456] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5124), 15, + ACTIONS(5003), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -267771,7 +267904,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5126), 24, + ACTIONS(5005), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -267796,37 +267929,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [171515] = 8, + [171503] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(2908), 1, - anon_sym_extends, - ACTIONS(4950), 1, - anon_sym_LBRACK, - ACTIONS(5995), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4953), 3, - anon_sym_QMARK, + ACTIONS(6568), 1, anon_sym_AMP, + ACTIONS(6570), 1, anon_sym_PIPE, - ACTIONS(1944), 11, + ACTIONS(6572), 1, + anon_sym_extends, + ACTIONS(5003), 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(1948), 20, + ACTIONS(5005), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -267845,37 +267975,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [171572] = 8, + anon_sym_LBRACE_PIPE, + [171556] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5032), 1, - anon_sym_extends, - ACTIONS(5173), 1, - anon_sym_LBRACK, - ACTIONS(5999), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5176), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4867), 11, + ACTIONS(4839), 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(4871), 20, + ACTIONS(4841), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -267894,166 +268018,162 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [171629] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [171603] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, - anon_sym_in, - ACTIONS(6502), 1, - anon_sym_LT, - ACTIONS(6510), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - ACTIONS(6578), 1, - anon_sym_RBRACK, - ACTIONS(6580), 1, - anon_sym_QMARK, - ACTIONS(6582), 1, - anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, - anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6565), 1, + anon_sym_LT, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6512), 5, + ACTIONS(4893), 10, + anon_sym_BANG, + anon_sym_in, + 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(4895), 11, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, anon_sym_instanceof, - [171722] = 26, + [171674] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4853), 1, + anon_sym_RBRACK, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6177), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6537), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6545), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6555), 1, anon_sym_QMARK_QMARK, - ACTIONS(6592), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6541), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6535), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6553), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [171815] = 3, + [171767] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(5077), 15, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(6148), 1, + anon_sym_QMARK_DOT, + ACTIONS(5045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5047), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1998), 12, 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(5079), 24, + ACTIONS(2000), 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, @@ -268070,25 +268190,22 @@ 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, - [171862] = 6, + [171822] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_COMMA, - ACTIONS(5167), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5170), 3, - anon_sym_GT, + ACTIONS(6557), 1, anon_sym_AMP, + ACTIONS(6559), 1, anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(6561), 1, + anon_sym_extends, + ACTIONS(5003), 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, @@ -268096,11 +268213,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 22, - sym__automatic_semicolon, + ACTIONS(5005), 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, anon_sym_AMP_AMP, @@ -268119,21 +268237,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [171915] = 7, + anon_sym_implements, + [171875] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4791), 1, - anon_sym_QMARK_DOT, - ACTIONS(4853), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4855), 3, + ACTIONS(4908), 1, + anon_sym_extends, + ACTIONS(5223), 2, anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(2060), 12, + ACTIONS(5226), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268146,11 +268262,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 20, + ACTIONS(3794), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_COLON, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -268167,300 +268285,256 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [171970] = 26, + [171928] = 21, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6526), 1, - anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6545), 1, anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6594), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_PIPE, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6535), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(4895), 5, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + ACTIONS(6553), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [172063] = 26, + [172011] = 19, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6510), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - ACTIONS(6580), 1, - anon_sym_QMARK, - ACTIONS(6582), 1, - anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, - anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6596), 1, - anon_sym_RBRACK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6508), 2, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6584), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6535), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6512), 5, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6553), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [172156] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4589), 1, - anon_sym_EQ, - ACTIONS(3796), 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(3800), 24, + ACTIONS(4895), 6, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [172205] = 26, + [172090] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - ACTIONS(6598), 1, + ACTIONS(6574), 1, anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [172298] = 3, + [172183] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(5258), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6533), 1, + anon_sym_LT, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6549), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6543), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 8, 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(5260), 24, + ACTIONS(4895), 11, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, 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, - [172345] = 3, + [172256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5136), 15, + ACTIONS(5166), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -268476,7 +268550,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5138), 24, + ACTIONS(5168), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -268501,16 +268575,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [172392] = 6, + [172303] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6566), 1, - anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(5916), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268519,15 +268589,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5075), 24, + ACTIONS(5918), 25, anon_sym_as, anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -268547,17 +268619,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [172445] = 6, + anon_sym_extends, + [172352] = 18, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6533), 1, + anon_sym_LT, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6549), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6543), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6553), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 6, + anon_sym_as, + anon_sym_RBRACK, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [172429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, + ACTIONS(6576), 1, anon_sym_AMP, - ACTIONS(6602), 1, + ACTIONS(6578), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + ACTIONS(6580), 1, anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(5920), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268570,7 +268701,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 24, + ACTIONS(5922), 24, anon_sym_as, anon_sym_LBRACE, anon_sym_LPAREN, @@ -268595,23 +268726,21 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [172498] = 6, + [172482] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_COMMA, - ACTIONS(5083), 2, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(5086), 3, - anon_sym_GT, + ACTIONS(6576), 1, anon_sym_AMP, + ACTIONS(6578), 1, anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(6580), 1, + anon_sym_extends, + ACTIONS(5003), 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, @@ -268619,11 +268748,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 22, - sym__automatic_semicolon, + ACTIONS(5005), 24, anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -268642,159 +268773,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [172551] = 13, + [172535] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4673), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, - aux_sym_object_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [172618] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4787), 1, - anon_sym_LT, - ACTIONS(4835), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(6606), 1, - anon_sym_is, - STATE(2226), 1, - sym_type_arguments, - ACTIONS(4833), 13, - anon_sym_STAR, + ACTIONS(4853), 1, + anon_sym_COLON, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6500), 1, + anon_sym_LT, + ACTIONS(6504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, anon_sym_AMP, + ACTIONS(6514), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3866), 22, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - 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, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - anon_sym_instanceof, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [172673] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6608), 1, - anon_sym_AMP, - ACTIONS(6610), 1, - anon_sym_PIPE, - ACTIONS(6612), 1, - anon_sym_extends, - ACTIONS(5862), 13, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, 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, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 23, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6520), 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, - [172726] = 3, + [172628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4863), 15, + ACTIONS(3764), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -268810,7 +268859,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4865), 24, + ACTIONS(3766), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -268835,30 +268884,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [172773] = 3, + [172675] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4849), 15, + ACTIONS(5223), 1, + anon_sym_LBRACK, + ACTIONS(4908), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 11, 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(4851), 24, + ACTIONS(3794), 22, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -268877,65 +268931,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, - [172820] = 5, + [172728] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_AMP, - ACTIONS(6610), 1, - anon_sym_PIPE, - ACTIONS(5868), 13, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6565), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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(5870), 24, + ACTIONS(4895), 14, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [172871] = 6, + [172795] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6614), 1, + ACTIONS(6582), 1, anon_sym_LPAREN, - ACTIONS(6617), 1, + ACTIONS(6585), 1, anon_sym_COLON, - ACTIONS(6619), 2, + ACTIONS(6587), 2, anon_sym_LT, anon_sym_QMARK, - ACTIONS(3796), 12, + ACTIONS(3790), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -268948,7 +269008,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 23, + ACTIONS(3794), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_COMMA, @@ -268972,22 +269032,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [172924] = 6, + [172848] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4682), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [172915] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(5065), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6610), 1, anon_sym_PIPE, - ACTIONS(6612), 1, + ACTIONS(5067), 3, + anon_sym_COMMA, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5254), 13, + ACTIONS(3790), 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, @@ -268995,12 +269110,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 23, + ACTIONS(3794), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -269019,35 +269131,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [172977] = 6, + anon_sym_LBRACE_PIPE, + [172966] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 1, - anon_sym_LBRACK, - ACTIONS(4879), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5170), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(3604), 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(3800), 22, + ACTIONS(3606), 24, 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, @@ -269066,161 +269174,135 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [173030] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [173013] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(5174), 1, anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(5170), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, anon_sym_in, - ACTIONS(6522), 1, anon_sym_LT, - ACTIONS(6526), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6536), 1, anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6622), 1, - anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(5172), 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, - ACTIONS(6542), 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, - [173123] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [173062] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - ACTIONS(6624), 1, + ACTIONS(6590), 1, anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [173216] = 7, + [173155] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4791), 1, - anon_sym_QMARK_DOT, - ACTIONS(4853), 3, - anon_sym_GT, + ACTIONS(6576), 1, anon_sym_AMP, + ACTIONS(6578), 1, anon_sym_PIPE, - ACTIONS(4855), 3, - anon_sym_COMMA, - anon_sym_LBRACK, + ACTIONS(6580), 1, anon_sym_extends, - ACTIONS(2060), 12, + ACTIONS(5995), 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, @@ -269228,10 +269310,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2062), 19, + ACTIONS(5997), 24, anon_sym_as, + anon_sym_LBRACE, 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, @@ -269248,116 +269335,133 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [173271] = 4, + [173208] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_AMP, - ACTIONS(5748), 14, - anon_sym_STAR, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4663), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, anon_sym_EQ, - anon_sym_BANG, - anon_sym_in, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5750), 24, - anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [173320] = 12, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [173275] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4932), 1, + anon_sym_COLON, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6626), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(6494), 3, 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, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 15, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6520), 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, - [173385] = 6, + [173368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_AMP, - ACTIONS(6610), 1, - anon_sym_PIPE, - ACTIONS(6612), 1, - anon_sym_extends, - ACTIONS(5209), 13, + ACTIONS(2117), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -269365,15 +269469,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(5211), 23, + ACTIONS(2115), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -269393,357 +269498,247 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [173438] = 12, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [173415] = 23, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6626), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 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(5162), 15, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - [173503] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, - anon_sym_QMARK, - ACTIONS(6582), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6588), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4893), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(4895), 3, + anon_sym_as, + anon_sym_COLON, + anon_sym_QMARK_QMARK, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6512), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [173596] = 26, + [173502] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5148), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, - anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6592), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, - anon_sym_QMARK, - ACTIONS(6582), 1, - anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, - anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(4893), 13, anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, + anon_sym_GT, anon_sym_SLASH, + anon_sym_QMARK, anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(4895), 15, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6512), 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, - [173689] = 26, + [173567] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4895), 1, - anon_sym_COLON, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6526), 1, - anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6592), 1, + anon_sym_LT, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [173782] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(6231), 1, - anon_sym_COLON, - ACTIONS(5458), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(4966), 14, - anon_sym_STAR, + ACTIONS(4893), 10, 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(4970), 21, + ACTIONS(4895), 11, anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [173835] = 5, + [173638] = 21, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, + anon_sym_LT, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6602), 1, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 3, + anon_sym_BANG, + anon_sym_QMARK, anon_sym_PIPE, - ACTIONS(5868), 12, + ACTIONS(6494), 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, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 25, + ACTIONS(6510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4895), 5, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, + anon_sym_QMARK_QMARK, + ACTIONS(6520), 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, - [173886] = 3, + [173721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5140), 15, + ACTIONS(5134), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -269759,7 +269754,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5142), 24, + ACTIONS(5136), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -269784,185 +269779,75 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [173933] = 13, + [173768] = 19, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4698), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [174000] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4683), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [174067] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6600), 1, - anon_sym_AMP, - ACTIONS(6602), 1, - anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_extends, - ACTIONS(5254), 12, - anon_sym_STAR, - anon_sym_BANG, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6496), 1, anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 24, - anon_sym_as, - anon_sym_LBRACE, - 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, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(4893), 4, + anon_sym_BANG, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6520), 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, - [174120] = 11, + ACTIONS(4895), 6, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [173847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6629), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 13, + ACTIONS(5138), 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, @@ -269973,96 +269858,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 17, + ACTIONS(5140), 24, anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - [174183] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, anon_sym_COMMA, - ACTIONS(4689), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [174250] = 6, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [173894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6378), 1, - anon_sym_EQ, - ACTIONS(6387), 1, - anon_sym_QMARK, - ACTIONS(6380), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(3796), 13, + ACTIONS(5108), 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, @@ -270070,8 +269902,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 21, + ACTIONS(5110), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -270092,10 +269925,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [174303] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [173941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5150), 15, + ACTIONS(5146), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -270111,7 +269946,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5152), 24, + ACTIONS(4924), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -270136,89 +269971,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [174350] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4686), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [174417] = 6, + [173988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5167), 1, - anon_sym_LBRACK, - ACTIONS(4879), 2, - anon_sym_COMMA, - anon_sym_extends, - ACTIONS(5170), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(1980), 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(3800), 22, - sym__automatic_semicolon, + ACTIONS(1978), 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, @@ -270237,121 +270013,69 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [174470] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [174035] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, - anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6632), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [174563] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5280), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(4893), 8, 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(5154), 24, + ACTIONS(4895), 11, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [174610] = 3, + [174108] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5223), 15, + ACTIONS(5041), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -270367,7 +270091,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5225), 24, + ACTIONS(5043), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -270392,10 +270116,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [174657] = 3, + [174155] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1984), 15, + ACTIONS(5073), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -270411,7 +270135,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1982), 24, + ACTIONS(5037), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -270436,67 +270160,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [174704] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4692), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [174771] = 4, + [174202] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, - anon_sym_AMP, - ACTIONS(5748), 13, + ACTIONS(4730), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -270504,17 +270173,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(5750), 25, + ACTIONS(4734), 24, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -270535,17 +270203,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [174820] = 6, + anon_sym_LBRACE_PIPE, + [174249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, - anon_sym_AMP, - ACTIONS(6602), 1, - anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_extends, - ACTIONS(5209), 12, + ACTIONS(5256), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -270553,16 +270217,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(5211), 24, + ACTIONS(5258), 24, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -270582,10 +270246,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [174873] = 3, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [174296] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5235), 15, + ACTIONS(5237), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -270601,7 +270267,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5237), 24, + ACTIONS(5239), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -270626,12 +270292,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [174920] = 3, + [174343] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5264), 15, + ACTIONS(5019), 1, + anon_sym_EQ, + ACTIONS(6232), 1, + anon_sym_COLON, + ACTIONS(5444), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5017), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -270645,9 +270317,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5266), 24, + ACTIONS(5021), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -270668,137 +270339,144 @@ 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, - [174967] = 11, + [174396] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4934), 1, + anon_sym_RBRACK, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6634), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5097), 13, - anon_sym_STAR, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, anon_sym_in, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6533), 1, + anon_sym_LT, + ACTIONS(6537), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, anon_sym_AMP, + ACTIONS(6547), 1, anon_sym_PIPE, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5099), 17, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [175030] = 26, + [174489] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5148), 1, - anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5095), 1, + anon_sym_RBRACK, + ACTIONS(6177), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6537), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6545), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6555), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6541), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6535), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6553), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [175123] = 6, + [174582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6639), 1, - anon_sym_PIPE, - ACTIONS(6641), 1, - anon_sym_extends, - ACTIONS(5209), 13, + ACTIONS(5268), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -270808,11 +270486,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(5211), 23, + ACTIONS(5270), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -270835,98 +270515,90 @@ 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, - [175176] = 26, + [174629] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5217), 1, - anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5023), 1, + anon_sym_RBRACK, + ACTIONS(6177), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6537), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6545), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6555), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6541), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6535), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6553), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [175269] = 12, + [174722] = 8, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6643), 1, + anon_sym_LPAREN, + ACTIONS(6533), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5011), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -270940,9 +270612,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5162), 15, + ACTIONS(5013), 20, anon_sym_as, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -270956,46 +270631,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [175334] = 12, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + [174779] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(4965), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6643), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(5160), 13, + ACTIONS(5051), 1, + anon_sym_extends, + ACTIONS(5991), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(4968), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 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(5162), 15, + ACTIONS(4847), 20, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -271009,12 +270679,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [175399] = 4, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [174836] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(5748), 14, + ACTIONS(5264), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -271024,12 +270695,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(5750), 24, + ACTIONS(5266), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -271054,18 +270726,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [175448] = 5, + [174883] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 2, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 3, - anon_sym_RPAREN, + ACTIONS(6595), 1, anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3796), 12, + ACTIONS(5079), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -271073,15 +270741,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(3800), 22, + ACTIONS(5081), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271100,16 +270769,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [175499] = 6, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [174932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6639), 1, - anon_sym_PIPE, - ACTIONS(6641), 1, - anon_sym_extends, - ACTIONS(5254), 13, + ACTIONS(5075), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -271119,11 +270784,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(5256), 23, + ACTIONS(5077), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -271146,17 +270813,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, - [175552] = 6, + [174979] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, + ACTIONS(6568), 1, anon_sym_AMP, - ACTIONS(6639), 1, + ACTIONS(6570), 1, anon_sym_PIPE, - ACTIONS(6641), 1, + ACTIONS(6572), 1, anon_sym_extends, - ACTIONS(5862), 13, + ACTIONS(5920), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -271170,7 +270838,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 23, + ACTIONS(5922), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -271194,14 +270862,123 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [175605] = 5, + [175032] = 18, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6500), 1, + anon_sym_LT, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(4893), 5, + anon_sym_BANG, + anon_sym_in, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(6520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + ACTIONS(4895), 6, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + anon_sym_QMARK_QMARK, + [175109] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6592), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4893), 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, - ACTIONS(6639), 1, anon_sym_PIPE, - ACTIONS(5868), 13, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(4895), 14, + anon_sym_as, + anon_sym_COLON, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + [175176] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5065), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -271211,11 +270988,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(5870), 24, + ACTIONS(5067), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -271240,10 +271019,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [175656] = 3, + [175223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5179), 15, + ACTIONS(6568), 1, + anon_sym_AMP, + ACTIONS(5916), 14, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -271253,13 +271034,12 @@ 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(5181), 24, + ACTIONS(5918), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -271284,10 +271064,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [175703] = 3, + [175272] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6597), 1, + anon_sym_COLON, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [175365] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2090), 15, + ACTIONS(5057), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -271303,7 +271150,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2088), 24, + ACTIONS(5059), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -271328,10 +271175,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [175750] = 3, + [175412] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2169), 15, + ACTIONS(4912), 1, + anon_sym_extends, + ACTIONS(6595), 1, + anon_sym_LBRACK, + ACTIONS(4910), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5053), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -271341,17 +271195,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(2171), 24, + ACTIONS(5055), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271370,146 +271221,220 @@ 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, - [175797] = 26, + [175465] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4934), 1, + anon_sym_COLON, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - ACTIONS(6646), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [175890] = 26, + [175558] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(5049), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, anon_sym_in, - ACTIONS(6522), 1, anon_sym_LT, - ACTIONS(6526), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6536), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5051), 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, - ACTIONS(6544), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - ACTIONS(6648), 1, - anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [175605] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4685), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [175672] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5045), 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, - ACTIONS(6524), 3, - anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(5047), 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(6542), 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, - [175983] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [175719] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2036), 15, + ACTIONS(2014), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -271525,7 +271450,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2038), 24, + ACTIONS(2016), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -271550,17 +271475,56 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176030] = 6, + [175766] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, + ACTIONS(5260), 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, - ACTIONS(6602), 1, anon_sym_PIPE, - ACTIONS(6604), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5262), 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, - ACTIONS(5765), 12, + anon_sym_LBRACE_PIPE, + [175813] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2904), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -271568,16 +271532,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(5767), 24, + ACTIONS(2902), 24, anon_sym_as, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -271597,79 +271561,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [176083] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [175860] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4939), 1, - anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6599), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [176176] = 3, + [175953] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5227), 15, + ACTIONS(4608), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -271683,12 +271650,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5229), 24, + ACTIONS(3794), 24, 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, @@ -271707,13 +271675,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [176223] = 4, + [176002] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4597), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(5065), 2, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5067), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(3790), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -271722,18 +271694,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(3800), 24, + ACTIONS(3794), 22, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_COLON, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271752,12 +271721,182 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [176272] = 3, + [176053] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6285), 1, + anon_sym_LBRACK, + ACTIONS(6601), 1, + anon_sym_STAR, + ACTIONS(6603), 1, + anon_sym_async, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6605), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6607), 2, + anon_sym_get, + anon_sym_set, + STATE(3888), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [176124] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6275), 1, + anon_sym_LBRACK, + ACTIONS(6601), 1, + anon_sym_STAR, + ACTIONS(6603), 1, + anon_sym_async, + ACTIONS(6609), 1, + anon_sym_readonly, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6605), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6607), 2, + anon_sym_get, + anon_sym_set, + STATE(3888), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [176197] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6601), 1, + anon_sym_STAR, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6611), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6613), 2, + anon_sym_get, + anon_sym_set, + STATE(4325), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [176266] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2118), 15, + ACTIONS(6368), 1, + sym_regex_flags, + ACTIONS(5029), 17, anon_sym_STAR, + anon_sym_as, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -271772,8 +271911,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2120), 24, - anon_sym_as, + anon_sym_instanceof, + ACTIONS(5031), 21, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -271791,85 +271930,117 @@ 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, - [176319] = 4, + [176315] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4642), 1, - anon_sym_EQ, - ACTIONS(3796), 14, - anon_sym_STAR, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5037), 1, + anon_sym_RBRACK, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, anon_sym_in, + ACTIONS(6533), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6537), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, anon_sym_AMP, + ACTIONS(6547), 1, anon_sym_PIPE, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 24, - 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, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [176368] = 4, + [176408] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, - anon_sym_AMP, - ACTIONS(5759), 13, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6526), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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(5761), 25, + ACTIONS(4950), 15, anon_sym_as, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -271883,34 +272054,37 @@ 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, - [176417] = 3, + [176473] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2193), 15, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(2902), 1, + anon_sym_extends, + ACTIONS(5089), 1, + anon_sym_LBRACK, + ACTIONS(5987), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(5092), 3, + anon_sym_QMARK, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 11, 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(2195), 24, + ACTIONS(1948), 20, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -271929,145 +272103,211 @@ 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, - [176464] = 3, + [176530] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, anon_sym_AMP, + ACTIONS(6514), 1, anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6615), 1, + anon_sym_COLON, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4875), 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(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6520), 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, - [176511] = 3, + [176623] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(2108), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5015), 1, + anon_sym_RBRACK, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, anon_sym_in, + ACTIONS(6533), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6537), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, anon_sym_AMP, + ACTIONS(6547), 1, anon_sym_PIPE, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2110), 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(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [176558] = 4, + [176716] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(4933), 1, - sym_regex_flags, - ACTIONS(4929), 17, - anon_sym_STAR, - anon_sym_as, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, anon_sym_AMP, + ACTIONS(6514), 1, anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6617), 1, + anon_sym_COLON, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - anon_sym_implements, - ACTIONS(4931), 21, - 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, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6520), 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, - [176607] = 3, + anon_sym_instanceof, + [176809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2140), 15, + ACTIONS(5201), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -272083,7 +272323,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2142), 24, + ACTIONS(5203), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -272108,10 +272348,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176654] = 3, + [176856] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2183), 15, + ACTIONS(5233), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -272127,7 +272367,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2185), 24, + ACTIONS(5235), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -272152,10 +272392,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176701] = 3, + [176903] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5231), 15, + ACTIONS(5229), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -272171,7 +272411,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5233), 24, + ACTIONS(5231), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -272196,57 +272436,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [176748] = 3, + [176950] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5144), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, anon_sym_in, + ACTIONS(6533), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6537), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, anon_sym_AMP, + ACTIONS(6547), 1, anon_sym_PIPE, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6619), 1, + anon_sym_RBRACK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5146), 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(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [176795] = 4, + [177043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4593), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(5221), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -272260,11 +272522,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 24, + ACTIONS(4900), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -272285,121 +272546,145 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [176844] = 3, + anon_sym_LBRACE_PIPE, + [177090] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(1990), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5095), 1, + anon_sym_COLON, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, anon_sym_AMP, + ACTIONS(6514), 1, anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1992), 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(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6520), 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, - [176891] = 26, + [177183] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4924), 1, + anon_sym_RBRACK, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6177), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6537), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6545), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6555), 1, anon_sym_QMARK_QMARK, - ACTIONS(6650), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6541), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6535), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6553), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [176984] = 3, + [177276] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5132), 15, + ACTIONS(2022), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -272415,7 +272700,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5134), 24, + ACTIONS(2020), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -272440,15 +272725,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177031] = 3, + [177323] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(5276), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6621), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(4948), 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, @@ -272459,13 +272762,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5278), 24, + ACTIONS(4950), 15, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -272479,26 +272778,30 @@ 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, - [177078] = 8, + [177388] = 12, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(6502), 1, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6621), 1, anon_sym_LT, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - STATE(2266), 2, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4962), 13, + ACTIONS(4948), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -272512,12 +272815,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 20, + ACTIONS(4950), 15, anon_sym_as, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -272531,146 +272831,144 @@ 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, - [177135] = 26, + [177453] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5104), 1, + anon_sym_COLON, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - ACTIONS(6652), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [177228] = 26, + [177546] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4960), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5015), 1, + anon_sym_COLON, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6500), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6582), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6588), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6590), 1, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6512), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [177321] = 3, + [177639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5116), 15, + ACTIONS(5217), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -272686,7 +272984,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5118), 24, + ACTIONS(5219), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -272711,60 +273009,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177368] = 3, + [177686] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4857), 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(4859), 24, - anon_sym_as, - anon_sym_COMMA, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, anon_sym_LPAREN, + ACTIONS(4791), 1, anon_sym_LBRACK, + ACTIONS(4795), 1, anon_sym_DOT, + ACTIONS(4955), 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_extends, - anon_sym_LBRACE_PIPE, - [177415] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6474), 1, - anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(6624), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_LT, anon_sym_GT, anon_sym_SLASH, anon_sym_QMARK, @@ -272775,14 +273043,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 24, + ACTIONS(5099), 17, 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_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -272798,20 +273061,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [177464] = 3, + [177749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 15, + ACTIONS(6627), 1, + anon_sym_LPAREN, + ACTIONS(6630), 1, + anon_sym_COLON, + ACTIONS(6632), 2, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(5245), 12, 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, @@ -272819,10 +273084,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4879), 24, + ACTIONS(5247), 23, + 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, @@ -272842,76 +273108,77 @@ 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, - [177511] = 23, + [177802] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6518), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6528), 1, + ACTIONS(6537), 1, + anon_sym_QMARK, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6545), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6635), 1, + anon_sym_RBRACK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6530), 2, + ACTIONS(6541), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4943), 3, - anon_sym_as, - anon_sym_COLON, - anon_sym_QMARK_QMARK, - ACTIONS(6516), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6535), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6553), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [177598] = 3, + [177895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2155), 15, + ACTIONS(4916), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -272927,7 +273194,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2157), 24, + ACTIONS(4918), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -272952,12 +273219,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [177645] = 3, + [177942] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6637), 1, + anon_sym_COLON, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [178035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 15, + ACTIONS(4587), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -272971,11 +273306,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 24, + ACTIONS(3794), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -272995,192 +273331,206 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [177692] = 12, + [178084] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4900), 1, + anon_sym_RBRACK, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6654), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, + anon_sym_in, + ACTIONS(6533), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(6537), 1, + anon_sym_QMARK, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, + anon_sym_AMP, + ACTIONS(6547), 1, + anon_sym_PIPE, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(6529), 3, 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, + ACTIONS(6535), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 15, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [177757] = 26, + [178177] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5023), 1, + anon_sym_COLON, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - ACTIONS(6657), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [177850] = 15, + [178270] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6654), 1, + ACTIONS(4793), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(4825), 1, + anon_sym_DOT, + ACTIONS(6639), 1, + anon_sym_is, + STATE(2229), 1, sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, + ACTIONS(4823), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, 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(4943), 11, + ACTIONS(3862), 22, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_LBRACK, + 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, - [177921] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [178325] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2050), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(6500), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5011), 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, @@ -273191,10 +273541,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2052), 24, + ACTIONS(5013), 20, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -273213,80 +273562,79 @@ 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, - [177968] = 26, + [178382] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4958), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5087), 1, anon_sym_RBRACK, - ACTIONS(6235), 1, + ACTIONS(6177), 1, anon_sym_as, - ACTIONS(6500), 1, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + ACTIONS(6537), 1, anon_sym_QMARK, - ACTIONS(6582), 1, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, + ACTIONS(6545), 1, anon_sym_AMP, - ACTIONS(6588), 1, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(6590), 1, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, + ACTIONS(6541), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(6549), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6535), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6512), 5, + ACTIONS(6553), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [178061] = 3, + [178475] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1976), 15, + ACTIONS(6595), 1, + anon_sym_LBRACK, + ACTIONS(4910), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -273302,11 +273650,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1978), 24, + ACTIONS(4912), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273327,56 +273674,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178108] = 3, + [178524] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5112), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5106), 1, + anon_sym_RBRACK, + ACTIONS(6177), 1, + anon_sym_as, + ACTIONS(6531), 1, anon_sym_in, + ACTIONS(6533), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6537), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6539), 1, + anon_sym_AMP_AMP, + ACTIONS(6545), 1, anon_sym_AMP, + ACTIONS(6547), 1, anon_sym_PIPE, + ACTIONS(6551), 1, + anon_sym_STAR_STAR, + ACTIONS(6555), 1, + anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6541), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6529), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6535), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5114), 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(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [178155] = 4, + [178617] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 1, - anon_sym_LBRACK, - ACTIONS(4881), 15, + ACTIONS(5215), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -273392,10 +273760,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4883), 23, + ACTIONS(5087), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273416,74 +273785,156 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178204] = 3, + [178664] = 26, ACTIONS(3), 1, sym_comment, - ACTIONS(5198), 15, - anon_sym_STAR, - anon_sym_LBRACE, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, anon_sym_AMP, + ACTIONS(6514), 1, anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6641), 1, + anon_sym_COLON, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5200), 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(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6520), 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, - [178251] = 3, + [178757] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4670), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [178824] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 15, + ACTIONS(5223), 1, + anon_sym_LBRACK, + ACTIONS(4908), 2, + anon_sym_COMMA, + anon_sym_extends, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 11, 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(5221), 24, + ACTIONS(3794), 22, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -273502,34 +273953,38 @@ 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, - [178298] = 3, + [178877] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 15, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4797), 1, + anon_sym_QMARK_DOT, + ACTIONS(5045), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(5047), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(1998), 12, 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, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4889), 24, + ACTIONS(2000), 19, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RPAREN, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -273546,15 +274001,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, - [178345] = 4, + [178932] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6167), 1, - anon_sym_EQ, - ACTIONS(1944), 14, + ACTIONS(6643), 1, + anon_sym_AMP, + ACTIONS(6645), 1, + anon_sym_PIPE, + ACTIONS(6647), 1, + anon_sym_extends, + ACTIONS(5995), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -273562,13 +274020,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(1948), 24, + ACTIONS(5997), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -273592,11 +274048,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [178394] = 3, + [178985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2177), 15, + ACTIONS(4829), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -273612,7 +274067,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2175), 24, + ACTIONS(4831), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -273637,13 +274092,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178441] = 4, + [179032] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6228), 1, - anon_sym_EQ, - ACTIONS(4966), 14, + ACTIONS(5213), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -273657,11 +274111,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 24, + ACTIONS(5106), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -273682,12 +274135,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [178490] = 3, + anon_sym_LBRACE_PIPE, + [179079] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5186), 15, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(4843), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -273701,10 +274156,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5188), 24, + ACTIONS(4847), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -273725,13 +274181,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [178537] = 4, + [179128] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6293), 1, - anon_sym_EQ, - ACTIONS(4867), 14, + ACTIONS(6557), 1, + anon_sym_AMP, + ACTIONS(6559), 1, + anon_sym_PIPE, + ACTIONS(6561), 1, + anon_sym_extends, + ACTIONS(5995), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -273740,17 +274199,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(4871), 24, + ACTIONS(5997), 24, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -273770,73 +274227,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [178586] = 21, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4943), 5, - anon_sym_as, - anon_sym_COLON, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [178669] = 3, + anon_sym_implements, + [179181] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 15, + ACTIONS(4906), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -273852,7 +274247,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3672), 24, + ACTIONS(4908), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -273877,121 +274272,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178716] = 26, + [179228] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4930), 1, + anon_sym_RBRACK, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(6177), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6531), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6533), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6537), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6539), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6545), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6547), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6551), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6555), 1, anon_sym_QMARK_QMARK, - ACTIONS(6661), 1, - anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6541), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6549), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6529), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [178809] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5156), 15, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, + ACTIONS(6535), 3, 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(5158), 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(6543), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6553), 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, - [178856] = 3, + [179321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5104), 15, + ACTIONS(5209), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274007,7 +274358,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5106), 24, + ACTIONS(5211), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274032,190 +274383,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [178903] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5044), 3, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5046), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_extends, - ACTIONS(3796), 12, - 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(3800), 21, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [178954] = 26, + [179368] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6526), 1, - anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6663), 1, - anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [179047] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - ACTIONS(6665), 1, + ACTIONS(6649), 1, anon_sym_COLON, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [179140] = 3, + [179461] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 15, + ACTIONS(2296), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274231,7 +274469,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3734), 24, + ACTIONS(2294), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274256,14 +274494,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179187] = 4, + [179508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5206), 1, - anon_sym_DOT, - ACTIONS(5202), 15, + ACTIONS(4631), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -274277,11 +274514,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5204), 23, + ACTIONS(3794), 24, 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, @@ -274300,11 +274539,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [179236] = 3, + [179557] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2102), 15, + ACTIONS(5061), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274320,7 +274558,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2100), 24, + ACTIONS(5063), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274345,10 +274583,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179283] = 3, + [179604] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 15, + ACTIONS(5177), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274364,7 +274602,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2201), 24, + ACTIONS(5179), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274389,70 +274627,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179330] = 19, + [179651] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6518), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6540), 1, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6651), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6538), 2, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 4, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 6, - anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [179409] = 3, + [179744] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 15, + ACTIONS(5205), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274468,7 +274713,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3770), 24, + ACTIONS(5207), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274493,10 +274738,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179456] = 3, + [179791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 15, + ACTIONS(5130), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274512,7 +274757,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5065), 24, + ACTIONS(5132), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274537,10 +274782,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179503] = 3, + [179838] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 15, + ACTIONS(1998), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -274556,7 +274801,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5050), 24, + ACTIONS(2000), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -274581,69 +274826,103 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [179550] = 16, + [179885] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(2004), 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(2002), 24, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6540), 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, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [179932] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4902), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 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(4943), 11, + ACTIONS(4904), 24, anon_sym_as, - anon_sym_COLON, + 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, - [179623] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [179979] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5093), 15, + ACTIONS(6557), 1, + anon_sym_AMP, + ACTIONS(6559), 1, + anon_sym_PIPE, + ACTIONS(5975), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -274651,14 +274930,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(5095), 24, + ACTIONS(5977), 25, anon_sym_as, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -274680,19 +274958,18 @@ 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_LBRACE_PIPE, - [179670] = 6, + [180030] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, + ACTIONS(6643), 1, anon_sym_AMP, - ACTIONS(6566), 1, + ACTIONS(6645), 1, anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(5975), 13, anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -274704,11 +274981,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 24, + ACTIONS(5977), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -274728,103 +275005,197 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [179723] = 26, + anon_sym_extends, + [180081] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(6148), 1, + anon_sym_QMARK_DOT, + ACTIONS(1998), 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(2000), 21, + 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_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [180134] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4956), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6500), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6582), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6588), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6590), 1, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6653), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6512), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [179816] = 13, + [180227] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6667), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - STATE(4906), 1, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6655), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - STATE(2266), 2, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 13, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [180320] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5148), 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, @@ -274835,220 +275206,221 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 14, + ACTIONS(5150), 24, anon_sym_as, - 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, - [179883] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [180367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(3790), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5020), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, anon_sym_in, - ACTIONS(6502), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6582), 1, - anon_sym_AMP_AMP, - ACTIONS(6586), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6588), 1, anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6508), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6584), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(3794), 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(6512), 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, - [179976] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [180414] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4941), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6500), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6582), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6588), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6590), 1, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6657), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6512), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [180069] = 18, + [180507] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6502), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6510), 1, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - STATE(4906), 1, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6659), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4945), 5, - anon_sym_BANG, - anon_sym_in, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(6512), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - ACTIONS(4943), 6, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [180146] = 3, + [180600] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5128), 15, + ACTIONS(6643), 1, + anon_sym_AMP, + ACTIONS(6645), 1, + anon_sym_PIPE, + ACTIONS(6647), 1, + anon_sym_extends, + ACTIONS(5003), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275056,16 +275428,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(5130), 24, + ACTIONS(5005), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -275085,12 +275456,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, - [180193] = 3, + [180653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 15, + ACTIONS(5142), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275106,7 +275475,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2908), 24, + ACTIONS(5144), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275131,136 +275500,175 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [180240] = 26, + [180700] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5018), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6500), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6582), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6588), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6590), 1, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6661), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - STATE(2266), 2, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6512), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [180333] = 16, + [180793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(6557), 1, + anon_sym_AMP, + ACTIONS(6559), 1, + anon_sym_PIPE, + ACTIONS(6561), 1, + anon_sym_extends, + ACTIONS(5256), 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(5258), 24, + anon_sym_as, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(6502), 1, - anon_sym_LT, - ACTIONS(6510), 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, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, + anon_sym_BQUOTE, + anon_sym_implements, + [180846] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(6258), 1, + anon_sym_QMARK, + ACTIONS(5422), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(4843), 13, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6506), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 8, anon_sym_BANG, anon_sym_in, + anon_sym_LT, anon_sym_GT, - anon_sym_QMARK, + 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(4943), 11, + ACTIONS(4847), 21, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [180406] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [180899] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 15, + ACTIONS(6643), 1, + anon_sym_AMP, + ACTIONS(5916), 14, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275268,16 +275676,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(4855), 24, + ACTIONS(5918), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -275298,13 +275706,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [180453] = 3, + [180948] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 15, + ACTIONS(6643), 1, + anon_sym_AMP, + ACTIONS(6645), 1, + anon_sym_PIPE, + ACTIONS(6647), 1, + anon_sym_extends, + ACTIONS(5920), 13, anon_sym_STAR, - anon_sym_LBRACE, + anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275312,16 +275725,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(5032), 24, + ACTIONS(5922), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -275341,20 +275753,24 @@ 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, - [180500] = 3, + [181001] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5120), 15, + ACTIONS(5019), 1, + anon_sym_EQ, + ACTIONS(6229), 1, + anon_sym_QMARK, + ACTIONS(5444), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(5017), 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, @@ -275362,9 +275778,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5122), 24, + ACTIONS(5021), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -275385,12 +275800,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, - [180547] = 3, + [181054] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5089), 15, + ACTIONS(3744), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275406,7 +275819,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5091), 24, + ACTIONS(3746), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275431,139 +275844,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [180594] = 21, + [181101] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(6500), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6502), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6582), 1, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, + ACTIONS(6512), 1, anon_sym_AMP, - STATE(4906), 1, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6663), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(4945), 3, - anon_sym_BANG, - anon_sym_QMARK, - anon_sym_PIPE, - ACTIONS(6498), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6504), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(4943), 5, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - ACTIONS(6512), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [180677] = 15, + [181194] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6667), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_PIPE, + ACTIONS(5975), 12, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6506), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 10, 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(4943), 11, + ACTIONS(5977), 25, anon_sym_as, - anon_sym_RBRACK, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [180748] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [181245] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, + ACTIONS(4831), 1, + anon_sym_COMMA, + ACTIONS(5152), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5155), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6566), 1, anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_extends, - ACTIONS(5254), 12, + ACTIONS(3790), 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, @@ -275571,12 +275981,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 24, + ACTIONS(3794), 22, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -275595,20 +276004,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [180801] = 6, + [181298] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4883), 1, - anon_sym_extends, - ACTIONS(6659), 1, - anon_sym_LBRACK, - ACTIONS(4881), 2, + ACTIONS(6557), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5034), 13, + ACTIONS(5965), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275616,14 +276018,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5036), 22, + ACTIONS(5967), 25, 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, @@ -275642,13 +276047,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_LBRACE_PIPE, - [180854] = 3, + anon_sym_implements, + anon_sym_extends, + [181347] = 26, + ACTIONS(3), 1, + sym_comment, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + ACTIONS(6665), 1, + anon_sym_COLON, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [181440] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 15, + ACTIONS(6354), 1, + anon_sym_is, + ACTIONS(4829), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275662,12 +276136,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5040), 24, + ACTIONS(4831), 24, 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, @@ -275686,11 +276161,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [180901] = 3, + [181489] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4972), 15, + ACTIONS(2900), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -275706,7 +276180,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4974), 24, + ACTIONS(2898), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -275731,13 +276205,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [180948] = 4, + [181536] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, - anon_sym_AMP, - ACTIONS(5748), 13, + ACTIONS(5197), 15, anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275745,14 +276218,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(5750), 25, + ACTIONS(5199), 24, anon_sym_as, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -275774,16 +276247,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, - [180997] = 4, + anon_sym_LBRACE_PIPE, + [181583] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(5759), 14, + ACTIONS(4600), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275791,15 +276263,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(5761), 24, + ACTIONS(3794), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -275820,13 +276294,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [181046] = 3, + [181632] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 15, + ACTIONS(4589), 1, + anon_sym_EQ, + ACTIONS(3790), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -275840,11 +276314,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5046), 24, + ACTIONS(3794), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -275864,153 +276339,57 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [181093] = 26, + [181681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4851), 1, - anon_sym_RBRACK, - ACTIONS(4897), 1, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(5965), 13, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, anon_sym_in, - ACTIONS(6502), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6582), 1, - anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, + anon_sym_GT_GT, anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6508), 2, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6584), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6512), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [181186] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(5967), 25, + anon_sym_as, + anon_sym_LBRACE, anon_sym_LPAREN, - ACTIONS(4785), 1, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(5095), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, - anon_sym_in, - ACTIONS(6502), 1, - anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, - anon_sym_QMARK, - ACTIONS(6582), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, - anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6506), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6512), 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, - [181279] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [181730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_AMP, - ACTIONS(6610), 1, - anon_sym_PIPE, - ACTIONS(6612), 1, - anon_sym_extends, - ACTIONS(5073), 13, + ACTIONS(5193), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276018,15 +276397,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(5075), 23, + ACTIONS(5195), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -276046,83 +276426,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [181332] = 26, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [181777] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5223), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + anon_sym_extends, + ACTIONS(5226), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(3790), 12, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5154), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, anon_sym_in, - ACTIONS(6502), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6582), 1, - anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, - anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6508), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6584), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(3794), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6512), 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, - [181425] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_LBRACE_PIPE, + [181828] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, + ACTIONS(6568), 1, anon_sym_AMP, - ACTIONS(6639), 1, + ACTIONS(6570), 1, anon_sym_PIPE, - ACTIONS(6641), 1, + ACTIONS(6572), 1, anon_sym_extends, - ACTIONS(5765), 13, + ACTIONS(5181), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276136,7 +276497,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5767), 23, + ACTIONS(5183), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276160,10 +276521,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_LBRACE_PIPE, - [181478] = 3, + [181881] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5022), 15, + ACTIONS(2008), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276179,7 +276540,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5024), 24, + ACTIONS(2006), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276204,10 +276565,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181525] = 3, + [181928] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 15, + ACTIONS(6568), 1, + anon_sym_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE, + ACTIONS(5975), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276217,13 +276582,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(5057), 24, + ACTIONS(5977), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276248,12 +276611,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181572] = 4, + [181979] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6659), 1, - anon_sym_LBRACK, - ACTIONS(5059), 15, + ACTIONS(2908), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276269,10 +276630,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5061), 23, + ACTIONS(2906), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -276293,85 +276655,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181621] = 26, + [182026] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(6224), 1, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6670), 1, + ACTIONS(5330), 3, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [181714] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5042), 15, + ACTIONS(1944), 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, @@ -276379,9 +276680,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5018), 24, + ACTIONS(1948), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -276402,48 +276702,90 @@ 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, - [181761] = 12, + [182079] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4676), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6667), 1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [182146] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6557), 1, + anon_sym_AMP, + ACTIONS(6559), 1, + anon_sym_PIPE, + ACTIONS(6561), 1, + anon_sym_extends, + ACTIONS(5181), 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(4943), 15, + ACTIONS(5183), 24, anon_sym_as, - anon_sym_RBRACK, + 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, @@ -276457,10 +276799,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [181826] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_implements, + [182199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1968), 15, + ACTIONS(2123), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -276476,7 +276822,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(1966), 24, + ACTIONS(2125), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -276501,97 +276847,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [181873] = 26, + [182246] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(5152), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6526), 1, - anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, + anon_sym_extends, + ACTIONS(5155), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6536), 1, anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6672), 1, - anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [181966] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2163), 15, + ACTIONS(3790), 12, 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(2161), 24, + ACTIONS(3794), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -276610,14 +276892,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, - [182013] = 4, + [182297] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4634), 1, - anon_sym_EQ, - ACTIONS(3796), 14, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_PIPE, + ACTIONS(6580), 1, + anon_sym_extends, + ACTIONS(5256), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -276626,19 +276911,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(3800), 24, + ACTIONS(5258), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -276656,22 +276940,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [182062] = 6, + [182350] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6600), 1, + ACTIONS(4908), 1, + anon_sym_extends, + ACTIONS(5223), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5226), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6602), 1, anon_sym_PIPE, - ACTIONS(6604), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(3790), 12, 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, @@ -276679,13 +276965,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5075), 24, + ACTIONS(3794), 21, anon_sym_as, - anon_sym_LBRACE, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -276704,12 +276986,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [182115] = 3, + anon_sym_LBRACE_PIPE, + [182403] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2098), 15, + ACTIONS(6293), 1, + anon_sym_is, + ACTIONS(4829), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -276723,10 +277007,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2096), 24, + ACTIONS(4831), 24, + 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, @@ -276747,255 +277032,202 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [182162] = 18, + [182452] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4673), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6522), 1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, anon_sym_LT, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [182519] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5083), 15, anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(4945), 5, + 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(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - ACTIONS(4943), 6, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5085), 24, anon_sym_as, - anon_sym_COLON, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - anon_sym_QMARK_QMARK, - [182239] = 23, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4905), 1, anon_sym_QMARK_DOT, - ACTIONS(6500), 1, - anon_sym_in, - ACTIONS(6502), 1, - anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6582), 1, anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, - anon_sym_PIPE, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(4945), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4943), 3, - anon_sym_as, - anon_sym_RBRACK, - anon_sym_QMARK_QMARK, - ACTIONS(6498), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6506), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6512), 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, - [182326] = 13, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [182566] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(6258), 1, + anon_sym_EQ, + ACTIONS(4965), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6654), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4945), 13, + anon_sym_extends, + ACTIONS(4968), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(4843), 11, anon_sym_STAR, anon_sym_BANG, anon_sym_in, - anon_sym_GT, + anon_sym_LT, anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_AMP, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4943), 14, + ACTIONS(4847), 21, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_CARET, anon_sym_PERCENT, + anon_sym_STAR_STAR, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_QMARK_QMARK, anon_sym_instanceof, - [182393] = 26, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [182619] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(6224), 1, + anon_sym_EQ, + ACTIONS(5089), 3, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + anon_sym_extends, + ACTIONS(5092), 3, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + ACTIONS(1944), 11, + anon_sym_STAR, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4939), 1, - anon_sym_RBRACK, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, anon_sym_in, - ACTIONS(6502), 1, anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6582), 1, - anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, - anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6508), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - ACTIONS(6584), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6506), 3, + ACTIONS(1948), 21, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOT, + anon_sym_QMARK_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(6512), 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, - [182486] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [182672] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5067), 15, + ACTIONS(1962), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277011,7 +277243,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5069), 24, + ACTIONS(1964), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277036,19 +277268,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182533] = 5, + [182719] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, + ACTIONS(4831), 1, + anon_sym_extends, + ACTIONS(5152), 2, + anon_sym_COMMA, + anon_sym_LBRACK, + ACTIONS(5155), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6566), 1, anon_sym_PIPE, - ACTIONS(5868), 12, + ACTIONS(3790), 12, 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, @@ -277056,12 +277293,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 25, + ACTIONS(3794), 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, @@ -277080,12 +277314,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, - [182584] = 3, + anon_sym_LBRACE_PIPE, + [182772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 15, + ACTIONS(2073), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277101,7 +277334,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2896), 24, + ACTIONS(2075), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277126,10 +277359,64 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182631] = 3, + [182819] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4688), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [182886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5071), 15, + ACTIONS(5126), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277145,7 +277432,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4941), 24, + ACTIONS(5128), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277170,10 +277457,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182678] = 3, + [182933] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 15, + ACTIONS(5069), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277189,7 +277476,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5192), 24, + ACTIONS(5071), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277214,77 +277501,187 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182725] = 26, + [182980] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4679), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [183047] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4956), 1, - anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + ACTIONS(6667), 1, + anon_sym_COLON, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [182818] = 3, + [183140] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4691), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [183207] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 15, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5045), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277300,12 +277697,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5196), 24, + ACTIONS(5047), 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, @@ -277325,14 +277721,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182865] = 4, + [183256] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6462), 1, - sym_regex_flags, - ACTIONS(4929), 17, + ACTIONS(2145), 15, anon_sym_STAR, - anon_sym_as, anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, @@ -277347,8 +277740,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4931), 21, + ACTIONS(2147), 24, + anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, @@ -277366,14 +277759,16 @@ 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, - [182914] = 3, + [183303] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 15, + ACTIONS(5118), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277389,7 +277784,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2892), 24, + ACTIONS(5120), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277414,77 +277809,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [182961] = 26, - ACTIONS(3), 1, - sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4895), 1, - anon_sym_RBRACK, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(6235), 1, - anon_sym_as, - ACTIONS(6500), 1, - anon_sym_in, - ACTIONS(6502), 1, - anon_sym_LT, - ACTIONS(6510), 1, - anon_sym_STAR_STAR, - ACTIONS(6580), 1, - anon_sym_QMARK, - ACTIONS(6582), 1, - anon_sym_AMP_AMP, - ACTIONS(6586), 1, - anon_sym_AMP, - ACTIONS(6588), 1, - anon_sym_PIPE, - ACTIONS(6590), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6508), 2, - anon_sym_PLUS, - anon_sym_DASH, - ACTIONS(6584), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6498), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6504), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6506), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6512), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [183054] = 3, + [183350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 15, + ACTIONS(2175), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277500,7 +277828,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5270), 24, + ACTIONS(2173), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277525,101 +277853,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183101] = 26, + [183397] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(6643), 1, + anon_sym_AMP, + ACTIONS(6645), 1, + anon_sym_PIPE, + ACTIONS(6647), 1, + anon_sym_extends, + ACTIONS(5256), 13, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, anon_sym_in, - ACTIONS(6522), 1, anon_sym_LT, - ACTIONS(6526), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - ACTIONS(6674), 1, - anon_sym_COLON, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(5258), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_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(6542), 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, - [183194] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [183450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(6167), 1, - anon_sym_QMARK, - ACTIONS(5475), 3, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(1944), 13, + ACTIONS(6643), 1, + anon_sym_AMP, + ACTIONS(5965), 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(1948), 21, + ACTIONS(5967), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -277639,15 +277944,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [183247] = 3, + anon_sym_extends, + [183499] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 15, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(6669), 1, + anon_sym_LT, + STATE(4914), 1, + sym_type_arguments, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(5097), 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, @@ -277658,13 +277979,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5274), 24, + ACTIONS(5099), 17, anon_sym_as, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_RBRACK, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -277680,13 +277997,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, - [183294] = 3, + [183562] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 15, + ACTIONS(2155), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277702,7 +278016,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2904), 24, + ACTIONS(2157), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277727,81 +278041,79 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183341] = 26, + [183609] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5154), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5037), 1, anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [183434] = 4, + [183702] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, - anon_sym_AMP, - ACTIONS(5759), 14, + ACTIONS(2038), 15, anon_sym_STAR, - anon_sym_EQ, + anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -277809,16 +278121,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(5761), 24, + ACTIONS(2040), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -277839,21 +278151,24 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [183483] = 6, + anon_sym_LBRACE_PIPE, + [183749] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6564), 1, + ACTIONS(4908), 1, + anon_sym_COMMA, + ACTIONS(5223), 2, + anon_sym_LBRACK, + anon_sym_extends, + ACTIONS(5226), 3, + anon_sym_GT, anon_sym_AMP, - ACTIONS(6566), 1, anon_sym_PIPE, - ACTIONS(6568), 1, - anon_sym_extends, - ACTIONS(5209), 12, + ACTIONS(3790), 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, @@ -277861,12 +278176,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 24, + ACTIONS(3794), 22, + sym__automatic_semicolon, anon_sym_as, - anon_sym_LBRACE, - anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_LBRACK, + anon_sym_SEMI, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -277885,11 +278199,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_implements, - [183536] = 3, + [183802] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 15, + ACTIONS(6568), 1, + anon_sym_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE, + ACTIONS(6572), 1, + anon_sym_extends, + ACTIONS(5995), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -277899,13 +278218,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(5256), 24, + ACTIONS(5997), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -277928,146 +278245,124 @@ 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, - [183583] = 26, + [183855] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5095), 1, + ACTIONS(4930), 1, anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [183676] = 26, + [183948] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(2065), 15, + anon_sym_STAR, + anon_sym_LBRACE, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4958), 1, - anon_sym_COLON, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, anon_sym_in, - ACTIONS(6522), 1, anon_sym_LT, - ACTIONS(6526), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, + anon_sym_GT_GT, anon_sym_AMP, - ACTIONS(6536), 1, anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(2063), 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(6542), 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, - [183769] = 3, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [183995] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 15, + ACTIONS(6568), 1, + anon_sym_AMP, + ACTIONS(5965), 14, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278077,13 +278372,12 @@ 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(5252), 24, + ACTIONS(5967), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278108,18 +278402,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [183816] = 6, + [184044] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6608), 1, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4797), 1, + anon_sym_QMARK_DOT, + ACTIONS(5045), 2, anon_sym_AMP, - ACTIONS(6610), 1, anon_sym_PIPE, - ACTIONS(6612), 1, + ACTIONS(5047), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(5765), 13, + ACTIONS(1998), 12, anon_sym_STAR, - anon_sym_EQ, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278131,14 +278429,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5767), 23, + ACTIONS(2000), 20, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, + anon_sym_COLON, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_GT_GT_GT, @@ -278155,16 +278450,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [183869] = 6, + [184099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6637), 1, - anon_sym_AMP, - ACTIONS(6639), 1, - anon_sym_PIPE, - ACTIONS(6641), 1, - anon_sym_extends, - ACTIONS(5073), 13, + ACTIONS(2028), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278174,11 +278463,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(5075), 23, + ACTIONS(2030), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278201,11 +278492,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, - [183922] = 3, + [184146] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 15, + ACTIONS(6568), 1, + anon_sym_AMP, + ACTIONS(6570), 1, + anon_sym_PIPE, + ACTIONS(6572), 1, + anon_sym_extends, + ACTIONS(5256), 13, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278215,13 +278513,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(5245), 24, + ACTIONS(5258), 23, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278244,12 +278540,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, - [183969] = 3, + [184199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 15, + ACTIONS(2185), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278265,7 +278560,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5241), 24, + ACTIONS(2187), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278290,12 +278585,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184016] = 3, + [184246] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 15, + ACTIONS(6576), 1, + anon_sym_AMP, + ACTIONS(6578), 1, + anon_sym_PIPE, + ACTIONS(6580), 1, + anon_sym_extends, + ACTIONS(5181), 12, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278303,16 +278603,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(2900), 24, + ACTIONS(5183), 24, anon_sym_as, - anon_sym_COMMA, + anon_sym_LBRACE, anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -278332,96 +278632,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, - [184063] = 26, + [184299] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(4785), 1, - anon_sym_LBRACK, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4897), 1, + ACTIONS(6643), 1, + anon_sym_AMP, + ACTIONS(6645), 1, + anon_sym_PIPE, + ACTIONS(6647), 1, + anon_sym_extends, + ACTIONS(5181), 13, + anon_sym_STAR, + anon_sym_EQ, anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(4960), 1, - anon_sym_COLON, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, anon_sym_in, - ACTIONS(6522), 1, anon_sym_LT, - ACTIONS(6526), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, + anon_sym_GT_GT, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(5183), 23, + anon_sym_as, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DOT, + anon_sym_QMARK_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(6542), 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, - [184156] = 8, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [184352] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(6522), 1, - anon_sym_LT, - STATE(4906), 1, - sym_type_arguments, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(4962), 13, + ACTIONS(6458), 1, + anon_sym_EQ, + ACTIONS(6467), 1, + anon_sym_QMARK, + ACTIONS(6460), 3, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + ACTIONS(3790), 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, @@ -278429,9 +278704,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4964), 20, + ACTIONS(3794), 21, anon_sym_as, - anon_sym_COLON, + anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -278450,10 +278725,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - [184213] = 3, + anon_sym_BQUOTE, + [184405] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2094), 15, + ACTIONS(2199), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278469,7 +278745,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(2092), 24, + ACTIONS(2201), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278494,10 +278770,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184260] = 3, + [184452] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5081), 15, + ACTIONS(1972), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278513,7 +278789,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5020), 24, + ACTIONS(1974), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278538,77 +278814,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184307] = 26, + [184499] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4851), 1, + ACTIONS(4924), 1, anon_sym_COLON, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [184400] = 3, + [184592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5073), 15, + ACTIONS(2057), 15, anon_sym_STAR, anon_sym_LBRACE, anon_sym_BANG, @@ -278624,7 +278900,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5075), 24, + ACTIONS(2059), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -278649,225 +278925,276 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BQUOTE, anon_sym_extends, anon_sym_LBRACE_PIPE, - [184447] = 26, + [184639] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, - anon_sym_QMARK_DOT, - ACTIONS(5018), 1, + ACTIONS(4900), 1, anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [184540] = 26, + [184732] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(4941), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5087), 1, anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [184633] = 26, + [184825] = 26, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - ACTIONS(4785), 1, + ACTIONS(4791), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, + ACTIONS(4795), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + ACTIONS(4955), 1, anon_sym_QMARK_DOT, - ACTIONS(5020), 1, + ACTIONS(4975), 1, + anon_sym_BANG, + ACTIONS(5106), 1, anon_sym_COLON, - ACTIONS(5722), 1, + ACTIONS(5833), 1, anon_sym_as, - ACTIONS(6518), 1, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4906), 1, + STATE(4914), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(2266), 2, + STATE(2248), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [184726] = 6, + [184918] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(4736), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6228), 1, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6611), 2, + sym_number, + sym_private_property_identifier, + STATE(4325), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(5458), 3, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [184982] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5019), 1, + anon_sym_EQ, + ACTIONS(5444), 1, + anon_sym_RBRACK, + ACTIONS(6232), 1, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - ACTIONS(4966), 13, + ACTIONS(5017), 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, @@ -278875,7 +279202,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4970), 21, + ACTIONS(5021), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -278897,12 +279224,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [184779] = 3, + [185034] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 15, + ACTIONS(6672), 1, + anon_sym_AMP, + ACTIONS(5916), 13, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278910,16 +279238,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(2278), 24, + ACTIONS(5918), 24, + 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, @@ -278940,13 +279268,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - anon_sym_LBRACE_PIPE, - [184826] = 3, + [185082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 15, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(5422), 1, + anon_sym_RBRACK, + ACTIONS(6261), 1, + anon_sym_COMMA, + ACTIONS(4843), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -278960,9 +279292,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 24, + ACTIONS(4847), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -278983,14 +279314,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, - [184873] = 3, + [185134] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 15, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(5330), 1, + anon_sym_RBRACK, + ACTIONS(6227), 1, + anon_sym_COMMA, + ACTIONS(1944), 14, anon_sym_STAR, - anon_sym_LBRACE, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -279004,9 +279338,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5215), 24, + ACTIONS(1948), 21, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, anon_sym_LBRACK, anon_sym_DOT, @@ -279027,72 +279360,146 @@ 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, - [184920] = 13, + [185186] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4680), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(85), 1, + anon_sym_BQUOTE, + ACTIONS(4855), 1, + anon_sym_BANG, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(4861), 1, anon_sym_LBRACK, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, + ACTIONS(4867), 1, + anon_sym_DOT, + ACTIONS(4869), 1, + anon_sym_QMARK_DOT, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, + anon_sym_LT, + ACTIONS(6504), 1, + anon_sym_QMARK, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + STATE(4828), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2508), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [185276] = 25, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1196), 1, + anon_sym_BQUOTE, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(5865), 1, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + ACTIONS(5867), 1, + anon_sym_LBRACK, + ACTIONS(5872), 1, + anon_sym_DOT, + ACTIONS(5874), 1, + anon_sym_QMARK_DOT, + ACTIONS(5880), 1, + anon_sym_BANG, + ACTIONS(6496), 1, + anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, + ACTIONS(6504), 1, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [184987] = 6, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, + anon_sym_AMP, + ACTIONS(6514), 1, + anon_sym_PIPE, + ACTIONS(6518), 1, + anon_sym_STAR_STAR, + ACTIONS(6522), 1, + anon_sym_QMARK_QMARK, + STATE(4770), 1, + sym_type_arguments, + ACTIONS(4957), 2, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(3324), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 3, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_GT_GT, + ACTIONS(6502), 3, + anon_sym_GT, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(6510), 3, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_PERCENT, + ACTIONS(6520), 5, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_instanceof, + [185366] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(6672), 1, anon_sym_AMP, - ACTIONS(6678), 1, + ACTIONS(6674), 1, anon_sym_PIPE, - ACTIONS(6680), 1, + ACTIONS(6676), 1, anon_sym_extends, - ACTIONS(5765), 12, + ACTIONS(5003), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279105,13 +279512,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5767), 23, + ACTIONS(5005), 23, + sym__automatic_semicolon, anon_sym_as, - anon_sym_COMMA, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, - anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -279129,17 +279536,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185039] = 6, + [185418] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, - anon_sym_AMP, - ACTIONS(6684), 1, - anon_sym_PIPE, - ACTIONS(6686), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(6678), 1, + sym_identifier, + ACTIONS(4730), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -279147,13 +279551,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(5075), 23, + anon_sym_instanceof, + ACTIONS(4734), 21, sym__automatic_semicolon, - anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -279171,166 +279577,340 @@ 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, - [185091] = 25, + [185466] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1028), 1, anon_sym_BQUOTE, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(5787), 1, + ACTIONS(5276), 1, anon_sym_BANG, - ACTIONS(5789), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - ACTIONS(5793), 1, + ACTIONS(5282), 1, anon_sym_LBRACK, - ACTIONS(5799), 1, + ACTIONS(5288), 1, anon_sym_DOT, - ACTIONS(5801), 1, + ACTIONS(5290), 1, anon_sym_QMARK_DOT, - ACTIONS(6518), 1, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, - ACTIONS(6522), 1, + ACTIONS(6500), 1, anon_sym_LT, - ACTIONS(6526), 1, + ACTIONS(6504), 1, anon_sym_QMARK, - ACTIONS(6528), 1, + ACTIONS(6506), 1, anon_sym_AMP_AMP, - ACTIONS(6534), 1, + ACTIONS(6512), 1, anon_sym_AMP, - ACTIONS(6536), 1, + ACTIONS(6514), 1, anon_sym_PIPE, - ACTIONS(6540), 1, + ACTIONS(6518), 1, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, - STATE(4765), 1, + STATE(4812), 1, sym_type_arguments, - ACTIONS(4927), 2, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, + ACTIONS(6508), 2, anon_sym_PIPE_PIPE, anon_sym_CARET, - ACTIONS(6538), 2, + ACTIONS(6516), 2, anon_sym_PLUS, anon_sym_DASH, - STATE(3328), 2, + STATE(2954), 2, sym_template_string, sym_arguments, - ACTIONS(6516), 3, + ACTIONS(6494), 3, anon_sym_STAR, anon_sym_SLASH, anon_sym_GT_GT, - ACTIONS(6524), 3, + ACTIONS(6502), 3, anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, anon_sym_PERCENT, - ACTIONS(6542), 5, + ACTIONS(6520), 5, anon_sym_LT_EQ, anon_sym_EQ_EQ_EQ, anon_sym_BANG_EQ_EQ, anon_sym_GT_EQ, anon_sym_instanceof, - [185181] = 25, + [185556] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(594), 1, - anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6684), 1, + anon_sym_extends, + ACTIONS(5920), 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(5922), 23, + anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - ACTIONS(4785), 1, anon_sym_LBRACK, - ACTIONS(4789), 1, anon_sym_DOT, - ACTIONS(4897), 1, - anon_sym_BANG, - ACTIONS(4905), 1, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [185608] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(5916), 13, + anon_sym_STAR, + anon_sym_BANG, anon_sym_in, - ACTIONS(6522), 1, anon_sym_LT, - ACTIONS(6526), 1, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, + anon_sym_GT_GT, anon_sym_PIPE, - ACTIONS(6540), 1, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5918), 24, + 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, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, anon_sym_STAR_STAR, - ACTIONS(6544), 1, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, anon_sym_QMARK_QMARK, - STATE(4906), 1, - sym_type_arguments, - ACTIONS(4927), 2, + anon_sym_instanceof, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2266), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, + anon_sym_BQUOTE, + anon_sym_extends, + [185656] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6680), 1, + anon_sym_AMP, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6684), 1, + anon_sym_extends, + ACTIONS(5003), 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(6524), 3, - anon_sym_GT, + anon_sym_PLUS, + anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(6532), 3, + ACTIONS(5005), 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, anon_sym_GT_GT_GT, anon_sym_LT_LT, + anon_sym_CARET, anon_sym_PERCENT, - ACTIONS(6542), 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, - [185271] = 6, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [185708] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(6285), 1, + anon_sym_LBRACK, + ACTIONS(6686), 1, + anon_sym_STAR, + ACTIONS(6688), 1, + anon_sym_async, + ACTIONS(6694), 1, + anon_sym_abstract, + ACTIONS(6690), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6692), 2, + anon_sym_get, + anon_sym_set, + STATE(3858), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(4694), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [185772] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(6275), 1, + anon_sym_LBRACK, + ACTIONS(6698), 1, + anon_sym_static, + ACTIONS(6700), 1, + anon_sym_readonly, + ACTIONS(6702), 1, + anon_sym_abstract, + STATE(3790), 1, + sym_accessibility_modifier, + ACTIONS(6696), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4710), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4023), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(4694), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [185838] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 1, - anon_sym_extends, - ACTIONS(5086), 2, + ACTIONS(5065), 3, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - ACTIONS(5083), 3, + ACTIONS(5067), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - ACTIONS(3796), 12, + anon_sym_extends, + ACTIONS(3790), 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_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 20, + ACTIONS(3794), 20, anon_sym_as, anon_sym_LPAREN, anon_sym_DOT, @@ -279351,106 +279931,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185323] = 4, + [185888] = 25, ACTIONS(3), 1, sym_comment, - ACTIONS(6688), 1, - sym_identifier, - ACTIONS(4750), 16, - anon_sym_STAR, - anon_sym_as, + ACTIONS(594), 1, + anon_sym_BQUOTE, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(4791), 1, + anon_sym_LBRACK, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4955), 1, + anon_sym_QMARK_DOT, + ACTIONS(4975), 1, anon_sym_BANG, + ACTIONS(5833), 1, + anon_sym_as, + ACTIONS(6496), 1, anon_sym_in, + ACTIONS(6500), 1, anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, + ACTIONS(6504), 1, anon_sym_QMARK, - anon_sym_GT_GT, + ACTIONS(6506), 1, + anon_sym_AMP_AMP, + ACTIONS(6512), 1, anon_sym_AMP, + ACTIONS(6514), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4754), 21, - sym__automatic_semicolon, - 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(6518), 1, anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, + ACTIONS(6522), 1, anon_sym_QMARK_QMARK, + STATE(4914), 1, + sym_type_arguments, + ACTIONS(4957), 2, anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [185371] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4839), 1, - anon_sym_extends, - ACTIONS(5083), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5086), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, + ACTIONS(6508), 2, + anon_sym_PIPE_PIPE, + anon_sym_CARET, + ACTIONS(6516), 2, + anon_sym_PLUS, + anon_sym_DASH, + STATE(2248), 2, + sym_template_string, + sym_arguments, + ACTIONS(6494), 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, + ACTIONS(6502), 3, + anon_sym_GT, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 20, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, + ACTIONS(6510), 3, anon_sym_GT_GT_GT, anon_sym_LT_LT, - anon_sym_CARET, anon_sym_PERCENT, - anon_sym_STAR_STAR, + ACTIONS(6520), 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, - [185423] = 6, + [185978] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, + ACTIONS(6680), 1, anon_sym_AMP, - ACTIONS(6684), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6686), 1, + ACTIONS(6684), 1, anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(5181), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279463,13 +280018,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 23, - sym__automatic_semicolon, + ACTIONS(5183), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -279487,16 +280042,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185475] = 6, + [186030] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, + ACTIONS(6680), 1, anon_sym_AMP, - ACTIONS(6684), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6686), 1, + ACTIONS(6684), 1, anon_sym_extends, - ACTIONS(5765), 12, + ACTIONS(5256), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279509,13 +280064,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5767), 23, - sym__automatic_semicolon, + ACTIONS(5258), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -279533,60 +280088,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185527] = 4, + [186082] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6690), 1, - sym_identifier, - ACTIONS(4750), 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, - anon_sym_GT_GT, + ACTIONS(4831), 1, + anon_sym_extends, + ACTIONS(5155), 2, anon_sym_AMP, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_instanceof, - ACTIONS(4754), 21, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, + ACTIONS(5152), 3, + 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_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [185575] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1946), 1, - anon_sym_EQ, - ACTIONS(5475), 1, anon_sym_RBRACK, - ACTIONS(6170), 1, - anon_sym_COMMA, - ACTIONS(1944), 14, + ACTIONS(3790), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279595,16 +280109,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(1948), 21, + ACTIONS(3794), 20, anon_sym_as, anon_sym_LPAREN, - anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -279623,41 +280134,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185627] = 14, + [186134] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6694), 1, + ACTIONS(4752), 2, anon_sym_COMMA, - ACTIONS(6696), 1, anon_sym_RBRACE, - STATE(5048), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6698), 2, + ACTIONS(6271), 2, sym_number, sym_private_property_identifier, - STATE(5059), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5622), 3, + ACTIONS(6273), 2, + anon_sym_get, + anon_sym_set, + STATE(4330), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(6692), 19, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -279665,8 +280176,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -279677,12 +280186,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [185695] = 4, + [186198] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6514), 1, + ACTIONS(6639), 1, anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(4829), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279697,12 +280206,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 23, + ACTIONS(4831), 23, anon_sym_as, anon_sym_LPAREN, 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, @@ -279721,41 +280230,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [185743] = 14, + [186246] = 14, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(5318), 1, anon_sym_LBRACK, - ACTIONS(6694), 1, + ACTIONS(6706), 1, anon_sym_COMMA, - ACTIONS(6702), 1, + ACTIONS(6708), 1, anon_sym_RBRACE, - STATE(4948), 1, + STATE(5085), 1, aux_sym_object_pattern_repeat1, - ACTIONS(6698), 2, + ACTIONS(6710), 2, sym_number, sym_private_property_identifier, - STATE(4951), 3, + STATE(5093), 3, sym_object_assignment_pattern, sym_rest_pattern, sym_pair_pattern, - STATE(5622), 3, + STATE(5632), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5659), 3, + STATE(5669), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - ACTIONS(6700), 19, + ACTIONS(6704), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -279775,14 +280284,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [185811] = 5, + [186314] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, + ACTIONS(6672), 1, anon_sym_AMP, - ACTIONS(6684), 1, + ACTIONS(6674), 1, anon_sym_PIPE, - ACTIONS(5868), 12, + ACTIONS(6676), 1, + anon_sym_extends, + ACTIONS(5920), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279795,7 +280306,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 24, + ACTIONS(5922), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -279819,63 +280330,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [185861] = 6, + [186366] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(5458), 1, - anon_sym_RBRACK, - ACTIONS(6231), 1, - anon_sym_COMMA, - ACTIONS(4966), 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(6672), 1, anon_sym_AMP, + ACTIONS(6674), 1, anon_sym_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(4970), 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, - [185913] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(5359), 1, - anon_sym_RBRACK, - ACTIONS(6296), 1, - anon_sym_COMMA, - ACTIONS(4867), 14, + ACTIONS(5975), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279884,15 +280346,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(4871), 21, + ACTIONS(5977), 24, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, @@ -279912,16 +280374,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [185965] = 6, + anon_sym_extends, + [186416] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, + ACTIONS(6680), 1, anon_sym_AMP, - ACTIONS(6684), 1, - anon_sym_PIPE, - ACTIONS(6686), 1, - anon_sym_extends, - ACTIONS(5254), 12, + ACTIONS(5965), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -279930,17 +280389,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 23, - sym__automatic_semicolon, + ACTIONS(5967), 24, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -279958,85 +280418,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186017] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6265), 1, - anon_sym_LBRACK, - ACTIONS(6267), 1, - anon_sym_async, - ACTIONS(4763), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6269), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6271), 2, - anon_sym_get, - anon_sym_set, - STATE(3875), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [186083] = 12, + anon_sym_extends, + [186464] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6704), 1, + ACTIONS(6712), 1, anon_sym_STAR, - ACTIONS(6706), 1, + ACTIONS(6714), 1, anon_sym_async, - ACTIONS(6712), 1, + ACTIONS(6720), 1, anon_sym_abstract, - ACTIONS(6708), 2, + ACTIONS(6716), 2, sym_number, sym_private_property_identifier, - ACTIONS(6710), 2, + ACTIONS(6718), 2, anon_sym_get, anon_sym_set, STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -280046,62 +280454,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4704), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [186147] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(4763), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6206), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6208), 2, - anon_sym_get, - anon_sym_set, - STATE(4375), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -280115,12 +280471,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [186211] = 4, + [186528] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6606), 1, + ACTIONS(6524), 1, anon_sym_is, - ACTIONS(4837), 14, + ACTIONS(4829), 14, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280135,12 +280491,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(4839), 23, + ACTIONS(4831), 23, anon_sym_as, anon_sym_LPAREN, 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, @@ -280159,81 +280515,19 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [186259] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(85), 1, - anon_sym_BQUOTE, - ACTIONS(4980), 1, - anon_sym_BANG, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(4986), 1, - anon_sym_LBRACK, - ACTIONS(4992), 1, - anon_sym_DOT, - ACTIONS(4994), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6526), 1, - anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - STATE(4828), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2520), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [186349] = 6, + [186576] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(4908), 1, + anon_sym_extends, + ACTIONS(5226), 2, anon_sym_AMP, - ACTIONS(6678), 1, anon_sym_PIPE, - ACTIONS(6680), 1, - anon_sym_extends, - ACTIONS(5254), 12, + ACTIONS(5223), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(3790), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280246,13 +280540,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 23, + ACTIONS(3794), 20, 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, @@ -280270,37 +280561,144 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186401] = 14, + [186628] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, + anon_sym_LBRACK, + ACTIONS(6706), 1, + anon_sym_COMMA, + ACTIONS(6724), 1, + anon_sym_RBRACE, + STATE(4954), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(6710), 2, + sym_number, + sym_private_property_identifier, + STATE(4957), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5632), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(6722), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [186696] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6200), 1, + ACTIONS(6265), 1, anon_sym_STAR, - ACTIONS(6202), 1, - anon_sym_EQ, ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6277), 1, anon_sym_async, + ACTIONS(6285), 1, + anon_sym_LBRACK, + ACTIONS(4752), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6279), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6283), 2, + anon_sym_get, + anon_sym_set, + STATE(3895), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [186762] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(6265), 1, + anon_sym_STAR, + ACTIONS(6267), 1, + anon_sym_EQ, ACTIONS(6275), 1, anon_sym_LBRACK, ACTIONS(6277), 1, + anon_sym_async, + ACTIONS(6281), 1, anon_sym_readonly, - ACTIONS(4763), 2, + ACTIONS(4752), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(6269), 2, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -280308,7 +280706,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -280324,32 +280722,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [186469] = 4, + [186830] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(4831), 1, + anon_sym_extends, + ACTIONS(5152), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(5155), 3, + anon_sym_QMARK, anon_sym_AMP, - ACTIONS(5759), 13, + anon_sym_PIPE, + ACTIONS(3790), 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_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5761), 24, + ACTIONS(3794), 20, 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, @@ -280367,34 +280768,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [186517] = 5, + [186882] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 3, - anon_sym_QMARK, + ACTIONS(6672), 1, anon_sym_AMP, + ACTIONS(6674), 1, anon_sym_PIPE, - ACTIONS(5046), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6676), 1, anon_sym_extends, - ACTIONS(3796), 11, + ACTIONS(5995), 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(3800), 20, + ACTIONS(5997), 23, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -280413,12 +280814,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186567] = 4, + [186934] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, + ACTIONS(6680), 1, anon_sym_AMP, - ACTIONS(5748), 13, + ACTIONS(6682), 1, + anon_sym_PIPE, + ACTIONS(6684), 1, + anon_sym_extends, + ACTIONS(5995), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280427,18 +280832,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 24, - sym__automatic_semicolon, + ACTIONS(5997), 23, anon_sym_as, + anon_sym_COMMA, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DOT, + anon_sym_EQ_GT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, @@ -280456,37 +280860,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [186615] = 6, + [186986] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(4795), 1, + anon_sym_DOT, + ACTIONS(4797), 1, + anon_sym_QMARK_DOT, + ACTIONS(5045), 3, + anon_sym_QMARK, anon_sym_AMP, - ACTIONS(6678), 1, anon_sym_PIPE, - ACTIONS(6680), 1, + ACTIONS(5047), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_extends, - ACTIONS(5209), 12, + ACTIONS(1998), 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_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 23, + ACTIONS(2000), 18, 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, anon_sym_GT_GT_GT, @@ -280503,18 +280907,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186667] = 5, + [187040] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 2, + ACTIONS(6672), 1, anon_sym_AMP, + ACTIONS(6674), 1, anon_sym_PIPE, - ACTIONS(5046), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6676), 1, anon_sym_extends, - ACTIONS(3796), 12, + ACTIONS(5256), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280527,9 +280929,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 20, + ACTIONS(5258), 23, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -280548,19 +280953,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186717] = 6, + [187092] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 1, - anon_sym_extends, - ACTIONS(5170), 2, + ACTIONS(6672), 1, anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(5167), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(3796), 12, + ACTIONS(5965), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280569,13 +280967,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(3800), 20, + ACTIONS(5967), 24, + sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -280594,16 +280996,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186769] = 6, + anon_sym_extends, + [187140] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, + ACTIONS(6672), 1, anon_sym_AMP, - ACTIONS(6684), 1, + ACTIONS(6674), 1, anon_sym_PIPE, - ACTIONS(6686), 1, + ACTIONS(6676), 1, anon_sym_extends, - ACTIONS(5209), 12, + ACTIONS(5181), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280616,7 +281019,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 23, + ACTIONS(5183), 23, sym__automatic_semicolon, anon_sym_as, anon_sym_LPAREN, @@ -280640,12 +281043,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [186821] = 4, + [187192] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(5065), 2, anon_sym_AMP, - ACTIONS(5748), 13, + anon_sym_PIPE, + ACTIONS(5067), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + ACTIONS(3790), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -280654,18 +281063,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 24, + ACTIONS(3794), 20, 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, @@ -280683,86 +281088,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [186869] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(4730), 1, - anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(6552), 2, - sym_number, - sym_private_property_identifier, - STATE(4398), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [186933] = 12, + [187242] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(6601), 1, anon_sym_STAR, - ACTIONS(4760), 2, + ACTIONS(4756), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(6552), 2, + ACTIONS(6611), 2, sym_number, sym_private_property_identifier, - ACTIONS(6554), 2, + ACTIONS(6613), 2, anon_sym_get, anon_sym_set, - STATE(4398), 3, + STATE(4325), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -280770,7 +281122,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -280788,127 +281140,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [186997] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4789), 1, - anon_sym_DOT, - ACTIONS(4791), 1, - anon_sym_QMARK_DOT, - ACTIONS(4853), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(4855), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - ACTIONS(2060), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(2062), 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, - [187051] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6676), 1, - anon_sym_AMP, - ACTIONS(6678), 1, - anon_sym_PIPE, - ACTIONS(5868), 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(5870), 24, - 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, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [187101] = 13, + [187306] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6265), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(6601), 1, anon_sym_STAR, - ACTIONS(6556), 1, + ACTIONS(6603), 1, anon_sym_async, - ACTIONS(4760), 2, + ACTIONS(6609), 1, + anon_sym_readonly, + ACTIONS(4756), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(6558), 2, + ACTIONS(6605), 2, sym_number, sym_private_property_identifier, - ACTIONS(6562), 2, + ACTIONS(6607), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -280916,13 +281178,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -280933,42 +281194,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [187167] = 12, + [187374] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6265), 1, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6285), 1, anon_sym_LBRACK, - ACTIONS(6714), 1, + ACTIONS(6601), 1, anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6603), 1, anon_sym_async, - ACTIONS(6722), 1, - anon_sym_abstract, - ACTIONS(6718), 2, + ACTIONS(4756), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6605), 2, sym_number, sym_private_property_identifier, - ACTIONS(6720), 2, + ACTIONS(6607), 2, anon_sym_get, anon_sym_set, - STATE(3858), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 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(4704), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -280985,35 +281247,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [187231] = 6, + [187440] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(4908), 1, + anon_sym_extends, + ACTIONS(5223), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + ACTIONS(5226), 3, + anon_sym_QMARK, anon_sym_AMP, - ACTIONS(6678), 1, anon_sym_PIPE, - ACTIONS(6680), 1, - anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(3790), 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_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 23, + ACTIONS(3794), 20, 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, @@ -281031,13 +281293,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [187283] = 4, + [187492] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6682), 1, - anon_sym_AMP, - ACTIONS(5759), 13, + ACTIONS(6726), 1, + sym_identifier, + ACTIONS(4730), 16, anon_sym_STAR, + anon_sym_as, anon_sym_BANG, anon_sym_in, anon_sym_LT, @@ -281045,14 +281308,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(5761), 24, + anon_sym_instanceof, + ACTIONS(4734), 21, sym__automatic_semicolon, - anon_sym_as, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_LBRACK, @@ -281070,86 +281334,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, - anon_sym_extends, - [187331] = 25, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5286), 1, - anon_sym_BANG, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(5292), 1, - anon_sym_LBRACK, - ACTIONS(5298), 1, - anon_sym_DOT, - ACTIONS(5300), 1, - anon_sym_QMARK_DOT, - ACTIONS(5722), 1, - anon_sym_as, - ACTIONS(6518), 1, - anon_sym_in, - ACTIONS(6522), 1, - anon_sym_LT, - ACTIONS(6526), 1, - anon_sym_QMARK, - ACTIONS(6528), 1, - anon_sym_AMP_AMP, - ACTIONS(6534), 1, - anon_sym_AMP, - ACTIONS(6536), 1, - anon_sym_PIPE, - ACTIONS(6540), 1, - anon_sym_STAR_STAR, - ACTIONS(6544), 1, - anon_sym_QMARK_QMARK, - STATE(4823), 1, - sym_type_arguments, - ACTIONS(4927), 2, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - ACTIONS(6530), 2, - anon_sym_PIPE_PIPE, - anon_sym_CARET, - ACTIONS(6538), 2, - anon_sym_PLUS, - anon_sym_DASH, - STATE(2917), 2, - sym_template_string, - sym_arguments, - ACTIONS(6516), 3, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_GT_GT, - ACTIONS(6524), 3, - anon_sym_GT, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(6532), 3, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_PERCENT, - ACTIONS(6542), 5, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_instanceof, - [187421] = 6, + [187540] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6676), 1, + ACTIONS(6680), 1, anon_sym_AMP, - ACTIONS(6678), 1, + ACTIONS(6682), 1, anon_sym_PIPE, - ACTIONS(6680), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(5975), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281162,7 +281357,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5075), 23, + ACTIONS(5977), 24, anon_sym_as, anon_sym_COMMA, anon_sym_LPAREN, @@ -281186,252 +281381,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [187473] = 14, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6550), 1, - anon_sym_STAR, - ACTIONS(6556), 1, - anon_sym_async, - ACTIONS(6560), 1, - anon_sym_readonly, - ACTIONS(4760), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6558), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6562), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [187541] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4879), 1, anon_sym_extends, - ACTIONS(5167), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - ACTIONS(5170), 3, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - ACTIONS(3796), 11, - anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, - anon_sym_LT, - anon_sym_GT, - anon_sym_SLASH, - anon_sym_GT_GT, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(3800), 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, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [187593] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6726), 1, - anon_sym_static, - ACTIONS(6728), 1, - anon_sym_readonly, - ACTIONS(6730), 1, - anon_sym_abstract, - STATE(3793), 1, - sym_accessibility_modifier, - ACTIONS(6724), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4724), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4019), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 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(4704), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [187659] = 17, + [187590] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2372), 1, - anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2884), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [187732] = 15, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, + ACTIONS(4756), 2, anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - ACTIONS(6734), 1, anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(6611), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, + STATE(4325), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281439,6 +281419,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -281449,44 +281431,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [187801] = 9, + [187649] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4673), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, - aux_sym_object_repeat1, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, + ACTIONS(2105), 1, anon_sym_SQUOTE, + ACTIONS(6275), 1, + anon_sym_LBRACK, + ACTIONS(6728), 1, + anon_sym_STAR, + ACTIONS(6730), 1, + anon_sym_async, + ACTIONS(6732), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 7, + ACTIONS(6734), 2, + anon_sym_get, + anon_sym_set, + STATE(3874), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(2946), 19, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -281497,38 +281481,80 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [187858] = 10, + [187710] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6736), 1, + anon_sym_AMP, + ACTIONS(6738), 1, + anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_extends, + ACTIONS(5920), 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(5922), 22, + anon_sym_as, + anon_sym_LPAREN, anon_sym_LBRACK, - ACTIONS(6714), 1, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [187761] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4673), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2946), 6, anon_sym_STAR, - ACTIONS(6736), 2, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6738), 2, - anon_sym_get, - anon_sym_set, - STATE(4324), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 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(2884), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281536,6 +281562,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -281546,32 +281574,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [187917] = 12, + [187818] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6714), 1, + ACTIONS(6742), 1, anon_sym_STAR, - ACTIONS(6716), 1, - anon_sym_async, - ACTIONS(6740), 1, - anon_sym_readonly, - ACTIONS(6718), 2, + ACTIONS(6744), 2, sym_number, sym_private_property_identifier, - ACTIONS(6720), 2, + ACTIONS(6746), 2, anon_sym_get, anon_sym_set, - STATE(3858), 3, + STATE(4391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -281581,12 +281605,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4704), 15, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -281597,45 +281623,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [187980] = 16, + [187877] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2366), 1, - anon_sym_RBRACE, - ACTIONS(2886), 1, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + ACTIONS(6750), 1, + anon_sym_RBRACE, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281652,47 +281678,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188051] = 15, + [187948] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2386), 1, + ACTIONS(2374), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -281706,75 +281733,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188120] = 9, + [188019] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4695), 1, + ACTIONS(4688), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [188177] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4701), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -281782,7 +281761,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281802,47 +281781,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188234] = 17, + [188076] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2386), 1, + ACTIONS(2374), 1, anon_sym_RBRACE, - ACTIONS(2886), 1, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_readonly, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281858,35 +281837,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188307] = 9, + [188149] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(4680), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2374), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2948), 6, - anon_sym_STAR, + ACTIONS(6269), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, + ACTIONS(6748), 1, + anon_sym_STAR, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 7, - sym__automatic_semicolon, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -281894,8 +281881,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -281906,12 +281891,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188364] = 4, + [188218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, + ACTIONS(6736), 1, anon_sym_AMP, - ACTIONS(5748), 13, + ACTIONS(5916), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -281925,7 +281910,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 23, + ACTIONS(5918), 23, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -281949,42 +281934,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_BQUOTE, anon_sym_extends, - [188411] = 10, + [188265] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(2380), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6744), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6746), 2, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(6748), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4413), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -281998,51 +281989,97 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188470] = 16, + [188336] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6736), 1, + anon_sym_AMP, + ACTIONS(6738), 1, + anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_extends, + ACTIONS(5003), 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(5005), 22, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [188387] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, + ACTIONS(2380), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6750), 1, - anon_sym_RBRACE, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -282053,51 +282090,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188541] = 16, + [188460] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6752), 1, + ACTIONS(6750), 1, anon_sym_RBRACE, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -282108,108 +282146,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188612] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6754), 1, - anon_sym_RPAREN, - ACTIONS(6756), 1, - anon_sym_LBRACK, - ACTIONS(6758), 1, - sym_this, - ACTIONS(6760), 1, - anon_sym_readonly, - STATE(3722), 1, - aux_sym_export_statement_repeat1, - STATE(3792), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(4231), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2936), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5052), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [188685] = 17, + [188533] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2388), 1, + ACTIONS(2380), 1, anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -282220,51 +282200,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188758] = 16, + [188602] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2388), 1, + ACTIONS(4670), 1, anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5011), 1, + STATE(5045), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -282275,99 +282248,46 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188829] = 16, + [188659] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2386), 1, - anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6752), 1, anon_sym_STAR, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(6754), 1, + anon_sym_async, + ACTIONS(6756), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(6758), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(3887), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2884), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [188900] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4670), 1, + ACTIONS(4666), 9, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4683), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 7, - sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -282378,64 +282298,72 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [188957] = 9, + [188720] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4698), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(2948), 6, - anon_sym_STAR, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6760), 1, + anon_sym_RPAREN, + ACTIONS(6762), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + ACTIONS(6764), 1, + sym_this, + ACTIONS(6766), 1, + anon_sym_readonly, + STATE(3723), 1, + aux_sym_export_statement_repeat1, + STATE(3793), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(4219), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5055), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189014] = 6, + [188793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, + ACTIONS(6768), 1, anon_sym_AMP, - ACTIONS(6762), 1, + ACTIONS(6770), 1, anon_sym_PIPE, - ACTIONS(6764), 1, + ACTIONS(6772), 1, anon_sym_extends, - ACTIONS(5209), 12, + ACTIONS(5995), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282448,12 +282376,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 22, + ACTIONS(5997), 22, anon_sym_as, anon_sym_LPAREN, 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, @@ -282471,43 +282399,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [189065] = 15, + [188844] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2374), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4914), 1, + ACTIONS(6750), 1, + anon_sym_RBRACE, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -282525,52 +282453,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189134] = 17, + [188913] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2374), 1, + ACTIONS(4676), 1, anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -282581,105 +282501,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189207] = 15, + [188970] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6768), 1, + anon_sym_AMP, + ACTIONS(6770), 1, + anon_sym_PIPE, + ACTIONS(5975), 12, anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 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(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [189276] = 16, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5977), 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + 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, + [189019] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2374), 1, + ACTIONS(4691), 1, anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -282690,52 +282593,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189347] = 17, + [189076] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6752), 1, anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(2850), 2, + ACTIONS(6774), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(6776), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4384), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 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(2884), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -282746,16 +282642,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189420] = 6, + [189135] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, + ACTIONS(6736), 1, anon_sym_AMP, - ACTIONS(6768), 1, + ACTIONS(6738), 1, anon_sym_PIPE, - ACTIONS(6770), 1, + ACTIONS(6740), 1, anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(5995), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -282768,12 +282664,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5864), 22, + ACTIONS(5997), 22, anon_sym_as, anon_sym_LPAREN, 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, @@ -282791,203 +282687,225 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [189471] = 16, + [189186] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6736), 1, + anon_sym_AMP, + ACTIONS(6738), 1, + anon_sym_PIPE, + ACTIONS(5975), 12, anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 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(2884), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [189542] = 10, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5977), 23, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [189235] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, + ACTIONS(6768), 1, + anon_sym_AMP, + ACTIONS(6770), 1, + anon_sym_PIPE, ACTIONS(6772), 1, + anon_sym_extends, + ACTIONS(5256), 12, anon_sym_STAR, - ACTIONS(6774), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6776), 2, - anon_sym_get, - anon_sym_set, - STATE(4346), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 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(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [189601] = 12, + anon_sym_GT_GT, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5258), 22, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [189286] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6778), 1, + ACTIONS(6736), 1, + anon_sym_AMP, + ACTIONS(6738), 1, + anon_sym_PIPE, + ACTIONS(6740), 1, + anon_sym_extends, + ACTIONS(5256), 12, anon_sym_STAR, - ACTIONS(6780), 1, - anon_sym_async, - ACTIONS(6784), 1, - anon_sym_readonly, - ACTIONS(6782), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6786), 2, - anon_sym_get, - anon_sym_set, - STATE(3885), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + 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(5258), 22, + anon_sym_as, anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [189337] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6736), 1, + anon_sym_AMP, + ACTIONS(5965), 13, + anon_sym_STAR, + anon_sym_BANG, + anon_sym_in, anon_sym_LT, + anon_sym_GT, + anon_sym_SLASH, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [189664] = 17, + anon_sym_GT_GT, + anon_sym_PIPE, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5967), 23, + anon_sym_as, + anon_sym_LPAREN, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DOT, + anon_sym_QMARK_DOT, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_GT_GT_GT, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + anon_sym_extends, + [189384] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(662), 1, - anon_sym_RPAREN, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(6758), 1, + ACTIONS(6764), 1, sym_this, - ACTIONS(6760), 1, + ACTIONS(6766), 1, anon_sym_readonly, - STATE(3722), 1, + ACTIONS(6778), 1, + anon_sym_RPAREN, + STATE(3723), 1, aux_sym_export_statement_repeat1, - STATE(3792), 1, + STATE(3793), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(4231), 2, + STATE(4219), 2, sym_pattern, sym__parameter_name, - ACTIONS(2936), 3, + ACTIONS(2934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5043), 3, + STATE(5460), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1612), 14, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283002,14 +282920,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189737] = 5, + [189457] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, + ACTIONS(6736), 1, anon_sym_AMP, - ACTIONS(6768), 1, + ACTIONS(6738), 1, anon_sym_PIPE, - ACTIONS(5868), 12, + ACTIONS(6740), 1, + anon_sym_extends, + ACTIONS(5181), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283022,12 +282942,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5870), 23, + ACTIONS(5183), 22, anon_sym_as, anon_sym_LPAREN, 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, @@ -283045,36 +282965,92 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [189786] = 9, + [189508] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, - anon_sym_COMMA, - ACTIONS(4692), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6780), 1, + anon_sym_STAR, + ACTIONS(6782), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 7, + ACTIONS(6784), 2, + anon_sym_get, + anon_sym_set, + STATE(4408), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(2946), 19, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [189567] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2390), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, + anon_sym_STAR, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283082,8 +283058,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -283094,16 +283068,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [189843] = 6, + [189636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, - anon_sym_AMP, ACTIONS(6768), 1, - anon_sym_PIPE, - ACTIONS(6770), 1, - anon_sym_extends, - ACTIONS(5254), 12, + anon_sym_AMP, + ACTIONS(5965), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283112,11 +283082,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 22, + ACTIONS(5967), 23, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -283139,65 +283110,17 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [189894] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6788), 1, - anon_sym_STAR, - ACTIONS(6790), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6792), 2, - anon_sym_get, - anon_sym_set, - STATE(4365), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 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(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [189953] = 6, + anon_sym_extends, + [189683] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, + ACTIONS(6768), 1, anon_sym_AMP, - ACTIONS(6762), 1, + ACTIONS(6770), 1, anon_sym_PIPE, - ACTIONS(6764), 1, + ACTIONS(6772), 1, anon_sym_extends, - ACTIONS(5254), 12, + ACTIONS(5181), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283210,12 +283133,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5256), 22, + ACTIONS(5183), 22, anon_sym_as, anon_sym_LPAREN, 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, @@ -283233,45 +283156,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [190004] = 10, + [189734] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(2390), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6794), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6796), 2, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(6798), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4366), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -283282,98 +283212,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190063] = 17, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, - anon_sym_LBRACK, - ACTIONS(6758), 1, - sym_this, - ACTIONS(6760), 1, - anon_sym_readonly, - ACTIONS(6800), 1, - anon_sym_RPAREN, - STATE(3722), 1, - aux_sym_export_statement_repeat1, - STATE(3792), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(4231), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2936), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4945), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 14, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - 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, - [190136] = 10, + [189807] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(2390), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6704), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6802), 2, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(6804), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4347), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -283387,12 +283267,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190195] = 4, + [189878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, + ACTIONS(6768), 1, anon_sym_AMP, - ACTIONS(5748), 13, + ACTIONS(6770), 1, + anon_sym_PIPE, + ACTIONS(6772), 1, + anon_sym_extends, + ACTIONS(5920), 12, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283401,12 +283285,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, - anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5750), 23, + ACTIONS(5922), 22, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -283429,66 +283312,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [190242] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(4760), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6552), 2, - sym_number, - sym_private_property_identifier, - STATE(4398), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [190301] = 6, + [189929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, - anon_sym_AMP, ACTIONS(6768), 1, - anon_sym_PIPE, - ACTIONS(6770), 1, - anon_sym_extends, - ACTIONS(5209), 12, + anon_sym_AMP, + ACTIONS(5916), 13, anon_sym_STAR, anon_sym_BANG, anon_sym_in, @@ -283497,11 +283326,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SLASH, anon_sym_QMARK, anon_sym_GT_GT, + anon_sym_PIPE, anon_sym_PLUS, anon_sym_DASH, anon_sym_EQ_EQ, anon_sym_BANG_EQ, - ACTIONS(5211), 22, + ACTIONS(5918), 23, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, @@ -283524,46 +283354,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [190352] = 11, + anon_sym_extends, + [189976] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4685), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6806), 1, - anon_sym_STAR, - ACTIONS(6808), 1, - anon_sym_async, - ACTIONS(6810), 2, sym_number, sym_private_property_identifier, - ACTIONS(6812), 2, - anon_sym_get, - anon_sym_set, - STATE(3863), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 7, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_LPAREN, anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -283574,28 +283403,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190413] = 10, + [190033] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6814), 1, + ACTIONS(6686), 1, anon_sym_STAR, - ACTIONS(6816), 2, + ACTIONS(6688), 1, + anon_sym_async, + ACTIONS(6786), 1, + anon_sym_readonly, + ACTIONS(6690), 2, sym_number, sym_private_property_identifier, - ACTIONS(6818), 2, + ACTIONS(6692), 2, anon_sym_get, anon_sym_set, - STATE(4339), 3, + STATE(3858), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -283605,14 +283438,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -283623,29 +283454,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190472] = 4, + [190096] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6686), 1, + anon_sym_STAR, + ACTIONS(6788), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 11, + ACTIONS(6790), 2, + anon_sym_get, + anon_sym_set, + STATE(4337), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(2946), 20, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283653,8 +283493,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -283665,49 +283503,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [190519] = 17, + [190155] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(6758), 1, + ACTIONS(6764), 1, sym_this, - ACTIONS(6760), 1, + ACTIONS(6766), 1, anon_sym_readonly, - ACTIONS(6820), 1, + ACTIONS(6792), 1, anon_sym_RPAREN, - STATE(3722), 1, + STATE(3723), 1, aux_sym_export_statement_repeat1, - STATE(3792), 1, + STATE(3793), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(4231), 2, + STATE(4219), 2, sym_pattern, sym__parameter_name, - ACTIONS(2936), 3, + ACTIONS(2934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5456), 3, + STATE(5460), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1612), 14, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283722,30 +283559,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190592] = 11, + [190228] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6794), 1, + anon_sym_STAR, + ACTIONS(6796), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6798), 2, + anon_sym_get, + anon_sym_set, + STATE(4318), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [190287] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6704), 1, + ACTIONS(6712), 1, anon_sym_STAR, - ACTIONS(6706), 1, + ACTIONS(6714), 1, anon_sym_async, - ACTIONS(6708), 2, + ACTIONS(6800), 1, + anon_sym_readonly, + ACTIONS(6716), 2, sym_number, sym_private_property_identifier, - ACTIONS(6710), 2, + ACTIONS(6718), 2, anon_sym_get, anon_sym_set, STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -283755,13 +283643,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4704), 16, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -283772,38 +283659,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190653] = 12, + [190350] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(5331), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(4622), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6698), 2, + ACTIONS(6802), 1, + anon_sym_STAR, + ACTIONS(6804), 2, sym_number, sym_private_property_identifier, - STATE(5152), 3, - sym_object_assignment_pattern, - sym_rest_pattern, - sym_pair_pattern, - STATE(5622), 3, + ACTIONS(6806), 2, + anon_sym_get, + anon_sym_set, + STATE(4317), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5659), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - ACTIONS(6822), 19, + ACTIONS(4666), 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(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283811,8 +283698,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -283823,47 +283708,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190716] = 15, + [190409] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2388), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6742), 1, anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, - aux_sym_object_repeat1, - ACTIONS(2850), 2, + ACTIONS(6808), 1, + anon_sym_async, + ACTIONS(6810), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(6812), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(3857), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 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(2884), 17, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -283877,48 +283758,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190785] = 17, + [190470] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, + ACTIONS(662), 1, + anon_sym_RPAREN, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(6758), 1, + ACTIONS(6764), 1, sym_this, - ACTIONS(6760), 1, + ACTIONS(6766), 1, + anon_sym_readonly, + STATE(3723), 1, + aux_sym_export_statement_repeat1, + STATE(3793), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(4219), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5069), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [190543] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, + ACTIONS(6764), 1, + sym_this, + ACTIONS(6766), 1, anon_sym_readonly, - ACTIONS(6824), 1, + ACTIONS(6814), 1, anon_sym_RPAREN, - STATE(3722), 1, + STATE(3723), 1, aux_sym_export_statement_repeat1, - STATE(3792), 1, + STATE(3793), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(4231), 2, + STATE(4219), 2, sym_pattern, sym__parameter_name, - ACTIONS(2936), 3, + ACTIONS(2934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5456), 3, + STATE(5460), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1612), 14, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283933,43 +283870,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190858] = 15, + [190616] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2376), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + ACTIONS(6816), 1, + anon_sym_RBRACE, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -283987,44 +283924,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190927] = 9, + [190685] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(4686), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, + anon_sym_STAR, + ACTIONS(6816), 1, + anon_sym_RBRACE, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 7, - sym__automatic_semicolon, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -284035,42 +283980,48 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [190984] = 10, + [190758] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6806), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6826), 2, + ACTIONS(6816), 1, + anon_sym_RBRACE, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(6828), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4406), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -284084,30 +284035,73 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191043] = 11, + [190829] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6768), 1, + anon_sym_AMP, + ACTIONS(6770), 1, + anon_sym_PIPE, + ACTIONS(6772), 1, + anon_sym_extends, + ACTIONS(5003), 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(5005), 22, + 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, + anon_sym_LT_LT, + anon_sym_CARET, + anon_sym_PERCENT, + anon_sym_STAR_STAR, + anon_sym_LT_EQ, + anon_sym_EQ_EQ_EQ, + anon_sym_BANG_EQ_EQ, + anon_sym_GT_EQ, + anon_sym_QMARK_QMARK, + anon_sym_instanceof, + anon_sym_PLUS_PLUS, + anon_sym_DASH_DASH, + anon_sym_BQUOTE, + [190880] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6744), 1, + ACTIONS(6818), 1, anon_sym_STAR, - ACTIONS(6830), 1, - anon_sym_async, - ACTIONS(6832), 2, + ACTIONS(6820), 2, sym_number, sym_private_property_identifier, - ACTIONS(6834), 2, + ACTIONS(6822), 2, anon_sym_get, anon_sym_set, - STATE(3855), 3, + STATE(4409), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -284117,10 +284111,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4704), 16, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -284134,43 +284129,35 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191104] = 15, + [190939] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2366), 1, + ACTIONS(4682), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 7, + sym__automatic_semicolon, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284178,6 +284165,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -284188,52 +284177,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191173] = 17, + [190996] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2366), 1, + ACTIONS(2388), 1, anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -284244,34 +284231,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191246] = 6, + [191065] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6766), 1, - anon_sym_AMP, - ACTIONS(6768), 1, - anon_sym_PIPE, - ACTIONS(6770), 1, - anon_sym_extends, - ACTIONS(5073), 12, + ACTIONS(3814), 1, + anon_sym_EQ, + ACTIONS(4595), 1, + anon_sym_in, + ACTIONS(4598), 1, + anon_sym_of, + ACTIONS(3790), 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(5075), 22, + ACTIONS(3794), 21, 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, @@ -284289,27 +284276,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [191297] = 9, + [191116] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4689), 1, + ACTIONS(4679), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -284317,7 +284304,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284337,45 +284324,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191354] = 16, + [191173] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6712), 1, anon_sym_STAR, - ACTIONS(6734), 1, - anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(6714), 1, + anon_sym_async, + ACTIONS(6716), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(6718), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(3854), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 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(2884), 16, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284392,96 +284374,94 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191425] = 17, + [191234] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6758), 1, - sym_this, - ACTIONS(6760), 1, - anon_sym_readonly, - ACTIONS(6836), 1, - anon_sym_RPAREN, - STATE(3722), 1, - aux_sym_export_statement_repeat1, - STATE(3792), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(4231), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2936), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5456), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 14, + ACTIONS(6712), 1, + anon_sym_STAR, + ACTIONS(6824), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6826), 2, + anon_sym_get, + anon_sym_set, + STATE(4363), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, + anon_sym_readonly, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191498] = 11, + [191293] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6265), 1, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6556), 1, - anon_sym_async, - ACTIONS(6558), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(6562), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284498,52 +284478,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191559] = 17, + [191364] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6734), 1, - anon_sym_RBRACE, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -284554,42 +284533,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191632] = 12, + [191435] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6550), 1, - anon_sym_STAR, - ACTIONS(6556), 1, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(6560), 1, + ACTIONS(2896), 1, anon_sym_readonly, - ACTIONS(6558), 2, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, + anon_sym_STAR, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(6562), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(3887), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284605,47 +284589,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191695] = 17, + [191508] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(2890), 1, + ACTIONS(2896), 1, anon_sym_readonly, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6750), 1, - anon_sym_RBRACE, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(5010), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -284661,48 +284645,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191768] = 16, + [191581] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6838), 1, - anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -284716,92 +284699,107 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191839] = 6, + [191650] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, - anon_sym_AMP, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, ACTIONS(6762), 1, - anon_sym_PIPE, - ACTIONS(6764), 1, - anon_sym_extends, - ACTIONS(5073), 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(5075), 22, - anon_sym_as, - anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [191890] = 12, + ACTIONS(6764), 1, + sym_this, + ACTIONS(6766), 1, + anon_sym_readonly, + ACTIONS(6828), 1, + anon_sym_RPAREN, + STATE(3723), 1, + aux_sym_export_statement_repeat1, + STATE(3793), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(4219), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4951), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [191723] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(2372), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6840), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6842), 1, - anon_sym_async, - ACTIONS(6846), 1, - anon_sym_readonly, - ACTIONS(6844), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(6848), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(3894), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 15, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -284812,52 +284810,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [191953] = 17, + [191794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1654), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - ACTIONS(6752), 1, - anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 11, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_BANG, anon_sym_LPAREN, + anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -284868,181 +284852,98 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192026] = 6, + anon_sym_abstract, + [191841] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1946), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6167), 1, - anon_sym_in, - ACTIONS(6170), 1, - anon_sym_of, - ACTIONS(1944), 13, - 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(1948), 21, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(6269), 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, - [192077] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6766), 1, - anon_sym_AMP, - ACTIONS(5759), 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5761), 23, - anon_sym_as, + ACTIONS(4752), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6271), 2, + sym_number, + sym_private_property_identifier, + STATE(4330), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - 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, - [192124] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4968), 1, - anon_sym_EQ, - ACTIONS(6228), 1, - anon_sym_in, - ACTIONS(6231), 1, - anon_sym_of, - ACTIONS(4966), 13, - anon_sym_STAR, - anon_sym_BANG, + 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(4970), 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, - [192175] = 17, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [191900] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(6758), 1, + ACTIONS(6764), 1, sym_this, - ACTIONS(6760), 1, + ACTIONS(6766), 1, anon_sym_readonly, - ACTIONS(6850), 1, + ACTIONS(6830), 1, anon_sym_RPAREN, - STATE(3722), 1, + STATE(3723), 1, aux_sym_export_statement_repeat1, - STATE(3792), 1, + STATE(3793), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(4231), 2, + STATE(4219), 2, sym_pattern, sym__parameter_name, - ACTIONS(2936), 3, + ACTIONS(2934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5456), 3, + STATE(5460), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1612), 14, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285057,50 +284958,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192248] = 15, + [191973] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + ACTIONS(2372), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6752), 1, - anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285111,43 +285014,99 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192317] = 15, + [192046] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, + ACTIONS(6764), 1, + sym_this, + ACTIONS(6766), 1, + anon_sym_readonly, + ACTIONS(6832), 1, + anon_sym_RPAREN, + STATE(3723), 1, + aux_sym_export_statement_repeat1, + STATE(3793), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(4219), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5460), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 14, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + 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, + [192119] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, ACTIONS(2372), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(5091), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285165,52 +285124,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192386] = 17, + [192188] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2376), 1, - anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(5318), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(4617), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6710), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, + STATE(5260), 3, + sym_object_assignment_pattern, + sym_rest_pattern, + sym_pair_pattern, + STATE(5632), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2884), 15, + STATE(5669), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + ACTIONS(6834), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285221,52 +285175,51 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192459] = 17, + [192251] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6838), 1, + ACTIONS(6836), 1, anon_sym_RBRACE, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285277,118 +285230,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192532] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4869), 1, - anon_sym_EQ, - ACTIONS(6293), 1, - anon_sym_in, - ACTIONS(6296), 1, - anon_sym_of, - ACTIONS(4867), 13, - 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(4871), 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, - [192583] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6766), 1, - anon_sym_AMP, - ACTIONS(6768), 1, - anon_sym_PIPE, - ACTIONS(6770), 1, - anon_sym_extends, - ACTIONS(5765), 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(5767), 22, - 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, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - [192634] = 10, + [192322] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6550), 1, + ACTIONS(6838), 1, anon_sym_STAR, - ACTIONS(6552), 2, + ACTIONS(6840), 1, + anon_sym_async, + ACTIONS(6844), 1, + anon_sym_readonly, + ACTIONS(6842), 2, sym_number, sym_private_property_identifier, - ACTIONS(6554), 2, + ACTIONS(6846), 2, anon_sym_get, anon_sym_set, - STATE(4398), 3, + STATE(3861), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -285398,14 +285265,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285416,85 +285281,42 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192693] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6742), 1, - anon_sym_AMP, - ACTIONS(5759), 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_PIPE, - anon_sym_PLUS, - anon_sym_DASH, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - ACTIONS(5761), 23, - anon_sym_as, - anon_sym_LPAREN, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DOT, - anon_sym_QMARK_DOT, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_GT_GT_GT, - anon_sym_LT_LT, - anon_sym_CARET, - anon_sym_PERCENT, - anon_sym_STAR_STAR, - anon_sym_LT_EQ, - anon_sym_EQ_EQ_EQ, - anon_sym_BANG_EQ_EQ, - anon_sym_GT_EQ, - anon_sym_QMARK_QMARK, - anon_sym_instanceof, - anon_sym_PLUS_PLUS, - anon_sym_DASH_DASH, - anon_sym_BQUOTE, - anon_sym_extends, - [192740] = 12, + [192385] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6704), 1, + ACTIONS(6728), 1, anon_sym_STAR, - ACTIONS(6706), 1, + ACTIONS(6730), 1, anon_sym_async, - ACTIONS(6852), 1, + ACTIONS(6848), 1, anon_sym_readonly, - ACTIONS(6708), 2, + ACTIONS(6732), 2, sym_number, sym_private_property_identifier, - ACTIONS(6710), 2, + ACTIONS(6734), 2, anon_sym_get, anon_sym_set, - STATE(3854), 3, + STATE(3874), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 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(4704), 15, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285510,48 +285332,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192803] = 16, + [192448] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2376), 1, + ACTIONS(2396), 1, anon_sym_RBRACE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -285565,47 +285386,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192874] = 15, + [192517] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6750), 1, - anon_sym_RBRACE, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(5010), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [192590] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(2892), 1, anon_sym_async, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, + anon_sym_STAR, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2882), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, sym_identifier, anon_sym_static, anon_sym_readonly, @@ -285619,30 +285497,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [192943] = 11, + [192661] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6840), 1, + ACTIONS(6794), 1, anon_sym_STAR, - ACTIONS(6842), 1, + ACTIONS(6850), 1, anon_sym_async, - ACTIONS(6844), 2, + ACTIONS(6852), 2, sym_number, sym_private_property_identifier, - ACTIONS(6848), 2, + ACTIONS(6854), 2, anon_sym_get, anon_sym_set, - STATE(3894), 3, + STATE(3870), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -285652,7 +285530,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285669,36 +285547,88 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193004] = 10, + [192722] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(4763), 2, + ACTIONS(6838), 1, + anon_sym_STAR, + ACTIONS(6840), 1, + anon_sym_async, + ACTIONS(6842), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6846), 2, + anon_sym_get, + anon_sym_set, + STATE(3861), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 9, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(6206), 2, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(4694), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [192783] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6838), 1, + anon_sym_STAR, + ACTIONS(6856), 2, sym_number, sym_private_property_identifier, - STATE(4375), 3, + ACTIONS(6858), 2, + anon_sym_get, + anon_sym_set, + STATE(4349), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 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(2884), 19, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285706,8 +285636,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -285718,43 +285646,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193063] = 15, + [192842] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(6838), 1, + ACTIONS(6860), 1, anon_sym_RBRACE, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285772,93 +285700,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193132] = 6, + [192911] = 17, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, - anon_sym_AMP, - ACTIONS(6762), 1, - anon_sym_PIPE, - ACTIONS(6764), 1, - anon_sym_extends, - ACTIONS(5862), 12, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, anon_sym_STAR, - anon_sym_BANG, - anon_sym_in, + ACTIONS(6860), 1, + anon_sym_RBRACE, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, 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(5864), 22, - anon_sym_as, - anon_sym_LPAREN, + ACTIONS(2882), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [192984] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 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, - [193183] = 17, + ACTIONS(6748), 1, + anon_sym_STAR, + ACTIONS(6860), 1, + anon_sym_RBRACE, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2882), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [193055] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(6758), 1, + ACTIONS(6764), 1, sym_this, - ACTIONS(6760), 1, + ACTIONS(6766), 1, anon_sym_readonly, - ACTIONS(6854), 1, + ACTIONS(6862), 1, anon_sym_RPAREN, - STATE(3722), 1, + STATE(3723), 1, aux_sym_export_statement_repeat1, - STATE(3792), 1, + STATE(3793), 1, sym_accessibility_modifier, STATE(3823), 1, sym_decorator, - STATE(4231), 2, + STATE(4219), 2, sym_pattern, sym__parameter_name, - ACTIONS(2936), 3, + ACTIONS(2934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5456), 3, + STATE(5460), 3, sym__formal_parameter, sym_required_parameter, sym_optional_parameter, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1612), 14, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285873,28 +285867,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193256] = 10, + [193128] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6840), 1, + ACTIONS(6728), 1, anon_sym_STAR, - ACTIONS(6856), 2, + ACTIONS(6864), 2, sym_number, sym_private_property_identifier, - ACTIONS(6858), 2, + ACTIONS(6866), 2, anon_sym_get, anon_sym_set, - STATE(4310), 3, + STATE(4322), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -285904,7 +285898,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -285922,89 +285916,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193315] = 17, + [193187] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4663), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2946), 6, + anon_sym_STAR, anon_sym_LBRACK, - ACTIONS(6758), 1, - sym_this, - ACTIONS(6760), 1, - anon_sym_readonly, - ACTIONS(6860), 1, - anon_sym_RPAREN, - STATE(3722), 1, - aux_sym_export_statement_repeat1, - STATE(3792), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(4231), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2936), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(5456), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 14, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193388] = 6, + [193244] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, - anon_sym_AMP, - ACTIONS(6762), 1, - anon_sym_PIPE, - ACTIONS(6764), 1, - anon_sym_extends, - ACTIONS(5765), 12, + ACTIONS(4845), 1, + anon_sym_EQ, + ACTIONS(6258), 1, + anon_sym_in, + ACTIONS(6261), 1, + anon_sym_of, + ACTIONS(4843), 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(5767), 22, + ACTIONS(4847), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -286023,31 +286009,78 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - [193439] = 5, + [193295] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6742), 1, + ACTIONS(5019), 1, + anon_sym_EQ, + ACTIONS(6229), 1, + anon_sym_in, + ACTIONS(6232), 1, + anon_sym_of, + ACTIONS(5017), 13, + 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, - ACTIONS(6762), 1, anon_sym_PIPE, - ACTIONS(5868), 12, + anon_sym_PLUS, + anon_sym_DASH, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + ACTIONS(5021), 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, + [193346] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1946), 1, + anon_sym_EQ, + ACTIONS(6224), 1, + anon_sym_in, + ACTIONS(6227), 1, + anon_sym_of, + ACTIONS(1944), 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(5870), 23, + ACTIONS(1948), 21, anon_sym_as, anon_sym_LPAREN, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_DOT, anon_sym_QMARK_DOT, anon_sym_AMP_AMP, @@ -286066,29 +286099,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PLUS_PLUS, anon_sym_DASH_DASH, anon_sym_BQUOTE, - anon_sym_extends, - [193488] = 10, + [193397] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6778), 1, + ACTIONS(6601), 1, anon_sym_STAR, - ACTIONS(6862), 2, + ACTIONS(6611), 2, sym_number, sym_private_property_identifier, - ACTIONS(6864), 2, + ACTIONS(6613), 2, anon_sym_get, anon_sym_set, - STATE(4367), 3, + STATE(4325), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -286098,7 +286130,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286116,30 +286148,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193547] = 11, + [193456] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6778), 1, + ACTIONS(6601), 1, anon_sym_STAR, - ACTIONS(6780), 1, + ACTIONS(6603), 1, anon_sym_async, - ACTIONS(6782), 2, + ACTIONS(6609), 1, + anon_sym_readonly, + ACTIONS(6605), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6607), 2, + anon_sym_get, + anon_sym_set, + STATE(3888), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(4694), 15, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [193519] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(6285), 1, + anon_sym_LBRACK, + ACTIONS(6601), 1, + anon_sym_STAR, + ACTIONS(6603), 1, + anon_sym_async, + ACTIONS(6605), 2, sym_number, sym_private_property_identifier, - ACTIONS(6786), 2, + ACTIONS(6607), 2, anon_sym_get, anon_sym_set, - STATE(3885), 3, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -286149,7 +286232,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286166,51 +286249,52 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193608] = 16, + [193580] = 17, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2372), 1, - anon_sym_RBRACE, - ACTIONS(2886), 1, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + ACTIONS(6836), 1, + anon_sym_RBRACE, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -286221,91 +286305,142 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193679] = 6, + [193653] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(3798), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(4607), 1, - anon_sym_in, - ACTIONS(4610), 1, - anon_sym_of, - ACTIONS(3796), 13, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, anon_sym_STAR, - anon_sym_BANG, + ACTIONS(6836), 1, + anon_sym_RBRACE, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, + anon_sym_LPAREN, + 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(3800), 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, - [193730] = 11, + ACTIONS(2882), 17, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [193722] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(5124), 13, + anon_sym_STAR, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6794), 1, - anon_sym_STAR, - ACTIONS(6866), 1, - anon_sym_async, - ACTIONS(6868), 2, sym_number, sym_private_property_identifier, - ACTIONS(6870), 2, + anon_sym_AT, + ACTIONS(5122), 23, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_class, + anon_sym_async, + sym_identifier, + sym_this, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - STATE(3878), 3, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + anon_sym_implements, + [193766] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6816), 1, + anon_sym_RBRACE, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(4704), 16, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -286316,38 +286451,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193791] = 13, + [193830] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2386), 1, + ACTIONS(2396), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286367,20 +286502,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193855] = 6, + [193894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6876), 1, - anon_sym_LPAREN, - ACTIONS(6878), 1, - anon_sym_DOT, - STATE(3717), 1, - sym_arguments, - ACTIONS(6874), 11, + ACTIONS(5027), 13, anon_sym_STAR, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_LT, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_DQUOTE, @@ -286388,7 +286519,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6872), 22, + ACTIONS(5025), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286411,38 +286542,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [193905] = 13, + anon_sym_implements, + [193938] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6750), 1, + ACTIONS(6836), 1, anon_sym_RBRACE, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286462,77 +286594,159 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [193969] = 16, + [194002] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(4736), 1, + anon_sym_COMMA, + ACTIONS(4739), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [194056] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6758), 1, - sym_this, - ACTIONS(6760), 1, + ACTIONS(6856), 2, + sym_number, + sym_private_property_identifier, + STATE(4349), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 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(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, anon_sym_readonly, - STATE(3722), 1, - aux_sym_export_statement_repeat1, - STATE(3792), 1, - sym_accessibility_modifier, - STATE(3823), 1, - sym_decorator, - STATE(4231), 2, - sym_pattern, - sym__parameter_name, - ACTIONS(2936), 3, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(5456), 3, - sym__formal_parameter, - sym_required_parameter, - sym_optional_parameter, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 14, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [194110] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6872), 1, + anon_sym_LPAREN, + ACTIONS(6874), 1, + anon_sym_DOT, + STATE(3716), 1, + sym_arguments, + ACTIONS(6870), 11, + 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, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6868), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_class, anon_sym_async, + sym_identifier, + sym_this, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194039] = 8, + anon_sym_abstract, + [194160] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6802), 2, + ACTIONS(6824), 2, sym_number, sym_private_property_identifier, - STATE(4347), 3, + STATE(4363), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -286542,7 +286756,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286562,23 +286776,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194093] = 8, + [194214] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6880), 2, + ACTIONS(6876), 2, sym_number, sym_private_property_identifier, - STATE(4362), 3, + STATE(4393), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -286588,7 +286802,58 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [194268] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2374), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286608,79 +286873,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194147] = 8, + [194332] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6882), 2, - sym_number, - sym_private_property_identifier, - STATE(4055), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(117), 1, anon_sym_COMMA, - anon_sym_BANG, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(4704), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [194201] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(2372), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6884), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4397), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286700,38 +286924,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194255] = 13, + [194396] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2372), 1, + ACTIONS(2380), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286751,33 +286975,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194319] = 8, + [194460] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6826), 2, + ACTIONS(6744), 2, sym_number, sym_private_property_identifier, - STATE(4406), 3, + STATE(4391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 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(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286797,38 +287021,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194373] = 13, + [194514] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2331), 1, + ACTIONS(2388), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(2850), 2, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286848,84 +287072,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194437] = 13, + [194578] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6734), 1, - anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [194501] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6736), 2, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4324), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, + ACTIONS(4666), 4, anon_sym_LPAREN, - anon_sym_SEMI, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286945,23 +287123,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194555] = 8, + [194642] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6862), 2, + ACTIONS(6864), 2, sym_number, sym_private_property_identifier, - STATE(4367), 3, + STATE(4322), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -286971,7 +287149,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -286991,33 +287169,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194609] = 8, + [194696] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6552), 2, + ACTIONS(6878), 2, sym_number, sym_private_property_identifier, - STATE(4398), 3, + STATE(4034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 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(2884), 19, + ACTIONS(4694), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287037,23 +287215,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194663] = 8, + [194750] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6886), 2, + ACTIONS(6880), 2, sym_number, sym_private_property_identifier, - STATE(4022), 3, + STATE(4048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -287063,58 +287241,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(4704), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [194717] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6838), 1, - anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(4694), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287134,33 +287261,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194781] = 8, + [194804] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6774), 2, + ACTIONS(6882), 2, sym_number, sym_private_property_identifier, - STATE(4346), 3, + STATE(4374), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 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(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287180,38 +287307,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194835] = 13, + [194858] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6752), 1, + ACTIONS(6750), 1, anon_sym_RBRACE, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287231,38 +287358,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194899] = 13, + [194922] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2376), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4914), 1, + ACTIONS(6860), 1, + anon_sym_RBRACE, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287282,23 +287409,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [194963] = 8, + [194986] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6856), 2, + ACTIONS(6774), 2, sym_number, sym_private_property_identifier, - STATE(4310), 3, + STATE(4384), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -287308,7 +287435,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287328,33 +287455,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195017] = 8, + [195040] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6816), 2, + ACTIONS(6796), 2, sym_number, sym_private_property_identifier, - STATE(4339), 3, + STATE(4318), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 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(2884), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287374,23 +287501,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195071] = 8, + [195094] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6790), 2, + ACTIONS(6782), 2, sym_number, sym_private_property_identifier, - STATE(4365), 3, + STATE(4408), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, @@ -287400,58 +287527,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [195125] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2388), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, - aux_sym_object_repeat1, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287471,33 +287547,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195189] = 8, + [195148] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6796), 2, + ACTIONS(6788), 2, sym_number, sym_private_property_identifier, - STATE(4366), 3, + STATE(4337), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 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(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287517,69 +287593,77 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195243] = 8, + [195202] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, - anon_sym_COMMA, - ACTIONS(4733), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(2948), 6, - anon_sym_STAR, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + ACTIONS(6764), 1, + sym_this, + ACTIONS(6766), 1, + anon_sym_readonly, + STATE(3723), 1, + aux_sym_export_statement_repeat1, + STATE(3793), 1, + sym_accessibility_modifier, + STATE(3823), 1, + sym_decorator, + STATE(4219), 2, + sym_pattern, + sym__parameter_name, + ACTIONS(2934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(5460), 3, + sym__formal_parameter, + sym_required_parameter, + sym_optional_parameter, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195297] = 8, + [195272] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6746), 2, + ACTIONS(6820), 2, sym_number, sym_private_property_identifier, - STATE(4413), 3, + STATE(4409), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 9, + ACTIONS(4666), 9, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -287589,7 +287673,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287609,38 +287693,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195351] = 13, + [195326] = 13, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2374), 1, + ACTIONS(2390), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287660,38 +287744,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195415] = 13, + [195390] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2366), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(2850), 2, + ACTIONS(6804), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4317), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 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(2884), 19, + anon_sym_PIPE_RBRACE, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287711,69 +287790,62 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195479] = 17, + [195444] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(111), 1, - anon_sym_STAR, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2370), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6892), 1, - anon_sym_async, - ACTIONS(6896), 1, - anon_sym_static, - ACTIONS(6898), 1, - anon_sym_readonly, - STATE(3784), 1, - sym_accessibility_modifier, - ACTIONS(6890), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(6894), 2, + ACTIONS(6611), 2, sym_number, sym_private_property_identifier, - ACTIONS(6900), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6902), 3, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - STATE(4215), 3, + STATE(4325), 3, sym_string, sym__property_name, sym_computed_property_name, - STATE(5286), 3, - sym_spread_element, - sym_method_definition, - sym_pair, - ACTIONS(6888), 11, + ACTIONS(4666), 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(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195550] = 3, + [195498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6906), 12, + ACTIONS(5203), 13, anon_sym_STAR, anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_LPAREN, anon_sym_LBRACK, + anon_sym_LT, anon_sym_DOT_DOT_DOT, anon_sym_DASH, anon_sym_DQUOTE, @@ -287781,11 +287853,10 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6904), 23, + ACTIONS(5201), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_DOT, anon_sym_class, anon_sym_async, sym_identifier, @@ -287805,47 +287876,43 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [195593] = 14, + anon_sym_implements, + [195542] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - ACTIONS(2850), 2, + ACTIONS(6884), 1, + anon_sym_abstract, + ACTIONS(6878), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6908), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4315), 3, + STATE(4034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + ACTIONS(4694), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -287856,35 +287923,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195658] = 6, + [195597] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(4763), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2948), 6, + ACTIONS(6888), 12, 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, sym_private_property_identifier, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + anon_sym_AT, + ACTIONS(6886), 23, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_DOT, + anon_sym_class, anon_sym_async, sym_identifier, + sym_this, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -287899,25 +287962,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195707] = 9, + anon_sym_abstract, + [195640] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6911), 1, + ACTIONS(6720), 1, anon_sym_abstract, - ACTIONS(6886), 2, + ACTIONS(6880), 2, sym_number, sym_private_property_identifier, - STATE(4022), 3, + STATE(4048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -287925,7 +287989,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4704), 19, + ACTIONS(4694), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287945,38 +288009,81 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195762] = 12, + [195695] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(4752), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(1654), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, + sym_number, + sym_private_property_identifier, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + ACTIONS(2944), 19, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [195744] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - ACTIONS(6908), 2, + ACTIONS(6890), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -287994,22 +288101,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195823] = 6, + [195805] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(4760), 2, + ACTIONS(4756), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -288017,7 +288124,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288037,46 +288144,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195872] = 13, + [195854] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, + ACTIONS(2892), 1, anon_sym_async, - ACTIONS(6202), 1, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, + ACTIONS(6748), 1, anon_sym_STAR, - ACTIONS(2850), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, + ACTIONS(2894), 2, anon_sym_get, anon_sym_set, - ACTIONS(6908), 2, + ACTIONS(6890), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288087,78 +288195,136 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195935] = 9, + [195919] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6712), 1, - anon_sym_abstract, - ACTIONS(6882), 2, + ACTIONS(6748), 1, + anon_sym_STAR, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4055), 3, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6890), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(4666), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4704), 19, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [195982] = 17, + ACTIONS(3), 1, + sym_comment, + ACTIONS(111), 1, + anon_sym_STAR, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(2321), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6897), 1, anon_sym_async, - sym_identifier, + ACTIONS(6901), 1, anon_sym_static, + ACTIONS(6903), 1, anon_sym_readonly, + STATE(3784), 1, + sym_accessibility_modifier, + ACTIONS(6895), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(6899), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6905), 2, anon_sym_get, anon_sym_set, - anon_sym_declare, + ACTIONS(6907), 3, anon_sym_public, anon_sym_private, anon_sym_protected, + STATE(4218), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + STATE(5261), 3, + sym_spread_element, + sym_method_definition, + sym_pair, + ACTIONS(6893), 11, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_declare, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [195990] = 9, + [196053] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2386), 1, + ACTIONS(2388), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288178,42 +288344,44 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196044] = 10, + [196107] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6204), 1, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(2850), 2, + ACTIONS(6748), 1, + anon_sym_STAR, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - ACTIONS(6908), 2, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6909), 2, anon_sym_COMMA, anon_sym_RBRACE, - STATE(4315), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 19, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288224,31 +288392,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196100] = 8, + [196167] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6836), 1, + anon_sym_RBRACE, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(2022), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6913), 2, sym_number, sym_private_property_identifier, - STATE(4059), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_QMARK, - ACTIONS(4704), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288268,32 +288437,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196152] = 9, + [196221] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2376), 1, + ACTIONS(2390), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288313,32 +288482,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196206] = 9, + [196275] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6752), 1, + ACTIONS(2380), 1, anon_sym_RBRACE, - STATE(4914), 1, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288358,32 +288527,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196260] = 9, + [196329] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2331), 1, + ACTIONS(2396), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(5082), 1, + STATE(5010), 1, aux_sym_object_repeat1, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288403,32 +288572,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196314] = 9, + [196383] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6750), 1, + ACTIONS(6816), 1, anon_sym_RBRACE, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(5010), 1, aux_sym_object_repeat1, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288448,25 +288617,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196368] = 9, + [196437] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6915), 1, + ACTIONS(6911), 1, anon_sym_readonly, - ACTIONS(6886), 2, + ACTIONS(6880), 2, sym_number, sym_private_property_identifier, - STATE(4022), 3, + STATE(4048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -288474,7 +288643,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(4704), 18, + ACTIONS(4694), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288493,32 +288662,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196422] = 9, + [196491] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2388), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, + ACTIONS(6750), 1, + anon_sym_RBRACE, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(4676), 4, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288538,32 +288707,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196476] = 9, + [196545] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, ACTIONS(2374), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288583,32 +288752,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196530] = 9, + [196599] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2372), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, + ACTIONS(2103), 1, anon_sym_DQUOTE, + ACTIONS(2105), 1, anon_sym_SQUOTE, + ACTIONS(6275), 1, + anon_sym_LBRACK, + ACTIONS(6913), 2, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + STATE(4015), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_QMARK, + ACTIONS(4694), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288628,32 +288796,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196584] = 9, + [196651] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(6890), 2, anon_sym_COMMA, - ACTIONS(2366), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(4676), 4, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288673,32 +288842,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196638] = 9, + [196707] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, + anon_sym_STAR, + ACTIONS(2848), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6909), 2, anon_sym_COMMA, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6838), 1, anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288706,8 +288879,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288718,41 +288889,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196692] = 9, + [196765] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6917), 1, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(2896), 1, anon_sym_readonly, - ACTIONS(6882), 2, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6748), 1, + anon_sym_STAR, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4055), 3, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(6909), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_BANG, - anon_sym_SEMI, + ACTIONS(4666), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - ACTIONS(4704), 18, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288763,44 +288938,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196746] = 12, + [196827] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - ACTIONS(2850), 2, + ACTIONS(6915), 1, + anon_sym_readonly, + ACTIONS(6878), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6919), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4315), 3, + STATE(4034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_BANG, + anon_sym_SEMI, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 16, + ACTIONS(4694), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288811,45 +288983,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196806] = 13, + [196881] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6919), 2, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(2337), 1, anon_sym_RBRACE, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 15, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288860,36 +289028,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196868] = 11, + [196935] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(6919), 2, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(2372), 1, anon_sym_RBRACE, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2884), 17, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288897,6 +289061,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -288907,32 +289073,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196926] = 9, + [196989] = 9, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6734), 1, + ACTIONS(6860), 1, anon_sym_RBRACE, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(2946), 6, anon_sym_STAR, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288952,33 +289118,90 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [196980] = 10, + [197043] = 22, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(2333), 1, + anon_sym_namespace, + ACTIONS(2339), 1, + anon_sym_import, + ACTIONS(2341), 1, + anon_sym_var, + ACTIONS(2343), 1, + anon_sym_let, + ACTIONS(2345), 1, + anon_sym_const, + ACTIONS(2356), 1, + anon_sym_class, + ACTIONS(2358), 1, + anon_sym_async, + ACTIONS(2360), 1, + anon_sym_function, + ACTIONS(2362), 1, + anon_sym_declare, + ACTIONS(2364), 1, + anon_sym_module, + ACTIONS(2366), 1, + anon_sym_abstract, + ACTIONS(2368), 1, + anon_sym_interface, + ACTIONS(2370), 1, + anon_sym_enum, + ACTIONS(2672), 1, + anon_sym_type, + ACTIONS(6917), 1, + anon_sym_default, + STATE(1172), 1, + sym_internal_module, + STATE(1184), 1, + sym_declaration, + STATE(3823), 1, + sym_decorator, + STATE(4491), 1, + aux_sym_export_statement_repeat1, + STATE(1205), 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, + [197122] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(2960), 1, - sym_this, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, - STATE(4443), 1, + ACTIONS(6919), 1, + sym_this, + STATE(4670), 1, sym_pattern, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(3048), 5, + ACTIONS(3032), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1612), 18, + ACTIONS(1648), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -288997,33 +289220,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197035] = 10, + [197177] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, ACTIONS(6921), 1, sym_this, - STATE(4474), 1, + STATE(4713), 1, sym_pattern, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(3048), 5, + ACTIONS(3032), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1612), 18, + ACTIONS(1648), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289042,202 +289265,101 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197090] = 22, + [197232] = 16, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2327), 1, - anon_sym_namespace, - ACTIONS(2333), 1, - anon_sym_import, - ACTIONS(2335), 1, - anon_sym_var, - ACTIONS(2337), 1, - anon_sym_let, - ACTIONS(2339), 1, - anon_sym_const, - ACTIONS(2350), 1, - anon_sym_class, - ACTIONS(2352), 1, - anon_sym_async, - ACTIONS(2354), 1, - anon_sym_function, - ACTIONS(2356), 1, - anon_sym_declare, - ACTIONS(2358), 1, - anon_sym_module, - ACTIONS(2360), 1, - anon_sym_abstract, - ACTIONS(2362), 1, - anon_sym_interface, - ACTIONS(2364), 1, - anon_sym_enum, - ACTIONS(2674), 1, - anon_sym_type, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, ACTIONS(6923), 1, - anon_sym_default, - STATE(1193), 1, - sym_declaration, - STATE(1203), 1, - sym_internal_module, + anon_sym_class, + ACTIONS(6925), 1, + sym_this, + ACTIONS(6927), 1, + anon_sym_readonly, + STATE(3788), 1, + sym_accessibility_modifier, + STATE(3792), 1, + aux_sym_export_statement_repeat1, STATE(3823), 1, sym_decorator, - STATE(4424), 1, - aux_sym_export_statement_repeat1, - STATE(1171), 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, - [197169] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5126), 11, - 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, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(5124), 22, + STATE(4639), 1, + sym_pattern, + ACTIONS(2934), 3, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_class, anon_sym_async, - sym_identifier, - sym_this, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [197210] = 22, + [197299] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2854), 1, - anon_sym_type, - ACTIONS(2856), 1, + ACTIONS(2333), 1, anon_sym_namespace, - ACTIONS(2858), 1, + ACTIONS(2339), 1, anon_sym_import, - ACTIONS(2860), 1, + ACTIONS(2341), 1, anon_sym_var, - ACTIONS(2862), 1, + ACTIONS(2343), 1, anon_sym_let, - ACTIONS(2864), 1, + ACTIONS(2345), 1, anon_sym_const, - ACTIONS(2866), 1, + ACTIONS(2356), 1, anon_sym_class, - ACTIONS(2868), 1, + ACTIONS(2358), 1, anon_sym_async, - ACTIONS(2870), 1, + ACTIONS(2360), 1, anon_sym_function, - ACTIONS(2872), 1, + ACTIONS(2362), 1, anon_sym_declare, - ACTIONS(2874), 1, - anon_sym_module, - ACTIONS(2876), 1, + ACTIONS(2366), 1, anon_sym_abstract, - ACTIONS(2878), 1, - anon_sym_global, - ACTIONS(2880), 1, + ACTIONS(2368), 1, anon_sym_interface, - ACTIONS(2882), 1, + ACTIONS(2370), 1, anon_sym_enum, - STATE(3823), 1, - sym_decorator, - STATE(4540), 1, - aux_sym_export_statement_repeat1, - STATE(4596), 1, - sym_internal_module, - STATE(4599), 1, - sym_declaration, - STATE(4594), 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, - [197289] = 22, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(2854), 1, + ACTIONS(2672), 1, anon_sym_type, - ACTIONS(2856), 1, - anon_sym_namespace, - ACTIONS(2858), 1, - anon_sym_import, - ACTIONS(2860), 1, - anon_sym_var, - ACTIONS(2862), 1, - anon_sym_let, - ACTIONS(2864), 1, - anon_sym_const, - ACTIONS(2866), 1, - anon_sym_class, - ACTIONS(2868), 1, - anon_sym_async, - ACTIONS(2870), 1, - anon_sym_function, - ACTIONS(2872), 1, - anon_sym_declare, - ACTIONS(2876), 1, - anon_sym_abstract, - ACTIONS(2880), 1, - anon_sym_interface, - ACTIONS(2882), 1, - anon_sym_enum, - ACTIONS(4678), 1, + ACTIONS(2676), 1, anon_sym_module, - ACTIONS(6925), 1, - anon_sym_default, + ACTIONS(2678), 1, + anon_sym_global, + STATE(1172), 1, + sym_internal_module, + STATE(1204), 1, + sym_declaration, STATE(3823), 1, sym_decorator, - STATE(4540), 1, + STATE(4491), 1, aux_sym_export_statement_repeat1, - STATE(4596), 1, - sym_internal_module, - STATE(4614), 1, - sym_declaration, - STATE(4594), 13, + STATE(1205), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -289251,118 +289373,37 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [197368] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(2850), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6919), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - STATE(4315), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [197421] = 10, + [197378] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, - anon_sym_LBRACK, - ACTIONS(6927), 1, + ACTIONS(2970), 1, sym_this, - STATE(4476), 1, + ACTIONS(6762), 1, + anon_sym_LBRACK, + STATE(4628), 1, sym_pattern, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(3048), 5, + ACTIONS(3032), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1612), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [197476] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6874), 11, - 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, - sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6872), 22, + ACTIONS(1648), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_class, anon_sym_async, - sym_identifier, - sym_this, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -289377,34 +289418,33 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [197517] = 10, + [197433] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, ACTIONS(6929), 1, sym_this, - STATE(4501), 1, + STATE(4703), 1, sym_pattern, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(3048), 5, + ACTIONS(3032), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(1612), 18, + ACTIONS(1648), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289423,10 +289463,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197572] = 3, + [197488] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5260), 11, + ACTIONS(6933), 11, anon_sym_STAR, anon_sym_LBRACE, anon_sym_RBRACE, @@ -289438,7 +289478,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(5258), 22, + ACTIONS(6931), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289461,29 +289501,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [197613] = 3, + [197529] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(6933), 11, - anon_sym_STAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_LBRACK, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6931), 22, + ACTIONS(6909), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + STATE(4351), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_class, anon_sym_async, sym_identifier, - sym_this, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -289498,51 +289545,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [197654] = 22, + [197582] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2327), 1, - anon_sym_namespace, ACTIONS(2333), 1, + anon_sym_namespace, + ACTIONS(2339), 1, anon_sym_import, - ACTIONS(2335), 1, + ACTIONS(2341), 1, anon_sym_var, - ACTIONS(2337), 1, + ACTIONS(2343), 1, anon_sym_let, - ACTIONS(2339), 1, + ACTIONS(2345), 1, anon_sym_const, - ACTIONS(2350), 1, + ACTIONS(2356), 1, anon_sym_class, - ACTIONS(2352), 1, + ACTIONS(2358), 1, anon_sym_async, - ACTIONS(2354), 1, + ACTIONS(2360), 1, anon_sym_function, - ACTIONS(2356), 1, + ACTIONS(2362), 1, anon_sym_declare, - ACTIONS(2358), 1, + ACTIONS(2364), 1, anon_sym_module, - ACTIONS(2360), 1, + ACTIONS(2366), 1, anon_sym_abstract, - ACTIONS(2362), 1, + ACTIONS(2368), 1, anon_sym_interface, - ACTIONS(2364), 1, + ACTIONS(2370), 1, anon_sym_enum, - ACTIONS(2674), 1, + ACTIONS(2672), 1, anon_sym_type, ACTIONS(6935), 1, anon_sym_default, - STATE(1193), 1, - sym_declaration, - STATE(1203), 1, + STATE(1172), 1, sym_internal_module, + STATE(1184), 1, + sym_declaration, STATE(3823), 1, sym_decorator, - STATE(4424), 1, + STATE(4491), 1, aux_sym_export_statement_repeat1, - STATE(1171), 13, + STATE(1205), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -289556,88 +289602,107 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [197733] = 3, + [197661] = 22, ACTIONS(3), 1, sym_comment, - ACTIONS(5028), 11, - 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, - sym_private_property_identifier, + ACTIONS(93), 1, anon_sym_AT, - ACTIONS(5026), 22, - anon_sym_export, + ACTIONS(2852), 1, anon_sym_type, + ACTIONS(2854), 1, anon_sym_namespace, + ACTIONS(2856), 1, + anon_sym_import, + ACTIONS(2858), 1, + anon_sym_var, + ACTIONS(2860), 1, + anon_sym_let, + ACTIONS(2862), 1, + anon_sym_const, + ACTIONS(2864), 1, anon_sym_class, + ACTIONS(2866), 1, anon_sym_async, - sym_identifier, - sym_this, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, + ACTIONS(2868), 1, + anon_sym_function, + ACTIONS(2870), 1, anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, + ACTIONS(2872), 1, anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, + ACTIONS(2874), 1, anon_sym_abstract, - [197774] = 22, + ACTIONS(2876), 1, + anon_sym_global, + ACTIONS(2878), 1, + anon_sym_interface, + ACTIONS(2880), 1, + anon_sym_enum, + STATE(3823), 1, + sym_decorator, + STATE(4477), 1, + sym_internal_module, + STATE(4480), 1, + sym_declaration, + STATE(4582), 1, + aux_sym_export_statement_repeat1, + STATE(4475), 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, + [197740] = 22, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(2327), 1, + ACTIONS(2852), 1, + anon_sym_type, + ACTIONS(2854), 1, anon_sym_namespace, - ACTIONS(2333), 1, + ACTIONS(2856), 1, anon_sym_import, - ACTIONS(2335), 1, + ACTIONS(2858), 1, anon_sym_var, - ACTIONS(2337), 1, + ACTIONS(2860), 1, anon_sym_let, - ACTIONS(2339), 1, + ACTIONS(2862), 1, anon_sym_const, - ACTIONS(2350), 1, + ACTIONS(2864), 1, anon_sym_class, - ACTIONS(2352), 1, + ACTIONS(2866), 1, anon_sym_async, - ACTIONS(2354), 1, + ACTIONS(2868), 1, anon_sym_function, - ACTIONS(2356), 1, + ACTIONS(2870), 1, anon_sym_declare, - ACTIONS(2360), 1, + ACTIONS(2874), 1, anon_sym_abstract, - ACTIONS(2362), 1, + ACTIONS(2878), 1, anon_sym_interface, - ACTIONS(2364), 1, + ACTIONS(2880), 1, anon_sym_enum, - ACTIONS(2674), 1, - anon_sym_type, - ACTIONS(2678), 1, + ACTIONS(4668), 1, anon_sym_module, - ACTIONS(2680), 1, - anon_sym_global, - STATE(1093), 1, - sym_declaration, - STATE(1203), 1, - sym_internal_module, + ACTIONS(6937), 1, + anon_sym_default, STATE(3823), 1, sym_decorator, - STATE(4424), 1, + STATE(4477), 1, + sym_internal_module, + STATE(4514), 1, + sym_declaration, + STATE(4582), 1, aux_sym_export_statement_repeat1, - STATE(1171), 13, + STATE(4475), 13, sym_variable_declaration, sym_lexical_declaration, sym_class_declaration, @@ -289651,92 +289716,119 @@ static uint16_t ts_small_parse_table[] = { sym_interface_declaration, sym_enum_declaration, sym_type_alias_declaration, - [197853] = 16, + [197819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, + ACTIONS(6870), 11, + anon_sym_STAR, anon_sym_LBRACE, - ACTIONS(6756), 1, + anon_sym_RBRACE, anon_sym_LBRACK, - ACTIONS(6937), 1, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6868), 22, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, anon_sym_class, - ACTIONS(6939), 1, + anon_sym_async, + sym_identifier, sym_this, - ACTIONS(6941), 1, + anon_sym_static, anon_sym_readonly, - STATE(3785), 1, - sym_accessibility_modifier, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - STATE(4446), 1, - sym_pattern, - ACTIONS(2936), 3, + anon_sym_get, + anon_sym_set, + anon_sym_declare, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 14, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [197860] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6890), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2946), 6, + anon_sym_STAR, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + sym_number, + sym_private_property_identifier, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, anon_sym_module, anon_sym_any, anon_sym_number, anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197920] = 15, + [197906] = 15, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(6939), 1, + ACTIONS(6925), 1, sym_this, - ACTIONS(6941), 1, + ACTIONS(6927), 1, anon_sym_readonly, - STATE(3785), 1, + STATE(3788), 1, sym_accessibility_modifier, - STATE(3790), 1, + STATE(3792), 1, aux_sym_export_statement_repeat1, STATE(3823), 1, sym_decorator, - STATE(4446), 1, + STATE(4639), 1, sym_pattern, - ACTIONS(2936), 3, + ACTIONS(2934), 3, anon_sym_public, anon_sym_private, anon_sym_protected, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1612), 14, + ACTIONS(1648), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289751,27 +289843,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [197984] = 6, + [197970] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6908), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - ACTIONS(2948), 6, + ACTIONS(6943), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + ACTIONS(6941), 9, anon_sym_STAR, + anon_sym_RBRACE, anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(2946), 19, + anon_sym_AT, + ACTIONS(6939), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289791,40 +289879,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198030] = 11, + anon_sym_abstract, + [198011] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(6947), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1654), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6943), 1, - anon_sym_STAR, - ACTIONS(6945), 1, - anon_sym_async, - ACTIONS(6947), 2, sym_number, sym_private_property_identifier, - ACTIONS(6949), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4284), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 16, + anon_sym_AT, + ACTIONS(6945), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289835,15 +289915,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198085] = 4, + anon_sym_abstract, + [198050] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6955), 2, + ACTIONS(6949), 1, sym__automatic_semicolon, - anon_sym_SEMI, - ACTIONS(6953), 9, + ACTIONS(2063), 10, anon_sym_STAR, anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_DASH, anon_sym_DQUOTE, @@ -289851,7 +289932,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6951), 20, + ACTIONS(2065), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289872,41 +289953,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198126] = 12, + [198091] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6957), 1, + ACTIONS(6951), 1, anon_sym_STAR, - ACTIONS(6959), 1, - anon_sym_async, - ACTIONS(6963), 1, - anon_sym_readonly, - ACTIONS(6961), 2, + ACTIONS(6953), 2, sym_number, sym_private_property_identifier, - ACTIONS(6965), 2, + ACTIONS(6955), 2, anon_sym_get, anon_sym_set, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4331), 3, + STATE(4381), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 15, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289917,32 +289996,184 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198183] = 10, + [198144] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(6959), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1654), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + sym_number, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6957), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [198183] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2286), 1, + anon_sym_COMMA, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, + ACTIONS(6961), 1, + anon_sym_RBRACK, + STATE(4899), 1, + sym_pattern, + STATE(4945), 1, + aux_sym_array_pattern_repeat1, + STATE(4949), 1, + sym_assignment_pattern, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [198240] = 12, + ACTIONS(3), 1, + sym_comment, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2286), 1, + anon_sym_COMMA, + ACTIONS(2290), 1, + anon_sym_RBRACK, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(6943), 1, + STATE(4791), 1, + sym_pattern, + STATE(5060), 1, + aux_sym_array_pattern_repeat1, + STATE(5068), 1, + sym_assignment_pattern, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [198297] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6965), 11, + sym__automatic_semicolon, anon_sym_STAR, - ACTIONS(6947), 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, + anon_sym_DQUOTE, + anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - ACTIONS(6949), 2, + anon_sym_AT, + ACTIONS(6963), 20, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4284), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 17, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + anon_sym_abstract, + [198336] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6959), 11, + 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, + sym_private_property_identifier, + anon_sym_AT, + ACTIONS(6957), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -289950,6 +290181,8 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -289960,7 +290193,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198236] = 3, + anon_sym_abstract, + [198375] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6969), 11, @@ -289996,144 +290230,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198275] = 11, + [198414] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6957), 1, - anon_sym_STAR, - ACTIONS(6959), 1, - anon_sym_async, - ACTIONS(6961), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6965), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4331), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [198330] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6957), 1, - anon_sym_STAR, - ACTIONS(6961), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(6965), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4331), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [198383] = 12, - ACTIONS(3), 1, - sym_comment, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2290), 1, - anon_sym_COMMA, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, - anon_sym_LBRACK, - ACTIONS(6971), 1, - anon_sym_RBRACK, - STATE(4884), 1, - sym_pattern, - STATE(4939), 1, - aux_sym_array_pattern_repeat1, - STATE(4943), 1, - sym_assignment_pattern, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [198440] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6973), 1, + ACTIONS(6973), 11, sym__automatic_semicolon, - ACTIONS(1940), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -290144,7 +290245,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1942), 20, + ACTIONS(6971), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290165,10 +290266,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198481] = 3, + [198453] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2100), 11, + ACTIONS(6977), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -290180,7 +290281,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(2102), 20, + ACTIONS(6975), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290201,12 +290302,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198520] = 4, + [198492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6975), 1, + ACTIONS(6965), 11, sym__automatic_semicolon, - ACTIONS(1966), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -290217,7 +290317,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1968), 20, + ACTIONS(6963), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290238,61 +290338,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198561] = 3, + [198531] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(6979), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6979), 1, + anon_sym_STAR, + ACTIONS(6981), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6977), 20, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, + ACTIONS(6983), 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, - anon_sym_abstract, - [198600] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6919), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4676), 4, + ACTIONS(4666), 3, anon_sym_LPAREN, - anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - ACTIONS(2948), 6, - anon_sym_STAR, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - sym_number, - sym_private_property_identifier, - ACTIONS(2946), 19, + STATE(4344), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290300,8 +290371,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290312,10 +290381,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198643] = 3, + [198584] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1966), 11, + ACTIONS(6973), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -290327,7 +290396,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(1968), 20, + ACTIONS(6971), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290348,10 +290417,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198682] = 3, + [198623] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 11, + ACTIONS(2115), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -290363,7 +290432,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6981), 20, + ACTIONS(2117), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290384,10 +290453,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198721] = 3, + [198662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 11, + ACTIONS(6969), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -290399,7 +290468,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6981), 20, + ACTIONS(6967), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290420,7 +290489,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198760] = 3, + [198701] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6987), 11, @@ -290456,7 +290525,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198799] = 3, + [198740] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(6991), 11, @@ -290492,11 +290561,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198838] = 3, + [198779] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6995), 11, + ACTIONS(6993), 1, sym__automatic_semicolon, + ACTIONS(1940), 10, anon_sym_STAR, anon_sym_RBRACE, anon_sym_SEMI, @@ -290507,7 +290577,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6993), 20, + ACTIONS(1942), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290528,29 +290598,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198877] = 9, + [198820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(6997), 11, + sym__automatic_semicolon, + anon_sym_STAR, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_DASH, anon_sym_DQUOTE, - ACTIONS(1654), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(6997), 1, - anon_sym_EQ_GT, - ACTIONS(6961), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4331), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 19, + anon_sym_AT, + ACTIONS(6995), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290570,7 +290633,8 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [198928] = 3, + anon_sym_abstract, + [198859] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7001), 11, @@ -290606,7 +290670,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [198967] = 3, + [198898] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7005), 11, @@ -290642,10 +290706,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [199006] = 3, + [198937] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 11, + ACTIONS(6987), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -290657,7 +290721,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7007), 20, + ACTIONS(6985), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290678,53 +290742,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [199045] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - ACTIONS(7011), 1, - anon_sym_STAR, - ACTIONS(7013), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(7015), 2, - anon_sym_get, - anon_sym_set, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4400), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 17, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [199098] = 3, + [198976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 11, + ACTIONS(6977), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -290736,7 +290757,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7017), 20, + ACTIONS(6975), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290757,31 +290778,41 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [199137] = 3, + [199015] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(7007), 1, + anon_sym_STAR, + ACTIONS(7009), 1, + anon_sym_async, + ACTIONS(7013), 1, + anon_sym_readonly, + ACTIONS(7011), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7021), 20, + ACTIONS(7015), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4307), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 15, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290792,38 +290823,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [199176] = 12, + [199072] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2290), 1, - anon_sym_COMMA, - ACTIONS(2294), 1, - anon_sym_RBRACK, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4810), 1, - sym_pattern, - STATE(4980), 1, - aux_sym_array_pattern_repeat1, - STATE(5042), 1, - sym_assignment_pattern, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 18, + ACTIONS(7017), 1, + anon_sym_EQ_GT, + ACTIONS(7011), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4307), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -290838,10 +290865,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199233] = 3, + [199123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 11, + ACTIONS(2063), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -290853,7 +290880,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6989), 20, + ACTIONS(2065), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290874,22 +290901,25 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [199272] = 3, + [199162] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 11, - sym__automatic_semicolon, - anon_sym_STAR, + ACTIONS(6909), 2, + anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_SEMI, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + ACTIONS(2946), 6, + anon_sym_STAR, anon_sym_LBRACK, - anon_sym_DASH, anon_sym_DQUOTE, anon_sym_SQUOTE, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7017), 20, + ACTIONS(2944), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290909,32 +290939,84 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [199311] = 3, + [199205] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6979), 1, + anon_sym_STAR, + ACTIONS(7019), 1, + anon_sym_async, + ACTIONS(6981), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7025), 20, + ACTIONS(6983), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4344), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, anon_sym_static, anon_sym_readonly, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [199260] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(7007), 1, + anon_sym_STAR, + ACTIONS(7009), 1, + anon_sym_async, + ACTIONS(7011), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(7015), 2, anon_sym_get, anon_sym_set, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4307), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 16, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + sym_identifier, + anon_sym_static, + anon_sym_readonly, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290945,23 +291027,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [199350] = 3, + [199315] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(7007), 1, + anon_sym_STAR, + ACTIONS(7011), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(7021), 20, + ACTIONS(7015), 2, + anon_sym_get, + anon_sym_set, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4307), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -290969,8 +291060,6 @@ static uint16_t ts_small_parse_table[] = { sym_identifier, anon_sym_static, anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -290981,11 +291070,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [199389] = 3, + [199368] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 11, + ACTIONS(7023), 11, sym__automatic_semicolon, anon_sym_STAR, anon_sym_RBRACE, @@ -290997,7 +291085,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(6985), 20, + ACTIONS(7021), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291018,22 +291106,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [199428] = 3, + [199407] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6969), 11, - sym__automatic_semicolon, - anon_sym_STAR, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_DASH, + ACTIONS(1688), 1, anon_sym_DQUOTE, + ACTIONS(1690), 1, anon_sym_SQUOTE, + ACTIONS(6269), 1, + anon_sym_LBRACK, + ACTIONS(6820), 2, sym_number, sym_private_property_identifier, - anon_sym_AT, - ACTIONS(6967), 20, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4409), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291053,28 +291146,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - anon_sym_abstract, - [199467] = 8, + [199455] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6947), 2, + ACTIONS(6804), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4284), 3, + STATE(4317), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291094,35 +291186,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199515] = 11, + [199503] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7029), 1, - anon_sym_COMMA, - ACTIONS(7031), 1, - anon_sym_RBRACK, - STATE(4927), 1, - sym_pattern, - STATE(5348), 1, - sym_assignment_pattern, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 18, + ACTIONS(6953), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4381), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -291137,35 +291226,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199569] = 11, + [199551] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7029), 1, - anon_sym_COMMA, - ACTIONS(7034), 1, - anon_sym_RBRACK, - STATE(4927), 1, - sym_pattern, - STATE(5348), 1, - sym_assignment_pattern, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 18, + ACTIONS(6782), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4408), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -291180,27 +291266,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199623] = 8, + [199599] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6826), 2, + ACTIONS(6796), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4406), 3, + STATE(4318), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291220,27 +291306,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199671] = 8, + [199647] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6790), 2, + ACTIONS(6864), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4365), 3, + STATE(4322), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291260,27 +291346,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199719] = 8, + [199695] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6746), 2, + ACTIONS(6824), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4413), 3, + STATE(4363), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291300,34 +291386,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199767] = 10, + [199743] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(6269), 1, anon_sym_LBRACK, - STATE(4927), 1, - sym_pattern, - STATE(5348), 1, - sym_assignment_pattern, - ACTIONS(7029), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 18, + ACTIONS(6744), 2, + sym_number, + sym_private_property_identifier, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + STATE(4391), 3, + sym_string, + sym__property_name, + sym_computed_property_name, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, + sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -291342,27 +291426,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199819] = 8, + [199791] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, ACTIONS(6856), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4310), 3, + STATE(4349), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291382,27 +291466,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199867] = 8, + [199839] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6774), 2, + ACTIONS(7025), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4346), 3, + STATE(4413), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291422,27 +291506,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199915] = 8, + [199887] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6802), 2, + ACTIONS(6981), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4347), 3, + STATE(4344), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291462,27 +291546,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [199963] = 8, + [199935] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6862), 2, + ACTIONS(7027), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4367), 3, + STATE(4398), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291502,27 +291586,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200011] = 8, + [199983] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6796), 2, + ACTIONS(7029), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4366), 3, + STATE(4313), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291542,27 +291626,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200059] = 8, + [200031] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6816), 2, + ACTIONS(6774), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4339), 3, + STATE(4384), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291582,27 +291666,113 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200107] = 8, + [200079] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, + ACTIONS(7031), 1, + anon_sym_COMMA, + ACTIONS(7033), 1, + anon_sym_RBRACK, + STATE(4990), 1, + sym_pattern, + STATE(5299), 1, + sym_assignment_pattern, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [200133] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, + ACTIONS(7031), 1, + anon_sym_COMMA, + ACTIONS(7036), 1, + anon_sym_RBRACK, + STATE(4990), 1, + sym_pattern, + STATE(5299), 1, + sym_assignment_pattern, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 18, + anon_sym_export, + anon_sym_type, + anon_sym_namespace, + anon_sym_async, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, + anon_sym_declare, + anon_sym_public, + anon_sym_private, + anon_sym_protected, + anon_sym_module, + anon_sym_any, + anon_sym_number, + anon_sym_boolean, + anon_sym_string, + anon_sym_symbol, + [200187] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7037), 2, + ACTIONS(7011), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4279), 3, + STATE(4307), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291622,32 +291792,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200155] = 8, + [200235] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(7039), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4330), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 19, + STATE(4990), 1, + sym_pattern, + STATE(5299), 1, + sym_assignment_pattern, + ACTIONS(7031), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -291662,27 +291834,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200203] = 8, + [200287] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7041), 2, + ACTIONS(7039), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - STATE(4328), 3, + STATE(4417), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291702,27 +291874,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200251] = 8, + [200335] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7013), 2, + ACTIONS(7041), 1, + anon_sym_RBRACE, + STATE(5245), 1, + sym_enum_assignment, + ACTIONS(7043), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4400), 3, + STATE(4864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291742,27 +291914,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200299] = 8, + [200384] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7043), 2, + ACTIONS(7045), 1, + anon_sym_RBRACE, + STATE(5007), 1, + sym_enum_assignment, + ACTIONS(7047), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4364), 3, + STATE(4655), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291782,27 +291954,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200347] = 8, + [200433] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6961), 2, + ACTIONS(7049), 1, + anon_sym_RBRACE, + STATE(5245), 1, + sym_enum_assignment, + ACTIONS(7043), 2, sym_number, sym_private_property_identifier, - ACTIONS(4676), 3, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - STATE(4331), 3, + STATE(4864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291822,27 +291994,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200395] = 9, + [200482] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7045), 1, + ACTIONS(7051), 1, anon_sym_RBRACE, - STATE(5237), 1, + STATE(5245), 1, sym_enum_assignment, - ACTIONS(7047), 2, + ACTIONS(7043), 2, sym_number, sym_private_property_identifier, - STATE(4757), 3, + STATE(4864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291862,36 +292034,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200444] = 9, + [200531] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(7049), 1, - anon_sym_RBRACE, - STATE(5237), 1, - sym_enum_assignment, - ACTIONS(7047), 2, + ACTIONS(6686), 1, + anon_sym_STAR, + ACTIONS(6688), 1, + anon_sym_async, + ACTIONS(7053), 1, + anon_sym_static, + ACTIONS(7055), 1, + anon_sym_readonly, + ACTIONS(7057), 1, + anon_sym_abstract, + ACTIONS(6690), 2, sym_number, sym_private_property_identifier, - STATE(4757), 3, + ACTIONS(6692), 2, + anon_sym_get, + anon_sym_set, + STATE(3858), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(4694), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -291902,27 +292078,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200493] = 9, + [200588] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7051), 1, + ACTIONS(7059), 1, anon_sym_RBRACE, - STATE(5237), 1, + STATE(5073), 1, sym_enum_assignment, - ACTIONS(7047), 2, + ACTIONS(7061), 2, sym_number, sym_private_property_identifier, - STATE(4757), 3, + STATE(4692), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291942,10 +292118,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200542] = 3, + [200637] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6317), 9, + ACTIONS(6413), 9, anon_sym_STAR, anon_sym_RBRACE, anon_sym_LBRACK, @@ -291955,7 +292131,7 @@ static uint16_t ts_small_parse_table[] = { sym_number, sym_private_property_identifier, anon_sym_AT, - ACTIONS(7053), 20, + ACTIONS(7063), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -291976,27 +292152,27 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [200579] = 9, + [200674] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7055), 1, + ACTIONS(7065), 1, anon_sym_RBRACE, - STATE(5237), 1, + STATE(5245), 1, sym_enum_assignment, - ACTIONS(7047), 2, + ACTIONS(7043), 2, sym_number, sym_private_property_identifier, - STATE(4757), 3, + STATE(4864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292016,36 +292192,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200628] = 9, + [200723] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(2892), 1, + anon_sym_async, + ACTIONS(2896), 1, + anon_sym_readonly, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7057), 1, - anon_sym_RBRACE, - STATE(5007), 1, - sym_enum_assignment, - ACTIONS(7059), 2, + ACTIONS(6748), 1, + anon_sym_STAR, + ACTIONS(7067), 1, + anon_sym_static, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4489), 3, + ACTIONS(2894), 2, + anon_sym_get, + anon_sym_set, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292056,36 +292234,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200677] = 13, + [200777] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, + ACTIONS(6265), 1, + anon_sym_STAR, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6714), 1, - anon_sym_STAR, - ACTIONS(6716), 1, + ACTIONS(6277), 1, anon_sym_async, - ACTIONS(7061), 1, - anon_sym_static, - ACTIONS(7063), 1, + ACTIONS(6281), 1, anon_sym_readonly, - ACTIONS(7065), 1, - anon_sym_abstract, - ACTIONS(6718), 2, + ACTIONS(7069), 1, + anon_sym_static, + ACTIONS(6279), 2, sym_number, sym_private_property_identifier, - ACTIONS(6720), 2, + ACTIONS(6283), 2, anon_sym_get, anon_sym_set, - STATE(3858), 3, + STATE(3895), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 14, + ACTIONS(4694), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292100,36 +292276,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200734] = 9, + [200831] = 12, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(7067), 1, - anon_sym_RBRACE, - STATE(5046), 1, - sym_enum_assignment, - ACTIONS(7069), 2, + ACTIONS(6601), 1, + anon_sym_STAR, + ACTIONS(6603), 1, + anon_sym_async, + ACTIONS(6609), 1, + anon_sym_readonly, + ACTIONS(7071), 1, + anon_sym_static, + ACTIONS(6605), 2, sym_number, sym_private_property_identifier, - STATE(4701), 3, + ACTIONS(6607), 2, + anon_sym_get, + anon_sym_set, + STATE(3888), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(4694), 14, anon_sym_export, anon_sym_type, anon_sym_namespace, - anon_sym_async, sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292140,38 +292318,34 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200783] = 12, + [200885] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(2886), 1, - anon_sym_async, - ACTIONS(2890), 1, - anon_sym_readonly, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6732), 1, - anon_sym_STAR, - ACTIONS(7071), 1, - anon_sym_static, - ACTIONS(2850), 2, + STATE(5245), 1, + sym_enum_assignment, + ACTIONS(7043), 2, sym_number, sym_private_property_identifier, - ACTIONS(2888), 2, - anon_sym_get, - anon_sym_set, - STATE(4315), 3, + STATE(4864), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 14, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292182,29 +292356,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200837] = 10, + [200931] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, ACTIONS(7073), 1, sym_this, ACTIONS(7075), 1, anon_sym_readonly, - STATE(4478), 1, + STATE(4724), 1, sym_pattern, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1612), 17, + ACTIONS(1648), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292222,58 +292396,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200887] = 8, + [200981] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, - anon_sym_LBRACK, - STATE(5237), 1, - sym_enum_assignment, - ACTIONS(7047), 2, - sym_number, - sym_private_property_identifier, - STATE(4757), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 19, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [200933] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2948), 3, + ACTIONS(2946), 3, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(3048), 5, + ACTIONS(3032), 5, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_QMARK, - ACTIONS(2946), 20, + ACTIONS(2944), 20, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292294,36 +292430,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [200971] = 10, + [201019] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, ACTIONS(7077), 1, - anon_sym_STAR, - ACTIONS(7081), 1, + anon_sym_static, + ACTIONS(7079), 1, anon_sym_readonly, - ACTIONS(7079), 2, + ACTIONS(7081), 1, + anon_sym_abstract, + ACTIONS(6880), 2, sym_number, sym_private_property_identifier, - ACTIONS(7083), 2, - anon_sym_get, - anon_sym_set, - STATE(3851), 3, + STATE(4048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 16, + ACTIONS(4694), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, - anon_sym_static, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292334,38 +292470,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201021] = 12, + [201069] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6200), 1, - anon_sym_STAR, - ACTIONS(6267), 1, - anon_sym_async, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6277), 1, + ACTIONS(6911), 1, anon_sym_readonly, - ACTIONS(7085), 1, - anon_sym_static, - ACTIONS(6269), 2, + ACTIONS(7083), 1, + anon_sym_STAR, + ACTIONS(7085), 2, sym_number, sym_private_property_identifier, - ACTIONS(6271), 2, + ACTIONS(7087), 2, anon_sym_get, anon_sym_set, - STATE(3875), 3, + STATE(3859), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 14, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292376,20 +292510,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201075] = 6, + [201119] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7091), 1, + ACTIONS(7093), 1, anon_sym_AT, - STATE(3790), 1, + STATE(3792), 1, aux_sym_export_statement_repeat1, STATE(3823), 1, sym_decorator, - ACTIONS(7089), 3, + ACTIONS(7091), 3, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, - ACTIONS(7087), 22, + ACTIONS(7089), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292412,69 +292546,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [201117] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(6275), 1, - anon_sym_LBRACK, - ACTIONS(6917), 1, - anon_sym_readonly, - ACTIONS(7094), 1, - anon_sym_STAR, - ACTIONS(7096), 2, - sym_number, - sym_private_property_identifier, - ACTIONS(7098), 2, - anon_sym_get, - anon_sym_set, - STATE(3857), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(4704), 16, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - sym_identifier, - anon_sym_static, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [201167] = 10, + [201161] = 10, ACTIONS(3), 1, sym_comment, ACTIONS(670), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, + ACTIONS(2960), 1, sym_identifier, - ACTIONS(2952), 1, + ACTIONS(2962), 1, anon_sym_LBRACE, - ACTIONS(2960), 1, + ACTIONS(2970), 1, sym_this, - ACTIONS(6756), 1, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(7100), 1, + ACTIONS(7096), 1, anon_sym_readonly, - STATE(4443), 1, + STATE(4628), 1, sym_pattern, - STATE(4129), 4, + STATE(4225), 4, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, sym_rest_pattern, - ACTIONS(1612), 17, + ACTIONS(1648), 17, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292492,36 +292586,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201217] = 10, + [201211] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, + ACTIONS(7098), 1, + anon_sym_STAR, ACTIONS(7102), 1, - anon_sym_static, - ACTIONS(7104), 1, anon_sym_readonly, - ACTIONS(7106), 1, - anon_sym_abstract, - ACTIONS(6882), 2, + ACTIONS(7100), 2, sym_number, sym_private_property_identifier, - STATE(4055), 3, + ACTIONS(7104), 2, + anon_sym_get, + anon_sym_set, + STATE(3853), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 17, + ACTIONS(4694), 16, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, - anon_sym_get, - anon_sym_set, + anon_sym_static, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292532,38 +292626,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201267] = 12, + [201261] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6550), 1, - anon_sym_STAR, - ACTIONS(6556), 1, - anon_sym_async, - ACTIONS(6560), 1, - anon_sym_readonly, - ACTIONS(7108), 1, - anon_sym_static, - ACTIONS(6558), 2, + ACTIONS(6820), 2, sym_number, sym_private_property_identifier, - ACTIONS(6562), 2, - anon_sym_get, - anon_sym_set, - STATE(3887), 3, + STATE(4409), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 14, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, + anon_sym_async, sym_identifier, + anon_sym_static, + anon_sym_readonly, + anon_sym_get, + anon_sym_set, anon_sym_declare, anon_sym_public, anon_sym_private, @@ -292574,23 +292662,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201321] = 7, + [201304] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(2850), 2, + ACTIONS(6953), 2, sym_number, sym_private_property_identifier, - STATE(4315), 3, + STATE(4381), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292610,23 +292698,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201364] = 7, + [201347] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7043), 2, + ACTIONS(6744), 2, sym_number, sym_private_property_identifier, - STATE(4364), 3, + STATE(4391), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292646,30 +292734,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201407] = 7, + [201390] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6790), 2, + ACTIONS(6911), 1, + anon_sym_readonly, + ACTIONS(6880), 2, sym_number, sym_private_property_identifier, - STATE(4365), 3, + STATE(4048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(4694), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -292682,23 +292771,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201450] = 7, + [201435] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6206), 2, + ACTIONS(6882), 2, sym_number, sym_private_property_identifier, - STATE(4375), 3, + STATE(4374), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292718,23 +292807,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201493] = 7, + [201478] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6947), 2, + ACTIONS(6611), 2, sym_number, sym_private_property_identifier, - STATE(4284), 3, + STATE(4325), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292754,23 +292843,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201536] = 7, + [201521] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7013), 2, + ACTIONS(6782), 2, sym_number, sym_private_property_identifier, - STATE(4400), 3, + STATE(4408), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292790,23 +292879,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201579] = 7, + [201564] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7039), 2, + ACTIONS(6804), 2, sym_number, sym_private_property_identifier, - STATE(4330), 3, + STATE(4317), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292826,23 +292915,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201622] = 7, + [201607] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6816), 2, + ACTIONS(6876), 2, sym_number, sym_private_property_identifier, - STATE(4339), 3, + STATE(4393), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292862,23 +292951,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201665] = 7, + [201650] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(7037), 2, + ACTIONS(7025), 2, sym_number, sym_private_property_identifier, - STATE(4279), 3, + STATE(4413), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292898,23 +292987,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201708] = 7, + [201693] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6913), 2, + ACTIONS(6981), 2, sym_number, sym_private_property_identifier, - STATE(4059), 3, + STATE(4344), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -292934,60 +293023,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201751] = 8, + [201736] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(670), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(2950), 1, - sym_identifier, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, - anon_sym_LBRACK, - STATE(5433), 1, - sym_pattern, - STATE(4129), 4, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - sym_rest_pattern, - ACTIONS(1612), 18, - anon_sym_export, - anon_sym_type, - anon_sym_namespace, - anon_sym_async, - anon_sym_static, - anon_sym_readonly, - anon_sym_get, - anon_sym_set, - anon_sym_declare, - anon_sym_public, - anon_sym_private, - anon_sym_protected, - anon_sym_module, - anon_sym_any, - anon_sym_number, - anon_sym_boolean, - anon_sym_string, - anon_sym_symbol, - [201796] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6826), 2, + ACTIONS(6856), 2, sym_number, sym_private_property_identifier, - STATE(4406), 3, + STATE(4349), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293007,23 +293059,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201839] = 7, + [201779] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6736), 2, + ACTIONS(7039), 2, sym_number, sym_private_property_identifier, - STATE(4324), 3, + STATE(4417), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293043,23 +293095,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201882] = 7, + [201822] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6884), 2, + ACTIONS(6796), 2, sym_number, sym_private_property_identifier, - STATE(4397), 3, + STATE(4318), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293079,28 +293131,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201925] = 7, + [201865] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(670), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(2960), 1, + sym_identifier, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, anon_sym_LBRACK, - ACTIONS(7041), 2, - sym_number, - sym_private_property_identifier, - STATE(4328), 3, - sym_string, - sym__property_name, - sym_computed_property_name, - ACTIONS(2884), 19, + STATE(5436), 1, + sym_pattern, + STATE(4225), 4, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + sym_rest_pattern, + ACTIONS(1648), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, - sym_identifier, anon_sym_static, anon_sym_readonly, anon_sym_get, @@ -293115,23 +293168,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [201968] = 7, + [201910] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6880), 2, + ACTIONS(6774), 2, sym_number, sym_private_property_identifier, - STATE(4362), 3, + STATE(4384), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293151,23 +293204,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202011] = 7, + [201953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6882), 2, + ACTIONS(6880), 2, sym_number, sym_private_property_identifier, - STATE(4055), 3, + STATE(4048), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 19, + ACTIONS(4694), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293187,23 +293240,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202054] = 7, + [201996] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6961), 2, + ACTIONS(2848), 2, sym_number, sym_private_property_identifier, - STATE(4331), 3, + STATE(4351), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293223,23 +293276,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202097] = 7, + [202039] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6774), 2, + ACTIONS(7027), 2, sym_number, sym_private_property_identifier, - STATE(4346), 3, + STATE(4398), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293259,23 +293312,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202140] = 7, + [202082] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6746), 2, + ACTIONS(6878), 2, sym_number, sym_private_property_identifier, - STATE(4413), 3, + STATE(4034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(4694), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293295,23 +293348,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202183] = 7, + [202125] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6802), 2, + ACTIONS(6913), 2, sym_number, sym_private_property_identifier, - STATE(4347), 3, + STATE(4015), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(4694), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293331,23 +293384,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202226] = 7, + [202168] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6856), 2, + ACTIONS(7011), 2, sym_number, sym_private_property_identifier, - STATE(4310), 3, + STATE(4307), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293367,23 +293420,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202269] = 7, + [202211] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6796), 2, + ACTIONS(6788), 2, sym_number, sym_private_property_identifier, - STATE(4366), 3, + STATE(4337), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293403,31 +293456,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202312] = 8, + [202254] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6915), 1, - anon_sym_readonly, - ACTIONS(6886), 2, + ACTIONS(6824), 2, sym_number, sym_private_property_identifier, - STATE(4022), 3, + STATE(4363), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 18, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -293440,31 +293492,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202357] = 8, + [202297] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6917), 1, - anon_sym_readonly, - ACTIONS(6882), 2, + ACTIONS(7029), 2, sym_number, sym_private_property_identifier, - STATE(4055), 3, + STATE(4313), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 18, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, + anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -293477,23 +293528,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202402] = 7, + [202340] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(2022), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6275), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6886), 2, + ACTIONS(6271), 2, sym_number, sym_private_property_identifier, - STATE(4022), 3, + STATE(4330), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(4704), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293513,30 +293564,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202445] = 7, + [202383] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6275), 1, anon_sym_LBRACK, - ACTIONS(6552), 2, + ACTIONS(6915), 1, + anon_sym_readonly, + ACTIONS(6878), 2, sym_number, sym_private_property_identifier, - STATE(4398), 3, + STATE(4034), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(4694), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, anon_sym_async, sym_identifier, anon_sym_static, - anon_sym_readonly, anon_sym_get, anon_sym_set, anon_sym_declare, @@ -293549,23 +293601,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202488] = 7, + [202428] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(6204), 1, + ACTIONS(6269), 1, anon_sym_LBRACK, - ACTIONS(6862), 2, + ACTIONS(6864), 2, sym_number, sym_private_property_identifier, - STATE(4367), 3, + STATE(4322), 3, sym_string, sym__property_name, sym_computed_property_name, - ACTIONS(2884), 19, + ACTIONS(2882), 19, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293585,15 +293637,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202531] = 3, + [202471] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7112), 4, + ACTIONS(7108), 4, anon_sym_LBRACE, anon_sym_LBRACK, anon_sym_DOT_DOT_DOT, anon_sym_AT, - ACTIONS(7110), 22, + ACTIONS(7106), 22, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293616,14 +293668,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_symbol, anon_sym_abstract, - [202565] = 4, + [202505] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7114), 1, + ACTIONS(7110), 1, sym_identifier, - STATE(5668), 1, + STATE(5612), 1, sym_mapped_type_clause, - ACTIONS(7116), 18, + ACTIONS(7112), 18, anon_sym_export, anon_sym_type, anon_sym_namespace, @@ -293642,58 +293694,59 @@ static uint16_t ts_small_parse_table[] = { anon_sym_boolean, anon_sym_string, anon_sym_symbol, - [202595] = 6, + [202535] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_EQ, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, + ACTIONS(2002), 1, anon_sym_DOT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 12, + ACTIONS(5170), 1, + anon_sym_EQ, + ACTIONS(5172), 15, anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, + anon_sym_LT, anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, + anon_sym_implements, anon_sym_extends, - [202625] = 4, + [202562] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, - anon_sym_DOT, - ACTIONS(5202), 1, + ACTIONS(4823), 1, anon_sym_EQ, - ACTIONS(5204), 14, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LT, anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_implements, anon_sym_extends, - [202651] = 3, + [202592] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2203), 1, + ACTIONS(2175), 1, anon_sym_PIPE, - ACTIONS(2201), 15, + ACTIONS(2173), 15, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -293709,12 +293762,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [202675] = 3, + [202616] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2163), 1, + ACTIONS(2051), 1, anon_sym_PIPE, - ACTIONS(2161), 15, + ACTIONS(2049), 15, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -293730,10 +293783,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [202699] = 2, + [202640] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7122), 15, + ACTIONS(7118), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293749,10 +293802,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202720] = 2, + [202661] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7124), 15, + ACTIONS(7120), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293768,10 +293821,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202741] = 2, + [202682] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7126), 15, + ACTIONS(7122), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293787,29 +293840,50 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202762] = 2, + [202703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7128), 15, - anon_sym_PLUS_EQ, - anon_sym_DASH_EQ, - anon_sym_STAR_EQ, - anon_sym_SLASH_EQ, - anon_sym_PERCENT_EQ, - anon_sym_CARET_EQ, - anon_sym_AMP_EQ, - anon_sym_PIPE_EQ, - anon_sym_GT_GT_EQ, - anon_sym_GT_GT_GT_EQ, - anon_sym_LT_LT_EQ, - anon_sym_STAR_STAR_EQ, - anon_sym_AMP_AMP_EQ, - anon_sym_PIPE_PIPE_EQ, - anon_sym_QMARK_QMARK_EQ, - [202783] = 2, + ACTIONS(5083), 1, + anon_sym_EQ, + ACTIONS(5085), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_implements, + anon_sym_extends, + [202726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7130), 15, + ACTIONS(5069), 1, + anon_sym_EQ, + ACTIONS(5071), 14, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, + 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_implements, + anon_sym_extends, + [202749] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7124), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293825,10 +293899,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202804] = 2, + [202770] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7132), 15, + ACTIONS(7126), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293844,10 +293918,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202825] = 2, + [202791] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7134), 15, + ACTIONS(7128), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293863,10 +293937,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202846] = 2, + [202812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7136), 15, + ACTIONS(7130), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293882,10 +293956,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202867] = 2, + [202833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7138), 15, + ACTIONS(7132), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293901,10 +293975,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202888] = 2, + [202854] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7140), 15, + ACTIONS(7134), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293920,10 +293994,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202909] = 2, + [202875] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7142), 15, + ACTIONS(7136), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293939,16 +294013,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202930] = 5, + [202896] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, + ACTIONS(4829), 1, anon_sym_EQ, - ACTIONS(7118), 1, + ACTIONS(7114), 1, anon_sym_LT, - STATE(3859), 1, + STATE(3832), 1, sym_type_arguments, - ACTIONS(4839), 12, + ACTIONS(4831), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -293961,10 +294035,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [202957] = 2, + [202923] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7138), 15, + anon_sym_PLUS_EQ, + anon_sym_DASH_EQ, + anon_sym_STAR_EQ, + anon_sym_SLASH_EQ, + anon_sym_PERCENT_EQ, + anon_sym_CARET_EQ, + anon_sym_AMP_EQ, + anon_sym_PIPE_EQ, + anon_sym_GT_GT_EQ, + anon_sym_GT_GT_GT_EQ, + anon_sym_LT_LT_EQ, + anon_sym_STAR_STAR_EQ, + anon_sym_AMP_AMP_EQ, + anon_sym_PIPE_PIPE_EQ, + anon_sym_QMARK_QMARK_EQ, + [202944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7144), 15, + ACTIONS(7140), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293980,10 +294073,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202978] = 2, + [202965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7146), 15, + ACTIONS(7142), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -293999,10 +294092,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [202999] = 2, + [202986] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7148), 15, + ACTIONS(7144), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -294018,10 +294111,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [203020] = 2, + [203007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7150), 15, + ACTIONS(7146), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -294037,10 +294130,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [203041] = 2, + [203028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7152), 15, + ACTIONS(7148), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -294056,10 +294149,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [203062] = 2, + [203049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7154), 15, + ACTIONS(7150), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -294075,10 +294168,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [203083] = 2, + [203070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7156), 15, + ACTIONS(7152), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -294094,10 +294187,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [203104] = 2, + [203091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7158), 15, + ACTIONS(7154), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -294113,10 +294206,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [203125] = 2, + [203112] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7160), 15, + ACTIONS(7156), 15, anon_sym_PLUS_EQ, anon_sym_DASH_EQ, anon_sym_STAR_EQ, @@ -294132,78 +294225,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP_EQ, anon_sym_PIPE_PIPE_EQ, anon_sym_QMARK_QMARK_EQ, - [203146] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7166), 1, - anon_sym_BANG, - ACTIONS(7168), 1, - anon_sym_COLON, - ACTIONS(7170), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4486), 1, - sym__call_signature, - STATE(4498), 1, - sym_type_annotation, - STATE(4995), 1, - sym__initializer, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7164), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [203188] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - ACTIONS(7174), 1, - anon_sym_BANG, - ACTIONS(7176), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4514), 1, - sym_type_annotation, - STATE(5030), 1, - sym__call_signature, - STATE(5032), 1, - sym__initializer, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7172), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [203230] = 7, + [203133] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, + ACTIONS(4823), 1, anon_sym_PIPE, - ACTIONS(7178), 1, + ACTIONS(7158), 1, anon_sym_LT, - ACTIONS(7180), 1, + ACTIONS(7160), 1, anon_sym_DOT, - ACTIONS(7182), 1, + ACTIONS(7162), 1, anon_sym_is, - STATE(3946), 1, + STATE(3936), 1, sym_type_arguments, - ACTIONS(3866), 9, + ACTIONS(3862), 9, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -294213,95 +294248,76 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [203260] = 3, + [203163] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_EQ, - ACTIONS(5050), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, - 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_implements, - anon_sym_extends, - [203282] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, ACTIONS(7168), 1, - anon_sym_COLON, - ACTIONS(7186), 1, anon_sym_BANG, - ACTIONS(7188), 1, + ACTIONS(7170), 1, + anon_sym_COLON, + ACTIONS(7172), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4533), 1, - sym__call_signature, - STATE(4534), 1, + STATE(4643), 1, sym_type_annotation, - STATE(5061), 1, + STATE(4936), 1, + sym__call_signature, + STATE(4985), 1, sym__initializer, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7184), 3, + ACTIONS(7166), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203324] = 13, + [203205] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - ACTIONS(7192), 1, + ACTIONS(7176), 1, anon_sym_BANG, - ACTIONS(7194), 1, + ACTIONS(7178), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4556), 1, + STATE(4601), 1, sym_type_annotation, - STATE(4557), 1, + STATE(4602), 1, sym__call_signature, - STATE(5136), 1, + STATE(4925), 1, sym__initializer, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7190), 3, + ACTIONS(7174), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203366] = 6, + [203247] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, + ACTIONS(4823), 1, anon_sym_PIPE, - ACTIONS(7178), 1, + ACTIONS(7158), 1, anon_sym_LT, - ACTIONS(7180), 1, + ACTIONS(7160), 1, anon_sym_DOT, - STATE(3946), 1, + STATE(3936), 1, sym_type_arguments, - ACTIONS(3866), 10, + ACTIONS(3862), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -294312,126 +294328,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [203394] = 13, + [203275] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - ACTIONS(7186), 1, + ACTIONS(7182), 1, anon_sym_BANG, - ACTIONS(7196), 1, + ACTIONS(7184), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4534), 1, + STATE(4700), 1, sym_type_annotation, - STATE(5083), 1, + STATE(4726), 1, sym__call_signature, - STATE(5084), 1, + STATE(5049), 1, sym__initializer, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7184), 3, + ACTIONS(7180), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203436] = 13, + [203317] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - ACTIONS(7174), 1, + ACTIONS(7188), 1, anon_sym_BANG, - ACTIONS(7198), 1, + ACTIONS(7190), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4513), 1, + STATE(4517), 1, sym__call_signature, - STATE(4514), 1, + STATE(4520), 1, sym_type_annotation, - STATE(5026), 1, + STATE(5062), 1, sym__initializer, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7172), 3, + ACTIONS(7186), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [203478] = 3, + [203359] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(5065), 13, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7168), 1, + anon_sym_BANG, + ACTIONS(7170), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(7192), 1, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_implements, - anon_sym_extends, - [203500] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, - anon_sym_DOT, - ACTIONS(5202), 1, - anon_sym_PIPE, - ACTIONS(5204), 11, + STATE(3985), 1, + sym_formal_parameters, + STATE(4643), 1, + sym_type_annotation, + STATE(4646), 1, + sym__call_signature, + STATE(4993), 1, + sym__initializer, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7166), 3, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LT, - anon_sym_AMP, - anon_sym_extends, - anon_sym_PIPE_RBRACE, - [203523] = 3, + [203401] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(4875), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7170), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(7176), 1, + anon_sym_BANG, + ACTIONS(7194), 1, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [203544] = 3, + STATE(3985), 1, + sym_formal_parameters, + STATE(4601), 1, + sym_type_annotation, + STATE(4962), 1, + sym__call_signature, + STATE(4974), 1, + sym__initializer, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7174), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [203443] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 1, + ACTIONS(5185), 1, anon_sym_EQ, - ACTIONS(5274), 12, + ACTIONS(5187), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294444,37 +294462,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203565] = 10, + [203464] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(7198), 1, anon_sym_COLON, - ACTIONS(7204), 1, + ACTIONS(7200), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4549), 1, - sym__call_signature, - STATE(4550), 1, + STATE(4615), 1, sym_type_annotation, - STATE(5416), 1, + STATE(4616), 1, + sym__call_signature, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7200), 5, + ACTIONS(7196), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [203600] = 3, + [203499] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, + ACTIONS(4902), 1, anon_sym_EQ, - ACTIONS(4855), 12, + ACTIONS(4904), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294487,12 +294505,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203621] = 3, + [203520] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, + ACTIONS(2296), 1, anon_sym_EQ, - ACTIONS(5252), 12, + ACTIONS(2294), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294505,12 +294523,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203642] = 3, + [203541] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, + ACTIONS(4906), 1, anon_sym_EQ, - ACTIONS(5211), 12, + ACTIONS(4908), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294523,30 +294541,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203663] = 3, + [203562] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7202), 1, anon_sym_EQ, - ACTIONS(5032), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7207), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7209), 1, + anon_sym_extends, + STATE(3833), 1, + sym_type_arguments, + STATE(4827), 1, + sym_constraint, + STATE(5362), 1, + sym_default_type, + ACTIONS(7204), 2, + anon_sym_COMMA, anon_sym_GT, - anon_sym_EQ_GT, - anon_sym_QMARK, + ACTIONS(3862), 3, + anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, - anon_sym_extends, - [203684] = 3, + [203599] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 1, + ACTIONS(5256), 1, anon_sym_EQ, - ACTIONS(5245), 12, + ACTIONS(5258), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294559,12 +294585,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203705] = 3, + [203620] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 1, + ACTIONS(4829), 1, anon_sym_EQ, - ACTIONS(5215), 12, + ACTIONS(4831), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294577,17 +294603,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203726] = 3, + [203641] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, + ACTIONS(4910), 1, anon_sym_EQ, - ACTIONS(5241), 12, + ACTIONS(7212), 1, + anon_sym_LBRACK, + ACTIONS(4912), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -294595,12 +294622,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203747] = 3, + [203664] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(4916), 1, anon_sym_EQ, - ACTIONS(5196), 12, + ACTIONS(4918), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294613,30 +294640,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203768] = 3, + [203685] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 1, - anon_sym_EQ, - ACTIONS(5192), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7198), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(7216), 1, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [203789] = 3, + STATE(3985), 1, + sym_formal_parameters, + STATE(4135), 1, + sym__call_signature, + STATE(4565), 1, + sym_type_annotation, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7214), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [203720] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 1, + ACTIONS(5197), 1, anon_sym_EQ, - ACTIONS(5221), 12, + ACTIONS(5199), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294649,87 +294683,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203810] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(4649), 1, - anon_sym_EQ, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7209), 1, - anon_sym_QMARK, - STATE(3853), 1, - sym_type_arguments, - STATE(5430), 1, - sym_type_annotation, - ACTIONS(7206), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3866), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [203845] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7214), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4222), 1, - sym__call_signature, - STATE(4506), 1, - sym_type_annotation, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7212), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [203880] = 10, + [203741] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7218), 1, + ACTIONS(7198), 1, anon_sym_COLON, ACTIONS(7220), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4479), 1, + STATE(4704), 1, sym__call_signature, - STATE(4480), 1, + STATE(4705), 1, sym_type_annotation, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7216), 5, + ACTIONS(7218), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [203915] = 3, + [203776] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, + ACTIONS(5045), 1, anon_sym_EQ, - ACTIONS(5256), 12, + ACTIONS(5047), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294742,37 +294726,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203936] = 10, + [203797] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(7198), 1, anon_sym_COLON, ACTIONS(7222), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4251), 1, + STATE(4156), 1, sym__call_signature, - STATE(4550), 1, + STATE(4615), 1, sym_type_annotation, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7200), 5, + ACTIONS(7196), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [203971] = 3, + [203832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, + ACTIONS(4839), 1, anon_sym_EQ, - ACTIONS(5270), 12, + ACTIONS(4841), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294785,12 +294769,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [203992] = 3, + [203853] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(5049), 1, anon_sym_EQ, - ACTIONS(2278), 12, + ACTIONS(5051), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294803,12 +294787,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [204013] = 3, + [203874] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(5241), 1, anon_sym_EQ, - ACTIONS(4889), 12, + ACTIONS(5243), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294821,43 +294805,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [204034] = 10, + [203895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(5249), 1, + anon_sym_EQ, + ACTIONS(5251), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(7220), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_GT, + anon_sym_EQ_GT, anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4479), 1, - sym__call_signature, - STATE(4480), 1, - sym_type_annotation, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7216), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [204069] = 5, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [203916] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5034), 1, + ACTIONS(5053), 1, anon_sym_EQ, - ACTIONS(7224), 1, + ACTIONS(7212), 1, anon_sym_LBRACK, - ACTIONS(4883), 3, + ACTIONS(4912), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(5036), 8, + ACTIONS(5055), 8, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294866,12 +294843,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_EQ_GT, anon_sym_QMARK, - [204094] = 3, + [203941] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, + ACTIONS(5057), 1, anon_sym_EQ, - ACTIONS(5040), 12, + ACTIONS(5059), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294884,43 +294861,36 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [204115] = 10, + [203962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7228), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4239), 1, - sym__call_signature, - STATE(4527), 1, - sym_type_annotation, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7226), 5, + ACTIONS(2002), 1, + anon_sym_DOT, + ACTIONS(5170), 1, + anon_sym_PIPE, + ACTIONS(5172), 11, sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LT, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [204150] = 4, + [203985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(5065), 1, anon_sym_EQ, - ACTIONS(7224), 1, - anon_sym_LBRACK, - ACTIONS(4883), 11, + ACTIONS(5067), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -294928,37 +294898,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [204173] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7230), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4505), 1, - sym__call_signature, - STATE(4506), 1, - sym_type_annotation, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7212), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [204208] = 3, + [204006] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, + ACTIONS(5075), 1, anon_sym_EQ, - ACTIONS(4839), 12, + ACTIONS(5077), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -294971,17 +294916,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [204229] = 3, + [204027] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, + ACTIONS(5079), 1, anon_sym_EQ, - ACTIONS(5046), 12, + ACTIONS(7212), 1, + anon_sym_LBRACK, + ACTIONS(5081), 11, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -294989,16 +294935,16 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [204250] = 5, + [204050] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, + ACTIONS(4829), 1, anon_sym_PIPE, - ACTIONS(7178), 1, + ACTIONS(7158), 1, anon_sym_LT, - STATE(3933), 1, + STATE(3932), 1, sym_type_arguments, - ACTIONS(4839), 10, + ACTIONS(4831), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -295009,112 +294955,110 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [204275] = 10, + [204075] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5193), 1, + anon_sym_EQ, + ACTIONS(5195), 12, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, + [204096] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7232), 1, + ACTIONS(7198), 1, anon_sym_COLON, - ACTIONS(7234), 1, + ACTIONS(7224), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4171), 1, - sym__call_signature, - STATE(4480), 1, + STATE(4565), 1, sym_type_annotation, - STATE(5416), 1, + STATE(4566), 1, + sym__call_signature, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7216), 5, + ACTIONS(7214), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [204310] = 11, + [204131] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7236), 1, - anon_sym_EQ, - ACTIONS(7241), 1, - anon_sym_COLON, - ACTIONS(7243), 1, - anon_sym_extends, - STATE(3853), 1, - sym_type_arguments, - STATE(4905), 1, - sym_constraint, - STATE(5385), 1, - sym_default_type, - ACTIONS(7238), 2, - anon_sym_COMMA, - anon_sym_GT, - ACTIONS(3866), 3, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - [204347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5055), 1, - anon_sym_EQ, - ACTIONS(5057), 12, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7198), 1, anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_GT, - anon_sym_EQ_GT, + ACTIONS(7228), 1, anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [204368] = 10, + STATE(3985), 1, + sym_formal_parameters, + STATE(4661), 1, + sym_type_annotation, + STATE(4662), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7226), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204166] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7246), 1, + ACTIONS(7220), 1, anon_sym_QMARK, - STATE(3972), 1, + ACTIONS(7230), 1, + anon_sym_COLON, + STATE(3985), 1, sym_formal_parameters, - STATE(4526), 1, + STATE(4704), 1, sym__call_signature, - STATE(4527), 1, + STATE(4705), 1, sym_type_annotation, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7226), 5, + ACTIONS(7218), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [204403] = 4, + [204201] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5181), 1, anon_sym_EQ, - ACTIONS(7224), 1, - anon_sym_LBRACK, - ACTIONS(5061), 11, + ACTIONS(5183), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_GT, anon_sym_EQ_GT, @@ -295122,12 +295066,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [204426] = 3, + [204222] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3922), 1, + anon_sym_COLON, + ACTIONS(4639), 1, + anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7235), 1, + anon_sym_QMARK, + STATE(3833), 1, + sym_type_arguments, + STATE(5440), 1, + sym_type_annotation, + ACTIONS(7232), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(3862), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [204257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(5162), 1, anon_sym_EQ, - ACTIONS(4879), 12, + ACTIONS(5164), 12, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RPAREN, @@ -295140,131 +295109,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [204447] = 8, + [204278] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, - anon_sym_COLON, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7209), 1, - anon_sym_QMARK, - STATE(3853), 1, - sym_type_arguments, - STATE(5430), 1, - sym_type_annotation, - ACTIONS(3866), 6, + ACTIONS(5158), 1, + anon_sym_EQ, + ACTIONS(5160), 12, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RPAREN, + 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, - [204477] = 9, + [204299] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(7238), 1, anon_sym_COLON, - STATE(3972), 1, + ACTIONS(7240), 1, + anon_sym_QMARK, + STATE(3985), 1, sym_formal_parameters, - STATE(4259), 1, + STATE(4254), 1, sym__call_signature, - STATE(4568), 1, + STATE(4705), 1, sym_type_annotation, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7248), 5, + ACTIONS(7218), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [204509] = 9, + [204334] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(7198), 1, anon_sym_COLON, - STATE(3972), 1, + ACTIONS(7242), 1, + anon_sym_QMARK, + STATE(3985), 1, sym_formal_parameters, - STATE(4528), 1, + STATE(4213), 1, sym__call_signature, - STATE(4529), 1, + STATE(4661), 1, sym_type_annotation, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7250), 5, + ACTIONS(7226), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [204541] = 6, + [204369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7252), 1, - anon_sym_LT, - ACTIONS(7254), 1, - anon_sym_DOT, - ACTIONS(7256), 1, - anon_sym_is, - STATE(4117), 1, - sym_type_arguments, - ACTIONS(3866), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(5189), 1, + anon_sym_EQ, + ACTIONS(5191), 12, anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_RPAREN, + 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, - [204567] = 9, + [204390] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(3922), 1, anon_sym_COLON, - STATE(3972), 1, - sym_formal_parameters, - STATE(4508), 1, - sym__call_signature, - STATE(4509), 1, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7235), 1, + anon_sym_QMARK, + STATE(3833), 1, + sym_type_arguments, + STATE(5440), 1, sym_type_annotation, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7258), 5, - sym__automatic_semicolon, + ACTIONS(3862), 6, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [204599] = 7, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [204420] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4686), 1, + ACTIONS(4685), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -295272,63 +295238,93 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [204627] = 6, + [204448] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(7178), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7180), 1, - anon_sym_DOT, - ACTIONS(7260), 1, - anon_sym_is, - STATE(3946), 1, - sym_type_arguments, - ACTIONS(3866), 8, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7198), 1, + anon_sym_COLON, + STATE(3985), 1, + sym_formal_parameters, + STATE(4609), 1, + sym_type_annotation, + STATE(4613), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7244), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [204653] = 7, + anon_sym_PIPE_RBRACE, + [204480] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7198), 1, + anon_sym_COLON, + STATE(3985), 1, + sym_formal_parameters, + STATE(4441), 1, + sym_type_annotation, + STATE(4484), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7246), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(4680), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [204512] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7164), 1, anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4676), 7, + ACTIONS(7170), 1, + anon_sym_COLON, + STATE(3985), 1, + sym_formal_parameters, + STATE(4449), 1, + sym_type_annotation, + STATE(4454), 1, + sym__call_signature, + STATE(5133), 1, + sym__initializer, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7248), 3, sym__automatic_semicolon, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - anon_sym_PIPE_RBRACE, - [204681] = 9, + [204548] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(7198), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4269), 1, + STATE(4133), 1, sym__call_signature, - STATE(4529), 1, + STATE(4571), 1, sym_type_annotation, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, ACTIONS(7250), 5, sym__automatic_semicolon, @@ -295336,116 +295332,182 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [204713] = 9, + [204580] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4250), 1, + STATE(4526), 1, sym__call_signature, - STATE(4547), 1, + STATE(4528), 1, sym_type_annotation, - STATE(5416), 1, + STATE(5047), 1, + sym__initializer, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7262), 5, + ACTIONS(7252), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [204745] = 11, + [204616] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(7158), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7160), 1, + anon_sym_DOT, + ACTIONS(7254), 1, + anon_sym_is, + STATE(3936), 1, + sym_type_arguments, + ACTIONS(3862), 8, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [204642] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4572), 1, + STATE(4528), 1, sym_type_annotation, - STATE(4574), 1, - sym__call_signature, - STATE(5140), 1, + STATE(5159), 1, sym__initializer, - STATE(5416), 1, + STATE(5160), 1, + sym__call_signature, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7264), 3, + ACTIONS(7252), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204781] = 11, + [204678] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(7114), 1, anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7232), 1, + anon_sym_RPAREN, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(4639), 4, anon_sym_EQ, - ACTIONS(7168), 1, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [204706] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7198), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4554), 1, - sym_type_annotation, - STATE(4555), 1, + STATE(4146), 1, sym__call_signature, - STATE(5112), 1, - sym__initializer, - STATE(5416), 1, + STATE(4441), 1, + sym_type_annotation, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7266), 3, + ACTIONS(7246), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [204817] = 9, + anon_sym_PIPE_RBRACE, + [204738] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(7198), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4223), 1, + STATE(4143), 1, sym__call_signature, - STATE(4509), 1, + STATE(4609), 1, sym_type_annotation, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7258), 5, + ACTIONS(7244), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [204849] = 7, + [204770] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_COLON, + STATE(3985), 1, + sym_formal_parameters, + STATE(4594), 1, + sym__call_signature, + STATE(4595), 1, + sym_type_annotation, + STATE(4939), 1, + sym__initializer, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7256), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [204806] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4692), 1, + ACTIONS(4688), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(4676), 7, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -295453,20 +295515,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [204877] = 7, + [204834] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4689), 1, + ACTIONS(4670), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 7, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -295474,20 +295536,20 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [204905] = 7, + [204862] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4701), 1, + ACTIONS(4673), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - STATE(4999), 1, + STATE(5010), 1, aux_sym_object_repeat1, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -295495,45 +295557,66 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [204933] = 11, + [204890] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4554), 1, + STATE(4595), 1, sym_type_annotation, - STATE(5127), 1, - sym__initializer, - STATE(5138), 1, + STATE(4950), 1, sym__call_signature, - STATE(5416), 1, + STATE(4960), 1, + sym__initializer, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7266), 3, + ACTIONS(7256), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [204969] = 7, + [204926] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4695), 1, + ACTIONS(4676), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, aux_sym_object_repeat1, - STATE(4997), 1, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [204954] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4660), 1, + anon_sym_COMMA, + ACTIONS(4691), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -295541,66 +295624,68 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [204997] = 7, + [204982] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(4833), 1, - anon_sym_PIPE, - ACTIONS(7178), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7180), 1, - anon_sym_DOT, - STATE(3946), 1, - sym_type_arguments, - ACTIONS(7206), 2, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7198), 1, + anon_sym_COLON, + STATE(3985), 1, + sym_formal_parameters, + STATE(4192), 1, + sym__call_signature, + STATE(4654), 1, + sym_type_annotation, + STATE(5259), 1, + sym_type_parameters, + ACTIONS(7258), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(3866), 6, - sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [205025] = 11, + [205014] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4560), 1, - sym_type_annotation, - STATE(5077), 1, + STATE(4637), 1, sym__call_signature, - STATE(5078), 1, + STATE(4641), 1, + sym_type_annotation, + STATE(4976), 1, sym__initializer, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7268), 3, + ACTIONS(7260), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [205061] = 7, + [205050] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4673), 1, + ACTIONS(4679), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, + STATE(4920), 1, aux_sym_object_repeat1, - ACTIONS(4676), 7, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -295608,133 +295693,128 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [205089] = 9, + [205078] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7202), 1, - anon_sym_COLON, - STATE(3972), 1, - sym_formal_parameters, - STATE(4546), 1, - sym__call_signature, - STATE(4547), 1, - sym_type_annotation, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7262), 5, - sym__automatic_semicolon, + ACTIONS(4660), 1, anon_sym_COMMA, + ACTIONS(4682), 1, anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [205121] = 9, + [205106] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(7262), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7264), 1, + anon_sym_DOT, + ACTIONS(7266), 1, + anon_sym_is, + STATE(4102), 1, + sym_type_arguments, + ACTIONS(3862), 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, + [205132] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7202), 1, + ACTIONS(7198), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4568), 1, + STATE(4654), 1, sym_type_annotation, - STATE(4606), 1, + STATE(4658), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7248), 5, + ACTIONS(7258), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [205153] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7206), 1, - anon_sym_RPAREN, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(4649), 4, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_COLON, - anon_sym_QMARK, - [205181] = 11, + [205164] = 9, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7198), 1, anon_sym_COLON, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4515), 1, + STATE(4571), 1, sym_type_annotation, - STATE(4516), 1, + STATE(4573), 1, sym__call_signature, - STATE(5036), 1, - sym__initializer, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - ACTIONS(7270), 3, + ACTIONS(7250), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [205217] = 7, + anon_sym_PIPE_RBRACE, + [205196] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4823), 1, + anon_sym_PIPE, + ACTIONS(7158), 1, + anon_sym_LT, + ACTIONS(7160), 1, + anon_sym_DOT, + STATE(3936), 1, + sym_type_arguments, + ACTIONS(7232), 2, anon_sym_COMMA, - ACTIONS(4698), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(4676), 7, + ACTIONS(3862), 6, sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [205245] = 7, + [205224] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4670), 1, + ACTIONS(4660), 1, anon_sym_COMMA, - ACTIONS(4683), 1, + ACTIONS(4663), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 7, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -295742,40 +295822,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [205273] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - STATE(3972), 1, - sym_formal_parameters, - STATE(4536), 1, - sym__call_signature, - STATE(4560), 1, - sym_type_annotation, - STATE(5066), 1, - sym__initializer, - STATE(5416), 1, - sym_type_parameters, - ACTIONS(7268), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [205309] = 4, + [205252] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, + ACTIONS(5045), 1, anon_sym_PIPE, - ACTIONS(7182), 1, - anon_sym_is, - ACTIONS(4839), 9, + ACTIONS(5047), 10, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -295784,12 +295838,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205330] = 3, + [205271] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5190), 1, + ACTIONS(5185), 1, anon_sym_PIPE, - ACTIONS(5192), 10, + ACTIONS(5187), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -295800,26 +295854,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205349] = 3, + [205290] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_PIPE, - ACTIONS(3734), 10, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7268), 1, + anon_sym_is, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 7, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [205368] = 2, + [205315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6573), 11, + ACTIONS(6630), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -295831,28 +295888,30 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [205385] = 3, + [205332] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5219), 1, - anon_sym_PIPE, - ACTIONS(5221), 10, + ACTIONS(7262), 1, + anon_sym_LT, + ACTIONS(7264), 1, + anon_sym_DOT, + STATE(4102), 1, + sym_type_arguments, + ACTIONS(3862), 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, - [205404] = 3, + [205355] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2906), 1, + ACTIONS(3764), 1, anon_sym_PIPE, - ACTIONS(2904), 10, + ACTIONS(3766), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -295863,28 +295922,32 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205423] = 3, + [205374] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4873), 1, - anon_sym_PIPE, - ACTIONS(4875), 10, - sym__automatic_semicolon, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(4557), 2, anon_sym_EQ, - anon_sym_LBRACE, + anon_sym_COLON, + ACTIONS(7270), 2, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(3862), 4, anon_sym_LBRACK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [205442] = 3, + [205401] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4853), 1, + ACTIONS(5083), 1, anon_sym_PIPE, - ACTIONS(4855), 10, + ACTIONS(5085), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -295895,28 +295958,29 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205461] = 3, + [205420] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, + ACTIONS(5079), 1, anon_sym_PIPE, - ACTIONS(5065), 10, + ACTIONS(7273), 1, + anon_sym_LBRACK, + ACTIONS(5081), 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, - [205480] = 3, + [205441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 1, + ACTIONS(2886), 1, anon_sym_PIPE, - ACTIONS(3770), 10, + ACTIONS(2884), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -295927,29 +295991,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205499] = 4, + [205460] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5059), 1, + ACTIONS(5075), 1, anon_sym_PIPE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(5061), 9, + ACTIONS(5077), 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, - [205520] = 3, + [205479] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5272), 1, + ACTIONS(5069), 1, anon_sym_PIPE, - ACTIONS(5274), 10, + ACTIONS(5071), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -295960,12 +296023,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205539] = 3, + [205498] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, + ACTIONS(4902), 1, anon_sym_PIPE, - ACTIONS(2908), 10, + ACTIONS(4904), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -295976,12 +296039,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205558] = 3, + [205517] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5055), 1, + ACTIONS(5065), 1, anon_sym_PIPE, - ACTIONS(5057), 10, + ACTIONS(5067), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -295992,14 +296055,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205577] = 3, + [205536] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2902), 1, + ACTIONS(4829), 1, anon_sym_PIPE, - ACTIONS(2900), 10, + ACTIONS(7162), 1, + anon_sym_is, + ACTIONS(4831), 9, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, @@ -296008,12 +296072,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205596] = 3, + [205557] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7275), 1, + anon_sym_is, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [205582] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, + ACTIONS(5057), 1, anon_sym_PIPE, - ACTIONS(2278), 10, + ACTIONS(5059), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296024,28 +296107,49 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205615] = 3, + [205601] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5213), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5215), 10, + ACTIONS(7273), 1, + anon_sym_LBRACK, + ACTIONS(4912), 2, + anon_sym_AMP, + anon_sym_extends, + ACTIONS(5055), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [205624] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7277), 1, + anon_sym_is, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 7, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [205634] = 3, + [205649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2898), 1, + ACTIONS(5241), 1, anon_sym_PIPE, - ACTIONS(2896), 10, + ACTIONS(5243), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296056,18 +296160,18 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205653] = 6, + [205668] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4730), 1, + ACTIONS(4736), 1, anon_sym_COMMA, - ACTIONS(4733), 1, + ACTIONS(4739), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 7, + ACTIONS(4666), 7, sym__automatic_semicolon, anon_sym_LPAREN, anon_sym_SEMI, @@ -296075,12 +296179,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [205678] = 3, + [205693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4877), 1, + ACTIONS(5189), 1, anon_sym_PIPE, - ACTIONS(4879), 10, + ACTIONS(5191), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296091,12 +296195,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205697] = 3, + [205712] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4837), 1, + ACTIONS(2296), 1, anon_sym_PIPE, - ACTIONS(4839), 10, + ACTIONS(2294), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296107,12 +296211,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205716] = 3, + [205731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, + ACTIONS(4839), 1, anon_sym_PIPE, - ACTIONS(5050), 10, + ACTIONS(4841), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296123,12 +296227,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205735] = 3, + [205750] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2894), 1, + ACTIONS(3604), 1, anon_sym_PIPE, - ACTIONS(2892), 10, + ACTIONS(3606), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296139,12 +296243,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205754] = 3, + [205769] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5268), 1, + ACTIONS(5049), 1, anon_sym_PIPE, - ACTIONS(5270), 10, + ACTIONS(5051), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296155,12 +296259,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205773] = 3, + [205788] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5254), 1, + ACTIONS(5249), 1, anon_sym_PIPE, - ACTIONS(5256), 10, + ACTIONS(5251), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296171,12 +296275,31 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205792] = 3, + [205807] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(5194), 1, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7279), 1, + anon_sym_is, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 7, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [205832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5256), 1, anon_sym_PIPE, - ACTIONS(5196), 10, + ACTIONS(5258), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296187,32 +296310,28 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205811] = 7, + [205851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(4461), 2, + ACTIONS(4906), 1, + anon_sym_PIPE, + ACTIONS(4908), 10, + sym__automatic_semicolon, anon_sym_EQ, - anon_sym_COLON, - ACTIONS(7274), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(3866), 4, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [205838] = 3, + anon_sym_PIPE_RBRACE, + [205870] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5044), 1, + ACTIONS(2900), 1, anon_sym_PIPE, - ACTIONS(5046), 10, + ACTIONS(2898), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296223,12 +296342,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205857] = 3, + [205889] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5209), 1, + ACTIONS(4829), 1, anon_sym_PIPE, - ACTIONS(5211), 10, + ACTIONS(4831), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296239,27 +296358,26 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [205876] = 4, + [205908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(2904), 1, anon_sym_PIPE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(4883), 9, + ACTIONS(2902), 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, - [205897] = 2, + [205927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 11, + ACTIONS(4666), 11, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, @@ -296271,65 +296389,45 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_QMARK, anon_sym_PIPE_RBRACE, - [205914] = 3, + [205944] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5038), 1, + ACTIONS(4910), 1, anon_sym_PIPE, - ACTIONS(5040), 10, + ACTIONS(7273), 1, + anon_sym_LBRACK, + ACTIONS(4912), 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, - [205933] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7277), 1, - anon_sym_is, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [205958] = 5, + [205965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4881), 1, + ACTIONS(4916), 1, anon_sym_PIPE, - ACTIONS(7272), 1, - anon_sym_LBRACK, - ACTIONS(4883), 2, - anon_sym_AMP, - anon_sym_extends, - ACTIONS(5036), 7, + ACTIONS(4918), 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, - [205981] = 3, + [205984] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 1, + ACTIONS(5181), 1, anon_sym_PIPE, - ACTIONS(3672), 10, + ACTIONS(5183), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296340,69 +296438,47 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [206000] = 6, + [206003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7279), 1, - anon_sym_is, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 7, + ACTIONS(5162), 1, + anon_sym_PIPE, + ACTIONS(5164), 10, + sym__automatic_semicolon, anon_sym_EQ, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - [206025] = 6, + anon_sym_PIPE_RBRACE, + [206022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, + ACTIONS(7114), 1, anon_sym_LT, - ACTIONS(7120), 1, + ACTIONS(7116), 1, anon_sym_DOT, ACTIONS(7281), 1, anon_sym_is, - STATE(3853), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3866), 7, - anon_sym_LBRACE, + ACTIONS(3862), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [206050] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7283), 1, - anon_sym_is, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 7, - anon_sym_LBRACE, anon_sym_RPAREN, - anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [206075] = 3, + [206047] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4887), 1, + ACTIONS(3744), 1, anon_sym_PIPE, - ACTIONS(4889), 10, + ACTIONS(3746), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296413,12 +296489,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [206094] = 3, + [206066] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, + ACTIONS(5197), 1, anon_sym_PIPE, - ACTIONS(5032), 10, + ACTIONS(5199), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296429,12 +296505,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [206113] = 3, + [206085] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5250), 1, + ACTIONS(5158), 1, anon_sym_PIPE, - ACTIONS(5252), 10, + ACTIONS(5160), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296445,30 +296521,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [206132] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7252), 1, - anon_sym_LT, - ACTIONS(7254), 1, - anon_sym_DOT, - STATE(4117), 1, - sym_type_arguments, - ACTIONS(3866), 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, - [206155] = 3, + [206104] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5243), 1, + ACTIONS(2908), 1, anon_sym_PIPE, - ACTIONS(5245), 10, + ACTIONS(2906), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296479,12 +296537,12 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [206174] = 3, + [206123] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5239), 1, + ACTIONS(2890), 1, anon_sym_PIPE, - ACTIONS(5241), 10, + ACTIONS(2888), 10, sym__automatic_semicolon, anon_sym_EQ, anon_sym_LBRACE, @@ -296495,170 +296553,130 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [206193] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7285), 1, - anon_sym_is, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [206218] = 9, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(4752), 1, - anon_sym_LBRACE, - ACTIONS(7287), 1, - sym_identifier, - ACTIONS(7289), 1, - anon_sym_STAR, - STATE(5313), 1, - sym_import_clause, - STATE(5315), 2, - sym_string, - sym_import_require_clause, - STATE(5749), 2, - sym_namespace_import, - sym_named_imports, - [206248] = 4, + [206142] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5748), 1, + ACTIONS(5193), 1, anon_sym_PIPE, - ACTIONS(7291), 1, - anon_sym_AMP, - ACTIONS(5750), 8, + ACTIONS(5195), 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, - [206268] = 4, + [206161] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(4288), 3, + ACTIONS(7285), 1, + anon_sym_BANG, + STATE(4617), 1, sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(7293), 6, + STATE(4932), 1, + sym__initializer, + ACTIONS(7287), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7283), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [206288] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4461), 1, - anon_sym_COLON, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [206312] = 11, + [206189] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7297), 1, + ACTIONS(7289), 1, sym_identifier, - ACTIONS(7299), 1, + ACTIONS(7291), 1, anon_sym_LBRACE, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - STATE(2392), 1, + STATE(2328), 1, sym_class_body, - STATE(4266), 1, + STATE(4271), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5420), 1, + STATE(5332), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206346] = 6, + [206223] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7305), 1, - anon_sym_is, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 6, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(4752), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, + anon_sym_RBRACE, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [206243] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7297), 1, anon_sym_AMP, + ACTIONS(7299), 1, anon_sym_PIPE, + ACTIONS(5977), 8, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, - [206370] = 11, + anon_sym_PIPE_RBRACE, + [206263] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7307), 1, + ACTIONS(7301), 1, sym_identifier, - ACTIONS(7309), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(3288), 1, + STATE(2558), 1, sym_class_body, - STATE(4218), 1, + STATE(4242), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5273), 1, + STATE(5414), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206404] = 5, + [206297] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, + ACTIONS(7297), 1, anon_sym_AMP, - ACTIONS(7311), 1, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7313), 1, + ACTIONS(7305), 1, anon_sym_extends, - ACTIONS(5767), 7, + ACTIONS(5183), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -296666,840 +296684,1083 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [206426] = 4, + [206319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5759), 1, - anon_sym_PIPE, - ACTIONS(7291), 1, + ACTIONS(7297), 1, anon_sym_AMP, - ACTIONS(5761), 8, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7305), 1, + anon_sym_extends, + ACTIONS(5258), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [206446] = 6, + [206341] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7178), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7180), 1, - anon_sym_DOT, - ACTIONS(7315), 1, - anon_sym_is, - STATE(3946), 1, - sym_type_arguments, - ACTIONS(3866), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7291), 1, + anon_sym_LBRACE, + ACTIONS(7293), 1, + anon_sym_implements, + ACTIONS(7295), 1, anon_sym_extends, - [206470] = 11, + ACTIONS(7307), 1, + sym_identifier, + STATE(2271), 1, + sym_class_body, + STATE(4261), 1, + sym_type_parameters, + STATE(5017), 1, + sym_extends_clause, + STATE(5201), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [206375] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, - anon_sym_LBRACE, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7317), 1, + ACTIONS(7309), 1, sym_identifier, - STATE(2525), 1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + STATE(3417), 1, sym_class_body, - STATE(4262), 1, + STATE(4160), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5256), 1, + STATE(5407), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206504] = 8, + [206409] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - ACTIONS(7321), 1, - anon_sym_BANG, - STATE(4442), 1, - sym_type_annotation, - STATE(4963), 1, - sym__initializer, - ACTIONS(7323), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7319), 3, + ACTIONS(5965), 1, + anon_sym_PIPE, + ACTIONS(7297), 1, + anon_sym_AMP, + ACTIONS(5967), 8, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [206532] = 11, + anon_sym_LBRACK, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [206429] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, - anon_sym_LBRACE, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7325), 1, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(7313), 1, sym_identifier, - STATE(2525), 1, + STATE(2392), 1, sym_class_body, - STATE(4262), 1, + STATE(4174), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5256), 1, + STATE(5246), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206566] = 11, + [206463] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, - anon_sym_LBRACE, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7327), 1, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(7315), 1, sym_identifier, - STATE(2392), 1, + STATE(2558), 1, sym_class_body, - STATE(4266), 1, + STATE(4242), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5420), 1, + STATE(5414), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206600] = 3, + [206497] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 1, - anon_sym_DOT, - ACTIONS(5204), 9, + ACTIONS(7297), 1, + anon_sym_AMP, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7305), 1, + anon_sym_extends, + ACTIONS(5997), 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_PIPE_RBRACE, + [206519] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, anon_sym_LT, - anon_sym_AMP, - anon_sym_PIPE, + ACTIONS(7293), 1, + anon_sym_implements, + ACTIONS(7295), 1, anon_sym_extends, - [206618] = 4, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(7317), 1, + sym_identifier, + STATE(2558), 1, + sym_class_body, + STATE(4242), 1, + sym_type_parameters, + STATE(5017), 1, + sym_extends_clause, + STATE(5414), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [206553] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(4760), 2, + ACTIONS(5916), 1, + anon_sym_PIPE, + ACTIONS(7297), 1, + anon_sym_AMP, + ACTIONS(5918), 8, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, + anon_sym_extends, anon_sym_PIPE_RBRACE, - [206638] = 5, + [206573] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, - anon_sym_AMP, - ACTIONS(7311), 1, - anon_sym_PIPE, - ACTIONS(7313), 1, - anon_sym_extends, - ACTIONS(5864), 7, + ACTIONS(7321), 1, + anon_sym_COLON, + STATE(4340), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(7319), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [206660] = 11, + [206593] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, - anon_sym_LBRACE, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7329), 1, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(7323), 1, sym_identifier, STATE(2392), 1, sym_class_body, - STATE(4266), 1, + STATE(4174), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5420), 1, + STATE(5246), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206694] = 11, + [206627] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7331), 1, + ACTIONS(7325), 1, sym_identifier, - ACTIONS(7333), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - STATE(2236), 1, + STATE(2950), 1, sym_class_body, - STATE(4234), 1, + STATE(4259), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5408), 1, + STATE(5400), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206728] = 11, + [206661] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, - anon_sym_LBRACE, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7335), 1, - sym_identifier, - STATE(2525), 1, - sym_class_body, - STATE(4262), 1, - sym_type_parameters, - STATE(5010), 1, - sym_extends_clause, - STATE(5256), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [206762] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7299), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - ACTIONS(7301), 1, - anon_sym_implements, - ACTIONS(7303), 1, - anon_sym_extends, - ACTIONS(7337), 1, + ACTIONS(7329), 1, sym_identifier, - STATE(2525), 1, + STATE(3332), 1, sym_class_body, - STATE(4262), 1, + STATE(4220), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5256), 1, + STATE(5462), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206796] = 4, + [206695] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7295), 1, + ACTIONS(7321), 1, anon_sym_COLON, - STATE(4326), 3, + STATE(4379), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(7339), 6, + ACTIONS(7331), 6, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [206816] = 4, + [206715] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, - anon_sym_AMP, - ACTIONS(7311), 1, - anon_sym_PIPE, - ACTIONS(5870), 8, - sym__automatic_semicolon, - anon_sym_LBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(4756), 2, anon_sym_COMMA, anon_sym_RBRACE, + ACTIONS(4666), 7, + sym__automatic_semicolon, + anon_sym_LPAREN, anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + anon_sym_PIPE_RBRACE, + [206735] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7333), 1, + anon_sym_is, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 6, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [206836] = 11, + [206759] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7309), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7341), 1, + ACTIONS(7335), 1, sym_identifier, - STATE(3333), 1, + STATE(2392), 1, sym_class_body, - STATE(4142), 1, + STATE(4174), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5157), 1, + STATE(5246), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206870] = 11, + [206793] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(4557), 1, + anon_sym_COLON, + ACTIONS(7114), 1, anon_sym_LT, - ACTIONS(7301), 1, + ACTIONS(7116), 1, + anon_sym_DOT, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [206817] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7343), 1, - sym_identifier, - ACTIONS(7345), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - STATE(2796), 1, + ACTIONS(7337), 1, + sym_identifier, + STATE(3000), 1, sym_class_body, - STATE(4257), 1, + STATE(4180), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5322), 1, + STATE(5326), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206904] = 5, + [206851] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, - anon_sym_AMP, - ACTIONS(7311), 1, - anon_sym_PIPE, - ACTIONS(7313), 1, - anon_sym_extends, - ACTIONS(5211), 7, + ACTIONS(2002), 1, + anon_sym_DOT, + ACTIONS(5172), 9, 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, - [206926] = 11, + anon_sym_LT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [206869] = 9, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(7339), 1, + sym_identifier, + ACTIONS(7341), 1, + anon_sym_STAR, + STATE(5267), 1, + sym_import_clause, + STATE(5268), 2, + sym_string, + sym_import_require_clause, + STATE(5759), 2, + sym_namespace_import, + sym_named_imports, + [206899] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7333), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7347), 1, + ACTIONS(7343), 1, sym_identifier, - STATE(2310), 1, + STATE(2392), 1, sym_class_body, - STATE(4150), 1, + STATE(4174), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5316), 1, + STATE(5246), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [206960] = 5, + [206933] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, + ACTIONS(7158), 1, + anon_sym_LT, + ACTIONS(7160), 1, + anon_sym_DOT, + ACTIONS(7345), 1, + anon_sym_is, + STATE(3936), 1, + sym_type_arguments, + ACTIONS(3862), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7311), 1, anon_sym_PIPE, - ACTIONS(7313), 1, anon_sym_extends, - ACTIONS(5256), 7, + [206957] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7262), 1, + anon_sym_LT, + STATE(4094), 1, + sym_type_arguments, + ACTIONS(4831), 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, - [206982] = 11, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [206977] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7301), 1, + ACTIONS(7293), 1, anon_sym_implements, - ACTIONS(7303), 1, + ACTIONS(7295), 1, anon_sym_extends, - ACTIONS(7345), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7349), 1, + ACTIONS(7347), 1, sym_identifier, - STATE(2791), 1, + STATE(2558), 1, sym_class_body, - STATE(4221), 1, + STATE(4242), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5454), 1, + STATE(5414), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207016] = 4, + [207011] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(4763), 2, + ACTIONS(7297), 1, + anon_sym_AMP, + ACTIONS(7299), 1, + anon_sym_PIPE, + ACTIONS(7305), 1, + anon_sym_extends, + ACTIONS(5922), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(4676), 7, - sym__automatic_semicolon, - anon_sym_LPAREN, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, + anon_sym_LBRACK, anon_sym_PIPE_RBRACE, - [207036] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7299), 1, - anon_sym_LBRACE, - ACTIONS(7301), 1, - anon_sym_implements, - ACTIONS(7303), 1, - anon_sym_extends, - ACTIONS(7351), 1, - sym_identifier, - STATE(2392), 1, - sym_class_body, - STATE(4266), 1, - sym_type_parameters, - STATE(5010), 1, - sym_extends_clause, - STATE(5420), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [207070] = 4, + [207033] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7252), 1, - anon_sym_LT, - STATE(4121), 1, - sym_type_arguments, - ACTIONS(4839), 8, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_COLON, + STATE(4617), 1, + sym_type_annotation, + STATE(4934), 1, + sym__initializer, + ACTIONS(7287), 2, + anon_sym_in, + anon_sym_of, + ACTIONS(7283), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, + [207058] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6227), 2, + anon_sym_EQ, + anon_sym_COLON, + ACTIONS(7349), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2902), 5, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207090] = 10, + [207077] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7345), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2802), 1, - sym_class_body, - STATE(4258), 1, + STATE(4246), 1, sym_type_parameters, - STATE(5010), 1, + STATE(4524), 1, + sym_class_body, + STATE(5017), 1, sym_extends_clause, - STATE(5321), 1, + STATE(5352), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [207136] = 10, + [207108] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3127), 1, + STATE(3102), 1, sym_class_body, - STATE(4137), 1, + STATE(4251), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5234), 1, + STATE(5349), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207167] = 10, + [207139] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7353), 1, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4172), 1, + STATE(4154), 1, sym_type_parameters, - STATE(4629), 1, + STATE(4509), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5274), 1, + STATE(5345), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207198] = 10, + [207170] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7309), 1, + ACTIONS(7291), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3254), 1, + STATE(2338), 1, sym_class_body, - STATE(4147), 1, + STATE(4276), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5260), 1, + STATE(5336), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207229] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6231), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [207244] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(7359), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2908), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [207263] = 4, + [207201] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7364), 1, + ACTIONS(7358), 1, anon_sym_RPAREN, - ACTIONS(4839), 4, + ACTIONS(2294), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(7362), 4, + ACTIONS(3032), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [207282] = 4, + [207220] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7367), 1, + ACTIONS(7363), 1, anon_sym_RPAREN, - ACTIONS(2278), 4, + ACTIONS(4831), 4, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(3048), 4, + ACTIONS(7361), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_QMARK, - [207301] = 4, + [207239] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7372), 1, - anon_sym_RPAREN, - ACTIONS(4839), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(7370), 4, - anon_sym_EQ, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6836), 1, + anon_sym_RBRACE, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - [207320] = 7, + [207264] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + ACTIONS(7366), 1, + anon_sym_LBRACE, + STATE(1208), 1, + sym_class_body, + STATE(4205), 1, + sym_type_parameters, + STATE(5017), 1, + sym_extends_clause, + STATE(5314), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [207295] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - ACTIONS(6734), 1, + ACTIONS(6816), 1, anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [207345] = 4, + [207320] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2280), 1, - anon_sym_PIPE, - ACTIONS(7367), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(2278), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, anon_sym_extends, - anon_sym_PIPE_RBRACE, - [207364] = 6, + STATE(4272), 1, + sym_type_parameters, + STATE(4497), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5335), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [207351] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(2374), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5045), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7375), 1, - anon_sym_is, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 5, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [207387] = 3, + anon_sym_QMARK, + [207376] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7256), 1, - anon_sym_is, - ACTIONS(4839), 8, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_COLON, + STATE(4453), 1, + sym_type_annotation, + STATE(5136), 1, + sym__initializer, + ACTIONS(7370), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7368), 3, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [207404] = 10, + [207401] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7357), 1, + ACTIONS(7366), 1, anon_sym_LBRACE, - STATE(1060), 1, + STATE(1137), 1, sym_class_body, - STATE(4242), 1, + STATE(4130), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5426), 1, + STATE(5403), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207435] = 4, + [207432] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7377), 1, - anon_sym_RPAREN, - ACTIONS(5032), 4, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - ACTIONS(6296), 4, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(2388), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, anon_sym_EQ, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [207457] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(4177), 1, + sym_type_parameters, + STATE(4542), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5369), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [207488] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(2337), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - [207454] = 4, + [207513] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7359), 1, + ACTIONS(7372), 9, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_RPAREN, - ACTIONS(2908), 4, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [207528] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5049), 1, + anon_sym_PIPE, + ACTIONS(7374), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(5051), 6, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, - anon_sym_PIPE, anon_sym_extends, - ACTIONS(6170), 4, - anon_sym_EQ, + anon_sym_PIPE_RBRACE, + [207547] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, anon_sym_COMMA, + ACTIONS(2372), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5091), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - [207473] = 7, + [207572] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(4514), 1, + STATE(4643), 1, sym_type_annotation, - STATE(4909), 1, + STATE(4989), 1, sym__initializer, - ACTIONS(7174), 2, + ACTIONS(7168), 2, anon_sym_BANG, anon_sym_QMARK, - ACTIONS(7172), 3, + ACTIONS(7166), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207498] = 7, + [207597] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + ACTIONS(7377), 1, + anon_sym_LBRACE, + STATE(159), 1, + sym_class_body, + STATE(4203), 1, + sym_type_parameters, + STATE(5017), 1, + sym_extends_clause, + STATE(5392), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [207628] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2904), 1, + anon_sym_PIPE, + ACTIONS(7349), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(2902), 6, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_extends, + anon_sym_PIPE_RBRACE, + [207647] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(2376), 1, + ACTIONS(2390), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6267), 1, anon_sym_EQ, - STATE(4914), 1, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [207523] = 4, + [207672] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(1063), 1, + sym_class_body, + STATE(4236), 1, + sym_type_parameters, + STATE(5017), 1, + sym_extends_clause, + STATE(5420), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [207703] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5030), 1, + ACTIONS(7297), 1, + anon_sym_AMP, + ACTIONS(7299), 1, anon_sym_PIPE, - ACTIONS(7377), 2, + ACTIONS(7305), 1, + anon_sym_extends, + ACTIONS(7379), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(5032), 6, - sym__automatic_semicolon, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_extends, anon_sym_PIPE_RBRACE, - [207542] = 7, + [207724] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, + ACTIONS(7381), 9, anon_sym_EQ, - ACTIONS(7168), 1, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - STATE(4556), 1, - sym_type_annotation, - STATE(5142), 1, - sym__initializer, - ACTIONS(7192), 2, - anon_sym_BANG, + anon_sym_RBRACK, anon_sym_QMARK, - ACTIONS(7190), 3, + [207739] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7254), 1, + anon_sym_is, + ACTIONS(4831), 8, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, - [207567] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [207756] = 10, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(1052), 1, + sym_class_body, + STATE(4137), 1, + sym_type_parameters, + STATE(5017), 1, + sym_extends_clause, + STATE(5381), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [207787] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(2396), 1, + anon_sym_RBRACE, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + STATE(5010), 1, + aux_sym_object_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [207812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7380), 9, + ACTIONS(7383), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -297509,168 +297770,152 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [207582] = 10, + [207827] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_COLON, + STATE(4520), 1, + sym_type_annotation, + STATE(5056), 1, + sym__initializer, + ACTIONS(7188), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7186), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [207852] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - ACTIONS(7382), 1, + ACTIONS(7266), 1, + anon_sym_is, + ACTIONS(4831), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - STATE(1077), 1, - sym_class_body, - STATE(4270), 1, - sym_type_parameters, - STATE(5010), 1, - sym_extends_clause, - STATE(5393), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [207613] = 6, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [207869] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, + ACTIONS(7114), 1, anon_sym_LT, - ACTIONS(7120), 1, + ACTIONS(7116), 1, anon_sym_DOT, - ACTIONS(7384), 1, + ACTIONS(7385), 1, anon_sym_is, - STATE(3853), 1, + STATE(3833), 1, sym_type_arguments, - ACTIONS(3866), 5, + ACTIONS(3862), 5, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207636] = 10, + [207892] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6860), 1, + anon_sym_RBRACE, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [207917] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3053), 1, + STATE(3045), 1, sym_class_body, - STATE(4205), 1, + STATE(4207), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5258), 1, + STATE(5443), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207667] = 4, + [207948] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2910), 1, + ACTIONS(2296), 1, anon_sym_PIPE, - ACTIONS(7359), 2, + ACTIONS(7358), 2, anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(2908), 6, + ACTIONS(2294), 6, sym__automatic_semicolon, anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_extends, anon_sym_PIPE_RBRACE, - [207686] = 10, + [207967] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(117), 1, + anon_sym_COMMA, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6750), 1, + anon_sym_RBRACE, + STATE(4920), 1, + aux_sym_object_repeat1, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, anon_sym_LT, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - ACTIONS(7382), 1, - anon_sym_LBRACE, - STATE(1206), 1, - sym_class_body, - STATE(4173), 1, - sym_type_parameters, - STATE(5010), 1, - sym_extends_clause, - STATE(5305), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [207717] = 10, + anon_sym_QMARK, + [207992] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7345), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - STATE(2919), 1, - sym_class_body, - STATE(4267), 1, - sym_type_parameters, - STATE(5010), 1, - sym_extends_clause, - STATE(5271), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [207748] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7386), 1, - anon_sym_LBRACE, - STATE(140), 1, + STATE(3470), 1, sym_class_body, - STATE(4276), 1, - sym_type_parameters, - STATE(5010), 1, - sym_extends_clause, - STATE(5382), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [207779] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4210), 1, + STATE(4252), 1, sym_type_parameters, - STATE(4646), 1, - sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5249), 1, + STATE(5425), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207810] = 2, + [208023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 9, + ACTIONS(7387), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -297680,527 +297925,355 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [207825] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2374), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [207850] = 10, + [208038] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7333), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2307), 1, + STATE(3123), 1, sym_class_body, - STATE(4214), 1, + STATE(4267), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5238), 1, + STATE(5318), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [207881] = 7, + [208069] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, + ACTIONS(6227), 9, + anon_sym_EQ, anon_sym_COMMA, - ACTIONS(2388), 1, anon_sym_RBRACE, - ACTIONS(6202), 1, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [208084] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6261), 9, anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5011), 1, - aux_sym_object_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_in, + anon_sym_of, anon_sym_COLON, - anon_sym_LT, + anon_sym_RBRACK, anon_sym_QMARK, - [207906] = 7, + [208099] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6838), 1, + ACTIONS(2380), 1, anon_sym_RBRACE, - STATE(4914), 1, + ACTIONS(6267), 1, + anon_sym_EQ, + STATE(4920), 1, aux_sym_object_repeat1, - STATE(4997), 1, + STATE(5008), 1, aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, + ACTIONS(4666), 4, anon_sym_LPAREN, anon_sym_COLON, anon_sym_LT, anon_sym_QMARK, - [207931] = 4, + [208124] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6296), 2, - anon_sym_EQ, - anon_sym_COLON, - ACTIONS(7377), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(5032), 5, + ACTIONS(7391), 1, + anon_sym_RPAREN, + ACTIONS(4831), 4, anon_sym_LBRACK, - anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [207950] = 7, + ACTIONS(7389), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_COLON, + anon_sym_QMARK, + [208143] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(4442), 1, + STATE(4601), 1, sym_type_annotation, - STATE(4957), 1, + STATE(4942), 1, sym__initializer, - ACTIONS(7323), 2, - anon_sym_in, - anon_sym_of, - ACTIONS(7319), 3, + ACTIONS(7176), 2, + anon_sym_BANG, + anon_sym_QMARK, + ACTIONS(7174), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [207975] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2372), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [208000] = 7, + [208168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(6202), 1, + ACTIONS(7374), 1, + anon_sym_RPAREN, + ACTIONS(5051), 4, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + ACTIONS(6261), 4, anon_sym_EQ, - ACTIONS(6750), 1, - anon_sym_RBRACE, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [208025] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, anon_sym_COMMA, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6752), 1, - anon_sym_RBRACE, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - [208050] = 10, + [208187] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7386), 1, + ACTIONS(7377), 1, anon_sym_LBRACE, - STATE(145), 1, + STATE(150), 1, sym_class_body, - STATE(4230), 1, + STATE(4260), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5400), 1, + STATE(5387), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [208081] = 10, + [208218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(7114), 1, anon_sym_LT, - ACTIONS(7333), 1, - anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7394), 1, + anon_sym_is, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 5, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(2169), 1, - sym_class_body, - STATE(4162), 1, - sym_type_parameters, - STATE(5010), 1, - sym_extends_clause, - STATE(5290), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [208112] = 10, + [208241] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2393), 1, + STATE(2573), 1, sym_class_body, - STATE(4255), 1, + STATE(4188), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5360), 1, + STATE(5370), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [208143] = 6, + [208272] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7120), 1, - anon_sym_DOT, - ACTIONS(7390), 1, - anon_sym_is, - STATE(3853), 1, - sym_type_arguments, - ACTIONS(3866), 5, + ACTIONS(7349), 1, + anon_sym_RPAREN, + ACTIONS(2902), 4, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208166] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2331), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, + ACTIONS(6227), 4, anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(5082), 1, - aux_sym_object_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_COLON, - anon_sym_LT, anon_sym_QMARK, - [208191] = 10, + [208291] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7309), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3373), 1, + STATE(2991), 1, sym_class_body, - STATE(4128), 1, + STATE(4191), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5155), 1, + STATE(5323), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [208222] = 10, + [208322] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7353), 1, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1065), 1, + STATE(3055), 1, sym_class_body, - STATE(4272), 1, + STATE(4247), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5371), 1, + STATE(5446), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [208253] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7291), 1, - anon_sym_AMP, - ACTIONS(7311), 1, - anon_sym_PIPE, - ACTIONS(7313), 1, - anon_sym_extends, - ACTIONS(7392), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208274] = 3, + [208353] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7260), 1, - anon_sym_is, - ACTIONS(4839), 8, - sym__automatic_semicolon, + ACTIONS(6261), 2, anon_sym_EQ, + anon_sym_COLON, + ACTIONS(7374), 2, anon_sym_COMMA, - anon_sym_SEMI, + anon_sym_RBRACK, + ACTIONS(5051), 5, anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208291] = 10, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4158), 1, - sym_type_parameters, - STATE(4618), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5291), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [208322] = 10, + [208372] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, + ACTIONS(7291), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3102), 1, + STATE(2173), 1, sym_class_body, - STATE(4164), 1, + STATE(4237), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5336), 1, + STATE(5358), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [208353] = 2, + [208403] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7394), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [208368] = 10, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7116), 1, + anon_sym_DOT, + ACTIONS(7396), 1, + anon_sym_is, + STATE(3833), 1, + sym_type_arguments, + ACTIONS(3862), 5, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [208426] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7353), 1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4227), 1, - sym_type_parameters, - STATE(4662), 1, + STATE(3355), 1, sym_class_body, - STATE(5010), 1, + STATE(4226), 1, + sym_type_parameters, + STATE(5017), 1, sym_extends_clause, - STATE(5223), 1, + STATE(5464), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [208399] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - STATE(4534), 1, - sym_type_annotation, - STATE(5075), 1, - sym__initializer, - ACTIONS(7186), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7184), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208424] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2386), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4914), 1, - aux_sym_object_repeat1, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [208449] = 10, + [208457] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2397), 1, + STATE(2553), 1, sym_class_body, - STATE(4192), 1, + STATE(4215), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5438), 1, + STATE(5442), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [208480] = 10, + [208488] = 10, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7299), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3116), 1, + STATE(2959), 1, sym_class_body, - STATE(4149), 1, + STATE(4270), 1, sym_type_parameters, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5174), 1, + STATE(5294), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [208511] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - STATE(4573), 1, - sym_type_annotation, - STATE(5143), 1, - sym__initializer, - ACTIONS(7398), 2, - anon_sym_BANG, - anon_sym_QMARK, - ACTIONS(7396), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [208536] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6296), 9, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_in, - anon_sym_of, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [208551] = 2, + [208519] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 9, + ACTIONS(6232), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -298210,28 +298283,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [208566] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(117), 1, - anon_sym_COMMA, - ACTIONS(2366), 1, - anon_sym_RBRACE, - ACTIONS(6202), 1, - anon_sym_EQ, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - STATE(4999), 1, - aux_sym_object_repeat1, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [208591] = 2, + [208534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7402), 9, + ACTIONS(7398), 9, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -298241,25 +298296,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [208606] = 5, + [208549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, - anon_sym_AMP, - ACTIONS(7406), 1, - anon_sym_PIPE, - ACTIONS(7408), 1, - anon_sym_extends, - ACTIONS(5211), 5, + ACTIONS(2898), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - [208626] = 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [208563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5211), 8, + ACTIONS(5199), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298268,22 +298320,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208640] = 2, + [208577] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4879), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(7275), 1, + anon_sym_is, + ACTIONS(4831), 7, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_GT, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208654] = 2, + [208593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2278), 8, + ACTIONS(5195), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298292,40 +298345,37 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208668] = 5, + [208607] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, + ACTIONS(5258), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_AMP, - ACTIONS(7311), 1, anon_sym_PIPE, - ACTIONS(7313), 1, anon_sym_extends, - ACTIONS(7410), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [208688] = 5, + [208621] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7291), 1, + ACTIONS(7400), 1, anon_sym_AMP, - ACTIONS(7311), 1, + ACTIONS(7402), 1, anon_sym_PIPE, - ACTIONS(7313), 1, + ACTIONS(7404), 1, anon_sym_extends, - ACTIONS(7412), 5, + ACTIONS(5258), 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, - [208708] = 2, + anon_sym_LBRACK, + [208641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5215), 8, + ACTIONS(5251), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298334,10 +298384,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208722] = 2, + [208655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4839), 8, + ACTIONS(4841), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298346,52 +298396,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208736] = 4, + [208669] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3048), 1, - anon_sym_EQ, - ACTIONS(7367), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - ACTIONS(2278), 5, - anon_sym_LBRACK, - anon_sym_QMARK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [208754] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7404), 1, - anon_sym_AMP, ACTIONS(7406), 1, - anon_sym_PIPE, + sym_identifier, ACTIONS(7408), 1, - anon_sym_extends, - ACTIONS(5864), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(7410), 1, anon_sym_LBRACK, - [208774] = 3, + ACTIONS(7412), 1, + anon_sym_enum, + STATE(4898), 1, + sym_variable_declarator, + STATE(4230), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [208693] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, - anon_sym_AMP, - ACTIONS(5750), 7, + ACTIONS(2906), 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, - [208790] = 2, + [208707] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5196), 8, + ACTIONS(5243), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298400,10 +298437,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208804] = 2, + [208721] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5192), 8, + ACTIONS(2884), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298412,10 +298449,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208818] = 2, + [208735] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5221), 8, + ACTIONS(5191), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298424,49 +298461,65 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208832] = 3, + [208749] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7414), 1, - anon_sym_LBRACK, - ACTIONS(4883), 7, + ACTIONS(7400), 1, + anon_sym_AMP, + ACTIONS(5967), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_AMP, + anon_sym_LBRACK, anon_sym_PIPE, anon_sym_extends, - [208848] = 4, + [208765] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7416), 1, + ACTIONS(7414), 1, anon_sym_COLON, - STATE(4844), 3, + STATE(4855), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - ACTIONS(7339), 4, + ACTIONS(7319), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [208866] = 2, + [208783] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4889), 8, + ACTIONS(7400), 1, + anon_sym_AMP, + ACTIONS(7402), 1, + anon_sym_PIPE, + ACTIONS(5977), 6, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_extends, + [208801] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3032), 1, + anon_sym_EQ, + ACTIONS(7358), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + ACTIONS(2294), 5, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208880] = 2, + [208819] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2900), 8, + ACTIONS(5187), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298475,27 +298528,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208894] = 7, + [208833] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - ACTIONS(7321), 1, - anon_sym_BANG, - STATE(4442), 1, - sym_type_annotation, - STATE(4963), 1, - sym__initializer, - ACTIONS(7319), 3, + ACTIONS(2173), 8, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [208918] = 2, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [208847] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5241), 8, + ACTIONS(3746), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298504,53 +298552,39 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [208932] = 3, + [208861] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7277), 1, - anon_sym_is, - ACTIONS(4839), 7, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, + ACTIONS(7416), 1, anon_sym_AMP, + ACTIONS(7418), 1, anon_sym_PIPE, + ACTIONS(5977), 6, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, - [208948] = 3, + [208879] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7281), 1, - anon_sym_is, - ACTIONS(4839), 7, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7400), 1, anon_sym_AMP, + ACTIONS(7402), 1, anon_sym_PIPE, + ACTIONS(7404), 1, anon_sym_extends, - [208964] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7418), 1, - sym_identifier, - ACTIONS(7420), 1, + ACTIONS(5183), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7422), 1, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(7424), 1, - anon_sym_enum, - STATE(4883), 1, - sym_variable_declarator, - STATE(4201), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [208988] = 2, + [208899] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2896), 8, + ACTIONS(2049), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298559,10 +298593,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209002] = 2, + [208913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5245), 8, + ACTIONS(5164), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298571,24 +298605,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209016] = 4, + [208927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, - anon_sym_AMP, - ACTIONS(7428), 1, - anon_sym_PIPE, - ACTIONS(5870), 6, + ACTIONS(5160), 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, - [209034] = 2, + [208941] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5252), 8, + ACTIONS(2888), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298597,25 +298629,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209048] = 5, + [208955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, - anon_sym_AMP, - ACTIONS(7406), 1, - anon_sym_PIPE, - ACTIONS(7408), 1, - anon_sym_extends, - ACTIONS(5256), 5, + ACTIONS(5067), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - [209068] = 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [208969] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5256), 8, + ACTIONS(3766), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298624,37 +298653,38 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209082] = 2, + [208983] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2904), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7268), 1, + anon_sym_is, + ACTIONS(4831), 7, anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209096] = 5, + [208999] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, + ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(7428), 1, + ACTIONS(7418), 1, anon_sym_PIPE, - ACTIONS(7430), 1, + ACTIONS(7420), 1, anon_sym_extends, - ACTIONS(5256), 5, + ACTIONS(5258), 5, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [209116] = 2, + [209019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5274), 8, + ACTIONS(5085), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298663,22 +298693,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209130] = 2, + [209033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2908), 8, + ACTIONS(7422), 1, + anon_sym_LBRACK, + ACTIONS(5081), 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, - [209144] = 2, + [209049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4875), 8, + ACTIONS(5077), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298687,49 +298718,82 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209158] = 2, + [209063] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(5270), 8, + ACTIONS(7400), 1, + anon_sym_AMP, + ACTIONS(7402), 1, + anon_sym_PIPE, + ACTIONS(7404), 1, + anon_sym_extends, + ACTIONS(5922), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, + [209083] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_COLON, + ACTIONS(7285), 1, + anon_sym_BANG, + STATE(4617), 1, + sym_type_annotation, + STATE(4932), 1, + sym__initializer, + ACTIONS(7283), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [209107] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7277), 1, + anon_sym_is, + ACTIONS(4831), 7, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209172] = 2, + [209123] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4855), 8, + ACTIONS(7414), 1, + anon_sym_COLON, + STATE(4853), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + ACTIONS(7331), 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, - [209186] = 5, + [209141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, + ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(7428), 1, - anon_sym_PIPE, - ACTIONS(7430), 1, - anon_sym_extends, - ACTIONS(5864), 5, + ACTIONS(5967), 7, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - [209206] = 2, + anon_sym_PIPE, + anon_sym_extends, + [209157] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5040), 8, + ACTIONS(5071), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298738,181 +298802,216 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209220] = 4, + [209171] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, + ACTIONS(7400), 1, anon_sym_AMP, - ACTIONS(7406), 1, + ACTIONS(7402), 1, anon_sym_PIPE, - ACTIONS(5870), 6, + ACTIONS(7404), 1, + anon_sym_extends, + ACTIONS(5997), 5, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_extends, - [209238] = 2, + [209191] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5032), 8, + ACTIONS(7400), 1, + anon_sym_AMP, + ACTIONS(5918), 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, - [209252] = 3, + [209207] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, + ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(5761), 7, + ACTIONS(7418), 1, + anon_sym_PIPE, + ACTIONS(7420), 1, + anon_sym_extends, + ACTIONS(5183), 5, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [209268] = 3, + [209227] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7285), 1, - anon_sym_is, - ACTIONS(4839), 7, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5059), 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, - [209284] = 5, + [209241] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, + ACTIONS(7422), 1, + anon_sym_LBRACK, + ACTIONS(4912), 3, anon_sym_AMP, - ACTIONS(7428), 1, anon_sym_PIPE, - ACTIONS(7430), 1, anon_sym_extends, - ACTIONS(5767), 5, + ACTIONS(5055), 4, sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [209304] = 4, + [209259] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7414), 1, + ACTIONS(5051), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(4883), 3, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - ACTIONS(5036), 4, + [209273] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5047), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [209322] = 3, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [209287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, - anon_sym_is, - ACTIONS(4839), 7, + ACTIONS(3606), 8, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + anon_sym_SEMI, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209338] = 3, + [209301] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, + ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(5750), 7, + ACTIONS(7418), 1, + anon_sym_PIPE, + ACTIONS(7420), 1, + anon_sym_extends, + ACTIONS(5997), 5, sym__automatic_semicolon, anon_sym_EQ, anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [209354] = 3, + [209321] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7279), 1, - anon_sym_is, - ACTIONS(4839), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, + ACTIONS(7297), 1, anon_sym_AMP, + ACTIONS(7299), 1, anon_sym_PIPE, + ACTIONS(7305), 1, anon_sym_extends, - [209370] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7416), 1, - anon_sym_COLON, - STATE(4851), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - ACTIONS(7293), 4, + ACTIONS(7424), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [209388] = 2, + anon_sym_PIPE_RBRACE, + [209341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2161), 8, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(5918), 7, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209402] = 3, + [209357] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, + ACTIONS(7416), 1, anon_sym_AMP, - ACTIONS(5761), 7, + ACTIONS(7418), 1, + anon_sym_PIPE, + ACTIONS(7420), 1, + anon_sym_extends, + ACTIONS(5922), 5, sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_SEMI, anon_sym_LBRACK, + [209377] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7297), 1, + anon_sym_AMP, + ACTIONS(7299), 1, anon_sym_PIPE, + ACTIONS(7305), 1, anon_sym_extends, - [209418] = 2, + ACTIONS(7426), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5046), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7279), 1, + anon_sym_is, + ACTIONS(4831), 7, anon_sym_LBRACE, - anon_sym_SEMI, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209432] = 2, + [209413] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7428), 1, + anon_sym_LBRACE, + ACTIONS(7430), 1, + anon_sym_DOT, + STATE(4588), 1, + sym_statement_block, + ACTIONS(1928), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2892), 8, + ACTIONS(2902), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298921,22 +299020,40 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209446] = 2, + [209447] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3770), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7406), 1, + sym_identifier, + ACTIONS(7408), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(7410), 1, + anon_sym_LBRACK, + ACTIONS(7432), 1, + anon_sym_enum, + STATE(4821), 1, + sym_variable_declarator, + STATE(4230), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [209471] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7281), 1, + anon_sym_is, + ACTIONS(4831), 7, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209460] = 2, + [209487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5050), 8, + ACTIONS(4918), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298945,25 +299062,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209474] = 5, + [209501] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, - anon_sym_AMP, - ACTIONS(7406), 1, - anon_sym_PIPE, - ACTIONS(7408), 1, - anon_sym_extends, - ACTIONS(5767), 5, + ACTIONS(7422), 1, + anon_sym_LBRACK, + ACTIONS(4912), 7, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - [209494] = 2, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [209517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5057), 8, + ACTIONS(4831), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298972,23 +299087,22 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209508] = 3, + [209531] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7414), 1, - anon_sym_LBRACK, - ACTIONS(5061), 7, + ACTIONS(2294), 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, - [209524] = 2, + [209545] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5065), 8, + ACTIONS(4908), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -298997,10 +299111,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209538] = 2, + [209559] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2201), 8, + ACTIONS(5183), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -299009,10 +299123,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209552] = 2, + [209573] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3734), 8, + ACTIONS(4904), 8, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, @@ -299021,943 +299135,834 @@ static uint16_t ts_small_parse_table[] = { anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [209566] = 5, + [209587] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, + ACTIONS(7434), 1, anon_sym_AMP, - ACTIONS(7428), 1, + ACTIONS(7436), 1, anon_sym_PIPE, - ACTIONS(7430), 1, + ACTIONS(7438), 1, anon_sym_extends, - ACTIONS(5211), 5, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(5922), 4, anon_sym_COMMA, - anon_sym_SEMI, anon_sym_LBRACK, - [209586] = 2, + anon_sym_RBRACK, + anon_sym_QMARK, + [209606] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3672), 8, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7408), 1, anon_sym_LBRACE, - anon_sym_SEMI, + ACTIONS(7410), 1, anon_sym_LBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [209600] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7418), 1, + ACTIONS(7440), 1, sym_identifier, - ACTIONS(7420), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(7432), 1, - anon_sym_enum, - STATE(4824), 1, + STATE(4788), 1, sym_variable_declarator, - STATE(4201), 3, + STATE(4002), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [209624] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7434), 1, - anon_sym_LBRACE, - ACTIONS(7436), 1, - anon_sym_DOT, - STATE(4684), 1, - sym_statement_block, - ACTIONS(1928), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [209644] = 8, + [209627] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, - anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3390), 1, + ACTIONS(7366), 1, + anon_sym_LBRACE, + STATE(1178), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5252), 1, + STATE(5320), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [209669] = 2, + [209652] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4649), 7, - anon_sym_EQ, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5224), 1, + sym_statement_block, + ACTIONS(7442), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [209682] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209669] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7420), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(7438), 1, - sym_identifier, - STATE(4824), 1, - sym_variable_declarator, - STATE(4201), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [209703] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6170), 1, - anon_sym_COLON, - ACTIONS(2908), 6, + STATE(5170), 1, + sym_statement_block, + ACTIONS(7444), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [209718] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7440), 1, - sym_identifier, - ACTIONS(7442), 1, - anon_sym_STAR, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5326), 1, - sym__call_signature, - [209743] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7446), 7, - sym__automatic_semicolon, + ACTIONS(3078), 1, anon_sym_LBRACE, + STATE(5209), 1, + sym_statement_block, + ACTIONS(7446), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, anon_sym_PIPE_RBRACE, - [209756] = 3, + [209703] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6296), 1, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, anon_sym_COLON, - ACTIONS(5032), 6, + STATE(4641), 1, + sym_type_annotation, + STATE(4981), 1, + sym__initializer, + ACTIONS(7260), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [209771] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7448), 1, - sym_identifier, - ACTIONS(7450), 1, - anon_sym_STAR, - STATE(4541), 1, - sym_formal_parameters, - STATE(5169), 1, - sym__call_signature, - STATE(5219), 1, - sym_type_parameters, - [209796] = 2, + anon_sym_SEMI, + [209724] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1982), 7, - sym__automatic_semicolon, + ACTIONS(3078), 1, anon_sym_LBRACE, + STATE(5210), 1, + sym_statement_block, + ACTIONS(7442), 5, + sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_DOT, anon_sym_PIPE_RBRACE, - [209809] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - STATE(3133), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5269), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [209834] = 3, + [209741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7452), 1, + ACTIONS(7434), 1, anon_sym_AMP, - ACTIONS(5750), 6, + ACTIONS(5918), 6, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_QMARK, anon_sym_PIPE, anon_sym_extends, - [209849] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7454), 1, - sym_identifier, - ACTIONS(7456), 1, - anon_sym_STAR, - STATE(4541), 1, - sym_formal_parameters, - STATE(5151), 1, - sym__call_signature, - STATE(5219), 1, - sym_type_parameters, - [209874] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(5761), 6, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [209889] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(5767), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - [209908] = 8, + [209756] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3395), 1, + STATE(1061), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5248), 1, + STATE(5310), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [209933] = 5, + [209781] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7452), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(5211), 4, + ACTIONS(6630), 7, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, anon_sym_QMARK, - [209952] = 6, + [209794] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - STATE(4554), 1, - sym_type_annotation, - STATE(5108), 1, - sym__initializer, - ACTIONS(7266), 3, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5234), 1, + sym_statement_block, + ACTIONS(7446), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209811] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(5977), 5, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_extends, + [209828] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5187), 1, + sym_statement_block, + ACTIONS(7452), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [209973] = 8, + anon_sym_PIPE_RBRACE, + [209845] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7468), 1, + ACTIONS(7454), 1, sym_identifier, - ACTIONS(7470), 1, + ACTIONS(7456), 1, anon_sym_STAR, - STATE(4541), 1, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5259), 1, + STATE(5324), 1, sym__call_signature, - [209998] = 2, + [209870] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7402), 7, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5208), 1, + sym_statement_block, + ACTIONS(7460), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [210011] = 8, + anon_sym_PIPE_RBRACE, + [209887] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, - anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - STATE(3361), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5281), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [210036] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7462), 1, + sym_identifier, + ACTIONS(7464), 1, + anon_sym_STAR, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5445), 1, + sym__call_signature, + [209912] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7394), 7, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5184), 1, + sym_statement_block, + ACTIONS(7466), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [210049] = 8, + anon_sym_PIPE_RBRACE, + [209929] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - STATE(3041), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5159), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [210074] = 8, + STATE(5211), 1, + sym_statement_block, + ACTIONS(7452), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - STATE(2291), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5257), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [210099] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7452), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(5256), 4, + STATE(5166), 1, + sym_statement_block, + ACTIONS(7468), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [210118] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209963] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(7474), 1, - anon_sym_PIPE, - ACTIONS(5870), 5, - anon_sym_EQ, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5164), 1, + sym_statement_block, + ACTIONS(7470), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - anon_sym_extends, - [210135] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [209980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7426), 1, - anon_sym_AMP, - ACTIONS(7428), 1, - anon_sym_PIPE, - ACTIONS(7430), 1, - anon_sym_extends, - ACTIONS(7392), 4, + ACTIONS(7198), 1, + anon_sym_COLON, + STATE(4619), 1, + sym_type_annotation, + ACTIONS(7472), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [210154] = 5, + anon_sym_PIPE_RBRACE, + [209997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7474), 1, - anon_sym_PIPE, - ACTIONS(7476), 1, - anon_sym_extends, - ACTIONS(5256), 4, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5918), 6, + anon_sym_LBRACE, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - [210173] = 5, + anon_sym_PIPE, + anon_sym_extends, + [210012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7478), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7480), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7482), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(5767), 4, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5922), 4, + anon_sym_LBRACE, + anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - anon_sym_GT, - [210192] = 3, + [210031] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(5750), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, + ACTIONS(7408), 1, + anon_sym_LBRACE, + ACTIONS(7410), 1, anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [210207] = 3, + ACTIONS(7476), 1, + sym_identifier, + STATE(4821), 1, + sym_variable_declarator, + STATE(4230), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [210052] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7478), 1, - anon_sym_AMP, - ACTIONS(5761), 6, + ACTIONS(6267), 1, anon_sym_EQ, + ACTIONS(6890), 2, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_extends, - [210222] = 8, + anon_sym_RBRACE, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [210069] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4643), 1, + STATE(4535), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5254), 1, + STATE(5365), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [210247] = 4, + [210094] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7452), 1, + ACTIONS(7478), 1, anon_sym_AMP, - ACTIONS(7464), 1, + ACTIONS(7480), 1, anon_sym_PIPE, - ACTIONS(5870), 5, + ACTIONS(7482), 1, + anon_sym_extends, + ACTIONS(5997), 4, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_extends, - [210264] = 4, + [210113] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - STATE(4504), 1, - sym_type_annotation, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5207), 1, + sym_statement_block, ACTIONS(7484), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [210281] = 3, + [210130] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7305), 1, - anon_sym_is, - ACTIONS(4839), 6, + ACTIONS(6261), 1, + anon_sym_COLON, + ACTIONS(5051), 6, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_GT, + anon_sym_RBRACK, anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [210296] = 8, + [210145] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(6227), 1, + anon_sym_COLON, + ACTIONS(2902), 6, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, + anon_sym_PIPE, anon_sym_extends, - STATE(2304), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5242), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [210321] = 3, + [210160] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7315), 1, - anon_sym_is, - ACTIONS(4839), 6, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, + ACTIONS(7400), 1, anon_sym_AMP, + ACTIONS(7402), 1, anon_sym_PIPE, + ACTIONS(7404), 1, anon_sym_extends, - [210336] = 8, + ACTIONS(7379), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [210179] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3074), 1, + STATE(3263), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5287), 1, + STATE(5444), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [210361] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7452), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(5864), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [210380] = 2, + [210204] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6170), 7, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5307), 1, + sym_statement_block, + ACTIONS(7484), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [210393] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(5211), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - [210412] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(5750), 6, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [210427] = 8, + anon_sym_PIPE_RBRACE, + [210221] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, ACTIONS(7486), 1, - anon_sym_COLON, - ACTIONS(7488), 1, - anon_sym_QMARK, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5303), 1, - sym__call_signature, - [210452] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7490), 1, sym_identifier, - ACTIONS(7492), 1, + ACTIONS(7488), 1, anon_sym_STAR, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5330), 1, + STATE(5269), 1, sym__call_signature, - [210477] = 4, + [210246] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5436), 1, + STATE(5309), 1, sym_statement_block, - ACTIONS(7494), 5, + ACTIONS(7460), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [210494] = 8, + [210263] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(4857), 1, + anon_sym_LPAREN, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7492), 1, + anon_sym_LBRACK, + ACTIONS(7494), 1, + sym_private_property_identifier, + STATE(2569), 1, + sym_arguments, + STATE(5456), 1, + sym_type_arguments, + [210288] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7478), 1, + anon_sym_AMP, + ACTIONS(7480), 1, + anon_sym_PIPE, + ACTIONS(7482), 1, anon_sym_extends, - ACTIONS(7357), 1, + ACTIONS(5922), 4, anon_sym_LBRACE, - STATE(4656), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5235), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [210519] = 8, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + [210307] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - ACTIONS(7382), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1878), 1, anon_sym_LBRACE, - STATE(1124), 1, - sym_class_body, - STATE(5010), 1, + ACTIONS(7496), 1, + anon_sym_LT, + ACTIONS(7498), 1, + anon_sym_extends, + STATE(1139), 1, + sym_object_type, + STATE(4690), 1, + sym_type_parameters, + STATE(5057), 1, sym_extends_clause, - STATE(5233), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [210544] = 5, + [210332] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7478), 1, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + ACTIONS(7500), 1, + sym_identifier, + ACTIONS(7502), 1, + anon_sym_DOT, + STATE(1044), 1, + sym_nested_identifier, + STATE(1056), 1, + sym_string, + STATE(1190), 1, + sym__module, + [210357] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_COLON, + STATE(4595), 1, + sym_type_annotation, + STATE(5065), 1, + sym__initializer, + ACTIONS(7256), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [210378] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7504), 1, anon_sym_AMP, - ACTIONS(7480), 1, - anon_sym_PIPE, - ACTIONS(7482), 1, - anon_sym_extends, - ACTIONS(5211), 4, + ACTIONS(5918), 6, anon_sym_EQ, anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - anon_sym_GT, - [210563] = 3, + anon_sym_PIPE, + anon_sym_extends, + [210393] = 3, ACTIONS(3), 1, sym_comment, ACTIONS(7478), 1, anon_sym_AMP, - ACTIONS(5750), 6, - anon_sym_EQ, + ACTIONS(5918), 6, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_GT, + anon_sym_RBRACK, anon_sym_PIPE, anon_sym_extends, - [210578] = 3, + [210408] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(5761), 6, - anon_sym_EQ, + ACTIONS(7333), 1, + anon_sym_is, + ACTIONS(4831), 6, anon_sym_COMMA, - anon_sym_RPAREN, anon_sym_LBRACK, + anon_sym_GT, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [210593] = 5, + [210423] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, + ACTIONS(7504), 1, anon_sym_AMP, - ACTIONS(7474), 1, + ACTIONS(7506), 1, anon_sym_PIPE, - ACTIONS(7476), 1, + ACTIONS(7508), 1, anon_sym_extends, - ACTIONS(5211), 4, + ACTIONS(5922), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_RPAREN, anon_sym_LBRACK, - [210612] = 8, + [210442] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7496), 1, + ACTIONS(7510), 1, sym_identifier, - ACTIONS(7498), 1, + ACTIONS(7512), 1, anon_sym_STAR, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5259), 1, + STATE(5398), 1, sym__call_signature, - [210637] = 3, + [210467] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_AMP, - ACTIONS(5761), 6, + ACTIONS(7303), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, anon_sym_extends, - [210652] = 2, + STATE(2534), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5390), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [210492] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(6231), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [210665] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7514), 1, + sym_identifier, + ACTIONS(7516), 1, + anon_sym_STAR, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5422), 1, + sym__call_signature, + [210517] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(4461), 7, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [210678] = 5, + ACTIONS(5865), 1, + anon_sym_LPAREN, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_LBRACK, + ACTIONS(7522), 1, + sym_private_property_identifier, + STATE(3323), 1, + sym_arguments, + STATE(5461), 1, + sym_type_arguments, + [210542] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(4554), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5383), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [210567] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7478), 1, anon_sym_AMP, - ACTIONS(7502), 1, + ACTIONS(7480), 1, anon_sym_PIPE, - ACTIONS(7504), 1, - anon_sym_extends, - ACTIONS(5767), 4, + ACTIONS(5977), 5, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - [210697] = 5, + anon_sym_extends, + [210584] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, - anon_sym_AMP, - ACTIONS(7474), 1, - anon_sym_PIPE, - ACTIONS(7476), 1, - anon_sym_extends, - ACTIONS(5864), 4, - anon_sym_EQ, + ACTIONS(7524), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_LBRACK, - [210716] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [210597] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_PIPE, - ACTIONS(5870), 5, + ACTIONS(7327), 1, anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, anon_sym_extends, - [210733] = 6, + STATE(2963), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5302), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [210622] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(7416), 1, + anon_sym_AMP, + ACTIONS(7418), 1, + anon_sym_PIPE, ACTIONS(7420), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(7506), 1, - sym_identifier, - STATE(4824), 1, - sym_variable_declarator, - STATE(4038), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [210754] = 8, + anon_sym_extends, + ACTIONS(7379), 4, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_SEMI, + [210641] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7508), 1, + ACTIONS(7526), 1, sym_identifier, - ACTIONS(7510), 1, + ACTIONS(7528), 1, anon_sym_STAR, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5399), 1, + STATE(5347), 1, sym__call_signature, - [210779] = 5, + [210666] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7478), 1, + ACTIONS(7530), 1, anon_sym_AMP, - ACTIONS(7480), 1, + ACTIONS(7532), 1, anon_sym_PIPE, - ACTIONS(7482), 1, + ACTIONS(7534), 1, anon_sym_extends, - ACTIONS(5864), 4, + ACTIONS(5997), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - [210798] = 6, + [210685] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7420), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, + ACTIONS(7530), 1, + anon_sym_AMP, + ACTIONS(7532), 1, + anon_sym_PIPE, + ACTIONS(7534), 1, + anon_sym_extends, + ACTIONS(5183), 4, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(7506), 1, - sym_identifier, - STATE(4804), 1, - sym_variable_declarator, - STATE(4038), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [210819] = 6, + anon_sym_GT, + [210704] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7420), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, + ACTIONS(7530), 1, + anon_sym_AMP, + ACTIONS(5967), 6, + anon_sym_EQ, + anon_sym_COMMA, anon_sym_LBRACK, - ACTIONS(7438), 1, - sym_identifier, - STATE(4804), 1, - sym_variable_declarator, - STATE(4201), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [210840] = 5, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_extends, + [210719] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7478), 1, @@ -299966,132 +299971,104 @@ static uint16_t ts_small_parse_table[] = { anon_sym_PIPE, ACTIONS(7482), 1, anon_sym_extends, - ACTIONS(5256), 4, - anon_sym_EQ, + ACTIONS(5258), 4, + anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_GT, - [210859] = 5, + anon_sym_RBRACK, + [210738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_PIPE, - ACTIONS(7504), 1, - anon_sym_extends, - ACTIONS(5256), 4, + ACTIONS(7162), 1, + anon_sym_is, + ACTIONS(7536), 6, + sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - [210878] = 8, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210753] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2578), 1, + STATE(2529), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5364), 1, + STATE(5303), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [210903] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7420), 1, - anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(7438), 1, - sym_identifier, - STATE(4973), 1, - sym_variable_declarator, - STATE(4201), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [210924] = 5, + [210778] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(5864), 4, - anon_sym_LBRACE, - anon_sym_RPAREN, + ACTIONS(7198), 1, anon_sym_COLON, - anon_sym_LBRACK, - [210943] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5789), 1, - anon_sym_LPAREN, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7512), 1, - sym_identifier, - ACTIONS(7514), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - sym_private_property_identifier, - STATE(3303), 1, - sym_arguments, - STATE(5158), 1, - sym_type_arguments, - [210968] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6296), 7, + STATE(4664), 1, + sym_type_annotation, + ACTIONS(7538), 5, sym__automatic_semicolon, - anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - [210981] = 8, + anon_sym_PIPE_RBRACE, + [210795] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7518), 1, + ACTIONS(7540), 1, sym_identifier, - ACTIONS(7520), 1, + ACTIONS(7542), 1, anon_sym_STAR, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5403), 1, + STATE(5398), 1, sym__call_signature, - [211006] = 3, + [210820] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7452), 1, - anon_sym_AMP, - ACTIONS(5761), 6, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - anon_sym_PIPE, + ACTIONS(7327), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, anon_sym_extends, - [211021] = 2, + STATE(2961), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5301), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [210845] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5375), 1, + sym_statement_block, + ACTIONS(7544), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [210862] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3048), 7, + ACTIONS(3032), 7, anon_sym_EQ, anon_sym_COMMA, anon_sym_RBRACE, @@ -300099,363 +300076,282 @@ static uint16_t ts_small_parse_table[] = { anon_sym_COLON, anon_sym_RBRACK, anon_sym_QMARK, - [211034] = 3, + [210875] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, + ACTIONS(7478), 1, anon_sym_AMP, - ACTIONS(5750), 6, + ACTIONS(5967), 6, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_PIPE, anon_sym_extends, - [211049] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - STATE(4442), 1, - sym_type_annotation, - STATE(4957), 1, - sym__initializer, - ACTIONS(7319), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [211070] = 4, + [210890] = 5, ACTIONS(3), 1, sym_comment, ACTIONS(7478), 1, anon_sym_AMP, ACTIONS(7480), 1, anon_sym_PIPE, - ACTIONS(5870), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_extends, - [211087] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7500), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_PIPE, - ACTIONS(7504), 1, + ACTIONS(7482), 1, anon_sym_extends, - ACTIONS(5211), 4, + ACTIONS(5183), 4, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, - [211106] = 8, + [210909] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7522), 1, - sym_identifier, - ACTIONS(7524), 1, - anon_sym_STAR, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5259), 1, - sym__call_signature, - [211131] = 8, + ACTIONS(7398), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [210922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7546), 7, + sym__automatic_semicolon, anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - STATE(3185), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5232), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [211156] = 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [210935] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7452), 1, - anon_sym_AMP, - ACTIONS(7464), 1, - anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - ACTIONS(5767), 4, + ACTIONS(7387), 7, + sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_QMARK, - [211175] = 8, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [210948] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 1, - anon_sym_LPAREN, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7526), 1, - sym_identifier, - ACTIONS(7528), 1, - anon_sym_LBRACK, - ACTIONS(7530), 1, - sym_private_property_identifier, - STATE(2175), 1, - sym_arguments, - STATE(5317), 1, - sym_type_arguments, - [211200] = 8, + ACTIONS(7383), 7, + sym__automatic_semicolon, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_in, + anon_sym_of, + anon_sym_SEMI, + anon_sym_COLON, + [210961] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, + ACTIONS(7530), 1, + anon_sym_AMP, ACTIONS(7532), 1, - sym_identifier, + anon_sym_PIPE, ACTIONS(7534), 1, - anon_sym_STAR, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5403), 1, - sym__call_signature, - [211225] = 6, + anon_sym_extends, + ACTIONS(5258), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [210980] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - ACTIONS(7168), 1, - anon_sym_COLON, - STATE(4560), 1, - sym_type_annotation, - STATE(5062), 1, - sym__initializer, - ACTIONS(7268), 3, + ACTIONS(6261), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - [211246] = 8, + anon_sym_COLON, + [210993] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7408), 1, + anon_sym_LBRACE, + ACTIONS(7410), 1, + anon_sym_LBRACK, + ACTIONS(7476), 1, + sym_identifier, + STATE(5147), 1, + sym_variable_declarator, + STATE(4230), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [211014] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7357), 1, + ACTIONS(7377), 1, anon_sym_LBRACE, - STATE(4665), 1, + STATE(171), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5215), 1, + STATE(5315), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [211271] = 5, + [211039] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7474), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7476), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(5767), 4, - anon_sym_EQ, - anon_sym_COMMA, + ACTIONS(5997), 4, + anon_sym_LBRACE, anon_sym_RPAREN, + anon_sym_COLON, anon_sym_LBRACK, - [211290] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7536), 1, - sym_identifier, - ACTIONS(7538), 1, - anon_sym_STAR, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5259), 1, - sym__call_signature, - [211315] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7182), 1, - anon_sym_is, - ACTIONS(7540), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211330] = 8, + [211058] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2311), 1, + ACTIONS(7366), 1, + anon_sym_LBRACE, + STATE(1115), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5208), 1, + STATE(5240), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [211355] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7488), 1, - anon_sym_QMARK, - ACTIONS(7542), 1, - anon_sym_COLON, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5303), 1, - sym__call_signature, - [211380] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(738), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, - anon_sym_LBRACE, - ACTIONS(7544), 1, - anon_sym_LT, - ACTIONS(7546), 1, - anon_sym_extends, - STATE(4611), 1, - sym_object_type, - STATE(4690), 1, - sym_type_parameters, - STATE(4965), 1, - sym_extends_clause, - [211405] = 5, + [211083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(5256), 4, + ACTIONS(7408), 1, anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(7410), 1, anon_sym_LBRACK, - [211424] = 8, + ACTIONS(7440), 1, + sym_identifier, + STATE(4821), 1, + sym_variable_declarator, + STATE(4002), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [211104] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(3375), 1, + STATE(3031), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5170), 1, + STATE(5454), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [211449] = 6, + [211129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7236), 1, + ACTIONS(4557), 7, anon_sym_EQ, - STATE(4905), 1, - sym_constraint, - STATE(5385), 1, - sym_default_type, - ACTIONS(7241), 2, - anon_sym_COLON, - anon_sym_extends, - ACTIONS(7548), 2, anon_sym_COMMA, - anon_sym_GT, - [211470] = 4, + anon_sym_RBRACE, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [211142] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5368), 1, - sym_statement_block, - ACTIONS(7550), 5, + ACTIONS(6232), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211487] = 8, + anon_sym_COLON, + [211155] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7548), 1, + sym_identifier, + ACTIONS(7550), 1, + anon_sym_STAR, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5395), 1, + sym__call_signature, + [211180] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7408), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7410), 1, + anon_sym_LBRACK, + ACTIONS(7476), 1, + sym_identifier, + STATE(4898), 1, + sym_variable_declarator, + STATE(4230), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [211201] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7530), 1, + anon_sym_AMP, + ACTIONS(7532), 1, + anon_sym_PIPE, + ACTIONS(5977), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, anon_sym_extends, - STATE(2843), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5331), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [211512] = 4, + [211218] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5376), 1, + STATE(5206), 1, sym_statement_block, - ACTIONS(7550), 5, + ACTIONS(7552), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [211529] = 4, + [211235] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5365), 1, + STATE(5378), 1, sym_statement_block, ACTIONS(7552), 5, sym__automatic_semicolon, @@ -300463,140 +300359,150 @@ static uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [211546] = 5, + [211252] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, - anon_sym_AMP, - ACTIONS(7502), 1, - anon_sym_PIPE, - ACTIONS(7504), 1, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(5864), 4, + STATE(2576), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5374), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [211277] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7408), 1, anon_sym_LBRACE, - anon_sym_COMMA, + ACTIONS(7410), 1, anon_sym_LBRACK, - anon_sym_RBRACK, - [211565] = 8, + ACTIONS(7476), 1, + sym_identifier, + STATE(4894), 1, + sym_variable_declarator, + STATE(4230), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [211298] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, ACTIONS(7554), 1, sym_identifier, ACTIONS(7556), 1, - anon_sym_DOT, - STATE(4127), 1, - sym_nested_identifier, - STATE(4273), 1, - sym_string, - STATE(4600), 1, - sym__module, - [211590] = 8, + anon_sym_STAR, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5247), 1, + sym__call_signature, + [211323] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, ACTIONS(7558), 1, - sym_identifier, + anon_sym_COLON, ACTIONS(7560), 1, - anon_sym_STAR, - STATE(4541), 1, + anon_sym_QMARK, + STATE(4580), 1, sym_formal_parameters, - STATE(5195), 1, - sym__call_signature, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - [211615] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4672), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5205), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [211640] = 6, + STATE(5265), 1, + sym__call_signature, + [211348] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, + ACTIONS(7562), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7566), 1, anon_sym_COLON, - STATE(4572), 1, + ACTIONS(7568), 1, + anon_sym_QMARK, + STATE(4872), 1, sym_type_annotation, - STATE(5150), 1, + STATE(5288), 1, sym__initializer, - ACTIONS(7264), 3, - sym__automatic_semicolon, + ACTIONS(7564), 2, anon_sym_COMMA, - anon_sym_SEMI, - [211661] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5288), 1, - anon_sym_LPAREN, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7562), 1, - sym_identifier, - ACTIONS(7564), 1, - anon_sym_LBRACK, - ACTIONS(7566), 1, - sym_private_property_identifier, - STATE(2779), 1, - sym_arguments, - STATE(5323), 1, - sym_type_arguments, - [211686] = 8, + anon_sym_RPAREN, + [211371] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7311), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7386), 1, - anon_sym_LBRACE, - STATE(149), 1, + STATE(3431), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5413), 1, + STATE(5162), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [211711] = 7, + [211396] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7568), 1, - anon_sym_EQ, - ACTIONS(7572), 1, - anon_sym_COLON, - ACTIONS(7574), 1, + ACTIONS(7434), 1, + anon_sym_AMP, + ACTIONS(7436), 1, + anon_sym_PIPE, + ACTIONS(7438), 1, + anon_sym_extends, + ACTIONS(5997), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - STATE(4887), 1, - sym_type_annotation, - STATE(5342), 1, - sym__initializer, - ACTIONS(7570), 2, + [211415] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7428), 1, + anon_sym_LBRACE, + STATE(4588), 1, + sym_statement_block, + ACTIONS(1928), 5, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [211432] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(5258), 4, + anon_sym_LBRACE, anon_sym_RPAREN, - [211734] = 2, + anon_sym_COLON, + anon_sym_LBRACK, + [211451] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7576), 7, + ACTIONS(7570), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, @@ -300604,18324 +300510,18584 @@ static uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_COLON, anon_sym_PIPE_RBRACE, - [211747] = 2, + [211464] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7380), 7, - sym__automatic_semicolon, + ACTIONS(4639), 7, anon_sym_EQ, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, + anon_sym_RBRACE, + anon_sym_RPAREN, anon_sym_COLON, - [211760] = 8, + anon_sym_RBRACK, + anon_sym_QMARK, + [211477] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2257), 1, + STATE(3478), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5334), 1, + STATE(5434), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [211785] = 2, + [211502] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7578), 7, + ACTIONS(2002), 7, sym__automatic_semicolon, anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, + anon_sym_DOT, anon_sym_PIPE_RBRACE, - [211798] = 4, + [211515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5300), 1, - sym_statement_block, - ACTIONS(7580), 5, + ACTIONS(7372), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211815] = 4, + anon_sym_COLON, + [211528] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5298), 1, - sym_statement_block, - ACTIONS(7582), 5, + ACTIONS(7381), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211832] = 6, + anon_sym_COLON, + [211541] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(4422), 1, + STATE(4617), 1, sym_type_annotation, - STATE(5128), 1, + STATE(4934), 1, sym__initializer, - ACTIONS(7584), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [211853] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5392), 1, - sym_statement_block, - ACTIONS(7582), 5, + ACTIONS(7283), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211870] = 8, + [211562] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7586), 1, + ACTIONS(7572), 1, sym_identifier, - ACTIONS(7588), 1, + ACTIONS(7574), 1, anon_sym_STAR, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5403), 1, + STATE(5398), 1, sym__call_signature, - [211895] = 6, + [211587] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, + ACTIONS(7164), 1, anon_sym_EQ, - ACTIONS(7168), 1, + ACTIONS(7170), 1, anon_sym_COLON, - STATE(4515), 1, + STATE(4528), 1, sym_type_annotation, - STATE(5033), 1, + STATE(5022), 1, sym__initializer, - ACTIONS(7270), 3, + ACTIONS(7252), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [211916] = 8, + [211608] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, - anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1055), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5375), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [211941] = 4, + ACTIONS(5278), 1, + anon_sym_LPAREN, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7576), 1, + sym_identifier, + ACTIONS(7578), 1, + anon_sym_LBRACK, + ACTIONS(7580), 1, + sym_private_property_identifier, + STATE(3005), 1, + sym_arguments, + STATE(5327), 1, + sym_type_arguments, + [211633] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5230), 1, - sym_statement_block, - ACTIONS(7590), 5, - sym__automatic_semicolon, + ACTIONS(7530), 1, + anon_sym_AMP, + ACTIONS(7532), 1, + anon_sym_PIPE, + ACTIONS(7534), 1, + anon_sym_extends, + ACTIONS(5922), 4, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211958] = 4, + anon_sym_LBRACK, + anon_sym_GT, + [211652] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - STATE(4525), 1, - sym_type_annotation, - ACTIONS(7592), 5, - sym__automatic_semicolon, + ACTIONS(7530), 1, + anon_sym_AMP, + ACTIONS(5918), 6, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [211975] = 6, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_extends, + [211667] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7420), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, - anon_sym_LBRACK, - ACTIONS(7438), 1, - sym_identifier, - STATE(4883), 1, - sym_variable_declarator, - STATE(4201), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [211996] = 4, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(1070), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5385), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [211692] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(7291), 1, anon_sym_LBRACE, - STATE(5216), 1, - sym_statement_block, - ACTIONS(7594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212013] = 6, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(2262), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5380), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [211717] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7420), 1, + ACTIONS(7408), 1, anon_sym_LBRACE, - ACTIONS(7422), 1, + ACTIONS(7410), 1, anon_sym_LBRACK, - ACTIONS(7438), 1, + ACTIONS(7476), 1, sym_identifier, - STATE(4882), 1, + STATE(4788), 1, sym_variable_declarator, - STATE(4201), 3, + STATE(4230), 3, sym_object_pattern, sym_array_pattern, sym__destructuring_pattern, - [212034] = 2, + [211738] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7388), 7, - sym__automatic_semicolon, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [212047] = 4, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7582), 1, + sym_identifier, + ACTIONS(7584), 1, + anon_sym_STAR, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5398), 1, + sym__call_signature, + [211763] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6908), 2, + ACTIONS(7434), 1, + anon_sym_AMP, + ACTIONS(7436), 1, + anon_sym_PIPE, + ACTIONS(7438), 1, + anon_sym_extends, + ACTIONS(5183), 4, anon_sym_COMMA, - anon_sym_RBRACE, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_QMARK, - [212064] = 4, + [211782] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5407), 1, - sym_statement_block, - ACTIONS(7590), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212081] = 4, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7586), 1, + sym_identifier, + ACTIONS(7588), 1, + anon_sym_STAR, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5247), 1, + sym__call_signature, + [211807] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(5410), 1, - sym_statement_block, - ACTIONS(7594), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212098] = 4, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(2550), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5391), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [211832] = 8, ACTIONS(3), 1, sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7590), 1, + sym_identifier, + ACTIONS(7592), 1, + anon_sym_STAR, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5247), 1, + sym__call_signature, + [211857] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7434), 1, anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(5870), 5, - anon_sym_LBRACE, - anon_sym_RPAREN, - anon_sym_COLON, + ACTIONS(5967), 6, + anon_sym_COMMA, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_PIPE, anon_sym_extends, - [212115] = 4, + [211872] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5185), 1, - sym_statement_block, - ACTIONS(7596), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212132] = 4, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7560), 1, + anon_sym_QMARK, + ACTIONS(7594), 1, + anon_sym_COLON, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5265), 1, + sym__call_signature, + [211897] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - STATE(5183), 1, - sym_statement_block, - ACTIONS(7598), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212149] = 8, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(4545), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5373), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [211922] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2546), 1, + STATE(3098), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5294), 1, + STATE(5421), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [212174] = 2, + [211947] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7504), 1, + anon_sym_AMP, + ACTIONS(7506), 1, + anon_sym_PIPE, + ACTIONS(5977), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_extends, + [211964] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7504), 1, + anon_sym_AMP, + ACTIONS(7506), 1, + anon_sym_PIPE, + ACTIONS(7508), 1, + anon_sym_extends, + ACTIONS(5258), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + [211983] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7600), 7, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_COLON, + STATE(4449), 1, + sym_type_annotation, + STATE(5140), 1, + sym__initializer, + ACTIONS(7248), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_PIPE_RBRACE, - [212187] = 8, + [212004] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2904), 1, + STATE(3089), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5283), 1, + STATE(5367), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [212212] = 8, + [212029] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2909), 1, + STATE(3499), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5282), 1, + STATE(5417), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [212237] = 4, + [212054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5412), 1, - sym_statement_block, - ACTIONS(7596), 5, + ACTIONS(6227), 7, sym__automatic_semicolon, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, + anon_sym_in, + anon_sym_of, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212254] = 4, + anon_sym_COLON, + [212067] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5163), 1, + STATE(5438), 1, sym_statement_block, - ACTIONS(7602), 5, + ACTIONS(7596), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212271] = 4, + [212084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5161), 1, - sym_statement_block, - ACTIONS(7604), 5, + ACTIONS(7345), 1, + anon_sym_is, + ACTIONS(4831), 6, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212288] = 8, + anon_sym_LBRACK, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [212099] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(5967), 6, anon_sym_LBRACE, - ACTIONS(7353), 1, - anon_sym_implements, - ACTIONS(7355), 1, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_PIPE, anon_sym_extends, - STATE(2461), 1, - sym_class_body, - STATE(5010), 1, - sym_extends_clause, - STATE(5401), 1, - sym_class_heritage, - STATE(5700), 1, - sym_implements_clause, - [212313] = 4, + [212114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(5183), 4, anon_sym_LBRACE, - STATE(5154), 1, - sym_statement_block, - ACTIONS(7606), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212330] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7608), 1, - sym_identifier, - ACTIONS(7610), 1, - anon_sym_STAR, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5403), 1, - sym__call_signature, - [212355] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_LBRACK, + [212133] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7400), 7, - sym__automatic_semicolon, - anon_sym_EQ, + ACTIONS(7434), 1, + anon_sym_AMP, + ACTIONS(7436), 1, + anon_sym_PIPE, + ACTIONS(7438), 1, + anon_sym_extends, + ACTIONS(5258), 4, anon_sym_COMMA, - anon_sym_in, - anon_sym_of, - anon_sym_SEMI, - anon_sym_COLON, - [212368] = 8, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + [212152] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2562), 1, + STATE(2971), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5381), 1, + STATE(5360), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [212393] = 8, + [212177] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + ACTIONS(7377), 1, + anon_sym_LBRACE, + STATE(164), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5423), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [212202] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 1, anon_sym_LBRACE, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - STATE(2990), 1, + STATE(2185), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5266), 1, + STATE(5322), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [212418] = 5, + [212227] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7404), 1, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(7598), 1, + sym_identifier, + ACTIONS(7600), 1, + anon_sym_DOT, + STATE(4117), 1, + sym_nested_identifier, + STATE(4222), 1, + sym_string, + STATE(4481), 1, + sym__module, + [212252] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(7496), 1, + anon_sym_LT, + ACTIONS(7498), 1, + anon_sym_extends, + STATE(4489), 1, + sym_object_type, + STATE(4633), 1, + sym_type_parameters, + STATE(4971), 1, + sym_extends_clause, + [212277] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4789), 1, + anon_sym_LPAREN, + ACTIONS(7114), 1, + anon_sym_LT, + ACTIONS(7602), 1, + sym_identifier, + ACTIONS(7604), 1, + anon_sym_LBRACK, + ACTIONS(7606), 1, + sym_private_property_identifier, + STATE(2279), 1, + sym_arguments, + STATE(5331), 1, + sym_type_arguments, + [212302] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7504), 1, anon_sym_AMP, - ACTIONS(7406), 1, + ACTIONS(7506), 1, anon_sym_PIPE, - ACTIONS(7408), 1, + ACTIONS(7508), 1, anon_sym_extends, - ACTIONS(7392), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [212437] = 4, + ACTIONS(5997), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_LBRACK, + [212321] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5395), 1, - sym_statement_block, - ACTIONS(7580), 5, + ACTIONS(7164), 1, + anon_sym_EQ, + ACTIONS(7170), 1, + anon_sym_COLON, + STATE(4466), 1, + sym_type_annotation, + STATE(5124), 1, + sym__initializer, + ACTIONS(7608), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212454] = 8, + [212342] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7303), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7382), 1, - anon_sym_LBRACE, - STATE(1177), 1, + STATE(3113), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5311), 1, + STATE(5340), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [212479] = 2, + [212367] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6573), 7, + ACTIONS(7504), 1, + anon_sym_AMP, + ACTIONS(5967), 6, anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_COLON, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [212382] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, anon_sym_LT, - anon_sym_QMARK, - [212492] = 8, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7610), 1, + sym_identifier, + ACTIONS(7612), 1, + anon_sym_STAR, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5247), 1, + sym__call_signature, + [212407] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7327), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1064), 1, + STATE(2930), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5301), 1, + STATE(5291), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [212517] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7434), 1, - anon_sym_LBRACE, - STATE(4684), 1, - sym_statement_block, - ACTIONS(1928), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212534] = 8, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1652), 1, - anon_sym_DQUOTE, - ACTIONS(1654), 1, - anon_sym_SQUOTE, - ACTIONS(7612), 1, - sym_identifier, - ACTIONS(7614), 1, - anon_sym_DOT, - STATE(1042), 1, - sym_nested_identifier, - STATE(1059), 1, - sym_string, - STATE(1094), 1, - sym__module, - [212559] = 8, + [212432] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1878), 1, + ACTIONS(7291), 1, anon_sym_LBRACE, - ACTIONS(7544), 1, - anon_sym_LT, - ACTIONS(7546), 1, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, anon_sym_extends, - STATE(1155), 1, - sym_object_type, - STATE(4458), 1, - sym_type_parameters, - STATE(4934), 1, + STATE(2286), 1, + sym_class_body, + STATE(5017), 1, sym_extends_clause, - [212584] = 8, + STATE(5350), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [212457] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7352), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(7355), 1, + ACTIONS(7356), 1, anon_sym_extends, - ACTIONS(7386), 1, - anon_sym_LBRACE, - STATE(160), 1, + STATE(4523), 1, sym_class_body, - STATE(5010), 1, + STATE(5017), 1, sym_extends_clause, - STATE(5306), 1, + STATE(5351), 1, sym_class_heritage, - STATE(5700), 1, + STATE(5710), 1, sym_implements_clause, - [212609] = 8, + [212482] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, - anon_sym_LPAREN, - ACTIONS(7118), 1, - anon_sym_LT, - ACTIONS(7616), 1, - sym_identifier, - ACTIONS(7618), 1, + ACTIONS(7504), 1, + anon_sym_AMP, + ACTIONS(7506), 1, + anon_sym_PIPE, + ACTIONS(7508), 1, + anon_sym_extends, + ACTIONS(5183), 4, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_LBRACK, - ACTIONS(7620), 1, - sym_private_property_identifier, - STATE(2423), 1, - sym_arguments, - STATE(5450), 1, - sym_type_arguments, - [212634] = 5, + [212501] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7434), 1, + anon_sym_AMP, + ACTIONS(7436), 1, + anon_sym_PIPE, + ACTIONS(5977), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_QMARK, + anon_sym_extends, + [212518] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(7202), 1, + anon_sym_EQ, + STATE(4827), 1, + sym_constraint, + STATE(5362), 1, + sym_default_type, + ACTIONS(7207), 2, anon_sym_COLON, - ACTIONS(7622), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, - anon_sym_QMARK_COLON, - STATE(4564), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [212652] = 7, + anon_sym_extends, + ACTIONS(7614), 2, + anon_sym_COMMA, + anon_sym_GT, + [212539] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7626), 1, - anon_sym_QMARK, - STATE(4541), 1, - sym_formal_parameters, - STATE(5179), 1, - sym__call_signature, - STATE(5219), 1, - sym_type_parameters, - [212674] = 6, + ACTIONS(7291), 1, + anon_sym_LBRACE, + ACTIONS(7354), 1, + anon_sym_implements, + ACTIONS(7356), 1, + anon_sym_extends, + STATE(2283), 1, + sym_class_body, + STATE(5017), 1, + sym_extends_clause, + STATE(5354), 1, + sym_class_heritage, + STATE(5710), 1, + sym_implements_clause, + [212564] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7628), 1, - sym_identifier, - ACTIONS(7632), 1, + ACTIONS(7616), 7, + sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7634), 1, anon_sym_RBRACE, - STATE(4918), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, - [212694] = 7, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_PIPE_RBRACE, + [212577] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(7554), 1, - sym_identifier, - STATE(4127), 1, - sym_nested_identifier, - STATE(4273), 1, - sym_string, - STATE(4600), 1, - sym__module, - [212716] = 5, + ACTIONS(7198), 1, + anon_sym_COLON, + ACTIONS(7618), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7620), 1, + anon_sym_QMARK_COLON, + STATE(4622), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [212595] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7638), 1, + ACTIONS(7624), 1, anon_sym_BQUOTE, - ACTIONS(7640), 1, + ACTIONS(7626), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7636), 2, + ACTIONS(7622), 2, sym__template_chars, sym_escape_sequence, - STATE(4342), 2, + STATE(4298), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [212734] = 2, + [212613] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 6, - sym__automatic_semicolon, + ACTIONS(7478), 1, + anon_sym_AMP, + ACTIONS(7480), 1, + anon_sym_PIPE, + ACTIONS(7482), 1, + anon_sym_extends, + ACTIONS(7628), 1, + anon_sym_LBRACE, + ACTIONS(7630), 1, anon_sym_COMMA, + STATE(5084), 1, + aux_sym_implements_clause_repeat1, + [212635] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4288), 1, + aux_sym_object_type_repeat1, + ACTIONS(7634), 2, anon_sym_RBRACE, - anon_sym_from, - anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212746] = 7, + ACTIONS(7632), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212651] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(5768), 1, + anon_sym_COMMA, + ACTIONS(6872), 1, anon_sym_LPAREN, - ACTIONS(7642), 1, - anon_sym_QMARK, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5296), 1, - sym__call_signature, - [212768] = 7, + STATE(4699), 1, + sym_arguments, + STATE(4778), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5766), 2, + anon_sym_LBRACE, + anon_sym_implements, + [212671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7644), 1, + ACTIONS(7114), 1, + anon_sym_LT, + STATE(3832), 1, + sym_type_arguments, + ACTIONS(7636), 4, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(7646), 1, - anon_sym_GT, - ACTIONS(7648), 1, + anon_sym_LPAREN, + anon_sym_implements, + [212687] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, anon_sym_AMP, - ACTIONS(7650), 1, + ACTIONS(7640), 1, anon_sym_PIPE, - ACTIONS(7652), 1, + ACTIONS(7642), 1, anon_sym_extends, - STATE(5101), 1, - aux_sym_implements_clause_repeat1, - [212790] = 5, + ACTIONS(5922), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [212705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7640), 1, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(4807), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7644), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212721] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7626), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7656), 1, + ACTIONS(7648), 1, anon_sym_BQUOTE, - ACTIONS(7654), 2, + ACTIONS(7646), 2, sym__template_chars, sym_escape_sequence, - STATE(4307), 2, + STATE(4279), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [212808] = 7, + [212739] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - ACTIONS(7554), 1, - sym_identifier, - STATE(4127), 1, - sym_nested_identifier, - STATE(4273), 1, - sym_string, - STATE(4685), 1, - sym__module, - [212830] = 2, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(5918), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_extends, + [212753] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7658), 6, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(4799), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7650), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [212842] = 3, + [212769] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7375), 1, - anon_sym_is, - ACTIONS(4839), 5, - anon_sym_LBRACK, - anon_sym_EQ_GT, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [212856] = 4, + ACTIONS(7652), 1, + sym_identifier, + ACTIONS(7656), 1, + anon_sym_COMMA, + ACTIONS(7658), 1, + anon_sym_RBRACE, + STATE(4924), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [212789] = 4, ACTIONS(3), 1, sym_comment, - STATE(4323), 1, + STATE(4303), 1, aux_sym_object_type_repeat1, - ACTIONS(7662), 2, + ACTIONS(4799), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7660), 3, + ACTIONS(7650), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [212872] = 7, + [212805] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7664), 1, + ACTIONS(7660), 1, sym_identifier, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5165), 1, - sym__call_signature, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - [212894] = 5, + STATE(5408), 1, + sym__call_signature, + [212827] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, + ACTIONS(7638), 1, anon_sym_AMP, - ACTIONS(7668), 1, + ACTIONS(7640), 1, anon_sym_PIPE, - ACTIONS(7670), 1, + ACTIONS(7642), 1, anon_sym_extends, - ACTIONS(5767), 3, + ACTIONS(7662), 1, + anon_sym_COMMA, + ACTIONS(7664), 1, + anon_sym_GT, + STATE(4963), 1, + aux_sym_implements_clause_repeat1, + [212849] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(7598), 1, + sym_identifier, + STATE(4117), 1, + sym_nested_identifier, + STATE(4222), 1, + sym_string, + STATE(4481), 1, + sym__module, + [212871] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(4771), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7666), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_LBRACK, - [212912] = 4, + [212887] = 4, ACTIONS(3), 1, sym_comment, STATE(4332), 1, aux_sym_object_type_repeat1, - ACTIONS(4803), 2, + ACTIONS(7670), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7668), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [212903] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(4801), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, ACTIONS(7672), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [212928] = 5, + [212919] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2103), 1, + anon_sym_DQUOTE, + ACTIONS(2105), 1, + anon_sym_SQUOTE, + ACTIONS(7598), 1, + sym_identifier, + STATE(4117), 1, + sym_nested_identifier, + STATE(4222), 1, + sym_string, + STATE(4591), 1, + sym__module, + [212941] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7677), 1, + anon_sym_BQUOTE, + ACTIONS(7679), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7674), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4298), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [212959] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7472), 1, + ACTIONS(7434), 1, anon_sym_AMP, - ACTIONS(7474), 1, + ACTIONS(7436), 1, anon_sym_PIPE, - ACTIONS(7476), 1, + ACTIONS(7438), 1, anon_sym_extends, - ACTIONS(7392), 3, - anon_sym_EQ, + ACTIONS(7684), 1, + anon_sym_QMARK, + ACTIONS(7682), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [212946] = 2, + anon_sym_RBRACK, + [212979] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7396), 1, + anon_sym_is, + ACTIONS(4831), 5, + anon_sym_LBRACK, + anon_sym_EQ_GT, + anon_sym_AMP, + anon_sym_PIPE, + anon_sym_extends, + [212993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3218), 6, + ACTIONS(3356), 6, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_from, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [212958] = 4, + [213005] = 2, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4815), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7674), 3, + ACTIONS(3352), 6, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_from, anon_sym_SEMI, - [212974] = 4, + anon_sym_PIPE_RBRACE, + [213017] = 4, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, + STATE(4357), 1, aux_sym_object_type_repeat1, - ACTIONS(4805), 2, + ACTIONS(4813), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7676), 3, + ACTIONS(7686), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [212990] = 7, + [213033] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2002), 1, + anon_sym_DOT, + ACTIONS(5170), 1, + anon_sym_LBRACE, + ACTIONS(5172), 4, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [213049] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7678), 1, + ACTIONS(7688), 1, sym_identifier, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5404), 1, + STATE(5408), 1, sym__call_signature, - [213012] = 7, + [213071] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7690), 1, + sym_identifier, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, + [213093] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7692), 1, + anon_sym_QMARK, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5376), 1, + sym__call_signature, + [213115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7385), 1, + anon_sym_is, + ACTIONS(4831), 5, + anon_sym_LBRACK, + anon_sym_QMARK, anon_sym_AMP, - ACTIONS(7650), 1, anon_sym_PIPE, - ACTIONS(7652), 1, anon_sym_extends, - ACTIONS(7680), 1, + [213129] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6909), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + ACTIONS(4666), 4, + anon_sym_LPAREN, + anon_sym_COLON, + anon_sym_LT, + anon_sym_QMARK, + [213143] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(7640), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_extends, + ACTIONS(7694), 1, anon_sym_COMMA, - ACTIONS(7682), 1, + ACTIONS(7696), 1, anon_sym_GT, - STATE(4941), 1, + STATE(4921), 1, aux_sym_implements_clause_repeat1, - [213034] = 2, + [213165] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3242), 6, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(4773), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7698), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213046] = 3, + [213181] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(5761), 5, + ACTIONS(7562), 1, + anon_sym_EQ, + ACTIONS(7566), 1, + anon_sym_COLON, + STATE(4750), 1, + sym_type_annotation, + STATE(5465), 1, + sym__initializer, + ACTIONS(7700), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [213201] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7702), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4148), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [213223] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7704), 1, + sym_identifier, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5408), 1, + sym__call_signature, + [213245] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4285), 1, + aux_sym_object_type_repeat1, + ACTIONS(4773), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7698), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, + [213261] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7394), 1, + anon_sym_is, + ACTIONS(4831), 5, anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_AMP, anon_sym_PIPE, anon_sym_extends, - [213060] = 5, + [213275] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7706), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4145), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [213297] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7708), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4131), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [213319] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7684), 1, + ACTIONS(7710), 1, anon_sym_default, - ACTIONS(7687), 1, + ACTIONS(7712), 1, anon_sym_RBRACE, - ACTIONS(7689), 1, + ACTIONS(7714), 1, anon_sym_case, - STATE(4302), 3, + STATE(4346), 3, sym_switch_case, sym_switch_default, aux_sym_switch_body_repeat1, - [213078] = 5, + [213337] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - ACTIONS(5256), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - [213096] = 4, + ACTIONS(7710), 1, + anon_sym_default, + ACTIONS(7714), 1, + anon_sym_case, + ACTIONS(7716), 1, + anon_sym_RBRACE, + STATE(4319), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [213355] = 4, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, + STATE(4296), 1, aux_sym_object_type_repeat1, - ACTIONS(4819), 2, + ACTIONS(7720), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7692), 3, + ACTIONS(7718), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213112] = 4, + [213371] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7722), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4161), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [213393] = 5, ACTIONS(3), 1, sym_comment, - STATE(4293), 1, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, + ACTIONS(7724), 1, + sym_identifier, + STATE(5359), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [213411] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, + ACTIONS(7726), 1, + sym_identifier, + STATE(5029), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [213429] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7728), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4667), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [213451] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4347), 1, aux_sym_object_type_repeat1, - ACTIONS(4819), 2, + ACTIONS(4779), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7692), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213128] = 2, + [213467] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(3246), 6, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213140] = 5, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7732), 1, + sym_identifier, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5399), 1, + sym__call_signature, + [213489] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7697), 1, - anon_sym_BQUOTE, - ACTIONS(7699), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7694), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4307), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [213158] = 6, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7734), 1, + sym_identifier, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5452), 1, + sym__call_signature, + [213511] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7452), 1, + ACTIONS(7504), 1, anon_sym_AMP, - ACTIONS(7464), 1, + ACTIONS(7506), 1, anon_sym_PIPE, - ACTIONS(7466), 1, + ACTIONS(7508), 1, anon_sym_extends, - ACTIONS(7704), 1, - anon_sym_QMARK, - ACTIONS(7702), 2, + ACTIONS(7379), 3, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACK, - [213178] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7622), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, - anon_sym_QMARK_COLON, - STATE(4522), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [213196] = 7, + anon_sym_RPAREN, + [213529] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7706), 1, + ACTIONS(7736), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4524), 1, + STATE(4214), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [213218] = 4, + [213551] = 5, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4823), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7708), 3, - sym__automatic_semicolon, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(7640), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_extends, + ACTIONS(5997), 3, anon_sym_COMMA, - anon_sym_SEMI, - [213234] = 4, + anon_sym_LBRACK, + anon_sym_GT, + [213569] = 4, ACTIONS(3), 1, sym_comment, - STATE(4297), 1, + STATE(4357), 1, aux_sym_object_type_repeat1, - ACTIONS(4823), 2, + ACTIONS(4779), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7708), 3, + ACTIONS(7730), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213250] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7648), 1, - anon_sym_AMP, - ACTIONS(7650), 1, - anon_sym_PIPE, - ACTIONS(7652), 1, - anon_sym_extends, - ACTIONS(7710), 1, - anon_sym_COMMA, - ACTIONS(7712), 1, - anon_sym_GT, - STATE(4923), 1, - aux_sym_implements_clause_repeat1, - [213272] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4676), 6, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_LPAREN, - anon_sym_LT, - anon_sym_QMARK, - [213284] = 7, + [213585] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7714), 1, - anon_sym_QMARK, - STATE(4541), 1, + ACTIONS(7738), 1, + sym_identifier, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5428), 1, + STATE(5341), 1, sym__call_signature, - [213306] = 5, + [213607] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7622), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, - anon_sym_QMARK_COLON, - STATE(4577), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [213324] = 5, + ACTIONS(7530), 1, + anon_sym_AMP, + ACTIONS(7532), 1, + anon_sym_PIPE, + ACTIONS(7534), 1, + anon_sym_extends, + ACTIONS(7740), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_GT, + [213625] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(7638), 1, + anon_sym_AMP, ACTIONS(7640), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7718), 1, - anon_sym_BQUOTE, - ACTIONS(7716), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4358), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [213342] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7622), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, - anon_sym_QMARK_COLON, - STATE(4586), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [213360] = 5, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_extends, + ACTIONS(5183), 3, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + [213643] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7622), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, - anon_sym_QMARK_COLON, - STATE(4585), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [213378] = 7, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(5967), 5, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_PIPE, + anon_sym_extends, + [213657] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7720), 1, - sym_identifier, - STATE(4541), 1, + ACTIONS(7742), 1, + anon_sym_QMARK, + STATE(3985), 1, sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5398), 1, + STATE(4647), 1, sym__call_signature, - [213400] = 7, + STATE(5259), 1, + sym_type_parameters, + [213679] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7722), 1, + ACTIONS(7744), 1, sym_identifier, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5404), 1, + STATE(5325), 1, sym__call_signature, - [213422] = 4, + [213701] = 4, ACTIONS(3), 1, sym_comment, STATE(4341), 1, aux_sym_object_type_repeat1, - ACTIONS(4795), 2, + ACTIONS(4801), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7724), 3, + ACTIONS(7672), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213438] = 4, + [213717] = 2, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4795), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7724), 3, + ACTIONS(7746), 6, sym__automatic_semicolon, + anon_sym_LBRACE, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [213454] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7726), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4512), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [213476] = 4, + anon_sym_PIPE_RBRACE, + [213729] = 4, ACTIONS(3), 1, sym_comment, - STATE(4311), 1, + STATE(4357), 1, aux_sym_object_type_repeat1, - ACTIONS(7730), 2, + ACTIONS(4781), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7728), 3, + ACTIONS(7748), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213492] = 2, + [213745] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 6, + ACTIONS(3308), 6, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_from, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [213504] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7734), 1, - sym_identifier, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5398), 1, - sym__call_signature, - [213526] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7736), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4583), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [213548] = 4, + [213757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, - anon_sym_AMP, - ACTIONS(7650), 1, - anon_sym_PIPE, - ACTIONS(5870), 4, + ACTIONS(3308), 6, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_extends, - [213564] = 7, + anon_sym_RBRACE, + anon_sym_from, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [213769] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7738), 1, + ACTIONS(7750), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(4581), 1, - sym__call_signature, - STATE(5416), 1, + STATE(5229), 1, sym_type_parameters, - [213586] = 7, + STATE(5305), 1, + sym__call_signature, + [213791] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7740), 1, - anon_sym_QMARK, - STATE(4541), 1, + ACTIONS(7752), 1, + sym_identifier, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5366), 1, + STATE(5377), 1, sym__call_signature, - [213608] = 4, + [213813] = 5, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(7745), 2, + ACTIONS(7754), 1, + anon_sym_default, + ACTIONS(7757), 1, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7742), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [213624] = 4, + ACTIONS(7759), 1, + anon_sym_case, + STATE(4346), 3, + sym_switch_case, + sym_switch_default, + aux_sym_switch_body_repeat1, + [213831] = 4, ACTIONS(3), 1, sym_comment, - STATE(4304), 1, + STATE(4357), 1, aux_sym_object_type_repeat1, - ACTIONS(7749), 2, + ACTIONS(4811), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7747), 3, + ACTIONS(7762), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [213640] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7648), 1, - anon_sym_AMP, - ACTIONS(7650), 1, - anon_sym_PIPE, - ACTIONS(7652), 1, - anon_sym_extends, - ACTIONS(7751), 1, - anon_sym_COMMA, - ACTIONS(7753), 1, - anon_sym_GT, - STATE(5058), 1, - aux_sym_implements_clause_repeat1, - [213662] = 5, + [213847] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(7198), 1, anon_sym_COLON, - ACTIONS(7622), 1, + ACTIONS(7618), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, + ACTIONS(7620), 1, anon_sym_QMARK_COLON, - STATE(4578), 3, + STATE(4459), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [213680] = 6, + [213865] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, - anon_sym_COMMA, - ACTIONS(7118), 1, + ACTIONS(2920), 1, anon_sym_LT, - STATE(3859), 1, - sym_type_arguments, - STATE(4832), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5825), 2, - anon_sym_LBRACE, - anon_sym_implements, - [213700] = 7, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7764), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4620), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [213887] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, + ACTIONS(7766), 1, anon_sym_AMP, - ACTIONS(7502), 1, + ACTIONS(7768), 1, anon_sym_PIPE, - ACTIONS(7504), 1, + ACTIONS(5977), 4, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_extends, - ACTIONS(7755), 1, - anon_sym_LBRACE, - ACTIONS(7757), 1, - anon_sym_COMMA, - STATE(4998), 1, - aux_sym_implements_clause_repeat1, - [213722] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7640), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7759), 1, - anon_sym_BQUOTE, - ACTIONS(7654), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4307), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [213740] = 7, + [213903] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7761), 1, + ACTIONS(7770), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(4571), 1, - sym__call_signature, - STATE(5416), 1, + STATE(5229), 1, sym_type_parameters, - [213762] = 5, + STATE(5431), 1, + sym__call_signature, + [213925] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(4666), 6, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [213937] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7766), 1, anon_sym_AMP, - ACTIONS(7650), 1, + ACTIONS(7768), 1, anon_sym_PIPE, - ACTIONS(7652), 1, + ACTIONS(7772), 1, anon_sym_extends, - ACTIONS(5864), 3, - anon_sym_COMMA, + ACTIONS(5258), 3, + sym__automatic_semicolon, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_GT, - [213780] = 4, + [213955] = 2, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4821), 2, + ACTIONS(3440), 6, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, + anon_sym_from, + anon_sym_SEMI, anon_sym_PIPE_RBRACE, - ACTIONS(7763), 3, + [213967] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7766), 1, + anon_sym_AMP, + ACTIONS(5967), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [213796] = 5, + anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_extends, + [213981] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7640), 1, + ACTIONS(7626), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7765), 1, + ACTIONS(7776), 1, anon_sym_BQUOTE, - ACTIONS(7654), 2, + ACTIONS(7774), 2, sym__template_chars, sym_escape_sequence, - STATE(4307), 2, + STATE(4365), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [213814] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7648), 1, - anon_sym_AMP, - ACTIONS(7650), 1, - anon_sym_PIPE, - ACTIONS(7652), 1, - anon_sym_extends, - ACTIONS(5256), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [213832] = 3, + [213999] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6919), 2, - anon_sym_COMMA, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(7781), 2, anon_sym_RBRACE, - ACTIONS(4676), 4, - anon_sym_LPAREN, - anon_sym_COLON, - anon_sym_LT, - anon_sym_QMARK, - [213846] = 7, + anon_sym_PIPE_RBRACE, + ACTIONS(7778), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214015] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(7638), 1, anon_sym_AMP, - ACTIONS(7650), 1, + ACTIONS(7640), 1, anon_sym_PIPE, - ACTIONS(7652), 1, + ACTIONS(7642), 1, anon_sym_extends, - ACTIONS(7767), 1, + ACTIONS(7783), 1, anon_sym_COMMA, - ACTIONS(7769), 1, + ACTIONS(7785), 1, anon_sym_GT, - STATE(5104), 1, + STATE(5107), 1, aux_sym_implements_clause_repeat1, - [213868] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7771), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4567), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [213890] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7773), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4532), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [213912] = 7, + [214037] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(7766), 1, anon_sym_AMP, - ACTIONS(7650), 1, + ACTIONS(7768), 1, anon_sym_PIPE, - ACTIONS(7652), 1, + ACTIONS(7772), 1, anon_sym_extends, - ACTIONS(7775), 1, - anon_sym_COMMA, - ACTIONS(7777), 1, - anon_sym_GT, - STATE(5034), 1, - aux_sym_implements_clause_repeat1, - [213934] = 2, + ACTIONS(5183), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, + [214055] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3338), 6, + ACTIONS(7766), 1, + anon_sym_AMP, + ACTIONS(7768), 1, + anon_sym_PIPE, + ACTIONS(7772), 1, + anon_sym_extends, + ACTIONS(5922), 3, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_from, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [213946] = 5, + anon_sym_LBRACK, + [214073] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(7638), 1, anon_sym_AMP, - ACTIONS(7650), 1, + ACTIONS(7640), 1, anon_sym_PIPE, - ACTIONS(7652), 1, + ACTIONS(7642), 1, anon_sym_extends, - ACTIONS(5211), 3, + ACTIONS(5258), 3, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_GT, - [213964] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7779), 1, - anon_sym_EQ, - ACTIONS(4649), 5, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_QMARK, - [213978] = 4, + [214091] = 3, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4811), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7782), 3, + ACTIONS(7766), 1, + anon_sym_AMP, + ACTIONS(5918), 5, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [213994] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7648), 1, - anon_sym_AMP, - ACTIONS(5750), 5, - anon_sym_COMMA, anon_sym_LBRACK, - anon_sym_GT, anon_sym_PIPE, anon_sym_extends, - [214008] = 7, + [214105] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7787), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4603), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [214127] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, anon_sym_AMP, - ACTIONS(7650), 1, + ACTIONS(7640), 1, anon_sym_PIPE, - ACTIONS(7652), 1, + ACTIONS(7642), 1, anon_sym_extends, - ACTIONS(7784), 1, + ACTIONS(7789), 1, anon_sym_COMMA, - ACTIONS(7786), 1, + ACTIONS(7791), 1, anon_sym_GT, - STATE(5072), 1, + STATE(5009), 1, aux_sym_implements_clause_repeat1, - [214030] = 5, + [214149] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7622), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, - anon_sym_QMARK_COLON, - STATE(4563), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [214048] = 2, + ACTIONS(7626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7793), 1, + anon_sym_BQUOTE, + ACTIONS(7622), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4298), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [214167] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7540), 6, + STATE(4372), 1, + aux_sym_object_type_repeat1, + ACTIONS(7797), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7795), 3, sym__automatic_semicolon, - anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214060] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - ACTIONS(7622), 1, - anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, - anon_sym_QMARK_COLON, - STATE(4562), 3, - sym_omitting_type_annotation, - sym_opting_type_annotation, - sym_type_annotation, - [214078] = 5, + [214183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7640), 1, + ACTIONS(7626), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7788), 1, + ACTIONS(7799), 1, anon_sym_BQUOTE, - ACTIONS(7654), 2, + ACTIONS(7622), 2, sym__template_chars, sym_escape_sequence, - STATE(4307), 2, + STATE(4298), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [214096] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, - anon_sym_LBRACK, - ACTIONS(7790), 1, - sym_identifier, - STATE(4181), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [214114] = 7, + [214201] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7792), 1, + ACTIONS(7801), 1, sym_identifier, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5404), 1, - sym__call_signature, - [214136] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4437), 1, - anon_sym_COMMA, - ACTIONS(5785), 1, - anon_sym_LBRACE, - ACTIONS(5825), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(7794), 1, - anon_sym_LT, - STATE(4766), 1, - aux_sym_extends_clause_repeat1, - STATE(4960), 1, - sym_type_arguments, - [214158] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7796), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(5076), 1, + STATE(5399), 1, sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [214180] = 7, + [214223] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(7798), 1, + ACTIONS(7803), 1, anon_sym_export, - ACTIONS(7800), 1, + ACTIONS(7805), 1, anon_sym_class, - ACTIONS(7802), 1, + ACTIONS(7807), 1, anon_sym_abstract, - STATE(3790), 1, + STATE(3792), 1, aux_sym_export_statement_repeat1, STATE(3823), 1, sym_decorator, - [214202] = 7, + [214245] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7804), 1, - anon_sym_QMARK, - STATE(3972), 1, + ACTIONS(7809), 1, + sym_identifier, + STATE(4580), 1, sym_formal_parameters, - STATE(4261), 1, - sym__call_signature, - STATE(5416), 1, + STATE(5229), 1, sym_type_parameters, - [214224] = 7, + STATE(5334), 1, + sym__call_signature, + [214267] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7806), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4254), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [214246] = 7, + STATE(4373), 1, + aux_sym_object_type_repeat1, + ACTIONS(4775), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214283] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7808), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4246), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [214268] = 7, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(4775), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7811), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214299] = 4, + ACTIONS(3), 1, + sym_comment, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(4765), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7813), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214315] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7810), 1, + ACTIONS(7815), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4237), 1, + STATE(4944), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [214290] = 5, + [214337] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7812), 1, - anon_sym_default, - ACTIONS(7814), 1, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(7640), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_extends, + ACTIONS(7817), 1, + anon_sym_COMMA, + ACTIONS(7819), 1, + anon_sym_GT, + STATE(5025), 1, + aux_sym_implements_clause_repeat1, + [214359] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7536), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, anon_sym_RBRACE, - ACTIONS(7816), 1, - anon_sym_case, - STATE(4381), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [214308] = 7, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [214371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7818), 1, - sym_identifier, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5398), 1, - sym__call_signature, - [214330] = 7, + STATE(4395), 1, + aux_sym_object_type_repeat1, + ACTIONS(7823), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7821), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - ACTIONS(7820), 1, - sym_identifier, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5308), 1, - sym__call_signature, - [214352] = 5, + STATE(4311), 1, + aux_sym_object_type_repeat1, + ACTIONS(7827), 2, + anon_sym_RBRACE, + anon_sym_PIPE_RBRACE, + ACTIONS(7825), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214403] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7640), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(7824), 1, - anon_sym_BQUOTE, - ACTIONS(7822), 2, - sym__template_chars, - sym_escape_sequence, - STATE(4338), 2, - sym_template_substitution, - aux_sym_template_string_repeat1, - [214370] = 6, + ACTIONS(7829), 6, + sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [214415] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7628), 1, - sym_identifier, - ACTIONS(7826), 1, + ACTIONS(3264), 6, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7828), 1, anon_sym_RBRACE, - STATE(4978), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, - [214390] = 3, + anon_sym_from, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [214427] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(5750), 5, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + ACTIONS(7831), 1, + anon_sym_QMARK, + STATE(4580), 1, + sym_formal_parameters, + STATE(5221), 1, + sym__call_signature, + STATE(5229), 1, + sym_type_parameters, + [214449] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7833), 6, sym__automatic_semicolon, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_PIPE, - anon_sym_extends, - [214404] = 3, + anon_sym_PIPE_RBRACE, + [214461] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7390), 1, - anon_sym_is, - ACTIONS(4839), 5, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_AMP, - anon_sym_PIPE, - anon_sym_extends, - [214418] = 7, + ACTIONS(5766), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(5926), 1, + anon_sym_LBRACE, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(7835), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_arguments, + STATE(4784), 1, + aux_sym_extends_clause_repeat1, + [214483] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7830), 1, + ACTIONS(7837), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4220), 1, + STATE(4574), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [214440] = 4, + [214505] = 5, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4775), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7832), 3, - sym__automatic_semicolon, + ACTIONS(7839), 1, + anon_sym_LBRACE, + ACTIONS(7841), 1, + anon_sym_LT, + STATE(4881), 1, + sym_type_arguments, + ACTIONS(7636), 3, anon_sym_COMMA, - anon_sym_SEMI, - [214456] = 6, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [214523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7568), 1, + ACTIONS(7843), 1, anon_sym_EQ, - ACTIONS(7572), 1, + ACTIONS(4639), 5, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_QMARK, + [214537] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2962), 1, + anon_sym_LBRACE, + ACTIONS(6762), 1, + anon_sym_LBRACK, + ACTIONS(7846), 1, + sym_identifier, + STATE(4208), 3, + sym_object_pattern, + sym_array_pattern, + sym__destructuring_pattern, + [214555] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 1, anon_sym_COLON, - STATE(4858), 1, + ACTIONS(7618), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7620), 1, + anon_sym_QMARK_COLON, + STATE(4567), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, sym_type_annotation, - STATE(5455), 1, - sym__initializer, - ACTIONS(7834), 2, + [214573] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(7640), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_extends, + ACTIONS(7848), 1, anon_sym_COMMA, - anon_sym_RPAREN, - [214476] = 4, + ACTIONS(7850), 1, + anon_sym_GT, + STATE(5037), 1, + aux_sym_implements_clause_repeat1, + [214595] = 4, ACTIONS(3), 1, sym_comment, - STATE(4390), 1, + STATE(4418), 1, aux_sym_object_type_repeat1, - ACTIONS(7838), 2, + ACTIONS(7854), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7836), 3, + ACTIONS(7852), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214492] = 7, + [214611] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7856), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4556), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [214633] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7840), 1, + ACTIONS(7858), 1, sym_identifier, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5327), 1, + STATE(5408), 1, + sym__call_signature, + [214655] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7860), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(5066), 1, sym__call_signature, - [214514] = 4, + STATE(5259), 1, + sym_type_parameters, + [214677] = 4, ACTIONS(3), 1, sym_comment, - STATE(4419), 1, + STATE(4294), 1, aux_sym_object_type_repeat1, - ACTIONS(7844), 2, + ACTIONS(4803), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7842), 3, + ACTIONS(7862), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214530] = 5, + [214693] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7812), 1, - anon_sym_default, - ACTIONS(7816), 1, - anon_sym_case, - ACTIONS(7846), 1, + STATE(4357), 1, + aux_sym_object_type_repeat1, + ACTIONS(4803), 2, anon_sym_RBRACE, - STATE(4302), 3, - sym_switch_case, - sym_switch_default, - aux_sym_switch_body_repeat1, - [214548] = 2, + anon_sym_PIPE_RBRACE, + ACTIONS(7862), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [214709] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3226), 6, - sym__automatic_semicolon, + ACTIONS(7652), 1, + sym_identifier, + ACTIONS(7864), 1, anon_sym_COMMA, + ACTIONS(7866), 1, anon_sym_RBRACE, - anon_sym_from, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214560] = 7, + STATE(4931), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [214729] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7848), 1, + ACTIONS(7868), 1, sym_identifier, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5285), 1, + STATE(5399), 1, sym__call_signature, - [214582] = 7, + [214751] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7850), 1, - sym_identifier, - STATE(4541), 1, + ACTIONS(7870), 1, + anon_sym_QMARK, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5404), 1, + STATE(5180), 1, sym__call_signature, - [214604] = 7, + STATE(5229), 1, + sym_type_parameters, + [214773] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(7198), 1, + anon_sym_COLON, + ACTIONS(7618), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7620), 1, + anon_sym_QMARK_COLON, + STATE(4427), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [214791] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7872), 1, + anon_sym_BQUOTE, + ACTIONS(7622), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4298), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [214809] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7198), 1, + anon_sym_COLON, + ACTIONS(7618), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7620), 1, + anon_sym_QMARK_COLON, + STATE(4429), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [214827] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(7640), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_extends, + ACTIONS(7874), 1, + anon_sym_COMMA, + ACTIONS(7876), 1, + anon_sym_GT, + STATE(5075), 1, + aux_sym_implements_clause_repeat1, + [214849] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(7612), 1, + ACTIONS(7500), 1, sym_identifier, - STATE(1042), 1, + STATE(1044), 1, sym_nested_identifier, - STATE(1059), 1, + STATE(1056), 1, sym_string, - STATE(1094), 1, + STATE(1190), 1, sym__module, - [214626] = 5, + [214871] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, - anon_sym_LBRACK, - ACTIONS(7852), 1, - sym_identifier, - STATE(5349), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [214644] = 6, + ACTIONS(7198), 1, + anon_sym_COLON, + ACTIONS(7618), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7620), 1, + anon_sym_QMARK_COLON, + STATE(4430), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [214889] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7628), 1, + ACTIONS(7652), 1, sym_identifier, - ACTIONS(7854), 1, + ACTIONS(7878), 1, anon_sym_COMMA, - ACTIONS(7856), 1, + ACTIONS(7880), 1, anon_sym_RBRACE, - STATE(5001), 1, + STATE(4938), 1, sym__import_export_specifier, - ACTIONS(7630), 2, + ACTIONS(7654), 2, anon_sym_type, anon_sym_typeof, - [214664] = 7, + [214909] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(1688), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(1690), 1, anon_sym_SQUOTE, - ACTIONS(7612), 1, + ACTIONS(7500), 1, sym_identifier, - STATE(1042), 1, + STATE(1044), 1, sym_nested_identifier, - STATE(1059), 1, + STATE(1056), 1, sym_string, - STATE(1091), 1, + STATE(1209), 1, sym__module, - [214686] = 7, + [214931] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(7802), 1, + ACTIONS(7807), 1, anon_sym_abstract, - ACTIONS(7858), 1, + ACTIONS(7882), 1, anon_sym_export, - ACTIONS(7860), 1, + ACTIONS(7884), 1, anon_sym_class, - STATE(3790), 1, + STATE(3792), 1, aux_sym_export_statement_repeat1, STATE(3823), 1, sym_decorator, - [214708] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4773), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7862), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [214724] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4769), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [214740] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4352), 1, - aux_sym_object_type_repeat1, - ACTIONS(4773), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7862), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [214756] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7648), 1, - anon_sym_AMP, - ACTIONS(5761), 5, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - anon_sym_PIPE, - anon_sym_extends, - [214770] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - ACTIONS(5864), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - [214788] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4376), 1, - aux_sym_object_type_repeat1, - ACTIONS(4769), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7864), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [214804] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2952), 1, - anon_sym_LBRACE, - ACTIONS(6756), 1, - anon_sym_LBRACK, - ACTIONS(7866), 1, - sym_identifier, - STATE(5021), 3, - sym_object_pattern, - sym_array_pattern, - sym__destructuring_pattern, - [214822] = 7, + [214953] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7868), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(5133), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [214844] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7870), 1, + ACTIONS(7886), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4503), 1, + STATE(4437), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [214866] = 4, + [214975] = 7, ACTIONS(3), 1, sym_comment, - STATE(4296), 1, - aux_sym_object_type_repeat1, - ACTIONS(4777), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7872), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [214882] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7874), 1, + ACTIONS(7888), 1, anon_sym_QMARK, - STATE(4541), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(5212), 1, + STATE(4448), 1, sym__call_signature, - STATE(5219), 1, + STATE(5259), 1, sym_type_parameters, - [214904] = 5, + [214997] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - ACTIONS(5211), 3, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - [214922] = 3, + ACTIONS(7198), 1, + anon_sym_COLON, + ACTIONS(7618), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7620), 1, + anon_sym_QMARK_COLON, + STATE(4460), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [215015] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7384), 1, - anon_sym_is, - ACTIONS(4839), 5, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7766), 1, anon_sym_AMP, + ACTIONS(7768), 1, anon_sym_PIPE, + ACTIONS(7772), 1, anon_sym_extends, - [214936] = 7, + ACTIONS(5997), 3, + sym__automatic_semicolon, + anon_sym_SEMI, + anon_sym_LBRACK, + [215033] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7876), 1, + ACTIONS(7890), 1, sym_identifier, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5398), 1, + STATE(5312), 1, sym__call_signature, - [214958] = 2, + [215055] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7878), 6, - sym__automatic_semicolon, - anon_sym_LBRACE, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [214970] = 4, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + ACTIONS(7892), 1, + anon_sym_QMARK, + STATE(3985), 1, + sym_formal_parameters, + STATE(4462), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [215077] = 4, ACTIONS(3), 1, sym_comment, - STATE(4391), 1, + STATE(4357), 1, aux_sym_object_type_repeat1, - ACTIONS(7882), 2, + ACTIONS(4763), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7880), 3, + ACTIONS(7894), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [214986] = 7, + [215093] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7626), 1, + anon_sym_DOLLAR_LBRACE, + ACTIONS(7898), 1, + anon_sym_BQUOTE, + ACTIONS(7896), 2, + sym__template_chars, + sym_escape_sequence, + STATE(4367), 2, + sym_template_substitution, + aux_sym_template_string_repeat1, + [215111] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(7640), 1, + anon_sym_PIPE, + ACTIONS(5977), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_GT, + anon_sym_extends, + [215127] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7884), 1, + ACTIONS(7900), 1, anon_sym_QMARK, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4545), 1, + STATE(4469), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [215008] = 4, + [215149] = 4, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, + STATE(4357), 1, aux_sym_object_type_repeat1, - ACTIONS(4777), 2, + ACTIONS(4767), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7872), 3, + ACTIONS(7902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215024] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(5870), 4, - sym__automatic_semicolon, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_extends, - [215040] = 4, + [215165] = 4, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, + STATE(4414), 1, aux_sym_object_type_repeat1, - ACTIONS(4771), 2, + ACTIONS(4767), 2, anon_sym_RBRACE, anon_sym_PIPE_RBRACE, - ACTIONS(7886), 3, + ACTIONS(7902), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215056] = 7, + [215181] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(7638), 1, anon_sym_AMP, - ACTIONS(7650), 1, + ACTIONS(7640), 1, anon_sym_PIPE, - ACTIONS(7652), 1, + ACTIONS(7642), 1, anon_sym_extends, - ACTIONS(7888), 1, + ACTIONS(7904), 1, anon_sym_COMMA, - ACTIONS(7890), 1, + ACTIONS(7906), 1, anon_sym_GT, - STATE(5124), 1, + STATE(5024), 1, aux_sym_implements_clause_repeat1, - [215078] = 5, + [215203] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7640), 1, + ACTIONS(7626), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(7894), 1, + ACTIONS(7910), 1, anon_sym_BQUOTE, - ACTIONS(7892), 2, + ACTIONS(7908), 2, sym__template_chars, sym_escape_sequence, - STATE(4286), 2, + STATE(4400), 2, sym_template_substitution, aux_sym_template_string_repeat1, - [215096] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7648), 1, - anon_sym_AMP, - ACTIONS(7650), 1, - anon_sym_PIPE, - ACTIONS(7652), 1, - anon_sym_extends, - ACTIONS(5767), 3, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_GT, - [215114] = 7, + [215221] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - ACTIONS(7896), 1, - anon_sym_QMARK, - STATE(3972), 1, - sym_formal_parameters, - STATE(4553), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [215136] = 5, + ACTIONS(7198), 1, + anon_sym_COLON, + ACTIONS(7618), 1, + anon_sym_DASH_QMARK_COLON, + ACTIONS(7620), 1, + anon_sym_QMARK_COLON, + STATE(4471), 3, + sym_omitting_type_annotation, + sym_opting_type_annotation, + sym_type_annotation, + [215239] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7202), 1, + ACTIONS(7198), 1, anon_sym_COLON, - ACTIONS(7622), 1, + ACTIONS(7618), 1, anon_sym_DASH_QMARK_COLON, - ACTIONS(7624), 1, + ACTIONS(7620), 1, anon_sym_QMARK_COLON, - STATE(4548), 3, + STATE(4472), 3, sym_omitting_type_annotation, sym_opting_type_annotation, sym_type_annotation, - [215154] = 7, + [215257] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - ACTIONS(7898), 1, - sym_identifier, - STATE(4541), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(5166), 1, + STATE(4474), 1, sym__call_signature, - STATE(5219), 1, + STATE(5259), 1, sym_type_parameters, - [215176] = 5, + [215276] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7478), 1, + ACTIONS(7638), 1, anon_sym_AMP, - ACTIONS(7480), 1, + ACTIONS(7640), 1, anon_sym_PIPE, - ACTIONS(7482), 1, + ACTIONS(7642), 1, anon_sym_extends, - ACTIONS(7900), 3, - anon_sym_EQ, + ACTIONS(7912), 2, anon_sym_COMMA, anon_sym_GT, - [215194] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4409), 1, - aux_sym_object_type_repeat1, - ACTIONS(4807), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7902), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [215210] = 7, + [215293] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - ACTIONS(7904), 1, - sym_identifier, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5324), 1, + STATE(5165), 1, sym__call_signature, - [215232] = 4, + STATE(5229), 1, + sym_type_parameters, + [215312] = 2, ACTIONS(3), 1, sym_comment, - STATE(4332), 1, - aux_sym_object_type_repeat1, - ACTIONS(4807), 2, - anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7902), 3, + ACTIONS(7914), 5, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_SEMI, - [215248] = 4, - ACTIONS(3), 1, - sym_comment, - STATE(4407), 1, - aux_sym_object_type_repeat1, - ACTIONS(7908), 2, anon_sym_RBRACE, - anon_sym_PIPE_RBRACE, - ACTIONS(7906), 3, - sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [215264] = 6, + anon_sym_PIPE_RBRACE, + [215323] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4591), 1, + STATE(4132), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [215283] = 4, + [215342] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5120), 1, - sym__initializer, - ACTIONS(7910), 3, + ACTIONS(7916), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [215298] = 4, + anon_sym_PIPE_RBRACE, + [215353] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 1, - anon_sym_EQ_GT, - ACTIONS(7912), 1, - anon_sym_COLON, - STATE(5267), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [215313] = 6, + ACTIONS(7918), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215364] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(7802), 1, - anon_sym_abstract, - ACTIONS(7914), 1, - anon_sym_class, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - [215332] = 6, + ACTIONS(7452), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215375] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7916), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4457), 1, + STATE(4147), 1, sym__call_signature, - STATE(5204), 1, + STATE(5259), 1, sym_type_parameters, - [215351] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(7918), 1, - anon_sym_EQ_GT, - STATE(5267), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [215366] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7339), 1, - anon_sym_EQ_GT, - ACTIONS(7912), 1, - anon_sym_COLON, - STATE(5418), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [215381] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(7802), 1, - anon_sym_abstract, - ACTIONS(7860), 1, - anon_sym_class, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - [215400] = 6, + [215394] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4263), 1, + STATE(4141), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [215419] = 6, + [215413] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4260), 1, + STATE(4139), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [215438] = 6, + [215432] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4253), 1, + STATE(4456), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [215457] = 4, + [215451] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, + ACTIONS(7920), 1, anon_sym_COLON, - ACTIONS(7921), 1, + ACTIONS(7922), 1, anon_sym_EQ_GT, - STATE(5267), 3, + STATE(5252), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [215472] = 4, + [215466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(7924), 1, - anon_sym_EQ_GT, - STATE(5418), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [215487] = 6, + ACTIONS(7466), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215477] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4243), 1, + STATE(4163), 1, sym__call_signature, - STATE(5416), 1, + STATE(5259), 1, sym_type_parameters, - [215506] = 6, + [215496] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7916), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4468), 1, + STATE(5132), 1, sym__call_signature, - STATE(5204), 1, + STATE(5259), 1, sym_type_parameters, - [215525] = 6, + [215515] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5435), 1, + STATE(5384), 1, sym__call_signature, - [215544] = 4, + [215534] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, + ACTIONS(7925), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215545] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, anon_sym_COLON, ACTIONS(7927), 1, anon_sym_EQ_GT, - STATE(5418), 3, + STATE(5252), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [215559] = 6, + [215560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - STATE(4236), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [215578] = 6, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(7930), 1, + anon_sym_EQ_GT, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [215575] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3741), 1, + sym_statement_block, + ACTIONS(7452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [215590] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5440), 1, + STATE(4464), 1, sym__call_signature, - [215597] = 6, + STATE(5259), 1, + sym_type_parameters, + [215609] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5209), 1, - sym__call_signature, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - [215616] = 6, + STATE(5364), 1, + sym__call_signature, + [215628] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, + ACTIONS(7920), 1, anon_sym_COLON, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6694), 1, - anon_sym_COMMA, - ACTIONS(7930), 1, - anon_sym_RBRACE, - STATE(4913), 1, - aux_sym_object_pattern_repeat1, - [215635] = 4, + ACTIONS(7935), 1, + anon_sym_EQ_GT, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [215643] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(4972), 1, - sym__initializer, - ACTIONS(7932), 3, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3742), 1, + sym_statement_block, + ACTIONS(7466), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [215650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7370), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [215661] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5236), 1, - sym__call_signature, - [215680] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7934), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [215691] = 2, + [215658] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7934), 5, + ACTIONS(7164), 1, anon_sym_EQ, + STATE(5125), 1, + sym__initializer, + ACTIONS(7938), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [215702] = 6, + anon_sym_SEMI, + [215673] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5239), 1, + STATE(5356), 1, sym__call_signature, - [215721] = 6, + [215692] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5241), 1, + STATE(5355), 1, sym__call_signature, - [215740] = 6, + [215711] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7916), 1, + ACTIONS(7940), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(4078), 1, sym_formal_parameters, - STATE(4707), 1, + STATE(4665), 1, sym__call_signature, - STATE(5204), 1, + STATE(5396), 1, sym_type_parameters, - [215759] = 2, + [215730] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7936), 5, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(5122), 1, + sym__initializer, + ACTIONS(7942), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [215770] = 2, + [215745] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7938), 5, - anon_sym_EQ, + ACTIONS(7933), 1, anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [215781] = 5, + STATE(3747), 1, + sym_statement_block, + ACTIONS(7452), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [215760] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(7392), 2, + ACTIONS(7379), 2, anon_sym_LBRACE, anon_sym_RPAREN, - [215798] = 6, + [215777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7916), 1, - anon_sym_LPAREN, - STATE(4111), 1, - sym_formal_parameters, - STATE(4488), 1, - sym__call_signature, - STATE(5204), 1, - sym_type_parameters, - [215817] = 6, + ACTIONS(7468), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215788] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5277), 1, + STATE(5329), 1, sym__call_signature, - [215836] = 6, + [215807] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7916), 1, + ACTIONS(7940), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(4078), 1, sym_formal_parameters, - STATE(4700), 1, + STATE(4653), 1, sym__call_signature, - STATE(5204), 1, - sym_type_parameters, - [215855] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, STATE(5396), 1, - sym__call_signature, - [215874] = 6, + sym_type_parameters, + [215826] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 1, - anon_sym_LBRACE, - ACTIONS(7940), 1, - anon_sym_SEMI, - ACTIONS(7942), 1, + ACTIONS(7944), 5, sym__automatic_semicolon, - ACTIONS(7944), 1, - sym__function_signature_automatic_semicolon, - STATE(164), 1, - sym_statement_block, - [215893] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1878), 1, - anon_sym_LBRACE, - ACTIONS(7546), 1, - anon_sym_extends, - STATE(1075), 1, - sym_object_type, - STATE(5005), 1, - sym_extends_clause, - [215912] = 4, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(7946), 1, - anon_sym_EQ_GT, - STATE(5267), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [215927] = 6, + ACTIONS(7946), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215848] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5288), 1, + STATE(4473), 1, sym__call_signature, - [215946] = 5, + STATE(5259), 1, + sym_type_parameters, + [215867] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7628), 1, - sym_identifier, - ACTIONS(7949), 1, + ACTIONS(7470), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(5378), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, - [215963] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [215878] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7916), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(4697), 1, - sym__call_signature, - STATE(5204), 1, + STATE(5229), 1, sym_type_parameters, - [215982] = 6, + STATE(5337), 1, + sym__call_signature, + [215897] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3744), 1, + sym_statement_block, + ACTIONS(7468), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [215912] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7916), 1, + ACTIONS(7940), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(4078), 1, sym_formal_parameters, - STATE(4494), 1, + STATE(4644), 1, sym__call_signature, - STATE(5204), 1, + STATE(5396), 1, sym_type_parameters, - [216001] = 6, + [215931] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(5117), 1, + sym__initializer, + ACTIONS(7948), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [215946] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(93), 1, anon_sym_AT, - ACTIONS(7800), 1, + ACTIONS(7805), 1, anon_sym_class, - ACTIONS(7802), 1, + ACTIONS(7807), 1, anon_sym_abstract, - STATE(3790), 1, + STATE(3792), 1, aux_sym_export_statement_repeat1, STATE(3823), 1, sym_decorator, - [216020] = 4, + [215965] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7339), 1, + ACTIONS(7331), 1, anon_sym_LBRACE, - ACTIONS(7951), 1, + ACTIONS(7950), 1, anon_sym_COLON, - STATE(5418), 3, + STATE(5413), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [216035] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5372), 1, - sym__call_signature, - [216054] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7916), 1, - anon_sym_LPAREN, - STATE(4111), 1, - sym_formal_parameters, - STATE(4689), 1, - sym__call_signature, - STATE(5204), 1, - sym_type_parameters, - [216073] = 6, + [215980] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, + ACTIONS(7933), 1, anon_sym_LBRACE, - ACTIONS(7940), 1, - anon_sym_SEMI, - ACTIONS(7942), 1, - sym__automatic_semicolon, - ACTIONS(7944), 1, - sym__function_signature_automatic_semicolon, - STATE(1069), 1, + STATE(3745), 1, sym_statement_block, - [216092] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - ACTIONS(7953), 2, + ACTIONS(7470), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [216109] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5369), 1, - sym__call_signature, - [216128] = 6, + [215995] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7940), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4078), 1, sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5362), 1, + STATE(4630), 1, sym__call_signature, - [216147] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, + STATE(5396), 1, sym_type_parameters, - STATE(5361), 1, - sym__call_signature, - [216166] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7628), 1, - sym_identifier, - ACTIONS(7955), 1, - anon_sym_RBRACE, - STATE(5358), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, - [216183] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7957), 5, - anon_sym_EQ, - anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [216194] = 2, + [216014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 5, - anon_sym_EQ, + ACTIONS(7952), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [216205] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216025] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 5, - anon_sym_EQ, + ACTIONS(7954), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [216216] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216036] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 5, - anon_sym_EQ, + ACTIONS(7444), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [216227] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216047] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7959), 5, - anon_sym_EQ, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3746), 1, + sym_statement_block, + ACTIONS(7444), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [216238] = 2, + anon_sym_SEMI, + [216062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7494), 5, + ACTIONS(1994), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216249] = 2, + [216073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7961), 5, + ACTIONS(3152), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216260] = 4, + [216084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, - anon_sym_COLON, - STATE(5430), 1, - sym_type_annotation, - ACTIONS(4649), 3, - anon_sym_EQ, + ACTIONS(1994), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACK, - [216275] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216095] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(7502), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7504), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(7963), 2, - anon_sym_COMMA, + ACTIONS(5922), 2, + anon_sym_LBRACK, anon_sym_RBRACK, - [216292] = 5, + [216112] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(7650), 1, + ACTIONS(5918), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_PIPE, - ACTIONS(7652), 1, anon_sym_extends, - ACTIONS(7965), 2, - anon_sym_COMMA, - anon_sym_GT, - [216309] = 5, + [216125] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7648), 1, - anon_sym_AMP, - ACTIONS(7650), 1, - anon_sym_PIPE, - ACTIONS(7652), 1, - anon_sym_extends, - ACTIONS(7967), 2, + ACTIONS(3460), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_GT, - [216326] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7969), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [216337] = 4, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216136] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3746), 1, - sym_statement_block, - ACTIONS(7494), 3, + ACTIONS(3424), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216352] = 6, + anon_sym_PIPE_RBRACE, + [216147] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5261), 1, - sym__call_signature, - [216371] = 6, + ACTIONS(3128), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216158] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 1, - anon_sym_LBRACE, - ACTIONS(7973), 1, - anon_sym_SEMI, - ACTIONS(7975), 1, + ACTIONS(3312), 5, sym__automatic_semicolon, - ACTIONS(7977), 1, - sym__function_signature_automatic_semicolon, - STATE(162), 1, - sym_statement_block, - [216390] = 6, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216169] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7568), 1, - anon_sym_EQ, - ACTIONS(7979), 1, + ACTIONS(7452), 5, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(7981), 1, anon_sym_RBRACE, - STATE(5040), 1, - aux_sym_enum_body_repeat1, - STATE(5310), 1, - sym__initializer, - [216409] = 4, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216180] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(7983), 1, + ACTIONS(7319), 1, anon_sym_EQ_GT, - STATE(5267), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [216424] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7912), 1, + ACTIONS(7920), 1, anon_sym_COLON, - ACTIONS(7986), 1, - anon_sym_EQ_GT, - STATE(5418), 3, + STATE(5252), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [216439] = 5, + [216195] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7628), 1, - sym_identifier, - ACTIONS(7989), 1, + ACTIONS(3452), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(5378), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, - [216456] = 6, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216206] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5302), 1, - sym__call_signature, - [216475] = 6, + ACTIONS(3444), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216217] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, - anon_sym_LBRACE, - ACTIONS(7973), 1, + ACTIONS(3156), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - ACTIONS(7975), 1, + anon_sym_PIPE_RBRACE, + [216228] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3304), 5, sym__automatic_semicolon, - ACTIONS(7977), 1, - sym__function_signature_automatic_semicolon, - STATE(1062), 1, - sym_statement_block, - [216494] = 5, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216239] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - ACTIONS(7991), 2, + ACTIONS(3360), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216511] = 6, + anon_sym_PIPE_RBRACE, + [216250] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5299), 1, - sym__call_signature, - [216530] = 6, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(7807), 1, + anon_sym_abstract, + ACTIONS(7962), 1, + anon_sym_class, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [216269] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5295), 1, - sym__call_signature, - [216549] = 4, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(7964), 1, + anon_sym_EQ_GT, + STATE(5252), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [216284] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5037), 1, - sym__initializer, - ACTIONS(7993), 3, + ACTIONS(3132), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216564] = 5, + anon_sym_PIPE_RBRACE, + [216295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7628), 1, - sym_identifier, - ACTIONS(7995), 1, + ACTIONS(3132), 5, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_RBRACE, - STATE(5358), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, - [216581] = 2, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216306] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7997), 5, - anon_sym_EQ, + ACTIONS(3136), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [216592] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216317] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7997), 5, - anon_sym_EQ, + ACTIONS(3140), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_COLON, - anon_sym_QMARK, - [216603] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - STATE(4521), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [216622] = 2, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 5, + ACTIONS(2010), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216633] = 2, + [216339] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7592), 5, + ACTIONS(3132), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216644] = 2, + [216350] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7550), 5, + ACTIONS(3132), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216655] = 2, + [216361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7999), 5, + ACTIONS(3132), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216666] = 2, + [216372] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7745), 5, + ACTIONS(3132), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216677] = 2, + [216383] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7552), 5, + ACTIONS(3204), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216688] = 2, + [216394] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8001), 5, + ACTIONS(3208), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216699] = 2, + [216405] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8003), 5, - anon_sym_EQ, - anon_sym_LBRACE, - anon_sym_LPAREN, - anon_sym_implements, - anon_sym_extends, - [216710] = 6, + ACTIONS(3216), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(7841), 1, anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - STATE(4530), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [216729] = 4, + ACTIONS(7967), 1, + anon_sym_LBRACE, + STATE(4919), 1, + sym_type_arguments, + ACTIONS(7969), 2, + anon_sym_COMMA, + anon_sym_LBRACE_PIPE, + [216433] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3728), 1, - sym_statement_block, - ACTIONS(7550), 3, + ACTIONS(3324), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216744] = 4, + anon_sym_PIPE_RBRACE, + [216444] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3756), 1, - sym_statement_block, - ACTIONS(7550), 3, + ACTIONS(3324), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216759] = 4, + anon_sym_PIPE_RBRACE, + [216455] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5074), 1, - sym__initializer, - ACTIONS(8005), 3, + ACTIONS(3324), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216774] = 4, + anon_sym_PIPE_RBRACE, + [216466] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5081), 1, - sym__initializer, - ACTIONS(8007), 3, + ACTIONS(3296), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216789] = 4, + anon_sym_PIPE_RBRACE, + [216477] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3735), 1, - sym_statement_block, - ACTIONS(7552), 3, + ACTIONS(3292), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [216804] = 4, + anon_sym_PIPE_RBRACE, + [216488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - STATE(3859), 1, - sym_type_arguments, - ACTIONS(6077), 3, - anon_sym_LBRACE, + ACTIONS(3272), 5, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_implements, - [216819] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8009), 1, - anon_sym_EQ_GT, - STATE(5418), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [216834] = 5, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216499] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8014), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8016), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(5864), 2, + ACTIONS(5997), 2, anon_sym_LBRACK, - anon_sym_EQ_GT, - [216851] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5224), 1, - sym__call_signature, - [216870] = 2, + anon_sym_RBRACK, + [216516] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7580), 5, + ACTIONS(3220), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216881] = 2, + [216527] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8018), 5, + ACTIONS(3404), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216892] = 6, + [216538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - STATE(4543), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [216911] = 2, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(5922), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + [216555] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(5918), 4, + anon_sym_LBRACK, + anon_sym_QMARK, + anon_sym_PIPE, + anon_sym_extends, + [216568] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3733), 1, + sym_statement_block, + ACTIONS(7442), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [216583] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(7977), 1, + anon_sym_EQ_GT, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [216598] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7582), 5, + ACTIONS(3428), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216922] = 2, + [216609] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8020), 5, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(5137), 1, + sym__initializer, + ACTIONS(7980), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [216624] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3320), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216933] = 2, + [216635] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7582), 5, + ACTIONS(2119), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216944] = 2, + [216646] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8022), 5, + ACTIONS(2141), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216955] = 2, + [216657] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7580), 5, + ACTIONS(2069), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216966] = 2, + [216668] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8024), 5, + ACTIONS(3376), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [216977] = 4, + [216679] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(7933), 1, anon_sym_LBRACE, - STATE(3751), 1, + STATE(3734), 1, sym_statement_block, - ACTIONS(7580), 3, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [216992] = 6, + [216694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - STATE(4551), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [217011] = 4, + ACTIONS(3416), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216705] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3738), 1, - sym_statement_block, - ACTIONS(7582), 3, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(5141), 1, + sym__initializer, + ACTIONS(7982), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [217026] = 4, + [216720] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3739), 1, - sym_statement_block, - ACTIONS(7582), 3, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(7984), 1, + anon_sym_EQ_GT, + STATE(5252), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [216735] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3124), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217041] = 4, + anon_sym_PIPE_RBRACE, + [216746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5113), 1, - sym__initializer, - ACTIONS(8026), 3, + ACTIONS(3124), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217056] = 6, + anon_sym_PIPE_RBRACE, + [216757] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5293), 1, - sym__call_signature, - [217075] = 4, + ACTIONS(3124), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216768] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3741), 1, - sym_statement_block, - ACTIONS(7580), 3, + ACTIONS(3364), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217090] = 6, + anon_sym_PIPE_RBRACE, + [216779] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5219), 1, - sym_type_parameters, - STATE(5320), 1, - sym__call_signature, - [217109] = 6, + ACTIONS(3372), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216790] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - STATE(5123), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [217128] = 5, + ACTIONS(3380), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - ACTIONS(8028), 2, + ACTIONS(3384), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217145] = 6, + anon_sym_PIPE_RBRACE, + [216812] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8030), 1, - anon_sym_class, - ACTIONS(8032), 1, - anon_sym_abstract, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - [217164] = 4, + ACTIONS(3392), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7293), 1, - anon_sym_LBRACE, - ACTIONS(7951), 1, + ACTIONS(7920), 1, anon_sym_COLON, - STATE(5267), 3, + ACTIONS(7987), 1, + anon_sym_EQ_GT, + STATE(5413), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [217179] = 6, + [216838] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5184), 1, - sym__call_signature, - STATE(5219), 1, - sym_type_parameters, - [217198] = 2, + ACTIONS(3448), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [216849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7590), 5, + ACTIONS(3448), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217209] = 6, + [216860] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7940), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(4078), 1, sym_formal_parameters, - STATE(4565), 1, + STATE(4685), 1, sym__call_signature, - STATE(5416), 1, + STATE(5396), 1, sym_type_parameters, - [217228] = 2, + [216879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 5, + ACTIONS(3464), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217239] = 2, + [216890] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7590), 5, + ACTIONS(2151), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217250] = 2, + [216901] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8034), 5, + ACTIONS(2181), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217261] = 2, + [216912] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8036), 5, + ACTIONS(2195), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217272] = 2, + [216923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7594), 5, + ACTIONS(3432), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217283] = 2, + [216934] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8038), 5, + ACTIONS(3168), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217294] = 4, + [216945] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3752), 1, - sym_statement_block, - ACTIONS(7590), 3, + ACTIONS(7331), 1, + anon_sym_EQ_GT, + ACTIONS(7920), 1, + anon_sym_COLON, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [216960] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3176), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217309] = 6, + anon_sym_PIPE_RBRACE, + [216971] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - STATE(4569), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [217328] = 4, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(7807), 1, + anon_sym_abstract, + ACTIONS(7884), 1, + anon_sym_class, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [216990] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3749), 1, - sym_statement_block, - ACTIONS(7594), 3, + ACTIONS(3188), 5, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [217001] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3200), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217343] = 4, + anon_sym_PIPE_RBRACE, + [217012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5002), 1, - sym__initializer, - ACTIONS(8040), 3, + ACTIONS(3240), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217358] = 4, + anon_sym_PIPE_RBRACE, + [217023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3748), 1, - sym_statement_block, - ACTIONS(7590), 3, + ACTIONS(3244), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217373] = 4, + anon_sym_PIPE_RBRACE, + [217034] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5147), 1, - sym__initializer, - ACTIONS(8042), 3, + ACTIONS(2053), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217388] = 4, + anon_sym_PIPE_RBRACE, + [217045] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(7933), 1, anon_sym_LBRACE, - STATE(3754), 1, + STATE(3740), 1, sym_statement_block, - ACTIONS(7594), 3, + ACTIONS(7442), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [217403] = 6, + [217060] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7940), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(4078), 1, sym_formal_parameters, - STATE(5139), 1, + STATE(4710), 1, sym__call_signature, - STATE(5416), 1, + STATE(5396), 1, sym_type_parameters, - [217422] = 6, + [217079] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7916), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(3985), 1, sym_formal_parameters, - STATE(4723), 1, + STATE(4444), 1, sym__call_signature, - STATE(5204), 1, + STATE(5259), 1, sym_type_parameters, - [217441] = 4, + [217098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5117), 1, - sym__initializer, - ACTIONS(8044), 3, + ACTIONS(3388), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217456] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4541), 1, - sym_formal_parameters, - STATE(5162), 1, - sym__call_signature, - STATE(5219), 1, - sym_type_parameters, - [217475] = 2, + anon_sym_PIPE_RBRACE, + [217109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8046), 5, + ACTIONS(3400), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217486] = 2, + [217120] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8048), 5, + ACTIONS(3408), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217497] = 2, + [217131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8050), 5, + ACTIONS(3420), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217508] = 2, + [217142] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7596), 5, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3738), 1, + sym_statement_block, + ACTIONS(7446), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [217519] = 6, + [217157] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(3972), 1, - sym_formal_parameters, - STATE(4575), 1, - sym__call_signature, - STATE(5416), 1, - sym_type_parameters, - [217538] = 2, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(5997), 2, + anon_sym_LBRACK, + anon_sym_QMARK, + [217174] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7598), 5, + ACTIONS(7990), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217549] = 2, + [217185] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8052), 5, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217560] = 4, + [217196] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3740), 1, - sym_statement_block, - ACTIONS(7596), 3, + ACTIONS(7992), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, + anon_sym_SEMI, + anon_sym_PIPE_RBRACE, + [217207] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7616), 5, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [217575] = 6, + anon_sym_COLON, + [217218] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7940), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(4078), 1, sym_formal_parameters, - STATE(4582), 1, + STATE(4727), 1, sym__call_signature, - STATE(5416), 1, + STATE(5396), 1, sym_type_parameters, - [217594] = 4, + [217237] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(6155), 1, anon_sym_LBRACE, - STATE(3742), 1, - sym_statement_block, - ACTIONS(7598), 3, - sym__automatic_semicolon, + ACTIONS(7835), 1, + anon_sym_LPAREN, + STATE(4505), 1, + sym_arguments, + ACTIONS(6133), 2, anon_sym_COMMA, - anon_sym_SEMI, - [217609] = 4, + anon_sym_LBRACE_PIPE, + [217254] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5129), 1, - sym__initializer, - ACTIONS(8054), 3, + ACTIONS(7994), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217624] = 4, + anon_sym_PIPE_RBRACE, + [217265] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7162), 1, - anon_sym_EQ, - STATE(5126), 1, - sym__initializer, - ACTIONS(8056), 3, + ACTIONS(7570), 5, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [217639] = 4, + anon_sym_COLON, + [217276] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3755), 1, - sym_statement_block, - ACTIONS(7596), 3, + ACTIONS(7446), 5, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [217654] = 2, + anon_sym_PIPE_RBRACE, + [217287] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7602), 5, + ACTIONS(7442), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217665] = 6, + [217298] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8032), 1, - anon_sym_abstract, - ACTIONS(8058), 1, - anon_sym_class, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - [217684] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5437), 1, + sym__call_signature, + [217317] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8060), 5, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + STATE(3985), 1, + sym_formal_parameters, + STATE(4431), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [217336] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7546), 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, - [217695] = 2, + anon_sym_COLON, + [217347] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8062), 5, + ACTIONS(7446), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217706] = 6, + [217358] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5153), 1, + STATE(5186), 1, sym__call_signature, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - [217725] = 6, + [217377] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7319), 1, + anon_sym_LBRACE, + ACTIONS(7950), 1, + anon_sym_COLON, + STATE(5252), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [217392] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(3582), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(3972), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(4589), 1, - sym__call_signature, - STATE(5416), 1, + STATE(5229), 1, sym_type_parameters, - [217744] = 2, + STATE(5448), 1, + sym__call_signature, + [217411] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(7996), 1, + anon_sym_class, + ACTIONS(7998), 1, + anon_sym_abstract, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [217430] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7604), 5, + ACTIONS(7524), 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, - [217755] = 4, + anon_sym_COLON, + [217441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3744), 1, - sym_statement_block, - ACTIONS(7602), 3, + ACTIONS(7266), 1, + anon_sym_is, + ACTIONS(7536), 4, sym__automatic_semicolon, - anon_sym_COMMA, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, anon_sym_SEMI, - [217770] = 4, + [217454] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, - anon_sym_LBRACE, - STATE(3745), 1, - sym_statement_block, - ACTIONS(7604), 3, + ACTIONS(7766), 1, + anon_sym_AMP, + ACTIONS(7768), 1, + anon_sym_PIPE, + ACTIONS(7772), 1, + anon_sym_extends, + ACTIONS(8000), 2, sym__automatic_semicolon, - anon_sym_COMMA, anon_sym_SEMI, - [217785] = 4, + [217471] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(7998), 1, + anon_sym_abstract, + ACTIONS(8002), 1, + anon_sym_class, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [217490] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(5870), 3, + ACTIONS(5977), 3, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_extends, - [217800] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8068), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [217811] = 2, + [217505] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8070), 5, + ACTIONS(2020), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217822] = 6, + [217516] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7916), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4111), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(4722), 1, - sym__call_signature, - STATE(5204), 1, + STATE(5229), 1, sym_type_parameters, - [217841] = 5, + STATE(5466), 1, + sym__call_signature, + [217535] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(5256), 2, + ACTIONS(5258), 2, anon_sym_LBRACK, anon_sym_QMARK, - [217858] = 2, + [217552] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7606), 5, + ACTIONS(2006), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [217869] = 6, + [217563] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + STATE(3985), 1, + sym_formal_parameters, + STATE(5058), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [217582] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5197), 1, + STATE(5171), 1, sym__call_signature, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - [217888] = 4, + [217601] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7971), 1, + ACTIONS(7933), 1, anon_sym_LBRACE, - STATE(3753), 1, + STATE(3732), 1, sym_statement_block, - ACTIONS(7606), 3, + ACTIONS(7460), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [217616] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(5050), 1, + sym__initializer, + ACTIONS(8004), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [217903] = 3, + [217631] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(5750), 4, + ACTIONS(5967), 4, anon_sym_LBRACK, anon_sym_QMARK, anon_sym_PIPE, anon_sym_extends, - [217916] = 5, + [217644] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7940), 1, + anon_sym_LPAREN, + STATE(4078), 1, + sym_formal_parameters, + STATE(4722), 1, + sym__call_signature, + STATE(5396), 1, + sym_type_parameters, + [217663] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(5211), 2, + ACTIONS(5183), 2, anon_sym_LBRACK, anon_sym_QMARK, - [217933] = 2, + [217680] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5168), 1, + sym__call_signature, + STATE(5229), 1, + sym_type_parameters, + [217699] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5451), 1, + sym__call_signature, + [217718] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 5, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(5048), 1, + sym__initializer, + ACTIONS(8006), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [217944] = 2, + [217733] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3442), 5, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3736), 1, + sym_statement_block, + ACTIONS(7484), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [217955] = 2, + [217748] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2056), 5, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3731), 1, + sym_statement_block, + ACTIONS(7484), 3, sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [217763] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4666), 1, + anon_sym_COLON, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6706), 1, + anon_sym_COMMA, + ACTIONS(8008), 1, anon_sym_RBRACE, + STATE(5008), 1, + aux_sym_object_pattern_repeat1, + [217782] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + STATE(3985), 1, + sym_formal_parameters, + STATE(4563), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [217801] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3728), 1, + sym_statement_block, + ACTIONS(7460), 3, + sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [217966] = 5, + [217816] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(8010), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(8012), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8014), 1, anon_sym_extends, - ACTIONS(5767), 2, + ACTIONS(5922), 2, anon_sym_LBRACK, - anon_sym_RBRACK, - [217983] = 3, + anon_sym_EQ_GT, + [217833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(8010), 1, anon_sym_AMP, - ACTIONS(5761), 4, + ACTIONS(5918), 4, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_extends, - [217996] = 2, + [217846] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3202), 5, + ACTIONS(8016), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218007] = 2, + [217857] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3206), 5, - sym__automatic_semicolon, + ACTIONS(4666), 1, + anon_sym_COLON, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(6706), 1, anon_sym_COMMA, + ACTIONS(8018), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218018] = 6, + STATE(5039), 1, + aux_sym_object_pattern_repeat1, + [217876] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5253), 1, + STATE(5430), 1, sym__call_signature, - [218037] = 6, + [217895] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5312), 1, + STATE(5426), 1, sym__call_signature, - [218056] = 2, + [217914] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3426), 5, + ACTIONS(7460), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218067] = 6, + [217925] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5265), 1, + STATE(5458), 1, sym__call_signature, - [218086] = 2, + [217944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3254), 5, + ACTIONS(8020), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218097] = 2, + [217955] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7596), 5, + ACTIONS(7484), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218108] = 2, + [217966] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3358), 5, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(5150), 1, + sym__initializer, + ACTIONS(8022), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218119] = 6, + [217981] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5390), 1, + STATE(5419), 1, sym__call_signature, - [218138] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3350), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218149] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3282), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218160] = 2, + [218000] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3294), 5, + ACTIONS(8024), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218171] = 2, + [218011] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3298), 5, + ACTIONS(7484), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218182] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8080), 1, - anon_sym_EQ_GT, - STATE(5267), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [218197] = 2, + [218022] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3422), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218208] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + STATE(3985), 1, + sym_formal_parameters, + STATE(4578), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [218041] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 5, + ACTIONS(8026), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218219] = 2, + [218052] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3250), 5, + ACTIONS(7460), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218230] = 2, + [218063] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3210), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218241] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5226), 1, + sym__call_signature, + STATE(5229), 1, + sym_type_parameters, + [218082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(1986), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218252] = 2, + ACTIONS(8010), 1, + anon_sym_AMP, + ACTIONS(8012), 1, + anon_sym_PIPE, + ACTIONS(8014), 1, + anon_sym_extends, + ACTIONS(5997), 2, + anon_sym_LBRACK, + anon_sym_EQ_GT, + [218099] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218263] = 2, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8028), 1, + anon_sym_EQ_GT, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [218114] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218274] = 2, + ACTIONS(7956), 1, + anon_sym_AMP, + ACTIONS(7958), 1, + anon_sym_PIPE, + ACTIONS(5977), 3, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_extends, + [218129] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 5, - sym__automatic_semicolon, + ACTIONS(7389), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218285] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [218140] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218296] = 2, + ACTIONS(7956), 1, + anon_sym_AMP, + ACTIONS(7958), 1, + anon_sym_PIPE, + ACTIONS(7960), 1, + anon_sym_extends, + ACTIONS(5258), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [218157] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3342), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(4815), 1, + anon_sym_LBRACE, + ACTIONS(8031), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218307] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3330), 5, + ACTIONS(8033), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218318] = 2, + ACTIONS(8035), 1, + sym__function_signature_automatic_semicolon, + STATE(3109), 1, + sym_statement_block, + [218176] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3326), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218329] = 2, + ACTIONS(7956), 1, + anon_sym_AMP, + ACTIONS(5967), 4, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_PIPE, + anon_sym_extends, + [218189] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218340] = 2, + ACTIONS(7956), 1, + anon_sym_AMP, + ACTIONS(7958), 1, + anon_sym_PIPE, + ACTIONS(7960), 1, + anon_sym_extends, + ACTIONS(5183), 2, + anon_sym_LBRACK, + anon_sym_RBRACK, + [218206] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218351] = 2, + ACTIONS(738), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(2083), 1, + anon_sym_LBRACE, + ACTIONS(7498), 1, + anon_sym_extends, + STATE(4511), 1, + sym_object_type, + STATE(5006), 1, + sym_extends_clause, + [218225] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3166), 5, - sym__automatic_semicolon, + ACTIONS(6872), 1, + anon_sym_LPAREN, + STATE(4699), 1, + sym_arguments, + ACTIONS(6133), 3, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218362] = 2, + anon_sym_implements, + [218240] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3150), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218373] = 4, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8037), 1, + anon_sym_EQ_GT, + STATE(5252), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [218255] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 1, + ACTIONS(8010), 1, anon_sym_AMP, - ACTIONS(8014), 1, + ACTIONS(8012), 1, anon_sym_PIPE, - ACTIONS(5870), 3, + ACTIONS(5977), 3, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_extends, - [218388] = 2, + [218270] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3146), 5, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3725), 1, + sym_statement_block, + ACTIONS(7544), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218399] = 2, + [218285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3142), 5, - sym__automatic_semicolon, + ACTIONS(8040), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218410] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [218296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3138), 5, - sym__automatic_semicolon, + ACTIONS(8040), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218421] = 5, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [218307] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 1, + ACTIONS(8010), 1, anon_sym_AMP, - ACTIONS(8014), 1, + ACTIONS(8012), 1, anon_sym_PIPE, - ACTIONS(8016), 1, + ACTIONS(8014), 1, anon_sym_extends, - ACTIONS(5256), 2, + ACTIONS(5258), 2, anon_sym_LBRACK, anon_sym_EQ_GT, - [218438] = 5, + [218324] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, - ACTIONS(5864), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [218455] = 4, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(4961), 1, + sym__initializer, + ACTIONS(8042), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [218339] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8083), 1, - anon_sym_EQ_GT, - STATE(5267), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [218470] = 2, + ACTIONS(7652), 1, + sym_identifier, + ACTIONS(8044), 1, + anon_sym_RBRACE, + STATE(5388), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [218356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3378), 5, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(4940), 1, + sym__initializer, + ACTIONS(8046), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218481] = 5, + [218371] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(5767), 2, - anon_sym_LBRACK, - anon_sym_QMARK, - [218498] = 3, + ACTIONS(7428), 1, + anon_sym_LBRACE, + ACTIONS(8048), 1, + anon_sym_SEMI, + ACTIONS(8050), 1, + sym__automatic_semicolon, + ACTIONS(8052), 1, + sym__function_signature_automatic_semicolon, + STATE(4666), 1, + sym_statement_block, + [218390] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7766), 1, anon_sym_AMP, - ACTIONS(5761), 4, - anon_sym_LBRACK, - anon_sym_QMARK, + ACTIONS(7768), 1, anon_sym_PIPE, + ACTIONS(7772), 1, anon_sym_extends, - [218511] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3430), 5, + ACTIONS(8054), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218522] = 2, + [218407] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3458), 5, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3748), 1, + sym_statement_block, + ACTIONS(7552), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218533] = 2, + [218422] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1972), 5, + ACTIONS(7933), 1, + anon_sym_LBRACE, + STATE(3735), 1, + sym_statement_block, + ACTIONS(7552), 3, sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218544] = 2, + [218437] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2046), 5, - sym__automatic_semicolon, + ACTIONS(7478), 1, + anon_sym_AMP, + ACTIONS(7480), 1, + anon_sym_PIPE, + ACTIONS(7482), 1, + anon_sym_extends, + ACTIONS(7912), 2, + anon_sym_LBRACE, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218555] = 3, + [218454] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + STATE(3985), 1, + sym_formal_parameters, + STATE(4606), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [218473] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8010), 1, anon_sym_AMP, - ACTIONS(5750), 4, + ACTIONS(5967), 4, anon_sym_LBRACK, anon_sym_EQ_GT, anon_sym_PIPE, anon_sym_extends, - [218568] = 5, + [218486] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 1, + ACTIONS(8010), 1, anon_sym_AMP, - ACTIONS(8014), 1, + ACTIONS(8012), 1, anon_sym_PIPE, - ACTIONS(8016), 1, + ACTIONS(8014), 1, anon_sym_extends, - ACTIONS(5211), 2, + ACTIONS(5183), 2, anon_sym_LBRACK, anon_sym_EQ_GT, - [218585] = 2, + [218503] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8056), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [218514] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4815), 1, + anon_sym_LBRACE, + ACTIONS(8058), 1, + anon_sym_SEMI, + ACTIONS(8060), 1, + sym__automatic_semicolon, + ACTIONS(8062), 1, + sym__function_signature_automatic_semicolon, + STATE(3062), 1, + sym_statement_block, + [218533] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(1956), 5, + ACTIONS(8064), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218596] = 2, + [218544] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3258), 5, - sym__automatic_semicolon, + ACTIONS(7562), 1, + anon_sym_EQ, + ACTIONS(8066), 1, anon_sym_COMMA, + ACTIONS(8068), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218607] = 2, + STATE(5038), 1, + aux_sym_enum_body_repeat1, + STATE(5319), 1, + sym__initializer, + [218563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3290), 5, + ACTIONS(8070), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218618] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6106), 1, - anon_sym_LBRACE, - ACTIONS(7794), 1, - anon_sym_LT, - STATE(4960), 1, - sym_type_arguments, - ACTIONS(6077), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [218635] = 4, + [218574] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, + ACTIONS(7920), 1, anon_sym_COLON, - ACTIONS(8086), 1, + ACTIONS(8072), 1, anon_sym_EQ_GT, - STATE(5418), 3, + STATE(5252), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [218650] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3346), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218661] = 2, + [218589] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 5, + ACTIONS(7544), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218672] = 2, + [218600] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3346), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218683] = 2, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8075), 1, + anon_sym_EQ_GT, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [218615] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3354), 5, + ACTIONS(7781), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218694] = 2, + [218626] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3362), 5, + ACTIONS(8078), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218705] = 2, + [218637] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3366), 5, + ACTIONS(7552), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218716] = 2, + [218648] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3370), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(7652), 1, + sym_identifier, + ACTIONS(8080), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218727] = 2, + STATE(5388), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [218665] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3374), 5, + ACTIONS(7472), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218738] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8089), 1, - anon_sym_EQ_GT, - STATE(5418), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [218753] = 2, + [218676] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3434), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7428), 1, + anon_sym_LBRACE, + ACTIONS(8082), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218764] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3434), 5, + ACTIONS(8084), 1, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218775] = 2, + ACTIONS(8086), 1, + sym__function_signature_automatic_semicolon, + STATE(4675), 1, + sym_statement_block, + [218695] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3450), 5, + ACTIONS(6263), 1, sym__automatic_semicolon, + ACTIONS(1958), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218786] = 2, + [218708] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2179), 5, + ACTIONS(7552), 5, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218797] = 2, + [218719] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2189), 5, + ACTIONS(7766), 1, + anon_sym_AMP, + ACTIONS(7768), 1, + anon_sym_PIPE, + ACTIONS(7772), 1, + anon_sym_extends, + ACTIONS(8088), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218808] = 2, + [218736] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2114), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218819] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + STATE(3985), 1, + sym_formal_parameters, + STATE(4623), 1, + sym__call_signature, + STATE(5259), 1, + sym_type_parameters, + [218755] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3386), 5, - sym__automatic_semicolon, + ACTIONS(8090), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218830] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [218766] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3178), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218841] = 2, + ACTIONS(8092), 5, + anon_sym_EQ, + anon_sym_LBRACE, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [218777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3170), 5, - sym__automatic_semicolon, + ACTIONS(8090), 5, + anon_sym_EQ, anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218852] = 2, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [218788] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3162), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218863] = 2, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8094), 1, + anon_sym_EQ_GT, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [218803] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3154), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(7652), 1, + sym_identifier, + ACTIONS(8097), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218874] = 2, + STATE(5368), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [218820] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3414), 5, + ACTIONS(6301), 1, sym__automatic_semicolon, + ACTIONS(2034), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218885] = 2, + [218833] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3270), 5, + ACTIONS(6303), 1, sym__automatic_semicolon, + ACTIONS(2024), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218896] = 2, + [218846] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2165), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218907] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5304), 1, + sym__call_signature, + [218865] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(3130), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218918] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5308), 1, + sym__call_signature, + [218884] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3158), 5, + ACTIONS(7766), 1, + anon_sym_AMP, + ACTIONS(7768), 1, + anon_sym_PIPE, + ACTIONS(7772), 1, + anon_sym_extends, + ACTIONS(8099), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218929] = 2, + [218901] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(3186), 5, + ACTIONS(7766), 1, + anon_sym_AMP, + ACTIONS(7768), 1, + anon_sym_PIPE, + ACTIONS(7772), 1, + anon_sym_extends, + ACTIONS(8101), 2, sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [218940] = 2, + [218918] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3214), 5, + ACTIONS(6358), 1, sym__automatic_semicolon, + ACTIONS(1968), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [218951] = 5, + [218931] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(5864), 2, - anon_sym_LBRACK, - anon_sym_QMARK, - [218968] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7940), 1, + anon_sym_LPAREN, + STATE(4078), 1, + sym_formal_parameters, + STATE(4697), 1, + sym__call_signature, + STATE(5396), 1, + sym_type_parameters, + [218950] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7600), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COLON, - [218979] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5406), 1, + sym__call_signature, + [218969] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7578), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(7428), 1, anon_sym_LBRACE, + ACTIONS(8058), 1, anon_sym_SEMI, - anon_sym_COLON, - [218990] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7446), 5, + ACTIONS(8060), 1, sym__automatic_semicolon, + ACTIONS(8062), 1, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - anon_sym_COLON, - [219001] = 2, + STATE(1058), 1, + sym_statement_block, + [218988] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7576), 5, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, + ACTIONS(1932), 1, anon_sym_LBRACE, + ACTIONS(8031), 1, anon_sym_SEMI, - anon_sym_COLON, - [219012] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7256), 1, - anon_sym_is, - ACTIONS(7540), 4, + ACTIONS(8033), 1, sym__automatic_semicolon, + ACTIONS(8035), 1, sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [219025] = 2, + STATE(141), 1, + sym_statement_block, + [219007] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2175), 5, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [219036] = 2, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5311), 1, + sym__call_signature, + [219026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2088), 5, - sym__automatic_semicolon, - anon_sym_COMMA, + ACTIONS(7652), 1, + sym_identifier, + ACTIONS(8103), 1, anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [219047] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(1982), 1, - anon_sym_DOT, - ACTIONS(5202), 1, - anon_sym_LBRACE, - ACTIONS(5204), 3, - anon_sym_COMMA, - anon_sym_LT, - anon_sym_LBRACE_PIPE, - [219062] = 5, + STATE(5388), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [219043] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(8014), 1, - anon_sym_PIPE, - ACTIONS(8016), 1, - anon_sym_extends, - ACTIONS(5767), 2, - anon_sym_LBRACK, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8105), 1, anon_sym_EQ_GT, - [219079] = 3, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [219058] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8012), 1, - anon_sym_AMP, - ACTIONS(5761), 4, - anon_sym_LBRACK, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8108), 1, anon_sym_EQ_GT, - anon_sym_PIPE, - anon_sym_extends, - [219092] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 1, - anon_sym_LBRACE, - ACTIONS(7940), 1, - anon_sym_SEMI, - ACTIONS(7942), 1, - sym__automatic_semicolon, - ACTIONS(7944), 1, - sym__function_signature_automatic_semicolon, - STATE(3092), 1, - sym_statement_block, - [219111] = 6, + STATE(5252), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [219073] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(738), 1, + ACTIONS(614), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, + ACTIONS(1878), 1, anon_sym_LBRACE, - ACTIONS(7546), 1, + ACTIONS(7498), 1, anon_sym_extends, - STATE(4632), 1, + STATE(1123), 1, sym_object_type, - STATE(5000), 1, + STATE(5080), 1, sym_extends_clause, - [219130] = 4, + [219092] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(5870), 3, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_extends, - [219145] = 5, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5293), 1, + sym__call_signature, + [219111] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, - ACTIONS(5256), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [219162] = 3, + ACTIONS(7562), 1, + anon_sym_EQ, + ACTIONS(8111), 1, + anon_sym_COMMA, + ACTIONS(8113), 1, + anon_sym_RBRACE, + STATE(4967), 1, + aux_sym_enum_body_repeat1, + STATE(5319), 1, + sym__initializer, + [219130] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(5750), 4, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_PIPE, - anon_sym_extends, - [219175] = 5, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5296), 1, + sym__call_signature, + [219149] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, - ACTIONS(5211), 2, - anon_sym_LBRACK, - anon_sym_RBRACK, - [219192] = 4, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5300), 1, + sym__call_signature, + [219168] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, + ACTIONS(7920), 1, anon_sym_COLON, - ACTIONS(8092), 1, + ACTIONS(8115), 1, anon_sym_EQ_GT, - STATE(5267), 3, + STATE(5252), 3, sym_type_annotation, sym_asserts, - sym_type_predicate_annotation, - [219207] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7628), 1, - sym_identifier, - ACTIONS(8095), 1, - anon_sym_RBRACE, - STATE(5378), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, - [219224] = 6, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7434), 1, - anon_sym_LBRACE, - ACTIONS(8097), 1, - anon_sym_SEMI, - ACTIONS(8099), 1, - sym__automatic_semicolon, - ACTIONS(8101), 1, - sym__function_signature_automatic_semicolon, - STATE(4708), 1, - sym_statement_block, - [219243] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - ACTIONS(8103), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [219260] = 5, + sym_type_predicate_annotation, + [219183] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, + ACTIONS(7478), 1, anon_sym_AMP, - ACTIONS(7502), 1, + ACTIONS(7480), 1, anon_sym_PIPE, - ACTIONS(7504), 1, + ACTIONS(7482), 1, anon_sym_extends, - ACTIONS(7967), 2, - anon_sym_LBRACE, + ACTIONS(7379), 2, anon_sym_COMMA, - [219277] = 6, + anon_sym_RBRACK, + [219200] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(1932), 1, anon_sym_LBRACE, - ACTIONS(7973), 1, + ACTIONS(8058), 1, anon_sym_SEMI, - ACTIONS(7975), 1, + ACTIONS(8060), 1, sym__automatic_semicolon, - ACTIONS(7977), 1, + ACTIONS(8062), 1, sym__function_signature_automatic_semicolon, - STATE(3178), 1, + STATE(153), 1, sym_statement_block, - [219296] = 6, + [219219] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7568), 1, - anon_sym_EQ, - ACTIONS(8105), 1, - anon_sym_COMMA, - ACTIONS(8107), 1, - anon_sym_RBRACE, - STATE(5031), 1, - aux_sym_enum_body_repeat1, - STATE(5310), 1, - sym__initializer, - [219315] = 6, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5321), 1, + sym__call_signature, + [219238] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_COLON, - ACTIONS(6202), 1, - anon_sym_EQ, - ACTIONS(6694), 1, + ACTIONS(7114), 1, + anon_sym_LT, + STATE(4930), 1, + sym_type_arguments, + ACTIONS(7969), 3, + anon_sym_LBRACE, anon_sym_COMMA, - ACTIONS(8109), 1, - anon_sym_RBRACE, - STATE(4997), 1, - aux_sym_object_pattern_repeat1, - [219334] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8111), 1, - anon_sym_EQ_GT, - STATE(5418), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [219349] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8114), 1, - anon_sym_EQ_GT, - STATE(5267), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [219364] = 4, + anon_sym_implements, + [219253] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8117), 1, - anon_sym_EQ_GT, - STATE(5418), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [219379] = 5, + ACTIONS(7164), 1, + anon_sym_EQ, + STATE(4975), 1, + sym__initializer, + ACTIONS(8118), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219268] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7628), 1, + ACTIONS(7652), 1, sym_identifier, ACTIONS(8120), 1, anon_sym_RBRACE, - STATE(5378), 1, + STATE(5388), 1, sym__import_export_specifier, - ACTIONS(7630), 2, + ACTIONS(7654), 2, anon_sym_type, anon_sym_typeof, - [219396] = 6, + [219285] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, + ACTIONS(8122), 5, + anon_sym_EQ, anon_sym_LBRACE, - ACTIONS(8122), 1, - anon_sym_SEMI, - ACTIONS(8124), 1, - sym__automatic_semicolon, - ACTIONS(8126), 1, - sym__function_signature_automatic_semicolon, - STATE(4711), 1, - sym_statement_block, - [219415] = 3, + anon_sym_LPAREN, + anon_sym_implements, + anon_sym_extends, + [219296] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6489), 1, + ACTIONS(8124), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [219307] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7596), 5, sym__automatic_semicolon, - ACTIONS(2151), 4, anon_sym_COMMA, anon_sym_RBRACE, anon_sym_SEMI, anon_sym_PIPE_RBRACE, - [219428] = 5, + [219318] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, - anon_sym_AMP, - ACTIONS(7668), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - ACTIONS(8128), 2, + ACTIONS(8126), 5, sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_RBRACE, anon_sym_SEMI, - [219445] = 4, + anon_sym_PIPE_RBRACE, + [219329] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, + ACTIONS(8128), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, anon_sym_COLON, - ACTIONS(8130), 1, - anon_sym_EQ_GT, - STATE(5418), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [219460] = 3, + anon_sym_QMARK, + [219340] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6494), 1, - sym__automatic_semicolon, - ACTIONS(2136), 4, - anon_sym_COMMA, - anon_sym_RBRACE, - anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [219473] = 4, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7940), 1, + anon_sym_LPAREN, + STATE(4078), 1, + sym_formal_parameters, + STATE(4684), 1, + sym__call_signature, + STATE(5396), 1, + sym_type_parameters, + [219359] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8133), 1, - anon_sym_EQ_GT, - STATE(5418), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [219488] = 4, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4580), 1, + sym_formal_parameters, + STATE(5229), 1, + sym_type_parameters, + STATE(5382), 1, + sym__call_signature, + [219378] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, + ACTIONS(7920), 1, anon_sym_COLON, - ACTIONS(8136), 1, + ACTIONS(8130), 1, anon_sym_EQ_GT, - STATE(5267), 3, + STATE(5413), 3, sym_type_annotation, sym_asserts, sym_type_predicate_annotation, - [219503] = 3, + [219393] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(6307), 1, - sym__automatic_semicolon, - ACTIONS(2104), 4, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7428), 1, + anon_sym_LBRACE, + ACTIONS(8031), 1, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [219516] = 5, + ACTIONS(8033), 1, + sym__automatic_semicolon, + ACTIONS(8035), 1, + sym__function_signature_automatic_semicolon, + STATE(1055), 1, + sym_statement_block, + [219412] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7666), 1, + ACTIONS(7766), 1, anon_sym_AMP, - ACTIONS(7668), 1, + ACTIONS(7768), 1, anon_sym_PIPE, - ACTIONS(7670), 1, + ACTIONS(7772), 1, anon_sym_extends, - ACTIONS(8139), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [219533] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6366), 1, + ACTIONS(8133), 2, sym__automatic_semicolon, - ACTIONS(2032), 4, - anon_sym_COMMA, - anon_sym_RBRACE, anon_sym_SEMI, - anon_sym_PIPE_RBRACE, - [219546] = 6, + [219429] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5268), 1, + STATE(5379), 1, sym__call_signature, - [219565] = 6, + [219448] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8128), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [219459] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3922), 1, + anon_sym_COLON, + STATE(5440), 1, + sym_type_annotation, + ACTIONS(4639), 3, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RBRACK, + [219474] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5272), 1, + STATE(5372), 1, sym__call_signature, - [219584] = 6, + [219493] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5275), 1, + STATE(5371), 1, sym__call_signature, - [219603] = 5, + [219512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7500), 1, + ACTIONS(8128), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [219523] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8135), 1, + anon_sym_EQ_GT, + STATE(5413), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [219538] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8138), 1, + anon_sym_EQ_GT, + STATE(5252), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [219553] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7920), 1, + anon_sym_COLON, + ACTIONS(8141), 1, + anon_sym_EQ_GT, + STATE(5252), 3, + sym_type_annotation, + sym_asserts, + sym_type_predicate_annotation, + [219568] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7652), 1, + sym_identifier, + ACTIONS(8144), 1, + anon_sym_RBRACE, + STATE(5368), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [219585] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4815), 1, + anon_sym_LBRACE, + ACTIONS(8082), 1, + anon_sym_SEMI, + ACTIONS(8084), 1, + sym__automatic_semicolon, + ACTIONS(8086), 1, + sym__function_signature_automatic_semicolon, + STATE(3077), 1, + sym_statement_block, + [219604] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7478), 1, anon_sym_AMP, - ACTIONS(7502), 1, + ACTIONS(7480), 1, anon_sym_PIPE, - ACTIONS(7504), 1, + ACTIONS(7482), 1, anon_sym_extends, - ACTIONS(7392), 2, + ACTIONS(8146), 2, anon_sym_COMMA, anon_sym_RBRACK, - [219620] = 6, + [219621] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8128), 5, + anon_sym_EQ, + anon_sym_COMMA, + anon_sym_RPAREN, + anon_sym_COLON, + anon_sym_QMARK, + [219632] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4541), 1, + STATE(4580), 1, sym_formal_parameters, - STATE(5219), 1, + STATE(5229), 1, sym_type_parameters, - STATE(5314), 1, + STATE(5317), 1, sym__call_signature, - [219639] = 6, + [219651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(7933), 1, anon_sym_LBRACE, - ACTIONS(8122), 1, - anon_sym_SEMI, - ACTIONS(8124), 1, - sym__automatic_semicolon, - ACTIONS(8126), 1, - sym__function_signature_automatic_semicolon, - STATE(3233), 1, + STATE(3756), 1, sym_statement_block, - [219658] = 6, + ACTIONS(7596), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [219666] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4815), 1, anon_sym_LBRACE, - ACTIONS(8097), 1, + ACTIONS(8048), 1, anon_sym_SEMI, - ACTIONS(8099), 1, + ACTIONS(8050), 1, sym__automatic_semicolon, - ACTIONS(8101), 1, + ACTIONS(8052), 1, sym__function_signature_automatic_semicolon, - STATE(3231), 1, + STATE(3038), 1, sym_statement_block, - [219677] = 4, + [219685] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7912), 1, - anon_sym_COLON, - ACTIONS(8141), 1, - anon_sym_EQ_GT, - STATE(5267), 3, - sym_type_annotation, - sym_asserts, - sym_type_predicate_annotation, - [219692] = 4, - ACTIONS(8144), 1, - anon_sym_DQUOTE, - ACTIONS(8148), 1, - sym_comment, - STATE(4889), 1, - aux_sym_string_repeat1, - ACTIONS(8146), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [219706] = 4, - ACTIONS(8148), 1, + ACTIONS(7638), 1, + anon_sym_AMP, + ACTIONS(7640), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_extends, + ACTIONS(8148), 2, + anon_sym_COMMA, + anon_sym_GT, + [219702] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, ACTIONS(8150), 1, - anon_sym_DQUOTE, - STATE(4889), 1, - aux_sym_string_repeat1, - ACTIONS(8146), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [219720] = 5, + anon_sym_COLON, + [219718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(7975), 1, anon_sym_extends, ACTIONS(8152), 1, - anon_sym_RBRACK, - [219736] = 5, + anon_sym_QMARK, + [219734] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5168), 1, + STATE(5185), 1, sym_type_parameters, - STATE(5760), 1, + STATE(5741), 1, sym_formal_parameters, - [219752] = 5, + [219750] = 4, + ACTIONS(8154), 1, + anon_sym_SQUOTE, + ACTIONS(8158), 1, + sym_comment, + STATE(4807), 1, + aux_sym_string_repeat2, + ACTIONS(8156), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [219764] = 4, + ACTIONS(8154), 1, + anon_sym_DQUOTE, + ACTIONS(8158), 1, + sym_comment, + STATE(4806), 1, + aux_sym_string_repeat1, + ACTIONS(8160), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [219778] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8154), 1, - anon_sym_RBRACK, - [219768] = 5, + ACTIONS(8162), 1, + anon_sym_COLON, + [219794] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8156), 1, - anon_sym_class, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - [219784] = 5, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(8164), 1, + anon_sym_QMARK, + [219810] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5177), 1, + STATE(5424), 1, sym_type_parameters, - STATE(5613), 1, + STATE(5646), 1, sym_formal_parameters, - [219800] = 5, + [219826] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(8158), 1, - anon_sym_RPAREN, - [219816] = 5, + ACTIONS(4666), 1, + anon_sym_COLON, + ACTIONS(6267), 1, + anon_sym_EQ, + ACTIONS(8166), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [219840] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5187), 1, + STATE(5450), 1, sym_type_parameters, - STATE(5468), 1, + STATE(5489), 1, sym_formal_parameters, - [219832] = 4, - ACTIONS(8148), 1, + [219856] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_SQUOTE, - STATE(4741), 1, - aux_sym_string_repeat2, - ACTIONS(8162), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [219846] = 5, + ACTIONS(7956), 1, + anon_sym_AMP, + ACTIONS(7958), 1, + anon_sym_PIPE, + ACTIONS(7960), 1, + anon_sym_extends, + ACTIONS(8168), 1, + anon_sym_RBRACK, + [219872] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5182), 1, + STATE(5177), 1, sym_type_parameters, - STATE(5635), 1, + STATE(5596), 1, sym_formal_parameters, - [219862] = 5, + [219888] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7956), 1, + anon_sym_AMP, + ACTIONS(7958), 1, + anon_sym_PIPE, + ACTIONS(7960), 1, + anon_sym_extends, + ACTIONS(8170), 1, + anon_sym_RBRACK, + [219904] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(8172), 1, + anon_sym_COLON, + [219920] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5190), 1, + STATE(5169), 1, sym_type_parameters, - STATE(5554), 1, + STATE(5729), 1, sym_formal_parameters, - [219878] = 5, + [219936] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5173), 1, + STATE(5182), 1, sym_type_parameters, - STATE(5691), 1, + STATE(5479), 1, sym_formal_parameters, - [219894] = 4, - ACTIONS(8148), 1, + [219952] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8160), 1, - anon_sym_DQUOTE, - STATE(4726), 1, - aux_sym_string_repeat1, - ACTIONS(8164), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [219908] = 5, + ACTIONS(8174), 1, + anon_sym_COMMA, + STATE(4745), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8177), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [219966] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8166), 1, + ACTIONS(8179), 1, anon_sym_COLON, - [219924] = 5, + [219982] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(8168), 1, + ACTIONS(8181), 1, anon_sym_RBRACK, - [219940] = 4, - ACTIONS(8148), 1, + [219998] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8150), 1, - anon_sym_SQUOTE, - STATE(4888), 1, - aux_sym_string_repeat2, - ACTIONS(8170), 2, - sym_unescaped_single_string_fragment, + ACTIONS(8183), 1, + anon_sym_DQUOTE, + STATE(4797), 1, + aux_sym_string_repeat1, + ACTIONS(8185), 2, + sym_unescaped_double_string_fragment, sym_escape_sequence, - [219954] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(8172), 1, - anon_sym_COLON, - [219970] = 5, + [220012] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5156), 1, + STATE(5181), 1, sym_type_parameters, - STATE(5813), 1, + STATE(5605), 1, sym_formal_parameters, - [219986] = 5, + [220028] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, - ACTIONS(8174), 1, - anon_sym_RBRACK, - [220002] = 5, + ACTIONS(7562), 1, + anon_sym_EQ, + STATE(5357), 1, + sym__initializer, + ACTIONS(8187), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [220042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8176), 1, + ACTIONS(8189), 1, anon_sym_COLON, - [220018] = 4, - ACTIONS(8148), 1, + [220058] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8191), 1, + anon_sym_class, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [220074] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(8193), 1, anon_sym_DQUOTE, - STATE(4788), 1, + STATE(4822), 1, aux_sym_string_repeat1, - ACTIONS(8180), 2, + ACTIONS(8195), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [220032] = 4, - ACTIONS(8148), 1, + [220088] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8178), 1, + ACTIONS(8193), 1, anon_sym_SQUOTE, - STATE(4752), 1, + STATE(4824), 1, aux_sym_string_repeat2, - ACTIONS(8182), 2, + ACTIONS(8197), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [220046] = 5, + [220102] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5196), 1, + STATE(5459), 1, sym_type_parameters, - STATE(5811), 1, + STATE(5517), 1, sym_formal_parameters, - [220062] = 5, + [220118] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8184), 1, - anon_sym_class, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - [220078] = 5, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5428), 1, + sym_type_parameters, + STATE(5778), 1, + sym_formal_parameters, + [220134] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, - ACTIONS(8186), 1, - anon_sym_RBRACK, - [220094] = 5, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5163), 1, + sym_type_parameters, + STATE(5665), 1, + sym_formal_parameters, + [220150] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8188), 1, - anon_sym_RBRACK, - [220110] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8190), 1, - anon_sym_SQUOTE, - STATE(4888), 1, - aux_sym_string_repeat2, - ACTIONS(8170), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [220124] = 5, + ACTIONS(8199), 1, + anon_sym_COLON, + [220166] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(8192), 1, - anon_sym_RPAREN, - [220140] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8201), 1, + anon_sym_class, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [220182] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8194), 1, - anon_sym_RPAREN, - [220156] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5245), 1, - sym_type_parameters, - STATE(5529), 1, - sym_formal_parameters, - [220172] = 5, + ACTIONS(8203), 1, + anon_sym_QMARK, + [220198] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 1, - anon_sym_COMMA, - ACTIONS(5785), 1, - anon_sym_LBRACE, - ACTIONS(5825), 1, + ACTIONS(5766), 1, anon_sym_LBRACE_PIPE, - STATE(4766), 1, - aux_sym_extends_clause_repeat1, - [220188] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7568), 1, - anon_sym_EQ, - STATE(5310), 1, - sym__initializer, - ACTIONS(8196), 2, + ACTIONS(5926), 1, + anon_sym_LBRACE, + ACTIONS(5928), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [220202] = 5, + STATE(4784), 1, + aux_sym_extends_clause_repeat1, + [220214] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8198), 1, - anon_sym_COLON, - [220218] = 5, + ACTIONS(8205), 1, + anon_sym_QMARK, + [220230] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8200), 1, + ACTIONS(8207), 1, anon_sym_RPAREN, - [220234] = 2, + [220246] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 1, + anon_sym_from, + STATE(5257), 1, + sym__from_clause, + ACTIONS(8211), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [220260] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5637), 4, + ACTIONS(5596), 4, anon_sym_RBRACE, anon_sym_RPAREN, anon_sym_COLON, anon_sym_RBRACK, - [220244] = 2, + [220270] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4461), 4, + ACTIONS(4557), 4, anon_sym_EQ, anon_sym_COMMA, anon_sym_COLON, anon_sym_RBRACK, - [220254] = 4, - ACTIONS(8148), 1, + [220280] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8202), 1, - anon_sym_SQUOTE, - STATE(4888), 1, - aux_sym_string_repeat2, - ACTIONS(8170), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [220268] = 4, - ACTIONS(8148), 1, + ACTIONS(7956), 1, + anon_sym_AMP, + ACTIONS(7958), 1, + anon_sym_PIPE, + ACTIONS(7960), 1, + anon_sym_extends, + ACTIONS(8213), 1, + anon_sym_RBRACK, + [220296] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8202), 1, - anon_sym_DQUOTE, - STATE(4889), 1, - aux_sym_string_repeat1, - ACTIONS(8146), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [220282] = 5, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(8215), 1, + anon_sym_QMARK, + [220312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 1, - anon_sym_COMMA, - ACTIONS(8204), 1, - anon_sym_LBRACE, - ACTIONS(8206), 1, - anon_sym_LBRACE_PIPE, - STATE(4809), 1, - aux_sym_extends_clause_repeat1, - [220298] = 4, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(8217), 1, + anon_sym_QMARK, + [220328] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1366), 1, + ACTIONS(1196), 1, anon_sym_BQUOTE, - ACTIONS(5789), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - STATE(3264), 2, + STATE(3321), 2, sym_template_string, sym_arguments, - [220312] = 5, + [220342] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(4437), 1, - anon_sym_COMMA, - ACTIONS(8208), 1, - anon_sym_LBRACE, - ACTIONS(8210), 1, - anon_sym_LBRACE_PIPE, - STATE(4809), 1, - aux_sym_extends_clause_repeat1, - [220328] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8212), 1, - anon_sym_DQUOTE, - STATE(4825), 1, - aux_sym_string_repeat1, - ACTIONS(8214), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [220342] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8216), 1, - anon_sym_SQUOTE, - STATE(4888), 1, - aux_sym_string_repeat2, - ACTIONS(8170), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [220356] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8216), 1, - anon_sym_DQUOTE, - STATE(4889), 1, - aux_sym_string_repeat1, - ACTIONS(8146), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [220370] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8212), 1, - anon_sym_SQUOTE, - STATE(4826), 1, - aux_sym_string_repeat2, - ACTIONS(8218), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [220384] = 5, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(8219), 1, + anon_sym_QMARK, + [220358] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8220), 1, + ACTIONS(8221), 1, anon_sym_QMARK, - [220400] = 4, - ACTIONS(8148), 1, + [220374] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(8223), 1, + anon_sym_COLON, + [220390] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8222), 1, + ACTIONS(8225), 1, anon_sym_SQUOTE, - STATE(4762), 1, + STATE(4802), 1, aux_sym_string_repeat2, - ACTIONS(8224), 2, + ACTIONS(8227), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [220414] = 4, - ACTIONS(8148), 1, + [220404] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8222), 1, + ACTIONS(8225), 1, anon_sym_DQUOTE, - STATE(4763), 1, + STATE(4804), 1, aux_sym_string_repeat1, - ACTIONS(8226), 2, + ACTIONS(8229), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [220428] = 5, + [220418] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8228), 1, - anon_sym_QMARK, - [220444] = 5, + ACTIONS(8231), 1, + anon_sym_COLON, + [220434] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8230), 1, - anon_sym_COLON, - [220460] = 5, + ACTIONS(8233), 1, + anon_sym_QMARK, + [220450] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(5768), 1, + anon_sym_COMMA, + STATE(4879), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(8235), 2, + anon_sym_LBRACE, + anon_sym_implements, + [220464] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8232), 1, - anon_sym_COLON, - [220476] = 5, + ACTIONS(8237), 1, + anon_sym_QMARK, + [220480] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7379), 1, + anon_sym_EQ_GT, + ACTIONS(8010), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(8012), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(8014), 1, anon_sym_extends, - ACTIONS(8234), 1, - anon_sym_COLON, - [220492] = 4, + [220496] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, - anon_sym_from, - STATE(5279), 1, - sym__from_clause, - ACTIONS(8238), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [220506] = 5, + ACTIONS(93), 1, + anon_sym_AT, + ACTIONS(8239), 1, + anon_sym_class, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [220512] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(8240), 1, - anon_sym_COLON, + ACTIONS(8241), 4, + sym__template_chars, + sym_escape_sequence, + anon_sym_BQUOTE, + anon_sym_DOLLAR_LBRACE, [220522] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8242), 1, + ACTIONS(8243), 1, anon_sym_COLON, [220538] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(8244), 1, - anon_sym_QMARK, - [220554] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8246), 1, - anon_sym_DQUOTE, - STATE(4769), 1, - aux_sym_string_repeat1, - ACTIONS(8248), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [220568] = 5, + ACTIONS(5928), 1, + anon_sym_COMMA, + ACTIONS(8235), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(8245), 1, + anon_sym_LBRACE, + STATE(4815), 1, + aux_sym_extends_clause_repeat1, + [220554] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8250), 1, + ACTIONS(8247), 1, anon_sym_QMARK, - [220584] = 5, + [220570] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5217), 1, + sym_type_parameters, + STATE(5762), 1, + sym_formal_parameters, + [220586] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8252), 1, + ACTIONS(8249), 1, anon_sym_COLON, - [220600] = 5, + [220602] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8251), 1, + anon_sym_COMMA, + STATE(4903), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8253), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [220616] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8255), 1, + anon_sym_DQUOTE, + STATE(4775), 1, + aux_sym_string_repeat1, + ACTIONS(8257), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [220630] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8254), 1, + ACTIONS(8259), 1, + anon_sym_COLON, + [220646] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2286), 1, + anon_sym_COMMA, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8263), 1, anon_sym_RBRACK, - [220616] = 5, + STATE(4992), 1, + aux_sym_array_pattern_repeat1, + [220662] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8256), 1, + ACTIONS(8265), 1, anon_sym_QMARK, - [220632] = 5, + [220678] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8258), 1, + ACTIONS(8267), 1, anon_sym_COLON, - [220648] = 4, - ACTIONS(8148), 1, + [220694] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8190), 1, - anon_sym_DQUOTE, - STATE(4889), 1, - aux_sym_string_repeat1, - ACTIONS(8146), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [220662] = 4, - ACTIONS(8148), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5193), 1, + sym_type_parameters, + STATE(5746), 1, + sym_formal_parameters, + [220710] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8260), 1, + ACTIONS(8269), 1, anon_sym_SQUOTE, - STATE(4807), 1, + STATE(4802), 1, aux_sym_string_repeat2, - ACTIONS(8262), 2, + ACTIONS(8227), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [220676] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(8264), 1, - anon_sym_QMARK, - [220692] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, - ACTIONS(8266), 1, - anon_sym_RBRACK, - [220708] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, - ACTIONS(8268), 1, - anon_sym_RBRACK, [220724] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, - ACTIONS(8270), 1, - anon_sym_RBRACK, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5196), 1, + sym_type_parameters, + STATE(5636), 1, + sym_formal_parameters, [220740] = 4, - ACTIONS(3), 1, + ACTIONS(8158), 1, sym_comment, - ACTIONS(7628), 1, - sym_identifier, - STATE(5358), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, + ACTIONS(8269), 1, + anon_sym_DQUOTE, + STATE(4804), 1, + aux_sym_string_repeat1, + ACTIONS(8229), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, [220754] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8272), 1, + ACTIONS(8271), 1, anon_sym_QMARK, [220770] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8274), 1, - anon_sym_class, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - [220786] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8246), 1, - anon_sym_SQUOTE, - STATE(4768), 1, - aux_sym_string_repeat2, - ACTIONS(8276), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [220800] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8278), 1, + ACTIONS(8273), 1, anon_sym_QMARK, - [220816] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7628), 1, - sym_identifier, - STATE(5378), 1, - sym__import_export_specifier, - ACTIONS(7630), 2, - anon_sym_type, - anon_sym_typeof, - [220830] = 5, + [220786] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5284), 1, + STATE(5402), 1, sym_type_parameters, - STATE(5730), 1, + STATE(5508), 1, sym_formal_parameters, - [220846] = 5, - ACTIONS(3), 1, + [220802] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5206), 1, - sym_type_parameters, - STATE(5752), 1, - sym_formal_parameters, - [220862] = 5, - ACTIONS(3), 1, + ACTIONS(8183), 1, + anon_sym_SQUOTE, + STATE(4795), 1, + aux_sym_string_repeat2, + ACTIONS(8275), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [220816] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(8280), 1, - anon_sym_COLON, - [220878] = 5, - ACTIONS(3), 1, + ACTIONS(8277), 1, + anon_sym_SQUOTE, + STATE(4802), 1, + aux_sym_string_repeat2, + ACTIONS(8279), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [220830] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(8282), 1, - anon_sym_COLON, - [220894] = 4, - ACTIONS(3), 1, + ACTIONS(8255), 1, + anon_sym_SQUOTE, + STATE(4774), 1, + aux_sym_string_repeat2, + ACTIONS(8282), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [220844] = 4, + ACTIONS(8158), 1, sym_comment, ACTIONS(8284), 1, - anon_sym_COMMA, - STATE(4873), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8286), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [220908] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8288), 1, anon_sym_DQUOTE, - STATE(4889), 1, + STATE(4804), 1, aux_sym_string_repeat1, - ACTIONS(8146), 2, + ACTIONS(8286), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [220922] = 5, + [220858] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8290), 1, - anon_sym_RBRACK, - [220938] = 4, - ACTIONS(8148), 1, + ACTIONS(8289), 1, + anon_sym_COLON, + [220874] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8291), 1, + anon_sym_DQUOTE, + STATE(4804), 1, + aux_sym_string_repeat1, + ACTIONS(8229), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [220888] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8288), 1, + ACTIONS(8291), 1, anon_sym_SQUOTE, - STATE(4888), 1, + STATE(4802), 1, aux_sym_string_repeat2, - ACTIONS(8170), 2, + ACTIONS(8227), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [220952] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8292), 1, - anon_sym_COMMA, - STATE(4808), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(6077), 2, - anon_sym_LBRACE, - anon_sym_implements, - [220966] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6077), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(6106), 1, - anon_sym_LBRACE, - ACTIONS(8295), 1, - anon_sym_COMMA, - STATE(4809), 1, - aux_sym_extends_clause_repeat1, - [220982] = 5, + [220902] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, - anon_sym_COMMA, - ACTIONS(8298), 1, - anon_sym_EQ, - ACTIONS(8300), 1, - anon_sym_RBRACK, - STATE(4926), 1, - aux_sym_array_pattern_repeat1, - [220998] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8302), 1, + ACTIONS(8293), 1, anon_sym_COLON, - [221014] = 5, + [220918] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(8304), 1, - anon_sym_QMARK, - [221030] = 5, + ACTIONS(5768), 1, + anon_sym_COMMA, + STATE(4778), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(5766), 2, + anon_sym_LBRACE, + anon_sym_implements, + [220932] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8306), 1, + ACTIONS(8295), 1, anon_sym_COLON, - [221046] = 5, + [220948] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8308), 1, - anon_sym_RPAREN, - [221062] = 5, + ACTIONS(8297), 1, + anon_sym_COLON, + [220964] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(8310), 1, - anon_sym_QMARK, - [221078] = 5, + ACTIONS(1028), 1, + anon_sym_BQUOTE, + ACTIONS(5278), 1, + anon_sym_LPAREN, + STATE(3006), 2, + sym_template_string, + sym_arguments, + [220978] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(8312), 1, - anon_sym_QMARK, - [221094] = 5, + ACTIONS(8299), 1, + anon_sym_RBRACK, + [220994] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5244), 1, + STATE(5237), 1, sym_type_parameters, - STATE(5715), 1, + STATE(5725), 1, sym_formal_parameters, - [221110] = 5, + [221010] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6133), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(6155), 1, + anon_sym_LBRACE, + ACTIONS(8301), 1, + anon_sym_COMMA, + STATE(4815), 1, + aux_sym_extends_clause_repeat1, + [221026] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5415), 1, + STATE(5411), 1, sym_type_parameters, - STATE(5458), 1, + STATE(5579), 1, sym_formal_parameters, - [221126] = 5, + [221042] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5250), 1, + STATE(5241), 1, sym_type_parameters, - STATE(5710), 1, + STATE(5720), 1, sym_formal_parameters, - [221142] = 5, + [221058] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8314), 1, + ACTIONS(8304), 1, anon_sym_COLON, - [221158] = 5, + [221074] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8316), 1, + ACTIONS(8306), 1, anon_sym_COLON, - [221174] = 5, + [221090] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8318), 1, - anon_sym_COLON, - [221190] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(844), 1, - anon_sym_BQUOTE, - ACTIONS(5288), 1, - anon_sym_LPAREN, - STATE(2776), 2, - sym_template_string, - sym_arguments, - [221204] = 4, + ACTIONS(8308), 1, + anon_sym_RPAREN, + [221106] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8284), 1, + ACTIONS(8251), 1, anon_sym_COMMA, - STATE(4877), 1, + STATE(4887), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8320), 2, + ACTIONS(8310), 2, sym__automatic_semicolon, anon_sym_SEMI, - [221218] = 4, - ACTIONS(8148), 1, + [221120] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8322), 1, + ACTIONS(8312), 1, anon_sym_DQUOTE, - STATE(4889), 1, + STATE(4804), 1, aux_sym_string_repeat1, - ACTIONS(8146), 2, + ACTIONS(8229), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [221232] = 4, - ACTIONS(8148), 1, + [221134] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(8314), 1, + anon_sym_RPAREN, + [221150] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8322), 1, + ACTIONS(8312), 1, anon_sym_SQUOTE, - STATE(4888), 1, + STATE(4802), 1, aux_sym_string_repeat2, - ACTIONS(8170), 2, + ACTIONS(8227), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [221246] = 4, - ACTIONS(8148), 1, + [221164] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8324), 1, + ACTIONS(8316), 1, anon_sym_SQUOTE, - STATE(4888), 1, + STATE(4802), 1, aux_sym_string_repeat2, - ACTIONS(8170), 2, + ACTIONS(8227), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [221260] = 4, + [221178] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8316), 1, + anon_sym_DQUOTE, + STATE(4804), 1, + aux_sym_string_repeat1, + ACTIONS(8229), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [221192] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7202), 1, + anon_sym_EQ, + STATE(5435), 1, + sym_default_type, + ACTIONS(8318), 2, + anon_sym_COMMA, + anon_sym_GT, + [221206] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(85), 1, anon_sym_BQUOTE, - ACTIONS(4982), 1, + ACTIONS(4857), 1, anon_sym_LPAREN, - STATE(2425), 2, + STATE(2570), 2, sym_template_string, sym_arguments, - [221274] = 4, - ACTIONS(8148), 1, + [221220] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5361), 1, + sym_type_parameters, + STATE(5622), 1, + sym_formal_parameters, + [221236] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8320), 1, + anon_sym_SQUOTE, + STATE(4825), 1, + aux_sym_string_repeat2, + ACTIONS(8322), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [221250] = 5, + ACTIONS(3), 1, sym_comment, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, ACTIONS(8324), 1, + anon_sym_QMARK, + [221266] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8320), 1, anon_sym_DQUOTE, - STATE(4889), 1, + STATE(4826), 1, aux_sym_string_repeat1, - ACTIONS(8146), 2, + ACTIONS(8326), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [221288] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8326), 4, - sym__template_chars, - sym_escape_sequence, - anon_sym_BQUOTE, - anon_sym_DOLLAR_LBRACE, - [221298] = 5, + [221280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(7960), 1, anon_sym_extends, ACTIONS(8328), 1, anon_sym_RBRACK, - [221314] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - anon_sym_COMMA, - STATE(4808), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(8210), 2, - anon_sym_LBRACE, - anon_sym_implements, - [221328] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4340), 1, - anon_sym_COMMA, - STATE(4808), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(8206), 2, - anon_sym_LBRACE, - anon_sym_implements, - [221342] = 5, + [221296] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, + ACTIONS(93), 1, + anon_sym_AT, ACTIONS(8330), 1, - anon_sym_COLON, - [221358] = 5, + anon_sym_class, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [221312] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, ACTIONS(8332), 1, - anon_sym_COLON, - [221374] = 5, + anon_sym_RPAREN, + [221328] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, ACTIONS(8334), 1, anon_sym_COLON, - [221390] = 3, + [221344] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, - anon_sym_EQ_GT, - ACTIONS(4676), 3, - anon_sym_LPAREN, + ACTIONS(2920), 1, anon_sym_LT, - anon_sym_QMARK, - [221402] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5270), 1, + sym_type_parameters, + STATE(5499), 1, + sym_formal_parameters, + [221360] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(93), 1, + anon_sym_AT, ACTIONS(8336), 1, + anon_sym_export, + STATE(3792), 1, + aux_sym_export_statement_repeat1, + STATE(3823), 1, + sym_decorator, + [221376] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7017), 1, anon_sym_EQ_GT, - ACTIONS(4676), 3, + ACTIONS(4666), 3, anon_sym_LPAREN, anon_sym_LT, anon_sym_QMARK, - [221414] = 5, + [221388] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(3580), 1, + anon_sym_LPAREN, + STATE(4189), 1, + sym_formal_parameters, + STATE(5447), 1, + sym_type_parameters, + [221404] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, - anon_sym_AMP, - ACTIONS(8076), 1, - anon_sym_PIPE, - ACTIONS(8078), 1, - anon_sym_extends, ACTIONS(8338), 1, - anon_sym_RBRACK, - [221430] = 5, + anon_sym_EQ_GT, + ACTIONS(4666), 3, + anon_sym_LPAREN, + anon_sym_LT, + anon_sym_QMARK, + [221416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8074), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8076), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(7960), 1, anon_sym_extends, ACTIONS(8340), 1, anon_sym_RBRACK, - [221446] = 5, + [221432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7960), 1, anon_sym_extends, ACTIONS(8342), 1, - anon_sym_COLON, - [221462] = 2, + anon_sym_RBRACK, + [221448] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7878), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [221472] = 5, + ACTIONS(8344), 1, + anon_sym_COMMA, + STATE(4844), 1, + aux_sym_array_repeat1, + ACTIONS(6067), 2, + anon_sym_RPAREN, + anon_sym_RBRACK, + [221462] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8344), 1, + ACTIONS(8347), 1, anon_sym_QMARK, - [221488] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7732), 4, - sym__automatic_semicolon, - sym__function_signature_automatic_semicolon, - anon_sym_LBRACE, - anon_sym_SEMI, - [221498] = 5, + [221478] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(8346), 1, - anon_sym_COLON, - [221514] = 5, + ACTIONS(8349), 1, + anon_sym_RBRACK, + [221494] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(8348), 1, - anon_sym_QMARK, - [221530] = 5, + ACTIONS(8351), 1, + anon_sym_RBRACK, + [221510] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5449), 1, + STATE(5306), 1, sym_type_parameters, - STATE(5541), 1, + STATE(5774), 1, sym_formal_parameters, - [221546] = 4, - ACTIONS(8148), 1, + [221526] = 5, + ACTIONS(3), 1, sym_comment, - ACTIONS(8350), 1, - anon_sym_DQUOTE, - STATE(4829), 1, - aux_sym_string_repeat1, - ACTIONS(8352), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [221560] = 4, - ACTIONS(8148), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(8353), 1, + anon_sym_RPAREN, + [221542] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7833), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, + [221552] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8350), 1, + ACTIONS(8355), 1, anon_sym_SQUOTE, - STATE(4827), 1, + STATE(4802), 1, aux_sym_string_repeat2, - ACTIONS(8354), 2, + ACTIONS(8227), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [221574] = 5, + [221566] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5423), 1, + STATE(5214), 1, sym_type_parameters, - STATE(5612), 1, + STATE(5743), 1, sym_formal_parameters, - [221590] = 2, + [221582] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7658), 4, + ACTIONS(7829), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [221600] = 2, + [221592] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8355), 1, + anon_sym_DQUOTE, + STATE(4804), 1, + aux_sym_string_repeat1, + ACTIONS(8229), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [221606] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7540), 4, + ACTIONS(7746), 4, sym__automatic_semicolon, sym__function_signature_automatic_semicolon, anon_sym_LBRACE, anon_sym_SEMI, - [221610] = 5, + [221616] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5297), 1, - sym_type_parameters, - STATE(5725), 1, - sym_formal_parameters, + ACTIONS(7536), 4, + sym__automatic_semicolon, + sym__function_signature_automatic_semicolon, + anon_sym_LBRACE, + anon_sym_SEMI, [221626] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, - ACTIONS(8356), 1, - anon_sym_class, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(8357), 1, + anon_sym_COLON, [221642] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8358), 1, + ACTIONS(8359), 1, anon_sym_QMARK, [221658] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(8360), 1, - anon_sym_QMARK, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5264), 1, + sym_type_parameters, + STATE(5688), 1, + sym_formal_parameters, [221674] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8362), 1, + ACTIONS(8361), 1, anon_sym_QMARK, [221690] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8363), 1, + anon_sym_SQUOTE, + STATE(4851), 1, + aux_sym_string_repeat2, + ACTIONS(8365), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [221704] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8363), 1, + anon_sym_DQUOTE, + STATE(4854), 1, + aux_sym_string_repeat1, + ACTIONS(8367), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [221718] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7568), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5255), 1, + sym_type_parameters, + STATE(5824), 1, + sym_formal_parameters, + [221734] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7562), 1, anon_sym_EQ, - STATE(5347), 1, + STATE(5319), 1, sym__initializer, - ACTIONS(8364), 2, + ACTIONS(8369), 2, anon_sym_COMMA, - anon_sym_RPAREN, - [221704] = 5, + anon_sym_RBRACE, + [221748] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8366), 1, - anon_sym_QMARK, - [221720] = 5, + ACTIONS(8371), 1, + anon_sym_COLON, + [221764] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5405), 1, - sym_type_parameters, - STATE(5599), 1, - sym_formal_parameters, - [221736] = 5, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(8373), 1, + anon_sym_QMARK, + [221780] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8368), 1, + ACTIONS(8375), 1, anon_sym_COLON, - [221752] = 4, - ACTIONS(3), 1, + [221796] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8370), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8373), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [221766] = 5, + ACTIONS(8377), 1, + anon_sym_DQUOTE, + STATE(4895), 1, + aux_sym_string_repeat1, + ACTIONS(8379), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [221810] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(3744), 1, + anon_sym_LBRACE, + ACTIONS(3746), 3, + anon_sym_COMMA, anon_sym_LPAREN, - STATE(5442), 1, - sym_type_parameters, - STATE(5482), 1, - sym_formal_parameters, - [221782] = 5, + anon_sym_LBRACE_PIPE, + [221822] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8375), 1, + ACTIONS(8381), 1, anon_sym_QMARK, - [221798] = 4, + [221838] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8377), 1, + anon_sym_SQUOTE, + STATE(4897), 1, + aux_sym_string_repeat2, + ACTIONS(8383), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [221852] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4676), 1, - anon_sym_COLON, - ACTIONS(6202), 1, + ACTIONS(7562), 1, anon_sym_EQ, - ACTIONS(8377), 2, + STATE(5463), 1, + sym__initializer, + ACTIONS(8385), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [221812] = 4, + anon_sym_RPAREN, + [221866] = 5, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5286), 1, + sym_type_parameters, + STATE(5811), 1, + sym_formal_parameters, + [221882] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4752), 1, + ACTIONS(3764), 1, anon_sym_LBRACE, - ACTIONS(7289), 1, - anon_sym_STAR, - STATE(5470), 2, - sym_namespace_import, - sym_named_imports, - [221826] = 5, + ACTIONS(3766), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [221894] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(5025), 1, + anon_sym_LBRACE, + ACTIONS(5027), 3, + anon_sym_COMMA, anon_sym_LT, - ACTIONS(7444), 1, + anon_sym_LBRACE_PIPE, + [221906] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3604), 1, + anon_sym_LBRACE, + ACTIONS(3606), 3, + anon_sym_COMMA, anon_sym_LPAREN, - STATE(5427), 1, - sym_type_parameters, - STATE(5828), 1, - sym_formal_parameters, - [221842] = 4, - ACTIONS(8148), 1, + anon_sym_LBRACE_PIPE, + [221918] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8260), 1, - anon_sym_DQUOTE, - STATE(4805), 1, - aux_sym_string_repeat1, - ACTIONS(8379), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [221856] = 5, + ACTIONS(5122), 1, + anon_sym_LBRACE, + ACTIONS(5124), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [221930] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8381), 1, + ACTIONS(8387), 1, anon_sym_QMARK, - [221872] = 5, + [221946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(8383), 1, - anon_sym_QMARK, - [221888] = 5, + ACTIONS(8389), 1, + anon_sym_COMMA, + STATE(4879), 1, + aux_sym_extends_clause_repeat1, + ACTIONS(6133), 2, + anon_sym_LBRACE, + anon_sym_implements, + [221960] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, - anon_sym_AMP, - ACTIONS(8066), 1, - anon_sym_PIPE, - ACTIONS(8072), 1, - anon_sym_extends, - ACTIONS(8385), 1, - anon_sym_QMARK, - [221904] = 4, - ACTIONS(8148), 1, + ACTIONS(5069), 1, + anon_sym_LBRACE, + ACTIONS(5071), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [221972] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(8387), 1, + ACTIONS(5083), 1, + anon_sym_LBRACE, + ACTIONS(5085), 3, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_LBRACE_PIPE, + [221984] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5201), 1, + anon_sym_LBRACE, + ACTIONS(5203), 3, + anon_sym_COMMA, + anon_sym_LT, + anon_sym_LBRACE_PIPE, + [221996] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8392), 1, anon_sym_SQUOTE, - STATE(4907), 1, + STATE(4915), 1, aux_sym_string_repeat2, - ACTIONS(8389), 2, + ACTIONS(8394), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [221918] = 4, + [222010] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8284), 1, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5281), 1, + sym_type_parameters, + STATE(5501), 1, + sym_formal_parameters, + [222026] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 1, + anon_sym_from, + STATE(5277), 1, + sym__from_clause, + ACTIONS(8396), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [222040] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7652), 1, + sym_identifier, + STATE(5388), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [222054] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8251), 1, anon_sym_COMMA, - STATE(4862), 1, + STATE(4745), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8391), 2, + ACTIONS(8398), 2, sym__automatic_semicolon, anon_sym_SEMI, - [221932] = 4, - ACTIONS(8148), 1, + [222068] = 4, + ACTIONS(3), 1, sym_comment, - ACTIONS(8387), 1, - anon_sym_DQUOTE, - STATE(4725), 1, - aux_sym_string_repeat1, - ACTIONS(8393), 2, - sym_unescaped_double_string_fragment, - sym_escape_sequence, - [221946] = 5, + ACTIONS(7652), 1, + sym_identifier, + STATE(5368), 1, + sym__import_export_specifier, + ACTIONS(7654), 2, + anon_sym_type, + anon_sym_typeof, + [222082] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7975), 1, anon_sym_extends, - ACTIONS(8395), 1, + ACTIONS(8400), 1, anon_sym_QMARK, - [221962] = 5, + [222098] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7392), 1, - anon_sym_EQ_GT, - ACTIONS(8012), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8014), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8016), 1, + ACTIONS(7960), 1, anon_sym_extends, - [221978] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8284), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8397), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [221992] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5337), 1, - sym_type_parameters, - STATE(5795), 1, - sym_formal_parameters, - [222008] = 4, + ACTIONS(8402), 1, + anon_sym_RBRACK, + [222114] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, - anon_sym_from, - STATE(5377), 1, - sym__from_clause, - ACTIONS(8399), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [222022] = 5, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(8404), 1, + anon_sym_COLON, + [222130] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(8401), 1, - anon_sym_QMARK, - [222038] = 5, + ACTIONS(8406), 1, + anon_sym_RBRACK, + [222146] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(8403), 1, - anon_sym_COLON, - [222054] = 4, + ACTIONS(8408), 1, + anon_sym_RBRACK, + [222162] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8284), 1, + ACTIONS(8251), 1, anon_sym_COMMA, - STATE(4901), 1, + STATE(4910), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8405), 2, + ACTIONS(8410), 2, sym__automatic_semicolon, anon_sym_SEMI, - [222068] = 4, + [222176] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8412), 1, + anon_sym_DQUOTE, + STATE(4804), 1, + aux_sym_string_repeat1, + ACTIONS(8229), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [222190] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8284), 1, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, + ACTIONS(8414), 1, + anon_sym_RPAREN, + [222206] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8412), 1, + anon_sym_SQUOTE, + STATE(4802), 1, + aux_sym_string_repeat2, + ACTIONS(8227), 2, + sym_unescaped_single_string_fragment, + sym_escape_sequence, + [222220] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8251), 1, anon_sym_COMMA, - STATE(4900), 1, + STATE(4905), 1, aux_sym_variable_declaration_repeat1, - ACTIONS(8407), 2, + ACTIONS(8416), 2, sym__automatic_semicolon, anon_sym_SEMI, - [222082] = 5, + [222234] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, + ACTIONS(2286), 1, anon_sym_COMMA, - ACTIONS(8298), 1, + ACTIONS(8261), 1, anon_sym_EQ, - ACTIONS(8409), 1, + ACTIONS(8418), 1, anon_sym_RBRACK, - STATE(4910), 1, + STATE(4953), 1, aux_sym_array_pattern_repeat1, - [222098] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5406), 1, - sym_type_parameters, - STATE(5806), 1, - sym_formal_parameters, - [222114] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5341), 1, - sym_type_parameters, - STATE(5661), 1, - sym_formal_parameters, - [222130] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7568), 1, - anon_sym_EQ, - STATE(5453), 1, - sym__initializer, - ACTIONS(8411), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [222144] = 4, - ACTIONS(8148), 1, - sym_comment, - ACTIONS(8413), 1, - anon_sym_SQUOTE, - STATE(4888), 1, - aux_sym_string_repeat2, - ACTIONS(8415), 2, - sym_unescaped_single_string_fragment, - sym_escape_sequence, - [222158] = 4, - ACTIONS(8148), 1, + [222250] = 4, + ACTIONS(8158), 1, sym_comment, - ACTIONS(8418), 1, + ACTIONS(8392), 1, anon_sym_DQUOTE, - STATE(4889), 1, + STATE(4916), 1, aux_sym_string_repeat1, ACTIONS(8420), 2, sym_unescaped_double_string_fragment, sym_escape_sequence, - [222172] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - ACTIONS(8423), 1, - anon_sym_RPAREN, - [222188] = 5, + [222264] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, + ACTIONS(2920), 1, anon_sym_LT, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5352), 1, + STATE(5282), 1, sym_type_parameters, - STATE(5591), 1, + STATE(5571), 1, sym_formal_parameters, - [222204] = 5, + [222280] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7956), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7958), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7960), 1, anon_sym_extends, - ACTIONS(8425), 1, - anon_sym_QMARK, - [222220] = 4, + ACTIONS(8422), 1, + anon_sym_RBRACK, + [222296] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4340), 1, + ACTIONS(8251), 1, anon_sym_COMMA, - STATE(4832), 1, - aux_sym_extends_clause_repeat1, - ACTIONS(5825), 2, - anon_sym_LBRACE, - anon_sym_implements, - [222234] = 5, + STATE(4745), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8424), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [222310] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7474), 1, anon_sym_extends, - ACTIONS(8427), 1, - anon_sym_QMARK, - [222250] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5353), 1, - sym_type_parameters, - STATE(5495), 1, - sym_formal_parameters, - [222266] = 4, + ACTIONS(8426), 1, + anon_sym_RPAREN, + [222326] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8429), 1, + ACTIONS(8251), 1, anon_sym_COMMA, - STATE(4896), 1, - aux_sym_array_repeat1, - ACTIONS(6007), 2, - anon_sym_RPAREN, - anon_sym_RBRACK, - [222280] = 5, + STATE(4745), 1, + aux_sym_variable_declaration_repeat1, + ACTIONS(8428), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [222340] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(4160), 1, - sym_formal_parameters, - STATE(5437), 1, - sym_type_parameters, - [222296] = 5, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(8430), 1, + anon_sym_QMARK, + [222356] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(93), 1, - anon_sym_AT, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7474), 1, + anon_sym_extends, ACTIONS(8432), 1, - anon_sym_export, - STATE(3790), 1, - aux_sym_export_statement_repeat1, - STATE(3823), 1, - sym_decorator, - [222312] = 5, + anon_sym_COLON, + [222372] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7971), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7973), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7975), 1, anon_sym_extends, ACTIONS(8434), 1, - anon_sym_COLON, - [222328] = 4, + anon_sym_QMARK, + [222388] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8284), 1, + ACTIONS(4732), 1, + anon_sym_LBRACE, + ACTIONS(7341), 1, + anon_sym_STAR, + STATE(5480), 2, + sym_namespace_import, + sym_named_imports, + [222402] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8251), 1, anon_sym_COMMA, - STATE(4862), 1, + STATE(4745), 1, aux_sym_variable_declaration_repeat1, ACTIONS(8436), 2, sym__automatic_semicolon, anon_sym_SEMI, - [222342] = 4, + [222416] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8284), 1, - anon_sym_COMMA, - STATE(4862), 1, - aux_sym_variable_declaration_repeat1, - ACTIONS(8438), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [222356] = 5, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + ACTIONS(8438), 1, + anon_sym_QMARK, + [222432] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7462), 1, + ACTIONS(7474), 1, anon_sym_extends, ACTIONS(8440), 1, - anon_sym_RPAREN, - [222372] = 5, + anon_sym_COLON, + [222448] = 5, ACTIONS(3), 1, sym_comment, - ACTIONS(8064), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(8066), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7474), 1, anon_sym_extends, ACTIONS(8442), 1, - anon_sym_QMARK, - [222388] = 5, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5380), 1, - sym_type_parameters, - STATE(5588), 1, - sym_formal_parameters, - [222404] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7236), 1, - anon_sym_EQ, - STATE(5425), 1, - sym_default_type, - ACTIONS(8444), 2, - anon_sym_COMMA, - anon_sym_GT, - [222418] = 4, + anon_sym_COLON, + [222464] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(594), 1, anon_sym_BQUOTE, - ACTIONS(4783), 1, + ACTIONS(4789), 1, anon_sym_LPAREN, - STATE(2185), 2, + STATE(2273), 2, sym_template_string, sym_arguments, - [222432] = 4, - ACTIONS(8144), 1, - anon_sym_SQUOTE, - ACTIONS(8148), 1, + [222478] = 4, + ACTIONS(8158), 1, sym_comment, - STATE(4888), 1, + ACTIONS(8444), 1, + anon_sym_SQUOTE, + STATE(4802), 1, aux_sym_string_repeat2, - ACTIONS(8170), 2, + ACTIONS(8227), 2, sym_unescaped_single_string_fragment, sym_escape_sequence, - [222446] = 3, + [222492] = 4, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(8444), 1, + anon_sym_DQUOTE, + STATE(4804), 1, + aux_sym_string_repeat1, + ACTIONS(8229), 2, + sym_unescaped_double_string_fragment, + sym_escape_sequence, + [222506] = 5, ACTIONS(3), 1, sym_comment, + ACTIONS(7971), 1, + anon_sym_AMP, + ACTIONS(7973), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, ACTIONS(8446), 1, - anon_sym_as, - ACTIONS(8448), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [222457] = 2, + anon_sym_QMARK, + [222522] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8450), 3, - sym__automatic_semicolon, + ACTIONS(2317), 1, anon_sym_COMMA, - anon_sym_SEMI, - [222466] = 4, + ACTIONS(8448), 1, + anon_sym_RPAREN, + STATE(4844), 1, + aux_sym_array_repeat1, + [222535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, + ACTIONS(8450), 1, + anon_sym_LBRACE, + ACTIONS(8452), 2, anon_sym_COMMA, - ACTIONS(8452), 1, - anon_sym_RBRACK, - STATE(4916), 1, - aux_sym_array_pattern_repeat1, - [222479] = 4, + anon_sym_LBRACE_PIPE, + [222546] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8454), 1, anon_sym_COMMA, ACTIONS(8456), 1, anon_sym_RBRACE, - STATE(4983), 1, + STATE(4994), 1, aux_sym_object_repeat1, - [222492] = 4, + [222559] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, - anon_sym_COMMA, + ACTIONS(4374), 1, + anon_sym_GT, ACTIONS(8458), 1, - anon_sym_RBRACE, - STATE(4981), 1, - aux_sym_object_pattern_repeat1, - [222505] = 4, + anon_sym_COMMA, + STATE(5098), 1, + aux_sym_implements_clause_repeat1, + [222572] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, - anon_sym_COMMA, ACTIONS(8460), 1, - anon_sym_RBRACE, - STATE(4981), 1, - aux_sym_object_pattern_repeat1, - [222518] = 4, + sym_identifier, + ACTIONS(8462), 1, + anon_sym_require, + STATE(5153), 1, + sym_nested_identifier, + [222585] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(8462), 1, - anon_sym_RBRACE, - STATE(4983), 1, - aux_sym_object_repeat1, - [222531] = 4, + ACTIONS(6135), 1, + anon_sym_RPAREN, + STATE(4943), 1, + aux_sym_array_repeat1, + [222598] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8464), 1, anon_sym_COMMA, ACTIONS(8466), 1, - anon_sym_RBRACK, - STATE(4986), 1, - aux_sym_tuple_type_repeat1, - [222544] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8468), 1, - anon_sym_COMMA, - ACTIONS(8471), 1, - anon_sym_RBRACK, - STATE(4916), 1, - aux_sym_array_pattern_repeat1, - [222557] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7652), 1, - anon_sym_extends, - [222570] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8473), 1, - anon_sym_COMMA, - ACTIONS(8475), 1, anon_sym_RBRACE, - STATE(4982), 1, + STATE(4988), 1, aux_sym_export_clause_repeat1, - [222583] = 4, + [222611] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6854), 1, - anon_sym_RPAREN, - ACTIONS(8477), 1, + ACTIONS(8468), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4975), 1, - aux_sym_formal_parameters_repeat1, - [222596] = 4, + anon_sym_SEMI, + [222620] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(8479), 1, - anon_sym_RBRACK, - STATE(4896), 1, + ACTIONS(6135), 1, + anon_sym_RPAREN, + STATE(4844), 1, aux_sym_array_repeat1, - [222609] = 4, + [222633] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(8470), 1, anon_sym_COMMA, - ACTIONS(8481), 1, + ACTIONS(8472), 1, anon_sym_RBRACK, - STATE(4896), 1, - aux_sym_array_repeat1, - [222622] = 4, + STATE(4929), 1, + aux_sym_tuple_type_repeat1, + [222646] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7526), 1, + ACTIONS(7602), 1, sym_identifier, - ACTIONS(7528), 1, + ACTIONS(7604), 1, anon_sym_LBRACK, - ACTIONS(7530), 1, + ACTIONS(7606), 1, sym_private_property_identifier, - [222635] = 4, + [222659] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4352), 1, - anon_sym_GT, - ACTIONS(8483), 1, + ACTIONS(3540), 1, + anon_sym_RBRACK, + ACTIONS(8474), 1, anon_sym_COMMA, - STATE(4989), 1, - aux_sym_implements_clause_repeat1, - [222648] = 4, + STATE(5005), 1, + aux_sym_tuple_type_repeat1, + [222672] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, - sym_identifier, - ACTIONS(8487), 1, - anon_sym_GT, - STATE(5419), 1, - sym_type_parameter, - [222661] = 4, + ACTIONS(8452), 3, + anon_sym_LBRACE, + anon_sym_COMMA, + anon_sym_implements, + [222681] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8487), 1, - anon_sym_GT, - ACTIONS(8489), 1, + ACTIONS(8476), 1, anon_sym_COMMA, - STATE(4993), 1, - aux_sym_type_parameters_repeat1, - [222674] = 4, + ACTIONS(8478), 1, + anon_sym_RBRACE, + STATE(5154), 1, + aux_sym_named_imports_repeat1, + [222694] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, + ACTIONS(8480), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8491), 1, - anon_sym_RBRACK, - STATE(4916), 1, - aux_sym_array_pattern_repeat1, - [222687] = 3, + anon_sym_SEMI, + [222703] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8298), 1, - anon_sym_EQ, - ACTIONS(8471), 2, + ACTIONS(8454), 1, anon_sym_COMMA, - anon_sym_RBRACK, - [222698] = 2, + ACTIONS(8482), 1, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym_object_repeat1, + [222716] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6955), 3, + ACTIONS(8480), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [222707] = 4, + [222725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8493), 1, - anon_sym_EQ, - ACTIONS(8495), 1, + ACTIONS(6706), 1, anon_sym_COMMA, - ACTIONS(8497), 1, - anon_sym_from, - [222720] = 2, + ACTIONS(8484), 1, + anon_sym_RBRACE, + STATE(4987), 1, + aux_sym_object_pattern_repeat1, + [222738] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6007), 3, + ACTIONS(8486), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RPAREN, - anon_sym_RBRACK, - [222729] = 4, + anon_sym_SEMI, + [222747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - ACTIONS(8499), 1, - anon_sym_LPAREN, - STATE(1056), 1, - sym_statement_block, - [222742] = 4, + STATE(5393), 1, + sym_type_predicate, + ACTIONS(8488), 2, + sym_identifier, + sym_this, + [222758] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7967), 1, - anon_sym_LBRACE, - ACTIONS(8501), 1, + ACTIONS(8490), 1, anon_sym_COMMA, - STATE(4932), 1, - aux_sym_implements_clause_repeat1, - [222755] = 4, + ACTIONS(8492), 1, + anon_sym_RBRACE, + STATE(5032), 1, + aux_sym_export_clause_repeat1, + [222771] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8504), 1, + ACTIONS(8494), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8506), 1, - anon_sym_RBRACK, - STATE(4990), 1, - aux_sym_tuple_type_repeat1, - [222768] = 4, + anon_sym_SEMI, + [222780] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1878), 1, - anon_sym_LBRACE, - STATE(1076), 1, - sym_object_type, - [222781] = 4, + ACTIONS(8496), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222789] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8508), 1, + ACTIONS(8498), 1, anon_sym_COMMA, - ACTIONS(8510), 1, + ACTIONS(8500), 1, anon_sym_GT, - STATE(4956), 1, + STATE(4965), 1, aux_sym_type_parameters_repeat1, - [222794] = 4, + [222802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(8468), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6108), 1, - anon_sym_RPAREN, - STATE(5008), 1, - aux_sym_array_repeat1, - [222807] = 4, + anon_sym_SEMI, + [222811] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(6108), 1, + ACTIONS(8502), 1, anon_sym_RPAREN, - STATE(4896), 1, + STATE(4844), 1, aux_sym_array_repeat1, - [222820] = 4, + [222824] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3112), 1, - anon_sym_while, - ACTIONS(8512), 1, - anon_sym_else, - STATE(1162), 1, - sym_else_clause, + ACTIONS(8504), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, [222833] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, + ACTIONS(2286), 1, anon_sym_COMMA, - ACTIONS(8409), 1, + ACTIONS(8418), 1, anon_sym_RBRACK, - STATE(4916), 1, + STATE(5004), 1, aux_sym_array_pattern_repeat1, [222846] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(6087), 1, + ACTIONS(6131), 1, anon_sym_RBRACK, - STATE(4896), 1, + STATE(4844), 1, aux_sym_array_repeat1, [222859] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4306), 1, - anon_sym_GT, - ACTIONS(8514), 1, + ACTIONS(6814), 1, + anon_sym_RPAREN, + ACTIONS(8506), 1, anon_sym_COMMA, - STATE(4989), 1, - aux_sym_implements_clause_repeat1, + STATE(5138), 1, + aux_sym_formal_parameters_repeat1, [222872] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(6087), 1, + ACTIONS(6131), 1, anon_sym_RBRACK, - STATE(4920), 1, + STATE(4952), 1, aux_sym_array_repeat1, [222885] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, + ACTIONS(2286), 1, anon_sym_COMMA, - ACTIONS(8409), 1, + ACTIONS(8418), 1, anon_sym_RBRACK, - STATE(4910), 1, + STATE(4953), 1, aux_sym_array_pattern_repeat1, - [222898] = 3, + [222898] = 2, ACTIONS(3), 1, sym_comment, - STATE(5383), 1, - sym_type_predicate, - ACTIONS(8516), 2, - sym_identifier, - sym_this, - [222909] = 4, + ACTIONS(8508), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [222907] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8518), 1, + ACTIONS(8510), 1, anon_sym_COMMA, - ACTIONS(8520), 1, + ACTIONS(8512), 1, anon_sym_RPAREN, - STATE(4919), 1, + STATE(4947), 1, aux_sym_formal_parameters_repeat1, - [222922] = 4, + [222920] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6836), 1, - anon_sym_RPAREN, - ACTIONS(8522), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - STATE(4975), 1, - aux_sym_formal_parameters_repeat1, - [222935] = 4, + ACTIONS(8514), 1, + anon_sym_RBRACK, + STATE(4844), 1, + aux_sym_array_repeat1, + [222933] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, - sym_identifier, - ACTIONS(8524), 1, - anon_sym_GT, - STATE(5419), 1, - sym_type_parameter, - [222948] = 4, + ACTIONS(2286), 1, + anon_sym_COMMA, + ACTIONS(8516), 1, + anon_sym_RBRACK, + STATE(5004), 1, + aux_sym_array_pattern_repeat1, + [222946] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, + ACTIONS(6706), 1, anon_sym_COMMA, - ACTIONS(8526), 1, + ACTIONS(8518), 1, anon_sym_RBRACE, - STATE(4981), 1, + STATE(4987), 1, aux_sym_object_pattern_repeat1, - [222961] = 4, + [222959] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8454), 1, anon_sym_COMMA, - ACTIONS(8528), 1, + ACTIONS(8520), 1, anon_sym_RBRACE, - STATE(4983), 1, + STATE(4994), 1, aux_sym_object_repeat1, - [222974] = 4, + [222972] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8454), 1, anon_sym_COMMA, - ACTIONS(8528), 1, + ACTIONS(8520), 1, anon_sym_RBRACE, - STATE(4911), 1, + STATE(4933), 1, aux_sym_object_repeat1, - [222987] = 4, + [222985] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, + ACTIONS(6706), 1, anon_sym_COMMA, - ACTIONS(8526), 1, + ACTIONS(8518), 1, anon_sym_RBRACE, - STATE(4912), 1, + STATE(4935), 1, aux_sym_object_pattern_repeat1, - [223000] = 2, + [222998] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7578), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [223009] = 4, + ACTIONS(8522), 1, + anon_sym_COMMA, + ACTIONS(8524), 1, + anon_sym_RBRACK, + STATE(4998), 1, + aux_sym_tuple_type_repeat1, + [223011] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2329), 1, + ACTIONS(2335), 1, anon_sym_LBRACE, - ACTIONS(8530), 1, + ACTIONS(8526), 1, sym_identifier, - STATE(4605), 1, + STATE(4483), 1, sym_export_clause, - [223022] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8532), 1, - anon_sym_EQ, - ACTIONS(4610), 2, - anon_sym_in, - anon_sym_of, - [223033] = 3, + [223024] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8534), 1, - anon_sym_as, - ACTIONS(8536), 2, + ACTIONS(8494), 3, + sym__automatic_semicolon, anon_sym_COMMA, - anon_sym_RBRACE, - [223044] = 4, + anon_sym_SEMI, + [223033] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8524), 1, - anon_sym_GT, - ACTIONS(8538), 1, + ACTIONS(8528), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(4993), 1, - aux_sym_type_parameters_repeat1, - [223057] = 2, + anon_sym_SEMI, + [223042] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8540), 3, + ACTIONS(8504), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223066] = 3, + [223051] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5048), 1, - anon_sym_LBRACE, - ACTIONS(5050), 2, + ACTIONS(4408), 1, + anon_sym_GT, + ACTIONS(8530), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, + STATE(5098), 1, + aux_sym_implements_clause_repeat1, + [223064] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8532), 1, + sym_identifier, + ACTIONS(8534), 1, + anon_sym_GT, + STATE(5429), 1, + sym_type_parameter, [223077] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8542), 1, + ACTIONS(8534), 1, + anon_sym_GT, + ACTIONS(8536), 1, anon_sym_COMMA, - ACTIONS(8544), 1, - anon_sym_RBRACE, - STATE(5013), 1, - aux_sym_export_clause_repeat1, + STATE(5088), 1, + aux_sym_type_parameters_repeat1, [223090] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5063), 1, - anon_sym_LBRACE, - ACTIONS(5065), 2, - anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [223101] = 3, + ACTIONS(8538), 1, + anon_sym_EQ, + ACTIONS(4598), 2, + anon_sym_in, + anon_sym_of, + [223101] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3732), 1, - anon_sym_LBRACE, - ACTIONS(3734), 2, + ACTIONS(7041), 1, + anon_sym_RBRACE, + ACTIONS(8540), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [223112] = 3, + STATE(4977), 1, + aux_sym_enum_body_repeat1, + [223114] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3670), 1, + ACTIONS(6133), 3, anon_sym_LBRACE, - ACTIONS(3672), 2, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, + anon_sym_implements, [223123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8540), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [223132] = 3, + ACTIONS(7570), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [223132] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3768), 1, - anon_sym_LBRACE, - ACTIONS(3770), 2, + ACTIONS(6862), 1, + anon_sym_RPAREN, + ACTIONS(8542), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [223143] = 4, + STATE(5138), 1, + aux_sym_formal_parameters_repeat1, + [223145] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - STATE(4631), 1, + STATE(4510), 1, sym_object_type, - [223156] = 4, + [223158] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(6104), 1, - anon_sym_RBRACK, - STATE(5015), 1, - aux_sym_array_repeat1, - [223169] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(6156), 1, + ACTIONS(6159), 1, anon_sym_RPAREN, - STATE(5003), 1, + STATE(4918), 1, aux_sym_array_repeat1, - [223182] = 4, + [223171] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(6156), 1, + ACTIONS(6159), 1, anon_sym_RPAREN, - STATE(4896), 1, + STATE(4844), 1, aux_sym_array_repeat1, - [223195] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8546), 1, - anon_sym_COMMA, - ACTIONS(8548), 1, - anon_sym_RBRACE, - STATE(5014), 1, - aux_sym_named_imports_repeat1, - [223208] = 3, + [223184] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7436), 1, - anon_sym_DOT, - ACTIONS(8550), 2, + ACTIONS(8468), 3, sym__automatic_semicolon, + anon_sym_COMMA, anon_sym_SEMI, - [223219] = 2, + [223193] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8552), 3, + ACTIONS(8544), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223228] = 2, + [223202] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8554), 3, + ACTIONS(8546), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [223237] = 2, + [223211] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8373), 3, - sym__automatic_semicolon, + ACTIONS(8369), 1, + anon_sym_RBRACE, + ACTIONS(8548), 1, anon_sym_COMMA, - anon_sym_SEMI, - [223246] = 4, + STATE(4977), 1, + aux_sym_enum_body_repeat1, + [223224] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(3078), 1, + anon_sym_LBRACE, + ACTIONS(8551), 1, + anon_sym_LPAREN, + STATE(1053), 1, + sym_statement_block, + [223237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8553), 1, + anon_sym_EQ, + ACTIONS(4639), 2, anon_sym_COMMA, - ACTIONS(8556), 1, - anon_sym_RBRACE, - STATE(4983), 1, - aux_sym_object_repeat1, - [223259] = 4, + anon_sym_RBRACK, + [223248] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8558), 1, + ACTIONS(6067), 3, anon_sym_COMMA, - ACTIONS(8561), 1, anon_sym_RPAREN, - STATE(4975), 1, - aux_sym_formal_parameters_repeat1, - [223272] = 4, + anon_sym_RBRACK, + [223257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(8546), 3, + sym__automatic_semicolon, anon_sym_COMMA, + anon_sym_SEMI, + [223266] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2920), 1, + anon_sym_LT, ACTIONS(8556), 1, - anon_sym_RBRACE, - STATE(5012), 1, - aux_sym_object_repeat1, - [223285] = 4, + anon_sym_EQ, + STATE(5697), 1, + sym_type_parameters, + [223279] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8563), 1, + STATE(4376), 1, + sym_type_predicate, + ACTIONS(8558), 2, sym_identifier, - ACTIONS(8565), 1, - anon_sym_require, - STATE(4970), 1, - sym_nested_identifier, - [223298] = 4, + sym_this, + [223290] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8567), 1, + ACTIONS(8560), 1, + anon_sym_EQ, + ACTIONS(8562), 1, anon_sym_COMMA, - ACTIONS(8569), 1, - anon_sym_RBRACE, - STATE(4969), 1, - aux_sym_named_imports_repeat1, - [223311] = 3, + ACTIONS(8564), 1, + anon_sym_from, + [223303] = 2, ACTIONS(3), 1, sym_comment, - STATE(4356), 1, - sym_type_predicate, - ACTIONS(8571), 2, - sym_identifier, - sym_this, - [223322] = 4, + ACTIONS(8566), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [223312] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(8300), 1, + ACTIONS(8568), 1, anon_sym_RBRACK, - STATE(4916), 1, - aux_sym_array_pattern_repeat1, - [223335] = 4, + STATE(4844), 1, + aux_sym_array_repeat1, + [223325] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8573), 1, + ACTIONS(8570), 1, anon_sym_COMMA, - ACTIONS(8576), 1, + ACTIONS(8573), 1, anon_sym_RBRACE, - STATE(4981), 1, + STATE(4987), 1, aux_sym_object_pattern_repeat1, - [223348] = 4, + [223338] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8578), 1, + ACTIONS(8575), 1, anon_sym_COMMA, - ACTIONS(8580), 1, + ACTIONS(8577), 1, anon_sym_RBRACE, - STATE(5013), 1, + STATE(5052), 1, aux_sym_export_clause_repeat1, - [223361] = 4, + [223351] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8582), 1, + ACTIONS(8566), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8585), 1, - anon_sym_RBRACE, - STATE(4983), 1, - aux_sym_object_repeat1, - [223374] = 2, + anon_sym_SEMI, + [223360] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7446), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [223383] = 4, + ACTIONS(8261), 1, + anon_sym_EQ, + ACTIONS(8579), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [223371] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(8587), 1, - anon_sym_RBRACE, - STATE(4983), 1, - aux_sym_object_repeat1, - [223396] = 4, + ACTIONS(8581), 1, + anon_sym_RBRACK, + STATE(4844), 1, + aux_sym_array_repeat1, + [223384] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3560), 1, + ACTIONS(2286), 1, + anon_sym_COMMA, + ACTIONS(8583), 1, anon_sym_RBRACK, - ACTIONS(8589), 1, + STATE(5004), 1, + aux_sym_array_pattern_repeat1, + [223397] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8566), 3, + sym__automatic_semicolon, anon_sym_COMMA, - STATE(5023), 1, - aux_sym_tuple_type_repeat1, - [223409] = 4, + anon_sym_SEMI, + [223406] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, + ACTIONS(8585), 1, anon_sym_COMMA, - ACTIONS(8591), 1, + ACTIONS(8588), 1, anon_sym_RBRACE, - STATE(4981), 1, - aux_sym_object_pattern_repeat1, - [223422] = 3, + STATE(4994), 1, + aux_sym_object_repeat1, + [223419] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7436), 1, - anon_sym_DOT, - ACTIONS(8593), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [223433] = 4, + ACTIONS(8454), 1, + anon_sym_COMMA, + ACTIONS(8590), 1, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym_object_repeat1, + [223432] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7967), 1, - anon_sym_GT, - ACTIONS(8595), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - STATE(4989), 1, - aux_sym_implements_clause_repeat1, - [223446] = 4, + ACTIONS(8592), 1, + anon_sym_RPAREN, + STATE(4844), 1, + aux_sym_array_repeat1, + [223445] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3550), 1, - anon_sym_RBRACK, - ACTIONS(8598), 1, - anon_sym_COMMA, - STATE(5023), 1, - aux_sym_tuple_type_repeat1, - [223459] = 3, + ACTIONS(7430), 1, + anon_sym_DOT, + ACTIONS(8594), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [223456] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, - anon_sym_EQ, - ACTIONS(4461), 2, + ACTIONS(3564), 1, + anon_sym_RBRACK, + ACTIONS(8596), 1, anon_sym_COMMA, - anon_sym_RBRACE, - [223470] = 4, + STATE(5005), 1, + aux_sym_tuple_type_repeat1, + [223469] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, + ACTIONS(8532), 1, sym_identifier, - ACTIONS(8602), 1, + ACTIONS(8598), 1, anon_sym_GT, - STATE(5419), 1, + STATE(5429), 1, sym_type_parameter, - [223483] = 4, + [223482] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8604), 1, + ACTIONS(8600), 1, anon_sym_COMMA, - ACTIONS(8607), 1, - anon_sym_GT, - STATE(4993), 1, - aux_sym_type_parameters_repeat1, - [223496] = 3, + ACTIONS(8602), 1, + anon_sym_RBRACK, + STATE(5014), 1, + aux_sym_tuple_type_repeat1, + [223495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6106), 1, - anon_sym_LBRACE, - ACTIONS(6077), 2, + ACTIONS(6706), 1, anon_sym_COMMA, - anon_sym_LBRACE_PIPE, - [223507] = 2, + ACTIONS(8604), 1, + anon_sym_RBRACE, + STATE(4987), 1, + aux_sym_object_pattern_repeat1, + [223508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8609), 3, - sym__automatic_semicolon, + ACTIONS(3560), 1, + anon_sym_RBRACK, + ACTIONS(8606), 1, anon_sym_COMMA, - anon_sym_SEMI, - [223516] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8485), 1, - sym_identifier, - ACTIONS(8611), 1, - anon_sym_GT, - STATE(5419), 1, - sym_type_parameter, - [223529] = 4, + STATE(5005), 1, + aux_sym_tuple_type_repeat1, + [223521] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, + ACTIONS(8608), 1, + anon_sym_EQ, + ACTIONS(4557), 2, anon_sym_COMMA, - ACTIONS(8613), 1, anon_sym_RBRACE, - STATE(4981), 1, - aux_sym_object_pattern_repeat1, - [223542] = 4, + [223532] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7757), 1, + ACTIONS(8579), 1, + anon_sym_RBRACK, + ACTIONS(8610), 1, anon_sym_COMMA, - ACTIONS(8615), 1, - anon_sym_LBRACE, - STATE(4932), 1, - aux_sym_implements_clause_repeat1, - [223555] = 4, + STATE(5004), 1, + aux_sym_array_pattern_repeat1, + [223545] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(8613), 1, anon_sym_COMMA, - ACTIONS(8617), 1, - anon_sym_RBRACE, - STATE(4983), 1, - aux_sym_object_repeat1, - [223568] = 4, + ACTIONS(8616), 1, + anon_sym_RBRACK, + STATE(5005), 1, + aux_sym_tuple_type_repeat1, + [223558] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(738), 1, anon_sym_LBRACE_PIPE, - ACTIONS(2000), 1, + ACTIONS(2083), 1, anon_sym_LBRACE, - STATE(4657), 1, + STATE(4536), 1, sym_object_type, - [223581] = 4, + [223571] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8619), 1, + ACTIONS(8066), 1, anon_sym_COMMA, - ACTIONS(8621), 1, + ACTIONS(8068), 1, anon_sym_RBRACE, - STATE(4959), 1, - aux_sym_export_clause_repeat1, - [223594] = 2, + STATE(5038), 1, + aux_sym_enum_body_repeat1, + [223584] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8623), 3, - sym__automatic_semicolon, + ACTIONS(6706), 1, anon_sym_COMMA, - anon_sym_SEMI, - [223603] = 4, + ACTIONS(8618), 1, + anon_sym_RBRACE, + STATE(4987), 1, + aux_sym_object_pattern_repeat1, + [223597] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(4466), 1, + anon_sym_GT, + ACTIONS(8620), 1, anon_sym_COMMA, - ACTIONS(8625), 1, - anon_sym_RPAREN, - STATE(4896), 1, - aux_sym_array_repeat1, - [223616] = 4, + STATE(5098), 1, + aux_sym_implements_clause_repeat1, + [223610] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2020), 1, - anon_sym_DQUOTE, - ACTIONS(2022), 1, - anon_sym_SQUOTE, - STATE(5421), 1, - sym_string, - [223629] = 4, + ACTIONS(8454), 1, + anon_sym_COMMA, + ACTIONS(8622), 1, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym_object_repeat1, + [223623] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(614), 1, - anon_sym_LBRACE_PIPE, - ACTIONS(1878), 1, - anon_sym_LBRACE, - STATE(1178), 1, - sym_object_type, - [223642] = 4, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(6157), 1, + anon_sym_RPAREN, + STATE(5016), 1, + aux_sym_array_repeat1, + [223636] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, - anon_sym_from, - ACTIONS(8627), 1, - anon_sym_as, - STATE(5388), 1, - sym__from_clause, - [223655] = 4, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(6157), 1, + anon_sym_RPAREN, + STATE(4844), 1, + aux_sym_array_repeat1, + [223649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7979), 1, + ACTIONS(8624), 1, + anon_sym_as, + ACTIONS(8626), 2, anon_sym_COMMA, - ACTIONS(7981), 1, anon_sym_RBRACE, - STATE(5040), 1, - aux_sym_enum_body_repeat1, - [223668] = 4, + [223660] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3548), 1, + anon_sym_RBRACK, + ACTIONS(8628), 1, + anon_sym_COMMA, + STATE(5005), 1, + aux_sym_tuple_type_repeat1, + [223673] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(8629), 1, + ACTIONS(6140), 1, anon_sym_RPAREN, - STATE(4896), 1, + STATE(4844), 1, aux_sym_array_repeat1, - [223681] = 4, + [223686] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7616), 1, - sym_identifier, - ACTIONS(7618), 1, - anon_sym_LBRACK, - ACTIONS(7620), 1, - sym_private_property_identifier, - [223694] = 4, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(8630), 1, + anon_sym_RPAREN, + STATE(4844), 1, + aux_sym_array_repeat1, + [223699] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7353), 1, + ACTIONS(7354), 1, anon_sym_implements, - ACTIONS(8631), 1, + ACTIONS(8632), 1, anon_sym_LBRACE, - STATE(5551), 1, + STATE(5561), 1, sym_implements_clause, - [223707] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8454), 1, - anon_sym_COMMA, - ACTIONS(8633), 1, - anon_sym_RBRACE, - STATE(4983), 1, - aux_sym_object_repeat1, - [223720] = 4, + [223712] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(8635), 1, - anon_sym_RBRACE, - STATE(4983), 1, - aux_sym_object_repeat1, - [223733] = 4, + ACTIONS(6140), 1, + anon_sym_RPAREN, + STATE(4996), 1, + aux_sym_array_repeat1, + [223725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8637), 1, + ACTIONS(8634), 1, anon_sym_COMMA, - ACTIONS(8640), 1, - anon_sym_RBRACE, - STATE(5013), 1, - aux_sym_export_clause_repeat1, - [223746] = 4, + ACTIONS(8636), 1, + anon_sym_RBRACK, + STATE(5108), 1, + aux_sym_tuple_type_repeat1, + [223738] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8642), 1, + ACTIONS(8638), 1, + anon_sym_as, + ACTIONS(8640), 2, anon_sym_COMMA, - ACTIONS(8645), 1, anon_sym_RBRACE, - STATE(5014), 1, - aux_sym_named_imports_repeat1, - [223759] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(8647), 1, - anon_sym_RBRACK, - STATE(4896), 1, - aux_sym_array_repeat1, - [223772] = 4, + [223749] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(1652), 1, + ACTIONS(2103), 1, anon_sym_DQUOTE, - ACTIONS(1654), 1, + ACTIONS(2105), 1, anon_sym_SQUOTE, - STATE(5651), 1, + STATE(5415), 1, sym_string, - [223785] = 4, + [223762] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8649), 1, + ACTIONS(8642), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8651), 1, - anon_sym_GT, - STATE(4925), 1, - aux_sym_type_parameters_repeat1, - [223798] = 2, + anon_sym_SEMI, + [223771] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7576), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [223807] = 4, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7642), 1, + anon_sym_extends, + [223784] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8653), 1, + ACTIONS(4502), 1, + anon_sym_GT, + ACTIONS(8644), 1, anon_sym_COMMA, - ACTIONS(8655), 1, - anon_sym_RBRACK, - STATE(5041), 1, - aux_sym_tuple_type_repeat1, - [223820] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8657), 1, - anon_sym_LPAREN, - ACTIONS(8659), 1, - anon_sym_await, - STATE(37), 1, - sym__for_header, - [223833] = 4, + STATE(5098), 1, + aux_sym_implements_clause_repeat1, + [223797] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5738), 1, - anon_sym_COLON, - ACTIONS(8661), 1, - anon_sym_RPAREN, - STATE(5655), 1, - sym_type_annotation, - [223846] = 4, + ACTIONS(4563), 1, + anon_sym_GT, + ACTIONS(8646), 1, + anon_sym_COMMA, + STATE(5098), 1, + aux_sym_implements_clause_repeat1, + [223810] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7562), 1, + ACTIONS(7490), 1, sym_identifier, - ACTIONS(7564), 1, + ACTIONS(7492), 1, anon_sym_LBRACK, - ACTIONS(7566), 1, + ACTIONS(7494), 1, sym_private_property_identifier, - [223859] = 4, + [223823] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8663), 1, + ACTIONS(8648), 1, anon_sym_COMMA, - ACTIONS(8666), 1, + ACTIONS(8650), 1, anon_sym_RBRACK, - STATE(5023), 1, + STATE(5002), 1, aux_sym_tuple_type_repeat1, - [223872] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7482), 1, - anon_sym_extends, - [223885] = 4, + [223836] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(6143), 1, - anon_sym_RBRACK, - STATE(4896), 1, - aux_sym_array_repeat1, - [223898] = 2, + ACTIONS(8532), 1, + sym_identifier, + ACTIONS(8652), 1, + anon_sym_GT, + STATE(5429), 1, + sym_type_parameter, + [223849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8450), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [223907] = 4, + ACTIONS(5674), 1, + anon_sym_COLON, + ACTIONS(8654), 1, + anon_sym_RPAREN, + STATE(5602), 1, + sym_type_annotation, + [223862] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(6117), 1, - anon_sym_RPAREN, - STATE(5049), 1, - aux_sym_array_repeat1, - [223920] = 4, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7534), 1, + anon_sym_extends, + [223875] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(8656), 1, anon_sym_COMMA, - ACTIONS(6117), 1, - anon_sym_RPAREN, - STATE(4896), 1, - aux_sym_array_repeat1, - [223933] = 4, + ACTIONS(8658), 1, + anon_sym_GT, + STATE(5033), 1, + aux_sym_type_parameters_repeat1, + [223888] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(8660), 1, anon_sym_COMMA, - ACTIONS(6104), 1, - anon_sym_RBRACK, - STATE(4896), 1, - aux_sym_array_repeat1, - [223946] = 2, + ACTIONS(8662), 1, + anon_sym_RBRACE, + STATE(5052), 1, + aux_sym_export_clause_repeat1, + [223901] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8668), 3, - sym__automatic_semicolon, + ACTIONS(8652), 1, + anon_sym_GT, + ACTIONS(8664), 1, anon_sym_COMMA, - anon_sym_SEMI, - [223955] = 4, + STATE(5088), 1, + aux_sym_type_parameters_repeat1, + [223914] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7049), 1, - anon_sym_RBRACE, - ACTIONS(8670), 1, + ACTIONS(8666), 1, anon_sym_COMMA, - STATE(5093), 1, - aux_sym_enum_body_repeat1, - [223968] = 2, + ACTIONS(8668), 1, + anon_sym_RBRACK, + STATE(5042), 1, + aux_sym_tuple_type_repeat1, + [223927] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8450), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [223977] = 2, + ACTIONS(7524), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [223936] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8672), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [223986] = 4, + ACTIONS(1688), 1, + anon_sym_DQUOTE, + ACTIONS(1690), 1, + anon_sym_SQUOTE, + STATE(5600), 1, + sym_string, + [223949] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4328), 1, + ACTIONS(4472), 1, anon_sym_GT, - ACTIONS(8674), 1, + ACTIONS(8670), 1, anon_sym_COMMA, - STATE(4989), 1, + STATE(5098), 1, aux_sym_implements_clause_repeat1, - [223999] = 3, + [223962] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8676), 1, - anon_sym_LBRACE, - ACTIONS(8003), 2, - anon_sym_extends, - anon_sym_LBRACE_PIPE, - [224010] = 2, + ACTIONS(7051), 1, + anon_sym_RBRACE, + ACTIONS(8672), 1, + anon_sym_COMMA, + STATE(4977), 1, + aux_sym_enum_body_repeat1, + [223975] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8672), 3, - sym__automatic_semicolon, + ACTIONS(6706), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224019] = 2, + ACTIONS(8674), 1, + anon_sym_RBRACE, + STATE(4987), 1, + aux_sym_object_pattern_repeat1, + [223988] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8678), 3, - sym__automatic_semicolon, + ACTIONS(8454), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224028] = 2, + ACTIONS(8676), 1, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym_object_repeat1, + [224001] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6077), 3, + ACTIONS(6155), 1, anon_sym_LBRACE, + ACTIONS(6133), 2, anon_sym_COMMA, - anon_sym_implements, - [224037] = 4, + anon_sym_LBRACE_PIPE, + [224012] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(6143), 1, + ACTIONS(3566), 1, anon_sym_RBRACK, - STATE(4921), 1, - aux_sym_array_repeat1, - [224050] = 4, + ACTIONS(8678), 1, + anon_sym_COMMA, + STATE(5005), 1, + aux_sym_tuple_type_repeat1, + [224025] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7051), 1, - anon_sym_RBRACE, ACTIONS(8680), 1, - anon_sym_COMMA, - STATE(5093), 1, - aux_sym_enum_body_repeat1, - [224063] = 4, + anon_sym_LBRACE, + ACTIONS(8056), 2, + anon_sym_extends, + anon_sym_LBRACE_PIPE, + [224036] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3554), 1, - anon_sym_RBRACK, ACTIONS(8682), 1, anon_sym_COMMA, - STATE(5023), 1, - aux_sym_tuple_type_repeat1, - [224076] = 4, + ACTIONS(8685), 1, + anon_sym_RBRACE, + STATE(5044), 1, + aux_sym_named_imports_repeat1, + [224049] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2290), 1, + ACTIONS(8454), 1, anon_sym_COMMA, - ACTIONS(8300), 1, - anon_sym_RBRACK, - STATE(4926), 1, - aux_sym_array_pattern_repeat1, - [224089] = 4, + ACTIONS(8687), 1, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym_object_repeat1, + [224062] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8684), 1, + ACTIONS(6943), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8686), 1, - anon_sym_RPAREN, - STATE(4946), 1, - aux_sym_formal_parameters_repeat1, - [224102] = 4, + anon_sym_SEMI, + [224071] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(8642), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8688), 1, - anon_sym_RPAREN, - STATE(4896), 1, - aux_sym_array_repeat1, - [224115] = 2, + anon_sym_SEMI, + [224080] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7600), 3, - anon_sym_LBRACE, - anon_sym_COLON, - anon_sym_EQ_GT, - [224124] = 4, + ACTIONS(8689), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224089] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8105), 1, + ACTIONS(8691), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8107), 1, - anon_sym_RBRACE, - STATE(5031), 1, - aux_sym_enum_body_repeat1, - [224137] = 4, + anon_sym_SEMI, + [224098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8495), 1, + ACTIONS(8693), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8497), 1, - anon_sym_from, - ACTIONS(8690), 1, - anon_sym_EQ, - [224150] = 4, + anon_sym_SEMI, + [224107] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, - anon_sym_COMMA, - ACTIONS(8692), 1, - anon_sym_RBRACE, - STATE(4981), 1, - aux_sym_object_pattern_repeat1, - [224163] = 4, + ACTIONS(7576), 1, + sym_identifier, + ACTIONS(7578), 1, + anon_sym_LBRACK, + ACTIONS(7580), 1, + sym_private_property_identifier, + [224120] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(8695), 1, anon_sym_COMMA, - ACTIONS(8694), 1, - anon_sym_RPAREN, - STATE(4896), 1, - aux_sym_array_repeat1, - [224176] = 4, + ACTIONS(8698), 1, + anon_sym_RBRACE, + STATE(5052), 1, + aux_sym_export_clause_repeat1, + [224133] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8454), 1, anon_sym_COMMA, - ACTIONS(8696), 1, + ACTIONS(8700), 1, anon_sym_RBRACE, - STATE(5085), 1, + STATE(5092), 1, aux_sym_object_repeat1, - [224189] = 4, + [224146] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8454), 1, anon_sym_COMMA, - ACTIONS(8696), 1, + ACTIONS(8700), 1, anon_sym_RBRACE, - STATE(4983), 1, + STATE(4994), 1, aux_sym_object_repeat1, - [224202] = 4, + [224159] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8698), 1, + ACTIONS(8702), 1, anon_sym_COMMA, - ACTIONS(8700), 1, + ACTIONS(8704), 1, anon_sym_RPAREN, STATE(5094), 1, aux_sym_formal_parameters_repeat1, - [224215] = 4, + [224172] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(8706), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6023), 1, - anon_sym_RBRACK, - STATE(5097), 1, - aux_sym_array_repeat1, - [224228] = 4, + anon_sym_SEMI, + [224181] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1878), 1, + anon_sym_LBRACE, + STATE(1134), 1, + sym_object_type, + [224194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8708), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(6023), 1, + anon_sym_SEMI, + [224203] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(6115), 1, anon_sym_RBRACK, - STATE(4896), 1, + STATE(5096), 1, aux_sym_array_repeat1, - [224241] = 4, + [224216] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(2286), 1, anon_sym_COMMA, - ACTIONS(8702), 1, - anon_sym_RBRACE, - STATE(4983), 1, - aux_sym_object_repeat1, - [224254] = 4, + ACTIONS(8263), 1, + anon_sym_RBRACK, + STATE(5004), 1, + aux_sym_array_pattern_repeat1, + [224229] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3546), 1, - anon_sym_RBRACK, - ACTIONS(8704), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - STATE(5023), 1, - aux_sym_tuple_type_repeat1, - [224267] = 4, + ACTIONS(6018), 1, + anon_sym_RBRACK, + STATE(4844), 1, + aux_sym_array_repeat1, + [224242] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8454), 1, + ACTIONS(8706), 3, + sym__automatic_semicolon, anon_sym_COMMA, - ACTIONS(8702), 1, - anon_sym_RBRACE, - STATE(4985), 1, - aux_sym_object_repeat1, - [224280] = 4, + anon_sym_SEMI, + [224251] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4477), 1, - anon_sym_GT, - ACTIONS(8706), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - STATE(4989), 1, - aux_sym_implements_clause_repeat1, - [224293] = 4, + ACTIONS(6115), 1, + anon_sym_RBRACK, + STATE(4844), 1, + aux_sym_array_repeat1, + [224264] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6694), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(8692), 1, - anon_sym_RBRACE, - STATE(4987), 1, - aux_sym_object_pattern_repeat1, - [224306] = 4, + ACTIONS(6101), 1, + anon_sym_RPAREN, + STATE(5072), 1, + aux_sym_array_repeat1, + [224277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(8708), 1, - anon_sym_EQ, - STATE(5664), 1, - sym_type_parameters, - [224319] = 2, + ACTIONS(8494), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224286] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8710), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224328] = 2, + [224295] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8712), 3, - sym__automatic_semicolon, + ACTIONS(2317), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224337] = 4, + ACTIONS(6018), 1, + anon_sym_RBRACK, + STATE(4991), 1, + aux_sym_array_repeat1, + [224308] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5744), 1, - anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - [224350] = 4, + ACTIONS(2286), 1, + anon_sym_COMMA, + ACTIONS(8263), 1, + anon_sym_RBRACK, + STATE(4992), 1, + aux_sym_array_pattern_repeat1, + [224321] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(8712), 1, + anon_sym_COMMA, ACTIONS(8714), 1, - sym_identifier, - ACTIONS(8716), 1, + anon_sym_RPAREN, + STATE(4970), 1, + aux_sym_formal_parameters_repeat1, + [224334] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(6101), 1, + anon_sym_RPAREN, + STATE(4844), 1, + aux_sym_array_repeat1, + [224347] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7616), 3, anon_sym_LBRACE, - STATE(1119), 1, - sym_export_clause, - [224363] = 4, + anon_sym_COLON, + anon_sym_EQ_GT, + [224356] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, - anon_sym_from, - ACTIONS(8627), 1, - anon_sym_as, - STATE(5270), 1, - sym__from_clause, - [224376] = 2, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(8716), 1, + anon_sym_RPAREN, + STATE(4844), 1, + aux_sym_array_repeat1, + [224369] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8712), 3, - sym__automatic_semicolon, + ACTIONS(8111), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224385] = 4, + ACTIONS(8113), 1, + anon_sym_RBRACE, + STATE(4967), 1, + aux_sym_enum_body_repeat1, + [224382] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7670), 1, - anon_sym_extends, - [224398] = 4, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(6004), 1, + anon_sym_RBRACK, + STATE(4844), 1, + aux_sym_array_repeat1, + [224395] = 4, ACTIONS(3), 1, sym_comment, + ACTIONS(4422), 1, + anon_sym_GT, ACTIONS(8718), 1, - sym_identifier, - STATE(3651), 1, - sym_decorator_member_expression, - STATE(3714), 1, - sym_decorator_call_expression, - [224411] = 4, + anon_sym_COMMA, + STATE(5098), 1, + aux_sym_implements_clause_repeat1, + [224408] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7512), 1, - sym_identifier, - ACTIONS(7514), 1, - anon_sym_LBRACK, - ACTIONS(7516), 1, - sym_private_property_identifier, - [224424] = 3, + ACTIONS(8562), 1, + anon_sym_COMMA, + ACTIONS(8564), 1, + anon_sym_from, + ACTIONS(8720), 1, + anon_sym_EQ, + [224421] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8720), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(6004), 1, + anon_sym_RBRACK, + STATE(4986), 1, + aux_sym_array_repeat1, + [224434] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8454), 1, + anon_sym_COMMA, + ACTIONS(8722), 1, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym_object_repeat1, + [224447] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8724), 1, anon_sym_LBRACE, - ACTIONS(7969), 2, + ACTIONS(8122), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [224435] = 4, + [224458] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8722), 1, - anon_sym_COMMA, - ACTIONS(8724), 1, - anon_sym_RBRACK, - STATE(5056), 1, - aux_sym_tuple_type_repeat1, - [224448] = 4, + ACTIONS(614), 1, + anon_sym_LBRACE_PIPE, + ACTIONS(1878), 1, + anon_sym_LBRACE, + STATE(1179), 1, + sym_object_type, + [224471] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4358), 1, - anon_sym_GT, - ACTIONS(8726), 1, + ACTIONS(8454), 1, anon_sym_COMMA, - STATE(4989), 1, - aux_sym_implements_clause_repeat1, - [224461] = 3, + ACTIONS(8722), 1, + anon_sym_RBRACE, + STATE(5040), 1, + aux_sym_object_repeat1, + [224484] = 3, ACTIONS(3), 1, sym_comment, - STATE(5383), 1, + STATE(5393), 1, sym_type_predicate, - ACTIONS(8728), 2, + ACTIONS(8726), 2, sym_identifier, sym_this, - [224472] = 2, + [224495] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8730), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224481] = 2, + ACTIONS(8728), 1, + anon_sym_LPAREN, + ACTIONS(8730), 1, + anon_sym_await, + STATE(51), 1, + sym__for_header, + [224508] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8710), 3, - sym__automatic_semicolon, + ACTIONS(7630), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224490] = 2, + ACTIONS(8732), 1, + anon_sym_LBRACE, + STATE(5143), 1, + aux_sym_implements_clause_repeat1, + [224521] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8732), 3, - sym__automatic_semicolon, + ACTIONS(6706), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224499] = 2, + ACTIONS(8734), 1, + anon_sym_RBRACE, + STATE(4987), 1, + aux_sym_object_pattern_repeat1, + [224534] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8734), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224508] = 2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7520), 1, + anon_sym_LBRACK, + ACTIONS(7522), 1, + sym_private_property_identifier, + [224547] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8712), 3, - sym__automatic_semicolon, + ACTIONS(8454), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224517] = 3, - ACTIONS(3), 1, - sym_comment, ACTIONS(8736), 1, - sym_identifier, - ACTIONS(8738), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [224528] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7430), 1, - anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - [224541] = 2, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym_object_repeat1, + [224560] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8740), 3, - sym__automatic_semicolon, + ACTIONS(8738), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224550] = 4, + ACTIONS(8741), 1, + anon_sym_GT, + STATE(5088), 1, + aux_sym_type_parameters_repeat1, + [224573] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8454), 1, anon_sym_COMMA, - ACTIONS(8742), 1, + ACTIONS(8736), 1, anon_sym_RBRACE, - STATE(4983), 1, + STATE(4995), 1, aux_sym_object_repeat1, - [224563] = 2, + [224586] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8732), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224572] = 2, + ACTIONS(8532), 1, + sym_identifier, + ACTIONS(8743), 1, + anon_sym_GT, + STATE(5429), 1, + sym_type_parameter, + [224599] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8710), 3, - sym__automatic_semicolon, + ACTIONS(8454), 1, anon_sym_COMMA, - anon_sym_SEMI, - [224581] = 4, + ACTIONS(8745), 1, + anon_sym_RBRACE, + STATE(4994), 1, + aux_sym_object_repeat1, + [224612] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(8454), 1, anon_sym_COMMA, - ACTIONS(8744), 1, + ACTIONS(8747), 1, anon_sym_RBRACE, - STATE(4983), 1, + STATE(4994), 1, aux_sym_object_repeat1, - [224594] = 3, + [224625] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8746), 1, - sym_identifier, - ACTIONS(8748), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [224605] = 4, + ACTIONS(6706), 1, + anon_sym_COMMA, + ACTIONS(8734), 1, + anon_sym_RBRACE, + STATE(5001), 1, + aux_sym_object_pattern_repeat1, + [224638] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(5686), 1, - anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - [224618] = 4, + ACTIONS(6792), 1, + anon_sym_RPAREN, + ACTIONS(8749), 1, + anon_sym_COMMA, + STATE(5138), 1, + aux_sym_formal_parameters_repeat1, + [224651] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6604), 1, - anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - [224631] = 4, + ACTIONS(2920), 1, + anon_sym_LT, + ACTIONS(8751), 1, + anon_sym_EQ, + STATE(5674), 1, + sym_type_parameters, + [224664] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6686), 1, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(8753), 1, + anon_sym_RBRACK, + STATE(4844), 1, + aux_sym_array_repeat1, + [224677] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5803), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [224644] = 3, + [224690] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7912), 1, + anon_sym_GT, + ACTIONS(8755), 1, + anon_sym_COMMA, + STATE(5098), 1, + aux_sym_implements_clause_repeat1, + [224703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8750), 1, + ACTIONS(8758), 1, anon_sym_LBRACE, - ACTIONS(7938), 2, + ACTIONS(8092), 2, anon_sym_extends, anon_sym_LBRACE_PIPE, - [224655] = 3, + [224714] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8752), 1, + ACTIONS(8760), 1, anon_sym_EQ, - ACTIONS(4610), 2, + ACTIONS(4598), 2, anon_sym_in, anon_sym_of, - [224666] = 4, + [224725] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8754), 1, + ACTIONS(8762), 1, + sym_identifier, + ACTIONS(8764), 1, + anon_sym_LBRACE, + STATE(1143), 1, + sym_export_clause, + [224738] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8766), 1, anon_sym_COMMA, - ACTIONS(8756), 1, + ACTIONS(8768), 1, anon_sym_RBRACK, - STATE(5116), 1, + STATE(5115), 1, aux_sym_tuple_type_repeat1, - [224679] = 4, + [224751] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8196), 1, - anon_sym_RBRACE, - ACTIONS(8758), 1, + ACTIONS(8209), 1, + anon_sym_from, + ACTIONS(8770), 1, + anon_sym_as, + STATE(5254), 1, + sym__from_clause, + [224764] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8209), 1, + anon_sym_from, + ACTIONS(8770), 1, + anon_sym_as, + STATE(5275), 1, + sym__from_clause, + [224777] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7772), 1, + anon_sym_extends, + [224790] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8772), 1, + sym_identifier, + STATE(3657), 1, + sym_decorator_member_expression, + STATE(3721), 1, + sym_decorator_call_expression, + [224803] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4416), 1, + anon_sym_GT, + ACTIONS(8774), 1, anon_sym_COMMA, - STATE(5093), 1, - aux_sym_enum_body_repeat1, - [224692] = 4, + STATE(5098), 1, + aux_sym_implements_clause_repeat1, + [224816] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6860), 1, - anon_sym_RPAREN, - ACTIONS(8761), 1, + ACTIONS(3546), 1, + anon_sym_RBRACK, + ACTIONS(8776), 1, anon_sym_COMMA, - STATE(4975), 1, - aux_sym_formal_parameters_repeat1, - [224705] = 3, + STATE(5005), 1, + aux_sym_tuple_type_repeat1, + [224829] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8763), 1, + ACTIONS(8608), 1, anon_sym_EQ, - ACTIONS(4649), 2, + ACTIONS(4639), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [224716] = 4, + anon_sym_RBRACE, + [224840] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2922), 1, - anon_sym_LT, - ACTIONS(8766), 1, - anon_sym_EQ, - STATE(5728), 1, - sym_type_parameters, - [224729] = 4, + ACTIONS(7546), 3, + anon_sym_LBRACE, + anon_sym_COLON, + anon_sym_EQ_GT, + [224849] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, + ACTIONS(2317), 1, anon_sym_COMMA, - ACTIONS(8768), 1, - anon_sym_RBRACK, - STATE(4896), 1, + ACTIONS(6106), 1, + anon_sym_RPAREN, + STATE(5158), 1, aux_sym_array_repeat1, - [224742] = 4, + [224862] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7313), 1, - anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - [224755] = 4, + ACTIONS(8778), 1, + sym_identifier, + ACTIONS(8780), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [224873] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8770), 1, - anon_sym_LPAREN, - ACTIONS(8772), 1, - anon_sym_await, - STATE(40), 1, - sym__for_header, - [224768] = 4, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(6106), 1, + anon_sym_RPAREN, + STATE(4844), 1, + aux_sym_array_repeat1, + [224886] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8774), 1, - anon_sym_COMMA, - ACTIONS(8776), 1, - anon_sym_RBRACK, - STATE(5149), 1, - aux_sym_tuple_type_repeat1, - [224781] = 4, + STATE(4856), 1, + sym_type_predicate, + ACTIONS(8782), 2, + sym_identifier, + sym_this, + [224897] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4543), 1, - anon_sym_GT, - ACTIONS(8778), 1, + ACTIONS(3550), 1, + anon_sym_RBRACK, + ACTIONS(8784), 1, anon_sym_COMMA, - STATE(4989), 1, - aux_sym_implements_clause_repeat1, - [224794] = 4, + STATE(5005), 1, + aux_sym_tuple_type_repeat1, + [224910] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6568), 1, + ACTIONS(7420), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [224807] = 4, + [224923] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7408), 1, - anon_sym_extends, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - [224820] = 4, + ACTIONS(8786), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [224932] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4579), 1, - anon_sym_GT, - ACTIONS(8780), 1, - anon_sym_COMMA, - STATE(4989), 1, - aux_sym_implements_clause_repeat1, - [224833] = 4, + ACTIONS(8788), 1, + sym_identifier, + ACTIONS(8790), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [224943] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6764), 1, + ACTIONS(5960), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [224846] = 4, + [224956] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6641), 1, + ACTIONS(6580), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [224859] = 4, + [224969] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6770), 1, + ACTIONS(6676), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [224872] = 2, + [224982] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 3, + ACTIONS(8792), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224881] = 4, + [224991] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6472), 1, + ACTIONS(7305), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [224894] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(6012), 1, - anon_sym_RPAREN, - STATE(5121), 1, - aux_sym_array_repeat1, - [224907] = 4, + [225004] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(6012), 1, - anon_sym_RPAREN, - STATE(4896), 1, - aux_sym_array_repeat1, - [224920] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8782), 3, + ACTIONS(8794), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224929] = 2, + [225013] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8784), 3, + ACTIONS(8796), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [224938] = 3, + [225022] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8600), 1, - anon_sym_EQ, - ACTIONS(4649), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [224949] = 4, + ACTIONS(8798), 1, + anon_sym_LPAREN, + ACTIONS(8800), 1, + anon_sym_await, + STATE(35), 1, + sym__for_header, + [225035] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6612), 1, + ACTIONS(6561), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [224962] = 4, + [225048] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(3552), 1, - anon_sym_RBRACK, - ACTIONS(8786), 1, - anon_sym_COMMA, - STATE(5023), 1, - aux_sym_tuple_type_repeat1, - [224975] = 2, + ACTIONS(3114), 1, + anon_sym_while, + ACTIONS(8802), 1, + anon_sym_else, + STATE(1108), 1, + sym_else_clause, + [225061] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8788), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [224984] = 4, + ACTIONS(7404), 1, + anon_sym_extends, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + [225074] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6364), 1, + ACTIONS(6740), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [224997] = 4, + [225087] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(6025), 1, - anon_sym_RPAREN, - STATE(5044), 1, - aux_sym_array_repeat1, - [225010] = 2, + ACTIONS(6572), 1, + anon_sym_extends, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + [225100] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8790), 3, + ACTIONS(8804), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225019] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(8792), 1, - anon_sym_RPAREN, - STATE(4896), 1, - aux_sym_array_repeat1, - [225032] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(2378), 1, - anon_sym_COMMA, - ACTIONS(6025), 1, - anon_sym_RPAREN, - STATE(4896), 1, - aux_sym_array_repeat1, - [225045] = 2, + [225109] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8794), 3, + ACTIONS(8806), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225054] = 4, + [225118] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(4471), 1, - anon_sym_GT, - ACTIONS(8796), 1, - anon_sym_COMMA, - STATE(4989), 1, - aux_sym_implements_clause_repeat1, - [225067] = 4, + ACTIONS(6772), 1, + anon_sym_extends, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + [225131] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6680), 1, + ACTIONS(6397), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [225080] = 2, + [225144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8798), 3, + ACTIONS(8808), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225089] = 2, + [225153] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8782), 3, + ACTIONS(8810), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225098] = 2, + [225162] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8812), 1, + anon_sym_COMMA, + ACTIONS(8815), 1, + anon_sym_RPAREN, + STATE(5138), 1, + aux_sym_formal_parameters_repeat1, + [225175] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6647), 1, + anon_sym_extends, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + [225188] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8800), 3, + ACTIONS(8806), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225107] = 2, + [225197] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8802), 3, + ACTIONS(8817), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225116] = 4, + [225206] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(6064), 1, + ACTIONS(6238), 1, anon_sym_extends, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - [225129] = 4, + [225219] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, - anon_sym_AMP, - ACTIONS(7460), 1, - anon_sym_PIPE, - ACTIONS(7462), 1, - anon_sym_extends, - [225142] = 4, + ACTIONS(7912), 1, + anon_sym_LBRACE, + ACTIONS(8819), 1, + anon_sym_COMMA, + STATE(5143), 1, + aux_sym_implements_clause_repeat1, + [225232] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(6684), 1, + anon_sym_extends, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7466), 1, - anon_sym_extends, - [225155] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8804), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225164] = 4, + [225245] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(6024), 1, + anon_sym_extends, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7504), 1, - anon_sym_extends, - [225177] = 4, + [225258] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8016), 1, + ACTIONS(7474), 1, anon_sym_extends, - [225190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8806), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225199] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8808), 1, - anon_sym_COMMA, - ACTIONS(8810), 1, - anon_sym_RBRACK, - STATE(5146), 1, - aux_sym_tuple_type_repeat1, - [225212] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8794), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225221] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8812), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225230] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8814), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225239] = 3, - ACTIONS(3), 1, - sym_comment, - STATE(4852), 1, - sym_type_predicate, - ACTIONS(8816), 2, - sym_identifier, - sym_this, - [225250] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8806), 3, - sym__automatic_semicolon, - anon_sym_COMMA, - anon_sym_SEMI, - [225259] = 2, + [225271] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8818), 3, + ACTIONS(8177), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225268] = 4, + [225280] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7438), 1, + anon_sym_extends, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(7476), 1, - anon_sym_extends, - [225281] = 4, + [225293] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8072), 1, + ACTIONS(7482), 1, anon_sym_extends, - [225294] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3542), 1, - anon_sym_RBRACK, - ACTIONS(8820), 1, - anon_sym_COMMA, - STATE(5023), 1, - aux_sym_tuple_type_repeat1, - [225307] = 2, + [225306] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8822), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225316] = 4, + [225315] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7458), 1, + ACTIONS(7448), 1, anon_sym_AMP, - ACTIONS(7460), 1, + ACTIONS(7450), 1, anon_sym_PIPE, - ACTIONS(8078), 1, + ACTIONS(8014), 1, anon_sym_extends, - [225329] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3568), 1, - anon_sym_RBRACK, - ACTIONS(8824), 1, - anon_sym_COMMA, - STATE(5023), 1, - aux_sym_tuple_type_repeat1, - [225342] = 2, + [225328] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8814), 3, + ACTIONS(8824), 3, sym__automatic_semicolon, anon_sym_COMMA, anon_sym_SEMI, - [225351] = 3, + [225337] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - anon_sym_LBRACE, - STATE(2842), 1, - sym_statement_block, - [225361] = 2, + ACTIONS(7430), 1, + anon_sym_DOT, + ACTIONS(8826), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [225348] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8576), 2, + ACTIONS(8828), 1, anon_sym_COMMA, + ACTIONS(8830), 1, anon_sym_RBRACE, - [225369] = 3, + STATE(5044), 1, + aux_sym_named_imports_repeat1, + [225361] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, - anon_sym_LBRACE, - STATE(3385), 1, - sym_statement_block, - [225379] = 2, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7508), 1, + anon_sym_extends, + [225374] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7027), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [225387] = 3, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7975), 1, + anon_sym_extends, + [225387] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(3392), 1, - sym_class_body, - [225397] = 3, + ACTIONS(7448), 1, + anon_sym_AMP, + ACTIONS(7450), 1, + anon_sym_PIPE, + ACTIONS(7960), 1, + anon_sym_extends, + [225400] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5703), 1, - sym_formal_parameters, - [225407] = 3, + ACTIONS(2317), 1, + anon_sym_COMMA, + ACTIONS(8832), 1, + anon_sym_RPAREN, + STATE(4844), 1, + aux_sym_array_repeat1, + [225413] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(3401), 1, - sym_class_body, - [225417] = 3, + ACTIONS(8642), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225422] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8708), 3, + sym__automatic_semicolon, + anon_sym_COMMA, + anon_sym_SEMI, + [225431] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5789), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(3406), 1, - sym_arguments, - [225427] = 3, + STATE(5487), 1, + sym_formal_parameters, + [225441] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - STATE(3242), 1, + STATE(3479), 1, sym_class_body, - [225437] = 3, + [225451] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8828), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5220), 1, - sym_parenthesized_expression, - [225447] = 2, + STATE(5682), 1, + sym_formal_parameters, + [225461] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7005), 2, + ACTIONS(7001), 2, anon_sym_COMMA, anon_sym_RBRACE, - [225455] = 3, + [225469] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5154), 1, + STATE(5170), 1, sym_statement_block, - [225465] = 2, + [225479] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7001), 2, + ACTIONS(6997), 2, anon_sym_COMMA, anon_sym_RBRACE, - [225473] = 3, + [225487] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5557), 1, + STATE(5733), 1, sym_formal_parameters, - [225483] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8826), 1, - anon_sym_LBRACE, - STATE(3376), 1, - sym_statement_block, - [225493] = 3, + [225497] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, + ACTIONS(7428), 1, anon_sym_LBRACE, - STATE(3434), 1, + STATE(4681), 1, sym_statement_block, - [225503] = 3, + [225507] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5772), 1, + STATE(5737), 1, sym_formal_parameters, - [225513] = 3, + [225517] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5784), 1, - sym_formal_parameters, - [225523] = 3, + ACTIONS(7005), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [225525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, + ACTIONS(7428), 1, anon_sym_LBRACE, - STATE(3465), 1, + STATE(4676), 1, sym_statement_block, - [225533] = 3, + [225535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(3449), 1, - sym_class_body, - [225543] = 3, + ACTIONS(8834), 1, + anon_sym_LPAREN, + STATE(5227), 1, + sym_parenthesized_expression, + [225545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8830), 1, - anon_sym_LT, - STATE(3417), 1, - sym_type_arguments, - [225553] = 3, + ACTIONS(7268), 1, + anon_sym_is, + ACTIONS(7536), 1, + anon_sym_LBRACE, + [225555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5672), 1, + STATE(4673), 1, sym_formal_parameters, - [225563] = 3, + [225565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5670), 1, + STATE(5599), 1, sym_formal_parameters, - [225573] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(3040), 1, - sym_class_body, - [225583] = 3, + [225575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7178), 1, - anon_sym_LT, - STATE(3933), 1, - sym_type_arguments, - [225593] = 3, + ACTIONS(8836), 1, + sym_identifier, + STATE(4997), 1, + sym_nested_identifier, + [225585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5611), 1, + STATE(5603), 1, sym_formal_parameters, - [225603] = 3, + [225595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5608), 1, + STATE(4659), 1, sym_formal_parameters, - [225613] = 3, + [225605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8828), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(47), 1, - sym_parenthesized_expression, - [225623] = 3, + STATE(5478), 1, + sym_formal_parameters, + [225615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5161), 1, + STATE(5164), 1, sym_statement_block, - [225633] = 3, + [225625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5621), 1, + STATE(5582), 1, sym_formal_parameters, - [225643] = 3, + [225635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(1016), 1, - sym_statement_block, - [225653] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5477), 1, + sym_formal_parameters, + [225645] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5619), 1, + STATE(5770), 1, sym_formal_parameters, - [225663] = 2, + [225655] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6995), 2, + ACTIONS(6991), 2, anon_sym_COMMA, anon_sym_RBRACE, - [225671] = 3, + [225663] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5772), 1, + sym_formal_parameters, + [225673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5163), 1, + STATE(5166), 1, sym_statement_block, - [225681] = 2, + [225683] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(6987), 2, anon_sym_COMMA, anon_sym_RBRACE, - [225689] = 3, + [225691] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(8834), 1, anon_sym_LPAREN, - STATE(5467), 1, - sym_formal_parameters, - [225699] = 3, + STATE(42), 1, + sym_parenthesized_expression, + [225701] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5466), 1, + STATE(5678), 1, sym_formal_parameters, - [225709] = 3, + [225711] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(1011), 1, + sym_statement_block, + [225721] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5815), 1, + STATE(5747), 1, sym_formal_parameters, - [225719] = 3, + [225731] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8828), 1, + ACTIONS(8834), 1, anon_sym_LPAREN, - STATE(49), 1, + STATE(46), 1, sym_parenthesized_expression, - [225729] = 3, + [225741] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5562), 1, + STATE(5753), 1, sym_formal_parameters, - [225739] = 3, + [225751] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7512), 1, - sym_identifier, - ACTIONS(7516), 1, - sym_private_property_identifier, - [225749] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4712), 1, + STATE(5591), 1, sym_formal_parameters, - [225759] = 2, + [225761] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8832), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [225767] = 3, + ACTIONS(8532), 1, + sym_identifier, + STATE(4941), 1, + sym_type_parameter, + [225771] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4433), 1, + STATE(5640), 1, sym_formal_parameters, - [225777] = 3, + [225781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, - anon_sym_LBRACE, - STATE(3427), 1, - sym_statement_block, - [225787] = 3, + ACTIONS(8838), 1, + anon_sym_LPAREN, + STATE(48), 1, + sym__for_header, + [225791] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5796), 1, + STATE(5639), 1, sym_formal_parameters, - [225797] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(4827), 1, - anon_sym_LBRACE, - STATE(3064), 1, - sym_statement_block, - [225807] = 2, + [225801] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6161), 2, + ACTIONS(8840), 2, sym__automatic_semicolon, anon_sym_SEMI, - [225815] = 3, + [225809] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5807), 1, - sym_formal_parameters, - [225825] = 3, + ACTIONS(8209), 1, + anon_sym_from, + STATE(5344), 1, + sym__from_clause, + [225819] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4427), 1, - sym_formal_parameters, - [225835] = 3, + ACTIONS(7291), 1, + anon_sym_LBRACE, + STATE(2180), 1, + sym_class_body, + [225829] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6010), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [225837] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4437), 1, + STATE(4548), 1, sym_formal_parameters, - [225845] = 3, + [225847] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8834), 1, + ACTIONS(8842), 1, sym_identifier, - ACTIONS(8836), 1, + ACTIONS(8844), 1, anon_sym_STAR, - [225855] = 3, + [225857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, + ACTIONS(8209), 1, anon_sym_from, - STATE(5280), 1, + STATE(5258), 1, sym__from_clause, - [225865] = 3, + [225867] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6977), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [225875] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6965), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [225883] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6959), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [225891] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6973), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [225899] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6969), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [225907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6987), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [225915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7916), 1, + ACTIONS(8834), 1, anon_sym_LPAREN, - STATE(4079), 1, - sym_formal_parameters, - [225875] = 3, + STATE(43), 1, + sym_parenthesized_expression, + [225925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4677), 1, - sym_class_body, - [225885] = 3, + ACTIONS(8834), 1, + anon_sym_LPAREN, + STATE(47), 1, + sym_parenthesized_expression, + [225935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5754), 1, + STATE(5740), 1, sym_formal_parameters, - [225895] = 3, + [225945] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8834), 1, + anon_sym_LPAREN, + STATE(45), 1, + sym_parenthesized_expression, + [225955] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5753), 1, + STATE(5742), 1, sym_formal_parameters, - [225905] = 3, + [225965] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(2313), 1, - sym_class_body, - [225915] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5764), 1, + sym_formal_parameters, + [225975] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(2314), 1, - sym_statement_block, - [225925] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5763), 1, + sym_formal_parameters, + [225985] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(1051), 1, + STATE(1062), 1, sym_statement_block, - [225935] = 2, + [225995] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8838), 2, + ACTIONS(8846), 2, sym__automatic_semicolon, anon_sym_SEMI, - [225943] = 3, + [226003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5183), 1, + STATE(5184), 1, sym_statement_block, - [225953] = 3, + [226013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, + ACTIONS(8209), 1, anon_sym_from, - STATE(5319), 1, + STATE(5276), 1, sym__from_clause, - [225963] = 2, + [226023] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8840), 2, + ACTIONS(8848), 2, sym__automatic_semicolon, anon_sym_SEMI, - [225971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4673), 1, - sym_class_body, - [225981] = 2, + [226031] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 2, + ACTIONS(6969), 2, anon_sym_COMMA, anon_sym_RBRACE, - [225989] = 3, + [226039] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8828), 1, + ACTIONS(8834), 1, anon_sym_LPAREN, STATE(38), 1, sym_parenthesized_expression, - [225999] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8842), 1, - anon_sym_LT, - STATE(2836), 1, - sym_type_arguments, - [226009] = 3, + [226049] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4465), 1, - sym_formal_parameters, - [226019] = 3, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5187), 1, + sym_statement_block, + [226059] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8844), 1, + ACTIONS(8850), 1, anon_sym_LBRACE, - STATE(1159), 1, + STATE(1195), 1, sym_switch_body, - [226029] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8846), 1, - sym_identifier, - ACTIONS(8848), 1, - anon_sym_STAR, - [226039] = 3, + [226069] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8850), 1, + ACTIONS(8838), 1, anon_sym_LPAREN, - STATE(50), 1, + STATE(49), 1, sym__for_header, - [226049] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4671), 1, - sym_class_body, - [226059] = 3, + [226079] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(5185), 1, - sym_statement_block, - [226069] = 2, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4468), 1, + sym_formal_parameters, + [226089] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8852), 2, sym__automatic_semicolon, anon_sym_SEMI, - [226077] = 3, + [226097] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4703), 1, - sym_formal_parameters, - [226087] = 2, + ACTIONS(8854), 1, + sym_identifier, + ACTIONS(8856), 1, + anon_sym_STAR, + [226107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8854), 2, + ACTIONS(8858), 2, sym__automatic_semicolon, anon_sym_SEMI, - [226095] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5547), 1, - sym_formal_parameters, - [226105] = 2, + [226115] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6147), 2, + ACTIONS(6014), 2, sym__automatic_semicolon, anon_sym_SEMI, - [226113] = 2, + [226123] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 2, + ACTIONS(6973), 2, anon_sym_COMMA, anon_sym_RBRACE, - [226121] = 2, + [226131] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6145), 2, + ACTIONS(6016), 2, sym__automatic_semicolon, anon_sym_SEMI, - [226129] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(3210), 1, - sym_class_body, [226139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7382), 1, - anon_sym_LBRACE, - STATE(1096), 1, - sym_class_body, + ACTIONS(8532), 1, + sym_identifier, + STATE(5031), 1, + sym_type_parameter, [226149] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(3138), 1, - sym_class_body, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5727), 1, + sym_formal_parameters, [226159] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4669), 1, - sym_class_body, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5826), 1, + sym_formal_parameters, [226169] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, - anon_sym_LBRACE, - STATE(3206), 1, - sym_statement_block, - [226179] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8196), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [226187] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5726), 1, + sym_formal_parameters, + [226179] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7366), 1, anon_sym_LBRACE, - STATE(2312), 1, + STATE(1188), 1, sym_class_body, - [226197] = 3, + [226189] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(2315), 1, - sym_statement_block, - [226207] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5722), 1, + sym_formal_parameters, + [226199] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8856), 1, - sym_identifier, - ACTIONS(8858), 1, - anon_sym_STAR, - [226217] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5721), 1, + sym_formal_parameters, + [226209] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(2317), 1, - sym_statement_block, - [226227] = 3, + ACTIONS(8860), 1, + anon_sym_LT, + STATE(2841), 1, + sym_type_arguments, + [226219] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(2318), 1, - sym_class_body, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5568), 1, + sym_formal_parameters, + [226229] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8369), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [226237] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, - sym_identifier, - STATE(5017), 1, - sym_type_parameter, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(2523), 1, + sym_class_body, [226247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5717), 1, - sym_formal_parameters, - [226257] = 3, + ACTIONS(4815), 1, + anon_sym_LBRACE, + STATE(2566), 1, + sym_statement_block, + [226257] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5595), 1, - sym_formal_parameters, - [226267] = 3, + ACTIONS(3494), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226265] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7252), 1, - anon_sym_LT, - STATE(4121), 1, - sym_type_arguments, - [226277] = 3, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(1081), 1, + sym_statement_block, + [226275] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5716), 1, - sym_formal_parameters, - [226287] = 3, + ACTIONS(8862), 1, + sym_identifier, + ACTIONS(8864), 1, + anon_sym_STAR, + [226285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, + ACTIONS(8866), 1, anon_sym_LBRACE, - STATE(3370), 1, - sym_class_body, - [226297] = 3, + STATE(1173), 1, + sym_enum_body, + [226295] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(7746), 2, anon_sym_LBRACE, - STATE(4664), 1, - sym_class_body, - [226307] = 3, + anon_sym_EQ_GT, + [226303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5712), 1, - sym_formal_parameters, - [226317] = 3, + ACTIONS(3478), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226311] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8868), 1, + anon_sym_SEMI, + ACTIONS(8870), 1, + sym__automatic_semicolon, + [226321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5711), 1, + STATE(5830), 1, sym_formal_parameters, - [226327] = 3, + [226331] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(3369), 1, - sym_class_body, - [226337] = 3, + ACTIONS(8872), 1, + sym_identifier, + ACTIONS(8874), 1, + anon_sym_STAR, + [226341] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, - anon_sym_LBRACE, - STATE(3368), 1, - sym_statement_block, - [226347] = 3, + ACTIONS(8876), 1, + anon_sym_SEMI, + ACTIONS(8878), 1, + sym__automatic_semicolon, + [226351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4663), 1, - sym_class_body, - [226357] = 3, + ACTIONS(8880), 1, + anon_sym_SEMI, + ACTIONS(8882), 1, + sym__automatic_semicolon, + [226361] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(5558), 1, + STATE(3989), 1, sym_formal_parameters, - [226367] = 3, + [226371] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(2468), 1, - sym_class_body, - [226377] = 3, + ACTIONS(8573), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [226379] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(2323), 1, - sym_class_body, + ACTIONS(8588), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [226387] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, - anon_sym_LBRACE, - STATE(3183), 1, - sym_class_body, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5495), 1, + sym_formal_parameters, [226397] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, - anon_sym_LBRACE, - STATE(2457), 1, - sym_statement_block, + ACTIONS(8884), 1, + anon_sym_LT, + STATE(3465), 1, + sym_type_arguments, [226407] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(3364), 1, - sym_class_body, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5647), 1, + sym_formal_parameters, [226417] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(147), 1, + STATE(5438), 1, sym_statement_block, [226427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, - anon_sym_LBRACE, - STATE(1139), 1, - sym_statement_block, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5676), 1, + sym_formal_parameters, [226437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8860), 1, - anon_sym_LBRACE, - STATE(1156), 1, - sym_enum_body, - [226447] = 3, + ACTIONS(8209), 1, + anon_sym_from, + STATE(5449), 1, + sym__from_clause, + [226447] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4659), 1, - sym_formal_parameters, - [226457] = 3, + ACTIONS(8886), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [226455] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4833), 1, anon_sym_LBRACE, - STATE(3081), 1, + STATE(2189), 1, sym_statement_block, - [226467] = 3, + [226465] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(2927), 1, - sym_class_body, - [226477] = 2, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5467), 1, + sym_formal_parameters, + [226475] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7658), 2, + ACTIONS(7428), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, + STATE(4488), 1, + sym_statement_block, [226485] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - anon_sym_LBRACE, - STATE(2774), 1, - sym_statement_block, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4718), 1, + sym_formal_parameters, [226495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(8888), 1, anon_sym_LBRACE, - STATE(3071), 1, - sym_class_body, + STATE(4490), 1, + sym_enum_body, [226505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8862), 1, - anon_sym_SEMI, - ACTIONS(8864), 1, - sym__automatic_semicolon, + ACTIONS(7602), 1, + sym_identifier, + ACTIONS(7606), 1, + sym_private_property_identifier, [226515] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(2975), 1, - sym_class_body, + ACTIONS(8890), 1, + anon_sym_SEMI, + ACTIONS(8892), 1, + sym__automatic_semicolon, [226525] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - anon_sym_LBRACE, - STATE(2974), 1, - sym_statement_block, + ACTIONS(8894), 1, + anon_sym_SEMI, + ACTIONS(8896), 1, + sym__automatic_semicolon, [226535] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, - anon_sym_LBRACE, - STATE(3371), 1, - sym_class_body, + ACTIONS(8898), 1, + anon_sym_SEMI, + ACTIONS(8900), 1, + sym__automatic_semicolon, [226545] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4655), 1, - sym_class_body, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4709), 1, + sym_formal_parameters, [226555] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, - anon_sym_LBRACE, - STATE(2971), 1, - sym_statement_block, + ACTIONS(7490), 1, + sym_identifier, + ACTIONS(7494), 1, + sym_private_property_identifier, [226565] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8866), 1, - sym_identifier, - ACTIONS(8868), 1, - anon_sym_STAR, + ACTIONS(7262), 1, + anon_sym_LT, + STATE(4094), 1, + sym_type_arguments, [226575] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, - anon_sym_LBRACE, - STATE(3179), 1, - sym_statement_block, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5832), 1, + sym_formal_parameters, [226585] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8870), 1, - anon_sym_in, - ACTIONS(8872), 1, - anon_sym_COLON, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5593), 1, + sym_formal_parameters, [226595] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8874), 1, - anon_sym_SEMI, - ACTIONS(8876), 1, - sym__automatic_semicolon, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5833), 1, + sym_formal_parameters, [226605] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8878), 1, - anon_sym_SEMI, - ACTIONS(8880), 1, - sym__automatic_semicolon, + ACTIONS(8888), 1, + anon_sym_LBRACE, + STATE(4504), 1, + sym_enum_body, [226615] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7309), 1, + ACTIONS(8866), 1, anon_sym_LBRACE, - STATE(3353), 1, - sym_class_body, + STATE(1105), 1, + sym_enum_body, [226625] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(2968), 1, - sym_class_body, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5815), 1, + sym_formal_parameters, [226635] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(2965), 1, - sym_class_body, - [226645] = 3, + ACTIONS(8902), 1, + anon_sym_in, + ACTIONS(8904), 1, + anon_sym_COLON, + [226645] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5660), 1, - sym_formal_parameters, - [226655] = 3, + ACTIONS(8906), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [226653] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(2341), 1, - sym_statement_block, - [226665] = 2, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5577), 1, + sym_formal_parameters, + [226663] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8585), 2, - anon_sym_COMMA, - anon_sym_RBRACE, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5812), 1, + sym_formal_parameters, [226673] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - STATE(3186), 1, + STATE(2921), 1, sym_class_body, [226683] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, - anon_sym_LBRACE, - STATE(2305), 1, - sym_statement_block, + ACTIONS(8908), 1, + anon_sym_LT, + STATE(2394), 1, + sym_type_arguments, [226693] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(1050), 1, + STATE(2923), 1, sym_statement_block, [226703] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - STATE(2302), 1, + STATE(2931), 1, sym_class_body, [226713] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(4642), 1, - sym_class_body, + ACTIONS(8910), 1, + anon_sym_LPAREN, + STATE(5455), 1, + sym_parenthesized_expression, [226723] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5788), 1, - sym_formal_parameters, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(2932), 1, + sym_statement_block, [226733] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(4716), 1, + STATE(1164), 1, sym_statement_block, [226743] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(2506), 1, + STATE(1067), 1, + sym_statement_block, + [226753] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8579), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [226761] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(2933), 1, + sym_statement_block, + [226771] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7327), 1, + anon_sym_LBRACE, + STATE(2935), 1, sym_class_body, - [226753] = 3, + [226781] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - STATE(2508), 1, + STATE(2936), 1, + sym_class_body, + [226791] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(2505), 1, + sym_class_body, + [226801] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4815), 1, + anon_sym_LBRACE, + STATE(2506), 1, sym_statement_block, - [226763] = 3, + [226811] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5216), 1, + STATE(5224), 1, sym_statement_block, - [226773] = 3, + [226821] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5699), 1, + STATE(5784), 1, sym_formal_parameters, - [226783] = 2, + [226831] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 2, + ACTIONS(6965), 2, anon_sym_COMMA, anon_sym_RBRACE, - [226791] = 3, + [226839] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5230), 1, + STATE(5234), 1, sym_statement_block, - [226801] = 2, + [226849] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 2, + ACTIONS(6959), 2, anon_sym_COMMA, anon_sym_RBRACE, - [226809] = 3, + [226857] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - STATE(1068), 1, + STATE(1069), 1, sym_class_body, - [226819] = 3, + [226867] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, + ACTIONS(7428), 1, anon_sym_LBRACE, - STATE(1052), 1, + STATE(1064), 1, sym_statement_block, - [226829] = 3, + [226877] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(5436), 1, + STATE(2946), 1, sym_statement_block, - [226839] = 2, + [226887] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8882), 2, + ACTIONS(8912), 2, anon_sym_COMMA, anon_sym_RBRACE, - [226847] = 3, + [226895] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7382), 1, + ACTIONS(7366), 1, anon_sym_LBRACE, - STATE(1191), 1, + STATE(1114), 1, sym_class_body, - [226857] = 3, + [226905] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7386), 1, + ACTIONS(7377), 1, anon_sym_LBRACE, - STATE(166), 1, + STATE(156), 1, sym_class_body, - [226867] = 2, + [226915] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8884), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [226875] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5776), 1, + sym_formal_parameters, + [226925] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(2942), 1, + STATE(2960), 1, sym_statement_block, - [226885] = 3, + [226935] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5723), 1, - sym_formal_parameters, - [226895] = 2, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(3114), 1, + sym_class_body, + [226945] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8886), 2, + ACTIONS(8914), 2, anon_sym_COMMA, anon_sym_RBRACE, - [226903] = 3, + [226953] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7382), 1, + ACTIONS(7366), 1, anon_sym_LBRACE, - STATE(1080), 1, + STATE(1098), 1, sym_class_body, - [226913] = 3, + [226963] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, + ACTIONS(1932), 1, anon_sym_LBRACE, - STATE(3366), 1, + STATE(142), 1, sym_statement_block, - [226923] = 3, + [226973] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, - anon_sym_from, - STATE(5441), 1, - sym__from_clause, - [226933] = 3, + ACTIONS(7291), 1, + anon_sym_LBRACE, + STATE(2319), 1, + sym_class_body, + [226983] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7327), 1, + anon_sym_LBRACE, + STATE(2962), 1, + sym_class_body, + [226993] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, + ACTIONS(4833), 1, anon_sym_LBRACE, - STATE(2910), 1, + STATE(2313), 1, sym_statement_block, - [226943] = 2, + [227003] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8888), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [226951] = 3, + ACTIONS(4833), 1, + anon_sym_LBRACE, + STATE(2307), 1, + sym_statement_block, + [227013] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7327), 1, anon_sym_LBRACE, - STATE(2287), 1, + STATE(2964), 1, sym_class_body, - [226961] = 3, + [227023] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4783), 1, + ACTIONS(5278), 1, anon_sym_LPAREN, - STATE(2274), 1, + STATE(2966), 1, sym_arguments, - [226971] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4650), 1, - sym_formal_parameters, - [226981] = 3, + [227033] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8890), 1, - anon_sym_SEMI, - ACTIONS(8892), 1, - sym__automatic_semicolon, - [226991] = 3, + ACTIONS(7114), 1, + anon_sym_LT, + STATE(3832), 1, + sym_type_arguments, + [227043] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, + ACTIONS(4815), 1, anon_sym_LBRACE, - STATE(4714), 1, + STATE(3091), 1, sym_statement_block, - [227001] = 3, + [227053] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, - anon_sym_LBRACE, - STATE(2908), 1, - sym_class_body, - [227011] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(4518), 1, + sym_formal_parameters, + [227063] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(4789), 1, + anon_sym_LPAREN, + STATE(2294), 1, + sym_arguments, + [227073] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7291), 1, anon_sym_LBRACE, - STATE(2900), 1, + STATE(2290), 1, sym_class_body, - [227021] = 3, + [227083] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5288), 1, - anon_sym_LPAREN, - STATE(2889), 1, - sym_arguments, - [227031] = 3, + ACTIONS(8916), 2, + sym__automatic_semicolon, + anon_sym_SEMI, + [227091] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(2242), 1, + STATE(2978), 1, sym_statement_block, - [227041] = 3, + [227101] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7616), 1, - sym_identifier, - ACTIONS(7620), 1, - sym_private_property_identifier, - [227051] = 3, + ACTIONS(7352), 1, + anon_sym_LBRACE, + STATE(4522), 1, + sym_class_body, + [227111] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(7291), 1, anon_sym_LBRACE, - STATE(2233), 1, - sym_statement_block, - [227061] = 3, + STATE(2284), 1, + sym_class_body, + [227121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, + ACTIONS(4833), 1, anon_sym_LBRACE, - STATE(2878), 1, + STATE(2240), 1, sym_statement_block, - [227071] = 3, + [227131] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7283), 1, - anon_sym_is, - ACTIONS(7540), 1, - anon_sym_LBRACE, - [227081] = 3, + ACTIONS(3922), 1, + anon_sym_COLON, + STATE(5440), 1, + sym_type_annotation, + [227141] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, + ACTIONS(8532), 1, sym_identifier, - STATE(5419), 1, + STATE(5429), 1, sym_type_parameter, - [227091] = 3, + [227151] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(5755), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(2872), 1, - sym_statement_block, - [227101] = 3, + STATE(3094), 1, + sym_class_body, + [227161] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(4833), 1, anon_sym_LBRACE, - STATE(2869), 1, - sym_class_body, - [227111] = 2, + STATE(2270), 1, + sym_statement_block, + [227171] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8666), 2, + ACTIONS(8616), 2, anon_sym_COMMA, anon_sym_RBRACK, - [227119] = 2, + [227179] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8894), 2, + ACTIONS(8918), 2, anon_sym_COMMA, anon_sym_RBRACK, - [227127] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7333), 1, - anon_sym_LBRACE, - STATE(2215), 1, - sym_class_body, - [227137] = 3, + [227187] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8828), 1, - anon_sym_LPAREN, - STATE(53), 1, - sym_parenthesized_expression, - [227147] = 3, + ACTIONS(8920), 1, + anon_sym_SEMI, + ACTIONS(8922), 1, + sym__automatic_semicolon, + [227197] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - STATE(3073), 1, + STATE(4534), 1, sym_class_body, - [227157] = 3, + [227207] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5800), 1, + STATE(4538), 1, sym_formal_parameters, - [227167] = 3, + [227217] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5801), 1, - sym_formal_parameters, - [227177] = 3, + ACTIONS(5758), 1, + anon_sym_LBRACE, + STATE(2983), 1, + sym_statement_block, + [227227] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8860), 1, + ACTIONS(7198), 1, + anon_sym_COLON, + STATE(5152), 1, + sym_type_annotation, + [227237] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(1163), 1, - sym_enum_body, - [227187] = 3, + STATE(3090), 1, + sym_class_body, + [227247] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4710), 1, - sym_formal_parameters, - [227197] = 3, + ACTIONS(7291), 1, + anon_sym_LBRACE, + STATE(2267), 1, + sym_class_body, + [227257] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5666), 1, - sym_formal_parameters, - [227207] = 2, + ACTIONS(7352), 1, + anon_sym_LBRACE, + STATE(4543), 1, + sym_class_body, + [227267] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8896), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [227215] = 2, + ACTIONS(7352), 1, + anon_sym_LBRACE, + STATE(4544), 1, + sym_class_body, + [227277] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4585), 2, + ACTIONS(4602), 2, sym__automatic_semicolon, anon_sym_SEMI, - [227223] = 3, + [227285] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5662), 1, - sym_formal_parameters, - [227233] = 3, + ACTIONS(7291), 1, + anon_sym_LBRACE, + STATE(2266), 1, + sym_class_body, + [227295] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8898), 1, - anon_sym_LPAREN, - STATE(5445), 1, - sym_parenthesized_expression, - [227243] = 3, + ACTIONS(4833), 1, + anon_sym_LBRACE, + STATE(2265), 1, + sym_statement_block, + [227305] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(4833), 1, anon_sym_LBRACE, - STATE(1123), 1, + STATE(2264), 1, sym_statement_block, - [227253] = 2, + [227315] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8900), 2, + ACTIONS(8924), 2, anon_sym_COMMA, anon_sym_RPAREN, - [227261] = 2, + [227323] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8471), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [227269] = 2, + ACTIONS(7291), 1, + anon_sym_LBRACE, + STATE(2263), 1, + sym_class_body, + [227333] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7323), 2, + ACTIONS(7287), 2, anon_sym_in, anon_sym_of, - [227277] = 3, + [227341] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7327), 1, + anon_sym_LBRACE, + STATE(2986), 1, + sym_class_body, + [227351] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5600), 1, + STATE(5629), 1, sym_formal_parameters, - [227287] = 3, + [227361] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8902), 1, - anon_sym_LT, - STATE(2510), 1, - sym_type_arguments, - [227297] = 3, + ACTIONS(8318), 2, + anon_sym_COMMA, + anon_sym_GT, + [227369] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5457), 1, + STATE(5624), 1, sym_formal_parameters, - [227307] = 3, + [227379] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5517), 1, - sym_formal_parameters, - [227317] = 3, + ACTIONS(4815), 1, + anon_sym_LBRACE, + STATE(3088), 1, + sym_statement_block, + [227389] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5513), 1, - sym_formal_parameters, - [227327] = 3, + ACTIONS(7352), 1, + anon_sym_LBRACE, + STATE(4551), 1, + sym_class_body, + [227399] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8904), 1, + ACTIONS(8926), 1, anon_sym_LT, - STATE(2231), 1, + STATE(2234), 1, sym_type_arguments, - [227337] = 3, + [227409] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8906), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(4625), 1, - sym_enum_body, - [227347] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8908), 1, - sym_identifier, - STATE(4988), 1, - sym_nested_identifier, - [227357] = 2, + STATE(3087), 1, + sym_class_body, + [227419] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8910), 2, + ACTIONS(8928), 2, anon_sym_COMMA, anon_sym_RBRACE, - [227365] = 3, + [227427] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8828), 1, - anon_sym_LPAREN, - STATE(46), 1, - sym_parenthesized_expression, - [227375] = 3, + ACTIONS(7352), 1, + anon_sym_LBRACE, + STATE(4553), 1, + sym_class_body, + [227437] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(2547), 1, + STATE(2531), 1, sym_class_body, - [227385] = 3, + [227447] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4815), 1, anon_sym_LBRACE, - STATE(2548), 1, + STATE(2532), 1, sym_statement_block, - [227395] = 3, + [227457] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4815), 1, anon_sym_LBRACE, - STATE(2549), 1, + STATE(2533), 1, sym_statement_block, - [227405] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8828), 1, - anon_sym_LPAREN, - STATE(44), 1, - sym_parenthesized_expression, - [227415] = 3, + [227467] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - STATE(2550), 1, + STATE(4555), 1, sym_class_body, - [227425] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6979), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [227433] = 3, + [227477] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(5298), 1, - sym_statement_block, - [227443] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7118), 1, - anon_sym_LT, - STATE(3859), 1, - sym_type_arguments, - [227453] = 2, + STATE(2535), 1, + sym_class_body, + [227487] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6969), 2, + ACTIONS(6947), 2, anon_sym_COMMA, anon_sym_RBRACE, - [227461] = 3, + [227495] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5300), 1, + STATE(5307), 1, sym_statement_block, - [227471] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(3886), 1, - anon_sym_COLON, - STATE(5430), 1, - sym_type_annotation, - [227481] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1067), 1, - sym_class_body, - [227491] = 3, + [227505] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, + ACTIONS(8930), 1, anon_sym_LBRACE, - STATE(1063), 1, + STATE(3409), 1, sym_statement_block, - [227501] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8912), 1, - anon_sym_SEMI, - ACTIONS(8914), 1, - sym__automatic_semicolon, - [227511] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7202), 1, - anon_sym_COLON, - STATE(4971), 1, - sym_type_annotation, - [227521] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7357), 1, - anon_sym_LBRACE, - STATE(1061), 1, - sym_class_body, - [227531] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6969), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [227539] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8916), 1, - anon_sym_SEMI, - ACTIONS(8918), 1, - sym__automatic_semicolon, - [227549] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8920), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [227557] = 2, + [227515] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8922), 2, + ACTIONS(6977), 2, anon_sym_COMMA, anon_sym_RBRACE, - [227565] = 3, + [227523] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5581), 1, - sym_formal_parameters, - [227575] = 3, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5309), 1, + sym_statement_block, + [227533] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7291), 1, anon_sym_LBRACE, - STATE(2570), 1, + STATE(2255), 1, sym_class_body, - [227585] = 3, + [227543] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7386), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - STATE(169), 1, + STATE(1060), 1, sym_class_body, - [227595] = 2, + [227553] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7540), 2, + ACTIONS(7428), 1, anon_sym_LBRACE, - anon_sym_EQ_GT, - [227603] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7375), 1, - anon_sym_is, - ACTIONS(7540), 1, - anon_sym_EQ_GT, - [227613] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8444), 2, - anon_sym_COMMA, - anon_sym_GT, - [227621] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5583), 1, - sym_formal_parameters, - [227631] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(4518), 1, - sym_formal_parameters, - [227641] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8924), 1, - anon_sym_SEMI, - ACTIONS(8926), 1, - sym__automatic_semicolon, - [227651] = 3, + STATE(1059), 1, + sym_statement_block, + [227563] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7526), 1, - sym_identifier, - ACTIONS(7530), 1, - sym_private_property_identifier, - [227661] = 3, + ACTIONS(7352), 1, + anon_sym_LBRACE, + STATE(4562), 1, + sym_class_body, + [227573] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8826), 1, + ACTIONS(4833), 1, anon_sym_LBRACE, - STATE(3356), 1, + STATE(2256), 1, sym_statement_block, - [227671] = 3, + [227583] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7562), 1, - sym_identifier, - ACTIONS(7566), 1, - sym_private_property_identifier, - [227681] = 2, + ACTIONS(7352), 1, + anon_sym_LBRACE, + STATE(1051), 1, + sym_class_body, + [227593] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6983), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [227689] = 3, + ACTIONS(7576), 1, + sym_identifier, + ACTIONS(7580), 1, + sym_private_property_identifier, + [227603] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7382), 1, + ACTIONS(7377), 1, anon_sym_LBRACE, - STATE(1175), 1, + STATE(162), 1, sym_class_body, - [227699] = 3, + [227613] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8906), 1, - anon_sym_LBRACE, - STATE(4612), 1, - sym_enum_body, - [227709] = 2, + ACTIONS(8932), 2, + anon_sym_COMMA, + anon_sym_RBRACE, + [227621] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6991), 2, + ACTIONS(8934), 2, anon_sym_COMMA, anon_sym_RBRACE, - [227717] = 3, + [227629] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(1932), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(159), 1, - sym_statement_block, - [227727] = 3, + STATE(2493), 1, + sym_class_body, + [227639] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7434), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(4610), 1, - sym_statement_block, - [227737] = 3, + STATE(2541), 1, + sym_class_body, + [227649] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(7377), 1, anon_sym_LBRACE, - STATE(2573), 1, - sym_statement_block, - [227747] = 3, + STATE(169), 1, + sym_class_body, + [227659] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4841), 1, + ACTIONS(7536), 2, anon_sym_LBRACE, - STATE(2256), 1, - sym_statement_block, - [227757] = 3, + anon_sym_EQ_GT, + [227667] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7386), 1, - anon_sym_LBRACE, - STATE(143), 1, - sym_class_body, - [227767] = 3, + ACTIONS(7396), 1, + anon_sym_is, + ACTIONS(7536), 1, + anon_sym_EQ_GT, + [227677] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(5758), 1, anon_sym_LBRACE, - STATE(2502), 1, - sym_class_body, - [227777] = 3, + STATE(2973), 1, + sym_statement_block, + [227687] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7940), 1, + anon_sym_LPAREN, + STATE(4100), 1, + sym_formal_parameters, + [227697] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4705), 1, + STATE(4626), 1, sym_formal_parameters, - [227787] = 3, + [227707] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4815), 1, anon_sym_LBRACE, - STATE(2507), 1, + STATE(2496), 1, sym_statement_block, - [227797] = 3, + [227717] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4815), 1, anon_sym_LBRACE, - STATE(2523), 1, + STATE(2502), 1, sym_statement_block, - [227807] = 3, + [227727] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5656), 1, - sym_formal_parameters, - [227817] = 3, + ACTIONS(7327), 1, + anon_sym_LBRACE, + STATE(2970), 1, + sym_class_body, + [227737] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5783), 1, + STATE(4447), 1, sym_formal_parameters, - [227827] = 2, + [227747] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7019), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [227835] = 3, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5552), 1, + sym_formal_parameters, + [227757] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7333), 1, + ACTIONS(7366), 1, anon_sym_LBRACE, - STATE(2262), 1, + STATE(1176), 1, sym_class_body, - [227845] = 3, + [227767] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5803), 1, + STATE(5509), 1, sym_formal_parameters, - [227855] = 2, + [227777] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7023), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [227863] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5637), 2, + ACTIONS(5596), 2, sym__automatic_semicolon, anon_sym_SEMI, - [227871] = 2, + [227785] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(6987), 2, - anon_sym_COMMA, - anon_sym_RBRACE, - [227879] = 3, + ACTIONS(1932), 1, + anon_sym_LBRACE, + STATE(152), 1, + sym_statement_block, + [227795] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7386), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - STATE(168), 1, + STATE(3262), 1, sym_class_body, - [227889] = 3, + [227805] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4815), 1, + anon_sym_LBRACE, + STATE(2547), 1, + sym_statement_block, + [227815] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(4491), 1, + STATE(4443), 1, sym_formal_parameters, - [227899] = 3, + [227825] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5501), 1, + STATE(4688), 1, sym_formal_parameters, - [227909] = 3, + [227835] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(3991), 1, + STATE(5497), 1, sym_formal_parameters, - [227919] = 2, + [227845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7878), 2, + ACTIONS(7833), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [227927] = 2, + [227853] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7732), 2, + ACTIONS(7829), 2, anon_sym_LBRACE, anon_sym_EQ_GT, - [227935] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8607), 2, - anon_sym_COMMA, - anon_sym_GT, - [227943] = 3, + [227861] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(2556), 1, + STATE(2548), 1, sym_class_body, - [227953] = 2, + [227871] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8928), 2, + ACTIONS(8936), 2, sym__automatic_semicolon, anon_sym_SEMI, - [227961] = 2, + [227879] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8930), 2, + ACTIONS(8938), 2, sym__automatic_semicolon, anon_sym_SEMI, - [227969] = 3, + [227887] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5617), 1, - sym_formal_parameters, - [227979] = 3, + ACTIONS(7311), 1, + anon_sym_LBRACE, + STATE(3502), 1, + sym_class_body, + [227897] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8932), 1, + ACTIONS(8940), 1, sym_identifier, - STATE(4970), 1, + STATE(5153), 1, sym_nested_identifier, - [227989] = 2, + [227907] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8934), 2, - anon_sym_COMMA, - anon_sym_GT, - [227997] = 3, + ACTIONS(8930), 1, + anon_sym_LBRACE, + STATE(3500), 1, + sym_statement_block, + [227917] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7357), 1, + ACTIONS(7352), 1, anon_sym_LBRACE, - STATE(1058), 1, + STATE(1057), 1, + sym_class_body, + [227927] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(3141), 1, + sym_class_body, + [227937] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8930), 1, + anon_sym_LBRACE, + STATE(3264), 1, + sym_statement_block, + [227947] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7377), 1, + anon_sym_LBRACE, + STATE(165), 1, sym_class_body, - [228007] = 3, + [227957] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5741), 1, + STATE(5633), 1, sym_formal_parameters, - [228017] = 3, + [227967] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - STATE(5368), 1, + STATE(3495), 1, + sym_class_body, + [227977] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8930), 1, + anon_sym_LBRACE, + STATE(3493), 1, sym_statement_block, - [228027] = 2, + [227987] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8936), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [228035] = 2, + ACTIONS(7518), 1, + sym_identifier, + ACTIONS(7522), 1, + sym_private_property_identifier, + [227997] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8938), 2, + ACTIONS(7458), 1, + anon_sym_LPAREN, + STATE(5775), 1, + sym_formal_parameters, + [228007] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8741), 2, anon_sym_COMMA, - anon_sym_RBRACK, - [228043] = 3, + anon_sym_GT, + [228015] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3886), 1, - anon_sym_COLON, - STATE(5333), 1, - sym_type_annotation, - [228053] = 3, + ACTIONS(8930), 1, + anon_sym_LBRACE, + STATE(3486), 1, + sym_statement_block, + [228025] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3078), 1, + anon_sym_LBRACE, + STATE(5378), 1, + sym_statement_block, + [228035] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5830), 1, + STATE(5642), 1, sym_formal_parameters, - [228063] = 2, + [228045] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7158), 1, + anon_sym_LT, + STATE(3932), 1, + sym_type_arguments, + [228055] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8940), 2, + ACTIONS(7311), 1, + anon_sym_LBRACE, + STATE(3484), 1, + sym_class_body, + [228065] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8942), 2, anon_sym_COMMA, - anon_sym_RBRACE, - [228071] = 3, + anon_sym_GT, + [228073] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8236), 1, - anon_sym_from, - STATE(5373), 1, - sym__from_clause, + ACTIONS(8944), 2, + anon_sym_COMMA, + anon_sym_RBRACE, [228081] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3080), 1, + ACTIONS(3078), 1, anon_sym_LBRACE, - STATE(5365), 1, + STATE(5375), 1, sym_statement_block, [228091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7009), 2, + ACTIONS(7023), 2, anon_sym_COMMA, anon_sym_RBRACE, - [228099] = 3, + [228099] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3582), 1, - anon_sym_LPAREN, - STATE(4244), 1, - sym_formal_parameters, - [228109] = 3, + ACTIONS(8946), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [228107] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7299), 1, + ACTIONS(8948), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [228115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(3922), 1, + anon_sym_COLON, + STATE(5343), 1, + sym_type_annotation, + [228125] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, anon_sym_LBRACE, - STATE(2577), 1, + STATE(2578), 1, + sym_class_body, + [228135] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(3030), 1, + sym_class_body, + [228145] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7311), 1, + anon_sym_LBRACE, + STATE(3373), 1, + sym_class_body, + [228155] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8930), 1, + anon_sym_LBRACE, + STATE(3383), 1, + sym_statement_block, + [228165] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(3093), 1, sym_class_body, - [228119] = 3, + [228175] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(3580), 1, anon_sym_LPAREN, - STATE(5604), 1, + STATE(4149), 1, sym_formal_parameters, - [228129] = 3, + [228185] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(4827), 1, + ACTIONS(4815), 1, anon_sym_LBRACE, - STATE(2579), 1, + STATE(2575), 1, sym_statement_block, - [228139] = 3, + [228195] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8942), 1, + ACTIONS(8950), 1, anon_sym_SEMI, - ACTIONS(8944), 1, + ACTIONS(8952), 1, sym__automatic_semicolon, - [228149] = 3, + [228205] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5479), 1, + STATE(5485), 1, sym_formal_parameters, - [228159] = 3, + [228215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, - anon_sym_LPAREN, - STATE(5480), 1, - sym_formal_parameters, - [228169] = 3, + ACTIONS(4815), 1, + anon_sym_LBRACE, + STATE(3078), 1, + sym_statement_block, + [228225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8930), 1, + anon_sym_LBRACE, + STATE(3472), 1, + sym_statement_block, + [228235] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5616), 1, + STATE(5777), 1, sym_formal_parameters, - [228179] = 2, + [228245] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8946), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [228187] = 2, + ACTIONS(7303), 1, + anon_sym_LBRACE, + STATE(3071), 1, + sym_class_body, + [228255] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(3496), 2, + ACTIONS(8954), 2, sym__automatic_semicolon, anon_sym_SEMI, - [228195] = 3, + [228263] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(4857), 1, + anon_sym_LPAREN, + STATE(2538), 1, + sym_arguments, + [228273] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5537), 1, + STATE(5516), 1, sym_formal_parameters, - [228205] = 2, + [228283] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(3484), 2, - sym__automatic_semicolon, - anon_sym_SEMI, - [228213] = 3, + ACTIONS(4815), 1, + anon_sym_LBRACE, + STATE(3135), 1, + sym_statement_block, + [228293] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7444), 1, + ACTIONS(7458), 1, anon_sym_LPAREN, - STATE(5528), 1, + STATE(5513), 1, sym_formal_parameters, - [228223] = 3, + [228303] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4982), 1, - anon_sym_LPAREN, - STATE(2553), 1, - sym_arguments, - [228233] = 3, + ACTIONS(8815), 2, + anon_sym_COMMA, + anon_sym_RPAREN, + [228311] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8850), 1, + ACTIONS(5865), 1, anon_sym_LPAREN, - STATE(36), 1, - sym__for_header, - [228243] = 3, + STATE(3298), 1, + sym_arguments, + [228321] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8485), 1, - sym_identifier, - STATE(4935), 1, - sym_type_parameter, - [228253] = 2, + ACTIONS(7311), 1, + anon_sym_LBRACE, + STATE(3426), 1, + sym_class_body, + [228331] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8948), 2, + ACTIONS(8956), 2, anon_sym_COMMA, anon_sym_RPAREN, - [228261] = 3, + [228339] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(7345), 1, + ACTIONS(7311), 1, anon_sym_LBRACE, - STATE(2844), 1, + STATE(3459), 1, sym_class_body, - [228271] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8950), 2, - anon_sym_COMMA, - anon_sym_RPAREN, - [228279] = 2, + [228349] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8561), 2, + ACTIONS(8958), 2, anon_sym_COMMA, anon_sym_RPAREN, - [228287] = 2, + [228357] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(8952), 1, - anon_sym_EQ_GT, - [228294] = 2, + ACTIONS(8930), 1, + anon_sym_LBRACE, + STATE(3468), 1, + sym_statement_block, + [228367] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8954), 1, + ACTIONS(8960), 1, anon_sym_EQ_GT, - [228301] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8956), 1, - sym_identifier, - [228308] = 2, + [228374] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8958), 1, - anon_sym_COLON, - [228315] = 2, + ACTIONS(6385), 1, + anon_sym_RBRACK, + [228381] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8960), 1, - anon_sym_EQ_GT, - [228322] = 2, + ACTIONS(4825), 1, + anon_sym_DOT, + [228388] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8962), 1, - anon_sym_EQ, - [228329] = 2, + anon_sym_COLON, + [228395] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8964), 1, anon_sym_EQ_GT, - [228336] = 2, + [228402] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8966), 1, - anon_sym_EQ_GT, - [228343] = 2, + anon_sym_EQ, + [228409] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8968), 1, anon_sym_EQ_GT, - [228350] = 2, + [228416] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8970), 1, anon_sym_EQ_GT, - [228357] = 2, + [228423] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8972), 1, anon_sym_EQ_GT, - [228364] = 2, - ACTIONS(3), 1, + [228430] = 2, + ACTIONS(8158), 1, sym_comment, ACTIONS(8974), 1, - anon_sym_EQ_GT, - [228371] = 2, + sym_regex_pattern, + [228437] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8976), 1, anon_sym_EQ_GT, - [228378] = 2, + [228444] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8978), 1, - anon_sym_from, - [228385] = 2, + anon_sym_EQ_GT, + [228451] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8980), 1, - anon_sym_LPAREN, - [228392] = 2, + anon_sym_EQ_GT, + [228458] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8982), 1, - anon_sym_target, - [228399] = 2, + anon_sym_from, + [228465] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8984), 1, - anon_sym_EQ_GT, - [228406] = 2, + anon_sym_LPAREN, + [228472] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8986), 1, - anon_sym_from, - [228413] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5420), 1, - anon_sym_DOT, - [228420] = 2, + anon_sym_EQ_GT, + [228479] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8988), 1, - anon_sym_from, - [228427] = 2, + anon_sym_EQ_GT, + [228486] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8990), 1, - anon_sym_EQ_GT, - [228434] = 2, + anon_sym_from, + [228493] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8992), 1, anon_sym_EQ_GT, - [228441] = 2, + [228500] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8994), 1, - anon_sym_EQ_GT, - [228448] = 2, + anon_sym_from, + [228507] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8996), 1, anon_sym_EQ_GT, - [228455] = 2, + [228514] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8608), 1, + anon_sym_EQ, + [228521] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(8998), 1, - anon_sym_require, - [228462] = 2, + anon_sym_EQ_GT, + [228528] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9000), 1, anon_sym_EQ_GT, - [228469] = 2, + [228535] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9002), 1, - anon_sym_EQ_GT, - [228476] = 2, + anon_sym_require, + [228542] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9004), 1, - anon_sym_EQ_GT, - [228483] = 2, + anon_sym_RBRACK, + [228549] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9006), 1, + ACTIONS(6349), 1, anon_sym_RBRACK, - [228490] = 2, + [228556] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9008), 1, + ACTIONS(9006), 1, anon_sym_LBRACK, - [228497] = 2, + [228563] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9010), 1, + ACTIONS(9008), 1, anon_sym_EQ_GT, - [228504] = 2, + [228570] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9010), 1, + sym_identifier, + [228577] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9012), 1, anon_sym_EQ_GT, - [228511] = 2, + [228584] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9014), 1, - anon_sym_EQ, - [228518] = 2, + anon_sym_EQ_GT, + [228591] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9016), 1, - anon_sym_EQ, - [228525] = 2, + anon_sym_EQ_GT, + [228598] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9018), 1, - anon_sym_EQ_GT, - [228532] = 2, + anon_sym_EQ, + [228605] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9020), 1, anon_sym_EQ_GT, - [228539] = 2, + [228612] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8768), 1, + anon_sym_RBRACK, + [228619] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9022), 1, - sym_identifier, - [228546] = 2, + anon_sym_RPAREN, + [228626] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9024), 1, anon_sym_EQ_GT, - [228553] = 2, + [228633] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9026), 1, - anon_sym_EQ_GT, - [228560] = 2, + sym_identifier, + [228640] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9028), 1, anon_sym_EQ_GT, - [228567] = 2, + [228647] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9030), 1, anon_sym_EQ_GT, - [228574] = 2, + [228654] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9032), 1, anon_sym_EQ_GT, - [228581] = 2, + [228661] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9034), 1, anon_sym_EQ_GT, - [228588] = 2, + [228668] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9036), 1, - anon_sym_EQ_GT, - [228595] = 2, + sym_identifier, + [228675] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9038), 1, - anon_sym_EQ_GT, - [228602] = 2, + anon_sym_target, + [228682] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9040), 1, anon_sym_EQ_GT, - [228609] = 2, + [228689] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9042), 1, - sym_identifier, - [228616] = 2, + anon_sym_EQ_GT, + [228696] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9044), 1, sym_identifier, - [228623] = 2, + [228703] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9046), 1, anon_sym_EQ_GT, - [228630] = 2, + [228710] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9048), 1, anon_sym_EQ_GT, - [228637] = 2, + [228717] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9050), 1, anon_sym_EQ_GT, - [228644] = 2, + [228724] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9052), 1, - sym_identifier, - [228651] = 2, + anon_sym_EQ_GT, + [228731] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9054), 1, - sym_identifier, - [228658] = 2, + anon_sym_EQ_GT, + [228738] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9056), 1, sym_identifier, - [228665] = 2, + [228745] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9058), 1, - sym_number, - [228672] = 2, + anon_sym_EQ, + [228752] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9060), 1, anon_sym_EQ_GT, - [228679] = 2, + [228759] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9062), 1, anon_sym_EQ_GT, - [228686] = 2, + [228766] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9064), 1, anon_sym_from, - [228693] = 2, + [228773] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9066), 1, sym_identifier, - [228700] = 2, + [228780] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9068), 1, anon_sym_EQ_GT, - [228707] = 2, + [228787] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9070), 1, anon_sym_EQ_GT, - [228714] = 2, + [228794] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9072), 1, - anon_sym_EQ_GT, - [228721] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8752), 1, anon_sym_EQ, - [228728] = 2, + [228801] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9074), 1, anon_sym_EQ_GT, - [228735] = 2, + [228808] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9076), 1, anon_sym_EQ_GT, - [228742] = 2, + [228815] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9078), 1, - sym_identifier, - [228749] = 2, + anon_sym_EQ_GT, + [228822] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9080), 1, - anon_sym_EQ, - [228756] = 2, + anon_sym_EQ_GT, + [228829] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5882), 1, - anon_sym_RPAREN, - [228763] = 2, + ACTIONS(9082), 1, + anon_sym_EQ, + [228836] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6424), 1, - anon_sym_RBRACK, - [228770] = 2, + ACTIONS(9084), 1, + anon_sym_EQ_GT, + [228843] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9082), 1, - sym_number, - [228777] = 2, + ACTIONS(6383), 1, + anon_sym_RBRACK, + [228850] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9084), 1, - sym_identifier, - [228784] = 2, + ACTIONS(5672), 1, + anon_sym_RPAREN, + [228857] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9086), 1, - anon_sym_EQ_GT, - [228791] = 2, + sym_number, + [228864] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9088), 1, - anon_sym_EQ_GT, - [228798] = 2, + anon_sym_SLASH2, + [228871] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9090), 1, - anon_sym_EQ_GT, - [228805] = 2, + sym_identifier, + [228878] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9092), 1, - sym_identifier, - [228812] = 2, + anon_sym_EQ_GT, + [228885] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9094), 1, - anon_sym_EQ_GT, - [228819] = 2, + sym_identifier, + [228892] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9096), 1, - sym_identifier, - [228826] = 2, + anon_sym_EQ_GT, + [228899] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9098), 1, - anon_sym_EQ, - [228833] = 2, + sym_identifier, + [228906] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6436), 1, - anon_sym_RBRACE, - [228840] = 2, + ACTIONS(9100), 1, + anon_sym_EQ, + [228913] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9100), 1, - anon_sym_SLASH2, - [228847] = 2, + ACTIONS(6391), 1, + anon_sym_RBRACE, + [228920] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9102), 1, anon_sym_EQ_GT, - [228854] = 2, + [228927] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9104), 1, - anon_sym_EQ_GT, - [228861] = 2, + anon_sym_COLON, + [228934] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9106), 1, anon_sym_EQ_GT, - [228868] = 2, + [228941] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9108), 1, anon_sym_EQ_GT, - [228875] = 2, + [228948] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9110), 1, anon_sym_EQ_GT, - [228882] = 2, + [228955] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9112), 1, - anon_sym_EQ_GT, - [228889] = 2, + anon_sym_SLASH2, + [228962] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9114), 1, anon_sym_EQ_GT, - [228896] = 2, + [228969] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9116), 1, - anon_sym_EQ_GT, - [228903] = 2, + sym_identifier, + [228976] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9118), 1, anon_sym_EQ_GT, - [228910] = 2, + [228983] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9120), 1, - anon_sym_EQ_GT, - [228917] = 2, + sym_number, + [228990] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9122), 1, anon_sym_EQ_GT, - [228924] = 2, + [228997] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9124), 1, anon_sym_EQ_GT, - [228931] = 2, + [229004] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5863), 1, + anon_sym_RPAREN, + [229011] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6472), 1, + anon_sym_RBRACK, + [229018] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9126), 1, - anon_sym_EQ, - [228938] = 2, + sym_identifier, + [229025] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9128), 1, - anon_sym_target, - [228945] = 2, + anon_sym_LBRACE, + [229032] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6379), 1, + anon_sym_RBRACK, + [229039] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9130), 1, - anon_sym_LBRACE, - [228952] = 2, + anon_sym_EQ, + [229046] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9132), 1, anon_sym_EQ_GT, - [228959] = 2, + [229053] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9134), 1, - anon_sym_EQ_GT, - [228966] = 2, + sym_identifier, + [229060] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9136), 1, - anon_sym_EQ_GT, - [228973] = 2, + anon_sym_RPAREN, + [229067] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9138), 1, - anon_sym_EQ_GT, - [228980] = 2, + anon_sym_from, + [229074] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9140), 1, - sym_identifier, - [228987] = 2, + anon_sym_EQ_GT, + [229081] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9142), 1, - anon_sym_EQ_GT, - [228994] = 2, + anon_sym_target, + [229088] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9144), 1, - anon_sym_EQ_GT, - [229001] = 2, + anon_sym_EQ, + [229095] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9146), 1, - anon_sym_COLON, - [229008] = 2, + anon_sym_EQ_GT, + [229102] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9148), 1, - anon_sym_EQ, - [229015] = 2, + sym_identifier, + [229109] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6470), 1, + anon_sym_COLON, + [229116] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6481), 1, + anon_sym_RPAREN, + [229123] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6483), 1, + anon_sym_RPAREN, + [229130] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9150), 1, sym_identifier, - [229022] = 2, + [229137] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9152), 1, anon_sym_EQ_GT, - [229029] = 2, + [229144] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9154), 1, + ACTIONS(6485), 1, anon_sym_RPAREN, - [229036] = 2, + [229151] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6390), 1, + ACTIONS(9154), 1, + anon_sym_EQ_GT, + [229158] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6341), 1, anon_sym_RBRACK, - [229043] = 2, + [229165] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9156), 1, - sym_identifier, - [229050] = 2, + anon_sym_RBRACK, + [229172] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9158), 1, - sym_identifier, - [229057] = 2, + anon_sym_EQ_GT, + [229179] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8636), 1, + anon_sym_RBRACK, + [229186] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9160), 1, - anon_sym_RBRACE, - [229064] = 2, + anon_sym_EQ_GT, + [229193] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9162), 1, - anon_sym_EQ, - [229071] = 2, + anon_sym_EQ_GT, + [229200] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6081), 1, - anon_sym_DOT, - [229078] = 2, + ACTIONS(5979), 1, + anon_sym_RPAREN, + [229207] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9164), 1, anon_sym_EQ_GT, - [229085] = 2, + [229214] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9166), 1, - sym_identifier, - [229092] = 2, + anon_sym_readonly, + [229221] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9168), 1, - sym_identifier, - [229099] = 2, + ACTIONS(6222), 1, + anon_sym_RBRACK, + [229228] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8466), 1, - anon_sym_RBRACK, - [229106] = 2, + ACTIONS(9138), 1, + anon_sym_from, + [229235] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9168), 1, + anon_sym_EQ_GT, + [229242] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9170), 1, - sym_identifier, - [229113] = 2, - ACTIONS(8148), 1, + anon_sym_EQ, + [229249] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9172), 1, - sym_regex_pattern, - [229120] = 2, + anon_sym_EQ_GT, + [229256] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9174), 1, - anon_sym_EQ_GT, - [229127] = 2, + sym_identifier, + [229263] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9176), 1, anon_sym_EQ_GT, - [229134] = 2, + [229270] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9178), 1, - anon_sym_readonly, - [229141] = 2, + anon_sym_EQ_GT, + [229277] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6291), 1, + anon_sym_RBRACK, + [229284] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9180), 1, anon_sym_from, - [229148] = 2, + [229291] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9182), 1, - anon_sym_RPAREN, - [229155] = 2, + anon_sym_EQ_GT, + [229298] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9184), 1, - anon_sym_EQ_GT, - [229162] = 2, + anon_sym_RPAREN, + [229305] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(6403), 1, + anon_sym_RPAREN, + [229312] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9186), 1, - anon_sym_EQ, - [229169] = 2, + anon_sym_RPAREN, + [229319] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9188), 1, anon_sym_EQ_GT, - [229176] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8655), 1, - anon_sym_RBRACK, - [229183] = 2, - ACTIONS(3), 1, + [229326] = 2, + ACTIONS(8158), 1, sym_comment, ACTIONS(9190), 1, - anon_sym_EQ_GT, - [229190] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6428), 1, - anon_sym_COLON, - [229197] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6430), 1, - anon_sym_RPAREN, - [229204] = 2, + sym_regex_pattern, + [229333] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9192), 1, anon_sym_EQ_GT, - [229211] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6432), 1, - anon_sym_RPAREN, - [229218] = 2, + [229340] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6434), 1, - anon_sym_RPAREN, - [229225] = 2, + ACTIONS(8524), 1, + anon_sym_RBRACK, + [229347] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9194), 1, - anon_sym_EQ_GT, - [229232] = 2, + anon_sym_DOT, + [229354] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9196), 1, - sym_identifier, - [229239] = 2, + anon_sym_EQ, + [229361] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9198), 1, anon_sym_EQ_GT, - [229246] = 2, + [229368] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9200), 1, - anon_sym_EQ, - [229253] = 2, + anon_sym_EQ_GT, + [229375] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9202), 1, - anon_sym_EQ_GT, - [229260] = 2, + anon_sym_COLON, + [229382] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9204), 1, - anon_sym_DOT, - [229267] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8506), 1, anon_sym_RBRACK, - [229274] = 2, + [229389] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9206), 1, anon_sym_EQ, - [229281] = 2, + [229396] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8650), 1, + anon_sym_RBRACK, + [229403] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9208), 1, - anon_sym_EQ_GT, - [229288] = 2, + sym_number, + [229410] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9210), 1, - anon_sym_EQ_GT, - [229295] = 2, + anon_sym_RPAREN, + [229417] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9212), 1, - anon_sym_EQ_GT, - [229302] = 2, + sym_identifier, + [229424] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9214), 1, anon_sym_EQ_GT, - [229309] = 2, + [229431] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9216), 1, - sym_identifier, - [229316] = 2, + anon_sym_RPAREN, + [229438] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9218), 1, - anon_sym_EQ_GT, - [229323] = 2, - ACTIONS(8148), 1, + anon_sym_EQ, + [229445] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9220), 1, - sym_regex_pattern, - [229330] = 2, + anon_sym_SLASH2, + [229452] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9222), 1, - anon_sym_RPAREN, - [229337] = 2, + anon_sym_EQ_GT, + [229459] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9224), 1, anon_sym_EQ_GT, - [229344] = 2, + [229466] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9226), 1, anon_sym_EQ_GT, - [229351] = 2, + [229473] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9228), 1, anon_sym_EQ_GT, - [229358] = 2, + [229480] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9230), 1, - anon_sym_EQ, - [229365] = 2, + anon_sym_EQ_GT, + [229487] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9232), 1, - anon_sym_EQ_GT, - [229372] = 2, + sym_identifier, + [229494] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9234), 1, - anon_sym_EQ_GT, - [229379] = 2, + anon_sym_RPAREN, + [229501] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9236), 1, anon_sym_EQ_GT, - [229386] = 2, + [229508] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9238), 1, - anon_sym_RBRACK, - [229393] = 2, + sym_identifier, + [229515] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9240), 1, anon_sym_EQ_GT, - [229400] = 2, + [229522] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9242), 1, - anon_sym_EQ_GT, - [229407] = 2, + anon_sym_COLON, + [229529] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9244), 1, anon_sym_EQ_GT, - [229414] = 2, + [229536] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8472), 1, + anon_sym_RBRACK, + [229543] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9246), 1, - anon_sym_SLASH2, - [229421] = 2, + anon_sym_RBRACE, + [229550] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9248), 1, anon_sym_EQ_GT, - [229428] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6438), 1, - anon_sym_RBRACK, - [229435] = 2, + [229557] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9250), 1, - anon_sym_EQ_GT, - [229442] = 2, + sym_identifier, + [229564] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9252), 1, anon_sym_COLON, - [229449] = 2, + [229571] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9254), 1, anon_sym_EQ_GT, - [229456] = 2, + [229578] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9256), 1, anon_sym_EQ_GT, - [229463] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7254), 1, - anon_sym_DOT, - [229470] = 2, + [229585] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9258), 1, - anon_sym_EQ_GT, - [229477] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5866), 1, - anon_sym_RPAREN, - [229484] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6165), 1, - anon_sym_RBRACK, - [229491] = 2, + anon_sym_from, + [229592] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9260), 1, - anon_sym_EQ, - [229498] = 2, + anon_sym_EQ_GT, + [229599] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9262), 1, - sym_identifier, - [229505] = 2, - ACTIONS(8148), 1, + anon_sym_RBRACE, + [229606] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9264), 1, - sym_regex_pattern, - [229512] = 2, + anon_sym_target, + [229613] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9266), 1, anon_sym_EQ_GT, - [229519] = 2, + [229620] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9268), 1, - anon_sym_RBRACE, - [229526] = 2, + anon_sym_EQ_GT, + [229627] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9270), 1, anon_sym_EQ_GT, - [229533] = 2, + [229634] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9272), 1, - anon_sym_EQ_GT, - [229540] = 2, + ACTIONS(5826), 1, + anon_sym_RPAREN, + [229641] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9274), 1, - anon_sym_EQ_GT, - [229547] = 2, + ACTIONS(9272), 1, + sym_identifier, + [229648] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9180), 1, - anon_sym_from, - [229554] = 2, + ACTIONS(9274), 1, + anon_sym_function, + [229655] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9276), 1, - anon_sym_EQ_GT, - [229561] = 2, + sym_number, + [229662] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9278), 1, sym_identifier, - [229568] = 2, + [229669] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9280), 1, - anon_sym_function, - [229575] = 2, + anon_sym_EQ_GT, + [229676] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6476), 1, - anon_sym_RPAREN, - [229582] = 2, - ACTIONS(8148), 1, - sym_comment, ACTIONS(9282), 1, - sym_regex_pattern, - [229589] = 2, + anon_sym_EQ_GT, + [229683] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9284), 1, - anon_sym_from, - [229596] = 2, + anon_sym_SLASH2, + [229690] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9286), 1, - anon_sym_SLASH2, - [229603] = 2, + anon_sym_EQ_GT, + [229697] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9288), 1, - anon_sym_EQ_GT, - [229610] = 2, + sym_identifier, + [229704] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9290), 1, - anon_sym_EQ_GT, - [229617] = 2, + anon_sym_SLASH2, + [229711] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9292), 1, sym_identifier, - [229624] = 2, + [229718] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9294), 1, - anon_sym_SLASH2, - [229631] = 2, + sym_identifier, + [229725] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9296), 1, - anon_sym_from, - [229638] = 2, + anon_sym_RPAREN, + [229732] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9298), 1, sym_identifier, - [229645] = 2, + [229739] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9300), 1, - anon_sym_RPAREN, - [229652] = 2, + anon_sym_EQ_GT, + [229746] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9302), 1, - sym_identifier, - [229659] = 2, + ACTIONS(8602), 1, + anon_sym_RBRACK, + [229753] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6455), 1, - anon_sym_RPAREN, - [229666] = 2, + ACTIONS(9302), 1, + anon_sym_EQ_GT, + [229760] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9304), 1, - anon_sym_EQ_GT, - [229673] = 2, + sym_identifier, + [229767] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9306), 1, - anon_sym_RPAREN, - [229680] = 2, + anon_sym_EQ_GT, + [229774] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9308), 1, - anon_sym_EQ_GT, - [229687] = 2, + sym_number, + [229781] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9310), 1, - anon_sym_EQ_GT, - [229694] = 2, + anon_sym_EQ, + [229788] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6426), 1, - anon_sym_RBRACK, - [229701] = 2, + ACTIONS(5999), 1, + anon_sym_RPAREN, + [229795] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7160), 1, + anon_sym_DOT, + [229802] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9312), 1, - anon_sym_EQ, - [229708] = 2, + sym_identifier, + [229809] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9314), 1, - anon_sym_EQ_GT, - [229715] = 2, + sym_identifier, + [229816] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9316), 1, - anon_sym_EQ_GT, - [229722] = 2, + anon_sym_EQ, + [229823] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9318), 1, - anon_sym_EQ_GT, - [229729] = 2, + sym_identifier, + [229830] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9320), 1, - sym_identifier, - [229736] = 2, + anon_sym_EQ_GT, + [229837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9322), 1, + ACTIONS(8760), 1, anon_sym_EQ, - [229743] = 2, + [229844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9322), 1, + anon_sym_EQ_GT, + [229851] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9324), 1, sym_identifier, - [229750] = 2, + [229858] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9326), 1, anon_sym_EQ_GT, - [229757] = 2, + [229865] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9328), 1, - anon_sym_COLON, - [229764] = 2, + anon_sym_EQ, + [229872] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9330), 1, - anon_sym_RBRACK, - [229771] = 2, + anon_sym_EQ_GT, + [229879] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9332), 1, - sym_identifier, - [229778] = 2, + anon_sym_EQ_GT, + [229886] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9334), 1, - anon_sym_EQ_GT, - [229785] = 2, + anon_sym_RBRACE, + [229893] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9336), 1, - anon_sym_EQ, - [229792] = 2, + sym_identifier, + [229900] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9338), 1, - anon_sym_EQ_GT, - [229799] = 2, + sym_identifier, + [229907] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9340), 1, - anon_sym_EQ_GT, - [229806] = 2, + sym_number, + [229914] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9342), 1, - anon_sym_RBRACE, - [229813] = 2, + anon_sym_EQ_GT, + [229921] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9344), 1, sym_identifier, - [229820] = 2, + [229928] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9346), 1, sym_identifier, - [229827] = 2, + [229935] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9348), 1, - sym_identifier, - [229834] = 2, - ACTIONS(3), 1, + anon_sym_class, + [229942] = 2, + ACTIONS(8158), 1, sym_comment, ACTIONS(9350), 1, - anon_sym_EQ, - [229841] = 2, + sym_regex_pattern, + [229949] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9352), 1, anon_sym_EQ_GT, - [229848] = 2, + [229956] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9354), 1, - sym_identifier, - [229855] = 2, + anon_sym_EQ_GT, + [229963] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9356), 1, - anon_sym_class, - [229862] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8600), 1, - anon_sym_EQ, - [229869] = 2, + anon_sym_SLASH2, + [229970] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9358), 1, anon_sym_EQ_GT, - [229876] = 2, + [229977] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9360), 1, - anon_sym_EQ_GT, - [229883] = 2, + anon_sym_EQ, + [229984] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9362), 1, - anon_sym_EQ_GT, - [229890] = 2, + sym_identifier, + [229991] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9364), 1, - anon_sym_EQ_GT, - [229897] = 2, + anon_sym_EQ, + [229998] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9366), 1, + ACTIONS(8762), 1, sym_identifier, - [229904] = 2, + [230005] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9368), 1, - sym_identifier, - [229911] = 2, + ACTIONS(9366), 1, + anon_sym_EQ_GT, + [230012] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9370), 1, - anon_sym_COLON, - [229918] = 2, + ACTIONS(9368), 1, + anon_sym_EQ_GT, + [230019] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8714), 1, - sym_identifier, - [229925] = 2, + ACTIONS(9370), 1, + anon_sym_target, + [230026] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9372), 1, anon_sym_EQ_GT, - [229932] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6370), 1, - anon_sym_RBRACK, - [229939] = 2, + [230033] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9374), 1, - anon_sym_target, - [229946] = 2, + anon_sym_EQ_GT, + [230040] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9376), 1, anon_sym_EQ, - [229953] = 2, + [230047] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9378), 1, + ACTIONS(8338), 1, anon_sym_EQ_GT, - [229960] = 2, + [230054] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6003), 1, - anon_sym_RPAREN, - [229967] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8336), 1, + ACTIONS(7017), 1, anon_sym_EQ_GT, - [229974] = 2, + [230061] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6997), 1, - anon_sym_EQ_GT, - [229981] = 2, + ACTIONS(9378), 1, + sym_identifier, + [230068] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9380), 1, - anon_sym_EQ_GT, - [229988] = 2, + ACTIONS(8632), 1, + anon_sym_LBRACE, + [230075] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8631), 1, - anon_sym_LBRACE, - [229995] = 2, + ACTIONS(9380), 1, + anon_sym_class, + [230082] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9382), 1, - sym_identifier, - [230002] = 2, + anon_sym_SLASH2, + [230089] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9384), 1, - anon_sym_SLASH2, - [230009] = 2, + anon_sym_EQ_GT, + [230096] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8526), 1, + sym_identifier, + [230103] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9386), 1, anon_sym_EQ_GT, - [230016] = 2, + [230110] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9388), 1, - anon_sym_EQ_GT, - [230023] = 2, + ACTIONS(7116), 1, + anon_sym_DOT, + [230117] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9390), 1, - anon_sym_EQ_GT, - [230030] = 2, + ACTIONS(9388), 1, + sym_identifier, + [230124] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(7120), 1, - anon_sym_DOT, - [230037] = 2, + ACTIONS(9390), 1, + sym_number, + [230131] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9392), 1, - sym_identifier, - [230044] = 2, + anon_sym_EQ_GT, + [230138] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9394), 1, - sym_number, - [230051] = 2, + anon_sym_EQ_GT, + [230145] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9396), 1, anon_sym_EQ_GT, - [230058] = 2, + [230152] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9398), 1, anon_sym_EQ_GT, - [230065] = 2, + [230159] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9400), 1, anon_sym_EQ_GT, - [230072] = 2, + [230166] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9402), 1, anon_sym_EQ_GT, - [230079] = 2, + [230173] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9404), 1, - anon_sym_SLASH2, - [230086] = 2, + anon_sym_EQ_GT, + [230180] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9406), 1, anon_sym_EQ_GT, - [230093] = 2, + [230187] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9408), 1, anon_sym_EQ_GT, - [230100] = 2, + [230194] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8668), 1, + anon_sym_RBRACK, + [230201] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9410), 1, anon_sym_EQ_GT, - [230107] = 2, + [230208] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9412), 1, anon_sym_EQ_GT, - [230114] = 2, + [230215] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9414), 1, anon_sym_EQ_GT, - [230121] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8724), 1, - anon_sym_RBRACK, - [230128] = 2, + [230222] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9416), 1, - anon_sym_EQ_GT, - [230135] = 2, + sym_identifier, + [230229] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9418), 1, anon_sym_EQ_GT, - [230142] = 2, + [230236] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9420), 1, - sym_identifier, - [230149] = 2, + anon_sym_EQ_GT, + [230243] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9422), 1, anon_sym_EQ_GT, - [230156] = 2, + [230250] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9424), 1, - anon_sym_RPAREN, - [230163] = 2, + anon_sym_EQ_GT, + [230257] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9426), 1, anon_sym_EQ_GT, - [230170] = 2, + [230264] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8756), 1, - anon_sym_RBRACK, - [230177] = 2, - ACTIONS(8148), 1, - sym_comment, ACTIONS(9428), 1, - sym_regex_pattern, - [230184] = 2, + anon_sym_EQ_GT, + [230271] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9430), 1, - anon_sym_EQ, - [230191] = 2, + anon_sym_SLASH2, + [230278] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9432), 1, - anon_sym_EQ, - [230198] = 2, + anon_sym_EQ_GT, + [230285] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9434), 1, anon_sym_EQ_GT, - [230205] = 2, + [230292] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9436), 1, - anon_sym_class, - [230212] = 2, + anon_sym_EQ_GT, + [230299] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9438), 1, - sym_identifier, - [230219] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8530), 1, - sym_identifier, - [230226] = 2, + anon_sym_EQ_GT, + [230306] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9440), 1, anon_sym_EQ_GT, - [230233] = 2, + [230313] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9442), 1, anon_sym_EQ_GT, - [230240] = 2, + [230320] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9444), 1, anon_sym_EQ_GT, - [230247] = 2, + [230327] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9446), 1, anon_sym_EQ_GT, - [230254] = 2, + [230334] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9448), 1, - anon_sym_EQ_GT, - [230261] = 2, + anon_sym_namespace, + [230341] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9450), 1, anon_sym_while, - [230268] = 2, + [230348] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(5736), 1, + ACTIONS(5691), 1, anon_sym_RPAREN, - [230275] = 2, + [230355] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9452), 1, anon_sym_EQ_GT, - [230282] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6460), 1, - anon_sym_RBRACK, - [230289] = 2, + [230362] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9454), 1, anon_sym_EQ_GT, - [230296] = 2, + [230369] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9456), 1, - anon_sym_namespace, - [230303] = 2, + anon_sym_EQ_GT, + [230376] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9458), 1, - sym_identifier, - [230310] = 2, + anon_sym_EQ, + [230383] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9460), 1, - anon_sym_EQ, - [230317] = 2, + sym_identifier, + [230390] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9462), 1, anon_sym_EQ_GT, - [230324] = 2, + [230397] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9464), 1, - sym_identifier, - [230331] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8497), 1, - anon_sym_from, - [230338] = 2, + anon_sym_EQ_GT, + [230404] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9466), 1, anon_sym_class, - [230345] = 2, + [230411] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(8564), 1, + anon_sym_from, + [230418] = 2, + ACTIONS(8158), 1, + sym_comment, ACTIONS(9468), 1, - anon_sym_EQ_GT, - [230352] = 2, + sym_regex_pattern, + [230425] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9470), 1, anon_sym_EQ_GT, - [230359] = 2, + [230432] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9472), 1, anon_sym_EQ_GT, - [230366] = 2, + [230439] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9474), 1, anon_sym_EQ_GT, - [230373] = 2, + [230446] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9476), 1, anon_sym_EQ_GT, - [230380] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5984), 1, - anon_sym_RPAREN, - [230387] = 2, + [230453] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9478), 1, - anon_sym_SLASH2, - [230394] = 2, + anon_sym_EQ, + [230460] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9480), 1, - anon_sym_EQ_GT, - [230401] = 2, + sym_identifier, + [230467] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7264), 1, + anon_sym_DOT, + [230474] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9482), 1, anon_sym_EQ_GT, - [230408] = 2, + [230481] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9484), 1, anon_sym_EQ_GT, - [230415] = 2, + [230488] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8627), 1, - anon_sym_as, - [230422] = 2, + ACTIONS(9486), 1, + anon_sym_EQ_GT, + [230495] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9486), 1, - sym_identifier, - [230429] = 2, + ACTIONS(8770), 1, + anon_sym_as, + [230502] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9488), 1, anon_sym_EQ_GT, - [230436] = 2, + [230509] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9490), 1, - anon_sym_EQ, - [230443] = 2, + anon_sym_SLASH2, + [230516] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9492), 1, anon_sym_EQ_GT, - [230450] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(6005), 1, - anon_sym_RPAREN, - [230457] = 2, + [230523] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9494), 1, - sym_number, - [230464] = 2, + anon_sym_EQ_GT, + [230530] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9496), 1, - sym_identifier, - [230471] = 2, + anon_sym_EQ_GT, + [230537] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9498), 1, anon_sym_EQ_GT, - [230478] = 2, + [230544] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9500), 1, - anon_sym_EQ, - [230485] = 2, + anon_sym_EQ_GT, + [230551] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9502), 1, - anon_sym_SLASH2, - [230492] = 2, + anon_sym_EQ_GT, + [230558] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9504), 1, - anon_sym_EQ_GT, - [230499] = 2, + anon_sym_EQ, + [230565] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9506), 1, anon_sym_EQ_GT, - [230506] = 2, + [230572] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9508), 1, anon_sym_EQ_GT, - [230513] = 2, - ACTIONS(8148), 1, + [230579] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9510), 1, - sym_regex_pattern, - [230520] = 2, + anon_sym_EQ_GT, + [230586] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9512), 1, anon_sym_EQ_GT, - [230527] = 2, + [230593] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9514), 1, - sym_number, - [230534] = 2, + anon_sym_EQ_GT, + [230600] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9516), 1, - anon_sym_function, - [230541] = 2, + anon_sym_EQ, + [230607] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9518), 1, - sym_identifier, - [230548] = 2, + anon_sym_EQ_GT, + [230614] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9520), 1, - sym_identifier, - [230555] = 2, + anon_sym_function, + [230621] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9522), 1, - anon_sym_namespace, - [230562] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(5628), 1, - anon_sym_DOT, - [230569] = 2, + sym_identifier, + [230628] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9524), 1, - anon_sym_EQ_GT, - [230576] = 2, + sym_identifier, + [230635] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9526), 1, - anon_sym_EQ_GT, - [230583] = 2, - ACTIONS(3), 1, + anon_sym_namespace, + [230642] = 2, + ACTIONS(8158), 1, sym_comment, ACTIONS(9528), 1, - anon_sym_EQ_GT, - [230590] = 2, + sym_regex_pattern, + [230649] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9530), 1, anon_sym_EQ_GT, - [230597] = 2, + [230656] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9532), 1, - anon_sym_EQ_GT, - [230604] = 2, + sym_identifier, + [230663] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9534), 1, - anon_sym_EQ_GT, - [230611] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8532), 1, - anon_sym_EQ, - [230618] = 2, + sym_identifier, + [230670] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9536), 1, anon_sym_EQ_GT, - [230625] = 2, + [230677] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9538), 1, - ts_builtin_sym_end, - [230632] = 2, + anon_sym_EQ_GT, + [230684] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9540), 1, - sym_identifier, - [230639] = 2, + anon_sym_EQ_GT, + [230691] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(8538), 1, + anon_sym_EQ, + [230698] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9542), 1, - sym_identifier, - [230646] = 2, + anon_sym_EQ_GT, + [230705] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9544), 1, - anon_sym_class, - [230653] = 2, + ts_builtin_sym_end, + [230712] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9546), 1, - anon_sym_EQ_GT, - [230660] = 2, + sym_identifier, + [230719] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9548), 1, - anon_sym_EQ_GT, - [230667] = 2, + sym_identifier, + [230726] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9550), 1, - anon_sym_EQ_GT, - [230674] = 2, + anon_sym_class, + [230733] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9552), 1, - anon_sym_target, - [230681] = 2, - ACTIONS(8148), 1, + anon_sym_EQ, + [230740] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9554), 1, - sym_regex_pattern, - [230688] = 2, + sym_identifier, + [230747] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9556), 1, - anon_sym_EQ_GT, - [230695] = 2, + ACTIONS(6124), 1, + anon_sym_DOT, + [230754] = 2, ACTIONS(3), 1, sym_comment, + ACTIONS(9556), 1, + sym_identifier, + [230761] = 2, + ACTIONS(8158), 1, + sym_comment, ACTIONS(9558), 1, - anon_sym_EQ_GT, - [230702] = 2, + sym_regex_pattern, + [230768] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9560), 1, - sym_identifier, - [230709] = 2, + anon_sym_EQ_GT, + [230775] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9562), 1, anon_sym_EQ_GT, - [230716] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7180), 1, - anon_sym_DOT, - [230723] = 2, + [230782] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9564), 1, anon_sym_EQ_GT, - [230730] = 2, + [230789] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9566), 1, anon_sym_EQ_GT, - [230737] = 2, - ACTIONS(3), 1, + [230796] = 2, + ACTIONS(8158), 1, sym_comment, ACTIONS(9568), 1, - anon_sym_EQ_GT, - [230744] = 2, + sym_regex_pattern, + [230803] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9570), 1, - anon_sym_RPAREN, - [230751] = 2, + anon_sym_EQ_GT, + [230810] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9572), 1, - sym_identifier, - [230758] = 2, - ACTIONS(8148), 1, + anon_sym_EQ_GT, + [230817] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9574), 1, - sym_regex_pattern, - [230765] = 2, + anon_sym_EQ_GT, + [230824] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9576), 1, anon_sym_EQ_GT, - [230772] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(8776), 1, - anon_sym_RBRACK, - [230779] = 2, + [230831] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9578), 1, anon_sym_EQ_GT, - [230786] = 2, + [230838] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9580), 1, - sym_identifier, - [230793] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(9582), 1, anon_sym_EQ_GT, - [230800] = 2, + [230845] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(8810), 1, - anon_sym_RBRACK, - [230807] = 2, + ACTIONS(9582), 1, + sym_identifier, + [230852] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9584), 1, - anon_sym_RPAREN, - [230814] = 2, + sym_identifier, + [230859] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9586), 1, sym_identifier, - [230821] = 2, - ACTIONS(8148), 1, + [230866] = 2, + ACTIONS(3), 1, sym_comment, ACTIONS(9588), 1, - sym_regex_pattern, - [230828] = 2, + anon_sym_EQ_GT, + [230873] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5611), 1, + anon_sym_DOT, + [230880] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9590), 1, - anon_sym_SLASH2, - [230835] = 2, + anon_sym_EQ_GT, + [230887] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9592), 1, anon_sym_EQ_GT, - [230842] = 2, + [230894] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(9594), 1, + sym_identifier, + [230901] = 2, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(9596), 1, + sym_regex_pattern, + [230908] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(9598), 1, anon_sym_EQ_GT, - [230849] = 2, + [230915] = 2, + ACTIONS(8158), 1, + sym_comment, + ACTIONS(9600), 1, + sym_regex_pattern, + [230922] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9596), 1, - sym_identifier, - [230856] = 2, + ACTIONS(9602), 1, + anon_sym_EQ_GT, + [230929] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(4835), 1, - anon_sym_DOT, - [230863] = 2, + ACTIONS(9604), 1, + anon_sym_EQ_GT, + [230936] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(6464), 1, - anon_sym_RBRACK, - [230870] = 2, + ACTIONS(9606), 1, + anon_sym_EQ_GT, + [230943] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9598), 1, - sym_number, - [230877] = 2, + ACTIONS(6454), 1, + anon_sym_RPAREN, + [230950] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9600), 1, - sym_number, - [230884] = 2, + ACTIONS(9608), 1, + anon_sym_EQ_GT, + [230957] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9602), 1, + ACTIONS(9610), 1, anon_sym_EQ_GT, - [230891] = 2, + [230964] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9604), 1, + ACTIONS(9612), 1, anon_sym_EQ_GT, - [230898] = 2, + [230971] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(9606), 1, + ACTIONS(9614), 1, anon_sym_EQ_GT, + [230978] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(5489), 1, + anon_sym_DOT, }; static uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1263)] = 0, - [SMALL_STATE(1264)] = 89, - [SMALL_STATE(1265)] = 178, - [SMALL_STATE(1266)] = 267, - [SMALL_STATE(1267)] = 356, - [SMALL_STATE(1268)] = 445, - [SMALL_STATE(1269)] = 580, - [SMALL_STATE(1270)] = 669, - [SMALL_STATE(1271)] = 807, - [SMALL_STATE(1272)] = 895, - [SMALL_STATE(1273)] = 1033, - [SMALL_STATE(1274)] = 1171, - [SMALL_STATE(1275)] = 1309, - [SMALL_STATE(1276)] = 1397, - [SMALL_STATE(1277)] = 1535, - [SMALL_STATE(1278)] = 1605, - [SMALL_STATE(1279)] = 1697, - [SMALL_STATE(1280)] = 1835, - [SMALL_STATE(1281)] = 1973, - [SMALL_STATE(1282)] = 2063, - [SMALL_STATE(1283)] = 2151, - [SMALL_STATE(1284)] = 2241, - [SMALL_STATE(1285)] = 2329, - [SMALL_STATE(1286)] = 2467, - [SMALL_STATE(1287)] = 2555, - [SMALL_STATE(1288)] = 2693, - [SMALL_STATE(1289)] = 2831, - [SMALL_STATE(1290)] = 2969, - [SMALL_STATE(1291)] = 3107, - [SMALL_STATE(1292)] = 3195, - [SMALL_STATE(1293)] = 3283, - [SMALL_STATE(1294)] = 3421, - [SMALL_STATE(1295)] = 3511, - [SMALL_STATE(1296)] = 3649, - [SMALL_STATE(1297)] = 3719, - [SMALL_STATE(1298)] = 3857, - [SMALL_STATE(1299)] = 3945, - [SMALL_STATE(1300)] = 4033, - [SMALL_STATE(1301)] = 4171, - [SMALL_STATE(1302)] = 4259, - [SMALL_STATE(1303)] = 4349, - [SMALL_STATE(1304)] = 4487, - [SMALL_STATE(1305)] = 4625, - [SMALL_STATE(1306)] = 4713, - [SMALL_STATE(1307)] = 4801, - [SMALL_STATE(1308)] = 4939, - [SMALL_STATE(1309)] = 5077, - [SMALL_STATE(1310)] = 5147, - [SMALL_STATE(1311)] = 5235, - [SMALL_STATE(1312)] = 5323, - [SMALL_STATE(1313)] = 5392, - [SMALL_STATE(1314)] = 5461, - [SMALL_STATE(1315)] = 5552, - [SMALL_STATE(1316)] = 5639, - [SMALL_STATE(1317)] = 5726, - [SMALL_STATE(1318)] = 5813, - [SMALL_STATE(1319)] = 5900, - [SMALL_STATE(1320)] = 5969, - [SMALL_STATE(1321)] = 6038, - [SMALL_STATE(1322)] = 6107, - [SMALL_STATE(1323)] = 6194, - [SMALL_STATE(1324)] = 6263, - [SMALL_STATE(1325)] = 6332, - [SMALL_STATE(1326)] = 6419, - [SMALL_STATE(1327)] = 6512, - [SMALL_STATE(1328)] = 6599, - [SMALL_STATE(1329)] = 6686, - [SMALL_STATE(1330)] = 6773, - [SMALL_STATE(1331)] = 6860, - [SMALL_STATE(1332)] = 6948, - [SMALL_STATE(1333)] = 7076, - [SMALL_STATE(1334)] = 7162, - [SMALL_STATE(1335)] = 7250, - [SMALL_STATE(1336)] = 7338, - [SMALL_STATE(1337)] = 7418, - [SMALL_STATE(1338)] = 7498, - [SMALL_STATE(1339)] = 7586, - [SMALL_STATE(1340)] = 7674, - [SMALL_STATE(1341)] = 7760, - [SMALL_STATE(1342)] = 7832, - [SMALL_STATE(1343)] = 7920, - [SMALL_STATE(1344)] = 8006, - [SMALL_STATE(1345)] = 8092, - [SMALL_STATE(1346)] = 8176, - [SMALL_STATE(1347)] = 8264, - [SMALL_STATE(1348)] = 8350, - [SMALL_STATE(1349)] = 8430, - [SMALL_STATE(1350)] = 8518, - [SMALL_STATE(1351)] = 8602, - [SMALL_STATE(1352)] = 8688, - [SMALL_STATE(1353)] = 8774, - [SMALL_STATE(1354)] = 8860, - [SMALL_STATE(1355)] = 8948, - [SMALL_STATE(1356)] = 9036, - [SMALL_STATE(1357)] = 9124, - [SMALL_STATE(1358)] = 9210, - [SMALL_STATE(1359)] = 9290, - [SMALL_STATE(1360)] = 9370, - [SMALL_STATE(1361)] = 9460, - [SMALL_STATE(1362)] = 9546, - [SMALL_STATE(1363)] = 9619, - [SMALL_STATE(1364)] = 9704, - [SMALL_STATE(1365)] = 9831, - [SMALL_STATE(1366)] = 9904, - [SMALL_STATE(1367)] = 9971, - [SMALL_STATE(1368)] = 10056, - [SMALL_STATE(1369)] = 10129, - [SMALL_STATE(1370)] = 10212, - [SMALL_STATE(1371)] = 10291, - [SMALL_STATE(1372)] = 10370, - [SMALL_STATE(1373)] = 10455, - [SMALL_STATE(1374)] = 10534, - [SMALL_STATE(1375)] = 10619, - [SMALL_STATE(1376)] = 10692, - [SMALL_STATE(1377)] = 10769, - [SMALL_STATE(1378)] = 10854, - [SMALL_STATE(1379)] = 10941, - [SMALL_STATE(1380)] = 11068, - [SMALL_STATE(1381)] = 11153, - [SMALL_STATE(1382)] = 11230, - [SMALL_STATE(1383)] = 11303, - [SMALL_STATE(1384)] = 11388, - [SMALL_STATE(1385)] = 11455, - [SMALL_STATE(1386)] = 11540, - [SMALL_STATE(1387)] = 11607, - [SMALL_STATE(1388)] = 11692, - [SMALL_STATE(1389)] = 11819, - [SMALL_STATE(1390)] = 11892, - [SMALL_STATE(1391)] = 11971, - [SMALL_STATE(1392)] = 12056, - [SMALL_STATE(1393)] = 12141, - [SMALL_STATE(1394)] = 12226, - [SMALL_STATE(1395)] = 12299, - [SMALL_STATE(1396)] = 12366, - [SMALL_STATE(1397)] = 12451, - [SMALL_STATE(1398)] = 12536, - [SMALL_STATE(1399)] = 12603, - [SMALL_STATE(1400)] = 12670, - [SMALL_STATE(1401)] = 12755, - [SMALL_STATE(1402)] = 12840, - [SMALL_STATE(1403)] = 12913, - [SMALL_STATE(1404)] = 13002, - [SMALL_STATE(1405)] = 13069, - [SMALL_STATE(1406)] = 13154, - [SMALL_STATE(1407)] = 13233, - [SMALL_STATE(1408)] = 13318, - [SMALL_STATE(1409)] = 13403, - [SMALL_STATE(1410)] = 13488, - [SMALL_STATE(1411)] = 13573, - [SMALL_STATE(1412)] = 13665, - [SMALL_STATE(1413)] = 13795, - [SMALL_STATE(1414)] = 13867, - [SMALL_STATE(1415)] = 13939, - [SMALL_STATE(1416)] = 14067, - [SMALL_STATE(1417)] = 14195, - [SMALL_STATE(1418)] = 14267, - [SMALL_STATE(1419)] = 14339, - [SMALL_STATE(1420)] = 14469, - [SMALL_STATE(1421)] = 14597, - [SMALL_STATE(1422)] = 14725, - [SMALL_STATE(1423)] = 14849, - [SMALL_STATE(1424)] = 14927, - [SMALL_STATE(1425)] = 15007, - [SMALL_STATE(1426)] = 15135, - [SMALL_STATE(1427)] = 15263, - [SMALL_STATE(1428)] = 15391, - [SMALL_STATE(1429)] = 15519, - [SMALL_STATE(1430)] = 15647, - [SMALL_STATE(1431)] = 15775, - [SMALL_STATE(1432)] = 15903, - [SMALL_STATE(1433)] = 16031, - [SMALL_STATE(1434)] = 16109, - [SMALL_STATE(1435)] = 16237, - [SMALL_STATE(1436)] = 16363, - [SMALL_STATE(1437)] = 16447, - [SMALL_STATE(1438)] = 16517, - [SMALL_STATE(1439)] = 16641, - [SMALL_STATE(1440)] = 16769, - [SMALL_STATE(1441)] = 16847, - [SMALL_STATE(1442)] = 16925, - [SMALL_STATE(1443)] = 17003, - [SMALL_STATE(1444)] = 17081, - [SMALL_STATE(1445)] = 17209, - [SMALL_STATE(1446)] = 17339, - [SMALL_STATE(1447)] = 17411, - [SMALL_STATE(1448)] = 17483, - [SMALL_STATE(1449)] = 17611, - [SMALL_STATE(1450)] = 17687, - [SMALL_STATE(1451)] = 17771, - [SMALL_STATE(1452)] = 17841, - [SMALL_STATE(1453)] = 17911, - [SMALL_STATE(1454)] = 17989, - [SMALL_STATE(1455)] = 18119, - [SMALL_STATE(1456)] = 18247, - [SMALL_STATE(1457)] = 18319, - [SMALL_STATE(1458)] = 18444, - [SMALL_STATE(1459)] = 18569, - [SMALL_STATE(1460)] = 18694, - [SMALL_STATE(1461)] = 18819, - [SMALL_STATE(1462)] = 18944, - [SMALL_STATE(1463)] = 19025, - [SMALL_STATE(1464)] = 19150, - [SMALL_STATE(1465)] = 19219, - [SMALL_STATE(1466)] = 19296, - [SMALL_STATE(1467)] = 19371, - [SMALL_STATE(1468)] = 19454, - [SMALL_STATE(1469)] = 19579, - [SMALL_STATE(1470)] = 19704, - [SMALL_STATE(1471)] = 19829, - [SMALL_STATE(1472)] = 19954, - [SMALL_STATE(1473)] = 20079, - [SMALL_STATE(1474)] = 20204, - [SMALL_STATE(1475)] = 20329, - [SMALL_STATE(1476)] = 20400, - [SMALL_STATE(1477)] = 20525, - [SMALL_STATE(1478)] = 20650, - [SMALL_STATE(1479)] = 20775, - [SMALL_STATE(1480)] = 20852, - [SMALL_STATE(1481)] = 20921, - [SMALL_STATE(1482)] = 21046, - [SMALL_STATE(1483)] = 21117, - [SMALL_STATE(1484)] = 21198, - [SMALL_STATE(1485)] = 21275, - [SMALL_STATE(1486)] = 21400, - [SMALL_STATE(1487)] = 21481, - [SMALL_STATE(1488)] = 21546, - [SMALL_STATE(1489)] = 21671, - [SMALL_STATE(1490)] = 21796, - [SMALL_STATE(1491)] = 21879, - [SMALL_STATE(1492)] = 21950, - [SMALL_STATE(1493)] = 22075, - [SMALL_STATE(1494)] = 22158, - [SMALL_STATE(1495)] = 22283, - [SMALL_STATE(1496)] = 22352, - [SMALL_STATE(1497)] = 22477, - [SMALL_STATE(1498)] = 22602, - [SMALL_STATE(1499)] = 22679, - [SMALL_STATE(1500)] = 22804, - [SMALL_STATE(1501)] = 22929, - [SMALL_STATE(1502)] = 23006, - [SMALL_STATE(1503)] = 23083, - [SMALL_STATE(1504)] = 23208, - [SMALL_STATE(1505)] = 23285, - [SMALL_STATE(1506)] = 23370, - [SMALL_STATE(1507)] = 23495, - [SMALL_STATE(1508)] = 23566, - [SMALL_STATE(1509)] = 23643, - [SMALL_STATE(1510)] = 23768, - [SMALL_STATE(1511)] = 23893, - [SMALL_STATE(1512)] = 23980, - [SMALL_STATE(1513)] = 24051, - [SMALL_STATE(1514)] = 24176, - [SMALL_STATE(1515)] = 24301, - [SMALL_STATE(1516)] = 24426, - [SMALL_STATE(1517)] = 24551, - [SMALL_STATE(1518)] = 24676, - [SMALL_STATE(1519)] = 24801, - [SMALL_STATE(1520)] = 24872, - [SMALL_STATE(1521)] = 24997, - [SMALL_STATE(1522)] = 25068, - [SMALL_STATE(1523)] = 25193, - [SMALL_STATE(1524)] = 25318, - [SMALL_STATE(1525)] = 25443, - [SMALL_STATE(1526)] = 25520, - [SMALL_STATE(1527)] = 25645, - [SMALL_STATE(1528)] = 25716, - [SMALL_STATE(1529)] = 25841, - [SMALL_STATE(1530)] = 25966, - [SMALL_STATE(1531)] = 26091, - [SMALL_STATE(1532)] = 26216, - [SMALL_STATE(1533)] = 26281, - [SMALL_STATE(1534)] = 26406, - [SMALL_STATE(1535)] = 26531, - [SMALL_STATE(1536)] = 26656, - [SMALL_STATE(1537)] = 26733, - [SMALL_STATE(1538)] = 26858, - [SMALL_STATE(1539)] = 26983, - [SMALL_STATE(1540)] = 27048, - [SMALL_STATE(1541)] = 27173, - [SMALL_STATE(1542)] = 27298, - [SMALL_STATE(1543)] = 27423, - [SMALL_STATE(1544)] = 27488, - [SMALL_STATE(1545)] = 27613, - [SMALL_STATE(1546)] = 27696, - [SMALL_STATE(1547)] = 27821, - [SMALL_STATE(1548)] = 27946, - [SMALL_STATE(1549)] = 28023, - [SMALL_STATE(1550)] = 28148, - [SMALL_STATE(1551)] = 28225, - [SMALL_STATE(1552)] = 28290, - [SMALL_STATE(1553)] = 28415, - [SMALL_STATE(1554)] = 28540, - [SMALL_STATE(1555)] = 28611, - [SMALL_STATE(1556)] = 28736, - [SMALL_STATE(1557)] = 28861, - [SMALL_STATE(1558)] = 28986, - [SMALL_STATE(1559)] = 29111, - [SMALL_STATE(1560)] = 29176, - [SMALL_STATE(1561)] = 29265, - [SMALL_STATE(1562)] = 29336, - [SMALL_STATE(1563)] = 29461, - [SMALL_STATE(1564)] = 29536, - [SMALL_STATE(1565)] = 29661, - [SMALL_STATE(1566)] = 29744, - [SMALL_STATE(1567)] = 29869, - [SMALL_STATE(1568)] = 29994, - [SMALL_STATE(1569)] = 30119, - [SMALL_STATE(1570)] = 30244, - [SMALL_STATE(1571)] = 30369, - [SMALL_STATE(1572)] = 30434, - [SMALL_STATE(1573)] = 30559, - [SMALL_STATE(1574)] = 30684, - [SMALL_STATE(1575)] = 30761, - [SMALL_STATE(1576)] = 30838, - [SMALL_STATE(1577)] = 30963, - [SMALL_STATE(1578)] = 31040, - [SMALL_STATE(1579)] = 31109, - [SMALL_STATE(1580)] = 31234, - [SMALL_STATE(1581)] = 31359, - [SMALL_STATE(1582)] = 31428, - [SMALL_STATE(1583)] = 31553, - [SMALL_STATE(1584)] = 31675, - [SMALL_STATE(1585)] = 31797, - [SMALL_STATE(1586)] = 31919, - [SMALL_STATE(1587)] = 32041, + [SMALL_STATE(1264)] = 0, + [SMALL_STATE(1265)] = 89, + [SMALL_STATE(1266)] = 224, + [SMALL_STATE(1267)] = 313, + [SMALL_STATE(1268)] = 402, + [SMALL_STATE(1269)] = 491, + [SMALL_STATE(1270)] = 580, + [SMALL_STATE(1271)] = 669, + [SMALL_STATE(1272)] = 807, + [SMALL_STATE(1273)] = 899, + [SMALL_STATE(1274)] = 969, + [SMALL_STATE(1275)] = 1107, + [SMALL_STATE(1276)] = 1195, + [SMALL_STATE(1277)] = 1333, + [SMALL_STATE(1278)] = 1421, + [SMALL_STATE(1279)] = 1559, + [SMALL_STATE(1280)] = 1697, + [SMALL_STATE(1281)] = 1835, + [SMALL_STATE(1282)] = 1973, + [SMALL_STATE(1283)] = 2111, + [SMALL_STATE(1284)] = 2249, + [SMALL_STATE(1285)] = 2387, + [SMALL_STATE(1286)] = 2525, + [SMALL_STATE(1287)] = 2663, + [SMALL_STATE(1288)] = 2801, + [SMALL_STATE(1289)] = 2871, + [SMALL_STATE(1290)] = 3009, + [SMALL_STATE(1291)] = 3097, + [SMALL_STATE(1292)] = 3235, + [SMALL_STATE(1293)] = 3373, + [SMALL_STATE(1294)] = 3461, + [SMALL_STATE(1295)] = 3599, + [SMALL_STATE(1296)] = 3737, + [SMALL_STATE(1297)] = 3827, + [SMALL_STATE(1298)] = 3915, + [SMALL_STATE(1299)] = 4053, + [SMALL_STATE(1300)] = 4143, + [SMALL_STATE(1301)] = 4231, + [SMALL_STATE(1302)] = 4319, + [SMALL_STATE(1303)] = 4407, + [SMALL_STATE(1304)] = 4495, + [SMALL_STATE(1305)] = 4585, + [SMALL_STATE(1306)] = 4655, + [SMALL_STATE(1307)] = 4743, + [SMALL_STATE(1308)] = 4831, + [SMALL_STATE(1309)] = 4919, + [SMALL_STATE(1310)] = 5057, + [SMALL_STATE(1311)] = 5147, + [SMALL_STATE(1312)] = 5235, + [SMALL_STATE(1313)] = 5323, + [SMALL_STATE(1314)] = 5410, + [SMALL_STATE(1315)] = 5479, + [SMALL_STATE(1316)] = 5566, + [SMALL_STATE(1317)] = 5635, + [SMALL_STATE(1318)] = 5704, + [SMALL_STATE(1319)] = 5791, + [SMALL_STATE(1320)] = 5860, + [SMALL_STATE(1321)] = 5947, + [SMALL_STATE(1322)] = 6016, + [SMALL_STATE(1323)] = 6103, + [SMALL_STATE(1324)] = 6190, + [SMALL_STATE(1325)] = 6277, + [SMALL_STATE(1326)] = 6346, + [SMALL_STATE(1327)] = 6433, + [SMALL_STATE(1328)] = 6520, + [SMALL_STATE(1329)] = 6613, + [SMALL_STATE(1330)] = 6682, + [SMALL_STATE(1331)] = 6769, + [SMALL_STATE(1332)] = 6860, + [SMALL_STATE(1333)] = 6940, + [SMALL_STATE(1334)] = 7020, + [SMALL_STATE(1335)] = 7148, + [SMALL_STATE(1336)] = 7236, + [SMALL_STATE(1337)] = 7316, + [SMALL_STATE(1338)] = 7402, + [SMALL_STATE(1339)] = 7488, + [SMALL_STATE(1340)] = 7576, + [SMALL_STATE(1341)] = 7664, + [SMALL_STATE(1342)] = 7744, + [SMALL_STATE(1343)] = 7832, + [SMALL_STATE(1344)] = 7918, + [SMALL_STATE(1345)] = 8006, + [SMALL_STATE(1346)] = 8092, + [SMALL_STATE(1347)] = 8172, + [SMALL_STATE(1348)] = 8258, + [SMALL_STATE(1349)] = 8346, + [SMALL_STATE(1350)] = 8434, + [SMALL_STATE(1351)] = 8518, + [SMALL_STATE(1352)] = 8604, + [SMALL_STATE(1353)] = 8692, + [SMALL_STATE(1354)] = 8782, + [SMALL_STATE(1355)] = 8868, + [SMALL_STATE(1356)] = 8954, + [SMALL_STATE(1357)] = 9042, + [SMALL_STATE(1358)] = 9130, + [SMALL_STATE(1359)] = 9216, + [SMALL_STATE(1360)] = 9288, + [SMALL_STATE(1361)] = 9374, + [SMALL_STATE(1362)] = 9458, + [SMALL_STATE(1363)] = 9546, + [SMALL_STATE(1364)] = 9631, + [SMALL_STATE(1365)] = 9704, + [SMALL_STATE(1366)] = 9831, + [SMALL_STATE(1367)] = 9908, + [SMALL_STATE(1368)] = 9975, + [SMALL_STATE(1369)] = 10048, + [SMALL_STATE(1370)] = 10133, + [SMALL_STATE(1371)] = 10218, + [SMALL_STATE(1372)] = 10303, + [SMALL_STATE(1373)] = 10388, + [SMALL_STATE(1374)] = 10473, + [SMALL_STATE(1375)] = 10558, + [SMALL_STATE(1376)] = 10643, + [SMALL_STATE(1377)] = 10722, + [SMALL_STATE(1378)] = 10807, + [SMALL_STATE(1379)] = 10886, + [SMALL_STATE(1380)] = 10975, + [SMALL_STATE(1381)] = 11060, + [SMALL_STATE(1382)] = 11127, + [SMALL_STATE(1383)] = 11214, + [SMALL_STATE(1384)] = 11287, + [SMALL_STATE(1385)] = 11372, + [SMALL_STATE(1386)] = 11445, + [SMALL_STATE(1387)] = 11512, + [SMALL_STATE(1388)] = 11585, + [SMALL_STATE(1389)] = 11662, + [SMALL_STATE(1390)] = 11729, + [SMALL_STATE(1391)] = 11814, + [SMALL_STATE(1392)] = 11941, + [SMALL_STATE(1393)] = 12020, + [SMALL_STATE(1394)] = 12103, + [SMALL_STATE(1395)] = 12182, + [SMALL_STATE(1396)] = 12309, + [SMALL_STATE(1397)] = 12382, + [SMALL_STATE(1398)] = 12467, + [SMALL_STATE(1399)] = 12552, + [SMALL_STATE(1400)] = 12637, + [SMALL_STATE(1401)] = 12722, + [SMALL_STATE(1402)] = 12807, + [SMALL_STATE(1403)] = 12880, + [SMALL_STATE(1404)] = 12965, + [SMALL_STATE(1405)] = 13050, + [SMALL_STATE(1406)] = 13135, + [SMALL_STATE(1407)] = 13220, + [SMALL_STATE(1408)] = 13293, + [SMALL_STATE(1409)] = 13360, + [SMALL_STATE(1410)] = 13439, + [SMALL_STATE(1411)] = 13506, + [SMALL_STATE(1412)] = 13573, + [SMALL_STATE(1413)] = 13699, + [SMALL_STATE(1414)] = 13827, + [SMALL_STATE(1415)] = 13899, + [SMALL_STATE(1416)] = 13991, + [SMALL_STATE(1417)] = 14119, + [SMALL_STATE(1418)] = 14197, + [SMALL_STATE(1419)] = 14275, + [SMALL_STATE(1420)] = 14405, + [SMALL_STATE(1421)] = 14483, + [SMALL_STATE(1422)] = 14563, + [SMALL_STATE(1423)] = 14691, + [SMALL_STATE(1424)] = 14819, + [SMALL_STATE(1425)] = 14943, + [SMALL_STATE(1426)] = 15019, + [SMALL_STATE(1427)] = 15149, + [SMALL_STATE(1428)] = 15277, + [SMALL_STATE(1429)] = 15405, + [SMALL_STATE(1430)] = 15475, + [SMALL_STATE(1431)] = 15547, + [SMALL_STATE(1432)] = 15625, + [SMALL_STATE(1433)] = 15753, + [SMALL_STATE(1434)] = 15837, + [SMALL_STATE(1435)] = 15909, + [SMALL_STATE(1436)] = 16037, + [SMALL_STATE(1437)] = 16109, + [SMALL_STATE(1438)] = 16233, + [SMALL_STATE(1439)] = 16361, + [SMALL_STATE(1440)] = 16489, + [SMALL_STATE(1441)] = 16561, + [SMALL_STATE(1442)] = 16689, + [SMALL_STATE(1443)] = 16817, + [SMALL_STATE(1444)] = 16887, + [SMALL_STATE(1445)] = 16959, + [SMALL_STATE(1446)] = 17087, + [SMALL_STATE(1447)] = 17159, + [SMALL_STATE(1448)] = 17237, + [SMALL_STATE(1449)] = 17365, + [SMALL_STATE(1450)] = 17493, + [SMALL_STATE(1451)] = 17621, + [SMALL_STATE(1452)] = 17691, + [SMALL_STATE(1453)] = 17769, + [SMALL_STATE(1454)] = 17899, + [SMALL_STATE(1455)] = 17977, + [SMALL_STATE(1456)] = 18105, + [SMALL_STATE(1457)] = 18189, + [SMALL_STATE(1458)] = 18319, + [SMALL_STATE(1459)] = 18444, + [SMALL_STATE(1460)] = 18569, + [SMALL_STATE(1461)] = 18638, + [SMALL_STATE(1462)] = 18763, + [SMALL_STATE(1463)] = 18840, + [SMALL_STATE(1464)] = 18911, + [SMALL_STATE(1465)] = 19036, + [SMALL_STATE(1466)] = 19113, + [SMALL_STATE(1467)] = 19190, + [SMALL_STATE(1468)] = 19315, + [SMALL_STATE(1469)] = 19380, + [SMALL_STATE(1470)] = 19505, + [SMALL_STATE(1471)] = 19630, + [SMALL_STATE(1472)] = 19755, + [SMALL_STATE(1473)] = 19824, + [SMALL_STATE(1474)] = 19895, + [SMALL_STATE(1475)] = 19976, + [SMALL_STATE(1476)] = 20053, + [SMALL_STATE(1477)] = 20178, + [SMALL_STATE(1478)] = 20303, + [SMALL_STATE(1479)] = 20428, + [SMALL_STATE(1480)] = 20493, + [SMALL_STATE(1481)] = 20570, + [SMALL_STATE(1482)] = 20695, + [SMALL_STATE(1483)] = 20820, + [SMALL_STATE(1484)] = 20889, + [SMALL_STATE(1485)] = 21014, + [SMALL_STATE(1486)] = 21139, + [SMALL_STATE(1487)] = 21264, + [SMALL_STATE(1488)] = 21339, + [SMALL_STATE(1489)] = 21464, + [SMALL_STATE(1490)] = 21589, + [SMALL_STATE(1491)] = 21714, + [SMALL_STATE(1492)] = 21779, + [SMALL_STATE(1493)] = 21844, + [SMALL_STATE(1494)] = 21969, + [SMALL_STATE(1495)] = 22094, + [SMALL_STATE(1496)] = 22165, + [SMALL_STATE(1497)] = 22236, + [SMALL_STATE(1498)] = 22361, + [SMALL_STATE(1499)] = 22486, + [SMALL_STATE(1500)] = 22611, + [SMALL_STATE(1501)] = 22736, + [SMALL_STATE(1502)] = 22861, + [SMALL_STATE(1503)] = 22986, + [SMALL_STATE(1504)] = 23057, + [SMALL_STATE(1505)] = 23182, + [SMALL_STATE(1506)] = 23307, + [SMALL_STATE(1507)] = 23432, + [SMALL_STATE(1508)] = 23557, + [SMALL_STATE(1509)] = 23646, + [SMALL_STATE(1510)] = 23771, + [SMALL_STATE(1511)] = 23896, + [SMALL_STATE(1512)] = 24021, + [SMALL_STATE(1513)] = 24098, + [SMALL_STATE(1514)] = 24163, + [SMALL_STATE(1515)] = 24288, + [SMALL_STATE(1516)] = 24413, + [SMALL_STATE(1517)] = 24478, + [SMALL_STATE(1518)] = 24603, + [SMALL_STATE(1519)] = 24728, + [SMALL_STATE(1520)] = 24809, + [SMALL_STATE(1521)] = 24934, + [SMALL_STATE(1522)] = 25005, + [SMALL_STATE(1523)] = 25130, + [SMALL_STATE(1524)] = 25255, + [SMALL_STATE(1525)] = 25380, + [SMALL_STATE(1526)] = 25449, + [SMALL_STATE(1527)] = 25532, + [SMALL_STATE(1528)] = 25657, + [SMALL_STATE(1529)] = 25782, + [SMALL_STATE(1530)] = 25907, + [SMALL_STATE(1531)] = 26032, + [SMALL_STATE(1532)] = 26157, + [SMALL_STATE(1533)] = 26282, + [SMALL_STATE(1534)] = 26407, + [SMALL_STATE(1535)] = 26484, + [SMALL_STATE(1536)] = 26609, + [SMALL_STATE(1537)] = 26734, + [SMALL_STATE(1538)] = 26811, + [SMALL_STATE(1539)] = 26936, + [SMALL_STATE(1540)] = 27061, + [SMALL_STATE(1541)] = 27186, + [SMALL_STATE(1542)] = 27269, + [SMALL_STATE(1543)] = 27394, + [SMALL_STATE(1544)] = 27465, + [SMALL_STATE(1545)] = 27536, + [SMALL_STATE(1546)] = 27605, + [SMALL_STATE(1547)] = 27682, + [SMALL_STATE(1548)] = 27759, + [SMALL_STATE(1549)] = 27842, + [SMALL_STATE(1550)] = 27913, + [SMALL_STATE(1551)] = 27988, + [SMALL_STATE(1552)] = 28065, + [SMALL_STATE(1553)] = 28142, + [SMALL_STATE(1554)] = 28267, + [SMALL_STATE(1555)] = 28392, + [SMALL_STATE(1556)] = 28517, + [SMALL_STATE(1557)] = 28642, + [SMALL_STATE(1558)] = 28767, + [SMALL_STATE(1559)] = 28844, + [SMALL_STATE(1560)] = 28931, + [SMALL_STATE(1561)] = 29008, + [SMALL_STATE(1562)] = 29133, + [SMALL_STATE(1563)] = 29258, + [SMALL_STATE(1564)] = 29383, + [SMALL_STATE(1565)] = 29464, + [SMALL_STATE(1566)] = 29589, + [SMALL_STATE(1567)] = 29714, + [SMALL_STATE(1568)] = 29839, + [SMALL_STATE(1569)] = 29910, + [SMALL_STATE(1570)] = 30035, + [SMALL_STATE(1571)] = 30160, + [SMALL_STATE(1572)] = 30285, + [SMALL_STATE(1573)] = 30410, + [SMALL_STATE(1574)] = 30535, + [SMALL_STATE(1575)] = 30660, + [SMALL_STATE(1576)] = 30785, + [SMALL_STATE(1577)] = 30910, + [SMALL_STATE(1578)] = 30993, + [SMALL_STATE(1579)] = 31070, + [SMALL_STATE(1580)] = 31135, + [SMALL_STATE(1581)] = 31260, + [SMALL_STATE(1582)] = 31385, + [SMALL_STATE(1583)] = 31507, + [SMALL_STATE(1584)] = 31629, + [SMALL_STATE(1585)] = 31751, + [SMALL_STATE(1586)] = 31873, + [SMALL_STATE(1587)] = 31995, [SMALL_STATE(1588)] = 32117, - [SMALL_STATE(1589)] = 32187, - [SMALL_STATE(1590)] = 32309, - [SMALL_STATE(1591)] = 32431, - [SMALL_STATE(1592)] = 32553, - [SMALL_STATE(1593)] = 32675, - [SMALL_STATE(1594)] = 32747, - [SMALL_STATE(1595)] = 32869, - [SMALL_STATE(1596)] = 32991, - [SMALL_STATE(1597)] = 33113, - [SMALL_STATE(1598)] = 33235, - [SMALL_STATE(1599)] = 33357, - [SMALL_STATE(1600)] = 33479, - [SMALL_STATE(1601)] = 33601, - [SMALL_STATE(1602)] = 33723, - [SMALL_STATE(1603)] = 33845, - [SMALL_STATE(1604)] = 33967, - [SMALL_STATE(1605)] = 34089, - [SMALL_STATE(1606)] = 34211, - [SMALL_STATE(1607)] = 34333, - [SMALL_STATE(1608)] = 34455, - [SMALL_STATE(1609)] = 34577, - [SMALL_STATE(1610)] = 34699, - [SMALL_STATE(1611)] = 34821, - [SMALL_STATE(1612)] = 34943, - [SMALL_STATE(1613)] = 35065, - [SMALL_STATE(1614)] = 35187, - [SMALL_STATE(1615)] = 35309, - [SMALL_STATE(1616)] = 35431, - [SMALL_STATE(1617)] = 35553, - [SMALL_STATE(1618)] = 35675, - [SMALL_STATE(1619)] = 35797, - [SMALL_STATE(1620)] = 35919, - [SMALL_STATE(1621)] = 36041, - [SMALL_STATE(1622)] = 36163, - [SMALL_STATE(1623)] = 36285, - [SMALL_STATE(1624)] = 36407, - [SMALL_STATE(1625)] = 36529, - [SMALL_STATE(1626)] = 36651, - [SMALL_STATE(1627)] = 36721, - [SMALL_STATE(1628)] = 36843, - [SMALL_STATE(1629)] = 36965, - [SMALL_STATE(1630)] = 37087, - [SMALL_STATE(1631)] = 37209, - [SMALL_STATE(1632)] = 37331, - [SMALL_STATE(1633)] = 37405, - [SMALL_STATE(1634)] = 37527, - [SMALL_STATE(1635)] = 37649, - [SMALL_STATE(1636)] = 37771, - [SMALL_STATE(1637)] = 37841, - [SMALL_STATE(1638)] = 37963, - [SMALL_STATE(1639)] = 38085, - [SMALL_STATE(1640)] = 38207, - [SMALL_STATE(1641)] = 38329, - [SMALL_STATE(1642)] = 38451, - [SMALL_STATE(1643)] = 38573, - [SMALL_STATE(1644)] = 38695, - [SMALL_STATE(1645)] = 38817, - [SMALL_STATE(1646)] = 38887, - [SMALL_STATE(1647)] = 39009, - [SMALL_STATE(1648)] = 39131, - [SMALL_STATE(1649)] = 39253, - [SMALL_STATE(1650)] = 39375, - [SMALL_STATE(1651)] = 39497, - [SMALL_STATE(1652)] = 39569, - [SMALL_STATE(1653)] = 39691, - [SMALL_STATE(1654)] = 39813, - [SMALL_STATE(1655)] = 39885, - [SMALL_STATE(1656)] = 40007, - [SMALL_STATE(1657)] = 40129, - [SMALL_STATE(1658)] = 40199, - [SMALL_STATE(1659)] = 40321, - [SMALL_STATE(1660)] = 40443, - [SMALL_STATE(1661)] = 40565, - [SMALL_STATE(1662)] = 40635, - [SMALL_STATE(1663)] = 40757, - [SMALL_STATE(1664)] = 40825, - [SMALL_STATE(1665)] = 40895, - [SMALL_STATE(1666)] = 41017, - [SMALL_STATE(1667)] = 41139, - [SMALL_STATE(1668)] = 41261, - [SMALL_STATE(1669)] = 41383, - [SMALL_STATE(1670)] = 41505, - [SMALL_STATE(1671)] = 41627, - [SMALL_STATE(1672)] = 41749, - [SMALL_STATE(1673)] = 41871, - [SMALL_STATE(1674)] = 41993, - [SMALL_STATE(1675)] = 42115, - [SMALL_STATE(1676)] = 42237, - [SMALL_STATE(1677)] = 42359, - [SMALL_STATE(1678)] = 42481, - [SMALL_STATE(1679)] = 42603, - [SMALL_STATE(1680)] = 42725, - [SMALL_STATE(1681)] = 42803, - [SMALL_STATE(1682)] = 42925, - [SMALL_STATE(1683)] = 43047, - [SMALL_STATE(1684)] = 43117, - [SMALL_STATE(1685)] = 43239, - [SMALL_STATE(1686)] = 43361, - [SMALL_STATE(1687)] = 43483, - [SMALL_STATE(1688)] = 43605, - [SMALL_STATE(1689)] = 43727, - [SMALL_STATE(1690)] = 43849, - [SMALL_STATE(1691)] = 43971, + [SMALL_STATE(1589)] = 32239, + [SMALL_STATE(1590)] = 32361, + [SMALL_STATE(1591)] = 32483, + [SMALL_STATE(1592)] = 32605, + [SMALL_STATE(1593)] = 32727, + [SMALL_STATE(1594)] = 32849, + [SMALL_STATE(1595)] = 32921, + [SMALL_STATE(1596)] = 33043, + [SMALL_STATE(1597)] = 33165, + [SMALL_STATE(1598)] = 33287, + [SMALL_STATE(1599)] = 33409, + [SMALL_STATE(1600)] = 33531, + [SMALL_STATE(1601)] = 33653, + [SMALL_STATE(1602)] = 33775, + [SMALL_STATE(1603)] = 33847, + [SMALL_STATE(1604)] = 33969, + [SMALL_STATE(1605)] = 34039, + [SMALL_STATE(1606)] = 34161, + [SMALL_STATE(1607)] = 34283, + [SMALL_STATE(1608)] = 34359, + [SMALL_STATE(1609)] = 34481, + [SMALL_STATE(1610)] = 34603, + [SMALL_STATE(1611)] = 34725, + [SMALL_STATE(1612)] = 34847, + [SMALL_STATE(1613)] = 34969, + [SMALL_STATE(1614)] = 35091, + [SMALL_STATE(1615)] = 35213, + [SMALL_STATE(1616)] = 35335, + [SMALL_STATE(1617)] = 35457, + [SMALL_STATE(1618)] = 35579, + [SMALL_STATE(1619)] = 35659, + [SMALL_STATE(1620)] = 35781, + [SMALL_STATE(1621)] = 35857, + [SMALL_STATE(1622)] = 35979, + [SMALL_STATE(1623)] = 36101, + [SMALL_STATE(1624)] = 36223, + [SMALL_STATE(1625)] = 36345, + [SMALL_STATE(1626)] = 36467, + [SMALL_STATE(1627)] = 36589, + [SMALL_STATE(1628)] = 36711, + [SMALL_STATE(1629)] = 36833, + [SMALL_STATE(1630)] = 36955, + [SMALL_STATE(1631)] = 37027, + [SMALL_STATE(1632)] = 37149, + [SMALL_STATE(1633)] = 37271, + [SMALL_STATE(1634)] = 37393, + [SMALL_STATE(1635)] = 37515, + [SMALL_STATE(1636)] = 37637, + [SMALL_STATE(1637)] = 37759, + [SMALL_STATE(1638)] = 37881, + [SMALL_STATE(1639)] = 38003, + [SMALL_STATE(1640)] = 38125, + [SMALL_STATE(1641)] = 38247, + [SMALL_STATE(1642)] = 38369, + [SMALL_STATE(1643)] = 38491, + [SMALL_STATE(1644)] = 38613, + [SMALL_STATE(1645)] = 38735, + [SMALL_STATE(1646)] = 38857, + [SMALL_STATE(1647)] = 38979, + [SMALL_STATE(1648)] = 39101, + [SMALL_STATE(1649)] = 39223, + [SMALL_STATE(1650)] = 39293, + [SMALL_STATE(1651)] = 39415, + [SMALL_STATE(1652)] = 39537, + [SMALL_STATE(1653)] = 39659, + [SMALL_STATE(1654)] = 39781, + [SMALL_STATE(1655)] = 39903, + [SMALL_STATE(1656)] = 40025, + [SMALL_STATE(1657)] = 40101, + [SMALL_STATE(1658)] = 40171, + [SMALL_STATE(1659)] = 40293, + [SMALL_STATE(1660)] = 40415, + [SMALL_STATE(1661)] = 40537, + [SMALL_STATE(1662)] = 40659, + [SMALL_STATE(1663)] = 40781, + [SMALL_STATE(1664)] = 40903, + [SMALL_STATE(1665)] = 41025, + [SMALL_STATE(1666)] = 41147, + [SMALL_STATE(1667)] = 41269, + [SMALL_STATE(1668)] = 41391, + [SMALL_STATE(1669)] = 41467, + [SMALL_STATE(1670)] = 41589, + [SMALL_STATE(1671)] = 41711, + [SMALL_STATE(1672)] = 41833, + [SMALL_STATE(1673)] = 41955, + [SMALL_STATE(1674)] = 42077, + [SMALL_STATE(1675)] = 42199, + [SMALL_STATE(1676)] = 42321, + [SMALL_STATE(1677)] = 42443, + [SMALL_STATE(1678)] = 42565, + [SMALL_STATE(1679)] = 42639, + [SMALL_STATE(1680)] = 42721, + [SMALL_STATE(1681)] = 42843, + [SMALL_STATE(1682)] = 42965, + [SMALL_STATE(1683)] = 43087, + [SMALL_STATE(1684)] = 43163, + [SMALL_STATE(1685)] = 43285, + [SMALL_STATE(1686)] = 43407, + [SMALL_STATE(1687)] = 43529, + [SMALL_STATE(1688)] = 43651, + [SMALL_STATE(1689)] = 43773, + [SMALL_STATE(1690)] = 43895, + [SMALL_STATE(1691)] = 44017, [SMALL_STATE(1692)] = 44093, [SMALL_STATE(1693)] = 44215, [SMALL_STATE(1694)] = 44337, [SMALL_STATE(1695)] = 44459, [SMALL_STATE(1696)] = 44581, - [SMALL_STATE(1697)] = 44703, - [SMALL_STATE(1698)] = 44825, - [SMALL_STATE(1699)] = 44947, - [SMALL_STATE(1700)] = 45069, - [SMALL_STATE(1701)] = 45191, - [SMALL_STATE(1702)] = 45313, - [SMALL_STATE(1703)] = 45435, - [SMALL_STATE(1704)] = 45557, - [SMALL_STATE(1705)] = 45679, - [SMALL_STATE(1706)] = 45801, - [SMALL_STATE(1707)] = 45923, - [SMALL_STATE(1708)] = 46045, - [SMALL_STATE(1709)] = 46167, - [SMALL_STATE(1710)] = 46289, - [SMALL_STATE(1711)] = 46411, - [SMALL_STATE(1712)] = 46487, - [SMALL_STATE(1713)] = 46609, - [SMALL_STATE(1714)] = 46731, - [SMALL_STATE(1715)] = 46853, - [SMALL_STATE(1716)] = 46975, - [SMALL_STATE(1717)] = 47097, - [SMALL_STATE(1718)] = 47219, - [SMALL_STATE(1719)] = 47341, - [SMALL_STATE(1720)] = 47463, - [SMALL_STATE(1721)] = 47585, - [SMALL_STATE(1722)] = 47707, - [SMALL_STATE(1723)] = 47829, - [SMALL_STATE(1724)] = 47951, - [SMALL_STATE(1725)] = 48073, - [SMALL_STATE(1726)] = 48195, - [SMALL_STATE(1727)] = 48317, - [SMALL_STATE(1728)] = 48439, - [SMALL_STATE(1729)] = 48509, - [SMALL_STATE(1730)] = 48631, - [SMALL_STATE(1731)] = 48707, - [SMALL_STATE(1732)] = 48829, - [SMALL_STATE(1733)] = 48951, - [SMALL_STATE(1734)] = 49073, - [SMALL_STATE(1735)] = 49195, - [SMALL_STATE(1736)] = 49317, - [SMALL_STATE(1737)] = 49439, - [SMALL_STATE(1738)] = 49561, - [SMALL_STATE(1739)] = 49683, - [SMALL_STATE(1740)] = 49805, - [SMALL_STATE(1741)] = 49927, - [SMALL_STATE(1742)] = 50049, - [SMALL_STATE(1743)] = 50171, - [SMALL_STATE(1744)] = 50293, - [SMALL_STATE(1745)] = 50415, - [SMALL_STATE(1746)] = 50537, - [SMALL_STATE(1747)] = 50659, - [SMALL_STATE(1748)] = 50781, - [SMALL_STATE(1749)] = 50903, - [SMALL_STATE(1750)] = 51025, - [SMALL_STATE(1751)] = 51147, - [SMALL_STATE(1752)] = 51269, - [SMALL_STATE(1753)] = 51391, - [SMALL_STATE(1754)] = 51513, - [SMALL_STATE(1755)] = 51635, - [SMALL_STATE(1756)] = 51757, - [SMALL_STATE(1757)] = 51879, - [SMALL_STATE(1758)] = 52001, - [SMALL_STATE(1759)] = 52123, - [SMALL_STATE(1760)] = 52245, - [SMALL_STATE(1761)] = 52367, - [SMALL_STATE(1762)] = 52489, - [SMALL_STATE(1763)] = 52611, - [SMALL_STATE(1764)] = 52733, - [SMALL_STATE(1765)] = 52803, - [SMALL_STATE(1766)] = 52925, - [SMALL_STATE(1767)] = 53001, - [SMALL_STATE(1768)] = 53123, - [SMALL_STATE(1769)] = 53245, - [SMALL_STATE(1770)] = 53367, - [SMALL_STATE(1771)] = 53489, - [SMALL_STATE(1772)] = 53611, - [SMALL_STATE(1773)] = 53733, - [SMALL_STATE(1774)] = 53855, - [SMALL_STATE(1775)] = 53977, - [SMALL_STATE(1776)] = 54099, - [SMALL_STATE(1777)] = 54181, - [SMALL_STATE(1778)] = 54303, - [SMALL_STATE(1779)] = 54373, - [SMALL_STATE(1780)] = 54443, - [SMALL_STATE(1781)] = 54565, - [SMALL_STATE(1782)] = 54687, - [SMALL_STATE(1783)] = 54809, - [SMALL_STATE(1784)] = 54931, - [SMALL_STATE(1785)] = 55001, - [SMALL_STATE(1786)] = 55123, - [SMALL_STATE(1787)] = 55203, - [SMALL_STATE(1788)] = 55325, - [SMALL_STATE(1789)] = 55447, - [SMALL_STATE(1790)] = 55569, - [SMALL_STATE(1791)] = 55691, - [SMALL_STATE(1792)] = 55813, - [SMALL_STATE(1793)] = 55935, - [SMALL_STATE(1794)] = 56057, - [SMALL_STATE(1795)] = 56179, - [SMALL_STATE(1796)] = 56301, - [SMALL_STATE(1797)] = 56423, - [SMALL_STATE(1798)] = 56545, - [SMALL_STATE(1799)] = 56667, - [SMALL_STATE(1800)] = 56749, - [SMALL_STATE(1801)] = 56871, - [SMALL_STATE(1802)] = 56993, - [SMALL_STATE(1803)] = 57073, - [SMALL_STATE(1804)] = 57195, - [SMALL_STATE(1805)] = 57317, - [SMALL_STATE(1806)] = 57399, - [SMALL_STATE(1807)] = 57521, - [SMALL_STATE(1808)] = 57643, - [SMALL_STATE(1809)] = 57765, - [SMALL_STATE(1810)] = 57887, - [SMALL_STATE(1811)] = 57957, - [SMALL_STATE(1812)] = 58079, - [SMALL_STATE(1813)] = 58201, - [SMALL_STATE(1814)] = 58323, - [SMALL_STATE(1815)] = 58445, - [SMALL_STATE(1816)] = 58567, - [SMALL_STATE(1817)] = 58689, - [SMALL_STATE(1818)] = 58811, - [SMALL_STATE(1819)] = 58933, - [SMALL_STATE(1820)] = 59055, - [SMALL_STATE(1821)] = 59177, - [SMALL_STATE(1822)] = 59299, - [SMALL_STATE(1823)] = 59421, - [SMALL_STATE(1824)] = 59543, - [SMALL_STATE(1825)] = 59665, - [SMALL_STATE(1826)] = 59787, - [SMALL_STATE(1827)] = 59909, - [SMALL_STATE(1828)] = 60031, - [SMALL_STATE(1829)] = 60153, - [SMALL_STATE(1830)] = 60275, - [SMALL_STATE(1831)] = 60397, - [SMALL_STATE(1832)] = 60519, - [SMALL_STATE(1833)] = 60641, - [SMALL_STATE(1834)] = 60763, - [SMALL_STATE(1835)] = 60885, - [SMALL_STATE(1836)] = 61007, - [SMALL_STATE(1837)] = 61129, - [SMALL_STATE(1838)] = 61251, - [SMALL_STATE(1839)] = 61373, - [SMALL_STATE(1840)] = 61495, - [SMALL_STATE(1841)] = 61617, - [SMALL_STATE(1842)] = 61739, - [SMALL_STATE(1843)] = 61861, - [SMALL_STATE(1844)] = 61983, - [SMALL_STATE(1845)] = 62105, - [SMALL_STATE(1846)] = 62175, - [SMALL_STATE(1847)] = 62297, - [SMALL_STATE(1848)] = 62419, - [SMALL_STATE(1849)] = 62541, - [SMALL_STATE(1850)] = 62611, - [SMALL_STATE(1851)] = 62733, - [SMALL_STATE(1852)] = 62855, - [SMALL_STATE(1853)] = 62977, - [SMALL_STATE(1854)] = 63047, - [SMALL_STATE(1855)] = 63169, - [SMALL_STATE(1856)] = 63239, - [SMALL_STATE(1857)] = 63361, - [SMALL_STATE(1858)] = 63483, - [SMALL_STATE(1859)] = 63605, - [SMALL_STATE(1860)] = 63727, - [SMALL_STATE(1861)] = 63849, - [SMALL_STATE(1862)] = 63971, - [SMALL_STATE(1863)] = 64093, - [SMALL_STATE(1864)] = 64215, - [SMALL_STATE(1865)] = 64337, - [SMALL_STATE(1866)] = 64459, - [SMALL_STATE(1867)] = 64581, - [SMALL_STATE(1868)] = 64703, - [SMALL_STATE(1869)] = 64825, - [SMALL_STATE(1870)] = 64947, - [SMALL_STATE(1871)] = 65069, - [SMALL_STATE(1872)] = 65191, - [SMALL_STATE(1873)] = 65265, - [SMALL_STATE(1874)] = 65387, - [SMALL_STATE(1875)] = 65509, - [SMALL_STATE(1876)] = 65631, - [SMALL_STATE(1877)] = 65753, - [SMALL_STATE(1878)] = 65829, - [SMALL_STATE(1879)] = 65951, - [SMALL_STATE(1880)] = 66023, - [SMALL_STATE(1881)] = 66145, - [SMALL_STATE(1882)] = 66217, - [SMALL_STATE(1883)] = 66339, - [SMALL_STATE(1884)] = 66461, - [SMALL_STATE(1885)] = 66583, - [SMALL_STATE(1886)] = 66705, - [SMALL_STATE(1887)] = 66775, - [SMALL_STATE(1888)] = 66897, - [SMALL_STATE(1889)] = 67019, - [SMALL_STATE(1890)] = 67141, - [SMALL_STATE(1891)] = 67263, - [SMALL_STATE(1892)] = 67385, - [SMALL_STATE(1893)] = 67507, - [SMALL_STATE(1894)] = 67583, - [SMALL_STATE(1895)] = 67705, - [SMALL_STATE(1896)] = 67827, - [SMALL_STATE(1897)] = 67949, - [SMALL_STATE(1898)] = 68071, - [SMALL_STATE(1899)] = 68193, - [SMALL_STATE(1900)] = 68315, - [SMALL_STATE(1901)] = 68437, - [SMALL_STATE(1902)] = 68559, - [SMALL_STATE(1903)] = 68681, - [SMALL_STATE(1904)] = 68803, - [SMALL_STATE(1905)] = 68925, - [SMALL_STATE(1906)] = 69047, - [SMALL_STATE(1907)] = 69169, - [SMALL_STATE(1908)] = 69291, - [SMALL_STATE(1909)] = 69367, - [SMALL_STATE(1910)] = 69435, - [SMALL_STATE(1911)] = 69557, - [SMALL_STATE(1912)] = 69679, - [SMALL_STATE(1913)] = 69801, - [SMALL_STATE(1914)] = 69923, - [SMALL_STATE(1915)] = 70045, - [SMALL_STATE(1916)] = 70167, - [SMALL_STATE(1917)] = 70289, - [SMALL_STATE(1918)] = 70411, - [SMALL_STATE(1919)] = 70533, - [SMALL_STATE(1920)] = 70655, - [SMALL_STATE(1921)] = 70725, - [SMALL_STATE(1922)] = 70847, - [SMALL_STATE(1923)] = 70921, - [SMALL_STATE(1924)] = 71043, - [SMALL_STATE(1925)] = 71165, - [SMALL_STATE(1926)] = 71287, - [SMALL_STATE(1927)] = 71363, - [SMALL_STATE(1928)] = 71485, - [SMALL_STATE(1929)] = 71607, - [SMALL_STATE(1930)] = 71729, - [SMALL_STATE(1931)] = 71805, - [SMALL_STATE(1932)] = 71927, - [SMALL_STATE(1933)] = 72049, - [SMALL_STATE(1934)] = 72171, - [SMALL_STATE(1935)] = 72293, - [SMALL_STATE(1936)] = 72367, - [SMALL_STATE(1937)] = 72489, - [SMALL_STATE(1938)] = 72563, - [SMALL_STATE(1939)] = 72685, - [SMALL_STATE(1940)] = 72807, - [SMALL_STATE(1941)] = 72929, - [SMALL_STATE(1942)] = 73051, - [SMALL_STATE(1943)] = 73173, - [SMALL_STATE(1944)] = 73295, - [SMALL_STATE(1945)] = 73417, - [SMALL_STATE(1946)] = 73539, - [SMALL_STATE(1947)] = 73661, - [SMALL_STATE(1948)] = 73783, - [SMALL_STATE(1949)] = 73905, - [SMALL_STATE(1950)] = 74027, - [SMALL_STATE(1951)] = 74097, - [SMALL_STATE(1952)] = 74219, - [SMALL_STATE(1953)] = 74341, - [SMALL_STATE(1954)] = 74463, - [SMALL_STATE(1955)] = 74539, - [SMALL_STATE(1956)] = 74609, - [SMALL_STATE(1957)] = 74731, - [SMALL_STATE(1958)] = 74853, - [SMALL_STATE(1959)] = 74975, - [SMALL_STATE(1960)] = 75097, - [SMALL_STATE(1961)] = 75219, - [SMALL_STATE(1962)] = 75341, - [SMALL_STATE(1963)] = 75411, - [SMALL_STATE(1964)] = 75533, - [SMALL_STATE(1965)] = 75655, - [SMALL_STATE(1966)] = 75725, - [SMALL_STATE(1967)] = 75847, - [SMALL_STATE(1968)] = 75969, - [SMALL_STATE(1969)] = 76091, - [SMALL_STATE(1970)] = 76213, - [SMALL_STATE(1971)] = 76335, - [SMALL_STATE(1972)] = 76457, - [SMALL_STATE(1973)] = 76579, - [SMALL_STATE(1974)] = 76701, - [SMALL_STATE(1975)] = 76823, - [SMALL_STATE(1976)] = 76945, - [SMALL_STATE(1977)] = 77067, - [SMALL_STATE(1978)] = 77189, - [SMALL_STATE(1979)] = 77311, - [SMALL_STATE(1980)] = 77393, - [SMALL_STATE(1981)] = 77515, - [SMALL_STATE(1982)] = 77637, - [SMALL_STATE(1983)] = 77759, - [SMALL_STATE(1984)] = 77881, - [SMALL_STATE(1985)] = 78003, - [SMALL_STATE(1986)] = 78125, - [SMALL_STATE(1987)] = 78247, - [SMALL_STATE(1988)] = 78369, - [SMALL_STATE(1989)] = 78491, - [SMALL_STATE(1990)] = 78567, - [SMALL_STATE(1991)] = 78689, - [SMALL_STATE(1992)] = 78811, - [SMALL_STATE(1993)] = 78933, - [SMALL_STATE(1994)] = 79055, - [SMALL_STATE(1995)] = 79177, - [SMALL_STATE(1996)] = 79299, - [SMALL_STATE(1997)] = 79421, - [SMALL_STATE(1998)] = 79543, - [SMALL_STATE(1999)] = 79665, - [SMALL_STATE(2000)] = 79737, - [SMALL_STATE(2001)] = 79859, - [SMALL_STATE(2002)] = 79981, - [SMALL_STATE(2003)] = 80103, - [SMALL_STATE(2004)] = 80225, - [SMALL_STATE(2005)] = 80347, - [SMALL_STATE(2006)] = 80469, - [SMALL_STATE(2007)] = 80591, - [SMALL_STATE(2008)] = 80713, - [SMALL_STATE(2009)] = 80835, - [SMALL_STATE(2010)] = 80954, - [SMALL_STATE(2011)] = 81023, - [SMALL_STATE(2012)] = 81098, - [SMALL_STATE(2013)] = 81161, - [SMALL_STATE(2014)] = 81230, - [SMALL_STATE(2015)] = 81299, - [SMALL_STATE(2016)] = 81366, - [SMALL_STATE(2017)] = 81437, - [SMALL_STATE(2018)] = 81512, - [SMALL_STATE(2019)] = 81579, - [SMALL_STATE(2020)] = 81642, - [SMALL_STATE(2021)] = 81711, - [SMALL_STATE(2022)] = 81780, - [SMALL_STATE(2023)] = 81849, - [SMALL_STATE(2024)] = 81918, - [SMALL_STATE(2025)] = 81987, - [SMALL_STATE(2026)] = 82056, - [SMALL_STATE(2027)] = 82125, - [SMALL_STATE(2028)] = 82206, - [SMALL_STATE(2029)] = 82273, - [SMALL_STATE(2030)] = 82342, - [SMALL_STATE(2031)] = 82417, - [SMALL_STATE(2032)] = 82486, - [SMALL_STATE(2033)] = 82557, - [SMALL_STATE(2034)] = 82676, - [SMALL_STATE(2035)] = 82751, - [SMALL_STATE(2036)] = 82820, - [SMALL_STATE(2037)] = 82899, - [SMALL_STATE(2038)] = 82966, - [SMALL_STATE(2039)] = 83037, - [SMALL_STATE(2040)] = 83106, - [SMALL_STATE(2041)] = 83169, - [SMALL_STATE(2042)] = 83246, - [SMALL_STATE(2043)] = 83321, - [SMALL_STATE(2044)] = 83396, - [SMALL_STATE(2045)] = 83473, - [SMALL_STATE(2046)] = 83548, - [SMALL_STATE(2047)] = 83615, - [SMALL_STATE(2048)] = 83678, - [SMALL_STATE(2049)] = 83747, - [SMALL_STATE(2050)] = 83814, - [SMALL_STATE(2051)] = 83889, - [SMALL_STATE(2052)] = 83964, - [SMALL_STATE(2053)] = 84027, - [SMALL_STATE(2054)] = 84096, - [SMALL_STATE(2055)] = 84165, - [SMALL_STATE(2056)] = 84228, - [SMALL_STATE(2057)] = 84291, - [SMALL_STATE(2058)] = 84364, - [SMALL_STATE(2059)] = 84439, - [SMALL_STATE(2060)] = 84506, - [SMALL_STATE(2061)] = 84573, - [SMALL_STATE(2062)] = 84642, - [SMALL_STATE(2063)] = 84715, - [SMALL_STATE(2064)] = 84788, - [SMALL_STATE(2065)] = 84862, - [SMALL_STATE(2066)] = 84930, - [SMALL_STATE(2067)] = 85000, - [SMALL_STATE(2068)] = 85072, - [SMALL_STATE(2069)] = 85142, - [SMALL_STATE(2070)] = 85212, - [SMALL_STATE(2071)] = 85278, - [SMALL_STATE(2072)] = 85348, - [SMALL_STATE(2073)] = 85416, - [SMALL_STATE(2074)] = 85490, - [SMALL_STATE(2075)] = 85560, - [SMALL_STATE(2076)] = 85630, - [SMALL_STATE(2077)] = 85698, - [SMALL_STATE(2078)] = 85766, - [SMALL_STATE(2079)] = 85834, - [SMALL_STATE(2080)] = 85902, - [SMALL_STATE(2081)] = 85976, - [SMALL_STATE(2082)] = 86042, - [SMALL_STATE(2083)] = 86112, - [SMALL_STATE(2084)] = 86180, - [SMALL_STATE(2085)] = 86246, - [SMALL_STATE(2086)] = 86312, - [SMALL_STATE(2087)] = 86384, - [SMALL_STATE(2088)] = 86452, - [SMALL_STATE(2089)] = 86524, - [SMALL_STATE(2090)] = 86592, - [SMALL_STATE(2091)] = 86658, - [SMALL_STATE(2092)] = 86730, - [SMALL_STATE(2093)] = 86798, - [SMALL_STATE(2094)] = 86866, - [SMALL_STATE(2095)] = 86934, - [SMALL_STATE(2096)] = 87002, - [SMALL_STATE(2097)] = 87072, - [SMALL_STATE(2098)] = 87144, - [SMALL_STATE(2099)] = 87211, - [SMALL_STATE(2100)] = 87278, - [SMALL_STATE(2101)] = 87345, - [SMALL_STATE(2102)] = 87412, - [SMALL_STATE(2103)] = 87479, - [SMALL_STATE(2104)] = 87546, - [SMALL_STATE(2105)] = 87613, - [SMALL_STATE(2106)] = 87684, - [SMALL_STATE(2107)] = 87751, - [SMALL_STATE(2108)] = 87818, - [SMALL_STATE(2109)] = 87889, - [SMALL_STATE(2110)] = 87956, - [SMALL_STATE(2111)] = 88024, - [SMALL_STATE(2112)] = 88142, - [SMALL_STATE(2113)] = 88260, - [SMALL_STATE(2114)] = 88378, - [SMALL_STATE(2115)] = 88496, - [SMALL_STATE(2116)] = 88614, - [SMALL_STATE(2117)] = 88732, - [SMALL_STATE(2118)] = 88850, - [SMALL_STATE(2119)] = 88968, - [SMALL_STATE(2120)] = 89086, - [SMALL_STATE(2121)] = 89193, - [SMALL_STATE(2122)] = 89300, - [SMALL_STATE(2123)] = 89415, - [SMALL_STATE(2124)] = 89522, - [SMALL_STATE(2125)] = 89629, - [SMALL_STATE(2126)] = 89736, - [SMALL_STATE(2127)] = 89843, - [SMALL_STATE(2128)] = 89918, - [SMALL_STATE(2129)] = 90025, - [SMALL_STATE(2130)] = 90135, - [SMALL_STATE(2131)] = 90245, - [SMALL_STATE(2132)] = 90353, - [SMALL_STATE(2133)] = 90456, - [SMALL_STATE(2134)] = 90559, - [SMALL_STATE(2135)] = 90662, - [SMALL_STATE(2136)] = 90765, - [SMALL_STATE(2137)] = 90868, - [SMALL_STATE(2138)] = 90937, - [SMALL_STATE(2139)] = 91040, - [SMALL_STATE(2140)] = 91143, - [SMALL_STATE(2141)] = 91246, - [SMALL_STATE(2142)] = 91349, - [SMALL_STATE(2143)] = 91452, - [SMALL_STATE(2144)] = 91555, - [SMALL_STATE(2145)] = 91658, - [SMALL_STATE(2146)] = 91761, - [SMALL_STATE(2147)] = 91864, - [SMALL_STATE(2148)] = 91967, - [SMALL_STATE(2149)] = 92070, - [SMALL_STATE(2150)] = 92173, - [SMALL_STATE(2151)] = 92276, - [SMALL_STATE(2152)] = 92379, - [SMALL_STATE(2153)] = 92482, - [SMALL_STATE(2154)] = 92585, - [SMALL_STATE(2155)] = 92641, - [SMALL_STATE(2156)] = 92699, - [SMALL_STATE(2157)] = 92759, - [SMALL_STATE(2158)] = 92817, - [SMALL_STATE(2159)] = 92873, - [SMALL_STATE(2160)] = 92927, - [SMALL_STATE(2161)] = 92981, - [SMALL_STATE(2162)] = 93041, - [SMALL_STATE(2163)] = 93099, - [SMALL_STATE(2164)] = 93159, - [SMALL_STATE(2165)] = 93217, - [SMALL_STATE(2166)] = 93275, - [SMALL_STATE(2167)] = 93374, - [SMALL_STATE(2168)] = 93427, - [SMALL_STATE(2169)] = 93480, - [SMALL_STATE(2170)] = 93533, - [SMALL_STATE(2171)] = 93586, - [SMALL_STATE(2172)] = 93641, - [SMALL_STATE(2173)] = 93694, - [SMALL_STATE(2174)] = 93749, - [SMALL_STATE(2175)] = 93802, - [SMALL_STATE(2176)] = 93855, - [SMALL_STATE(2177)] = 93910, - [SMALL_STATE(2178)] = 93963, - [SMALL_STATE(2179)] = 94016, - [SMALL_STATE(2180)] = 94069, - [SMALL_STATE(2181)] = 94122, - [SMALL_STATE(2182)] = 94177, - [SMALL_STATE(2183)] = 94230, - [SMALL_STATE(2184)] = 94329, - [SMALL_STATE(2185)] = 94384, - [SMALL_STATE(2186)] = 94437, - [SMALL_STATE(2187)] = 94490, - [SMALL_STATE(2188)] = 94589, - [SMALL_STATE(2189)] = 94688, - [SMALL_STATE(2190)] = 94781, - [SMALL_STATE(2191)] = 94852, - [SMALL_STATE(2192)] = 94929, - [SMALL_STATE(2193)] = 95018, - [SMALL_STATE(2194)] = 95103, - [SMALL_STATE(2195)] = 95182, - [SMALL_STATE(2196)] = 95241, - [SMALL_STATE(2197)] = 95314, - [SMALL_STATE(2198)] = 95413, - [SMALL_STATE(2199)] = 95512, - [SMALL_STATE(2200)] = 95611, - [SMALL_STATE(2201)] = 95674, - [SMALL_STATE(2202)] = 95727, - [SMALL_STATE(2203)] = 95782, - [SMALL_STATE(2204)] = 95835, - [SMALL_STATE(2205)] = 95888, - [SMALL_STATE(2206)] = 95987, - [SMALL_STATE(2207)] = 96042, - [SMALL_STATE(2208)] = 96097, - [SMALL_STATE(2209)] = 96196, - [SMALL_STATE(2210)] = 96249, - [SMALL_STATE(2211)] = 96348, - [SMALL_STATE(2212)] = 96447, - [SMALL_STATE(2213)] = 96546, - [SMALL_STATE(2214)] = 96645, - [SMALL_STATE(2215)] = 96744, - [SMALL_STATE(2216)] = 96797, - [SMALL_STATE(2217)] = 96850, - [SMALL_STATE(2218)] = 96903, - [SMALL_STATE(2219)] = 97002, - [SMALL_STATE(2220)] = 97095, - [SMALL_STATE(2221)] = 97148, - [SMALL_STATE(2222)] = 97201, - [SMALL_STATE(2223)] = 97260, - [SMALL_STATE(2224)] = 97313, - [SMALL_STATE(2225)] = 97366, - [SMALL_STATE(2226)] = 97419, - [SMALL_STATE(2227)] = 97472, - [SMALL_STATE(2228)] = 97543, - [SMALL_STATE(2229)] = 97596, - [SMALL_STATE(2230)] = 97651, - [SMALL_STATE(2231)] = 97750, - [SMALL_STATE(2232)] = 97803, - [SMALL_STATE(2233)] = 97880, - [SMALL_STATE(2234)] = 97933, - [SMALL_STATE(2235)] = 97986, - [SMALL_STATE(2236)] = 98039, - [SMALL_STATE(2237)] = 98092, - [SMALL_STATE(2238)] = 98145, - [SMALL_STATE(2239)] = 98202, - [SMALL_STATE(2240)] = 98255, - [SMALL_STATE(2241)] = 98344, - [SMALL_STATE(2242)] = 98429, - [SMALL_STATE(2243)] = 98482, - [SMALL_STATE(2244)] = 98535, - [SMALL_STATE(2245)] = 98604, - [SMALL_STATE(2246)] = 98683, - [SMALL_STATE(2247)] = 98736, - [SMALL_STATE(2248)] = 98789, - [SMALL_STATE(2249)] = 98872, - [SMALL_STATE(2250)] = 98939, - [SMALL_STATE(2251)] = 98992, - [SMALL_STATE(2252)] = 99065, - [SMALL_STATE(2253)] = 99118, - [SMALL_STATE(2254)] = 99217, - [SMALL_STATE(2255)] = 99270, - [SMALL_STATE(2256)] = 99323, - [SMALL_STATE(2257)] = 99376, - [SMALL_STATE(2258)] = 99429, - [SMALL_STATE(2259)] = 99528, - [SMALL_STATE(2260)] = 99627, - [SMALL_STATE(2261)] = 99680, - [SMALL_STATE(2262)] = 99733, - [SMALL_STATE(2263)] = 99786, - [SMALL_STATE(2264)] = 99885, - [SMALL_STATE(2265)] = 99938, - [SMALL_STATE(2266)] = 100037, - [SMALL_STATE(2267)] = 100090, - [SMALL_STATE(2268)] = 100189, - [SMALL_STATE(2269)] = 100242, - [SMALL_STATE(2270)] = 100341, - [SMALL_STATE(2271)] = 100440, - [SMALL_STATE(2272)] = 100493, - [SMALL_STATE(2273)] = 100550, - [SMALL_STATE(2274)] = 100603, - [SMALL_STATE(2275)] = 100656, - [SMALL_STATE(2276)] = 100755, - [SMALL_STATE(2277)] = 100826, - [SMALL_STATE(2278)] = 100883, - [SMALL_STATE(2279)] = 100942, - [SMALL_STATE(2280)] = 100995, - [SMALL_STATE(2281)] = 101078, - [SMALL_STATE(2282)] = 101141, - [SMALL_STATE(2283)] = 101194, - [SMALL_STATE(2284)] = 101247, - [SMALL_STATE(2285)] = 101318, - [SMALL_STATE(2286)] = 101389, - [SMALL_STATE(2287)] = 101442, - [SMALL_STATE(2288)] = 101495, - [SMALL_STATE(2289)] = 101594, - [SMALL_STATE(2290)] = 101647, - [SMALL_STATE(2291)] = 101700, - [SMALL_STATE(2292)] = 101753, - [SMALL_STATE(2293)] = 101808, - [SMALL_STATE(2294)] = 101879, - [SMALL_STATE(2295)] = 101932, - [SMALL_STATE(2296)] = 102031, - [SMALL_STATE(2297)] = 102084, - [SMALL_STATE(2298)] = 102183, - [SMALL_STATE(2299)] = 102236, - [SMALL_STATE(2300)] = 102297, - [SMALL_STATE(2301)] = 102396, - [SMALL_STATE(2302)] = 102449, - [SMALL_STATE(2303)] = 102502, - [SMALL_STATE(2304)] = 102601, - [SMALL_STATE(2305)] = 102654, - [SMALL_STATE(2306)] = 102707, - [SMALL_STATE(2307)] = 102766, - [SMALL_STATE(2308)] = 102819, - [SMALL_STATE(2309)] = 102872, - [SMALL_STATE(2310)] = 102925, - [SMALL_STATE(2311)] = 102978, - [SMALL_STATE(2312)] = 103031, - [SMALL_STATE(2313)] = 103084, - [SMALL_STATE(2314)] = 103137, - [SMALL_STATE(2315)] = 103190, - [SMALL_STATE(2316)] = 103243, - [SMALL_STATE(2317)] = 103342, - [SMALL_STATE(2318)] = 103395, - [SMALL_STATE(2319)] = 103448, - [SMALL_STATE(2320)] = 103501, - [SMALL_STATE(2321)] = 103554, - [SMALL_STATE(2322)] = 103653, - [SMALL_STATE(2323)] = 103706, - [SMALL_STATE(2324)] = 103759, - [SMALL_STATE(2325)] = 103812, - [SMALL_STATE(2326)] = 103911, - [SMALL_STATE(2327)] = 103964, - [SMALL_STATE(2328)] = 104017, - [SMALL_STATE(2329)] = 104070, - [SMALL_STATE(2330)] = 104139, - [SMALL_STATE(2331)] = 104192, - [SMALL_STATE(2332)] = 104245, - [SMALL_STATE(2333)] = 104344, - [SMALL_STATE(2334)] = 104397, - [SMALL_STATE(2335)] = 104450, - [SMALL_STATE(2336)] = 104505, - [SMALL_STATE(2337)] = 104558, - [SMALL_STATE(2338)] = 104611, - [SMALL_STATE(2339)] = 104664, - [SMALL_STATE(2340)] = 104717, - [SMALL_STATE(2341)] = 104770, - [SMALL_STATE(2342)] = 104823, - [SMALL_STATE(2343)] = 104876, - [SMALL_STATE(2344)] = 104929, - [SMALL_STATE(2345)] = 105027, - [SMALL_STATE(2346)] = 105097, - [SMALL_STATE(2347)] = 105189, - [SMALL_STATE(2348)] = 105287, - [SMALL_STATE(2349)] = 105385, - [SMALL_STATE(2350)] = 105477, - [SMALL_STATE(2351)] = 105549, - [SMALL_STATE(2352)] = 105647, - [SMALL_STATE(2353)] = 105745, - [SMALL_STATE(2354)] = 105799, - [SMALL_STATE(2355)] = 105881, - [SMALL_STATE(2356)] = 105959, - [SMALL_STATE(2357)] = 106043, - [SMALL_STATE(2358)] = 106141, - [SMALL_STATE(2359)] = 106203, - [SMALL_STATE(2360)] = 106259, - [SMALL_STATE(2361)] = 106347, - [SMALL_STATE(2362)] = 106407, - [SMALL_STATE(2363)] = 106505, - [SMALL_STATE(2364)] = 106561, - [SMALL_STATE(2365)] = 106637, - [SMALL_STATE(2366)] = 106729, - [SMALL_STATE(2367)] = 106821, - [SMALL_STATE(2368)] = 106919, - [SMALL_STATE(2369)] = 107011, - [SMALL_STATE(2370)] = 107109, - [SMALL_STATE(2371)] = 107201, - [SMALL_STATE(2372)] = 107293, - [SMALL_STATE(2373)] = 107391, - [SMALL_STATE(2374)] = 107489, - [SMALL_STATE(2375)] = 107547, - [SMALL_STATE(2376)] = 107639, - [SMALL_STATE(2377)] = 107699, - [SMALL_STATE(2378)] = 107759, - [SMALL_STATE(2379)] = 107829, - [SMALL_STATE(2380)] = 107899, - [SMALL_STATE(2381)] = 107955, - [SMALL_STATE(2382)] = 108053, - [SMALL_STATE(2383)] = 108151, - [SMALL_STATE(2384)] = 108211, - [SMALL_STATE(2385)] = 108279, - [SMALL_STATE(2386)] = 108371, - [SMALL_STATE(2387)] = 108427, - [SMALL_STATE(2388)] = 108519, - [SMALL_STATE(2389)] = 108575, - [SMALL_STATE(2390)] = 108667, - [SMALL_STATE(2391)] = 108759, - [SMALL_STATE(2392)] = 108810, - [SMALL_STATE(2393)] = 108861, - [SMALL_STATE(2394)] = 108912, - [SMALL_STATE(2395)] = 109009, - [SMALL_STATE(2396)] = 109060, - [SMALL_STATE(2397)] = 109113, - [SMALL_STATE(2398)] = 109164, - [SMALL_STATE(2399)] = 109215, - [SMALL_STATE(2400)] = 109266, - [SMALL_STATE(2401)] = 109317, - [SMALL_STATE(2402)] = 109384, - [SMALL_STATE(2403)] = 109481, - [SMALL_STATE(2404)] = 109578, - [SMALL_STATE(2405)] = 109629, - [SMALL_STATE(2406)] = 109680, - [SMALL_STATE(2407)] = 109733, - [SMALL_STATE(2408)] = 109784, - [SMALL_STATE(2409)] = 109835, - [SMALL_STATE(2410)] = 109932, - [SMALL_STATE(2411)] = 109983, - [SMALL_STATE(2412)] = 110042, - [SMALL_STATE(2413)] = 110097, - [SMALL_STATE(2414)] = 110166, - [SMALL_STATE(2415)] = 110217, - [SMALL_STATE(2416)] = 110286, - [SMALL_STATE(2417)] = 110339, - [SMALL_STATE(2418)] = 110436, - [SMALL_STATE(2419)] = 110533, - [SMALL_STATE(2420)] = 110594, - [SMALL_STATE(2421)] = 110645, - [SMALL_STATE(2422)] = 110696, - [SMALL_STATE(2423)] = 110747, - [SMALL_STATE(2424)] = 110798, - [SMALL_STATE(2425)] = 110895, - [SMALL_STATE(2426)] = 110946, - [SMALL_STATE(2427)] = 111043, - [SMALL_STATE(2428)] = 111112, - [SMALL_STATE(2429)] = 111209, - [SMALL_STATE(2430)] = 111306, - [SMALL_STATE(2431)] = 111357, - [SMALL_STATE(2432)] = 111454, - [SMALL_STATE(2433)] = 111551, - [SMALL_STATE(2434)] = 111622, - [SMALL_STATE(2435)] = 111691, - [SMALL_STATE(2436)] = 111772, - [SMALL_STATE(2437)] = 111869, - [SMALL_STATE(2438)] = 111920, - [SMALL_STATE(2439)] = 111971, - [SMALL_STATE(2440)] = 112022, - [SMALL_STATE(2441)] = 112073, - [SMALL_STATE(2442)] = 112124, - [SMALL_STATE(2443)] = 112221, - [SMALL_STATE(2444)] = 112272, - [SMALL_STATE(2445)] = 112323, - [SMALL_STATE(2446)] = 112400, - [SMALL_STATE(2447)] = 112483, - [SMALL_STATE(2448)] = 112570, - [SMALL_STATE(2449)] = 112645, - [SMALL_STATE(2450)] = 112736, - [SMALL_STATE(2451)] = 112833, - [SMALL_STATE(2452)] = 112930, - [SMALL_STATE(2453)] = 112981, - [SMALL_STATE(2454)] = 113034, - [SMALL_STATE(2455)] = 113085, - [SMALL_STATE(2456)] = 113136, - [SMALL_STATE(2457)] = 113187, - [SMALL_STATE(2458)] = 113238, - [SMALL_STATE(2459)] = 113337, - [SMALL_STATE(2460)] = 113402, - [SMALL_STATE(2461)] = 113469, - [SMALL_STATE(2462)] = 113520, - [SMALL_STATE(2463)] = 113619, - [SMALL_STATE(2464)] = 113718, - [SMALL_STATE(2465)] = 113769, - [SMALL_STATE(2466)] = 113868, - [SMALL_STATE(2467)] = 113927, - [SMALL_STATE(2468)] = 113980, - [SMALL_STATE(2469)] = 114031, - [SMALL_STATE(2470)] = 114082, - [SMALL_STATE(2471)] = 114179, - [SMALL_STATE(2472)] = 114276, - [SMALL_STATE(2473)] = 114373, - [SMALL_STATE(2474)] = 114424, - [SMALL_STATE(2475)] = 114475, - [SMALL_STATE(2476)] = 114574, - [SMALL_STATE(2477)] = 114673, - [SMALL_STATE(2478)] = 114730, - [SMALL_STATE(2479)] = 114821, - [SMALL_STATE(2480)] = 114890, - [SMALL_STATE(2481)] = 114965, - [SMALL_STATE(2482)] = 115022, - [SMALL_STATE(2483)] = 115079, - [SMALL_STATE(2484)] = 115166, - [SMALL_STATE(2485)] = 115249, - [SMALL_STATE(2486)] = 115326, - [SMALL_STATE(2487)] = 115407, - [SMALL_STATE(2488)] = 115504, - [SMALL_STATE(2489)] = 115555, - [SMALL_STATE(2490)] = 115606, - [SMALL_STATE(2491)] = 115677, - [SMALL_STATE(2492)] = 115776, - [SMALL_STATE(2493)] = 115875, - [SMALL_STATE(2494)] = 115930, - [SMALL_STATE(2495)] = 116029, - [SMALL_STATE(2496)] = 116080, - [SMALL_STATE(2497)] = 116131, - [SMALL_STATE(2498)] = 116230, - [SMALL_STATE(2499)] = 116329, - [SMALL_STATE(2500)] = 116388, - [SMALL_STATE(2501)] = 116449, - [SMALL_STATE(2502)] = 116546, - [SMALL_STATE(2503)] = 116597, - [SMALL_STATE(2504)] = 116656, - [SMALL_STATE(2505)] = 116707, - [SMALL_STATE(2506)] = 116762, - [SMALL_STATE(2507)] = 116813, - [SMALL_STATE(2508)] = 116864, - [SMALL_STATE(2509)] = 116915, - [SMALL_STATE(2510)] = 116968, - [SMALL_STATE(2511)] = 117019, - [SMALL_STATE(2512)] = 117070, - [SMALL_STATE(2513)] = 117123, - [SMALL_STATE(2514)] = 117176, - [SMALL_STATE(2515)] = 117227, - [SMALL_STATE(2516)] = 117278, - [SMALL_STATE(2517)] = 117347, - [SMALL_STATE(2518)] = 117400, - [SMALL_STATE(2519)] = 117451, - [SMALL_STATE(2520)] = 117502, - [SMALL_STATE(2521)] = 117553, - [SMALL_STATE(2522)] = 117604, - [SMALL_STATE(2523)] = 117655, - [SMALL_STATE(2524)] = 117706, - [SMALL_STATE(2525)] = 117757, - [SMALL_STATE(2526)] = 117808, - [SMALL_STATE(2527)] = 117867, - [SMALL_STATE(2528)] = 117964, - [SMALL_STATE(2529)] = 118061, - [SMALL_STATE(2530)] = 118158, - [SMALL_STATE(2531)] = 118229, - [SMALL_STATE(2532)] = 118280, - [SMALL_STATE(2533)] = 118333, - [SMALL_STATE(2534)] = 118430, - [SMALL_STATE(2535)] = 118489, - [SMALL_STATE(2536)] = 118586, - [SMALL_STATE(2537)] = 118685, - [SMALL_STATE(2538)] = 118738, - [SMALL_STATE(2539)] = 118805, - [SMALL_STATE(2540)] = 118886, - [SMALL_STATE(2541)] = 118943, - [SMALL_STATE(2542)] = 119000, - [SMALL_STATE(2543)] = 119099, - [SMALL_STATE(2544)] = 119198, - [SMALL_STATE(2545)] = 119267, - [SMALL_STATE(2546)] = 119336, - [SMALL_STATE(2547)] = 119387, - [SMALL_STATE(2548)] = 119438, - [SMALL_STATE(2549)] = 119489, - [SMALL_STATE(2550)] = 119540, - [SMALL_STATE(2551)] = 119591, - [SMALL_STATE(2552)] = 119646, - [SMALL_STATE(2553)] = 119723, - [SMALL_STATE(2554)] = 119774, - [SMALL_STATE(2555)] = 119825, - [SMALL_STATE(2556)] = 119876, - [SMALL_STATE(2557)] = 119927, - [SMALL_STATE(2558)] = 119978, - [SMALL_STATE(2559)] = 120039, - [SMALL_STATE(2560)] = 120090, - [SMALL_STATE(2561)] = 120143, - [SMALL_STATE(2562)] = 120226, - [SMALL_STATE(2563)] = 120277, - [SMALL_STATE(2564)] = 120364, - [SMALL_STATE(2565)] = 120439, - [SMALL_STATE(2566)] = 120508, - [SMALL_STATE(2567)] = 120599, - [SMALL_STATE(2568)] = 120650, - [SMALL_STATE(2569)] = 120701, - [SMALL_STATE(2570)] = 120752, - [SMALL_STATE(2571)] = 120803, - [SMALL_STATE(2572)] = 120854, - [SMALL_STATE(2573)] = 120905, - [SMALL_STATE(2574)] = 120956, - [SMALL_STATE(2575)] = 121007, - [SMALL_STATE(2576)] = 121064, - [SMALL_STATE(2577)] = 121115, - [SMALL_STATE(2578)] = 121166, - [SMALL_STATE(2579)] = 121217, - [SMALL_STATE(2580)] = 121268, - [SMALL_STATE(2581)] = 121368, - [SMALL_STATE(2582)] = 121424, - [SMALL_STATE(2583)] = 121506, - [SMALL_STATE(2584)] = 121582, - [SMALL_STATE(2585)] = 121634, - [SMALL_STATE(2586)] = 121686, - [SMALL_STATE(2587)] = 121770, - [SMALL_STATE(2588)] = 121838, - [SMALL_STATE(2589)] = 121918, - [SMALL_STATE(2590)] = 121988, - [SMALL_STATE(2591)] = 122056, - [SMALL_STATE(2592)] = 122152, - [SMALL_STATE(2593)] = 122254, - [SMALL_STATE(2594)] = 122350, - [SMALL_STATE(2595)] = 122406, - [SMALL_STATE(2596)] = 122464, - [SMALL_STATE(2597)] = 122516, - [SMALL_STATE(2598)] = 122582, - [SMALL_STATE(2599)] = 122678, - [SMALL_STATE(2600)] = 122738, - [SMALL_STATE(2601)] = 122794, - [SMALL_STATE(2602)] = 122848, - [SMALL_STATE(2603)] = 122900, - [SMALL_STATE(2604)] = 122954, - [SMALL_STATE(2605)] = 123010, - [SMALL_STATE(2606)] = 123062, - [SMALL_STATE(2607)] = 123118, - [SMALL_STATE(2608)] = 123214, - [SMALL_STATE(2609)] = 123310, - [SMALL_STATE(2610)] = 123362, - [SMALL_STATE(2611)] = 123430, - [SMALL_STATE(2612)] = 123498, - [SMALL_STATE(2613)] = 123566, - [SMALL_STATE(2614)] = 123634, - [SMALL_STATE(2615)] = 123730, - [SMALL_STATE(2616)] = 123796, - [SMALL_STATE(2617)] = 123892, - [SMALL_STATE(2618)] = 123952, - [SMALL_STATE(2619)] = 124048, - [SMALL_STATE(2620)] = 124114, - [SMALL_STATE(2621)] = 124210, - [SMALL_STATE(2622)] = 124312, - [SMALL_STATE(2623)] = 124408, - [SMALL_STATE(2624)] = 124504, - [SMALL_STATE(2625)] = 124600, - [SMALL_STATE(2626)] = 124656, - [SMALL_STATE(2627)] = 124712, - [SMALL_STATE(2628)] = 124764, - [SMALL_STATE(2629)] = 124816, - [SMALL_STATE(2630)] = 124912, - [SMALL_STATE(2631)] = 125008, - [SMALL_STATE(2632)] = 125104, - [SMALL_STATE(2633)] = 125200, - [SMALL_STATE(2634)] = 125296, - [SMALL_STATE(2635)] = 125396, - [SMALL_STATE(2636)] = 125492, - [SMALL_STATE(2637)] = 125588, - [SMALL_STATE(2638)] = 125658, - [SMALL_STATE(2639)] = 125714, - [SMALL_STATE(2640)] = 125770, - [SMALL_STATE(2641)] = 125826, - [SMALL_STATE(2642)] = 125906, - [SMALL_STATE(2643)] = 125982, - [SMALL_STATE(2644)] = 126064, - [SMALL_STATE(2645)] = 126166, - [SMALL_STATE(2646)] = 126220, - [SMALL_STATE(2647)] = 126294, - [SMALL_STATE(2648)] = 126362, - [SMALL_STATE(2649)] = 126414, - [SMALL_STATE(2650)] = 126504, - [SMALL_STATE(2651)] = 126600, - [SMALL_STATE(2652)] = 126696, - [SMALL_STATE(2653)] = 126796, - [SMALL_STATE(2654)] = 126896, - [SMALL_STATE(2655)] = 126998, - [SMALL_STATE(2656)] = 127064, - [SMALL_STATE(2657)] = 127150, - [SMALL_STATE(2658)] = 127236, - [SMALL_STATE(2659)] = 127332, - [SMALL_STATE(2660)] = 127400, - [SMALL_STATE(2661)] = 127468, - [SMALL_STATE(2662)] = 127564, - [SMALL_STATE(2663)] = 127638, - [SMALL_STATE(2664)] = 127698, - [SMALL_STATE(2665)] = 127766, - [SMALL_STATE(2666)] = 127864, - [SMALL_STATE(2667)] = 127962, - [SMALL_STATE(2668)] = 128030, - [SMALL_STATE(2669)] = 128126, - [SMALL_STATE(2670)] = 128222, - [SMALL_STATE(2671)] = 128318, - [SMALL_STATE(2672)] = 128372, - [SMALL_STATE(2673)] = 128462, - [SMALL_STATE(2674)] = 128558, - [SMALL_STATE(2675)] = 128618, - [SMALL_STATE(2676)] = 128716, - [SMALL_STATE(2677)] = 128814, - [SMALL_STATE(2678)] = 128866, - [SMALL_STATE(2679)] = 128924, - [SMALL_STATE(2680)] = 129022, - [SMALL_STATE(2681)] = 129112, - [SMALL_STATE(2682)] = 129208, - [SMALL_STATE(2683)] = 129306, - [SMALL_STATE(2684)] = 129404, - [SMALL_STATE(2685)] = 129472, - [SMALL_STATE(2686)] = 129574, - [SMALL_STATE(2687)] = 129644, - [SMALL_STATE(2688)] = 129698, - [SMALL_STATE(2689)] = 129778, - [SMALL_STATE(2690)] = 129864, - [SMALL_STATE(2691)] = 129940, - [SMALL_STATE(2692)] = 130022, - [SMALL_STATE(2693)] = 130108, - [SMALL_STATE(2694)] = 130190, - [SMALL_STATE(2695)] = 130288, - [SMALL_STATE(2696)] = 130386, - [SMALL_STATE(2697)] = 130484, - [SMALL_STATE(2698)] = 130582, - [SMALL_STATE(2699)] = 130680, - [SMALL_STATE(2700)] = 130778, - [SMALL_STATE(2701)] = 130854, - [SMALL_STATE(2702)] = 130934, - [SMALL_STATE(2703)] = 131008, - [SMALL_STATE(2704)] = 131078, - [SMALL_STATE(2705)] = 131146, - [SMALL_STATE(2706)] = 131242, - [SMALL_STATE(2707)] = 131338, - [SMALL_STATE(2708)] = 131428, - [SMALL_STATE(2709)] = 131526, - [SMALL_STATE(2710)] = 131624, - [SMALL_STATE(2711)] = 131722, - [SMALL_STATE(2712)] = 131778, - [SMALL_STATE(2713)] = 131876, - [SMALL_STATE(2714)] = 131974, - [SMALL_STATE(2715)] = 132072, - [SMALL_STATE(2716)] = 132170, - [SMALL_STATE(2717)] = 132238, - [SMALL_STATE(2718)] = 132306, - [SMALL_STATE(2719)] = 132404, - [SMALL_STATE(2720)] = 132502, - [SMALL_STATE(2721)] = 132568, - [SMALL_STATE(2722)] = 132628, - [SMALL_STATE(2723)] = 132688, - [SMALL_STATE(2724)] = 132786, - [SMALL_STATE(2725)] = 132888, - [SMALL_STATE(2726)] = 132978, - [SMALL_STATE(2727)] = 133052, - [SMALL_STATE(2728)] = 133138, - [SMALL_STATE(2729)] = 133234, - [SMALL_STATE(2730)] = 133330, - [SMALL_STATE(2731)] = 133412, - [SMALL_STATE(2732)] = 133468, - [SMALL_STATE(2733)] = 133524, - [SMALL_STATE(2734)] = 133578, - [SMALL_STATE(2735)] = 133636, - [SMALL_STATE(2736)] = 133694, - [SMALL_STATE(2737)] = 133770, - [SMALL_STATE(2738)] = 133866, - [SMALL_STATE(2739)] = 133946, - [SMALL_STATE(2740)] = 134002, - [SMALL_STATE(2741)] = 134072, - [SMALL_STATE(2742)] = 134170, - [SMALL_STATE(2743)] = 134268, - [SMALL_STATE(2744)] = 134320, - [SMALL_STATE(2745)] = 134372, - [SMALL_STATE(2746)] = 134470, - [SMALL_STATE(2747)] = 134522, - [SMALL_STATE(2748)] = 134582, - [SMALL_STATE(2749)] = 134678, - [SMALL_STATE(2750)] = 134734, - [SMALL_STATE(2751)] = 134830, - [SMALL_STATE(2752)] = 134926, - [SMALL_STATE(2753)] = 135022, - [SMALL_STATE(2754)] = 135118, - [SMALL_STATE(2755)] = 135214, - [SMALL_STATE(2756)] = 135316, - [SMALL_STATE(2757)] = 135390, - [SMALL_STATE(2758)] = 135442, - [SMALL_STATE(2759)] = 135498, - [SMALL_STATE(2760)] = 135594, - [SMALL_STATE(2761)] = 135689, - [SMALL_STATE(2762)] = 135756, - [SMALL_STATE(2763)] = 135805, - [SMALL_STATE(2764)] = 135886, - [SMALL_STATE(2765)] = 135985, - [SMALL_STATE(2766)] = 136052, - [SMALL_STATE(2767)] = 136137, - [SMALL_STATE(2768)] = 136210, - [SMALL_STATE(2769)] = 136277, - [SMALL_STATE(2770)] = 136342, - [SMALL_STATE(2771)] = 136421, - [SMALL_STATE(2772)] = 136510, - [SMALL_STATE(2773)] = 136559, - [SMALL_STATE(2774)] = 136614, - [SMALL_STATE(2775)] = 136663, - [SMALL_STATE(2776)] = 136718, - [SMALL_STATE(2777)] = 136767, - [SMALL_STATE(2778)] = 136866, - [SMALL_STATE(2779)] = 136915, - [SMALL_STATE(2780)] = 136964, - [SMALL_STATE(2781)] = 137019, - [SMALL_STATE(2782)] = 137078, - [SMALL_STATE(2783)] = 137131, - [SMALL_STATE(2784)] = 137180, - [SMALL_STATE(2785)] = 137237, - [SMALL_STATE(2786)] = 137286, - [SMALL_STATE(2787)] = 137383, - [SMALL_STATE(2788)] = 137480, - [SMALL_STATE(2789)] = 137533, - [SMALL_STATE(2790)] = 137602, - [SMALL_STATE(2791)] = 137651, - [SMALL_STATE(2792)] = 137700, - [SMALL_STATE(2793)] = 137749, - [SMALL_STATE(2794)] = 137798, - [SMALL_STATE(2795)] = 137895, - [SMALL_STATE(2796)] = 137992, - [SMALL_STATE(2797)] = 138041, - [SMALL_STATE(2798)] = 138090, - [SMALL_STATE(2799)] = 138141, - [SMALL_STATE(2800)] = 138190, - [SMALL_STATE(2801)] = 138239, - [SMALL_STATE(2802)] = 138288, - [SMALL_STATE(2803)] = 138337, - [SMALL_STATE(2804)] = 138386, - [SMALL_STATE(2805)] = 138461, - [SMALL_STATE(2806)] = 138510, - [SMALL_STATE(2807)] = 138559, - [SMALL_STATE(2808)] = 138658, - [SMALL_STATE(2809)] = 138723, - [SMALL_STATE(2810)] = 138820, - [SMALL_STATE(2811)] = 138915, - [SMALL_STATE(2812)] = 138968, - [SMALL_STATE(2813)] = 139023, - [SMALL_STATE(2814)] = 139078, - [SMALL_STATE(2815)] = 139175, - [SMALL_STATE(2816)] = 139224, - [SMALL_STATE(2817)] = 139273, - [SMALL_STATE(2818)] = 139328, - [SMALL_STATE(2819)] = 139377, - [SMALL_STATE(2820)] = 139426, - [SMALL_STATE(2821)] = 139521, - [SMALL_STATE(2822)] = 139576, - [SMALL_STATE(2823)] = 139625, - [SMALL_STATE(2824)] = 139674, - [SMALL_STATE(2825)] = 139725, - [SMALL_STATE(2826)] = 139792, - [SMALL_STATE(2827)] = 139887, - [SMALL_STATE(2828)] = 139936, - [SMALL_STATE(2829)] = 139985, - [SMALL_STATE(2830)] = 140034, - [SMALL_STATE(2831)] = 140091, - [SMALL_STATE(2832)] = 140140, - [SMALL_STATE(2833)] = 140191, - [SMALL_STATE(2834)] = 140248, - [SMALL_STATE(2835)] = 140297, - [SMALL_STATE(2836)] = 140350, - [SMALL_STATE(2837)] = 140399, - [SMALL_STATE(2838)] = 140466, - [SMALL_STATE(2839)] = 140521, - [SMALL_STATE(2840)] = 140570, - [SMALL_STATE(2841)] = 140619, - [SMALL_STATE(2842)] = 140668, - [SMALL_STATE(2843)] = 140717, - [SMALL_STATE(2844)] = 140766, - [SMALL_STATE(2845)] = 140815, - [SMALL_STATE(2846)] = 140864, - [SMALL_STATE(2847)] = 140913, - [SMALL_STATE(2848)] = 140968, - [SMALL_STATE(2849)] = 141027, - [SMALL_STATE(2850)] = 141076, - [SMALL_STATE(2851)] = 141171, - [SMALL_STATE(2852)] = 141222, - [SMALL_STATE(2853)] = 141275, - [SMALL_STATE(2854)] = 141324, - [SMALL_STATE(2855)] = 141373, - [SMALL_STATE(2856)] = 141422, - [SMALL_STATE(2857)] = 141473, - [SMALL_STATE(2858)] = 141568, - [SMALL_STATE(2859)] = 141617, - [SMALL_STATE(2860)] = 141712, - [SMALL_STATE(2861)] = 141761, - [SMALL_STATE(2862)] = 141812, - [SMALL_STATE(2863)] = 141907, - [SMALL_STATE(2864)] = 142002, - [SMALL_STATE(2865)] = 142051, - [SMALL_STATE(2866)] = 142100, - [SMALL_STATE(2867)] = 142149, - [SMALL_STATE(2868)] = 142198, - [SMALL_STATE(2869)] = 142255, - [SMALL_STATE(2870)] = 142304, - [SMALL_STATE(2871)] = 142353, - [SMALL_STATE(2872)] = 142450, - [SMALL_STATE(2873)] = 142499, - [SMALL_STATE(2874)] = 142548, - [SMALL_STATE(2875)] = 142645, - [SMALL_STATE(2876)] = 142694, - [SMALL_STATE(2877)] = 142791, - [SMALL_STATE(2878)] = 142888, - [SMALL_STATE(2879)] = 142937, - [SMALL_STATE(2880)] = 142986, - [SMALL_STATE(2881)] = 143041, - [SMALL_STATE(2882)] = 143090, - [SMALL_STATE(2883)] = 143149, - [SMALL_STATE(2884)] = 143248, - [SMALL_STATE(2885)] = 143299, - [SMALL_STATE(2886)] = 143366, - [SMALL_STATE(2887)] = 143445, - [SMALL_STATE(2888)] = 143540, - [SMALL_STATE(2889)] = 143609, - [SMALL_STATE(2890)] = 143658, - [SMALL_STATE(2891)] = 143707, - [SMALL_STATE(2892)] = 143756, - [SMALL_STATE(2893)] = 143835, - [SMALL_STATE(2894)] = 143934, - [SMALL_STATE(2895)] = 144009, - [SMALL_STATE(2896)] = 144106, - [SMALL_STATE(2897)] = 144205, - [SMALL_STATE(2898)] = 144286, - [SMALL_STATE(2899)] = 144383, - [SMALL_STATE(2900)] = 144468, - [SMALL_STATE(2901)] = 144517, - [SMALL_STATE(2902)] = 144566, - [SMALL_STATE(2903)] = 144639, - [SMALL_STATE(2904)] = 144688, - [SMALL_STATE(2905)] = 144737, - [SMALL_STATE(2906)] = 144804, - [SMALL_STATE(2907)] = 144893, - [SMALL_STATE(2908)] = 144952, - [SMALL_STATE(2909)] = 145001, - [SMALL_STATE(2910)] = 145050, - [SMALL_STATE(2911)] = 145099, - [SMALL_STATE(2912)] = 145148, - [SMALL_STATE(2913)] = 145243, - [SMALL_STATE(2914)] = 145300, - [SMALL_STATE(2915)] = 145395, - [SMALL_STATE(2916)] = 145490, - [SMALL_STATE(2917)] = 145541, - [SMALL_STATE(2918)] = 145590, - [SMALL_STATE(2919)] = 145685, - [SMALL_STATE(2920)] = 145734, - [SMALL_STATE(2921)] = 145829, - [SMALL_STATE(2922)] = 145880, - [SMALL_STATE(2923)] = 145975, - [SMALL_STATE(2924)] = 146070, - [SMALL_STATE(2925)] = 146139, - [SMALL_STATE(2926)] = 146238, - [SMALL_STATE(2927)] = 146317, - [SMALL_STATE(2928)] = 146366, - [SMALL_STATE(2929)] = 146461, - [SMALL_STATE(2930)] = 146556, - [SMALL_STATE(2931)] = 146631, - [SMALL_STATE(2932)] = 146730, - [SMALL_STATE(2933)] = 146797, - [SMALL_STATE(2934)] = 146864, - [SMALL_STATE(2935)] = 146915, - [SMALL_STATE(2936)] = 147010, - [SMALL_STATE(2937)] = 147091, - [SMALL_STATE(2938)] = 147186, - [SMALL_STATE(2939)] = 147251, - [SMALL_STATE(2940)] = 147300, - [SMALL_STATE(2941)] = 147355, - [SMALL_STATE(2942)] = 147440, - [SMALL_STATE(2943)] = 147489, - [SMALL_STATE(2944)] = 147562, - [SMALL_STATE(2945)] = 147611, - [SMALL_STATE(2946)] = 147660, - [SMALL_STATE(2947)] = 147727, - [SMALL_STATE(2948)] = 147816, - [SMALL_STATE(2949)] = 147867, - [SMALL_STATE(2950)] = 147922, - [SMALL_STATE(2951)] = 148017, - [SMALL_STATE(2952)] = 148112, - [SMALL_STATE(2953)] = 148207, - [SMALL_STATE(2954)] = 148302, - [SMALL_STATE(2955)] = 148397, - [SMALL_STATE(2956)] = 148492, - [SMALL_STATE(2957)] = 148591, - [SMALL_STATE(2958)] = 148686, - [SMALL_STATE(2959)] = 148781, - [SMALL_STATE(2960)] = 148878, - [SMALL_STATE(2961)] = 148973, - [SMALL_STATE(2962)] = 149068, - [SMALL_STATE(2963)] = 149165, - [SMALL_STATE(2964)] = 149262, - [SMALL_STATE(2965)] = 149357, - [SMALL_STATE(2966)] = 149406, - [SMALL_STATE(2967)] = 149501, - [SMALL_STATE(2968)] = 149596, - [SMALL_STATE(2969)] = 149645, - [SMALL_STATE(2970)] = 149740, - [SMALL_STATE(2971)] = 149797, - [SMALL_STATE(2972)] = 149846, - [SMALL_STATE(2973)] = 149941, - [SMALL_STATE(2974)] = 150010, - [SMALL_STATE(2975)] = 150059, - [SMALL_STATE(2976)] = 150108, - [SMALL_STATE(2977)] = 150157, - [SMALL_STATE(2978)] = 150232, - [SMALL_STATE(2979)] = 150313, - [SMALL_STATE(2980)] = 150398, - [SMALL_STATE(2981)] = 150471, - [SMALL_STATE(2982)] = 150560, - [SMALL_STATE(2983)] = 150655, - [SMALL_STATE(2984)] = 150704, - [SMALL_STATE(2985)] = 150799, - [SMALL_STATE(2986)] = 150848, - [SMALL_STATE(2987)] = 150897, - [SMALL_STATE(2988)] = 150948, - [SMALL_STATE(2989)] = 151043, - [SMALL_STATE(2990)] = 151092, - [SMALL_STATE(2991)] = 151141, - [SMALL_STATE(2992)] = 151236, - [SMALL_STATE(2993)] = 151331, - [SMALL_STATE(2994)] = 151380, - [SMALL_STATE(2995)] = 151475, - [SMALL_STATE(2996)] = 151524, - [SMALL_STATE(2997)] = 151573, - [SMALL_STATE(2998)] = 151622, - [SMALL_STATE(2999)] = 151687, - [SMALL_STATE(3000)] = 151750, - [SMALL_STATE(3001)] = 151847, - [SMALL_STATE(3002)] = 151946, - [SMALL_STATE(3003)] = 152043, - [SMALL_STATE(3004)] = 152110, - [SMALL_STATE(3005)] = 152205, - [SMALL_STATE(3006)] = 152272, - [SMALL_STATE(3007)] = 152369, - [SMALL_STATE(3008)] = 152426, - [SMALL_STATE(3009)] = 152475, - [SMALL_STATE(3010)] = 152526, - [SMALL_STATE(3011)] = 152579, - [SMALL_STATE(3012)] = 152629, - [SMALL_STATE(3013)] = 152683, - [SMALL_STATE(3014)] = 152779, - [SMALL_STATE(3015)] = 152833, - [SMALL_STATE(3016)] = 152927, - [SMALL_STATE(3017)] = 152999, - [SMALL_STATE(3018)] = 153085, - [SMALL_STATE(3019)] = 153139, - [SMALL_STATE(3020)] = 153233, - [SMALL_STATE(3021)] = 153319, - [SMALL_STATE(3022)] = 153393, - [SMALL_STATE(3023)] = 153487, - [SMALL_STATE(3024)] = 153561, - [SMALL_STATE(3025)] = 153635, - [SMALL_STATE(3026)] = 153711, - [SMALL_STATE(3027)] = 153783, - [SMALL_STATE(3028)] = 153863, - [SMALL_STATE(3029)] = 153947, - [SMALL_STATE(3030)] = 154019, - [SMALL_STATE(3031)] = 154085, - [SMALL_STATE(3032)] = 154173, - [SMALL_STATE(3033)] = 154249, - [SMALL_STATE(3034)] = 154343, - [SMALL_STATE(3035)] = 154437, - [SMALL_STATE(3036)] = 154503, - [SMALL_STATE(3037)] = 154561, - [SMALL_STATE(3038)] = 154629, - [SMALL_STATE(3039)] = 154679, - [SMALL_STATE(3040)] = 154773, - [SMALL_STATE(3041)] = 154823, - [SMALL_STATE(3042)] = 154873, - [SMALL_STATE(3043)] = 154967, - [SMALL_STATE(3044)] = 155053, - [SMALL_STATE(3045)] = 155109, - [SMALL_STATE(3046)] = 155195, - [SMALL_STATE(3047)] = 155289, - [SMALL_STATE(3048)] = 155383, - [SMALL_STATE(3049)] = 155455, - [SMALL_STATE(3050)] = 155543, - [SMALL_STATE(3051)] = 155637, - [SMALL_STATE(3052)] = 155691, - [SMALL_STATE(3053)] = 155777, - [SMALL_STATE(3054)] = 155829, - [SMALL_STATE(3055)] = 155901, - [SMALL_STATE(3056)] = 155977, - [SMALL_STATE(3057)] = 156071, - [SMALL_STATE(3058)] = 156145, - [SMALL_STATE(3059)] = 156211, - [SMALL_STATE(3060)] = 156283, - [SMALL_STATE(3061)] = 156377, - [SMALL_STATE(3062)] = 156471, - [SMALL_STATE(3063)] = 156521, - [SMALL_STATE(3064)] = 156575, - [SMALL_STATE(3065)] = 156627, - [SMALL_STATE(3066)] = 156679, - [SMALL_STATE(3067)] = 156729, - [SMALL_STATE(3068)] = 156823, - [SMALL_STATE(3069)] = 156909, - [SMALL_STATE(3070)] = 156985, - [SMALL_STATE(3071)] = 157071, - [SMALL_STATE(3072)] = 157121, - [SMALL_STATE(3073)] = 157207, - [SMALL_STATE(3074)] = 157259, - [SMALL_STATE(3075)] = 157311, - [SMALL_STATE(3076)] = 157405, - [SMALL_STATE(3077)] = 157499, - [SMALL_STATE(3078)] = 157583, - [SMALL_STATE(3079)] = 157677, - [SMALL_STATE(3080)] = 157771, - [SMALL_STATE(3081)] = 157825, - [SMALL_STATE(3082)] = 157877, - [SMALL_STATE(3083)] = 157957, - [SMALL_STATE(3084)] = 158051, - [SMALL_STATE(3085)] = 158101, - [SMALL_STATE(3086)] = 158175, - [SMALL_STATE(3087)] = 158253, - [SMALL_STATE(3088)] = 158303, - [SMALL_STATE(3089)] = 158397, - [SMALL_STATE(3090)] = 158491, - [SMALL_STATE(3091)] = 158559, - [SMALL_STATE(3092)] = 158655, - [SMALL_STATE(3093)] = 158707, - [SMALL_STATE(3094)] = 158801, - [SMALL_STATE(3095)] = 158895, - [SMALL_STATE(3096)] = 158991, - [SMALL_STATE(3097)] = 159063, - [SMALL_STATE(3098)] = 159139, - [SMALL_STATE(3099)] = 159197, - [SMALL_STATE(3100)] = 159247, - [SMALL_STATE(3101)] = 159321, - [SMALL_STATE(3102)] = 159393, - [SMALL_STATE(3103)] = 159445, - [SMALL_STATE(3104)] = 159519, - [SMALL_STATE(3105)] = 159595, - [SMALL_STATE(3106)] = 159657, - [SMALL_STATE(3107)] = 159731, - [SMALL_STATE(3108)] = 159825, - [SMALL_STATE(3109)] = 159875, - [SMALL_STATE(3110)] = 159971, - [SMALL_STATE(3111)] = 160067, - [SMALL_STATE(3112)] = 160161, - [SMALL_STATE(3113)] = 160255, - [SMALL_STATE(3114)] = 160329, - [SMALL_STATE(3115)] = 160405, - [SMALL_STATE(3116)] = 160477, - [SMALL_STATE(3117)] = 160527, - [SMALL_STATE(3118)] = 160621, - [SMALL_STATE(3119)] = 160715, - [SMALL_STATE(3120)] = 160771, - [SMALL_STATE(3121)] = 160827, - [SMALL_STATE(3122)] = 160883, - [SMALL_STATE(3123)] = 160941, - [SMALL_STATE(3124)] = 160991, - [SMALL_STATE(3125)] = 161041, - [SMALL_STATE(3126)] = 161091, - [SMALL_STATE(3127)] = 161185, - [SMALL_STATE(3128)] = 161235, - [SMALL_STATE(3129)] = 161329, - [SMALL_STATE(3130)] = 161423, - [SMALL_STATE(3131)] = 161517, - [SMALL_STATE(3132)] = 161571, - [SMALL_STATE(3133)] = 161625, - [SMALL_STATE(3134)] = 161675, - [SMALL_STATE(3135)] = 161771, - [SMALL_STATE(3136)] = 161867, - [SMALL_STATE(3137)] = 161961, - [SMALL_STATE(3138)] = 162015, - [SMALL_STATE(3139)] = 162065, - [SMALL_STATE(3140)] = 162161, - [SMALL_STATE(3141)] = 162257, - [SMALL_STATE(3142)] = 162353, - [SMALL_STATE(3143)] = 162449, - [SMALL_STATE(3144)] = 162499, - [SMALL_STATE(3145)] = 162595, - [SMALL_STATE(3146)] = 162647, - [SMALL_STATE(3147)] = 162699, - [SMALL_STATE(3148)] = 162795, - [SMALL_STATE(3149)] = 162845, - [SMALL_STATE(3150)] = 162939, - [SMALL_STATE(3151)] = 163025, - [SMALL_STATE(3152)] = 163087, - [SMALL_STATE(3153)] = 163149, - [SMALL_STATE(3154)] = 163199, - [SMALL_STATE(3155)] = 163285, - [SMALL_STATE(3156)] = 163379, - [SMALL_STATE(3157)] = 163433, - [SMALL_STATE(3158)] = 163519, - [SMALL_STATE(3159)] = 163605, - [SMALL_STATE(3160)] = 163683, - [SMALL_STATE(3161)] = 163777, - [SMALL_STATE(3162)] = 163843, - [SMALL_STATE(3163)] = 163893, - [SMALL_STATE(3164)] = 163943, - [SMALL_STATE(3165)] = 164009, - [SMALL_STATE(3166)] = 164059, - [SMALL_STATE(3167)] = 164145, - [SMALL_STATE(3168)] = 164219, - [SMALL_STATE(3169)] = 164275, - [SMALL_STATE(3170)] = 164341, - [SMALL_STATE(3171)] = 164435, - [SMALL_STATE(3172)] = 164529, - [SMALL_STATE(3173)] = 164605, - [SMALL_STATE(3174)] = 164677, - [SMALL_STATE(3175)] = 164771, - [SMALL_STATE(3176)] = 164839, - [SMALL_STATE(3177)] = 164893, - [SMALL_STATE(3178)] = 164953, - [SMALL_STATE(3179)] = 165005, - [SMALL_STATE(3180)] = 165057, - [SMALL_STATE(3181)] = 165117, - [SMALL_STATE(3182)] = 165167, - [SMALL_STATE(3183)] = 165221, - [SMALL_STATE(3184)] = 165273, - [SMALL_STATE(3185)] = 165367, - [SMALL_STATE(3186)] = 165419, - [SMALL_STATE(3187)] = 165471, - [SMALL_STATE(3188)] = 165525, - [SMALL_STATE(3189)] = 165619, - [SMALL_STATE(3190)] = 165671, - [SMALL_STATE(3191)] = 165767, - [SMALL_STATE(3192)] = 165861, - [SMALL_STATE(3193)] = 165925, - [SMALL_STATE(3194)] = 165975, - [SMALL_STATE(3195)] = 166025, - [SMALL_STATE(3196)] = 166075, - [SMALL_STATE(3197)] = 166171, - [SMALL_STATE(3198)] = 166227, - [SMALL_STATE(3199)] = 166277, - [SMALL_STATE(3200)] = 166373, - [SMALL_STATE(3201)] = 166459, - [SMALL_STATE(3202)] = 166513, - [SMALL_STATE(3203)] = 166569, - [SMALL_STATE(3204)] = 166647, - [SMALL_STATE(3205)] = 166701, - [SMALL_STATE(3206)] = 166797, - [SMALL_STATE(3207)] = 166849, - [SMALL_STATE(3208)] = 166899, - [SMALL_STATE(3209)] = 166953, - [SMALL_STATE(3210)] = 167003, - [SMALL_STATE(3211)] = 167055, - [SMALL_STATE(3212)] = 167105, - [SMALL_STATE(3213)] = 167169, - [SMALL_STATE(3214)] = 167255, - [SMALL_STATE(3215)] = 167305, - [SMALL_STATE(3216)] = 167377, - [SMALL_STATE(3217)] = 167453, - [SMALL_STATE(3218)] = 167527, - [SMALL_STATE(3219)] = 167621, - [SMALL_STATE(3220)] = 167687, - [SMALL_STATE(3221)] = 167741, - [SMALL_STATE(3222)] = 167791, - [SMALL_STATE(3223)] = 167857, - [SMALL_STATE(3224)] = 167909, - [SMALL_STATE(3225)] = 167963, - [SMALL_STATE(3226)] = 168013, - [SMALL_STATE(3227)] = 168063, - [SMALL_STATE(3228)] = 168157, - [SMALL_STATE(3229)] = 168221, - [SMALL_STATE(3230)] = 168271, - [SMALL_STATE(3231)] = 168321, - [SMALL_STATE(3232)] = 168373, - [SMALL_STATE(3233)] = 168439, - [SMALL_STATE(3234)] = 168491, - [SMALL_STATE(3235)] = 168557, - [SMALL_STATE(3236)] = 168613, - [SMALL_STATE(3237)] = 168669, - [SMALL_STATE(3238)] = 168723, - [SMALL_STATE(3239)] = 168777, - [SMALL_STATE(3240)] = 168831, - [SMALL_STATE(3241)] = 168915, - [SMALL_STATE(3242)] = 169009, - [SMALL_STATE(3243)] = 169059, - [SMALL_STATE(3244)] = 169139, - [SMALL_STATE(3245)] = 169211, - [SMALL_STATE(3246)] = 169267, - [SMALL_STATE(3247)] = 169323, - [SMALL_STATE(3248)] = 169377, - [SMALL_STATE(3249)] = 169465, - [SMALL_STATE(3250)] = 169539, - [SMALL_STATE(3251)] = 169618, - [SMALL_STATE(3252)] = 169667, - [SMALL_STATE(3253)] = 169722, - [SMALL_STATE(3254)] = 169775, - [SMALL_STATE(3255)] = 169822, - [SMALL_STATE(3256)] = 169915, - [SMALL_STATE(3257)] = 169982, - [SMALL_STATE(3258)] = 170075, - [SMALL_STATE(3259)] = 170168, - [SMALL_STATE(3260)] = 170237, - [SMALL_STATE(3261)] = 170290, - [SMALL_STATE(3262)] = 170341, - [SMALL_STATE(3263)] = 170392, - [SMALL_STATE(3264)] = 170465, - [SMALL_STATE(3265)] = 170512, - [SMALL_STATE(3266)] = 170559, - [SMALL_STATE(3267)] = 170612, - [SMALL_STATE(3268)] = 170665, - [SMALL_STATE(3269)] = 170712, - [SMALL_STATE(3270)] = 170765, - [SMALL_STATE(3271)] = 170818, - [SMALL_STATE(3272)] = 170871, - [SMALL_STATE(3273)] = 170942, - [SMALL_STATE(3274)] = 170995, - [SMALL_STATE(3275)] = 171062, - [SMALL_STATE(3276)] = 171109, - [SMALL_STATE(3277)] = 171162, - [SMALL_STATE(3278)] = 171211, - [SMALL_STATE(3279)] = 171264, - [SMALL_STATE(3280)] = 171319, - [SMALL_STATE(3281)] = 171368, - [SMALL_STATE(3282)] = 171415, - [SMALL_STATE(3283)] = 171468, - [SMALL_STATE(3284)] = 171515, - [SMALL_STATE(3285)] = 171572, - [SMALL_STATE(3286)] = 171629, - [SMALL_STATE(3287)] = 171722, - [SMALL_STATE(3288)] = 171815, - [SMALL_STATE(3289)] = 171862, - [SMALL_STATE(3290)] = 171915, - [SMALL_STATE(3291)] = 171970, - [SMALL_STATE(3292)] = 172063, - [SMALL_STATE(3293)] = 172156, - [SMALL_STATE(3294)] = 172205, - [SMALL_STATE(3295)] = 172298, - [SMALL_STATE(3296)] = 172345, - [SMALL_STATE(3297)] = 172392, - [SMALL_STATE(3298)] = 172445, - [SMALL_STATE(3299)] = 172498, - [SMALL_STATE(3300)] = 172551, - [SMALL_STATE(3301)] = 172618, - [SMALL_STATE(3302)] = 172673, - [SMALL_STATE(3303)] = 172726, - [SMALL_STATE(3304)] = 172773, - [SMALL_STATE(3305)] = 172820, - [SMALL_STATE(3306)] = 172871, - [SMALL_STATE(3307)] = 172924, - [SMALL_STATE(3308)] = 172977, - [SMALL_STATE(3309)] = 173030, - [SMALL_STATE(3310)] = 173123, - [SMALL_STATE(3311)] = 173216, - [SMALL_STATE(3312)] = 173271, - [SMALL_STATE(3313)] = 173320, - [SMALL_STATE(3314)] = 173385, - [SMALL_STATE(3315)] = 173438, - [SMALL_STATE(3316)] = 173503, - [SMALL_STATE(3317)] = 173596, - [SMALL_STATE(3318)] = 173689, - [SMALL_STATE(3319)] = 173782, - [SMALL_STATE(3320)] = 173835, - [SMALL_STATE(3321)] = 173886, - [SMALL_STATE(3322)] = 173933, - [SMALL_STATE(3323)] = 174000, - [SMALL_STATE(3324)] = 174067, - [SMALL_STATE(3325)] = 174120, - [SMALL_STATE(3326)] = 174183, - [SMALL_STATE(3327)] = 174250, - [SMALL_STATE(3328)] = 174303, - [SMALL_STATE(3329)] = 174350, - [SMALL_STATE(3330)] = 174417, - [SMALL_STATE(3331)] = 174470, - [SMALL_STATE(3332)] = 174563, - [SMALL_STATE(3333)] = 174610, - [SMALL_STATE(3334)] = 174657, - [SMALL_STATE(3335)] = 174704, - [SMALL_STATE(3336)] = 174771, - [SMALL_STATE(3337)] = 174820, - [SMALL_STATE(3338)] = 174873, - [SMALL_STATE(3339)] = 174920, - [SMALL_STATE(3340)] = 174967, - [SMALL_STATE(3341)] = 175030, - [SMALL_STATE(3342)] = 175123, - [SMALL_STATE(3343)] = 175176, - [SMALL_STATE(3344)] = 175269, - [SMALL_STATE(3345)] = 175334, - [SMALL_STATE(3346)] = 175399, - [SMALL_STATE(3347)] = 175448, - [SMALL_STATE(3348)] = 175499, - [SMALL_STATE(3349)] = 175552, - [SMALL_STATE(3350)] = 175605, - [SMALL_STATE(3351)] = 175656, - [SMALL_STATE(3352)] = 175703, - [SMALL_STATE(3353)] = 175750, - [SMALL_STATE(3354)] = 175797, - [SMALL_STATE(3355)] = 175890, - [SMALL_STATE(3356)] = 175983, - [SMALL_STATE(3357)] = 176030, - [SMALL_STATE(3358)] = 176083, - [SMALL_STATE(3359)] = 176176, - [SMALL_STATE(3360)] = 176223, - [SMALL_STATE(3361)] = 176272, - [SMALL_STATE(3362)] = 176319, - [SMALL_STATE(3363)] = 176368, - [SMALL_STATE(3364)] = 176417, - [SMALL_STATE(3365)] = 176464, - [SMALL_STATE(3366)] = 176511, - [SMALL_STATE(3367)] = 176558, - [SMALL_STATE(3368)] = 176607, - [SMALL_STATE(3369)] = 176654, - [SMALL_STATE(3370)] = 176701, - [SMALL_STATE(3371)] = 176748, - [SMALL_STATE(3372)] = 176795, - [SMALL_STATE(3373)] = 176844, - [SMALL_STATE(3374)] = 176891, - [SMALL_STATE(3375)] = 176984, - [SMALL_STATE(3376)] = 177031, - [SMALL_STATE(3377)] = 177078, - [SMALL_STATE(3378)] = 177135, - [SMALL_STATE(3379)] = 177228, - [SMALL_STATE(3380)] = 177321, - [SMALL_STATE(3381)] = 177368, - [SMALL_STATE(3382)] = 177415, - [SMALL_STATE(3383)] = 177464, - [SMALL_STATE(3384)] = 177511, - [SMALL_STATE(3385)] = 177598, - [SMALL_STATE(3386)] = 177645, - [SMALL_STATE(3387)] = 177692, - [SMALL_STATE(3388)] = 177757, - [SMALL_STATE(3389)] = 177850, - [SMALL_STATE(3390)] = 177921, - [SMALL_STATE(3391)] = 177968, - [SMALL_STATE(3392)] = 178061, - [SMALL_STATE(3393)] = 178108, - [SMALL_STATE(3394)] = 178155, - [SMALL_STATE(3395)] = 178204, - [SMALL_STATE(3396)] = 178251, - [SMALL_STATE(3397)] = 178298, - [SMALL_STATE(3398)] = 178345, - [SMALL_STATE(3399)] = 178394, - [SMALL_STATE(3400)] = 178441, - [SMALL_STATE(3401)] = 178490, - [SMALL_STATE(3402)] = 178537, - [SMALL_STATE(3403)] = 178586, - [SMALL_STATE(3404)] = 178669, - [SMALL_STATE(3405)] = 178716, - [SMALL_STATE(3406)] = 178809, - [SMALL_STATE(3407)] = 178856, - [SMALL_STATE(3408)] = 178903, - [SMALL_STATE(3409)] = 178954, - [SMALL_STATE(3410)] = 179047, - [SMALL_STATE(3411)] = 179140, - [SMALL_STATE(3412)] = 179187, - [SMALL_STATE(3413)] = 179236, - [SMALL_STATE(3414)] = 179283, - [SMALL_STATE(3415)] = 179330, - [SMALL_STATE(3416)] = 179409, - [SMALL_STATE(3417)] = 179456, - [SMALL_STATE(3418)] = 179503, - [SMALL_STATE(3419)] = 179550, - [SMALL_STATE(3420)] = 179623, - [SMALL_STATE(3421)] = 179670, - [SMALL_STATE(3422)] = 179723, - [SMALL_STATE(3423)] = 179816, - [SMALL_STATE(3424)] = 179883, - [SMALL_STATE(3425)] = 179976, - [SMALL_STATE(3426)] = 180069, - [SMALL_STATE(3427)] = 180146, - [SMALL_STATE(3428)] = 180193, - [SMALL_STATE(3429)] = 180240, - [SMALL_STATE(3430)] = 180333, - [SMALL_STATE(3431)] = 180406, - [SMALL_STATE(3432)] = 180453, - [SMALL_STATE(3433)] = 180500, - [SMALL_STATE(3434)] = 180547, - [SMALL_STATE(3435)] = 180594, - [SMALL_STATE(3436)] = 180677, - [SMALL_STATE(3437)] = 180748, - [SMALL_STATE(3438)] = 180801, - [SMALL_STATE(3439)] = 180854, - [SMALL_STATE(3440)] = 180901, - [SMALL_STATE(3441)] = 180948, - [SMALL_STATE(3442)] = 180997, - [SMALL_STATE(3443)] = 181046, - [SMALL_STATE(3444)] = 181093, - [SMALL_STATE(3445)] = 181186, - [SMALL_STATE(3446)] = 181279, - [SMALL_STATE(3447)] = 181332, - [SMALL_STATE(3448)] = 181425, - [SMALL_STATE(3449)] = 181478, - [SMALL_STATE(3450)] = 181525, - [SMALL_STATE(3451)] = 181572, - [SMALL_STATE(3452)] = 181621, - [SMALL_STATE(3453)] = 181714, - [SMALL_STATE(3454)] = 181761, - [SMALL_STATE(3455)] = 181826, - [SMALL_STATE(3456)] = 181873, - [SMALL_STATE(3457)] = 181966, - [SMALL_STATE(3458)] = 182013, - [SMALL_STATE(3459)] = 182062, - [SMALL_STATE(3460)] = 182115, - [SMALL_STATE(3461)] = 182162, - [SMALL_STATE(3462)] = 182239, - [SMALL_STATE(3463)] = 182326, - [SMALL_STATE(3464)] = 182393, - [SMALL_STATE(3465)] = 182486, - [SMALL_STATE(3466)] = 182533, - [SMALL_STATE(3467)] = 182584, - [SMALL_STATE(3468)] = 182631, - [SMALL_STATE(3469)] = 182678, - [SMALL_STATE(3470)] = 182725, - [SMALL_STATE(3471)] = 182818, - [SMALL_STATE(3472)] = 182865, - [SMALL_STATE(3473)] = 182914, - [SMALL_STATE(3474)] = 182961, - [SMALL_STATE(3475)] = 183054, - [SMALL_STATE(3476)] = 183101, - [SMALL_STATE(3477)] = 183194, - [SMALL_STATE(3478)] = 183247, - [SMALL_STATE(3479)] = 183294, - [SMALL_STATE(3480)] = 183341, - [SMALL_STATE(3481)] = 183434, - [SMALL_STATE(3482)] = 183483, - [SMALL_STATE(3483)] = 183536, - [SMALL_STATE(3484)] = 183583, - [SMALL_STATE(3485)] = 183676, - [SMALL_STATE(3486)] = 183769, - [SMALL_STATE(3487)] = 183816, - [SMALL_STATE(3488)] = 183869, - [SMALL_STATE(3489)] = 183922, - [SMALL_STATE(3490)] = 183969, - [SMALL_STATE(3491)] = 184016, - [SMALL_STATE(3492)] = 184063, - [SMALL_STATE(3493)] = 184156, - [SMALL_STATE(3494)] = 184213, - [SMALL_STATE(3495)] = 184260, - [SMALL_STATE(3496)] = 184307, - [SMALL_STATE(3497)] = 184400, - [SMALL_STATE(3498)] = 184447, - [SMALL_STATE(3499)] = 184540, - [SMALL_STATE(3500)] = 184633, - [SMALL_STATE(3501)] = 184726, - [SMALL_STATE(3502)] = 184779, - [SMALL_STATE(3503)] = 184826, - [SMALL_STATE(3504)] = 184873, - [SMALL_STATE(3505)] = 184920, - [SMALL_STATE(3506)] = 184987, - [SMALL_STATE(3507)] = 185039, - [SMALL_STATE(3508)] = 185091, - [SMALL_STATE(3509)] = 185181, - [SMALL_STATE(3510)] = 185271, - [SMALL_STATE(3511)] = 185323, - [SMALL_STATE(3512)] = 185371, - [SMALL_STATE(3513)] = 185423, - [SMALL_STATE(3514)] = 185475, - [SMALL_STATE(3515)] = 185527, - [SMALL_STATE(3516)] = 185575, - [SMALL_STATE(3517)] = 185627, - [SMALL_STATE(3518)] = 185695, - [SMALL_STATE(3519)] = 185743, - [SMALL_STATE(3520)] = 185811, - [SMALL_STATE(3521)] = 185861, - [SMALL_STATE(3522)] = 185913, - [SMALL_STATE(3523)] = 185965, - [SMALL_STATE(3524)] = 186017, - [SMALL_STATE(3525)] = 186083, - [SMALL_STATE(3526)] = 186147, - [SMALL_STATE(3527)] = 186211, - [SMALL_STATE(3528)] = 186259, - [SMALL_STATE(3529)] = 186349, - [SMALL_STATE(3530)] = 186401, - [SMALL_STATE(3531)] = 186469, - [SMALL_STATE(3532)] = 186517, - [SMALL_STATE(3533)] = 186567, - [SMALL_STATE(3534)] = 186615, - [SMALL_STATE(3535)] = 186667, - [SMALL_STATE(3536)] = 186717, - [SMALL_STATE(3537)] = 186769, - [SMALL_STATE(3538)] = 186821, - [SMALL_STATE(3539)] = 186869, - [SMALL_STATE(3540)] = 186933, - [SMALL_STATE(3541)] = 186997, - [SMALL_STATE(3542)] = 187051, - [SMALL_STATE(3543)] = 187101, - [SMALL_STATE(3544)] = 187167, - [SMALL_STATE(3545)] = 187231, - [SMALL_STATE(3546)] = 187283, - [SMALL_STATE(3547)] = 187331, - [SMALL_STATE(3548)] = 187421, - [SMALL_STATE(3549)] = 187473, - [SMALL_STATE(3550)] = 187541, - [SMALL_STATE(3551)] = 187593, - [SMALL_STATE(3552)] = 187659, - [SMALL_STATE(3553)] = 187732, - [SMALL_STATE(3554)] = 187801, - [SMALL_STATE(3555)] = 187858, - [SMALL_STATE(3556)] = 187917, - [SMALL_STATE(3557)] = 187980, - [SMALL_STATE(3558)] = 188051, - [SMALL_STATE(3559)] = 188120, - [SMALL_STATE(3560)] = 188177, - [SMALL_STATE(3561)] = 188234, - [SMALL_STATE(3562)] = 188307, - [SMALL_STATE(3563)] = 188364, - [SMALL_STATE(3564)] = 188411, - [SMALL_STATE(3565)] = 188470, - [SMALL_STATE(3566)] = 188541, - [SMALL_STATE(3567)] = 188612, - [SMALL_STATE(3568)] = 188685, - [SMALL_STATE(3569)] = 188758, - [SMALL_STATE(3570)] = 188829, - [SMALL_STATE(3571)] = 188900, - [SMALL_STATE(3572)] = 188957, - [SMALL_STATE(3573)] = 189014, - [SMALL_STATE(3574)] = 189065, - [SMALL_STATE(3575)] = 189134, - [SMALL_STATE(3576)] = 189207, - [SMALL_STATE(3577)] = 189276, - [SMALL_STATE(3578)] = 189347, - [SMALL_STATE(3579)] = 189420, - [SMALL_STATE(3580)] = 189471, - [SMALL_STATE(3581)] = 189542, - [SMALL_STATE(3582)] = 189601, - [SMALL_STATE(3583)] = 189664, - [SMALL_STATE(3584)] = 189737, - [SMALL_STATE(3585)] = 189786, - [SMALL_STATE(3586)] = 189843, - [SMALL_STATE(3587)] = 189894, - [SMALL_STATE(3588)] = 189953, - [SMALL_STATE(3589)] = 190004, - [SMALL_STATE(3590)] = 190063, - [SMALL_STATE(3591)] = 190136, - [SMALL_STATE(3592)] = 190195, - [SMALL_STATE(3593)] = 190242, - [SMALL_STATE(3594)] = 190301, - [SMALL_STATE(3595)] = 190352, - [SMALL_STATE(3596)] = 190413, - [SMALL_STATE(3597)] = 190472, - [SMALL_STATE(3598)] = 190519, - [SMALL_STATE(3599)] = 190592, - [SMALL_STATE(3600)] = 190653, - [SMALL_STATE(3601)] = 190716, - [SMALL_STATE(3602)] = 190785, - [SMALL_STATE(3603)] = 190858, - [SMALL_STATE(3604)] = 190927, - [SMALL_STATE(3605)] = 190984, - [SMALL_STATE(3606)] = 191043, - [SMALL_STATE(3607)] = 191104, - [SMALL_STATE(3608)] = 191173, - [SMALL_STATE(3609)] = 191246, - [SMALL_STATE(3610)] = 191297, - [SMALL_STATE(3611)] = 191354, - [SMALL_STATE(3612)] = 191425, - [SMALL_STATE(3613)] = 191498, - [SMALL_STATE(3614)] = 191559, - [SMALL_STATE(3615)] = 191632, - [SMALL_STATE(3616)] = 191695, - [SMALL_STATE(3617)] = 191768, - [SMALL_STATE(3618)] = 191839, - [SMALL_STATE(3619)] = 191890, - [SMALL_STATE(3620)] = 191953, - [SMALL_STATE(3621)] = 192026, - [SMALL_STATE(3622)] = 192077, - [SMALL_STATE(3623)] = 192124, - [SMALL_STATE(3624)] = 192175, - [SMALL_STATE(3625)] = 192248, - [SMALL_STATE(3626)] = 192317, - [SMALL_STATE(3627)] = 192386, - [SMALL_STATE(3628)] = 192459, - [SMALL_STATE(3629)] = 192532, - [SMALL_STATE(3630)] = 192583, - [SMALL_STATE(3631)] = 192634, - [SMALL_STATE(3632)] = 192693, - [SMALL_STATE(3633)] = 192740, - [SMALL_STATE(3634)] = 192803, - [SMALL_STATE(3635)] = 192874, - [SMALL_STATE(3636)] = 192943, - [SMALL_STATE(3637)] = 193004, - [SMALL_STATE(3638)] = 193063, - [SMALL_STATE(3639)] = 193132, - [SMALL_STATE(3640)] = 193183, - [SMALL_STATE(3641)] = 193256, - [SMALL_STATE(3642)] = 193315, - [SMALL_STATE(3643)] = 193388, - [SMALL_STATE(3644)] = 193439, - [SMALL_STATE(3645)] = 193488, - [SMALL_STATE(3646)] = 193547, - [SMALL_STATE(3647)] = 193608, - [SMALL_STATE(3648)] = 193679, - [SMALL_STATE(3649)] = 193730, - [SMALL_STATE(3650)] = 193791, - [SMALL_STATE(3651)] = 193855, - [SMALL_STATE(3652)] = 193905, - [SMALL_STATE(3653)] = 193969, - [SMALL_STATE(3654)] = 194039, - [SMALL_STATE(3655)] = 194093, - [SMALL_STATE(3656)] = 194147, - [SMALL_STATE(3657)] = 194201, - [SMALL_STATE(3658)] = 194255, - [SMALL_STATE(3659)] = 194319, - [SMALL_STATE(3660)] = 194373, - [SMALL_STATE(3661)] = 194437, - [SMALL_STATE(3662)] = 194501, - [SMALL_STATE(3663)] = 194555, - [SMALL_STATE(3664)] = 194609, - [SMALL_STATE(3665)] = 194663, - [SMALL_STATE(3666)] = 194717, - [SMALL_STATE(3667)] = 194781, - [SMALL_STATE(3668)] = 194835, - [SMALL_STATE(3669)] = 194899, - [SMALL_STATE(3670)] = 194963, - [SMALL_STATE(3671)] = 195017, - [SMALL_STATE(3672)] = 195071, - [SMALL_STATE(3673)] = 195125, - [SMALL_STATE(3674)] = 195189, - [SMALL_STATE(3675)] = 195243, - [SMALL_STATE(3676)] = 195297, - [SMALL_STATE(3677)] = 195351, - [SMALL_STATE(3678)] = 195415, - [SMALL_STATE(3679)] = 195479, - [SMALL_STATE(3680)] = 195550, - [SMALL_STATE(3681)] = 195593, - [SMALL_STATE(3682)] = 195658, - [SMALL_STATE(3683)] = 195707, - [SMALL_STATE(3684)] = 195762, - [SMALL_STATE(3685)] = 195823, - [SMALL_STATE(3686)] = 195872, - [SMALL_STATE(3687)] = 195935, - [SMALL_STATE(3688)] = 195990, - [SMALL_STATE(3689)] = 196044, - [SMALL_STATE(3690)] = 196100, - [SMALL_STATE(3691)] = 196152, - [SMALL_STATE(3692)] = 196206, - [SMALL_STATE(3693)] = 196260, - [SMALL_STATE(3694)] = 196314, - [SMALL_STATE(3695)] = 196368, - [SMALL_STATE(3696)] = 196422, - [SMALL_STATE(3697)] = 196476, - [SMALL_STATE(3698)] = 196530, - [SMALL_STATE(3699)] = 196584, - [SMALL_STATE(3700)] = 196638, - [SMALL_STATE(3701)] = 196692, - [SMALL_STATE(3702)] = 196746, - [SMALL_STATE(3703)] = 196806, - [SMALL_STATE(3704)] = 196868, - [SMALL_STATE(3705)] = 196926, - [SMALL_STATE(3706)] = 196980, - [SMALL_STATE(3707)] = 197035, - [SMALL_STATE(3708)] = 197090, - [SMALL_STATE(3709)] = 197169, - [SMALL_STATE(3710)] = 197210, - [SMALL_STATE(3711)] = 197289, - [SMALL_STATE(3712)] = 197368, - [SMALL_STATE(3713)] = 197421, - [SMALL_STATE(3714)] = 197476, - [SMALL_STATE(3715)] = 197517, - [SMALL_STATE(3716)] = 197572, - [SMALL_STATE(3717)] = 197613, - [SMALL_STATE(3718)] = 197654, - [SMALL_STATE(3719)] = 197733, - [SMALL_STATE(3720)] = 197774, - [SMALL_STATE(3721)] = 197853, - [SMALL_STATE(3722)] = 197920, - [SMALL_STATE(3723)] = 197984, - [SMALL_STATE(3724)] = 198030, - [SMALL_STATE(3725)] = 198085, - [SMALL_STATE(3726)] = 198126, - [SMALL_STATE(3727)] = 198183, - [SMALL_STATE(3728)] = 198236, - [SMALL_STATE(3729)] = 198275, - [SMALL_STATE(3730)] = 198330, - [SMALL_STATE(3731)] = 198383, - [SMALL_STATE(3732)] = 198440, - [SMALL_STATE(3733)] = 198481, - [SMALL_STATE(3734)] = 198520, - [SMALL_STATE(3735)] = 198561, - [SMALL_STATE(3736)] = 198600, - [SMALL_STATE(3737)] = 198643, - [SMALL_STATE(3738)] = 198682, - [SMALL_STATE(3739)] = 198721, - [SMALL_STATE(3740)] = 198760, - [SMALL_STATE(3741)] = 198799, - [SMALL_STATE(3742)] = 198838, - [SMALL_STATE(3743)] = 198877, - [SMALL_STATE(3744)] = 198928, - [SMALL_STATE(3745)] = 198967, - [SMALL_STATE(3746)] = 199006, - [SMALL_STATE(3747)] = 199045, - [SMALL_STATE(3748)] = 199098, - [SMALL_STATE(3749)] = 199137, - [SMALL_STATE(3750)] = 199176, - [SMALL_STATE(3751)] = 199233, - [SMALL_STATE(3752)] = 199272, - [SMALL_STATE(3753)] = 199311, - [SMALL_STATE(3754)] = 199350, - [SMALL_STATE(3755)] = 199389, - [SMALL_STATE(3756)] = 199428, - [SMALL_STATE(3757)] = 199467, - [SMALL_STATE(3758)] = 199515, - [SMALL_STATE(3759)] = 199569, - [SMALL_STATE(3760)] = 199623, - [SMALL_STATE(3761)] = 199671, - [SMALL_STATE(3762)] = 199719, - [SMALL_STATE(3763)] = 199767, - [SMALL_STATE(3764)] = 199819, - [SMALL_STATE(3765)] = 199867, - [SMALL_STATE(3766)] = 199915, - [SMALL_STATE(3767)] = 199963, - [SMALL_STATE(3768)] = 200011, - [SMALL_STATE(3769)] = 200059, - [SMALL_STATE(3770)] = 200107, - [SMALL_STATE(3771)] = 200155, - [SMALL_STATE(3772)] = 200203, - [SMALL_STATE(3773)] = 200251, - [SMALL_STATE(3774)] = 200299, - [SMALL_STATE(3775)] = 200347, - [SMALL_STATE(3776)] = 200395, - [SMALL_STATE(3777)] = 200444, - [SMALL_STATE(3778)] = 200493, - [SMALL_STATE(3779)] = 200542, - [SMALL_STATE(3780)] = 200579, - [SMALL_STATE(3781)] = 200628, - [SMALL_STATE(3782)] = 200677, - [SMALL_STATE(3783)] = 200734, - [SMALL_STATE(3784)] = 200783, - [SMALL_STATE(3785)] = 200837, - [SMALL_STATE(3786)] = 200887, - [SMALL_STATE(3787)] = 200933, - [SMALL_STATE(3788)] = 200971, - [SMALL_STATE(3789)] = 201021, - [SMALL_STATE(3790)] = 201075, - [SMALL_STATE(3791)] = 201117, - [SMALL_STATE(3792)] = 201167, - [SMALL_STATE(3793)] = 201217, - [SMALL_STATE(3794)] = 201267, - [SMALL_STATE(3795)] = 201321, - [SMALL_STATE(3796)] = 201364, - [SMALL_STATE(3797)] = 201407, - [SMALL_STATE(3798)] = 201450, - [SMALL_STATE(3799)] = 201493, - [SMALL_STATE(3800)] = 201536, - [SMALL_STATE(3801)] = 201579, - [SMALL_STATE(3802)] = 201622, - [SMALL_STATE(3803)] = 201665, - [SMALL_STATE(3804)] = 201708, - [SMALL_STATE(3805)] = 201751, - [SMALL_STATE(3806)] = 201796, - [SMALL_STATE(3807)] = 201839, - [SMALL_STATE(3808)] = 201882, - [SMALL_STATE(3809)] = 201925, - [SMALL_STATE(3810)] = 201968, - [SMALL_STATE(3811)] = 202011, - [SMALL_STATE(3812)] = 202054, - [SMALL_STATE(3813)] = 202097, - [SMALL_STATE(3814)] = 202140, - [SMALL_STATE(3815)] = 202183, - [SMALL_STATE(3816)] = 202226, - [SMALL_STATE(3817)] = 202269, - [SMALL_STATE(3818)] = 202312, - [SMALL_STATE(3819)] = 202357, - [SMALL_STATE(3820)] = 202402, - [SMALL_STATE(3821)] = 202445, - [SMALL_STATE(3822)] = 202488, - [SMALL_STATE(3823)] = 202531, - [SMALL_STATE(3824)] = 202565, - [SMALL_STATE(3825)] = 202595, - [SMALL_STATE(3826)] = 202625, - [SMALL_STATE(3827)] = 202651, - [SMALL_STATE(3828)] = 202675, - [SMALL_STATE(3829)] = 202699, - [SMALL_STATE(3830)] = 202720, - [SMALL_STATE(3831)] = 202741, - [SMALL_STATE(3832)] = 202762, - [SMALL_STATE(3833)] = 202783, - [SMALL_STATE(3834)] = 202804, - [SMALL_STATE(3835)] = 202825, - [SMALL_STATE(3836)] = 202846, - [SMALL_STATE(3837)] = 202867, - [SMALL_STATE(3838)] = 202888, - [SMALL_STATE(3839)] = 202909, - [SMALL_STATE(3840)] = 202930, - [SMALL_STATE(3841)] = 202957, - [SMALL_STATE(3842)] = 202978, - [SMALL_STATE(3843)] = 202999, - [SMALL_STATE(3844)] = 203020, - [SMALL_STATE(3845)] = 203041, - [SMALL_STATE(3846)] = 203062, - [SMALL_STATE(3847)] = 203083, - [SMALL_STATE(3848)] = 203104, - [SMALL_STATE(3849)] = 203125, - [SMALL_STATE(3850)] = 203146, - [SMALL_STATE(3851)] = 203188, - [SMALL_STATE(3852)] = 203230, - [SMALL_STATE(3853)] = 203260, - [SMALL_STATE(3854)] = 203282, - [SMALL_STATE(3855)] = 203324, - [SMALL_STATE(3856)] = 203366, - [SMALL_STATE(3857)] = 203394, - [SMALL_STATE(3858)] = 203436, - [SMALL_STATE(3859)] = 203478, - [SMALL_STATE(3860)] = 203500, - [SMALL_STATE(3861)] = 203523, - [SMALL_STATE(3862)] = 203544, - [SMALL_STATE(3863)] = 203565, - [SMALL_STATE(3864)] = 203600, - [SMALL_STATE(3865)] = 203621, - [SMALL_STATE(3866)] = 203642, - [SMALL_STATE(3867)] = 203663, - [SMALL_STATE(3868)] = 203684, - [SMALL_STATE(3869)] = 203705, - [SMALL_STATE(3870)] = 203726, - [SMALL_STATE(3871)] = 203747, - [SMALL_STATE(3872)] = 203768, - [SMALL_STATE(3873)] = 203789, - [SMALL_STATE(3874)] = 203810, - [SMALL_STATE(3875)] = 203845, - [SMALL_STATE(3876)] = 203880, - [SMALL_STATE(3877)] = 203915, - [SMALL_STATE(3878)] = 203936, - [SMALL_STATE(3879)] = 203971, - [SMALL_STATE(3880)] = 203992, - [SMALL_STATE(3881)] = 204013, - [SMALL_STATE(3882)] = 204034, - [SMALL_STATE(3883)] = 204069, - [SMALL_STATE(3884)] = 204094, - [SMALL_STATE(3885)] = 204115, - [SMALL_STATE(3886)] = 204150, - [SMALL_STATE(3887)] = 204173, - [SMALL_STATE(3888)] = 204208, - [SMALL_STATE(3889)] = 204229, - [SMALL_STATE(3890)] = 204250, - [SMALL_STATE(3891)] = 204275, - [SMALL_STATE(3892)] = 204310, - [SMALL_STATE(3893)] = 204347, - [SMALL_STATE(3894)] = 204368, - [SMALL_STATE(3895)] = 204403, - [SMALL_STATE(3896)] = 204426, - [SMALL_STATE(3897)] = 204447, - [SMALL_STATE(3898)] = 204477, - [SMALL_STATE(3899)] = 204509, - [SMALL_STATE(3900)] = 204541, - [SMALL_STATE(3901)] = 204567, - [SMALL_STATE(3902)] = 204599, - [SMALL_STATE(3903)] = 204627, - [SMALL_STATE(3904)] = 204653, - [SMALL_STATE(3905)] = 204681, - [SMALL_STATE(3906)] = 204713, - [SMALL_STATE(3907)] = 204745, - [SMALL_STATE(3908)] = 204781, - [SMALL_STATE(3909)] = 204817, - [SMALL_STATE(3910)] = 204849, - [SMALL_STATE(3911)] = 204877, - [SMALL_STATE(3912)] = 204905, - [SMALL_STATE(3913)] = 204933, - [SMALL_STATE(3914)] = 204969, - [SMALL_STATE(3915)] = 204997, - [SMALL_STATE(3916)] = 205025, - [SMALL_STATE(3917)] = 205061, - [SMALL_STATE(3918)] = 205089, - [SMALL_STATE(3919)] = 205121, - [SMALL_STATE(3920)] = 205153, - [SMALL_STATE(3921)] = 205181, - [SMALL_STATE(3922)] = 205217, - [SMALL_STATE(3923)] = 205245, - [SMALL_STATE(3924)] = 205273, - [SMALL_STATE(3925)] = 205309, - [SMALL_STATE(3926)] = 205330, - [SMALL_STATE(3927)] = 205349, - [SMALL_STATE(3928)] = 205368, - [SMALL_STATE(3929)] = 205385, - [SMALL_STATE(3930)] = 205404, - [SMALL_STATE(3931)] = 205423, - [SMALL_STATE(3932)] = 205442, - [SMALL_STATE(3933)] = 205461, - [SMALL_STATE(3934)] = 205480, - [SMALL_STATE(3935)] = 205499, - [SMALL_STATE(3936)] = 205520, - [SMALL_STATE(3937)] = 205539, - [SMALL_STATE(3938)] = 205558, - [SMALL_STATE(3939)] = 205577, - [SMALL_STATE(3940)] = 205596, - [SMALL_STATE(3941)] = 205615, - [SMALL_STATE(3942)] = 205634, - [SMALL_STATE(3943)] = 205653, - [SMALL_STATE(3944)] = 205678, - [SMALL_STATE(3945)] = 205697, - [SMALL_STATE(3946)] = 205716, - [SMALL_STATE(3947)] = 205735, - [SMALL_STATE(3948)] = 205754, - [SMALL_STATE(3949)] = 205773, - [SMALL_STATE(3950)] = 205792, - [SMALL_STATE(3951)] = 205811, - [SMALL_STATE(3952)] = 205838, - [SMALL_STATE(3953)] = 205857, - [SMALL_STATE(3954)] = 205876, - [SMALL_STATE(3955)] = 205897, - [SMALL_STATE(3956)] = 205914, - [SMALL_STATE(3957)] = 205933, - [SMALL_STATE(3958)] = 205958, - [SMALL_STATE(3959)] = 205981, - [SMALL_STATE(3960)] = 206000, - [SMALL_STATE(3961)] = 206025, - [SMALL_STATE(3962)] = 206050, - [SMALL_STATE(3963)] = 206075, - [SMALL_STATE(3964)] = 206094, - [SMALL_STATE(3965)] = 206113, - [SMALL_STATE(3966)] = 206132, - [SMALL_STATE(3967)] = 206155, - [SMALL_STATE(3968)] = 206174, - [SMALL_STATE(3969)] = 206193, - [SMALL_STATE(3970)] = 206218, - [SMALL_STATE(3971)] = 206248, - [SMALL_STATE(3972)] = 206268, - [SMALL_STATE(3973)] = 206288, - [SMALL_STATE(3974)] = 206312, - [SMALL_STATE(3975)] = 206346, - [SMALL_STATE(3976)] = 206370, - [SMALL_STATE(3977)] = 206404, - [SMALL_STATE(3978)] = 206426, - [SMALL_STATE(3979)] = 206446, - [SMALL_STATE(3980)] = 206470, - [SMALL_STATE(3981)] = 206504, - [SMALL_STATE(3982)] = 206532, - [SMALL_STATE(3983)] = 206566, - [SMALL_STATE(3984)] = 206600, - [SMALL_STATE(3985)] = 206618, - [SMALL_STATE(3986)] = 206638, - [SMALL_STATE(3987)] = 206660, - [SMALL_STATE(3988)] = 206694, - [SMALL_STATE(3989)] = 206728, - [SMALL_STATE(3990)] = 206762, - [SMALL_STATE(3991)] = 206796, - [SMALL_STATE(3992)] = 206816, - [SMALL_STATE(3993)] = 206836, - [SMALL_STATE(3994)] = 206870, - [SMALL_STATE(3995)] = 206904, - [SMALL_STATE(3996)] = 206926, - [SMALL_STATE(3997)] = 206960, - [SMALL_STATE(3998)] = 206982, - [SMALL_STATE(3999)] = 207016, - [SMALL_STATE(4000)] = 207036, - [SMALL_STATE(4001)] = 207070, - [SMALL_STATE(4002)] = 207090, - [SMALL_STATE(4003)] = 207121, - [SMALL_STATE(4004)] = 207136, - [SMALL_STATE(4005)] = 207167, - [SMALL_STATE(4006)] = 207198, - [SMALL_STATE(4007)] = 207229, - [SMALL_STATE(4008)] = 207244, - [SMALL_STATE(4009)] = 207263, - [SMALL_STATE(4010)] = 207282, - [SMALL_STATE(4011)] = 207301, - [SMALL_STATE(4012)] = 207320, - [SMALL_STATE(4013)] = 207345, - [SMALL_STATE(4014)] = 207364, - [SMALL_STATE(4015)] = 207387, - [SMALL_STATE(4016)] = 207404, - [SMALL_STATE(4017)] = 207435, - [SMALL_STATE(4018)] = 207454, - [SMALL_STATE(4019)] = 207473, - [SMALL_STATE(4020)] = 207498, - [SMALL_STATE(4021)] = 207523, - [SMALL_STATE(4022)] = 207542, - [SMALL_STATE(4023)] = 207567, - [SMALL_STATE(4024)] = 207582, - [SMALL_STATE(4025)] = 207613, - [SMALL_STATE(4026)] = 207636, - [SMALL_STATE(4027)] = 207667, - [SMALL_STATE(4028)] = 207686, - [SMALL_STATE(4029)] = 207717, - [SMALL_STATE(4030)] = 207748, - [SMALL_STATE(4031)] = 207779, - [SMALL_STATE(4032)] = 207810, - [SMALL_STATE(4033)] = 207825, - [SMALL_STATE(4034)] = 207850, - [SMALL_STATE(4035)] = 207881, - [SMALL_STATE(4036)] = 207906, - [SMALL_STATE(4037)] = 207931, - [SMALL_STATE(4038)] = 207950, - [SMALL_STATE(4039)] = 207975, - [SMALL_STATE(4040)] = 208000, - [SMALL_STATE(4041)] = 208025, - [SMALL_STATE(4042)] = 208050, - [SMALL_STATE(4043)] = 208081, - [SMALL_STATE(4044)] = 208112, - [SMALL_STATE(4045)] = 208143, - [SMALL_STATE(4046)] = 208166, - [SMALL_STATE(4047)] = 208191, - [SMALL_STATE(4048)] = 208222, - [SMALL_STATE(4049)] = 208253, - [SMALL_STATE(4050)] = 208274, - [SMALL_STATE(4051)] = 208291, - [SMALL_STATE(4052)] = 208322, - [SMALL_STATE(4053)] = 208353, - [SMALL_STATE(4054)] = 208368, - [SMALL_STATE(4055)] = 208399, - [SMALL_STATE(4056)] = 208424, - [SMALL_STATE(4057)] = 208449, - [SMALL_STATE(4058)] = 208480, - [SMALL_STATE(4059)] = 208511, - [SMALL_STATE(4060)] = 208536, - [SMALL_STATE(4061)] = 208551, - [SMALL_STATE(4062)] = 208566, - [SMALL_STATE(4063)] = 208591, - [SMALL_STATE(4064)] = 208606, - [SMALL_STATE(4065)] = 208626, - [SMALL_STATE(4066)] = 208640, - [SMALL_STATE(4067)] = 208654, - [SMALL_STATE(4068)] = 208668, - [SMALL_STATE(4069)] = 208688, - [SMALL_STATE(4070)] = 208708, - [SMALL_STATE(4071)] = 208722, - [SMALL_STATE(4072)] = 208736, - [SMALL_STATE(4073)] = 208754, - [SMALL_STATE(4074)] = 208774, - [SMALL_STATE(4075)] = 208790, - [SMALL_STATE(4076)] = 208804, - [SMALL_STATE(4077)] = 208818, - [SMALL_STATE(4078)] = 208832, - [SMALL_STATE(4079)] = 208848, - [SMALL_STATE(4080)] = 208866, - [SMALL_STATE(4081)] = 208880, - [SMALL_STATE(4082)] = 208894, - [SMALL_STATE(4083)] = 208918, - [SMALL_STATE(4084)] = 208932, - [SMALL_STATE(4085)] = 208948, - [SMALL_STATE(4086)] = 208964, - [SMALL_STATE(4087)] = 208988, - [SMALL_STATE(4088)] = 209002, - [SMALL_STATE(4089)] = 209016, - [SMALL_STATE(4090)] = 209034, - [SMALL_STATE(4091)] = 209048, - [SMALL_STATE(4092)] = 209068, - [SMALL_STATE(4093)] = 209082, - [SMALL_STATE(4094)] = 209096, - [SMALL_STATE(4095)] = 209116, - [SMALL_STATE(4096)] = 209130, - [SMALL_STATE(4097)] = 209144, - [SMALL_STATE(4098)] = 209158, - [SMALL_STATE(4099)] = 209172, - [SMALL_STATE(4100)] = 209186, - [SMALL_STATE(4101)] = 209206, - [SMALL_STATE(4102)] = 209220, - [SMALL_STATE(4103)] = 209238, - [SMALL_STATE(4104)] = 209252, - [SMALL_STATE(4105)] = 209268, - [SMALL_STATE(4106)] = 209284, - [SMALL_STATE(4107)] = 209304, - [SMALL_STATE(4108)] = 209322, - [SMALL_STATE(4109)] = 209338, - [SMALL_STATE(4110)] = 209354, - [SMALL_STATE(4111)] = 209370, - [SMALL_STATE(4112)] = 209388, - [SMALL_STATE(4113)] = 209402, - [SMALL_STATE(4114)] = 209418, - [SMALL_STATE(4115)] = 209432, - [SMALL_STATE(4116)] = 209446, - [SMALL_STATE(4117)] = 209460, - [SMALL_STATE(4118)] = 209474, - [SMALL_STATE(4119)] = 209494, - [SMALL_STATE(4120)] = 209508, - [SMALL_STATE(4121)] = 209524, - [SMALL_STATE(4122)] = 209538, - [SMALL_STATE(4123)] = 209552, - [SMALL_STATE(4124)] = 209566, - [SMALL_STATE(4125)] = 209586, - [SMALL_STATE(4126)] = 209600, - [SMALL_STATE(4127)] = 209624, - [SMALL_STATE(4128)] = 209644, - [SMALL_STATE(4129)] = 209669, - [SMALL_STATE(4130)] = 209682, - [SMALL_STATE(4131)] = 209703, - [SMALL_STATE(4132)] = 209718, - [SMALL_STATE(4133)] = 209743, - [SMALL_STATE(4134)] = 209756, - [SMALL_STATE(4135)] = 209771, - [SMALL_STATE(4136)] = 209796, - [SMALL_STATE(4137)] = 209809, - [SMALL_STATE(4138)] = 209834, - [SMALL_STATE(4139)] = 209849, - [SMALL_STATE(4140)] = 209874, - [SMALL_STATE(4141)] = 209889, - [SMALL_STATE(4142)] = 209908, - [SMALL_STATE(4143)] = 209933, - [SMALL_STATE(4144)] = 209952, - [SMALL_STATE(4145)] = 209973, - [SMALL_STATE(4146)] = 209998, - [SMALL_STATE(4147)] = 210011, - [SMALL_STATE(4148)] = 210036, - [SMALL_STATE(4149)] = 210049, - [SMALL_STATE(4150)] = 210074, - [SMALL_STATE(4151)] = 210099, - [SMALL_STATE(4152)] = 210118, - [SMALL_STATE(4153)] = 210135, - [SMALL_STATE(4154)] = 210154, - [SMALL_STATE(4155)] = 210173, - [SMALL_STATE(4156)] = 210192, - [SMALL_STATE(4157)] = 210207, - [SMALL_STATE(4158)] = 210222, - [SMALL_STATE(4159)] = 210247, - [SMALL_STATE(4160)] = 210264, - [SMALL_STATE(4161)] = 210281, - [SMALL_STATE(4162)] = 210296, - [SMALL_STATE(4163)] = 210321, - [SMALL_STATE(4164)] = 210336, - [SMALL_STATE(4165)] = 210361, - [SMALL_STATE(4166)] = 210380, - [SMALL_STATE(4167)] = 210393, - [SMALL_STATE(4168)] = 210412, - [SMALL_STATE(4169)] = 210427, - [SMALL_STATE(4170)] = 210452, - [SMALL_STATE(4171)] = 210477, - [SMALL_STATE(4172)] = 210494, - [SMALL_STATE(4173)] = 210519, - [SMALL_STATE(4174)] = 210544, - [SMALL_STATE(4175)] = 210563, - [SMALL_STATE(4176)] = 210578, - [SMALL_STATE(4177)] = 210593, - [SMALL_STATE(4178)] = 210612, - [SMALL_STATE(4179)] = 210637, - [SMALL_STATE(4180)] = 210652, - [SMALL_STATE(4181)] = 210665, - [SMALL_STATE(4182)] = 210678, - [SMALL_STATE(4183)] = 210697, - [SMALL_STATE(4184)] = 210716, - [SMALL_STATE(4185)] = 210733, - [SMALL_STATE(4186)] = 210754, - [SMALL_STATE(4187)] = 210779, - [SMALL_STATE(4188)] = 210798, - [SMALL_STATE(4189)] = 210819, - [SMALL_STATE(4190)] = 210840, - [SMALL_STATE(4191)] = 210859, - [SMALL_STATE(4192)] = 210878, - [SMALL_STATE(4193)] = 210903, - [SMALL_STATE(4194)] = 210924, - [SMALL_STATE(4195)] = 210943, - [SMALL_STATE(4196)] = 210968, - [SMALL_STATE(4197)] = 210981, - [SMALL_STATE(4198)] = 211006, - [SMALL_STATE(4199)] = 211021, - [SMALL_STATE(4200)] = 211034, - [SMALL_STATE(4201)] = 211049, - [SMALL_STATE(4202)] = 211070, - [SMALL_STATE(4203)] = 211087, - [SMALL_STATE(4204)] = 211106, - [SMALL_STATE(4205)] = 211131, - [SMALL_STATE(4206)] = 211156, - [SMALL_STATE(4207)] = 211175, - [SMALL_STATE(4208)] = 211200, - [SMALL_STATE(4209)] = 211225, - [SMALL_STATE(4210)] = 211246, - [SMALL_STATE(4211)] = 211271, - [SMALL_STATE(4212)] = 211290, - [SMALL_STATE(4213)] = 211315, - [SMALL_STATE(4214)] = 211330, - [SMALL_STATE(4215)] = 211355, - [SMALL_STATE(4216)] = 211380, - [SMALL_STATE(4217)] = 211405, - [SMALL_STATE(4218)] = 211424, - [SMALL_STATE(4219)] = 211449, - [SMALL_STATE(4220)] = 211470, - [SMALL_STATE(4221)] = 211487, - [SMALL_STATE(4222)] = 211512, - [SMALL_STATE(4223)] = 211529, - [SMALL_STATE(4224)] = 211546, - [SMALL_STATE(4225)] = 211565, - [SMALL_STATE(4226)] = 211590, - [SMALL_STATE(4227)] = 211615, - [SMALL_STATE(4228)] = 211640, - [SMALL_STATE(4229)] = 211661, - [SMALL_STATE(4230)] = 211686, - [SMALL_STATE(4231)] = 211711, - [SMALL_STATE(4232)] = 211734, - [SMALL_STATE(4233)] = 211747, - [SMALL_STATE(4234)] = 211760, - [SMALL_STATE(4235)] = 211785, - [SMALL_STATE(4236)] = 211798, - [SMALL_STATE(4237)] = 211815, - [SMALL_STATE(4238)] = 211832, - [SMALL_STATE(4239)] = 211853, - [SMALL_STATE(4240)] = 211870, - [SMALL_STATE(4241)] = 211895, - [SMALL_STATE(4242)] = 211916, - [SMALL_STATE(4243)] = 211941, - [SMALL_STATE(4244)] = 211958, - [SMALL_STATE(4245)] = 211975, - [SMALL_STATE(4246)] = 211996, - [SMALL_STATE(4247)] = 212013, - [SMALL_STATE(4248)] = 212034, - [SMALL_STATE(4249)] = 212047, - [SMALL_STATE(4250)] = 212064, - [SMALL_STATE(4251)] = 212081, - [SMALL_STATE(4252)] = 212098, - [SMALL_STATE(4253)] = 212115, - [SMALL_STATE(4254)] = 212132, - [SMALL_STATE(4255)] = 212149, - [SMALL_STATE(4256)] = 212174, - [SMALL_STATE(4257)] = 212187, - [SMALL_STATE(4258)] = 212212, - [SMALL_STATE(4259)] = 212237, - [SMALL_STATE(4260)] = 212254, - [SMALL_STATE(4261)] = 212271, - [SMALL_STATE(4262)] = 212288, - [SMALL_STATE(4263)] = 212313, - [SMALL_STATE(4264)] = 212330, - [SMALL_STATE(4265)] = 212355, - [SMALL_STATE(4266)] = 212368, - [SMALL_STATE(4267)] = 212393, - [SMALL_STATE(4268)] = 212418, - [SMALL_STATE(4269)] = 212437, - [SMALL_STATE(4270)] = 212454, - [SMALL_STATE(4271)] = 212479, - [SMALL_STATE(4272)] = 212492, - [SMALL_STATE(4273)] = 212517, - [SMALL_STATE(4274)] = 212534, - [SMALL_STATE(4275)] = 212559, - [SMALL_STATE(4276)] = 212584, - [SMALL_STATE(4277)] = 212609, - [SMALL_STATE(4278)] = 212634, - [SMALL_STATE(4279)] = 212652, - [SMALL_STATE(4280)] = 212674, - [SMALL_STATE(4281)] = 212694, - [SMALL_STATE(4282)] = 212716, - [SMALL_STATE(4283)] = 212734, - [SMALL_STATE(4284)] = 212746, - [SMALL_STATE(4285)] = 212768, - [SMALL_STATE(4286)] = 212790, - [SMALL_STATE(4287)] = 212808, - [SMALL_STATE(4288)] = 212830, - [SMALL_STATE(4289)] = 212842, - [SMALL_STATE(4290)] = 212856, - [SMALL_STATE(4291)] = 212872, - [SMALL_STATE(4292)] = 212894, - [SMALL_STATE(4293)] = 212912, - [SMALL_STATE(4294)] = 212928, - [SMALL_STATE(4295)] = 212946, - [SMALL_STATE(4296)] = 212958, - [SMALL_STATE(4297)] = 212974, - [SMALL_STATE(4298)] = 212990, - [SMALL_STATE(4299)] = 213012, - [SMALL_STATE(4300)] = 213034, - [SMALL_STATE(4301)] = 213046, - [SMALL_STATE(4302)] = 213060, - [SMALL_STATE(4303)] = 213078, - [SMALL_STATE(4304)] = 213096, - [SMALL_STATE(4305)] = 213112, - [SMALL_STATE(4306)] = 213128, - [SMALL_STATE(4307)] = 213140, - [SMALL_STATE(4308)] = 213158, - [SMALL_STATE(4309)] = 213178, - [SMALL_STATE(4310)] = 213196, - [SMALL_STATE(4311)] = 213218, - [SMALL_STATE(4312)] = 213234, - [SMALL_STATE(4313)] = 213250, - [SMALL_STATE(4314)] = 213272, - [SMALL_STATE(4315)] = 213284, - [SMALL_STATE(4316)] = 213306, - [SMALL_STATE(4317)] = 213324, - [SMALL_STATE(4318)] = 213342, - [SMALL_STATE(4319)] = 213360, - [SMALL_STATE(4320)] = 213378, - [SMALL_STATE(4321)] = 213400, - [SMALL_STATE(4322)] = 213422, - [SMALL_STATE(4323)] = 213438, - [SMALL_STATE(4324)] = 213454, - [SMALL_STATE(4325)] = 213476, - [SMALL_STATE(4326)] = 213492, - [SMALL_STATE(4327)] = 213504, - [SMALL_STATE(4328)] = 213526, - [SMALL_STATE(4329)] = 213548, - [SMALL_STATE(4330)] = 213564, - [SMALL_STATE(4331)] = 213586, - [SMALL_STATE(4332)] = 213608, - [SMALL_STATE(4333)] = 213624, - [SMALL_STATE(4334)] = 213640, - [SMALL_STATE(4335)] = 213662, - [SMALL_STATE(4336)] = 213680, - [SMALL_STATE(4337)] = 213700, - [SMALL_STATE(4338)] = 213722, - [SMALL_STATE(4339)] = 213740, - [SMALL_STATE(4340)] = 213762, - [SMALL_STATE(4341)] = 213780, - [SMALL_STATE(4342)] = 213796, - [SMALL_STATE(4343)] = 213814, - [SMALL_STATE(4344)] = 213832, - [SMALL_STATE(4345)] = 213846, - [SMALL_STATE(4346)] = 213868, - [SMALL_STATE(4347)] = 213890, - [SMALL_STATE(4348)] = 213912, - [SMALL_STATE(4349)] = 213934, - [SMALL_STATE(4350)] = 213946, - [SMALL_STATE(4351)] = 213964, - [SMALL_STATE(4352)] = 213978, - [SMALL_STATE(4353)] = 213994, - [SMALL_STATE(4354)] = 214008, - [SMALL_STATE(4355)] = 214030, - [SMALL_STATE(4356)] = 214048, - [SMALL_STATE(4357)] = 214060, - [SMALL_STATE(4358)] = 214078, - [SMALL_STATE(4359)] = 214096, - [SMALL_STATE(4360)] = 214114, - [SMALL_STATE(4361)] = 214136, - [SMALL_STATE(4362)] = 214158, - [SMALL_STATE(4363)] = 214180, - [SMALL_STATE(4364)] = 214202, - [SMALL_STATE(4365)] = 214224, - [SMALL_STATE(4366)] = 214246, - [SMALL_STATE(4367)] = 214268, - [SMALL_STATE(4368)] = 214290, - [SMALL_STATE(4369)] = 214308, - [SMALL_STATE(4370)] = 214330, - [SMALL_STATE(4371)] = 214352, - [SMALL_STATE(4372)] = 214370, - [SMALL_STATE(4373)] = 214390, - [SMALL_STATE(4374)] = 214404, - [SMALL_STATE(4375)] = 214418, - [SMALL_STATE(4376)] = 214440, - [SMALL_STATE(4377)] = 214456, - [SMALL_STATE(4378)] = 214476, - [SMALL_STATE(4379)] = 214492, - [SMALL_STATE(4380)] = 214514, - [SMALL_STATE(4381)] = 214530, - [SMALL_STATE(4382)] = 214548, - [SMALL_STATE(4383)] = 214560, - [SMALL_STATE(4384)] = 214582, - [SMALL_STATE(4385)] = 214604, - [SMALL_STATE(4386)] = 214626, - [SMALL_STATE(4387)] = 214644, - [SMALL_STATE(4388)] = 214664, - [SMALL_STATE(4389)] = 214686, - [SMALL_STATE(4390)] = 214708, - [SMALL_STATE(4391)] = 214724, - [SMALL_STATE(4392)] = 214740, - [SMALL_STATE(4393)] = 214756, - [SMALL_STATE(4394)] = 214770, - [SMALL_STATE(4395)] = 214788, - [SMALL_STATE(4396)] = 214804, - [SMALL_STATE(4397)] = 214822, - [SMALL_STATE(4398)] = 214844, - [SMALL_STATE(4399)] = 214866, - [SMALL_STATE(4400)] = 214882, - [SMALL_STATE(4401)] = 214904, - [SMALL_STATE(4402)] = 214922, - [SMALL_STATE(4403)] = 214936, - [SMALL_STATE(4404)] = 214958, - [SMALL_STATE(4405)] = 214970, - [SMALL_STATE(4406)] = 214986, - [SMALL_STATE(4407)] = 215008, - [SMALL_STATE(4408)] = 215024, - [SMALL_STATE(4409)] = 215040, - [SMALL_STATE(4410)] = 215056, - [SMALL_STATE(4411)] = 215078, - [SMALL_STATE(4412)] = 215096, - [SMALL_STATE(4413)] = 215114, - [SMALL_STATE(4414)] = 215136, - [SMALL_STATE(4415)] = 215154, - [SMALL_STATE(4416)] = 215176, - [SMALL_STATE(4417)] = 215194, - [SMALL_STATE(4418)] = 215210, - [SMALL_STATE(4419)] = 215232, - [SMALL_STATE(4420)] = 215248, - [SMALL_STATE(4421)] = 215264, - [SMALL_STATE(4422)] = 215283, - [SMALL_STATE(4423)] = 215298, - [SMALL_STATE(4424)] = 215313, - [SMALL_STATE(4425)] = 215332, - [SMALL_STATE(4426)] = 215351, - [SMALL_STATE(4427)] = 215366, - [SMALL_STATE(4428)] = 215381, - [SMALL_STATE(4429)] = 215400, - [SMALL_STATE(4430)] = 215419, - [SMALL_STATE(4431)] = 215438, - [SMALL_STATE(4432)] = 215457, - [SMALL_STATE(4433)] = 215472, - [SMALL_STATE(4434)] = 215487, - [SMALL_STATE(4435)] = 215506, - [SMALL_STATE(4436)] = 215525, - [SMALL_STATE(4437)] = 215544, - [SMALL_STATE(4438)] = 215559, - [SMALL_STATE(4439)] = 215578, - [SMALL_STATE(4440)] = 215597, - [SMALL_STATE(4441)] = 215616, - [SMALL_STATE(4442)] = 215635, - [SMALL_STATE(4443)] = 215650, - [SMALL_STATE(4444)] = 215661, - [SMALL_STATE(4445)] = 215680, - [SMALL_STATE(4446)] = 215691, - [SMALL_STATE(4447)] = 215702, - [SMALL_STATE(4448)] = 215721, - [SMALL_STATE(4449)] = 215740, - [SMALL_STATE(4450)] = 215759, - [SMALL_STATE(4451)] = 215770, - [SMALL_STATE(4452)] = 215781, - [SMALL_STATE(4453)] = 215798, - [SMALL_STATE(4454)] = 215817, - [SMALL_STATE(4455)] = 215836, - [SMALL_STATE(4456)] = 215855, - [SMALL_STATE(4457)] = 215874, - [SMALL_STATE(4458)] = 215893, - [SMALL_STATE(4459)] = 215912, - [SMALL_STATE(4460)] = 215927, - [SMALL_STATE(4461)] = 215946, - [SMALL_STATE(4462)] = 215963, - [SMALL_STATE(4463)] = 215982, - [SMALL_STATE(4464)] = 216001, - [SMALL_STATE(4465)] = 216020, - [SMALL_STATE(4466)] = 216035, - [SMALL_STATE(4467)] = 216054, - [SMALL_STATE(4468)] = 216073, - [SMALL_STATE(4469)] = 216092, - [SMALL_STATE(4470)] = 216109, - [SMALL_STATE(4471)] = 216128, - [SMALL_STATE(4472)] = 216147, - [SMALL_STATE(4473)] = 216166, - [SMALL_STATE(4474)] = 216183, - [SMALL_STATE(4475)] = 216194, - [SMALL_STATE(4476)] = 216205, - [SMALL_STATE(4477)] = 216216, - [SMALL_STATE(4478)] = 216227, - [SMALL_STATE(4479)] = 216238, - [SMALL_STATE(4480)] = 216249, - [SMALL_STATE(4481)] = 216260, - [SMALL_STATE(4482)] = 216275, - [SMALL_STATE(4483)] = 216292, - [SMALL_STATE(4484)] = 216309, - [SMALL_STATE(4485)] = 216326, - [SMALL_STATE(4486)] = 216337, - [SMALL_STATE(4487)] = 216352, - [SMALL_STATE(4488)] = 216371, - [SMALL_STATE(4489)] = 216390, - [SMALL_STATE(4490)] = 216409, - [SMALL_STATE(4491)] = 216424, - [SMALL_STATE(4492)] = 216439, - [SMALL_STATE(4493)] = 216456, - [SMALL_STATE(4494)] = 216475, - [SMALL_STATE(4495)] = 216494, - [SMALL_STATE(4496)] = 216511, - [SMALL_STATE(4497)] = 216530, - [SMALL_STATE(4498)] = 216549, - [SMALL_STATE(4499)] = 216564, - [SMALL_STATE(4500)] = 216581, - [SMALL_STATE(4501)] = 216592, - [SMALL_STATE(4502)] = 216603, - [SMALL_STATE(4503)] = 216622, - [SMALL_STATE(4504)] = 216633, - [SMALL_STATE(4505)] = 216644, - [SMALL_STATE(4506)] = 216655, - [SMALL_STATE(4507)] = 216666, - [SMALL_STATE(4508)] = 216677, - [SMALL_STATE(4509)] = 216688, - [SMALL_STATE(4510)] = 216699, - [SMALL_STATE(4511)] = 216710, - [SMALL_STATE(4512)] = 216729, - [SMALL_STATE(4513)] = 216744, - [SMALL_STATE(4514)] = 216759, - [SMALL_STATE(4515)] = 216774, - [SMALL_STATE(4516)] = 216789, - [SMALL_STATE(4517)] = 216804, - [SMALL_STATE(4518)] = 216819, - [SMALL_STATE(4519)] = 216834, - [SMALL_STATE(4520)] = 216851, - [SMALL_STATE(4521)] = 216870, - [SMALL_STATE(4522)] = 216881, - [SMALL_STATE(4523)] = 216892, - [SMALL_STATE(4524)] = 216911, - [SMALL_STATE(4525)] = 216922, - [SMALL_STATE(4526)] = 216933, - [SMALL_STATE(4527)] = 216944, - [SMALL_STATE(4528)] = 216955, - [SMALL_STATE(4529)] = 216966, - [SMALL_STATE(4530)] = 216977, - [SMALL_STATE(4531)] = 216992, - [SMALL_STATE(4532)] = 217011, - [SMALL_STATE(4533)] = 217026, - [SMALL_STATE(4534)] = 217041, - [SMALL_STATE(4535)] = 217056, - [SMALL_STATE(4536)] = 217075, - [SMALL_STATE(4537)] = 217090, - [SMALL_STATE(4538)] = 217109, - [SMALL_STATE(4539)] = 217128, - [SMALL_STATE(4540)] = 217145, - [SMALL_STATE(4541)] = 217164, - [SMALL_STATE(4542)] = 217179, - [SMALL_STATE(4543)] = 217198, - [SMALL_STATE(4544)] = 217209, - [SMALL_STATE(4545)] = 217228, - [SMALL_STATE(4546)] = 217239, - [SMALL_STATE(4547)] = 217250, - [SMALL_STATE(4548)] = 217261, - [SMALL_STATE(4549)] = 217272, - [SMALL_STATE(4550)] = 217283, - [SMALL_STATE(4551)] = 217294, - [SMALL_STATE(4552)] = 217309, - [SMALL_STATE(4553)] = 217328, - [SMALL_STATE(4554)] = 217343, - [SMALL_STATE(4555)] = 217358, - [SMALL_STATE(4556)] = 217373, - [SMALL_STATE(4557)] = 217388, - [SMALL_STATE(4558)] = 217403, - [SMALL_STATE(4559)] = 217422, - [SMALL_STATE(4560)] = 217441, - [SMALL_STATE(4561)] = 217456, - [SMALL_STATE(4562)] = 217475, - [SMALL_STATE(4563)] = 217486, - [SMALL_STATE(4564)] = 217497, - [SMALL_STATE(4565)] = 217508, - [SMALL_STATE(4566)] = 217519, - [SMALL_STATE(4567)] = 217538, - [SMALL_STATE(4568)] = 217549, - [SMALL_STATE(4569)] = 217560, - [SMALL_STATE(4570)] = 217575, - [SMALL_STATE(4571)] = 217594, - [SMALL_STATE(4572)] = 217609, - [SMALL_STATE(4573)] = 217624, - [SMALL_STATE(4574)] = 217639, - [SMALL_STATE(4575)] = 217654, - [SMALL_STATE(4576)] = 217665, - [SMALL_STATE(4577)] = 217684, - [SMALL_STATE(4578)] = 217695, - [SMALL_STATE(4579)] = 217706, - [SMALL_STATE(4580)] = 217725, - [SMALL_STATE(4581)] = 217744, - [SMALL_STATE(4582)] = 217755, - [SMALL_STATE(4583)] = 217770, - [SMALL_STATE(4584)] = 217785, - [SMALL_STATE(4585)] = 217800, - [SMALL_STATE(4586)] = 217811, - [SMALL_STATE(4587)] = 217822, - [SMALL_STATE(4588)] = 217841, - [SMALL_STATE(4589)] = 217858, - [SMALL_STATE(4590)] = 217869, - [SMALL_STATE(4591)] = 217888, - [SMALL_STATE(4592)] = 217903, - [SMALL_STATE(4593)] = 217916, - [SMALL_STATE(4594)] = 217933, - [SMALL_STATE(4595)] = 217944, - [SMALL_STATE(4596)] = 217955, - [SMALL_STATE(4597)] = 217966, - [SMALL_STATE(4598)] = 217983, - [SMALL_STATE(4599)] = 217996, - [SMALL_STATE(4600)] = 218007, - [SMALL_STATE(4601)] = 218018, - [SMALL_STATE(4602)] = 218037, - [SMALL_STATE(4603)] = 218056, - [SMALL_STATE(4604)] = 218067, - [SMALL_STATE(4605)] = 218086, - [SMALL_STATE(4606)] = 218097, - [SMALL_STATE(4607)] = 218108, - [SMALL_STATE(4608)] = 218119, - [SMALL_STATE(4609)] = 218138, - [SMALL_STATE(4610)] = 218149, - [SMALL_STATE(4611)] = 218160, - [SMALL_STATE(4612)] = 218171, - [SMALL_STATE(4613)] = 218182, - [SMALL_STATE(4614)] = 218197, - [SMALL_STATE(4615)] = 218208, - [SMALL_STATE(4616)] = 218219, - [SMALL_STATE(4617)] = 218230, - [SMALL_STATE(4618)] = 218241, - [SMALL_STATE(4619)] = 218252, - [SMALL_STATE(4620)] = 218263, - [SMALL_STATE(4621)] = 218274, - [SMALL_STATE(4622)] = 218285, - [SMALL_STATE(4623)] = 218296, - [SMALL_STATE(4624)] = 218307, - [SMALL_STATE(4625)] = 218318, - [SMALL_STATE(4626)] = 218329, - [SMALL_STATE(4627)] = 218340, - [SMALL_STATE(4628)] = 218351, - [SMALL_STATE(4629)] = 218362, - [SMALL_STATE(4630)] = 218373, - [SMALL_STATE(4631)] = 218388, - [SMALL_STATE(4632)] = 218399, - [SMALL_STATE(4633)] = 218410, - [SMALL_STATE(4634)] = 218421, - [SMALL_STATE(4635)] = 218438, - [SMALL_STATE(4636)] = 218455, - [SMALL_STATE(4637)] = 218470, - [SMALL_STATE(4638)] = 218481, - [SMALL_STATE(4639)] = 218498, - [SMALL_STATE(4640)] = 218511, - [SMALL_STATE(4641)] = 218522, - [SMALL_STATE(4642)] = 218533, - [SMALL_STATE(4643)] = 218544, - [SMALL_STATE(4644)] = 218555, - [SMALL_STATE(4645)] = 218568, - [SMALL_STATE(4646)] = 218585, - [SMALL_STATE(4647)] = 218596, - [SMALL_STATE(4648)] = 218607, - [SMALL_STATE(4649)] = 218618, - [SMALL_STATE(4650)] = 218635, - [SMALL_STATE(4651)] = 218650, - [SMALL_STATE(4652)] = 218661, - [SMALL_STATE(4653)] = 218672, - [SMALL_STATE(4654)] = 218683, - [SMALL_STATE(4655)] = 218694, - [SMALL_STATE(4656)] = 218705, - [SMALL_STATE(4657)] = 218716, - [SMALL_STATE(4658)] = 218727, - [SMALL_STATE(4659)] = 218738, - [SMALL_STATE(4660)] = 218753, - [SMALL_STATE(4661)] = 218764, - [SMALL_STATE(4662)] = 218775, - [SMALL_STATE(4663)] = 218786, - [SMALL_STATE(4664)] = 218797, - [SMALL_STATE(4665)] = 218808, - [SMALL_STATE(4666)] = 218819, - [SMALL_STATE(4667)] = 218830, - [SMALL_STATE(4668)] = 218841, - [SMALL_STATE(4669)] = 218852, - [SMALL_STATE(4670)] = 218863, - [SMALL_STATE(4671)] = 218874, - [SMALL_STATE(4672)] = 218885, - [SMALL_STATE(4673)] = 218896, - [SMALL_STATE(4674)] = 218907, - [SMALL_STATE(4675)] = 218918, - [SMALL_STATE(4676)] = 218929, - [SMALL_STATE(4677)] = 218940, - [SMALL_STATE(4678)] = 218951, - [SMALL_STATE(4679)] = 218968, - [SMALL_STATE(4680)] = 218979, - [SMALL_STATE(4681)] = 218990, - [SMALL_STATE(4682)] = 219001, - [SMALL_STATE(4683)] = 219012, - [SMALL_STATE(4684)] = 219025, - [SMALL_STATE(4685)] = 219036, - [SMALL_STATE(4686)] = 219047, - [SMALL_STATE(4687)] = 219062, - [SMALL_STATE(4688)] = 219079, - [SMALL_STATE(4689)] = 219092, - [SMALL_STATE(4690)] = 219111, - [SMALL_STATE(4691)] = 219130, - [SMALL_STATE(4692)] = 219145, - [SMALL_STATE(4693)] = 219162, - [SMALL_STATE(4694)] = 219175, - [SMALL_STATE(4695)] = 219192, - [SMALL_STATE(4696)] = 219207, - [SMALL_STATE(4697)] = 219224, - [SMALL_STATE(4698)] = 219243, - [SMALL_STATE(4699)] = 219260, - [SMALL_STATE(4700)] = 219277, - [SMALL_STATE(4701)] = 219296, - [SMALL_STATE(4702)] = 219315, - [SMALL_STATE(4703)] = 219334, - [SMALL_STATE(4704)] = 219349, - [SMALL_STATE(4705)] = 219364, - [SMALL_STATE(4706)] = 219379, - [SMALL_STATE(4707)] = 219396, - [SMALL_STATE(4708)] = 219415, - [SMALL_STATE(4709)] = 219428, - [SMALL_STATE(4710)] = 219445, - [SMALL_STATE(4711)] = 219460, - [SMALL_STATE(4712)] = 219473, - [SMALL_STATE(4713)] = 219488, - [SMALL_STATE(4714)] = 219503, - [SMALL_STATE(4715)] = 219516, - [SMALL_STATE(4716)] = 219533, - [SMALL_STATE(4717)] = 219546, - [SMALL_STATE(4718)] = 219565, - [SMALL_STATE(4719)] = 219584, - [SMALL_STATE(4720)] = 219603, - [SMALL_STATE(4721)] = 219620, - [SMALL_STATE(4722)] = 219639, - [SMALL_STATE(4723)] = 219658, - [SMALL_STATE(4724)] = 219677, - [SMALL_STATE(4725)] = 219692, - [SMALL_STATE(4726)] = 219706, - [SMALL_STATE(4727)] = 219720, - [SMALL_STATE(4728)] = 219736, - [SMALL_STATE(4729)] = 219752, - [SMALL_STATE(4730)] = 219768, - [SMALL_STATE(4731)] = 219784, - [SMALL_STATE(4732)] = 219800, - [SMALL_STATE(4733)] = 219816, - [SMALL_STATE(4734)] = 219832, - [SMALL_STATE(4735)] = 219846, - [SMALL_STATE(4736)] = 219862, - [SMALL_STATE(4737)] = 219878, - [SMALL_STATE(4738)] = 219894, - [SMALL_STATE(4739)] = 219908, - [SMALL_STATE(4740)] = 219924, - [SMALL_STATE(4741)] = 219940, - [SMALL_STATE(4742)] = 219954, - [SMALL_STATE(4743)] = 219970, - [SMALL_STATE(4744)] = 219986, - [SMALL_STATE(4745)] = 220002, - [SMALL_STATE(4746)] = 220018, - [SMALL_STATE(4747)] = 220032, - [SMALL_STATE(4748)] = 220046, - [SMALL_STATE(4749)] = 220062, - [SMALL_STATE(4750)] = 220078, - [SMALL_STATE(4751)] = 220094, - [SMALL_STATE(4752)] = 220110, - [SMALL_STATE(4753)] = 220124, - [SMALL_STATE(4754)] = 220140, - [SMALL_STATE(4755)] = 220156, - [SMALL_STATE(4756)] = 220172, - [SMALL_STATE(4757)] = 220188, - [SMALL_STATE(4758)] = 220202, - [SMALL_STATE(4759)] = 220218, - [SMALL_STATE(4760)] = 220234, - [SMALL_STATE(4761)] = 220244, - [SMALL_STATE(4762)] = 220254, - [SMALL_STATE(4763)] = 220268, - [SMALL_STATE(4764)] = 220282, - [SMALL_STATE(4765)] = 220298, - [SMALL_STATE(4766)] = 220312, - [SMALL_STATE(4767)] = 220328, - [SMALL_STATE(4768)] = 220342, - [SMALL_STATE(4769)] = 220356, - [SMALL_STATE(4770)] = 220370, - [SMALL_STATE(4771)] = 220384, - [SMALL_STATE(4772)] = 220400, - [SMALL_STATE(4773)] = 220414, - [SMALL_STATE(4774)] = 220428, - [SMALL_STATE(4775)] = 220444, - [SMALL_STATE(4776)] = 220460, - [SMALL_STATE(4777)] = 220476, - [SMALL_STATE(4778)] = 220492, - [SMALL_STATE(4779)] = 220506, - [SMALL_STATE(4780)] = 220522, - [SMALL_STATE(4781)] = 220538, - [SMALL_STATE(4782)] = 220554, - [SMALL_STATE(4783)] = 220568, - [SMALL_STATE(4784)] = 220584, - [SMALL_STATE(4785)] = 220600, - [SMALL_STATE(4786)] = 220616, - [SMALL_STATE(4787)] = 220632, - [SMALL_STATE(4788)] = 220648, - [SMALL_STATE(4789)] = 220662, - [SMALL_STATE(4790)] = 220676, - [SMALL_STATE(4791)] = 220692, - [SMALL_STATE(4792)] = 220708, - [SMALL_STATE(4793)] = 220724, - [SMALL_STATE(4794)] = 220740, - [SMALL_STATE(4795)] = 220754, - [SMALL_STATE(4796)] = 220770, - [SMALL_STATE(4797)] = 220786, - [SMALL_STATE(4798)] = 220800, - [SMALL_STATE(4799)] = 220816, - [SMALL_STATE(4800)] = 220830, - [SMALL_STATE(4801)] = 220846, - [SMALL_STATE(4802)] = 220862, - [SMALL_STATE(4803)] = 220878, - [SMALL_STATE(4804)] = 220894, - [SMALL_STATE(4805)] = 220908, - [SMALL_STATE(4806)] = 220922, - [SMALL_STATE(4807)] = 220938, - [SMALL_STATE(4808)] = 220952, - [SMALL_STATE(4809)] = 220966, - [SMALL_STATE(4810)] = 220982, - [SMALL_STATE(4811)] = 220998, - [SMALL_STATE(4812)] = 221014, - [SMALL_STATE(4813)] = 221030, - [SMALL_STATE(4814)] = 221046, - [SMALL_STATE(4815)] = 221062, - [SMALL_STATE(4816)] = 221078, - [SMALL_STATE(4817)] = 221094, - [SMALL_STATE(4818)] = 221110, - [SMALL_STATE(4819)] = 221126, - [SMALL_STATE(4820)] = 221142, - [SMALL_STATE(4821)] = 221158, - [SMALL_STATE(4822)] = 221174, - [SMALL_STATE(4823)] = 221190, - [SMALL_STATE(4824)] = 221204, - [SMALL_STATE(4825)] = 221218, - [SMALL_STATE(4826)] = 221232, - [SMALL_STATE(4827)] = 221246, - [SMALL_STATE(4828)] = 221260, - [SMALL_STATE(4829)] = 221274, - [SMALL_STATE(4830)] = 221288, - [SMALL_STATE(4831)] = 221298, - [SMALL_STATE(4832)] = 221314, - [SMALL_STATE(4833)] = 221328, - [SMALL_STATE(4834)] = 221342, - [SMALL_STATE(4835)] = 221358, - [SMALL_STATE(4836)] = 221374, - [SMALL_STATE(4837)] = 221390, - [SMALL_STATE(4838)] = 221402, - [SMALL_STATE(4839)] = 221414, - [SMALL_STATE(4840)] = 221430, - [SMALL_STATE(4841)] = 221446, - [SMALL_STATE(4842)] = 221462, - [SMALL_STATE(4843)] = 221472, - [SMALL_STATE(4844)] = 221488, - [SMALL_STATE(4845)] = 221498, - [SMALL_STATE(4846)] = 221514, - [SMALL_STATE(4847)] = 221530, - [SMALL_STATE(4848)] = 221546, - [SMALL_STATE(4849)] = 221560, - [SMALL_STATE(4850)] = 221574, - [SMALL_STATE(4851)] = 221590, - [SMALL_STATE(4852)] = 221600, - [SMALL_STATE(4853)] = 221610, - [SMALL_STATE(4854)] = 221626, - [SMALL_STATE(4855)] = 221642, - [SMALL_STATE(4856)] = 221658, - [SMALL_STATE(4857)] = 221674, - [SMALL_STATE(4858)] = 221690, - [SMALL_STATE(4859)] = 221704, - [SMALL_STATE(4860)] = 221720, - [SMALL_STATE(4861)] = 221736, - [SMALL_STATE(4862)] = 221752, - [SMALL_STATE(4863)] = 221766, - [SMALL_STATE(4864)] = 221782, - [SMALL_STATE(4865)] = 221798, - [SMALL_STATE(4866)] = 221812, - [SMALL_STATE(4867)] = 221826, - [SMALL_STATE(4868)] = 221842, - [SMALL_STATE(4869)] = 221856, - [SMALL_STATE(4870)] = 221872, - [SMALL_STATE(4871)] = 221888, - [SMALL_STATE(4872)] = 221904, - [SMALL_STATE(4873)] = 221918, - [SMALL_STATE(4874)] = 221932, - [SMALL_STATE(4875)] = 221946, - [SMALL_STATE(4876)] = 221962, - [SMALL_STATE(4877)] = 221978, - [SMALL_STATE(4878)] = 221992, - [SMALL_STATE(4879)] = 222008, - [SMALL_STATE(4880)] = 222022, - [SMALL_STATE(4881)] = 222038, - [SMALL_STATE(4882)] = 222054, - [SMALL_STATE(4883)] = 222068, - [SMALL_STATE(4884)] = 222082, - [SMALL_STATE(4885)] = 222098, - [SMALL_STATE(4886)] = 222114, - [SMALL_STATE(4887)] = 222130, - [SMALL_STATE(4888)] = 222144, - [SMALL_STATE(4889)] = 222158, - [SMALL_STATE(4890)] = 222172, - [SMALL_STATE(4891)] = 222188, - [SMALL_STATE(4892)] = 222204, - [SMALL_STATE(4893)] = 222220, - [SMALL_STATE(4894)] = 222234, - [SMALL_STATE(4895)] = 222250, - [SMALL_STATE(4896)] = 222266, - [SMALL_STATE(4897)] = 222280, - [SMALL_STATE(4898)] = 222296, - [SMALL_STATE(4899)] = 222312, - [SMALL_STATE(4900)] = 222328, - [SMALL_STATE(4901)] = 222342, - [SMALL_STATE(4902)] = 222356, - [SMALL_STATE(4903)] = 222372, - [SMALL_STATE(4904)] = 222388, - [SMALL_STATE(4905)] = 222404, - [SMALL_STATE(4906)] = 222418, - [SMALL_STATE(4907)] = 222432, - [SMALL_STATE(4908)] = 222446, - [SMALL_STATE(4909)] = 222457, - [SMALL_STATE(4910)] = 222466, - [SMALL_STATE(4911)] = 222479, - [SMALL_STATE(4912)] = 222492, - [SMALL_STATE(4913)] = 222505, - [SMALL_STATE(4914)] = 222518, - [SMALL_STATE(4915)] = 222531, - [SMALL_STATE(4916)] = 222544, - [SMALL_STATE(4917)] = 222557, - [SMALL_STATE(4918)] = 222570, - [SMALL_STATE(4919)] = 222583, - [SMALL_STATE(4920)] = 222596, - [SMALL_STATE(4921)] = 222609, - [SMALL_STATE(4922)] = 222622, - [SMALL_STATE(4923)] = 222635, - [SMALL_STATE(4924)] = 222648, - [SMALL_STATE(4925)] = 222661, - [SMALL_STATE(4926)] = 222674, - [SMALL_STATE(4927)] = 222687, - [SMALL_STATE(4928)] = 222698, - [SMALL_STATE(4929)] = 222707, - [SMALL_STATE(4930)] = 222720, - [SMALL_STATE(4931)] = 222729, - [SMALL_STATE(4932)] = 222742, - [SMALL_STATE(4933)] = 222755, - [SMALL_STATE(4934)] = 222768, - [SMALL_STATE(4935)] = 222781, - [SMALL_STATE(4936)] = 222794, - [SMALL_STATE(4937)] = 222807, - [SMALL_STATE(4938)] = 222820, - [SMALL_STATE(4939)] = 222833, - [SMALL_STATE(4940)] = 222846, - [SMALL_STATE(4941)] = 222859, - [SMALL_STATE(4942)] = 222872, - [SMALL_STATE(4943)] = 222885, - [SMALL_STATE(4944)] = 222898, - [SMALL_STATE(4945)] = 222909, - [SMALL_STATE(4946)] = 222922, - [SMALL_STATE(4947)] = 222935, - [SMALL_STATE(4948)] = 222948, - [SMALL_STATE(4949)] = 222961, - [SMALL_STATE(4950)] = 222974, - [SMALL_STATE(4951)] = 222987, - [SMALL_STATE(4952)] = 223000, - [SMALL_STATE(4953)] = 223009, - [SMALL_STATE(4954)] = 223022, - [SMALL_STATE(4955)] = 223033, - [SMALL_STATE(4956)] = 223044, - [SMALL_STATE(4957)] = 223057, - [SMALL_STATE(4958)] = 223066, - [SMALL_STATE(4959)] = 223077, - [SMALL_STATE(4960)] = 223090, - [SMALL_STATE(4961)] = 223101, - [SMALL_STATE(4962)] = 223112, - [SMALL_STATE(4963)] = 223123, - [SMALL_STATE(4964)] = 223132, - [SMALL_STATE(4965)] = 223143, - [SMALL_STATE(4966)] = 223156, - [SMALL_STATE(4967)] = 223169, - [SMALL_STATE(4968)] = 223182, - [SMALL_STATE(4969)] = 223195, - [SMALL_STATE(4970)] = 223208, - [SMALL_STATE(4971)] = 223219, - [SMALL_STATE(4972)] = 223228, - [SMALL_STATE(4973)] = 223237, - [SMALL_STATE(4974)] = 223246, - [SMALL_STATE(4975)] = 223259, - [SMALL_STATE(4976)] = 223272, - [SMALL_STATE(4977)] = 223285, - [SMALL_STATE(4978)] = 223298, - [SMALL_STATE(4979)] = 223311, - [SMALL_STATE(4980)] = 223322, - [SMALL_STATE(4981)] = 223335, - [SMALL_STATE(4982)] = 223348, - [SMALL_STATE(4983)] = 223361, - [SMALL_STATE(4984)] = 223374, - [SMALL_STATE(4985)] = 223383, - [SMALL_STATE(4986)] = 223396, - [SMALL_STATE(4987)] = 223409, - [SMALL_STATE(4988)] = 223422, - [SMALL_STATE(4989)] = 223433, - [SMALL_STATE(4990)] = 223446, - [SMALL_STATE(4991)] = 223459, - [SMALL_STATE(4992)] = 223470, - [SMALL_STATE(4993)] = 223483, - [SMALL_STATE(4994)] = 223496, - [SMALL_STATE(4995)] = 223507, - [SMALL_STATE(4996)] = 223516, - [SMALL_STATE(4997)] = 223529, - [SMALL_STATE(4998)] = 223542, - [SMALL_STATE(4999)] = 223555, - [SMALL_STATE(5000)] = 223568, - [SMALL_STATE(5001)] = 223581, - [SMALL_STATE(5002)] = 223594, - [SMALL_STATE(5003)] = 223603, - [SMALL_STATE(5004)] = 223616, - [SMALL_STATE(5005)] = 223629, - [SMALL_STATE(5006)] = 223642, - [SMALL_STATE(5007)] = 223655, - [SMALL_STATE(5008)] = 223668, - [SMALL_STATE(5009)] = 223681, - [SMALL_STATE(5010)] = 223694, - [SMALL_STATE(5011)] = 223707, - [SMALL_STATE(5012)] = 223720, - [SMALL_STATE(5013)] = 223733, - [SMALL_STATE(5014)] = 223746, - [SMALL_STATE(5015)] = 223759, - [SMALL_STATE(5016)] = 223772, - [SMALL_STATE(5017)] = 223785, - [SMALL_STATE(5018)] = 223798, - [SMALL_STATE(5019)] = 223807, - [SMALL_STATE(5020)] = 223820, - [SMALL_STATE(5021)] = 223833, - [SMALL_STATE(5022)] = 223846, - [SMALL_STATE(5023)] = 223859, - [SMALL_STATE(5024)] = 223872, - [SMALL_STATE(5025)] = 223885, - [SMALL_STATE(5026)] = 223898, - [SMALL_STATE(5027)] = 223907, - [SMALL_STATE(5028)] = 223920, - [SMALL_STATE(5029)] = 223933, - [SMALL_STATE(5030)] = 223946, - [SMALL_STATE(5031)] = 223955, - [SMALL_STATE(5032)] = 223968, - [SMALL_STATE(5033)] = 223977, - [SMALL_STATE(5034)] = 223986, - [SMALL_STATE(5035)] = 223999, - [SMALL_STATE(5036)] = 224010, - [SMALL_STATE(5037)] = 224019, - [SMALL_STATE(5038)] = 224028, - [SMALL_STATE(5039)] = 224037, - [SMALL_STATE(5040)] = 224050, - [SMALL_STATE(5041)] = 224063, - [SMALL_STATE(5042)] = 224076, - [SMALL_STATE(5043)] = 224089, - [SMALL_STATE(5044)] = 224102, - [SMALL_STATE(5045)] = 224115, - [SMALL_STATE(5046)] = 224124, - [SMALL_STATE(5047)] = 224137, - [SMALL_STATE(5048)] = 224150, - [SMALL_STATE(5049)] = 224163, - [SMALL_STATE(5050)] = 224176, - [SMALL_STATE(5051)] = 224189, - [SMALL_STATE(5052)] = 224202, - [SMALL_STATE(5053)] = 224215, - [SMALL_STATE(5054)] = 224228, - [SMALL_STATE(5055)] = 224241, - [SMALL_STATE(5056)] = 224254, - [SMALL_STATE(5057)] = 224267, - [SMALL_STATE(5058)] = 224280, - [SMALL_STATE(5059)] = 224293, - [SMALL_STATE(5060)] = 224306, - [SMALL_STATE(5061)] = 224319, - [SMALL_STATE(5062)] = 224328, - [SMALL_STATE(5063)] = 224337, - [SMALL_STATE(5064)] = 224350, - [SMALL_STATE(5065)] = 224363, - [SMALL_STATE(5066)] = 224376, - [SMALL_STATE(5067)] = 224385, - [SMALL_STATE(5068)] = 224398, - [SMALL_STATE(5069)] = 224411, - [SMALL_STATE(5070)] = 224424, - [SMALL_STATE(5071)] = 224435, - [SMALL_STATE(5072)] = 224448, - [SMALL_STATE(5073)] = 224461, - [SMALL_STATE(5074)] = 224472, - [SMALL_STATE(5075)] = 224481, - [SMALL_STATE(5076)] = 224490, - [SMALL_STATE(5077)] = 224499, - [SMALL_STATE(5078)] = 224508, - [SMALL_STATE(5079)] = 224517, - [SMALL_STATE(5080)] = 224528, - [SMALL_STATE(5081)] = 224541, - [SMALL_STATE(5082)] = 224550, - [SMALL_STATE(5083)] = 224563, - [SMALL_STATE(5084)] = 224572, - [SMALL_STATE(5085)] = 224581, - [SMALL_STATE(5086)] = 224594, - [SMALL_STATE(5087)] = 224605, - [SMALL_STATE(5088)] = 224618, - [SMALL_STATE(5089)] = 224631, - [SMALL_STATE(5090)] = 224644, - [SMALL_STATE(5091)] = 224655, - [SMALL_STATE(5092)] = 224666, - [SMALL_STATE(5093)] = 224679, - [SMALL_STATE(5094)] = 224692, - [SMALL_STATE(5095)] = 224705, - [SMALL_STATE(5096)] = 224716, - [SMALL_STATE(5097)] = 224729, - [SMALL_STATE(5098)] = 224742, - [SMALL_STATE(5099)] = 224755, - [SMALL_STATE(5100)] = 224768, - [SMALL_STATE(5101)] = 224781, - [SMALL_STATE(5102)] = 224794, - [SMALL_STATE(5103)] = 224807, - [SMALL_STATE(5104)] = 224820, - [SMALL_STATE(5105)] = 224833, - [SMALL_STATE(5106)] = 224846, - [SMALL_STATE(5107)] = 224859, - [SMALL_STATE(5108)] = 224872, - [SMALL_STATE(5109)] = 224881, - [SMALL_STATE(5110)] = 224894, - [SMALL_STATE(5111)] = 224907, - [SMALL_STATE(5112)] = 224920, - [SMALL_STATE(5113)] = 224929, - [SMALL_STATE(5114)] = 224938, - [SMALL_STATE(5115)] = 224949, - [SMALL_STATE(5116)] = 224962, - [SMALL_STATE(5117)] = 224975, - [SMALL_STATE(5118)] = 224984, - [SMALL_STATE(5119)] = 224997, - [SMALL_STATE(5120)] = 225010, - [SMALL_STATE(5121)] = 225019, - [SMALL_STATE(5122)] = 225032, - [SMALL_STATE(5123)] = 225045, - [SMALL_STATE(5124)] = 225054, - [SMALL_STATE(5125)] = 225067, - [SMALL_STATE(5126)] = 225080, - [SMALL_STATE(5127)] = 225089, - [SMALL_STATE(5128)] = 225098, - [SMALL_STATE(5129)] = 225107, - [SMALL_STATE(5130)] = 225116, - [SMALL_STATE(5131)] = 225129, - [SMALL_STATE(5132)] = 225142, - [SMALL_STATE(5133)] = 225155, - [SMALL_STATE(5134)] = 225164, - [SMALL_STATE(5135)] = 225177, - [SMALL_STATE(5136)] = 225190, - [SMALL_STATE(5137)] = 225199, - [SMALL_STATE(5138)] = 225212, - [SMALL_STATE(5139)] = 225221, - [SMALL_STATE(5140)] = 225230, - [SMALL_STATE(5141)] = 225239, - [SMALL_STATE(5142)] = 225250, - [SMALL_STATE(5143)] = 225259, - [SMALL_STATE(5144)] = 225268, - [SMALL_STATE(5145)] = 225281, - [SMALL_STATE(5146)] = 225294, - [SMALL_STATE(5147)] = 225307, - [SMALL_STATE(5148)] = 225316, - [SMALL_STATE(5149)] = 225329, - [SMALL_STATE(5150)] = 225342, - [SMALL_STATE(5151)] = 225351, - [SMALL_STATE(5152)] = 225361, - [SMALL_STATE(5153)] = 225369, - [SMALL_STATE(5154)] = 225379, - [SMALL_STATE(5155)] = 225387, - [SMALL_STATE(5156)] = 225397, - [SMALL_STATE(5157)] = 225407, - [SMALL_STATE(5158)] = 225417, - [SMALL_STATE(5159)] = 225427, - [SMALL_STATE(5160)] = 225437, - [SMALL_STATE(5161)] = 225447, - [SMALL_STATE(5162)] = 225455, - [SMALL_STATE(5163)] = 225465, - [SMALL_STATE(5164)] = 225473, - [SMALL_STATE(5165)] = 225483, - [SMALL_STATE(5166)] = 225493, - [SMALL_STATE(5167)] = 225503, - [SMALL_STATE(5168)] = 225513, - [SMALL_STATE(5169)] = 225523, - [SMALL_STATE(5170)] = 225533, - [SMALL_STATE(5171)] = 225543, - [SMALL_STATE(5172)] = 225553, - [SMALL_STATE(5173)] = 225563, - [SMALL_STATE(5174)] = 225573, - [SMALL_STATE(5175)] = 225583, - [SMALL_STATE(5176)] = 225593, - [SMALL_STATE(5177)] = 225603, - [SMALL_STATE(5178)] = 225613, - [SMALL_STATE(5179)] = 225623, - [SMALL_STATE(5180)] = 225633, - [SMALL_STATE(5181)] = 225643, - [SMALL_STATE(5182)] = 225653, - [SMALL_STATE(5183)] = 225663, - [SMALL_STATE(5184)] = 225671, - [SMALL_STATE(5185)] = 225681, - [SMALL_STATE(5186)] = 225689, - [SMALL_STATE(5187)] = 225699, - [SMALL_STATE(5188)] = 225709, - [SMALL_STATE(5189)] = 225719, - [SMALL_STATE(5190)] = 225729, - [SMALL_STATE(5191)] = 225739, - [SMALL_STATE(5192)] = 225749, - [SMALL_STATE(5193)] = 225759, - [SMALL_STATE(5194)] = 225767, - [SMALL_STATE(5195)] = 225777, - [SMALL_STATE(5196)] = 225787, - [SMALL_STATE(5197)] = 225797, - [SMALL_STATE(5198)] = 225807, - [SMALL_STATE(5199)] = 225815, - [SMALL_STATE(5200)] = 225825, - [SMALL_STATE(5201)] = 225835, - [SMALL_STATE(5202)] = 225845, - [SMALL_STATE(5203)] = 225855, - [SMALL_STATE(5204)] = 225865, - [SMALL_STATE(5205)] = 225875, - [SMALL_STATE(5206)] = 225885, - [SMALL_STATE(5207)] = 225895, - [SMALL_STATE(5208)] = 225905, - [SMALL_STATE(5209)] = 225915, - [SMALL_STATE(5210)] = 225925, - [SMALL_STATE(5211)] = 225935, - [SMALL_STATE(5212)] = 225943, - [SMALL_STATE(5213)] = 225953, - [SMALL_STATE(5214)] = 225963, - [SMALL_STATE(5215)] = 225971, - [SMALL_STATE(5216)] = 225981, - [SMALL_STATE(5217)] = 225989, - [SMALL_STATE(5218)] = 225999, - [SMALL_STATE(5219)] = 226009, - [SMALL_STATE(5220)] = 226019, - [SMALL_STATE(5221)] = 226029, - [SMALL_STATE(5222)] = 226039, - [SMALL_STATE(5223)] = 226049, - [SMALL_STATE(5224)] = 226059, - [SMALL_STATE(5225)] = 226069, - [SMALL_STATE(5226)] = 226077, - [SMALL_STATE(5227)] = 226087, - [SMALL_STATE(5228)] = 226095, - [SMALL_STATE(5229)] = 226105, - [SMALL_STATE(5230)] = 226113, - [SMALL_STATE(5231)] = 226121, - [SMALL_STATE(5232)] = 226129, - [SMALL_STATE(5233)] = 226139, - [SMALL_STATE(5234)] = 226149, - [SMALL_STATE(5235)] = 226159, - [SMALL_STATE(5236)] = 226169, - [SMALL_STATE(5237)] = 226179, - [SMALL_STATE(5238)] = 226187, - [SMALL_STATE(5239)] = 226197, - [SMALL_STATE(5240)] = 226207, - [SMALL_STATE(5241)] = 226217, - [SMALL_STATE(5242)] = 226227, - [SMALL_STATE(5243)] = 226237, - [SMALL_STATE(5244)] = 226247, - [SMALL_STATE(5245)] = 226257, - [SMALL_STATE(5246)] = 226267, - [SMALL_STATE(5247)] = 226277, - [SMALL_STATE(5248)] = 226287, - [SMALL_STATE(5249)] = 226297, - [SMALL_STATE(5250)] = 226307, - [SMALL_STATE(5251)] = 226317, - [SMALL_STATE(5252)] = 226327, - [SMALL_STATE(5253)] = 226337, - [SMALL_STATE(5254)] = 226347, - [SMALL_STATE(5255)] = 226357, - [SMALL_STATE(5256)] = 226367, - [SMALL_STATE(5257)] = 226377, - [SMALL_STATE(5258)] = 226387, - [SMALL_STATE(5259)] = 226397, - [SMALL_STATE(5260)] = 226407, - [SMALL_STATE(5261)] = 226417, - [SMALL_STATE(5262)] = 226427, - [SMALL_STATE(5263)] = 226437, - [SMALL_STATE(5264)] = 226447, - [SMALL_STATE(5265)] = 226457, - [SMALL_STATE(5266)] = 226467, - [SMALL_STATE(5267)] = 226477, - [SMALL_STATE(5268)] = 226485, - [SMALL_STATE(5269)] = 226495, - [SMALL_STATE(5270)] = 226505, - [SMALL_STATE(5271)] = 226515, - [SMALL_STATE(5272)] = 226525, - [SMALL_STATE(5273)] = 226535, - [SMALL_STATE(5274)] = 226545, - [SMALL_STATE(5275)] = 226555, - [SMALL_STATE(5276)] = 226565, - [SMALL_STATE(5277)] = 226575, - [SMALL_STATE(5278)] = 226585, - [SMALL_STATE(5279)] = 226595, - [SMALL_STATE(5280)] = 226605, - [SMALL_STATE(5281)] = 226615, - [SMALL_STATE(5282)] = 226625, - [SMALL_STATE(5283)] = 226635, - [SMALL_STATE(5284)] = 226645, - [SMALL_STATE(5285)] = 226655, - [SMALL_STATE(5286)] = 226665, - [SMALL_STATE(5287)] = 226673, - [SMALL_STATE(5288)] = 226683, - [SMALL_STATE(5289)] = 226693, - [SMALL_STATE(5290)] = 226703, - [SMALL_STATE(5291)] = 226713, - [SMALL_STATE(5292)] = 226723, - [SMALL_STATE(5293)] = 226733, - [SMALL_STATE(5294)] = 226743, - [SMALL_STATE(5295)] = 226753, - [SMALL_STATE(5296)] = 226763, - [SMALL_STATE(5297)] = 226773, - [SMALL_STATE(5298)] = 226783, - [SMALL_STATE(5299)] = 226791, - [SMALL_STATE(5300)] = 226801, - [SMALL_STATE(5301)] = 226809, - [SMALL_STATE(5302)] = 226819, - [SMALL_STATE(5303)] = 226829, - [SMALL_STATE(5304)] = 226839, - [SMALL_STATE(5305)] = 226847, - [SMALL_STATE(5306)] = 226857, - [SMALL_STATE(5307)] = 226867, - [SMALL_STATE(5308)] = 226875, - [SMALL_STATE(5309)] = 226885, - [SMALL_STATE(5310)] = 226895, - [SMALL_STATE(5311)] = 226903, - [SMALL_STATE(5312)] = 226913, - [SMALL_STATE(5313)] = 226923, - [SMALL_STATE(5314)] = 226933, - [SMALL_STATE(5315)] = 226943, - [SMALL_STATE(5316)] = 226951, - [SMALL_STATE(5317)] = 226961, - [SMALL_STATE(5318)] = 226971, - [SMALL_STATE(5319)] = 226981, - [SMALL_STATE(5320)] = 226991, - [SMALL_STATE(5321)] = 227001, - [SMALL_STATE(5322)] = 227011, - [SMALL_STATE(5323)] = 227021, - [SMALL_STATE(5324)] = 227031, - [SMALL_STATE(5325)] = 227041, - [SMALL_STATE(5326)] = 227051, - [SMALL_STATE(5327)] = 227061, - [SMALL_STATE(5328)] = 227071, - [SMALL_STATE(5329)] = 227081, - [SMALL_STATE(5330)] = 227091, - [SMALL_STATE(5331)] = 227101, - [SMALL_STATE(5332)] = 227111, - [SMALL_STATE(5333)] = 227119, - [SMALL_STATE(5334)] = 227127, - [SMALL_STATE(5335)] = 227137, - [SMALL_STATE(5336)] = 227147, - [SMALL_STATE(5337)] = 227157, - [SMALL_STATE(5338)] = 227167, - [SMALL_STATE(5339)] = 227177, - [SMALL_STATE(5340)] = 227187, - [SMALL_STATE(5341)] = 227197, - [SMALL_STATE(5342)] = 227207, - [SMALL_STATE(5343)] = 227215, - [SMALL_STATE(5344)] = 227223, - [SMALL_STATE(5345)] = 227233, - [SMALL_STATE(5346)] = 227243, - [SMALL_STATE(5347)] = 227253, - [SMALL_STATE(5348)] = 227261, - [SMALL_STATE(5349)] = 227269, - [SMALL_STATE(5350)] = 227277, - [SMALL_STATE(5351)] = 227287, - [SMALL_STATE(5352)] = 227297, - [SMALL_STATE(5353)] = 227307, - [SMALL_STATE(5354)] = 227317, - [SMALL_STATE(5355)] = 227327, - [SMALL_STATE(5356)] = 227337, - [SMALL_STATE(5357)] = 227347, - [SMALL_STATE(5358)] = 227357, - [SMALL_STATE(5359)] = 227365, - [SMALL_STATE(5360)] = 227375, - [SMALL_STATE(5361)] = 227385, - [SMALL_STATE(5362)] = 227395, - [SMALL_STATE(5363)] = 227405, - [SMALL_STATE(5364)] = 227415, - [SMALL_STATE(5365)] = 227425, - [SMALL_STATE(5366)] = 227433, - [SMALL_STATE(5367)] = 227443, - [SMALL_STATE(5368)] = 227453, - [SMALL_STATE(5369)] = 227461, - [SMALL_STATE(5370)] = 227471, - [SMALL_STATE(5371)] = 227481, - [SMALL_STATE(5372)] = 227491, - [SMALL_STATE(5373)] = 227501, - [SMALL_STATE(5374)] = 227511, - [SMALL_STATE(5375)] = 227521, - [SMALL_STATE(5376)] = 227531, - [SMALL_STATE(5377)] = 227539, - [SMALL_STATE(5378)] = 227549, - [SMALL_STATE(5379)] = 227557, - [SMALL_STATE(5380)] = 227565, - [SMALL_STATE(5381)] = 227575, - [SMALL_STATE(5382)] = 227585, - [SMALL_STATE(5383)] = 227595, - [SMALL_STATE(5384)] = 227603, - [SMALL_STATE(5385)] = 227613, - [SMALL_STATE(5386)] = 227621, - [SMALL_STATE(5387)] = 227631, - [SMALL_STATE(5388)] = 227641, - [SMALL_STATE(5389)] = 227651, - [SMALL_STATE(5390)] = 227661, - [SMALL_STATE(5391)] = 227671, - [SMALL_STATE(5392)] = 227681, - [SMALL_STATE(5393)] = 227689, - [SMALL_STATE(5394)] = 227699, - [SMALL_STATE(5395)] = 227709, - [SMALL_STATE(5396)] = 227717, - [SMALL_STATE(5397)] = 227727, - [SMALL_STATE(5398)] = 227737, - [SMALL_STATE(5399)] = 227747, - [SMALL_STATE(5400)] = 227757, - [SMALL_STATE(5401)] = 227767, - [SMALL_STATE(5402)] = 227777, - [SMALL_STATE(5403)] = 227787, - [SMALL_STATE(5404)] = 227797, - [SMALL_STATE(5405)] = 227807, - [SMALL_STATE(5406)] = 227817, - [SMALL_STATE(5407)] = 227827, - [SMALL_STATE(5408)] = 227835, - [SMALL_STATE(5409)] = 227845, - [SMALL_STATE(5410)] = 227855, - [SMALL_STATE(5411)] = 227863, - [SMALL_STATE(5412)] = 227871, - [SMALL_STATE(5413)] = 227879, - [SMALL_STATE(5414)] = 227889, - [SMALL_STATE(5415)] = 227899, - [SMALL_STATE(5416)] = 227909, - [SMALL_STATE(5417)] = 227919, - [SMALL_STATE(5418)] = 227927, - [SMALL_STATE(5419)] = 227935, - [SMALL_STATE(5420)] = 227943, - [SMALL_STATE(5421)] = 227953, - [SMALL_STATE(5422)] = 227961, - [SMALL_STATE(5423)] = 227969, - [SMALL_STATE(5424)] = 227979, - [SMALL_STATE(5425)] = 227989, - [SMALL_STATE(5426)] = 227997, - [SMALL_STATE(5427)] = 228007, - [SMALL_STATE(5428)] = 228017, - [SMALL_STATE(5429)] = 228027, - [SMALL_STATE(5430)] = 228035, - [SMALL_STATE(5431)] = 228043, - [SMALL_STATE(5432)] = 228053, - [SMALL_STATE(5433)] = 228063, - [SMALL_STATE(5434)] = 228071, - [SMALL_STATE(5435)] = 228081, - [SMALL_STATE(5436)] = 228091, - [SMALL_STATE(5437)] = 228099, - [SMALL_STATE(5438)] = 228109, - [SMALL_STATE(5439)] = 228119, - [SMALL_STATE(5440)] = 228129, - [SMALL_STATE(5441)] = 228139, - [SMALL_STATE(5442)] = 228149, - [SMALL_STATE(5443)] = 228159, - [SMALL_STATE(5444)] = 228169, - [SMALL_STATE(5445)] = 228179, - [SMALL_STATE(5446)] = 228187, - [SMALL_STATE(5447)] = 228195, - [SMALL_STATE(5448)] = 228205, - [SMALL_STATE(5449)] = 228213, - [SMALL_STATE(5450)] = 228223, - [SMALL_STATE(5451)] = 228233, - [SMALL_STATE(5452)] = 228243, - [SMALL_STATE(5453)] = 228253, - [SMALL_STATE(5454)] = 228261, - [SMALL_STATE(5455)] = 228271, - [SMALL_STATE(5456)] = 228279, - [SMALL_STATE(5457)] = 228287, - [SMALL_STATE(5458)] = 228294, - [SMALL_STATE(5459)] = 228301, - [SMALL_STATE(5460)] = 228308, - [SMALL_STATE(5461)] = 228315, - [SMALL_STATE(5462)] = 228322, - [SMALL_STATE(5463)] = 228329, - [SMALL_STATE(5464)] = 228336, - [SMALL_STATE(5465)] = 228343, - [SMALL_STATE(5466)] = 228350, - [SMALL_STATE(5467)] = 228357, - [SMALL_STATE(5468)] = 228364, - [SMALL_STATE(5469)] = 228371, - [SMALL_STATE(5470)] = 228378, - [SMALL_STATE(5471)] = 228385, - [SMALL_STATE(5472)] = 228392, - [SMALL_STATE(5473)] = 228399, - [SMALL_STATE(5474)] = 228406, - [SMALL_STATE(5475)] = 228413, - [SMALL_STATE(5476)] = 228420, - [SMALL_STATE(5477)] = 228427, - [SMALL_STATE(5478)] = 228434, - [SMALL_STATE(5479)] = 228441, - [SMALL_STATE(5480)] = 228448, - [SMALL_STATE(5481)] = 228455, - [SMALL_STATE(5482)] = 228462, - [SMALL_STATE(5483)] = 228469, - [SMALL_STATE(5484)] = 228476, - [SMALL_STATE(5485)] = 228483, - [SMALL_STATE(5486)] = 228490, - [SMALL_STATE(5487)] = 228497, - [SMALL_STATE(5488)] = 228504, - [SMALL_STATE(5489)] = 228511, - [SMALL_STATE(5490)] = 228518, - [SMALL_STATE(5491)] = 228525, - [SMALL_STATE(5492)] = 228532, - [SMALL_STATE(5493)] = 228539, - [SMALL_STATE(5494)] = 228546, - [SMALL_STATE(5495)] = 228553, - [SMALL_STATE(5496)] = 228560, - [SMALL_STATE(5497)] = 228567, - [SMALL_STATE(5498)] = 228574, - [SMALL_STATE(5499)] = 228581, - [SMALL_STATE(5500)] = 228588, - [SMALL_STATE(5501)] = 228595, - [SMALL_STATE(5502)] = 228602, - [SMALL_STATE(5503)] = 228609, - [SMALL_STATE(5504)] = 228616, - [SMALL_STATE(5505)] = 228623, - [SMALL_STATE(5506)] = 228630, - [SMALL_STATE(5507)] = 228637, - [SMALL_STATE(5508)] = 228644, - [SMALL_STATE(5509)] = 228651, - [SMALL_STATE(5510)] = 228658, - [SMALL_STATE(5511)] = 228665, - [SMALL_STATE(5512)] = 228672, - [SMALL_STATE(5513)] = 228679, - [SMALL_STATE(5514)] = 228686, - [SMALL_STATE(5515)] = 228693, - [SMALL_STATE(5516)] = 228700, - [SMALL_STATE(5517)] = 228707, - [SMALL_STATE(5518)] = 228714, - [SMALL_STATE(5519)] = 228721, - [SMALL_STATE(5520)] = 228728, - [SMALL_STATE(5521)] = 228735, - [SMALL_STATE(5522)] = 228742, - [SMALL_STATE(5523)] = 228749, - [SMALL_STATE(5524)] = 228756, - [SMALL_STATE(5525)] = 228763, - [SMALL_STATE(5526)] = 228770, - [SMALL_STATE(5527)] = 228777, - [SMALL_STATE(5528)] = 228784, - [SMALL_STATE(5529)] = 228791, - [SMALL_STATE(5530)] = 228798, - [SMALL_STATE(5531)] = 228805, - [SMALL_STATE(5532)] = 228812, - [SMALL_STATE(5533)] = 228819, - [SMALL_STATE(5534)] = 228826, - [SMALL_STATE(5535)] = 228833, - [SMALL_STATE(5536)] = 228840, - [SMALL_STATE(5537)] = 228847, - [SMALL_STATE(5538)] = 228854, - [SMALL_STATE(5539)] = 228861, - [SMALL_STATE(5540)] = 228868, - [SMALL_STATE(5541)] = 228875, - [SMALL_STATE(5542)] = 228882, - [SMALL_STATE(5543)] = 228889, - [SMALL_STATE(5544)] = 228896, - [SMALL_STATE(5545)] = 228903, - [SMALL_STATE(5546)] = 228910, - [SMALL_STATE(5547)] = 228917, - [SMALL_STATE(5548)] = 228924, - [SMALL_STATE(5549)] = 228931, - [SMALL_STATE(5550)] = 228938, - [SMALL_STATE(5551)] = 228945, - [SMALL_STATE(5552)] = 228952, - [SMALL_STATE(5553)] = 228959, - [SMALL_STATE(5554)] = 228966, - [SMALL_STATE(5555)] = 228973, - [SMALL_STATE(5556)] = 228980, - [SMALL_STATE(5557)] = 228987, - [SMALL_STATE(5558)] = 228994, - [SMALL_STATE(5559)] = 229001, - [SMALL_STATE(5560)] = 229008, - [SMALL_STATE(5561)] = 229015, - [SMALL_STATE(5562)] = 229022, - [SMALL_STATE(5563)] = 229029, - [SMALL_STATE(5564)] = 229036, - [SMALL_STATE(5565)] = 229043, - [SMALL_STATE(5566)] = 229050, - [SMALL_STATE(5567)] = 229057, - [SMALL_STATE(5568)] = 229064, - [SMALL_STATE(5569)] = 229071, - [SMALL_STATE(5570)] = 229078, - [SMALL_STATE(5571)] = 229085, - [SMALL_STATE(5572)] = 229092, - [SMALL_STATE(5573)] = 229099, - [SMALL_STATE(5574)] = 229106, - [SMALL_STATE(5575)] = 229113, - [SMALL_STATE(5576)] = 229120, - [SMALL_STATE(5577)] = 229127, - [SMALL_STATE(5578)] = 229134, - [SMALL_STATE(5579)] = 229141, - [SMALL_STATE(5580)] = 229148, - [SMALL_STATE(5581)] = 229155, - [SMALL_STATE(5582)] = 229162, - [SMALL_STATE(5583)] = 229169, - [SMALL_STATE(5584)] = 229176, - [SMALL_STATE(5585)] = 229183, - [SMALL_STATE(5586)] = 229190, - [SMALL_STATE(5587)] = 229197, - [SMALL_STATE(5588)] = 229204, - [SMALL_STATE(5589)] = 229211, - [SMALL_STATE(5590)] = 229218, - [SMALL_STATE(5591)] = 229225, - [SMALL_STATE(5592)] = 229232, - [SMALL_STATE(5593)] = 229239, - [SMALL_STATE(5594)] = 229246, - [SMALL_STATE(5595)] = 229253, - [SMALL_STATE(5596)] = 229260, - [SMALL_STATE(5597)] = 229267, - [SMALL_STATE(5598)] = 229274, - [SMALL_STATE(5599)] = 229281, - [SMALL_STATE(5600)] = 229288, - [SMALL_STATE(5601)] = 229295, - [SMALL_STATE(5602)] = 229302, - [SMALL_STATE(5603)] = 229309, - [SMALL_STATE(5604)] = 229316, - [SMALL_STATE(5605)] = 229323, - [SMALL_STATE(5606)] = 229330, - [SMALL_STATE(5607)] = 229337, - [SMALL_STATE(5608)] = 229344, - [SMALL_STATE(5609)] = 229351, - [SMALL_STATE(5610)] = 229358, - [SMALL_STATE(5611)] = 229365, - [SMALL_STATE(5612)] = 229372, - [SMALL_STATE(5613)] = 229379, - [SMALL_STATE(5614)] = 229386, - [SMALL_STATE(5615)] = 229393, - [SMALL_STATE(5616)] = 229400, - [SMALL_STATE(5617)] = 229407, - [SMALL_STATE(5618)] = 229414, - [SMALL_STATE(5619)] = 229421, - [SMALL_STATE(5620)] = 229428, - [SMALL_STATE(5621)] = 229435, - [SMALL_STATE(5622)] = 229442, - [SMALL_STATE(5623)] = 229449, - [SMALL_STATE(5624)] = 229456, - [SMALL_STATE(5625)] = 229463, - [SMALL_STATE(5626)] = 229470, - [SMALL_STATE(5627)] = 229477, - [SMALL_STATE(5628)] = 229484, - [SMALL_STATE(5629)] = 229491, - [SMALL_STATE(5630)] = 229498, - [SMALL_STATE(5631)] = 229505, - [SMALL_STATE(5632)] = 229512, - [SMALL_STATE(5633)] = 229519, - [SMALL_STATE(5634)] = 229526, - [SMALL_STATE(5635)] = 229533, - [SMALL_STATE(5636)] = 229540, - [SMALL_STATE(5637)] = 229547, - [SMALL_STATE(5638)] = 229554, - [SMALL_STATE(5639)] = 229561, - [SMALL_STATE(5640)] = 229568, - [SMALL_STATE(5641)] = 229575, - [SMALL_STATE(5642)] = 229582, - [SMALL_STATE(5643)] = 229589, - [SMALL_STATE(5644)] = 229596, - [SMALL_STATE(5645)] = 229603, - [SMALL_STATE(5646)] = 229610, - [SMALL_STATE(5647)] = 229617, - [SMALL_STATE(5648)] = 229624, - [SMALL_STATE(5649)] = 229631, - [SMALL_STATE(5650)] = 229638, - [SMALL_STATE(5651)] = 229645, - [SMALL_STATE(5652)] = 229652, - [SMALL_STATE(5653)] = 229659, - [SMALL_STATE(5654)] = 229666, - [SMALL_STATE(5655)] = 229673, - [SMALL_STATE(5656)] = 229680, - [SMALL_STATE(5657)] = 229687, - [SMALL_STATE(5658)] = 229694, - [SMALL_STATE(5659)] = 229701, - [SMALL_STATE(5660)] = 229708, - [SMALL_STATE(5661)] = 229715, - [SMALL_STATE(5662)] = 229722, - [SMALL_STATE(5663)] = 229729, - [SMALL_STATE(5664)] = 229736, - [SMALL_STATE(5665)] = 229743, - [SMALL_STATE(5666)] = 229750, - [SMALL_STATE(5667)] = 229757, - [SMALL_STATE(5668)] = 229764, - [SMALL_STATE(5669)] = 229771, - [SMALL_STATE(5670)] = 229778, - [SMALL_STATE(5671)] = 229785, - [SMALL_STATE(5672)] = 229792, - [SMALL_STATE(5673)] = 229799, - [SMALL_STATE(5674)] = 229806, - [SMALL_STATE(5675)] = 229813, - [SMALL_STATE(5676)] = 229820, - [SMALL_STATE(5677)] = 229827, - [SMALL_STATE(5678)] = 229834, - [SMALL_STATE(5679)] = 229841, - [SMALL_STATE(5680)] = 229848, - [SMALL_STATE(5681)] = 229855, - [SMALL_STATE(5682)] = 229862, - [SMALL_STATE(5683)] = 229869, - [SMALL_STATE(5684)] = 229876, - [SMALL_STATE(5685)] = 229883, - [SMALL_STATE(5686)] = 229890, - [SMALL_STATE(5687)] = 229897, - [SMALL_STATE(5688)] = 229904, - [SMALL_STATE(5689)] = 229911, - [SMALL_STATE(5690)] = 229918, - [SMALL_STATE(5691)] = 229925, - [SMALL_STATE(5692)] = 229932, - [SMALL_STATE(5693)] = 229939, - [SMALL_STATE(5694)] = 229946, - [SMALL_STATE(5695)] = 229953, - [SMALL_STATE(5696)] = 229960, - [SMALL_STATE(5697)] = 229967, - [SMALL_STATE(5698)] = 229974, - [SMALL_STATE(5699)] = 229981, - [SMALL_STATE(5700)] = 229988, - [SMALL_STATE(5701)] = 229995, - [SMALL_STATE(5702)] = 230002, - [SMALL_STATE(5703)] = 230009, - [SMALL_STATE(5704)] = 230016, - [SMALL_STATE(5705)] = 230023, - [SMALL_STATE(5706)] = 230030, - [SMALL_STATE(5707)] = 230037, - [SMALL_STATE(5708)] = 230044, - [SMALL_STATE(5709)] = 230051, - [SMALL_STATE(5710)] = 230058, - [SMALL_STATE(5711)] = 230065, - [SMALL_STATE(5712)] = 230072, - [SMALL_STATE(5713)] = 230079, - [SMALL_STATE(5714)] = 230086, - [SMALL_STATE(5715)] = 230093, - [SMALL_STATE(5716)] = 230100, - [SMALL_STATE(5717)] = 230107, - [SMALL_STATE(5718)] = 230114, - [SMALL_STATE(5719)] = 230121, - [SMALL_STATE(5720)] = 230128, - [SMALL_STATE(5721)] = 230135, - [SMALL_STATE(5722)] = 230142, - [SMALL_STATE(5723)] = 230149, - [SMALL_STATE(5724)] = 230156, - [SMALL_STATE(5725)] = 230163, - [SMALL_STATE(5726)] = 230170, - [SMALL_STATE(5727)] = 230177, - [SMALL_STATE(5728)] = 230184, - [SMALL_STATE(5729)] = 230191, - [SMALL_STATE(5730)] = 230198, - [SMALL_STATE(5731)] = 230205, - [SMALL_STATE(5732)] = 230212, - [SMALL_STATE(5733)] = 230219, - [SMALL_STATE(5734)] = 230226, - [SMALL_STATE(5735)] = 230233, - [SMALL_STATE(5736)] = 230240, - [SMALL_STATE(5737)] = 230247, - [SMALL_STATE(5738)] = 230254, - [SMALL_STATE(5739)] = 230261, - [SMALL_STATE(5740)] = 230268, - [SMALL_STATE(5741)] = 230275, - [SMALL_STATE(5742)] = 230282, - [SMALL_STATE(5743)] = 230289, - [SMALL_STATE(5744)] = 230296, - [SMALL_STATE(5745)] = 230303, - [SMALL_STATE(5746)] = 230310, - [SMALL_STATE(5747)] = 230317, - [SMALL_STATE(5748)] = 230324, - [SMALL_STATE(5749)] = 230331, - [SMALL_STATE(5750)] = 230338, - [SMALL_STATE(5751)] = 230345, - [SMALL_STATE(5752)] = 230352, - [SMALL_STATE(5753)] = 230359, - [SMALL_STATE(5754)] = 230366, - [SMALL_STATE(5755)] = 230373, - [SMALL_STATE(5756)] = 230380, - [SMALL_STATE(5757)] = 230387, - [SMALL_STATE(5758)] = 230394, - [SMALL_STATE(5759)] = 230401, - [SMALL_STATE(5760)] = 230408, - [SMALL_STATE(5761)] = 230415, - [SMALL_STATE(5762)] = 230422, - [SMALL_STATE(5763)] = 230429, - [SMALL_STATE(5764)] = 230436, - [SMALL_STATE(5765)] = 230443, - [SMALL_STATE(5766)] = 230450, - [SMALL_STATE(5767)] = 230457, - [SMALL_STATE(5768)] = 230464, - [SMALL_STATE(5769)] = 230471, - [SMALL_STATE(5770)] = 230478, - [SMALL_STATE(5771)] = 230485, - [SMALL_STATE(5772)] = 230492, - [SMALL_STATE(5773)] = 230499, - [SMALL_STATE(5774)] = 230506, - [SMALL_STATE(5775)] = 230513, - [SMALL_STATE(5776)] = 230520, - [SMALL_STATE(5777)] = 230527, - [SMALL_STATE(5778)] = 230534, - [SMALL_STATE(5779)] = 230541, - [SMALL_STATE(5780)] = 230548, - [SMALL_STATE(5781)] = 230555, - [SMALL_STATE(5782)] = 230562, - [SMALL_STATE(5783)] = 230569, - [SMALL_STATE(5784)] = 230576, - [SMALL_STATE(5785)] = 230583, - [SMALL_STATE(5786)] = 230590, - [SMALL_STATE(5787)] = 230597, - [SMALL_STATE(5788)] = 230604, - [SMALL_STATE(5789)] = 230611, - [SMALL_STATE(5790)] = 230618, - [SMALL_STATE(5791)] = 230625, - [SMALL_STATE(5792)] = 230632, - [SMALL_STATE(5793)] = 230639, - [SMALL_STATE(5794)] = 230646, - [SMALL_STATE(5795)] = 230653, - [SMALL_STATE(5796)] = 230660, - [SMALL_STATE(5797)] = 230667, - [SMALL_STATE(5798)] = 230674, - [SMALL_STATE(5799)] = 230681, - [SMALL_STATE(5800)] = 230688, - [SMALL_STATE(5801)] = 230695, - [SMALL_STATE(5802)] = 230702, - [SMALL_STATE(5803)] = 230709, - [SMALL_STATE(5804)] = 230716, - [SMALL_STATE(5805)] = 230723, - [SMALL_STATE(5806)] = 230730, - [SMALL_STATE(5807)] = 230737, - [SMALL_STATE(5808)] = 230744, - [SMALL_STATE(5809)] = 230751, - [SMALL_STATE(5810)] = 230758, - [SMALL_STATE(5811)] = 230765, - [SMALL_STATE(5812)] = 230772, - [SMALL_STATE(5813)] = 230779, - [SMALL_STATE(5814)] = 230786, - [SMALL_STATE(5815)] = 230793, - [SMALL_STATE(5816)] = 230800, - [SMALL_STATE(5817)] = 230807, - [SMALL_STATE(5818)] = 230814, - [SMALL_STATE(5819)] = 230821, - [SMALL_STATE(5820)] = 230828, - [SMALL_STATE(5821)] = 230835, - [SMALL_STATE(5822)] = 230842, - [SMALL_STATE(5823)] = 230849, - [SMALL_STATE(5824)] = 230856, - [SMALL_STATE(5825)] = 230863, - [SMALL_STATE(5826)] = 230870, - [SMALL_STATE(5827)] = 230877, - [SMALL_STATE(5828)] = 230884, - [SMALL_STATE(5829)] = 230891, - [SMALL_STATE(5830)] = 230898, + [SMALL_STATE(1697)] = 44655, + [SMALL_STATE(1698)] = 44777, + [SMALL_STATE(1699)] = 44851, + [SMALL_STATE(1700)] = 44973, + [SMALL_STATE(1701)] = 45095, + [SMALL_STATE(1702)] = 45217, + [SMALL_STATE(1703)] = 45287, + [SMALL_STATE(1704)] = 45409, + [SMALL_STATE(1705)] = 45531, + [SMALL_STATE(1706)] = 45653, + [SMALL_STATE(1707)] = 45775, + [SMALL_STATE(1708)] = 45897, + [SMALL_STATE(1709)] = 46019, + [SMALL_STATE(1710)] = 46141, + [SMALL_STATE(1711)] = 46215, + [SMALL_STATE(1712)] = 46337, + [SMALL_STATE(1713)] = 46459, + [SMALL_STATE(1714)] = 46581, + [SMALL_STATE(1715)] = 46703, + [SMALL_STATE(1716)] = 46825, + [SMALL_STATE(1717)] = 46947, + [SMALL_STATE(1718)] = 47069, + [SMALL_STATE(1719)] = 47191, + [SMALL_STATE(1720)] = 47313, + [SMALL_STATE(1721)] = 47435, + [SMALL_STATE(1722)] = 47557, + [SMALL_STATE(1723)] = 47679, + [SMALL_STATE(1724)] = 47761, + [SMALL_STATE(1725)] = 47883, + [SMALL_STATE(1726)] = 48005, + [SMALL_STATE(1727)] = 48127, + [SMALL_STATE(1728)] = 48249, + [SMALL_STATE(1729)] = 48371, + [SMALL_STATE(1730)] = 48493, + [SMALL_STATE(1731)] = 48615, + [SMALL_STATE(1732)] = 48737, + [SMALL_STATE(1733)] = 48859, + [SMALL_STATE(1734)] = 48981, + [SMALL_STATE(1735)] = 49103, + [SMALL_STATE(1736)] = 49225, + [SMALL_STATE(1737)] = 49347, + [SMALL_STATE(1738)] = 49469, + [SMALL_STATE(1739)] = 49591, + [SMALL_STATE(1740)] = 49661, + [SMALL_STATE(1741)] = 49783, + [SMALL_STATE(1742)] = 49905, + [SMALL_STATE(1743)] = 50027, + [SMALL_STATE(1744)] = 50149, + [SMALL_STATE(1745)] = 50271, + [SMALL_STATE(1746)] = 50343, + [SMALL_STATE(1747)] = 50465, + [SMALL_STATE(1748)] = 50537, + [SMALL_STATE(1749)] = 50607, + [SMALL_STATE(1750)] = 50683, + [SMALL_STATE(1751)] = 50805, + [SMALL_STATE(1752)] = 50927, + [SMALL_STATE(1753)] = 50995, + [SMALL_STATE(1754)] = 51065, + [SMALL_STATE(1755)] = 51187, + [SMALL_STATE(1756)] = 51309, + [SMALL_STATE(1757)] = 51431, + [SMALL_STATE(1758)] = 51553, + [SMALL_STATE(1759)] = 51675, + [SMALL_STATE(1760)] = 51797, + [SMALL_STATE(1761)] = 51919, + [SMALL_STATE(1762)] = 52041, + [SMALL_STATE(1763)] = 52163, + [SMALL_STATE(1764)] = 52285, + [SMALL_STATE(1765)] = 52407, + [SMALL_STATE(1766)] = 52483, + [SMALL_STATE(1767)] = 52605, + [SMALL_STATE(1768)] = 52727, + [SMALL_STATE(1769)] = 52849, + [SMALL_STATE(1770)] = 52971, + [SMALL_STATE(1771)] = 53093, + [SMALL_STATE(1772)] = 53215, + [SMALL_STATE(1773)] = 53337, + [SMALL_STATE(1774)] = 53459, + [SMALL_STATE(1775)] = 53581, + [SMALL_STATE(1776)] = 53703, + [SMALL_STATE(1777)] = 53825, + [SMALL_STATE(1778)] = 53947, + [SMALL_STATE(1779)] = 54069, + [SMALL_STATE(1780)] = 54191, + [SMALL_STATE(1781)] = 54313, + [SMALL_STATE(1782)] = 54383, + [SMALL_STATE(1783)] = 54505, + [SMALL_STATE(1784)] = 54627, + [SMALL_STATE(1785)] = 54749, + [SMALL_STATE(1786)] = 54871, + [SMALL_STATE(1787)] = 54993, + [SMALL_STATE(1788)] = 55115, + [SMALL_STATE(1789)] = 55237, + [SMALL_STATE(1790)] = 55359, + [SMALL_STATE(1791)] = 55429, + [SMALL_STATE(1792)] = 55501, + [SMALL_STATE(1793)] = 55577, + [SMALL_STATE(1794)] = 55647, + [SMALL_STATE(1795)] = 55769, + [SMALL_STATE(1796)] = 55851, + [SMALL_STATE(1797)] = 55921, + [SMALL_STATE(1798)] = 56043, + [SMALL_STATE(1799)] = 56165, + [SMALL_STATE(1800)] = 56287, + [SMALL_STATE(1801)] = 56409, + [SMALL_STATE(1802)] = 56531, + [SMALL_STATE(1803)] = 56653, + [SMALL_STATE(1804)] = 56775, + [SMALL_STATE(1805)] = 56897, + [SMALL_STATE(1806)] = 57019, + [SMALL_STATE(1807)] = 57141, + [SMALL_STATE(1808)] = 57263, + [SMALL_STATE(1809)] = 57385, + [SMALL_STATE(1810)] = 57507, + [SMALL_STATE(1811)] = 57629, + [SMALL_STATE(1812)] = 57699, + [SMALL_STATE(1813)] = 57821, + [SMALL_STATE(1814)] = 57943, + [SMALL_STATE(1815)] = 58065, + [SMALL_STATE(1816)] = 58187, + [SMALL_STATE(1817)] = 58309, + [SMALL_STATE(1818)] = 58431, + [SMALL_STATE(1819)] = 58553, + [SMALL_STATE(1820)] = 58675, + [SMALL_STATE(1821)] = 58745, + [SMALL_STATE(1822)] = 58867, + [SMALL_STATE(1823)] = 58989, + [SMALL_STATE(1824)] = 59111, + [SMALL_STATE(1825)] = 59233, + [SMALL_STATE(1826)] = 59355, + [SMALL_STATE(1827)] = 59477, + [SMALL_STATE(1828)] = 59599, + [SMALL_STATE(1829)] = 59721, + [SMALL_STATE(1830)] = 59843, + [SMALL_STATE(1831)] = 59921, + [SMALL_STATE(1832)] = 60043, + [SMALL_STATE(1833)] = 60165, + [SMALL_STATE(1834)] = 60287, + [SMALL_STATE(1835)] = 60409, + [SMALL_STATE(1836)] = 60489, + [SMALL_STATE(1837)] = 60611, + [SMALL_STATE(1838)] = 60733, + [SMALL_STATE(1839)] = 60855, + [SMALL_STATE(1840)] = 60931, + [SMALL_STATE(1841)] = 61053, + [SMALL_STATE(1842)] = 61123, + [SMALL_STATE(1843)] = 61245, + [SMALL_STATE(1844)] = 61367, + [SMALL_STATE(1845)] = 61437, + [SMALL_STATE(1846)] = 61559, + [SMALL_STATE(1847)] = 61681, + [SMALL_STATE(1848)] = 61803, + [SMALL_STATE(1849)] = 61925, + [SMALL_STATE(1850)] = 62047, + [SMALL_STATE(1851)] = 62169, + [SMALL_STATE(1852)] = 62291, + [SMALL_STATE(1853)] = 62413, + [SMALL_STATE(1854)] = 62535, + [SMALL_STATE(1855)] = 62657, + [SMALL_STATE(1856)] = 62779, + [SMALL_STATE(1857)] = 62901, + [SMALL_STATE(1858)] = 63023, + [SMALL_STATE(1859)] = 63145, + [SMALL_STATE(1860)] = 63267, + [SMALL_STATE(1861)] = 63389, + [SMALL_STATE(1862)] = 63511, + [SMALL_STATE(1863)] = 63633, + [SMALL_STATE(1864)] = 63755, + [SMALL_STATE(1865)] = 63877, + [SMALL_STATE(1866)] = 63999, + [SMALL_STATE(1867)] = 64121, + [SMALL_STATE(1868)] = 64243, + [SMALL_STATE(1869)] = 64365, + [SMALL_STATE(1870)] = 64487, + [SMALL_STATE(1871)] = 64609, + [SMALL_STATE(1872)] = 64731, + [SMALL_STATE(1873)] = 64853, + [SMALL_STATE(1874)] = 64975, + [SMALL_STATE(1875)] = 65097, + [SMALL_STATE(1876)] = 65219, + [SMALL_STATE(1877)] = 65341, + [SMALL_STATE(1878)] = 65463, + [SMALL_STATE(1879)] = 65585, + [SMALL_STATE(1880)] = 65707, + [SMALL_STATE(1881)] = 65775, + [SMALL_STATE(1882)] = 65845, + [SMALL_STATE(1883)] = 65967, + [SMALL_STATE(1884)] = 66089, + [SMALL_STATE(1885)] = 66211, + [SMALL_STATE(1886)] = 66333, + [SMALL_STATE(1887)] = 66455, + [SMALL_STATE(1888)] = 66577, + [SMALL_STATE(1889)] = 66699, + [SMALL_STATE(1890)] = 66821, + [SMALL_STATE(1891)] = 66943, + [SMALL_STATE(1892)] = 67065, + [SMALL_STATE(1893)] = 67187, + [SMALL_STATE(1894)] = 67257, + [SMALL_STATE(1895)] = 67379, + [SMALL_STATE(1896)] = 67449, + [SMALL_STATE(1897)] = 67571, + [SMALL_STATE(1898)] = 67693, + [SMALL_STATE(1899)] = 67815, + [SMALL_STATE(1900)] = 67937, + [SMALL_STATE(1901)] = 68059, + [SMALL_STATE(1902)] = 68129, + [SMALL_STATE(1903)] = 68251, + [SMALL_STATE(1904)] = 68373, + [SMALL_STATE(1905)] = 68495, + [SMALL_STATE(1906)] = 68617, + [SMALL_STATE(1907)] = 68739, + [SMALL_STATE(1908)] = 68861, + [SMALL_STATE(1909)] = 68983, + [SMALL_STATE(1910)] = 69105, + [SMALL_STATE(1911)] = 69227, + [SMALL_STATE(1912)] = 69349, + [SMALL_STATE(1913)] = 69471, + [SMALL_STATE(1914)] = 69593, + [SMALL_STATE(1915)] = 69715, + [SMALL_STATE(1916)] = 69837, + [SMALL_STATE(1917)] = 69959, + [SMALL_STATE(1918)] = 70081, + [SMALL_STATE(1919)] = 70203, + [SMALL_STATE(1920)] = 70325, + [SMALL_STATE(1921)] = 70447, + [SMALL_STATE(1922)] = 70569, + [SMALL_STATE(1923)] = 70691, + [SMALL_STATE(1924)] = 70761, + [SMALL_STATE(1925)] = 70835, + [SMALL_STATE(1926)] = 70957, + [SMALL_STATE(1927)] = 71079, + [SMALL_STATE(1928)] = 71201, + [SMALL_STATE(1929)] = 71323, + [SMALL_STATE(1930)] = 71445, + [SMALL_STATE(1931)] = 71515, + [SMALL_STATE(1932)] = 71637, + [SMALL_STATE(1933)] = 71759, + [SMALL_STATE(1934)] = 71881, + [SMALL_STATE(1935)] = 72003, + [SMALL_STATE(1936)] = 72125, + [SMALL_STATE(1937)] = 72247, + [SMALL_STATE(1938)] = 72369, + [SMALL_STATE(1939)] = 72491, + [SMALL_STATE(1940)] = 72613, + [SMALL_STATE(1941)] = 72735, + [SMALL_STATE(1942)] = 72811, + [SMALL_STATE(1943)] = 72933, + [SMALL_STATE(1944)] = 73055, + [SMALL_STATE(1945)] = 73177, + [SMALL_STATE(1946)] = 73299, + [SMALL_STATE(1947)] = 73421, + [SMALL_STATE(1948)] = 73543, + [SMALL_STATE(1949)] = 73665, + [SMALL_STATE(1950)] = 73787, + [SMALL_STATE(1951)] = 73909, + [SMALL_STATE(1952)] = 74031, + [SMALL_STATE(1953)] = 74153, + [SMALL_STATE(1954)] = 74275, + [SMALL_STATE(1955)] = 74397, + [SMALL_STATE(1956)] = 74519, + [SMALL_STATE(1957)] = 74641, + [SMALL_STATE(1958)] = 74763, + [SMALL_STATE(1959)] = 74885, + [SMALL_STATE(1960)] = 75007, + [SMALL_STATE(1961)] = 75129, + [SMALL_STATE(1962)] = 75251, + [SMALL_STATE(1963)] = 75373, + [SMALL_STATE(1964)] = 75495, + [SMALL_STATE(1965)] = 75565, + [SMALL_STATE(1966)] = 75687, + [SMALL_STATE(1967)] = 75809, + [SMALL_STATE(1968)] = 75931, + [SMALL_STATE(1969)] = 76053, + [SMALL_STATE(1970)] = 76175, + [SMALL_STATE(1971)] = 76297, + [SMALL_STATE(1972)] = 76419, + [SMALL_STATE(1973)] = 76541, + [SMALL_STATE(1974)] = 76663, + [SMALL_STATE(1975)] = 76785, + [SMALL_STATE(1976)] = 76907, + [SMALL_STATE(1977)] = 76977, + [SMALL_STATE(1978)] = 77099, + [SMALL_STATE(1979)] = 77221, + [SMALL_STATE(1980)] = 77343, + [SMALL_STATE(1981)] = 77465, + [SMALL_STATE(1982)] = 77547, + [SMALL_STATE(1983)] = 77669, + [SMALL_STATE(1984)] = 77791, + [SMALL_STATE(1985)] = 77913, + [SMALL_STATE(1986)] = 78035, + [SMALL_STATE(1987)] = 78157, + [SMALL_STATE(1988)] = 78279, + [SMALL_STATE(1989)] = 78401, + [SMALL_STATE(1990)] = 78523, + [SMALL_STATE(1991)] = 78645, + [SMALL_STATE(1992)] = 78767, + [SMALL_STATE(1993)] = 78889, + [SMALL_STATE(1994)] = 79011, + [SMALL_STATE(1995)] = 79133, + [SMALL_STATE(1996)] = 79255, + [SMALL_STATE(1997)] = 79377, + [SMALL_STATE(1998)] = 79499, + [SMALL_STATE(1999)] = 79621, + [SMALL_STATE(2000)] = 79743, + [SMALL_STATE(2001)] = 79865, + [SMALL_STATE(2002)] = 79987, + [SMALL_STATE(2003)] = 80109, + [SMALL_STATE(2004)] = 80179, + [SMALL_STATE(2005)] = 80301, + [SMALL_STATE(2006)] = 80423, + [SMALL_STATE(2007)] = 80545, + [SMALL_STATE(2008)] = 80667, + [SMALL_STATE(2009)] = 80736, + [SMALL_STATE(2010)] = 80799, + [SMALL_STATE(2011)] = 80866, + [SMALL_STATE(2012)] = 80935, + [SMALL_STATE(2013)] = 81004, + [SMALL_STATE(2014)] = 81077, + [SMALL_STATE(2015)] = 81144, + [SMALL_STATE(2016)] = 81215, + [SMALL_STATE(2017)] = 81284, + [SMALL_STATE(2018)] = 81353, + [SMALL_STATE(2019)] = 81422, + [SMALL_STATE(2020)] = 81485, + [SMALL_STATE(2021)] = 81560, + [SMALL_STATE(2022)] = 81633, + [SMALL_STATE(2023)] = 81700, + [SMALL_STATE(2024)] = 81769, + [SMALL_STATE(2025)] = 81848, + [SMALL_STATE(2026)] = 81917, + [SMALL_STATE(2027)] = 81980, + [SMALL_STATE(2028)] = 82099, + [SMALL_STATE(2029)] = 82168, + [SMALL_STATE(2030)] = 82243, + [SMALL_STATE(2031)] = 82362, + [SMALL_STATE(2032)] = 82437, + [SMALL_STATE(2033)] = 82512, + [SMALL_STATE(2034)] = 82583, + [SMALL_STATE(2035)] = 82652, + [SMALL_STATE(2036)] = 82721, + [SMALL_STATE(2037)] = 82784, + [SMALL_STATE(2038)] = 82853, + [SMALL_STATE(2039)] = 82922, + [SMALL_STATE(2040)] = 82999, + [SMALL_STATE(2041)] = 83066, + [SMALL_STATE(2042)] = 83141, + [SMALL_STATE(2043)] = 83212, + [SMALL_STATE(2044)] = 83293, + [SMALL_STATE(2045)] = 83360, + [SMALL_STATE(2046)] = 83435, + [SMALL_STATE(2047)] = 83504, + [SMALL_STATE(2048)] = 83573, + [SMALL_STATE(2049)] = 83648, + [SMALL_STATE(2050)] = 83721, + [SMALL_STATE(2051)] = 83788, + [SMALL_STATE(2052)] = 83863, + [SMALL_STATE(2053)] = 83938, + [SMALL_STATE(2054)] = 84007, + [SMALL_STATE(2055)] = 84076, + [SMALL_STATE(2056)] = 84143, + [SMALL_STATE(2057)] = 84220, + [SMALL_STATE(2058)] = 84287, + [SMALL_STATE(2059)] = 84356, + [SMALL_STATE(2060)] = 84419, + [SMALL_STATE(2061)] = 84482, + [SMALL_STATE(2062)] = 84557, + [SMALL_STATE(2063)] = 84620, + [SMALL_STATE(2064)] = 84688, + [SMALL_STATE(2065)] = 84756, + [SMALL_STATE(2066)] = 84824, + [SMALL_STATE(2067)] = 84894, + [SMALL_STATE(2068)] = 84962, + [SMALL_STATE(2069)] = 85032, + [SMALL_STATE(2070)] = 85098, + [SMALL_STATE(2071)] = 85168, + [SMALL_STATE(2072)] = 85238, + [SMALL_STATE(2073)] = 85310, + [SMALL_STATE(2074)] = 85378, + [SMALL_STATE(2075)] = 85446, + [SMALL_STATE(2076)] = 85520, + [SMALL_STATE(2077)] = 85586, + [SMALL_STATE(2078)] = 85654, + [SMALL_STATE(2079)] = 85720, + [SMALL_STATE(2080)] = 85790, + [SMALL_STATE(2081)] = 85862, + [SMALL_STATE(2082)] = 85936, + [SMALL_STATE(2083)] = 86002, + [SMALL_STATE(2084)] = 86074, + [SMALL_STATE(2085)] = 86144, + [SMALL_STATE(2086)] = 86214, + [SMALL_STATE(2087)] = 86286, + [SMALL_STATE(2088)] = 86352, + [SMALL_STATE(2089)] = 86420, + [SMALL_STATE(2090)] = 86488, + [SMALL_STATE(2091)] = 86562, + [SMALL_STATE(2092)] = 86630, + [SMALL_STATE(2093)] = 86700, + [SMALL_STATE(2094)] = 86772, + [SMALL_STATE(2095)] = 86840, + [SMALL_STATE(2096)] = 86908, + [SMALL_STATE(2097)] = 86976, + [SMALL_STATE(2098)] = 87043, + [SMALL_STATE(2099)] = 87114, + [SMALL_STATE(2100)] = 87185, + [SMALL_STATE(2101)] = 87252, + [SMALL_STATE(2102)] = 87319, + [SMALL_STATE(2103)] = 87386, + [SMALL_STATE(2104)] = 87453, + [SMALL_STATE(2105)] = 87520, + [SMALL_STATE(2106)] = 87587, + [SMALL_STATE(2107)] = 87654, + [SMALL_STATE(2108)] = 87721, + [SMALL_STATE(2109)] = 87788, + [SMALL_STATE(2110)] = 87856, + [SMALL_STATE(2111)] = 87974, + [SMALL_STATE(2112)] = 88092, + [SMALL_STATE(2113)] = 88210, + [SMALL_STATE(2114)] = 88328, + [SMALL_STATE(2115)] = 88446, + [SMALL_STATE(2116)] = 88564, + [SMALL_STATE(2117)] = 88682, + [SMALL_STATE(2118)] = 88800, + [SMALL_STATE(2119)] = 88918, + [SMALL_STATE(2120)] = 89025, + [SMALL_STATE(2121)] = 89132, + [SMALL_STATE(2122)] = 89239, + [SMALL_STATE(2123)] = 89346, + [SMALL_STATE(2124)] = 89421, + [SMALL_STATE(2125)] = 89536, + [SMALL_STATE(2126)] = 89643, + [SMALL_STATE(2127)] = 89750, + [SMALL_STATE(2128)] = 89857, + [SMALL_STATE(2129)] = 89965, + [SMALL_STATE(2130)] = 90075, + [SMALL_STATE(2131)] = 90185, + [SMALL_STATE(2132)] = 90288, + [SMALL_STATE(2133)] = 90391, + [SMALL_STATE(2134)] = 90494, + [SMALL_STATE(2135)] = 90597, + [SMALL_STATE(2136)] = 90700, + [SMALL_STATE(2137)] = 90803, + [SMALL_STATE(2138)] = 90906, + [SMALL_STATE(2139)] = 91009, + [SMALL_STATE(2140)] = 91112, + [SMALL_STATE(2141)] = 91215, + [SMALL_STATE(2142)] = 91318, + [SMALL_STATE(2143)] = 91421, + [SMALL_STATE(2144)] = 91524, + [SMALL_STATE(2145)] = 91593, + [SMALL_STATE(2146)] = 91696, + [SMALL_STATE(2147)] = 91799, + [SMALL_STATE(2148)] = 91902, + [SMALL_STATE(2149)] = 92005, + [SMALL_STATE(2150)] = 92108, + [SMALL_STATE(2151)] = 92211, + [SMALL_STATE(2152)] = 92314, + [SMALL_STATE(2153)] = 92417, + [SMALL_STATE(2154)] = 92471, + [SMALL_STATE(2155)] = 92529, + [SMALL_STATE(2156)] = 92587, + [SMALL_STATE(2157)] = 92641, + [SMALL_STATE(2158)] = 92697, + [SMALL_STATE(2159)] = 92757, + [SMALL_STATE(2160)] = 92817, + [SMALL_STATE(2161)] = 92875, + [SMALL_STATE(2162)] = 92935, + [SMALL_STATE(2163)] = 92993, + [SMALL_STATE(2164)] = 93049, + [SMALL_STATE(2165)] = 93107, + [SMALL_STATE(2166)] = 93160, + [SMALL_STATE(2167)] = 93215, + [SMALL_STATE(2168)] = 93314, + [SMALL_STATE(2169)] = 93385, + [SMALL_STATE(2170)] = 93438, + [SMALL_STATE(2171)] = 93531, + [SMALL_STATE(2172)] = 93630, + [SMALL_STATE(2173)] = 93683, + [SMALL_STATE(2174)] = 93736, + [SMALL_STATE(2175)] = 93789, + [SMALL_STATE(2176)] = 93842, + [SMALL_STATE(2177)] = 93895, + [SMALL_STATE(2178)] = 93948, + [SMALL_STATE(2179)] = 94003, + [SMALL_STATE(2180)] = 94056, + [SMALL_STATE(2181)] = 94109, + [SMALL_STATE(2182)] = 94208, + [SMALL_STATE(2183)] = 94281, + [SMALL_STATE(2184)] = 94334, + [SMALL_STATE(2185)] = 94387, + [SMALL_STATE(2186)] = 94440, + [SMALL_STATE(2187)] = 94539, + [SMALL_STATE(2188)] = 94638, + [SMALL_STATE(2189)] = 94737, + [SMALL_STATE(2190)] = 94790, + [SMALL_STATE(2191)] = 94843, + [SMALL_STATE(2192)] = 94942, + [SMALL_STATE(2193)] = 94995, + [SMALL_STATE(2194)] = 95066, + [SMALL_STATE(2195)] = 95119, + [SMALL_STATE(2196)] = 95172, + [SMALL_STATE(2197)] = 95231, + [SMALL_STATE(2198)] = 95330, + [SMALL_STATE(2199)] = 95383, + [SMALL_STATE(2200)] = 95436, + [SMALL_STATE(2201)] = 95503, + [SMALL_STATE(2202)] = 95566, + [SMALL_STATE(2203)] = 95665, + [SMALL_STATE(2204)] = 95750, + [SMALL_STATE(2205)] = 95849, + [SMALL_STATE(2206)] = 95902, + [SMALL_STATE(2207)] = 95957, + [SMALL_STATE(2208)] = 96010, + [SMALL_STATE(2209)] = 96109, + [SMALL_STATE(2210)] = 96162, + [SMALL_STATE(2211)] = 96261, + [SMALL_STATE(2212)] = 96316, + [SMALL_STATE(2213)] = 96369, + [SMALL_STATE(2214)] = 96424, + [SMALL_STATE(2215)] = 96477, + [SMALL_STATE(2216)] = 96532, + [SMALL_STATE(2217)] = 96631, + [SMALL_STATE(2218)] = 96686, + [SMALL_STATE(2219)] = 96769, + [SMALL_STATE(2220)] = 96822, + [SMALL_STATE(2221)] = 96875, + [SMALL_STATE(2222)] = 96928, + [SMALL_STATE(2223)] = 96981, + [SMALL_STATE(2224)] = 97034, + [SMALL_STATE(2225)] = 97087, + [SMALL_STATE(2226)] = 97146, + [SMALL_STATE(2227)] = 97199, + [SMALL_STATE(2228)] = 97252, + [SMALL_STATE(2229)] = 97305, + [SMALL_STATE(2230)] = 97358, + [SMALL_STATE(2231)] = 97411, + [SMALL_STATE(2232)] = 97464, + [SMALL_STATE(2233)] = 97519, + [SMALL_STATE(2234)] = 97618, + [SMALL_STATE(2235)] = 97671, + [SMALL_STATE(2236)] = 97770, + [SMALL_STATE(2237)] = 97869, + [SMALL_STATE(2238)] = 97928, + [SMALL_STATE(2239)] = 98027, + [SMALL_STATE(2240)] = 98096, + [SMALL_STATE(2241)] = 98149, + [SMALL_STATE(2242)] = 98248, + [SMALL_STATE(2243)] = 98347, + [SMALL_STATE(2244)] = 98402, + [SMALL_STATE(2245)] = 98501, + [SMALL_STATE(2246)] = 98600, + [SMALL_STATE(2247)] = 98699, + [SMALL_STATE(2248)] = 98798, + [SMALL_STATE(2249)] = 98851, + [SMALL_STATE(2250)] = 98904, + [SMALL_STATE(2251)] = 98967, + [SMALL_STATE(2252)] = 99020, + [SMALL_STATE(2253)] = 99091, + [SMALL_STATE(2254)] = 99162, + [SMALL_STATE(2255)] = 99261, + [SMALL_STATE(2256)] = 99314, + [SMALL_STATE(2257)] = 99367, + [SMALL_STATE(2258)] = 99422, + [SMALL_STATE(2259)] = 99521, + [SMALL_STATE(2260)] = 99620, + [SMALL_STATE(2261)] = 99719, + [SMALL_STATE(2262)] = 99792, + [SMALL_STATE(2263)] = 99845, + [SMALL_STATE(2264)] = 99898, + [SMALL_STATE(2265)] = 99951, + [SMALL_STATE(2266)] = 100004, + [SMALL_STATE(2267)] = 100057, + [SMALL_STATE(2268)] = 100110, + [SMALL_STATE(2269)] = 100171, + [SMALL_STATE(2270)] = 100224, + [SMALL_STATE(2271)] = 100277, + [SMALL_STATE(2272)] = 100330, + [SMALL_STATE(2273)] = 100413, + [SMALL_STATE(2274)] = 100466, + [SMALL_STATE(2275)] = 100545, + [SMALL_STATE(2276)] = 100624, + [SMALL_STATE(2277)] = 100723, + [SMALL_STATE(2278)] = 100822, + [SMALL_STATE(2279)] = 100899, + [SMALL_STATE(2280)] = 100952, + [SMALL_STATE(2281)] = 101037, + [SMALL_STATE(2282)] = 101126, + [SMALL_STATE(2283)] = 101179, + [SMALL_STATE(2284)] = 101232, + [SMALL_STATE(2285)] = 101285, + [SMALL_STATE(2286)] = 101338, + [SMALL_STATE(2287)] = 101391, + [SMALL_STATE(2288)] = 101444, + [SMALL_STATE(2289)] = 101497, + [SMALL_STATE(2290)] = 101550, + [SMALL_STATE(2291)] = 101603, + [SMALL_STATE(2292)] = 101660, + [SMALL_STATE(2293)] = 101713, + [SMALL_STATE(2294)] = 101766, + [SMALL_STATE(2295)] = 101819, + [SMALL_STATE(2296)] = 101874, + [SMALL_STATE(2297)] = 101927, + [SMALL_STATE(2298)] = 101980, + [SMALL_STATE(2299)] = 102037, + [SMALL_STATE(2300)] = 102090, + [SMALL_STATE(2301)] = 102189, + [SMALL_STATE(2302)] = 102242, + [SMALL_STATE(2303)] = 102295, + [SMALL_STATE(2304)] = 102348, + [SMALL_STATE(2305)] = 102401, + [SMALL_STATE(2306)] = 102454, + [SMALL_STATE(2307)] = 102507, + [SMALL_STATE(2308)] = 102560, + [SMALL_STATE(2309)] = 102613, + [SMALL_STATE(2310)] = 102666, + [SMALL_STATE(2311)] = 102765, + [SMALL_STATE(2312)] = 102864, + [SMALL_STATE(2313)] = 102917, + [SMALL_STATE(2314)] = 102970, + [SMALL_STATE(2315)] = 103059, + [SMALL_STATE(2316)] = 103136, + [SMALL_STATE(2317)] = 103189, + [SMALL_STATE(2318)] = 103246, + [SMALL_STATE(2319)] = 103299, + [SMALL_STATE(2320)] = 103352, + [SMALL_STATE(2321)] = 103405, + [SMALL_STATE(2322)] = 103458, + [SMALL_STATE(2323)] = 103529, + [SMALL_STATE(2324)] = 103628, + [SMALL_STATE(2325)] = 103727, + [SMALL_STATE(2326)] = 103798, + [SMALL_STATE(2327)] = 103851, + [SMALL_STATE(2328)] = 103910, + [SMALL_STATE(2329)] = 103963, + [SMALL_STATE(2330)] = 104016, + [SMALL_STATE(2331)] = 104069, + [SMALL_STATE(2332)] = 104122, + [SMALL_STATE(2333)] = 104175, + [SMALL_STATE(2334)] = 104268, + [SMALL_STATE(2335)] = 104321, + [SMALL_STATE(2336)] = 104390, + [SMALL_STATE(2337)] = 104443, + [SMALL_STATE(2338)] = 104496, + [SMALL_STATE(2339)] = 104549, + [SMALL_STATE(2340)] = 104602, + [SMALL_STATE(2341)] = 104655, + [SMALL_STATE(2342)] = 104708, + [SMALL_STATE(2343)] = 104761, + [SMALL_STATE(2344)] = 104859, + [SMALL_STATE(2345)] = 104951, + [SMALL_STATE(2346)] = 105049, + [SMALL_STATE(2347)] = 105105, + [SMALL_STATE(2348)] = 105165, + [SMALL_STATE(2349)] = 105235, + [SMALL_STATE(2350)] = 105295, + [SMALL_STATE(2351)] = 105355, + [SMALL_STATE(2352)] = 105425, + [SMALL_STATE(2353)] = 105517, + [SMALL_STATE(2354)] = 105609, + [SMALL_STATE(2355)] = 105701, + [SMALL_STATE(2356)] = 105793, + [SMALL_STATE(2357)] = 105885, + [SMALL_STATE(2358)] = 105977, + [SMALL_STATE(2359)] = 106069, + [SMALL_STATE(2360)] = 106125, + [SMALL_STATE(2361)] = 106217, + [SMALL_STATE(2362)] = 106271, + [SMALL_STATE(2363)] = 106341, + [SMALL_STATE(2364)] = 106439, + [SMALL_STATE(2365)] = 106537, + [SMALL_STATE(2366)] = 106593, + [SMALL_STATE(2367)] = 106691, + [SMALL_STATE(2368)] = 106753, + [SMALL_STATE(2369)] = 106845, + [SMALL_STATE(2370)] = 106937, + [SMALL_STATE(2371)] = 107035, + [SMALL_STATE(2372)] = 107133, + [SMALL_STATE(2373)] = 107231, + [SMALL_STATE(2374)] = 107303, + [SMALL_STATE(2375)] = 107385, + [SMALL_STATE(2376)] = 107463, + [SMALL_STATE(2377)] = 107547, + [SMALL_STATE(2378)] = 107639, + [SMALL_STATE(2379)] = 107727, + [SMALL_STATE(2380)] = 107803, + [SMALL_STATE(2381)] = 107861, + [SMALL_STATE(2382)] = 107921, + [SMALL_STATE(2383)] = 108019, + [SMALL_STATE(2384)] = 108075, + [SMALL_STATE(2385)] = 108131, + [SMALL_STATE(2386)] = 108229, + [SMALL_STATE(2387)] = 108297, + [SMALL_STATE(2388)] = 108395, + [SMALL_STATE(2389)] = 108493, + [SMALL_STATE(2390)] = 108591, + [SMALL_STATE(2391)] = 108648, + [SMALL_STATE(2392)] = 108745, + [SMALL_STATE(2393)] = 108796, + [SMALL_STATE(2394)] = 108847, + [SMALL_STATE(2395)] = 108898, + [SMALL_STATE(2396)] = 108951, + [SMALL_STATE(2397)] = 109048, + [SMALL_STATE(2398)] = 109145, + [SMALL_STATE(2399)] = 109196, + [SMALL_STATE(2400)] = 109247, + [SMALL_STATE(2401)] = 109302, + [SMALL_STATE(2402)] = 109353, + [SMALL_STATE(2403)] = 109404, + [SMALL_STATE(2404)] = 109455, + [SMALL_STATE(2405)] = 109512, + [SMALL_STATE(2406)] = 109563, + [SMALL_STATE(2407)] = 109614, + [SMALL_STATE(2408)] = 109673, + [SMALL_STATE(2409)] = 109724, + [SMALL_STATE(2410)] = 109821, + [SMALL_STATE(2411)] = 109920, + [SMALL_STATE(2412)] = 109979, + [SMALL_STATE(2413)] = 110078, + [SMALL_STATE(2414)] = 110169, + [SMALL_STATE(2415)] = 110238, + [SMALL_STATE(2416)] = 110313, + [SMALL_STATE(2417)] = 110400, + [SMALL_STATE(2418)] = 110483, + [SMALL_STATE(2419)] = 110580, + [SMALL_STATE(2420)] = 110657, + [SMALL_STATE(2421)] = 110754, + [SMALL_STATE(2422)] = 110851, + [SMALL_STATE(2423)] = 110932, + [SMALL_STATE(2424)] = 111031, + [SMALL_STATE(2425)] = 111102, + [SMALL_STATE(2426)] = 111201, + [SMALL_STATE(2427)] = 111300, + [SMALL_STATE(2428)] = 111399, + [SMALL_STATE(2429)] = 111480, + [SMALL_STATE(2430)] = 111539, + [SMALL_STATE(2431)] = 111596, + [SMALL_STATE(2432)] = 111693, + [SMALL_STATE(2433)] = 111770, + [SMALL_STATE(2434)] = 111867, + [SMALL_STATE(2435)] = 111964, + [SMALL_STATE(2436)] = 112061, + [SMALL_STATE(2437)] = 112132, + [SMALL_STATE(2438)] = 112191, + [SMALL_STATE(2439)] = 112272, + [SMALL_STATE(2440)] = 112359, + [SMALL_STATE(2441)] = 112420, + [SMALL_STATE(2442)] = 112471, + [SMALL_STATE(2443)] = 112546, + [SMALL_STATE(2444)] = 112615, + [SMALL_STATE(2445)] = 112706, + [SMALL_STATE(2446)] = 112757, + [SMALL_STATE(2447)] = 112812, + [SMALL_STATE(2448)] = 112879, + [SMALL_STATE(2449)] = 112956, + [SMALL_STATE(2450)] = 113039, + [SMALL_STATE(2451)] = 113126, + [SMALL_STATE(2452)] = 113201, + [SMALL_STATE(2453)] = 113292, + [SMALL_STATE(2454)] = 113389, + [SMALL_STATE(2455)] = 113486, + [SMALL_STATE(2456)] = 113537, + [SMALL_STATE(2457)] = 113590, + [SMALL_STATE(2458)] = 113647, + [SMALL_STATE(2459)] = 113698, + [SMALL_STATE(2460)] = 113751, + [SMALL_STATE(2461)] = 113808, + [SMALL_STATE(2462)] = 113879, + [SMALL_STATE(2463)] = 113978, + [SMALL_STATE(2464)] = 114075, + [SMALL_STATE(2465)] = 114174, + [SMALL_STATE(2466)] = 114225, + [SMALL_STATE(2467)] = 114276, + [SMALL_STATE(2468)] = 114327, + [SMALL_STATE(2469)] = 114378, + [SMALL_STATE(2470)] = 114475, + [SMALL_STATE(2471)] = 114572, + [SMALL_STATE(2472)] = 114641, + [SMALL_STATE(2473)] = 114710, + [SMALL_STATE(2474)] = 114807, + [SMALL_STATE(2475)] = 114904, + [SMALL_STATE(2476)] = 115001, + [SMALL_STATE(2477)] = 115060, + [SMALL_STATE(2478)] = 115111, + [SMALL_STATE(2479)] = 115162, + [SMALL_STATE(2480)] = 115261, + [SMALL_STATE(2481)] = 115312, + [SMALL_STATE(2482)] = 115363, + [SMALL_STATE(2483)] = 115416, + [SMALL_STATE(2484)] = 115467, + [SMALL_STATE(2485)] = 115518, + [SMALL_STATE(2486)] = 115569, + [SMALL_STATE(2487)] = 115652, + [SMALL_STATE(2488)] = 115703, + [SMALL_STATE(2489)] = 115800, + [SMALL_STATE(2490)] = 115897, + [SMALL_STATE(2491)] = 115994, + [SMALL_STATE(2492)] = 116047, + [SMALL_STATE(2493)] = 116146, + [SMALL_STATE(2494)] = 116197, + [SMALL_STATE(2495)] = 116248, + [SMALL_STATE(2496)] = 116347, + [SMALL_STATE(2497)] = 116398, + [SMALL_STATE(2498)] = 116497, + [SMALL_STATE(2499)] = 116594, + [SMALL_STATE(2500)] = 116645, + [SMALL_STATE(2501)] = 116696, + [SMALL_STATE(2502)] = 116749, + [SMALL_STATE(2503)] = 116800, + [SMALL_STATE(2504)] = 116851, + [SMALL_STATE(2505)] = 116908, + [SMALL_STATE(2506)] = 116959, + [SMALL_STATE(2507)] = 117010, + [SMALL_STATE(2508)] = 117061, + [SMALL_STATE(2509)] = 117112, + [SMALL_STATE(2510)] = 117163, + [SMALL_STATE(2511)] = 117214, + [SMALL_STATE(2512)] = 117267, + [SMALL_STATE(2513)] = 117318, + [SMALL_STATE(2514)] = 117369, + [SMALL_STATE(2515)] = 117420, + [SMALL_STATE(2516)] = 117471, + [SMALL_STATE(2517)] = 117522, + [SMALL_STATE(2518)] = 117591, + [SMALL_STATE(2519)] = 117642, + [SMALL_STATE(2520)] = 117739, + [SMALL_STATE(2521)] = 117790, + [SMALL_STATE(2522)] = 117851, + [SMALL_STATE(2523)] = 117902, + [SMALL_STATE(2524)] = 117953, + [SMALL_STATE(2525)] = 118006, + [SMALL_STATE(2526)] = 118057, + [SMALL_STATE(2527)] = 118108, + [SMALL_STATE(2528)] = 118161, + [SMALL_STATE(2529)] = 118212, + [SMALL_STATE(2530)] = 118263, + [SMALL_STATE(2531)] = 118318, + [SMALL_STATE(2532)] = 118369, + [SMALL_STATE(2533)] = 118420, + [SMALL_STATE(2534)] = 118471, + [SMALL_STATE(2535)] = 118522, + [SMALL_STATE(2536)] = 118573, + [SMALL_STATE(2537)] = 118628, + [SMALL_STATE(2538)] = 118687, + [SMALL_STATE(2539)] = 118738, + [SMALL_STATE(2540)] = 118807, + [SMALL_STATE(2541)] = 118858, + [SMALL_STATE(2542)] = 118909, + [SMALL_STATE(2543)] = 118962, + [SMALL_STATE(2544)] = 119031, + [SMALL_STATE(2545)] = 119128, + [SMALL_STATE(2546)] = 119225, + [SMALL_STATE(2547)] = 119276, + [SMALL_STATE(2548)] = 119327, + [SMALL_STATE(2549)] = 119378, + [SMALL_STATE(2550)] = 119443, + [SMALL_STATE(2551)] = 119494, + [SMALL_STATE(2552)] = 119561, + [SMALL_STATE(2553)] = 119612, + [SMALL_STATE(2554)] = 119663, + [SMALL_STATE(2555)] = 119716, + [SMALL_STATE(2556)] = 119767, + [SMALL_STATE(2557)] = 119820, + [SMALL_STATE(2558)] = 119871, + [SMALL_STATE(2559)] = 119922, + [SMALL_STATE(2560)] = 119973, + [SMALL_STATE(2561)] = 120042, + [SMALL_STATE(2562)] = 120103, + [SMALL_STATE(2563)] = 120172, + [SMALL_STATE(2564)] = 120271, + [SMALL_STATE(2565)] = 120338, + [SMALL_STATE(2566)] = 120389, + [SMALL_STATE(2567)] = 120440, + [SMALL_STATE(2568)] = 120491, + [SMALL_STATE(2569)] = 120542, + [SMALL_STATE(2570)] = 120593, + [SMALL_STATE(2571)] = 120644, + [SMALL_STATE(2572)] = 120695, + [SMALL_STATE(2573)] = 120794, + [SMALL_STATE(2574)] = 120845, + [SMALL_STATE(2575)] = 120896, + [SMALL_STATE(2576)] = 120947, + [SMALL_STATE(2577)] = 120998, + [SMALL_STATE(2578)] = 121049, + [SMALL_STATE(2579)] = 121100, + [SMALL_STATE(2580)] = 121196, + [SMALL_STATE(2581)] = 121264, + [SMALL_STATE(2582)] = 121316, + [SMALL_STATE(2583)] = 121418, + [SMALL_STATE(2584)] = 121502, + [SMALL_STATE(2585)] = 121570, + [SMALL_STATE(2586)] = 121638, + [SMALL_STATE(2587)] = 121740, + [SMALL_STATE(2588)] = 121836, + [SMALL_STATE(2589)] = 121932, + [SMALL_STATE(2590)] = 121984, + [SMALL_STATE(2591)] = 122050, + [SMALL_STATE(2592)] = 122110, + [SMALL_STATE(2593)] = 122168, + [SMALL_STATE(2594)] = 122264, + [SMALL_STATE(2595)] = 122360, + [SMALL_STATE(2596)] = 122456, + [SMALL_STATE(2597)] = 122554, + [SMALL_STATE(2598)] = 122652, + [SMALL_STATE(2599)] = 122750, + [SMALL_STATE(2600)] = 122848, + [SMALL_STATE(2601)] = 122946, + [SMALL_STATE(2602)] = 123002, + [SMALL_STATE(2603)] = 123056, + [SMALL_STATE(2604)] = 123154, + [SMALL_STATE(2605)] = 123208, + [SMALL_STATE(2606)] = 123304, + [SMALL_STATE(2607)] = 123404, + [SMALL_STATE(2608)] = 123500, + [SMALL_STATE(2609)] = 123596, + [SMALL_STATE(2610)] = 123666, + [SMALL_STATE(2611)] = 123722, + [SMALL_STATE(2612)] = 123802, + [SMALL_STATE(2613)] = 123878, + [SMALL_STATE(2614)] = 123936, + [SMALL_STATE(2615)] = 124018, + [SMALL_STATE(2616)] = 124104, + [SMALL_STATE(2617)] = 124178, + [SMALL_STATE(2618)] = 124246, + [SMALL_STATE(2619)] = 124336, + [SMALL_STATE(2620)] = 124432, + [SMALL_STATE(2621)] = 124528, + [SMALL_STATE(2622)] = 124628, + [SMALL_STATE(2623)] = 124728, + [SMALL_STATE(2624)] = 124828, + [SMALL_STATE(2625)] = 124894, + [SMALL_STATE(2626)] = 124990, + [SMALL_STATE(2627)] = 125086, + [SMALL_STATE(2628)] = 125154, + [SMALL_STATE(2629)] = 125222, + [SMALL_STATE(2630)] = 125318, + [SMALL_STATE(2631)] = 125414, + [SMALL_STATE(2632)] = 125504, + [SMALL_STATE(2633)] = 125606, + [SMALL_STATE(2634)] = 125674, + [SMALL_STATE(2635)] = 125748, + [SMALL_STATE(2636)] = 125834, + [SMALL_STATE(2637)] = 125916, + [SMALL_STATE(2638)] = 125992, + [SMALL_STATE(2639)] = 126072, + [SMALL_STATE(2640)] = 126142, + [SMALL_STATE(2641)] = 126238, + [SMALL_STATE(2642)] = 126334, + [SMALL_STATE(2643)] = 126430, + [SMALL_STATE(2644)] = 126490, + [SMALL_STATE(2645)] = 126586, + [SMALL_STATE(2646)] = 126682, + [SMALL_STATE(2647)] = 126778, + [SMALL_STATE(2648)] = 126874, + [SMALL_STATE(2649)] = 126970, + [SMALL_STATE(2650)] = 127066, + [SMALL_STATE(2651)] = 127162, + [SMALL_STATE(2652)] = 127258, + [SMALL_STATE(2653)] = 127354, + [SMALL_STATE(2654)] = 127410, + [SMALL_STATE(2655)] = 127462, + [SMALL_STATE(2656)] = 127558, + [SMALL_STATE(2657)] = 127660, + [SMALL_STATE(2658)] = 127712, + [SMALL_STATE(2659)] = 127808, + [SMALL_STATE(2660)] = 127904, + [SMALL_STATE(2661)] = 128000, + [SMALL_STATE(2662)] = 128066, + [SMALL_STATE(2663)] = 128164, + [SMALL_STATE(2664)] = 128262, + [SMALL_STATE(2665)] = 128330, + [SMALL_STATE(2666)] = 128398, + [SMALL_STATE(2667)] = 128496, + [SMALL_STATE(2668)] = 128592, + [SMALL_STATE(2669)] = 128690, + [SMALL_STATE(2670)] = 128788, + [SMALL_STATE(2671)] = 128886, + [SMALL_STATE(2672)] = 128984, + [SMALL_STATE(2673)] = 129082, + [SMALL_STATE(2674)] = 129172, + [SMALL_STATE(2675)] = 129240, + [SMALL_STATE(2676)] = 129314, + [SMALL_STATE(2677)] = 129400, + [SMALL_STATE(2678)] = 129482, + [SMALL_STATE(2679)] = 129558, + [SMALL_STATE(2680)] = 129638, + [SMALL_STATE(2681)] = 129708, + [SMALL_STATE(2682)] = 129806, + [SMALL_STATE(2683)] = 129904, + [SMALL_STATE(2684)] = 130002, + [SMALL_STATE(2685)] = 130100, + [SMALL_STATE(2686)] = 130198, + [SMALL_STATE(2687)] = 130258, + [SMALL_STATE(2688)] = 130354, + [SMALL_STATE(2689)] = 130406, + [SMALL_STATE(2690)] = 130458, + [SMALL_STATE(2691)] = 130514, + [SMALL_STATE(2692)] = 130616, + [SMALL_STATE(2693)] = 130672, + [SMALL_STATE(2694)] = 130738, + [SMALL_STATE(2695)] = 130794, + [SMALL_STATE(2696)] = 130846, + [SMALL_STATE(2697)] = 130914, + [SMALL_STATE(2698)] = 130982, + [SMALL_STATE(2699)] = 131050, + [SMALL_STATE(2700)] = 131110, + [SMALL_STATE(2701)] = 131164, + [SMALL_STATE(2702)] = 131220, + [SMALL_STATE(2703)] = 131318, + [SMALL_STATE(2704)] = 131416, + [SMALL_STATE(2705)] = 131470, + [SMALL_STATE(2706)] = 131522, + [SMALL_STATE(2707)] = 131624, + [SMALL_STATE(2708)] = 131678, + [SMALL_STATE(2709)] = 131776, + [SMALL_STATE(2710)] = 131844, + [SMALL_STATE(2711)] = 131912, + [SMALL_STATE(2712)] = 132008, + [SMALL_STATE(2713)] = 132106, + [SMALL_STATE(2714)] = 132202, + [SMALL_STATE(2715)] = 132292, + [SMALL_STATE(2716)] = 132358, + [SMALL_STATE(2717)] = 132432, + [SMALL_STATE(2718)] = 132492, + [SMALL_STATE(2719)] = 132578, + [SMALL_STATE(2720)] = 132660, + [SMALL_STATE(2721)] = 132712, + [SMALL_STATE(2722)] = 132808, + [SMALL_STATE(2723)] = 132904, + [SMALL_STATE(2724)] = 132980, + [SMALL_STATE(2725)] = 133060, + [SMALL_STATE(2726)] = 133130, + [SMALL_STATE(2727)] = 133228, + [SMALL_STATE(2728)] = 133288, + [SMALL_STATE(2729)] = 133348, + [SMALL_STATE(2730)] = 133446, + [SMALL_STATE(2731)] = 133544, + [SMALL_STATE(2732)] = 133600, + [SMALL_STATE(2733)] = 133652, + [SMALL_STATE(2734)] = 133708, + [SMALL_STATE(2735)] = 133810, + [SMALL_STATE(2736)] = 133906, + [SMALL_STATE(2737)] = 133976, + [SMALL_STATE(2738)] = 134056, + [SMALL_STATE(2739)] = 134112, + [SMALL_STATE(2740)] = 134164, + [SMALL_STATE(2741)] = 134240, + [SMALL_STATE(2742)] = 134314, + [SMALL_STATE(2743)] = 134410, + [SMALL_STATE(2744)] = 134466, + [SMALL_STATE(2745)] = 134522, + [SMALL_STATE(2746)] = 134578, + [SMALL_STATE(2747)] = 134634, + [SMALL_STATE(2748)] = 134730, + [SMALL_STATE(2749)] = 134816, + [SMALL_STATE(2750)] = 134868, + [SMALL_STATE(2751)] = 134920, + [SMALL_STATE(2752)] = 135002, + [SMALL_STATE(2753)] = 135054, + [SMALL_STATE(2754)] = 135144, + [SMALL_STATE(2755)] = 135198, + [SMALL_STATE(2756)] = 135254, + [SMALL_STATE(2757)] = 135310, + [SMALL_STATE(2758)] = 135368, + [SMALL_STATE(2759)] = 135426, + [SMALL_STATE(2760)] = 135475, + [SMALL_STATE(2761)] = 135548, + [SMALL_STATE(2762)] = 135599, + [SMALL_STATE(2763)] = 135652, + [SMALL_STATE(2764)] = 135703, + [SMALL_STATE(2765)] = 135802, + [SMALL_STATE(2766)] = 135859, + [SMALL_STATE(2767)] = 135908, + [SMALL_STATE(2768)] = 136005, + [SMALL_STATE(2769)] = 136062, + [SMALL_STATE(2770)] = 136111, + [SMALL_STATE(2771)] = 136160, + [SMALL_STATE(2772)] = 136211, + [SMALL_STATE(2773)] = 136260, + [SMALL_STATE(2774)] = 136309, + [SMALL_STATE(2775)] = 136358, + [SMALL_STATE(2776)] = 136455, + [SMALL_STATE(2777)] = 136552, + [SMALL_STATE(2778)] = 136651, + [SMALL_STATE(2779)] = 136706, + [SMALL_STATE(2780)] = 136757, + [SMALL_STATE(2781)] = 136852, + [SMALL_STATE(2782)] = 136947, + [SMALL_STATE(2783)] = 137042, + [SMALL_STATE(2784)] = 137137, + [SMALL_STATE(2785)] = 137186, + [SMALL_STATE(2786)] = 137237, + [SMALL_STATE(2787)] = 137332, + [SMALL_STATE(2788)] = 137427, + [SMALL_STATE(2789)] = 137482, + [SMALL_STATE(2790)] = 137571, + [SMALL_STATE(2791)] = 137644, + [SMALL_STATE(2792)] = 137699, + [SMALL_STATE(2793)] = 137748, + [SMALL_STATE(2794)] = 137813, + [SMALL_STATE(2795)] = 137908, + [SMALL_STATE(2796)] = 138003, + [SMALL_STATE(2797)] = 138088, + [SMALL_STATE(2798)] = 138169, + [SMALL_STATE(2799)] = 138224, + [SMALL_STATE(2800)] = 138299, + [SMALL_STATE(2801)] = 138352, + [SMALL_STATE(2802)] = 138401, + [SMALL_STATE(2803)] = 138480, + [SMALL_STATE(2804)] = 138549, + [SMALL_STATE(2805)] = 138644, + [SMALL_STATE(2806)] = 138697, + [SMALL_STATE(2807)] = 138764, + [SMALL_STATE(2808)] = 138831, + [SMALL_STATE(2809)] = 138930, + [SMALL_STATE(2810)] = 139025, + [SMALL_STATE(2811)] = 139074, + [SMALL_STATE(2812)] = 139169, + [SMALL_STATE(2813)] = 139264, + [SMALL_STATE(2814)] = 139313, + [SMALL_STATE(2815)] = 139362, + [SMALL_STATE(2816)] = 139411, + [SMALL_STATE(2817)] = 139506, + [SMALL_STATE(2818)] = 139557, + [SMALL_STATE(2819)] = 139652, + [SMALL_STATE(2820)] = 139703, + [SMALL_STATE(2821)] = 139760, + [SMALL_STATE(2822)] = 139819, + [SMALL_STATE(2823)] = 139914, + [SMALL_STATE(2824)] = 140009, + [SMALL_STATE(2825)] = 140058, + [SMALL_STATE(2826)] = 140107, + [SMALL_STATE(2827)] = 140156, + [SMALL_STATE(2828)] = 140253, + [SMALL_STATE(2829)] = 140352, + [SMALL_STATE(2830)] = 140403, + [SMALL_STATE(2831)] = 140452, + [SMALL_STATE(2832)] = 140519, + [SMALL_STATE(2833)] = 140586, + [SMALL_STATE(2834)] = 140681, + [SMALL_STATE(2835)] = 140780, + [SMALL_STATE(2836)] = 140875, + [SMALL_STATE(2837)] = 140940, + [SMALL_STATE(2838)] = 141035, + [SMALL_STATE(2839)] = 141084, + [SMALL_STATE(2840)] = 141133, + [SMALL_STATE(2841)] = 141182, + [SMALL_STATE(2842)] = 141231, + [SMALL_STATE(2843)] = 141282, + [SMALL_STATE(2844)] = 141377, + [SMALL_STATE(2845)] = 141426, + [SMALL_STATE(2846)] = 141475, + [SMALL_STATE(2847)] = 141524, + [SMALL_STATE(2848)] = 141619, + [SMALL_STATE(2849)] = 141714, + [SMALL_STATE(2850)] = 141763, + [SMALL_STATE(2851)] = 141812, + [SMALL_STATE(2852)] = 141911, + [SMALL_STATE(2853)] = 141966, + [SMALL_STATE(2854)] = 142015, + [SMALL_STATE(2855)] = 142068, + [SMALL_STATE(2856)] = 142123, + [SMALL_STATE(2857)] = 142178, + [SMALL_STATE(2858)] = 142229, + [SMALL_STATE(2859)] = 142286, + [SMALL_STATE(2860)] = 142343, + [SMALL_STATE(2861)] = 142398, + [SMALL_STATE(2862)] = 142455, + [SMALL_STATE(2863)] = 142504, + [SMALL_STATE(2864)] = 142599, + [SMALL_STATE(2865)] = 142694, + [SMALL_STATE(2866)] = 142743, + [SMALL_STATE(2867)] = 142812, + [SMALL_STATE(2868)] = 142907, + [SMALL_STATE(2869)] = 143002, + [SMALL_STATE(2870)] = 143097, + [SMALL_STATE(2871)] = 143192, + [SMALL_STATE(2872)] = 143247, + [SMALL_STATE(2873)] = 143342, + [SMALL_STATE(2874)] = 143391, + [SMALL_STATE(2875)] = 143486, + [SMALL_STATE(2876)] = 143543, + [SMALL_STATE(2877)] = 143632, + [SMALL_STATE(2878)] = 143699, + [SMALL_STATE(2879)] = 143772, + [SMALL_STATE(2880)] = 143857, + [SMALL_STATE(2881)] = 143938, + [SMALL_STATE(2882)] = 144013, + [SMALL_STATE(2883)] = 144062, + [SMALL_STATE(2884)] = 144111, + [SMALL_STATE(2885)] = 144160, + [SMALL_STATE(2886)] = 144209, + [SMALL_STATE(2887)] = 144262, + [SMALL_STATE(2888)] = 144311, + [SMALL_STATE(2889)] = 144390, + [SMALL_STATE(2890)] = 144489, + [SMALL_STATE(2891)] = 144558, + [SMALL_STATE(2892)] = 144653, + [SMALL_STATE(2893)] = 144748, + [SMALL_STATE(2894)] = 144843, + [SMALL_STATE(2895)] = 144938, + [SMALL_STATE(2896)] = 145037, + [SMALL_STATE(2897)] = 145132, + [SMALL_STATE(2898)] = 145227, + [SMALL_STATE(2899)] = 145286, + [SMALL_STATE(2900)] = 145353, + [SMALL_STATE(2901)] = 145418, + [SMALL_STATE(2902)] = 145517, + [SMALL_STATE(2903)] = 145584, + [SMALL_STATE(2904)] = 145649, + [SMALL_STATE(2905)] = 145712, + [SMALL_STATE(2906)] = 145779, + [SMALL_STATE(2907)] = 145876, + [SMALL_STATE(2908)] = 145973, + [SMALL_STATE(2909)] = 146040, + [SMALL_STATE(2910)] = 146119, + [SMALL_STATE(2911)] = 146178, + [SMALL_STATE(2912)] = 146245, + [SMALL_STATE(2913)] = 146294, + [SMALL_STATE(2914)] = 146343, + [SMALL_STATE(2915)] = 146418, + [SMALL_STATE(2916)] = 146499, + [SMALL_STATE(2917)] = 146584, + [SMALL_STATE(2918)] = 146657, + [SMALL_STATE(2919)] = 146712, + [SMALL_STATE(2920)] = 146779, + [SMALL_STATE(2921)] = 146868, + [SMALL_STATE(2922)] = 146917, + [SMALL_STATE(2923)] = 146972, + [SMALL_STATE(2924)] = 147021, + [SMALL_STATE(2925)] = 147116, + [SMALL_STATE(2926)] = 147211, + [SMALL_STATE(2927)] = 147262, + [SMALL_STATE(2928)] = 147315, + [SMALL_STATE(2929)] = 147364, + [SMALL_STATE(2930)] = 147413, + [SMALL_STATE(2931)] = 147462, + [SMALL_STATE(2932)] = 147511, + [SMALL_STATE(2933)] = 147560, + [SMALL_STATE(2934)] = 147609, + [SMALL_STATE(2935)] = 147660, + [SMALL_STATE(2936)] = 147709, + [SMALL_STATE(2937)] = 147758, + [SMALL_STATE(2938)] = 147855, + [SMALL_STATE(2939)] = 147950, + [SMALL_STATE(2940)] = 147999, + [SMALL_STATE(2941)] = 148096, + [SMALL_STATE(2942)] = 148147, + [SMALL_STATE(2943)] = 148196, + [SMALL_STATE(2944)] = 148295, + [SMALL_STATE(2945)] = 148344, + [SMALL_STATE(2946)] = 148399, + [SMALL_STATE(2947)] = 148448, + [SMALL_STATE(2948)] = 148497, + [SMALL_STATE(2949)] = 148592, + [SMALL_STATE(2950)] = 148641, + [SMALL_STATE(2951)] = 148690, + [SMALL_STATE(2952)] = 148739, + [SMALL_STATE(2953)] = 148834, + [SMALL_STATE(2954)] = 148929, + [SMALL_STATE(2955)] = 148978, + [SMALL_STATE(2956)] = 149037, + [SMALL_STATE(2957)] = 149134, + [SMALL_STATE(2958)] = 149183, + [SMALL_STATE(2959)] = 149232, + [SMALL_STATE(2960)] = 149281, + [SMALL_STATE(2961)] = 149330, + [SMALL_STATE(2962)] = 149379, + [SMALL_STATE(2963)] = 149428, + [SMALL_STATE(2964)] = 149477, + [SMALL_STATE(2965)] = 149526, + [SMALL_STATE(2966)] = 149623, + [SMALL_STATE(2967)] = 149672, + [SMALL_STATE(2968)] = 149721, + [SMALL_STATE(2969)] = 149818, + [SMALL_STATE(2970)] = 149867, + [SMALL_STATE(2971)] = 149916, + [SMALL_STATE(2972)] = 149965, + [SMALL_STATE(2973)] = 150060, + [SMALL_STATE(2974)] = 150109, + [SMALL_STATE(2975)] = 150158, + [SMALL_STATE(2976)] = 150207, + [SMALL_STATE(2977)] = 150256, + [SMALL_STATE(2978)] = 150305, + [SMALL_STATE(2979)] = 150354, + [SMALL_STATE(2980)] = 150451, + [SMALL_STATE(2981)] = 150500, + [SMALL_STATE(2982)] = 150597, + [SMALL_STATE(2983)] = 150646, + [SMALL_STATE(2984)] = 150695, + [SMALL_STATE(2985)] = 150792, + [SMALL_STATE(2986)] = 150841, + [SMALL_STATE(2987)] = 150890, + [SMALL_STATE(2988)] = 150939, + [SMALL_STATE(2989)] = 151036, + [SMALL_STATE(2990)] = 151085, + [SMALL_STATE(2991)] = 151134, + [SMALL_STATE(2992)] = 151183, + [SMALL_STATE(2993)] = 151232, + [SMALL_STATE(2994)] = 151281, + [SMALL_STATE(2995)] = 151330, + [SMALL_STATE(2996)] = 151427, + [SMALL_STATE(2997)] = 151496, + [SMALL_STATE(2998)] = 151545, + [SMALL_STATE(2999)] = 151624, + [SMALL_STATE(3000)] = 151705, + [SMALL_STATE(3001)] = 151754, + [SMALL_STATE(3002)] = 151839, + [SMALL_STATE(3003)] = 151936, + [SMALL_STATE(3004)] = 152033, + [SMALL_STATE(3005)] = 152082, + [SMALL_STATE(3006)] = 152131, + [SMALL_STATE(3007)] = 152180, + [SMALL_STATE(3008)] = 152269, + [SMALL_STATE(3009)] = 152344, + [SMALL_STATE(3010)] = 152443, + [SMALL_STATE(3011)] = 152510, + [SMALL_STATE(3012)] = 152590, + [SMALL_STATE(3013)] = 152640, + [SMALL_STATE(3014)] = 152734, + [SMALL_STATE(3015)] = 152828, + [SMALL_STATE(3016)] = 152922, + [SMALL_STATE(3017)] = 152972, + [SMALL_STATE(3018)] = 153040, + [SMALL_STATE(3019)] = 153118, + [SMALL_STATE(3020)] = 153214, + [SMALL_STATE(3021)] = 153268, + [SMALL_STATE(3022)] = 153322, + [SMALL_STATE(3023)] = 153378, + [SMALL_STATE(3024)] = 153432, + [SMALL_STATE(3025)] = 153518, + [SMALL_STATE(3026)] = 153612, + [SMALL_STATE(3027)] = 153706, + [SMALL_STATE(3028)] = 153800, + [SMALL_STATE(3029)] = 153894, + [SMALL_STATE(3030)] = 153968, + [SMALL_STATE(3031)] = 154018, + [SMALL_STATE(3032)] = 154068, + [SMALL_STATE(3033)] = 154122, + [SMALL_STATE(3034)] = 154202, + [SMALL_STATE(3035)] = 154286, + [SMALL_STATE(3036)] = 154358, + [SMALL_STATE(3037)] = 154424, + [SMALL_STATE(3038)] = 154512, + [SMALL_STATE(3039)] = 154564, + [SMALL_STATE(3040)] = 154658, + [SMALL_STATE(3041)] = 154752, + [SMALL_STATE(3042)] = 154802, + [SMALL_STATE(3043)] = 154896, + [SMALL_STATE(3044)] = 154968, + [SMALL_STATE(3045)] = 155044, + [SMALL_STATE(3046)] = 155094, + [SMALL_STATE(3047)] = 155144, + [SMALL_STATE(3048)] = 155194, + [SMALL_STATE(3049)] = 155268, + [SMALL_STATE(3050)] = 155324, + [SMALL_STATE(3051)] = 155410, + [SMALL_STATE(3052)] = 155466, + [SMALL_STATE(3053)] = 155522, + [SMALL_STATE(3054)] = 155572, + [SMALL_STATE(3055)] = 155658, + [SMALL_STATE(3056)] = 155708, + [SMALL_STATE(3057)] = 155758, + [SMALL_STATE(3058)] = 155854, + [SMALL_STATE(3059)] = 155910, + [SMALL_STATE(3060)] = 155984, + [SMALL_STATE(3061)] = 156078, + [SMALL_STATE(3062)] = 156152, + [SMALL_STATE(3063)] = 156204, + [SMALL_STATE(3064)] = 156280, + [SMALL_STATE(3065)] = 156356, + [SMALL_STATE(3066)] = 156450, + [SMALL_STATE(3067)] = 156544, + [SMALL_STATE(3068)] = 156616, + [SMALL_STATE(3069)] = 156666, + [SMALL_STATE(3070)] = 156752, + [SMALL_STATE(3071)] = 156824, + [SMALL_STATE(3072)] = 156874, + [SMALL_STATE(3073)] = 156924, + [SMALL_STATE(3074)] = 156974, + [SMALL_STATE(3075)] = 157024, + [SMALL_STATE(3076)] = 157082, + [SMALL_STATE(3077)] = 157176, + [SMALL_STATE(3078)] = 157228, + [SMALL_STATE(3079)] = 157280, + [SMALL_STATE(3080)] = 157346, + [SMALL_STATE(3081)] = 157440, + [SMALL_STATE(3082)] = 157506, + [SMALL_STATE(3083)] = 157562, + [SMALL_STATE(3084)] = 157656, + [SMALL_STATE(3085)] = 157750, + [SMALL_STATE(3086)] = 157800, + [SMALL_STATE(3087)] = 157864, + [SMALL_STATE(3088)] = 157916, + [SMALL_STATE(3089)] = 157968, + [SMALL_STATE(3090)] = 158020, + [SMALL_STATE(3091)] = 158072, + [SMALL_STATE(3092)] = 158124, + [SMALL_STATE(3093)] = 158180, + [SMALL_STATE(3094)] = 158230, + [SMALL_STATE(3095)] = 158282, + [SMALL_STATE(3096)] = 158376, + [SMALL_STATE(3097)] = 158472, + [SMALL_STATE(3098)] = 158522, + [SMALL_STATE(3099)] = 158572, + [SMALL_STATE(3100)] = 158644, + [SMALL_STATE(3101)] = 158740, + [SMALL_STATE(3102)] = 158794, + [SMALL_STATE(3103)] = 158846, + [SMALL_STATE(3104)] = 158922, + [SMALL_STATE(3105)] = 158996, + [SMALL_STATE(3106)] = 159050, + [SMALL_STATE(3107)] = 159124, + [SMALL_STATE(3108)] = 159200, + [SMALL_STATE(3109)] = 159272, + [SMALL_STATE(3110)] = 159324, + [SMALL_STATE(3111)] = 159380, + [SMALL_STATE(3112)] = 159466, + [SMALL_STATE(3113)] = 159560, + [SMALL_STATE(3114)] = 159612, + [SMALL_STATE(3115)] = 159664, + [SMALL_STATE(3116)] = 159714, + [SMALL_STATE(3117)] = 159808, + [SMALL_STATE(3118)] = 159902, + [SMALL_STATE(3119)] = 159954, + [SMALL_STATE(3120)] = 160028, + [SMALL_STATE(3121)] = 160124, + [SMALL_STATE(3122)] = 160174, + [SMALL_STATE(3123)] = 160250, + [SMALL_STATE(3124)] = 160302, + [SMALL_STATE(3125)] = 160368, + [SMALL_STATE(3126)] = 160440, + [SMALL_STATE(3127)] = 160496, + [SMALL_STATE(3128)] = 160582, + [SMALL_STATE(3129)] = 160638, + [SMALL_STATE(3130)] = 160692, + [SMALL_STATE(3131)] = 160786, + [SMALL_STATE(3132)] = 160880, + [SMALL_STATE(3133)] = 160936, + [SMALL_STATE(3134)] = 161030, + [SMALL_STATE(3135)] = 161080, + [SMALL_STATE(3136)] = 161132, + [SMALL_STATE(3137)] = 161220, + [SMALL_STATE(3138)] = 161286, + [SMALL_STATE(3139)] = 161340, + [SMALL_STATE(3140)] = 161426, + [SMALL_STATE(3141)] = 161498, + [SMALL_STATE(3142)] = 161548, + [SMALL_STATE(3143)] = 161598, + [SMALL_STATE(3144)] = 161652, + [SMALL_STATE(3145)] = 161718, + [SMALL_STATE(3146)] = 161768, + [SMALL_STATE(3147)] = 161862, + [SMALL_STATE(3148)] = 161916, + [SMALL_STATE(3149)] = 161982, + [SMALL_STATE(3150)] = 162032, + [SMALL_STATE(3151)] = 162096, + [SMALL_STATE(3152)] = 162180, + [SMALL_STATE(3153)] = 162266, + [SMALL_STATE(3154)] = 162318, + [SMALL_STATE(3155)] = 162404, + [SMALL_STATE(3156)] = 162454, + [SMALL_STATE(3157)] = 162516, + [SMALL_STATE(3158)] = 162590, + [SMALL_STATE(3159)] = 162652, + [SMALL_STATE(3160)] = 162748, + [SMALL_STATE(3161)] = 162798, + [SMALL_STATE(3162)] = 162884, + [SMALL_STATE(3163)] = 162980, + [SMALL_STATE(3164)] = 163034, + [SMALL_STATE(3165)] = 163088, + [SMALL_STATE(3166)] = 163166, + [SMALL_STATE(3167)] = 163262, + [SMALL_STATE(3168)] = 163330, + [SMALL_STATE(3169)] = 163424, + [SMALL_STATE(3170)] = 163518, + [SMALL_STATE(3171)] = 163590, + [SMALL_STATE(3172)] = 163666, + [SMALL_STATE(3173)] = 163740, + [SMALL_STATE(3174)] = 163792, + [SMALL_STATE(3175)] = 163858, + [SMALL_STATE(3176)] = 163952, + [SMALL_STATE(3177)] = 164046, + [SMALL_STATE(3178)] = 164140, + [SMALL_STATE(3179)] = 164234, + [SMALL_STATE(3180)] = 164328, + [SMALL_STATE(3181)] = 164386, + [SMALL_STATE(3182)] = 164440, + [SMALL_STATE(3183)] = 164490, + [SMALL_STATE(3184)] = 164576, + [SMALL_STATE(3185)] = 164672, + [SMALL_STATE(3186)] = 164726, + [SMALL_STATE(3187)] = 164776, + [SMALL_STATE(3188)] = 164870, + [SMALL_STATE(3189)] = 164964, + [SMALL_STATE(3190)] = 165014, + [SMALL_STATE(3191)] = 165108, + [SMALL_STATE(3192)] = 165162, + [SMALL_STATE(3193)] = 165258, + [SMALL_STATE(3194)] = 165308, + [SMALL_STATE(3195)] = 165362, + [SMALL_STATE(3196)] = 165416, + [SMALL_STATE(3197)] = 165466, + [SMALL_STATE(3198)] = 165552, + [SMALL_STATE(3199)] = 165638, + [SMALL_STATE(3200)] = 165734, + [SMALL_STATE(3201)] = 165828, + [SMALL_STATE(3202)] = 165922, + [SMALL_STATE(3203)] = 166016, + [SMALL_STATE(3204)] = 166102, + [SMALL_STATE(3205)] = 166190, + [SMALL_STATE(3206)] = 166262, + [SMALL_STATE(3207)] = 166346, + [SMALL_STATE(3208)] = 166418, + [SMALL_STATE(3209)] = 166494, + [SMALL_STATE(3210)] = 166568, + [SMALL_STATE(3211)] = 166630, + [SMALL_STATE(3212)] = 166710, + [SMALL_STATE(3213)] = 166784, + [SMALL_STATE(3214)] = 166838, + [SMALL_STATE(3215)] = 166888, + [SMALL_STATE(3216)] = 166984, + [SMALL_STATE(3217)] = 167080, + [SMALL_STATE(3218)] = 167176, + [SMALL_STATE(3219)] = 167226, + [SMALL_STATE(3220)] = 167276, + [SMALL_STATE(3221)] = 167348, + [SMALL_STATE(3222)] = 167424, + [SMALL_STATE(3223)] = 167498, + [SMALL_STATE(3224)] = 167592, + [SMALL_STATE(3225)] = 167686, + [SMALL_STATE(3226)] = 167740, + [SMALL_STATE(3227)] = 167804, + [SMALL_STATE(3228)] = 167900, + [SMALL_STATE(3229)] = 167952, + [SMALL_STATE(3230)] = 168048, + [SMALL_STATE(3231)] = 168102, + [SMALL_STATE(3232)] = 168198, + [SMALL_STATE(3233)] = 168292, + [SMALL_STATE(3234)] = 168342, + [SMALL_STATE(3235)] = 168420, + [SMALL_STATE(3236)] = 168488, + [SMALL_STATE(3237)] = 168582, + [SMALL_STATE(3238)] = 168676, + [SMALL_STATE(3239)] = 168770, + [SMALL_STATE(3240)] = 168830, + [SMALL_STATE(3241)] = 168890, + [SMALL_STATE(3242)] = 168984, + [SMALL_STATE(3243)] = 169050, + [SMALL_STATE(3244)] = 169104, + [SMALL_STATE(3245)] = 169154, + [SMALL_STATE(3246)] = 169206, + [SMALL_STATE(3247)] = 169264, + [SMALL_STATE(3248)] = 169330, + [SMALL_STATE(3249)] = 169384, + [SMALL_STATE(3250)] = 169470, + [SMALL_STATE(3251)] = 169517, + [SMALL_STATE(3252)] = 169610, + [SMALL_STATE(3253)] = 169657, + [SMALL_STATE(3254)] = 169704, + [SMALL_STATE(3255)] = 169753, + [SMALL_STATE(3256)] = 169800, + [SMALL_STATE(3257)] = 169847, + [SMALL_STATE(3258)] = 169894, + [SMALL_STATE(3259)] = 169941, + [SMALL_STATE(3260)] = 169988, + [SMALL_STATE(3261)] = 170037, + [SMALL_STATE(3262)] = 170086, + [SMALL_STATE(3263)] = 170133, + [SMALL_STATE(3264)] = 170180, + [SMALL_STATE(3265)] = 170227, + [SMALL_STATE(3266)] = 170274, + [SMALL_STATE(3267)] = 170329, + [SMALL_STATE(3268)] = 170382, + [SMALL_STATE(3269)] = 170429, + [SMALL_STATE(3270)] = 170476, + [SMALL_STATE(3271)] = 170529, + [SMALL_STATE(3272)] = 170594, + [SMALL_STATE(3273)] = 170687, + [SMALL_STATE(3274)] = 170780, + [SMALL_STATE(3275)] = 170827, + [SMALL_STATE(3276)] = 170880, + [SMALL_STATE(3277)] = 170927, + [SMALL_STATE(3278)] = 170974, + [SMALL_STATE(3279)] = 171061, + [SMALL_STATE(3280)] = 171110, + [SMALL_STATE(3281)] = 171157, + [SMALL_STATE(3282)] = 171204, + [SMALL_STATE(3283)] = 171251, + [SMALL_STATE(3284)] = 171344, + [SMALL_STATE(3285)] = 171409, + [SMALL_STATE(3286)] = 171456, + [SMALL_STATE(3287)] = 171503, + [SMALL_STATE(3288)] = 171556, + [SMALL_STATE(3289)] = 171603, + [SMALL_STATE(3290)] = 171674, + [SMALL_STATE(3291)] = 171767, + [SMALL_STATE(3292)] = 171822, + [SMALL_STATE(3293)] = 171875, + [SMALL_STATE(3294)] = 171928, + [SMALL_STATE(3295)] = 172011, + [SMALL_STATE(3296)] = 172090, + [SMALL_STATE(3297)] = 172183, + [SMALL_STATE(3298)] = 172256, + [SMALL_STATE(3299)] = 172303, + [SMALL_STATE(3300)] = 172352, + [SMALL_STATE(3301)] = 172429, + [SMALL_STATE(3302)] = 172482, + [SMALL_STATE(3303)] = 172535, + [SMALL_STATE(3304)] = 172628, + [SMALL_STATE(3305)] = 172675, + [SMALL_STATE(3306)] = 172728, + [SMALL_STATE(3307)] = 172795, + [SMALL_STATE(3308)] = 172848, + [SMALL_STATE(3309)] = 172915, + [SMALL_STATE(3310)] = 172966, + [SMALL_STATE(3311)] = 173013, + [SMALL_STATE(3312)] = 173062, + [SMALL_STATE(3313)] = 173155, + [SMALL_STATE(3314)] = 173208, + [SMALL_STATE(3315)] = 173275, + [SMALL_STATE(3316)] = 173368, + [SMALL_STATE(3317)] = 173415, + [SMALL_STATE(3318)] = 173502, + [SMALL_STATE(3319)] = 173567, + [SMALL_STATE(3320)] = 173638, + [SMALL_STATE(3321)] = 173721, + [SMALL_STATE(3322)] = 173768, + [SMALL_STATE(3323)] = 173847, + [SMALL_STATE(3324)] = 173894, + [SMALL_STATE(3325)] = 173941, + [SMALL_STATE(3326)] = 173988, + [SMALL_STATE(3327)] = 174035, + [SMALL_STATE(3328)] = 174108, + [SMALL_STATE(3329)] = 174155, + [SMALL_STATE(3330)] = 174202, + [SMALL_STATE(3331)] = 174249, + [SMALL_STATE(3332)] = 174296, + [SMALL_STATE(3333)] = 174343, + [SMALL_STATE(3334)] = 174396, + [SMALL_STATE(3335)] = 174489, + [SMALL_STATE(3336)] = 174582, + [SMALL_STATE(3337)] = 174629, + [SMALL_STATE(3338)] = 174722, + [SMALL_STATE(3339)] = 174779, + [SMALL_STATE(3340)] = 174836, + [SMALL_STATE(3341)] = 174883, + [SMALL_STATE(3342)] = 174932, + [SMALL_STATE(3343)] = 174979, + [SMALL_STATE(3344)] = 175032, + [SMALL_STATE(3345)] = 175109, + [SMALL_STATE(3346)] = 175176, + [SMALL_STATE(3347)] = 175223, + [SMALL_STATE(3348)] = 175272, + [SMALL_STATE(3349)] = 175365, + [SMALL_STATE(3350)] = 175412, + [SMALL_STATE(3351)] = 175465, + [SMALL_STATE(3352)] = 175558, + [SMALL_STATE(3353)] = 175605, + [SMALL_STATE(3354)] = 175672, + [SMALL_STATE(3355)] = 175719, + [SMALL_STATE(3356)] = 175766, + [SMALL_STATE(3357)] = 175813, + [SMALL_STATE(3358)] = 175860, + [SMALL_STATE(3359)] = 175953, + [SMALL_STATE(3360)] = 176002, + [SMALL_STATE(3361)] = 176053, + [SMALL_STATE(3362)] = 176124, + [SMALL_STATE(3363)] = 176197, + [SMALL_STATE(3364)] = 176266, + [SMALL_STATE(3365)] = 176315, + [SMALL_STATE(3366)] = 176408, + [SMALL_STATE(3367)] = 176473, + [SMALL_STATE(3368)] = 176530, + [SMALL_STATE(3369)] = 176623, + [SMALL_STATE(3370)] = 176716, + [SMALL_STATE(3371)] = 176809, + [SMALL_STATE(3372)] = 176856, + [SMALL_STATE(3373)] = 176903, + [SMALL_STATE(3374)] = 176950, + [SMALL_STATE(3375)] = 177043, + [SMALL_STATE(3376)] = 177090, + [SMALL_STATE(3377)] = 177183, + [SMALL_STATE(3378)] = 177276, + [SMALL_STATE(3379)] = 177323, + [SMALL_STATE(3380)] = 177388, + [SMALL_STATE(3381)] = 177453, + [SMALL_STATE(3382)] = 177546, + [SMALL_STATE(3383)] = 177639, + [SMALL_STATE(3384)] = 177686, + [SMALL_STATE(3385)] = 177749, + [SMALL_STATE(3386)] = 177802, + [SMALL_STATE(3387)] = 177895, + [SMALL_STATE(3388)] = 177942, + [SMALL_STATE(3389)] = 178035, + [SMALL_STATE(3390)] = 178084, + [SMALL_STATE(3391)] = 178177, + [SMALL_STATE(3392)] = 178270, + [SMALL_STATE(3393)] = 178325, + [SMALL_STATE(3394)] = 178382, + [SMALL_STATE(3395)] = 178475, + [SMALL_STATE(3396)] = 178524, + [SMALL_STATE(3397)] = 178617, + [SMALL_STATE(3398)] = 178664, + [SMALL_STATE(3399)] = 178757, + [SMALL_STATE(3400)] = 178824, + [SMALL_STATE(3401)] = 178877, + [SMALL_STATE(3402)] = 178932, + [SMALL_STATE(3403)] = 178985, + [SMALL_STATE(3404)] = 179032, + [SMALL_STATE(3405)] = 179079, + [SMALL_STATE(3406)] = 179128, + [SMALL_STATE(3407)] = 179181, + [SMALL_STATE(3408)] = 179228, + [SMALL_STATE(3409)] = 179321, + [SMALL_STATE(3410)] = 179368, + [SMALL_STATE(3411)] = 179461, + [SMALL_STATE(3412)] = 179508, + [SMALL_STATE(3413)] = 179557, + [SMALL_STATE(3414)] = 179604, + [SMALL_STATE(3415)] = 179651, + [SMALL_STATE(3416)] = 179744, + [SMALL_STATE(3417)] = 179791, + [SMALL_STATE(3418)] = 179838, + [SMALL_STATE(3419)] = 179885, + [SMALL_STATE(3420)] = 179932, + [SMALL_STATE(3421)] = 179979, + [SMALL_STATE(3422)] = 180030, + [SMALL_STATE(3423)] = 180081, + [SMALL_STATE(3424)] = 180134, + [SMALL_STATE(3425)] = 180227, + [SMALL_STATE(3426)] = 180320, + [SMALL_STATE(3427)] = 180367, + [SMALL_STATE(3428)] = 180414, + [SMALL_STATE(3429)] = 180507, + [SMALL_STATE(3430)] = 180600, + [SMALL_STATE(3431)] = 180653, + [SMALL_STATE(3432)] = 180700, + [SMALL_STATE(3433)] = 180793, + [SMALL_STATE(3434)] = 180846, + [SMALL_STATE(3435)] = 180899, + [SMALL_STATE(3436)] = 180948, + [SMALL_STATE(3437)] = 181001, + [SMALL_STATE(3438)] = 181054, + [SMALL_STATE(3439)] = 181101, + [SMALL_STATE(3440)] = 181194, + [SMALL_STATE(3441)] = 181245, + [SMALL_STATE(3442)] = 181298, + [SMALL_STATE(3443)] = 181347, + [SMALL_STATE(3444)] = 181440, + [SMALL_STATE(3445)] = 181489, + [SMALL_STATE(3446)] = 181536, + [SMALL_STATE(3447)] = 181583, + [SMALL_STATE(3448)] = 181632, + [SMALL_STATE(3449)] = 181681, + [SMALL_STATE(3450)] = 181730, + [SMALL_STATE(3451)] = 181777, + [SMALL_STATE(3452)] = 181828, + [SMALL_STATE(3453)] = 181881, + [SMALL_STATE(3454)] = 181928, + [SMALL_STATE(3455)] = 181979, + [SMALL_STATE(3456)] = 182026, + [SMALL_STATE(3457)] = 182079, + [SMALL_STATE(3458)] = 182146, + [SMALL_STATE(3459)] = 182199, + [SMALL_STATE(3460)] = 182246, + [SMALL_STATE(3461)] = 182297, + [SMALL_STATE(3462)] = 182350, + [SMALL_STATE(3463)] = 182403, + [SMALL_STATE(3464)] = 182452, + [SMALL_STATE(3465)] = 182519, + [SMALL_STATE(3466)] = 182566, + [SMALL_STATE(3467)] = 182619, + [SMALL_STATE(3468)] = 182672, + [SMALL_STATE(3469)] = 182719, + [SMALL_STATE(3470)] = 182772, + [SMALL_STATE(3471)] = 182819, + [SMALL_STATE(3472)] = 182886, + [SMALL_STATE(3473)] = 182933, + [SMALL_STATE(3474)] = 182980, + [SMALL_STATE(3475)] = 183047, + [SMALL_STATE(3476)] = 183140, + [SMALL_STATE(3477)] = 183207, + [SMALL_STATE(3478)] = 183256, + [SMALL_STATE(3479)] = 183303, + [SMALL_STATE(3480)] = 183350, + [SMALL_STATE(3481)] = 183397, + [SMALL_STATE(3482)] = 183450, + [SMALL_STATE(3483)] = 183499, + [SMALL_STATE(3484)] = 183562, + [SMALL_STATE(3485)] = 183609, + [SMALL_STATE(3486)] = 183702, + [SMALL_STATE(3487)] = 183749, + [SMALL_STATE(3488)] = 183802, + [SMALL_STATE(3489)] = 183855, + [SMALL_STATE(3490)] = 183948, + [SMALL_STATE(3491)] = 183995, + [SMALL_STATE(3492)] = 184044, + [SMALL_STATE(3493)] = 184099, + [SMALL_STATE(3494)] = 184146, + [SMALL_STATE(3495)] = 184199, + [SMALL_STATE(3496)] = 184246, + [SMALL_STATE(3497)] = 184299, + [SMALL_STATE(3498)] = 184352, + [SMALL_STATE(3499)] = 184405, + [SMALL_STATE(3500)] = 184452, + [SMALL_STATE(3501)] = 184499, + [SMALL_STATE(3502)] = 184592, + [SMALL_STATE(3503)] = 184639, + [SMALL_STATE(3504)] = 184732, + [SMALL_STATE(3505)] = 184825, + [SMALL_STATE(3506)] = 184918, + [SMALL_STATE(3507)] = 184982, + [SMALL_STATE(3508)] = 185034, + [SMALL_STATE(3509)] = 185082, + [SMALL_STATE(3510)] = 185134, + [SMALL_STATE(3511)] = 185186, + [SMALL_STATE(3512)] = 185276, + [SMALL_STATE(3513)] = 185366, + [SMALL_STATE(3514)] = 185418, + [SMALL_STATE(3515)] = 185466, + [SMALL_STATE(3516)] = 185556, + [SMALL_STATE(3517)] = 185608, + [SMALL_STATE(3518)] = 185656, + [SMALL_STATE(3519)] = 185708, + [SMALL_STATE(3520)] = 185772, + [SMALL_STATE(3521)] = 185838, + [SMALL_STATE(3522)] = 185888, + [SMALL_STATE(3523)] = 185978, + [SMALL_STATE(3524)] = 186030, + [SMALL_STATE(3525)] = 186082, + [SMALL_STATE(3526)] = 186134, + [SMALL_STATE(3527)] = 186198, + [SMALL_STATE(3528)] = 186246, + [SMALL_STATE(3529)] = 186314, + [SMALL_STATE(3530)] = 186366, + [SMALL_STATE(3531)] = 186416, + [SMALL_STATE(3532)] = 186464, + [SMALL_STATE(3533)] = 186528, + [SMALL_STATE(3534)] = 186576, + [SMALL_STATE(3535)] = 186628, + [SMALL_STATE(3536)] = 186696, + [SMALL_STATE(3537)] = 186762, + [SMALL_STATE(3538)] = 186830, + [SMALL_STATE(3539)] = 186882, + [SMALL_STATE(3540)] = 186934, + [SMALL_STATE(3541)] = 186986, + [SMALL_STATE(3542)] = 187040, + [SMALL_STATE(3543)] = 187092, + [SMALL_STATE(3544)] = 187140, + [SMALL_STATE(3545)] = 187192, + [SMALL_STATE(3546)] = 187242, + [SMALL_STATE(3547)] = 187306, + [SMALL_STATE(3548)] = 187374, + [SMALL_STATE(3549)] = 187440, + [SMALL_STATE(3550)] = 187492, + [SMALL_STATE(3551)] = 187540, + [SMALL_STATE(3552)] = 187590, + [SMALL_STATE(3553)] = 187649, + [SMALL_STATE(3554)] = 187710, + [SMALL_STATE(3555)] = 187761, + [SMALL_STATE(3556)] = 187818, + [SMALL_STATE(3557)] = 187877, + [SMALL_STATE(3558)] = 187948, + [SMALL_STATE(3559)] = 188019, + [SMALL_STATE(3560)] = 188076, + [SMALL_STATE(3561)] = 188149, + [SMALL_STATE(3562)] = 188218, + [SMALL_STATE(3563)] = 188265, + [SMALL_STATE(3564)] = 188336, + [SMALL_STATE(3565)] = 188387, + [SMALL_STATE(3566)] = 188460, + [SMALL_STATE(3567)] = 188533, + [SMALL_STATE(3568)] = 188602, + [SMALL_STATE(3569)] = 188659, + [SMALL_STATE(3570)] = 188720, + [SMALL_STATE(3571)] = 188793, + [SMALL_STATE(3572)] = 188844, + [SMALL_STATE(3573)] = 188913, + [SMALL_STATE(3574)] = 188970, + [SMALL_STATE(3575)] = 189019, + [SMALL_STATE(3576)] = 189076, + [SMALL_STATE(3577)] = 189135, + [SMALL_STATE(3578)] = 189186, + [SMALL_STATE(3579)] = 189235, + [SMALL_STATE(3580)] = 189286, + [SMALL_STATE(3581)] = 189337, + [SMALL_STATE(3582)] = 189384, + [SMALL_STATE(3583)] = 189457, + [SMALL_STATE(3584)] = 189508, + [SMALL_STATE(3585)] = 189567, + [SMALL_STATE(3586)] = 189636, + [SMALL_STATE(3587)] = 189683, + [SMALL_STATE(3588)] = 189734, + [SMALL_STATE(3589)] = 189807, + [SMALL_STATE(3590)] = 189878, + [SMALL_STATE(3591)] = 189929, + [SMALL_STATE(3592)] = 189976, + [SMALL_STATE(3593)] = 190033, + [SMALL_STATE(3594)] = 190096, + [SMALL_STATE(3595)] = 190155, + [SMALL_STATE(3596)] = 190228, + [SMALL_STATE(3597)] = 190287, + [SMALL_STATE(3598)] = 190350, + [SMALL_STATE(3599)] = 190409, + [SMALL_STATE(3600)] = 190470, + [SMALL_STATE(3601)] = 190543, + [SMALL_STATE(3602)] = 190616, + [SMALL_STATE(3603)] = 190685, + [SMALL_STATE(3604)] = 190758, + [SMALL_STATE(3605)] = 190829, + [SMALL_STATE(3606)] = 190880, + [SMALL_STATE(3607)] = 190939, + [SMALL_STATE(3608)] = 190996, + [SMALL_STATE(3609)] = 191065, + [SMALL_STATE(3610)] = 191116, + [SMALL_STATE(3611)] = 191173, + [SMALL_STATE(3612)] = 191234, + [SMALL_STATE(3613)] = 191293, + [SMALL_STATE(3614)] = 191364, + [SMALL_STATE(3615)] = 191435, + [SMALL_STATE(3616)] = 191508, + [SMALL_STATE(3617)] = 191581, + [SMALL_STATE(3618)] = 191650, + [SMALL_STATE(3619)] = 191723, + [SMALL_STATE(3620)] = 191794, + [SMALL_STATE(3621)] = 191841, + [SMALL_STATE(3622)] = 191900, + [SMALL_STATE(3623)] = 191973, + [SMALL_STATE(3624)] = 192046, + [SMALL_STATE(3625)] = 192119, + [SMALL_STATE(3626)] = 192188, + [SMALL_STATE(3627)] = 192251, + [SMALL_STATE(3628)] = 192322, + [SMALL_STATE(3629)] = 192385, + [SMALL_STATE(3630)] = 192448, + [SMALL_STATE(3631)] = 192517, + [SMALL_STATE(3632)] = 192590, + [SMALL_STATE(3633)] = 192661, + [SMALL_STATE(3634)] = 192722, + [SMALL_STATE(3635)] = 192783, + [SMALL_STATE(3636)] = 192842, + [SMALL_STATE(3637)] = 192911, + [SMALL_STATE(3638)] = 192984, + [SMALL_STATE(3639)] = 193055, + [SMALL_STATE(3640)] = 193128, + [SMALL_STATE(3641)] = 193187, + [SMALL_STATE(3642)] = 193244, + [SMALL_STATE(3643)] = 193295, + [SMALL_STATE(3644)] = 193346, + [SMALL_STATE(3645)] = 193397, + [SMALL_STATE(3646)] = 193456, + [SMALL_STATE(3647)] = 193519, + [SMALL_STATE(3648)] = 193580, + [SMALL_STATE(3649)] = 193653, + [SMALL_STATE(3650)] = 193722, + [SMALL_STATE(3651)] = 193766, + [SMALL_STATE(3652)] = 193830, + [SMALL_STATE(3653)] = 193894, + [SMALL_STATE(3654)] = 193938, + [SMALL_STATE(3655)] = 194002, + [SMALL_STATE(3656)] = 194056, + [SMALL_STATE(3657)] = 194110, + [SMALL_STATE(3658)] = 194160, + [SMALL_STATE(3659)] = 194214, + [SMALL_STATE(3660)] = 194268, + [SMALL_STATE(3661)] = 194332, + [SMALL_STATE(3662)] = 194396, + [SMALL_STATE(3663)] = 194460, + [SMALL_STATE(3664)] = 194514, + [SMALL_STATE(3665)] = 194578, + [SMALL_STATE(3666)] = 194642, + [SMALL_STATE(3667)] = 194696, + [SMALL_STATE(3668)] = 194750, + [SMALL_STATE(3669)] = 194804, + [SMALL_STATE(3670)] = 194858, + [SMALL_STATE(3671)] = 194922, + [SMALL_STATE(3672)] = 194986, + [SMALL_STATE(3673)] = 195040, + [SMALL_STATE(3674)] = 195094, + [SMALL_STATE(3675)] = 195148, + [SMALL_STATE(3676)] = 195202, + [SMALL_STATE(3677)] = 195272, + [SMALL_STATE(3678)] = 195326, + [SMALL_STATE(3679)] = 195390, + [SMALL_STATE(3680)] = 195444, + [SMALL_STATE(3681)] = 195498, + [SMALL_STATE(3682)] = 195542, + [SMALL_STATE(3683)] = 195597, + [SMALL_STATE(3684)] = 195640, + [SMALL_STATE(3685)] = 195695, + [SMALL_STATE(3686)] = 195744, + [SMALL_STATE(3687)] = 195805, + [SMALL_STATE(3688)] = 195854, + [SMALL_STATE(3689)] = 195919, + [SMALL_STATE(3690)] = 195982, + [SMALL_STATE(3691)] = 196053, + [SMALL_STATE(3692)] = 196107, + [SMALL_STATE(3693)] = 196167, + [SMALL_STATE(3694)] = 196221, + [SMALL_STATE(3695)] = 196275, + [SMALL_STATE(3696)] = 196329, + [SMALL_STATE(3697)] = 196383, + [SMALL_STATE(3698)] = 196437, + [SMALL_STATE(3699)] = 196491, + [SMALL_STATE(3700)] = 196545, + [SMALL_STATE(3701)] = 196599, + [SMALL_STATE(3702)] = 196651, + [SMALL_STATE(3703)] = 196707, + [SMALL_STATE(3704)] = 196765, + [SMALL_STATE(3705)] = 196827, + [SMALL_STATE(3706)] = 196881, + [SMALL_STATE(3707)] = 196935, + [SMALL_STATE(3708)] = 196989, + [SMALL_STATE(3709)] = 197043, + [SMALL_STATE(3710)] = 197122, + [SMALL_STATE(3711)] = 197177, + [SMALL_STATE(3712)] = 197232, + [SMALL_STATE(3713)] = 197299, + [SMALL_STATE(3714)] = 197378, + [SMALL_STATE(3715)] = 197433, + [SMALL_STATE(3716)] = 197488, + [SMALL_STATE(3717)] = 197529, + [SMALL_STATE(3718)] = 197582, + [SMALL_STATE(3719)] = 197661, + [SMALL_STATE(3720)] = 197740, + [SMALL_STATE(3721)] = 197819, + [SMALL_STATE(3722)] = 197860, + [SMALL_STATE(3723)] = 197906, + [SMALL_STATE(3724)] = 197970, + [SMALL_STATE(3725)] = 198011, + [SMALL_STATE(3726)] = 198050, + [SMALL_STATE(3727)] = 198091, + [SMALL_STATE(3728)] = 198144, + [SMALL_STATE(3729)] = 198183, + [SMALL_STATE(3730)] = 198240, + [SMALL_STATE(3731)] = 198297, + [SMALL_STATE(3732)] = 198336, + [SMALL_STATE(3733)] = 198375, + [SMALL_STATE(3734)] = 198414, + [SMALL_STATE(3735)] = 198453, + [SMALL_STATE(3736)] = 198492, + [SMALL_STATE(3737)] = 198531, + [SMALL_STATE(3738)] = 198584, + [SMALL_STATE(3739)] = 198623, + [SMALL_STATE(3740)] = 198662, + [SMALL_STATE(3741)] = 198701, + [SMALL_STATE(3742)] = 198740, + [SMALL_STATE(3743)] = 198779, + [SMALL_STATE(3744)] = 198820, + [SMALL_STATE(3745)] = 198859, + [SMALL_STATE(3746)] = 198898, + [SMALL_STATE(3747)] = 198937, + [SMALL_STATE(3748)] = 198976, + [SMALL_STATE(3749)] = 199015, + [SMALL_STATE(3750)] = 199072, + [SMALL_STATE(3751)] = 199123, + [SMALL_STATE(3752)] = 199162, + [SMALL_STATE(3753)] = 199205, + [SMALL_STATE(3754)] = 199260, + [SMALL_STATE(3755)] = 199315, + [SMALL_STATE(3756)] = 199368, + [SMALL_STATE(3757)] = 199407, + [SMALL_STATE(3758)] = 199455, + [SMALL_STATE(3759)] = 199503, + [SMALL_STATE(3760)] = 199551, + [SMALL_STATE(3761)] = 199599, + [SMALL_STATE(3762)] = 199647, + [SMALL_STATE(3763)] = 199695, + [SMALL_STATE(3764)] = 199743, + [SMALL_STATE(3765)] = 199791, + [SMALL_STATE(3766)] = 199839, + [SMALL_STATE(3767)] = 199887, + [SMALL_STATE(3768)] = 199935, + [SMALL_STATE(3769)] = 199983, + [SMALL_STATE(3770)] = 200031, + [SMALL_STATE(3771)] = 200079, + [SMALL_STATE(3772)] = 200133, + [SMALL_STATE(3773)] = 200187, + [SMALL_STATE(3774)] = 200235, + [SMALL_STATE(3775)] = 200287, + [SMALL_STATE(3776)] = 200335, + [SMALL_STATE(3777)] = 200384, + [SMALL_STATE(3778)] = 200433, + [SMALL_STATE(3779)] = 200482, + [SMALL_STATE(3780)] = 200531, + [SMALL_STATE(3781)] = 200588, + [SMALL_STATE(3782)] = 200637, + [SMALL_STATE(3783)] = 200674, + [SMALL_STATE(3784)] = 200723, + [SMALL_STATE(3785)] = 200777, + [SMALL_STATE(3786)] = 200831, + [SMALL_STATE(3787)] = 200885, + [SMALL_STATE(3788)] = 200931, + [SMALL_STATE(3789)] = 200981, + [SMALL_STATE(3790)] = 201019, + [SMALL_STATE(3791)] = 201069, + [SMALL_STATE(3792)] = 201119, + [SMALL_STATE(3793)] = 201161, + [SMALL_STATE(3794)] = 201211, + [SMALL_STATE(3795)] = 201261, + [SMALL_STATE(3796)] = 201304, + [SMALL_STATE(3797)] = 201347, + [SMALL_STATE(3798)] = 201390, + [SMALL_STATE(3799)] = 201435, + [SMALL_STATE(3800)] = 201478, + [SMALL_STATE(3801)] = 201521, + [SMALL_STATE(3802)] = 201564, + [SMALL_STATE(3803)] = 201607, + [SMALL_STATE(3804)] = 201650, + [SMALL_STATE(3805)] = 201693, + [SMALL_STATE(3806)] = 201736, + [SMALL_STATE(3807)] = 201779, + [SMALL_STATE(3808)] = 201822, + [SMALL_STATE(3809)] = 201865, + [SMALL_STATE(3810)] = 201910, + [SMALL_STATE(3811)] = 201953, + [SMALL_STATE(3812)] = 201996, + [SMALL_STATE(3813)] = 202039, + [SMALL_STATE(3814)] = 202082, + [SMALL_STATE(3815)] = 202125, + [SMALL_STATE(3816)] = 202168, + [SMALL_STATE(3817)] = 202211, + [SMALL_STATE(3818)] = 202254, + [SMALL_STATE(3819)] = 202297, + [SMALL_STATE(3820)] = 202340, + [SMALL_STATE(3821)] = 202383, + [SMALL_STATE(3822)] = 202428, + [SMALL_STATE(3823)] = 202471, + [SMALL_STATE(3824)] = 202505, + [SMALL_STATE(3825)] = 202535, + [SMALL_STATE(3826)] = 202562, + [SMALL_STATE(3827)] = 202592, + [SMALL_STATE(3828)] = 202616, + [SMALL_STATE(3829)] = 202640, + [SMALL_STATE(3830)] = 202661, + [SMALL_STATE(3831)] = 202682, + [SMALL_STATE(3832)] = 202703, + [SMALL_STATE(3833)] = 202726, + [SMALL_STATE(3834)] = 202749, + [SMALL_STATE(3835)] = 202770, + [SMALL_STATE(3836)] = 202791, + [SMALL_STATE(3837)] = 202812, + [SMALL_STATE(3838)] = 202833, + [SMALL_STATE(3839)] = 202854, + [SMALL_STATE(3840)] = 202875, + [SMALL_STATE(3841)] = 202896, + [SMALL_STATE(3842)] = 202923, + [SMALL_STATE(3843)] = 202944, + [SMALL_STATE(3844)] = 202965, + [SMALL_STATE(3845)] = 202986, + [SMALL_STATE(3846)] = 203007, + [SMALL_STATE(3847)] = 203028, + [SMALL_STATE(3848)] = 203049, + [SMALL_STATE(3849)] = 203070, + [SMALL_STATE(3850)] = 203091, + [SMALL_STATE(3851)] = 203112, + [SMALL_STATE(3852)] = 203133, + [SMALL_STATE(3853)] = 203163, + [SMALL_STATE(3854)] = 203205, + [SMALL_STATE(3855)] = 203247, + [SMALL_STATE(3856)] = 203275, + [SMALL_STATE(3857)] = 203317, + [SMALL_STATE(3858)] = 203359, + [SMALL_STATE(3859)] = 203401, + [SMALL_STATE(3860)] = 203443, + [SMALL_STATE(3861)] = 203464, + [SMALL_STATE(3862)] = 203499, + [SMALL_STATE(3863)] = 203520, + [SMALL_STATE(3864)] = 203541, + [SMALL_STATE(3865)] = 203562, + [SMALL_STATE(3866)] = 203599, + [SMALL_STATE(3867)] = 203620, + [SMALL_STATE(3868)] = 203641, + [SMALL_STATE(3869)] = 203664, + [SMALL_STATE(3870)] = 203685, + [SMALL_STATE(3871)] = 203720, + [SMALL_STATE(3872)] = 203741, + [SMALL_STATE(3873)] = 203776, + [SMALL_STATE(3874)] = 203797, + [SMALL_STATE(3875)] = 203832, + [SMALL_STATE(3876)] = 203853, + [SMALL_STATE(3877)] = 203874, + [SMALL_STATE(3878)] = 203895, + [SMALL_STATE(3879)] = 203916, + [SMALL_STATE(3880)] = 203941, + [SMALL_STATE(3881)] = 203962, + [SMALL_STATE(3882)] = 203985, + [SMALL_STATE(3883)] = 204006, + [SMALL_STATE(3884)] = 204027, + [SMALL_STATE(3885)] = 204050, + [SMALL_STATE(3886)] = 204075, + [SMALL_STATE(3887)] = 204096, + [SMALL_STATE(3888)] = 204131, + [SMALL_STATE(3889)] = 204166, + [SMALL_STATE(3890)] = 204201, + [SMALL_STATE(3891)] = 204222, + [SMALL_STATE(3892)] = 204257, + [SMALL_STATE(3893)] = 204278, + [SMALL_STATE(3894)] = 204299, + [SMALL_STATE(3895)] = 204334, + [SMALL_STATE(3896)] = 204369, + [SMALL_STATE(3897)] = 204390, + [SMALL_STATE(3898)] = 204420, + [SMALL_STATE(3899)] = 204448, + [SMALL_STATE(3900)] = 204480, + [SMALL_STATE(3901)] = 204512, + [SMALL_STATE(3902)] = 204548, + [SMALL_STATE(3903)] = 204580, + [SMALL_STATE(3904)] = 204616, + [SMALL_STATE(3905)] = 204642, + [SMALL_STATE(3906)] = 204678, + [SMALL_STATE(3907)] = 204706, + [SMALL_STATE(3908)] = 204738, + [SMALL_STATE(3909)] = 204770, + [SMALL_STATE(3910)] = 204806, + [SMALL_STATE(3911)] = 204834, + [SMALL_STATE(3912)] = 204862, + [SMALL_STATE(3913)] = 204890, + [SMALL_STATE(3914)] = 204926, + [SMALL_STATE(3915)] = 204954, + [SMALL_STATE(3916)] = 204982, + [SMALL_STATE(3917)] = 205014, + [SMALL_STATE(3918)] = 205050, + [SMALL_STATE(3919)] = 205078, + [SMALL_STATE(3920)] = 205106, + [SMALL_STATE(3921)] = 205132, + [SMALL_STATE(3922)] = 205164, + [SMALL_STATE(3923)] = 205196, + [SMALL_STATE(3924)] = 205224, + [SMALL_STATE(3925)] = 205252, + [SMALL_STATE(3926)] = 205271, + [SMALL_STATE(3927)] = 205290, + [SMALL_STATE(3928)] = 205315, + [SMALL_STATE(3929)] = 205332, + [SMALL_STATE(3930)] = 205355, + [SMALL_STATE(3931)] = 205374, + [SMALL_STATE(3932)] = 205401, + [SMALL_STATE(3933)] = 205420, + [SMALL_STATE(3934)] = 205441, + [SMALL_STATE(3935)] = 205460, + [SMALL_STATE(3936)] = 205479, + [SMALL_STATE(3937)] = 205498, + [SMALL_STATE(3938)] = 205517, + [SMALL_STATE(3939)] = 205536, + [SMALL_STATE(3940)] = 205557, + [SMALL_STATE(3941)] = 205582, + [SMALL_STATE(3942)] = 205601, + [SMALL_STATE(3943)] = 205624, + [SMALL_STATE(3944)] = 205649, + [SMALL_STATE(3945)] = 205668, + [SMALL_STATE(3946)] = 205693, + [SMALL_STATE(3947)] = 205712, + [SMALL_STATE(3948)] = 205731, + [SMALL_STATE(3949)] = 205750, + [SMALL_STATE(3950)] = 205769, + [SMALL_STATE(3951)] = 205788, + [SMALL_STATE(3952)] = 205807, + [SMALL_STATE(3953)] = 205832, + [SMALL_STATE(3954)] = 205851, + [SMALL_STATE(3955)] = 205870, + [SMALL_STATE(3956)] = 205889, + [SMALL_STATE(3957)] = 205908, + [SMALL_STATE(3958)] = 205927, + [SMALL_STATE(3959)] = 205944, + [SMALL_STATE(3960)] = 205965, + [SMALL_STATE(3961)] = 205984, + [SMALL_STATE(3962)] = 206003, + [SMALL_STATE(3963)] = 206022, + [SMALL_STATE(3964)] = 206047, + [SMALL_STATE(3965)] = 206066, + [SMALL_STATE(3966)] = 206085, + [SMALL_STATE(3967)] = 206104, + [SMALL_STATE(3968)] = 206123, + [SMALL_STATE(3969)] = 206142, + [SMALL_STATE(3970)] = 206161, + [SMALL_STATE(3971)] = 206189, + [SMALL_STATE(3972)] = 206223, + [SMALL_STATE(3973)] = 206243, + [SMALL_STATE(3974)] = 206263, + [SMALL_STATE(3975)] = 206297, + [SMALL_STATE(3976)] = 206319, + [SMALL_STATE(3977)] = 206341, + [SMALL_STATE(3978)] = 206375, + [SMALL_STATE(3979)] = 206409, + [SMALL_STATE(3980)] = 206429, + [SMALL_STATE(3981)] = 206463, + [SMALL_STATE(3982)] = 206497, + [SMALL_STATE(3983)] = 206519, + [SMALL_STATE(3984)] = 206553, + [SMALL_STATE(3985)] = 206573, + [SMALL_STATE(3986)] = 206593, + [SMALL_STATE(3987)] = 206627, + [SMALL_STATE(3988)] = 206661, + [SMALL_STATE(3989)] = 206695, + [SMALL_STATE(3990)] = 206715, + [SMALL_STATE(3991)] = 206735, + [SMALL_STATE(3992)] = 206759, + [SMALL_STATE(3993)] = 206793, + [SMALL_STATE(3994)] = 206817, + [SMALL_STATE(3995)] = 206851, + [SMALL_STATE(3996)] = 206869, + [SMALL_STATE(3997)] = 206899, + [SMALL_STATE(3998)] = 206933, + [SMALL_STATE(3999)] = 206957, + [SMALL_STATE(4000)] = 206977, + [SMALL_STATE(4001)] = 207011, + [SMALL_STATE(4002)] = 207033, + [SMALL_STATE(4003)] = 207058, + [SMALL_STATE(4004)] = 207077, + [SMALL_STATE(4005)] = 207108, + [SMALL_STATE(4006)] = 207139, + [SMALL_STATE(4007)] = 207170, + [SMALL_STATE(4008)] = 207201, + [SMALL_STATE(4009)] = 207220, + [SMALL_STATE(4010)] = 207239, + [SMALL_STATE(4011)] = 207264, + [SMALL_STATE(4012)] = 207295, + [SMALL_STATE(4013)] = 207320, + [SMALL_STATE(4014)] = 207351, + [SMALL_STATE(4015)] = 207376, + [SMALL_STATE(4016)] = 207401, + [SMALL_STATE(4017)] = 207432, + [SMALL_STATE(4018)] = 207457, + [SMALL_STATE(4019)] = 207488, + [SMALL_STATE(4020)] = 207513, + [SMALL_STATE(4021)] = 207528, + [SMALL_STATE(4022)] = 207547, + [SMALL_STATE(4023)] = 207572, + [SMALL_STATE(4024)] = 207597, + [SMALL_STATE(4025)] = 207628, + [SMALL_STATE(4026)] = 207647, + [SMALL_STATE(4027)] = 207672, + [SMALL_STATE(4028)] = 207703, + [SMALL_STATE(4029)] = 207724, + [SMALL_STATE(4030)] = 207739, + [SMALL_STATE(4031)] = 207756, + [SMALL_STATE(4032)] = 207787, + [SMALL_STATE(4033)] = 207812, + [SMALL_STATE(4034)] = 207827, + [SMALL_STATE(4035)] = 207852, + [SMALL_STATE(4036)] = 207869, + [SMALL_STATE(4037)] = 207892, + [SMALL_STATE(4038)] = 207917, + [SMALL_STATE(4039)] = 207948, + [SMALL_STATE(4040)] = 207967, + [SMALL_STATE(4041)] = 207992, + [SMALL_STATE(4042)] = 208023, + [SMALL_STATE(4043)] = 208038, + [SMALL_STATE(4044)] = 208069, + [SMALL_STATE(4045)] = 208084, + [SMALL_STATE(4046)] = 208099, + [SMALL_STATE(4047)] = 208124, + [SMALL_STATE(4048)] = 208143, + [SMALL_STATE(4049)] = 208168, + [SMALL_STATE(4050)] = 208187, + [SMALL_STATE(4051)] = 208218, + [SMALL_STATE(4052)] = 208241, + [SMALL_STATE(4053)] = 208272, + [SMALL_STATE(4054)] = 208291, + [SMALL_STATE(4055)] = 208322, + [SMALL_STATE(4056)] = 208353, + [SMALL_STATE(4057)] = 208372, + [SMALL_STATE(4058)] = 208403, + [SMALL_STATE(4059)] = 208426, + [SMALL_STATE(4060)] = 208457, + [SMALL_STATE(4061)] = 208488, + [SMALL_STATE(4062)] = 208519, + [SMALL_STATE(4063)] = 208534, + [SMALL_STATE(4064)] = 208549, + [SMALL_STATE(4065)] = 208563, + [SMALL_STATE(4066)] = 208577, + [SMALL_STATE(4067)] = 208593, + [SMALL_STATE(4068)] = 208607, + [SMALL_STATE(4069)] = 208621, + [SMALL_STATE(4070)] = 208641, + [SMALL_STATE(4071)] = 208655, + [SMALL_STATE(4072)] = 208669, + [SMALL_STATE(4073)] = 208693, + [SMALL_STATE(4074)] = 208707, + [SMALL_STATE(4075)] = 208721, + [SMALL_STATE(4076)] = 208735, + [SMALL_STATE(4077)] = 208749, + [SMALL_STATE(4078)] = 208765, + [SMALL_STATE(4079)] = 208783, + [SMALL_STATE(4080)] = 208801, + [SMALL_STATE(4081)] = 208819, + [SMALL_STATE(4082)] = 208833, + [SMALL_STATE(4083)] = 208847, + [SMALL_STATE(4084)] = 208861, + [SMALL_STATE(4085)] = 208879, + [SMALL_STATE(4086)] = 208899, + [SMALL_STATE(4087)] = 208913, + [SMALL_STATE(4088)] = 208927, + [SMALL_STATE(4089)] = 208941, + [SMALL_STATE(4090)] = 208955, + [SMALL_STATE(4091)] = 208969, + [SMALL_STATE(4092)] = 208983, + [SMALL_STATE(4093)] = 208999, + [SMALL_STATE(4094)] = 209019, + [SMALL_STATE(4095)] = 209033, + [SMALL_STATE(4096)] = 209049, + [SMALL_STATE(4097)] = 209063, + [SMALL_STATE(4098)] = 209083, + [SMALL_STATE(4099)] = 209107, + [SMALL_STATE(4100)] = 209123, + [SMALL_STATE(4101)] = 209141, + [SMALL_STATE(4102)] = 209157, + [SMALL_STATE(4103)] = 209171, + [SMALL_STATE(4104)] = 209191, + [SMALL_STATE(4105)] = 209207, + [SMALL_STATE(4106)] = 209227, + [SMALL_STATE(4107)] = 209241, + [SMALL_STATE(4108)] = 209259, + [SMALL_STATE(4109)] = 209273, + [SMALL_STATE(4110)] = 209287, + [SMALL_STATE(4111)] = 209301, + [SMALL_STATE(4112)] = 209321, + [SMALL_STATE(4113)] = 209341, + [SMALL_STATE(4114)] = 209357, + [SMALL_STATE(4115)] = 209377, + [SMALL_STATE(4116)] = 209397, + [SMALL_STATE(4117)] = 209413, + [SMALL_STATE(4118)] = 209433, + [SMALL_STATE(4119)] = 209447, + [SMALL_STATE(4120)] = 209471, + [SMALL_STATE(4121)] = 209487, + [SMALL_STATE(4122)] = 209501, + [SMALL_STATE(4123)] = 209517, + [SMALL_STATE(4124)] = 209531, + [SMALL_STATE(4125)] = 209545, + [SMALL_STATE(4126)] = 209559, + [SMALL_STATE(4127)] = 209573, + [SMALL_STATE(4128)] = 209587, + [SMALL_STATE(4129)] = 209606, + [SMALL_STATE(4130)] = 209627, + [SMALL_STATE(4131)] = 209652, + [SMALL_STATE(4132)] = 209669, + [SMALL_STATE(4133)] = 209686, + [SMALL_STATE(4134)] = 209703, + [SMALL_STATE(4135)] = 209724, + [SMALL_STATE(4136)] = 209741, + [SMALL_STATE(4137)] = 209756, + [SMALL_STATE(4138)] = 209781, + [SMALL_STATE(4139)] = 209794, + [SMALL_STATE(4140)] = 209811, + [SMALL_STATE(4141)] = 209828, + [SMALL_STATE(4142)] = 209845, + [SMALL_STATE(4143)] = 209870, + [SMALL_STATE(4144)] = 209887, + [SMALL_STATE(4145)] = 209912, + [SMALL_STATE(4146)] = 209929, + [SMALL_STATE(4147)] = 209946, + [SMALL_STATE(4148)] = 209963, + [SMALL_STATE(4149)] = 209980, + [SMALL_STATE(4150)] = 209997, + [SMALL_STATE(4151)] = 210012, + [SMALL_STATE(4152)] = 210031, + [SMALL_STATE(4153)] = 210052, + [SMALL_STATE(4154)] = 210069, + [SMALL_STATE(4155)] = 210094, + [SMALL_STATE(4156)] = 210113, + [SMALL_STATE(4157)] = 210130, + [SMALL_STATE(4158)] = 210145, + [SMALL_STATE(4159)] = 210160, + [SMALL_STATE(4160)] = 210179, + [SMALL_STATE(4161)] = 210204, + [SMALL_STATE(4162)] = 210221, + [SMALL_STATE(4163)] = 210246, + [SMALL_STATE(4164)] = 210263, + [SMALL_STATE(4165)] = 210288, + [SMALL_STATE(4166)] = 210307, + [SMALL_STATE(4167)] = 210332, + [SMALL_STATE(4168)] = 210357, + [SMALL_STATE(4169)] = 210378, + [SMALL_STATE(4170)] = 210393, + [SMALL_STATE(4171)] = 210408, + [SMALL_STATE(4172)] = 210423, + [SMALL_STATE(4173)] = 210442, + [SMALL_STATE(4174)] = 210467, + [SMALL_STATE(4175)] = 210492, + [SMALL_STATE(4176)] = 210517, + [SMALL_STATE(4177)] = 210542, + [SMALL_STATE(4178)] = 210567, + [SMALL_STATE(4179)] = 210584, + [SMALL_STATE(4180)] = 210597, + [SMALL_STATE(4181)] = 210622, + [SMALL_STATE(4182)] = 210641, + [SMALL_STATE(4183)] = 210666, + [SMALL_STATE(4184)] = 210685, + [SMALL_STATE(4185)] = 210704, + [SMALL_STATE(4186)] = 210719, + [SMALL_STATE(4187)] = 210738, + [SMALL_STATE(4188)] = 210753, + [SMALL_STATE(4189)] = 210778, + [SMALL_STATE(4190)] = 210795, + [SMALL_STATE(4191)] = 210820, + [SMALL_STATE(4192)] = 210845, + [SMALL_STATE(4193)] = 210862, + [SMALL_STATE(4194)] = 210875, + [SMALL_STATE(4195)] = 210890, + [SMALL_STATE(4196)] = 210909, + [SMALL_STATE(4197)] = 210922, + [SMALL_STATE(4198)] = 210935, + [SMALL_STATE(4199)] = 210948, + [SMALL_STATE(4200)] = 210961, + [SMALL_STATE(4201)] = 210980, + [SMALL_STATE(4202)] = 210993, + [SMALL_STATE(4203)] = 211014, + [SMALL_STATE(4204)] = 211039, + [SMALL_STATE(4205)] = 211058, + [SMALL_STATE(4206)] = 211083, + [SMALL_STATE(4207)] = 211104, + [SMALL_STATE(4208)] = 211129, + [SMALL_STATE(4209)] = 211142, + [SMALL_STATE(4210)] = 211155, + [SMALL_STATE(4211)] = 211180, + [SMALL_STATE(4212)] = 211201, + [SMALL_STATE(4213)] = 211218, + [SMALL_STATE(4214)] = 211235, + [SMALL_STATE(4215)] = 211252, + [SMALL_STATE(4216)] = 211277, + [SMALL_STATE(4217)] = 211298, + [SMALL_STATE(4218)] = 211323, + [SMALL_STATE(4219)] = 211348, + [SMALL_STATE(4220)] = 211371, + [SMALL_STATE(4221)] = 211396, + [SMALL_STATE(4222)] = 211415, + [SMALL_STATE(4223)] = 211432, + [SMALL_STATE(4224)] = 211451, + [SMALL_STATE(4225)] = 211464, + [SMALL_STATE(4226)] = 211477, + [SMALL_STATE(4227)] = 211502, + [SMALL_STATE(4228)] = 211515, + [SMALL_STATE(4229)] = 211528, + [SMALL_STATE(4230)] = 211541, + [SMALL_STATE(4231)] = 211562, + [SMALL_STATE(4232)] = 211587, + [SMALL_STATE(4233)] = 211608, + [SMALL_STATE(4234)] = 211633, + [SMALL_STATE(4235)] = 211652, + [SMALL_STATE(4236)] = 211667, + [SMALL_STATE(4237)] = 211692, + [SMALL_STATE(4238)] = 211717, + [SMALL_STATE(4239)] = 211738, + [SMALL_STATE(4240)] = 211763, + [SMALL_STATE(4241)] = 211782, + [SMALL_STATE(4242)] = 211807, + [SMALL_STATE(4243)] = 211832, + [SMALL_STATE(4244)] = 211857, + [SMALL_STATE(4245)] = 211872, + [SMALL_STATE(4246)] = 211897, + [SMALL_STATE(4247)] = 211922, + [SMALL_STATE(4248)] = 211947, + [SMALL_STATE(4249)] = 211964, + [SMALL_STATE(4250)] = 211983, + [SMALL_STATE(4251)] = 212004, + [SMALL_STATE(4252)] = 212029, + [SMALL_STATE(4253)] = 212054, + [SMALL_STATE(4254)] = 212067, + [SMALL_STATE(4255)] = 212084, + [SMALL_STATE(4256)] = 212099, + [SMALL_STATE(4257)] = 212114, + [SMALL_STATE(4258)] = 212133, + [SMALL_STATE(4259)] = 212152, + [SMALL_STATE(4260)] = 212177, + [SMALL_STATE(4261)] = 212202, + [SMALL_STATE(4262)] = 212227, + [SMALL_STATE(4263)] = 212252, + [SMALL_STATE(4264)] = 212277, + [SMALL_STATE(4265)] = 212302, + [SMALL_STATE(4266)] = 212321, + [SMALL_STATE(4267)] = 212342, + [SMALL_STATE(4268)] = 212367, + [SMALL_STATE(4269)] = 212382, + [SMALL_STATE(4270)] = 212407, + [SMALL_STATE(4271)] = 212432, + [SMALL_STATE(4272)] = 212457, + [SMALL_STATE(4273)] = 212482, + [SMALL_STATE(4274)] = 212501, + [SMALL_STATE(4275)] = 212518, + [SMALL_STATE(4276)] = 212539, + [SMALL_STATE(4277)] = 212564, + [SMALL_STATE(4278)] = 212577, + [SMALL_STATE(4279)] = 212595, + [SMALL_STATE(4280)] = 212613, + [SMALL_STATE(4281)] = 212635, + [SMALL_STATE(4282)] = 212651, + [SMALL_STATE(4283)] = 212671, + [SMALL_STATE(4284)] = 212687, + [SMALL_STATE(4285)] = 212705, + [SMALL_STATE(4286)] = 212721, + [SMALL_STATE(4287)] = 212739, + [SMALL_STATE(4288)] = 212753, + [SMALL_STATE(4289)] = 212769, + [SMALL_STATE(4290)] = 212789, + [SMALL_STATE(4291)] = 212805, + [SMALL_STATE(4292)] = 212827, + [SMALL_STATE(4293)] = 212849, + [SMALL_STATE(4294)] = 212871, + [SMALL_STATE(4295)] = 212887, + [SMALL_STATE(4296)] = 212903, + [SMALL_STATE(4297)] = 212919, + [SMALL_STATE(4298)] = 212941, + [SMALL_STATE(4299)] = 212959, + [SMALL_STATE(4300)] = 212979, + [SMALL_STATE(4301)] = 212993, + [SMALL_STATE(4302)] = 213005, + [SMALL_STATE(4303)] = 213017, + [SMALL_STATE(4304)] = 213033, + [SMALL_STATE(4305)] = 213049, + [SMALL_STATE(4306)] = 213071, + [SMALL_STATE(4307)] = 213093, + [SMALL_STATE(4308)] = 213115, + [SMALL_STATE(4309)] = 213129, + [SMALL_STATE(4310)] = 213143, + [SMALL_STATE(4311)] = 213165, + [SMALL_STATE(4312)] = 213181, + [SMALL_STATE(4313)] = 213201, + [SMALL_STATE(4314)] = 213223, + [SMALL_STATE(4315)] = 213245, + [SMALL_STATE(4316)] = 213261, + [SMALL_STATE(4317)] = 213275, + [SMALL_STATE(4318)] = 213297, + [SMALL_STATE(4319)] = 213319, + [SMALL_STATE(4320)] = 213337, + [SMALL_STATE(4321)] = 213355, + [SMALL_STATE(4322)] = 213371, + [SMALL_STATE(4323)] = 213393, + [SMALL_STATE(4324)] = 213411, + [SMALL_STATE(4325)] = 213429, + [SMALL_STATE(4326)] = 213451, + [SMALL_STATE(4327)] = 213467, + [SMALL_STATE(4328)] = 213489, + [SMALL_STATE(4329)] = 213511, + [SMALL_STATE(4330)] = 213529, + [SMALL_STATE(4331)] = 213551, + [SMALL_STATE(4332)] = 213569, + [SMALL_STATE(4333)] = 213585, + [SMALL_STATE(4334)] = 213607, + [SMALL_STATE(4335)] = 213625, + [SMALL_STATE(4336)] = 213643, + [SMALL_STATE(4337)] = 213657, + [SMALL_STATE(4338)] = 213679, + [SMALL_STATE(4339)] = 213701, + [SMALL_STATE(4340)] = 213717, + [SMALL_STATE(4341)] = 213729, + [SMALL_STATE(4342)] = 213745, + [SMALL_STATE(4343)] = 213757, + [SMALL_STATE(4344)] = 213769, + [SMALL_STATE(4345)] = 213791, + [SMALL_STATE(4346)] = 213813, + [SMALL_STATE(4347)] = 213831, + [SMALL_STATE(4348)] = 213847, + [SMALL_STATE(4349)] = 213865, + [SMALL_STATE(4350)] = 213887, + [SMALL_STATE(4351)] = 213903, + [SMALL_STATE(4352)] = 213925, + [SMALL_STATE(4353)] = 213937, + [SMALL_STATE(4354)] = 213955, + [SMALL_STATE(4355)] = 213967, + [SMALL_STATE(4356)] = 213981, + [SMALL_STATE(4357)] = 213999, + [SMALL_STATE(4358)] = 214015, + [SMALL_STATE(4359)] = 214037, + [SMALL_STATE(4360)] = 214055, + [SMALL_STATE(4361)] = 214073, + [SMALL_STATE(4362)] = 214091, + [SMALL_STATE(4363)] = 214105, + [SMALL_STATE(4364)] = 214127, + [SMALL_STATE(4365)] = 214149, + [SMALL_STATE(4366)] = 214167, + [SMALL_STATE(4367)] = 214183, + [SMALL_STATE(4368)] = 214201, + [SMALL_STATE(4369)] = 214223, + [SMALL_STATE(4370)] = 214245, + [SMALL_STATE(4371)] = 214267, + [SMALL_STATE(4372)] = 214283, + [SMALL_STATE(4373)] = 214299, + [SMALL_STATE(4374)] = 214315, + [SMALL_STATE(4375)] = 214337, + [SMALL_STATE(4376)] = 214359, + [SMALL_STATE(4377)] = 214371, + [SMALL_STATE(4378)] = 214387, + [SMALL_STATE(4379)] = 214403, + [SMALL_STATE(4380)] = 214415, + [SMALL_STATE(4381)] = 214427, + [SMALL_STATE(4382)] = 214449, + [SMALL_STATE(4383)] = 214461, + [SMALL_STATE(4384)] = 214483, + [SMALL_STATE(4385)] = 214505, + [SMALL_STATE(4386)] = 214523, + [SMALL_STATE(4387)] = 214537, + [SMALL_STATE(4388)] = 214555, + [SMALL_STATE(4389)] = 214573, + [SMALL_STATE(4390)] = 214595, + [SMALL_STATE(4391)] = 214611, + [SMALL_STATE(4392)] = 214633, + [SMALL_STATE(4393)] = 214655, + [SMALL_STATE(4394)] = 214677, + [SMALL_STATE(4395)] = 214693, + [SMALL_STATE(4396)] = 214709, + [SMALL_STATE(4397)] = 214729, + [SMALL_STATE(4398)] = 214751, + [SMALL_STATE(4399)] = 214773, + [SMALL_STATE(4400)] = 214791, + [SMALL_STATE(4401)] = 214809, + [SMALL_STATE(4402)] = 214827, + [SMALL_STATE(4403)] = 214849, + [SMALL_STATE(4404)] = 214871, + [SMALL_STATE(4405)] = 214889, + [SMALL_STATE(4406)] = 214909, + [SMALL_STATE(4407)] = 214931, + [SMALL_STATE(4408)] = 214953, + [SMALL_STATE(4409)] = 214975, + [SMALL_STATE(4410)] = 214997, + [SMALL_STATE(4411)] = 215015, + [SMALL_STATE(4412)] = 215033, + [SMALL_STATE(4413)] = 215055, + [SMALL_STATE(4414)] = 215077, + [SMALL_STATE(4415)] = 215093, + [SMALL_STATE(4416)] = 215111, + [SMALL_STATE(4417)] = 215127, + [SMALL_STATE(4418)] = 215149, + [SMALL_STATE(4419)] = 215165, + [SMALL_STATE(4420)] = 215181, + [SMALL_STATE(4421)] = 215203, + [SMALL_STATE(4422)] = 215221, + [SMALL_STATE(4423)] = 215239, + [SMALL_STATE(4424)] = 215257, + [SMALL_STATE(4425)] = 215276, + [SMALL_STATE(4426)] = 215293, + [SMALL_STATE(4427)] = 215312, + [SMALL_STATE(4428)] = 215323, + [SMALL_STATE(4429)] = 215342, + [SMALL_STATE(4430)] = 215353, + [SMALL_STATE(4431)] = 215364, + [SMALL_STATE(4432)] = 215375, + [SMALL_STATE(4433)] = 215394, + [SMALL_STATE(4434)] = 215413, + [SMALL_STATE(4435)] = 215432, + [SMALL_STATE(4436)] = 215451, + [SMALL_STATE(4437)] = 215466, + [SMALL_STATE(4438)] = 215477, + [SMALL_STATE(4439)] = 215496, + [SMALL_STATE(4440)] = 215515, + [SMALL_STATE(4441)] = 215534, + [SMALL_STATE(4442)] = 215545, + [SMALL_STATE(4443)] = 215560, + [SMALL_STATE(4444)] = 215575, + [SMALL_STATE(4445)] = 215590, + [SMALL_STATE(4446)] = 215609, + [SMALL_STATE(4447)] = 215628, + [SMALL_STATE(4448)] = 215643, + [SMALL_STATE(4449)] = 215658, + [SMALL_STATE(4450)] = 215673, + [SMALL_STATE(4451)] = 215692, + [SMALL_STATE(4452)] = 215711, + [SMALL_STATE(4453)] = 215730, + [SMALL_STATE(4454)] = 215745, + [SMALL_STATE(4455)] = 215760, + [SMALL_STATE(4456)] = 215777, + [SMALL_STATE(4457)] = 215788, + [SMALL_STATE(4458)] = 215807, + [SMALL_STATE(4459)] = 215826, + [SMALL_STATE(4460)] = 215837, + [SMALL_STATE(4461)] = 215848, + [SMALL_STATE(4462)] = 215867, + [SMALL_STATE(4463)] = 215878, + [SMALL_STATE(4464)] = 215897, + [SMALL_STATE(4465)] = 215912, + [SMALL_STATE(4466)] = 215931, + [SMALL_STATE(4467)] = 215946, + [SMALL_STATE(4468)] = 215965, + [SMALL_STATE(4469)] = 215980, + [SMALL_STATE(4470)] = 215995, + [SMALL_STATE(4471)] = 216014, + [SMALL_STATE(4472)] = 216025, + [SMALL_STATE(4473)] = 216036, + [SMALL_STATE(4474)] = 216047, + [SMALL_STATE(4475)] = 216062, + [SMALL_STATE(4476)] = 216073, + [SMALL_STATE(4477)] = 216084, + [SMALL_STATE(4478)] = 216095, + [SMALL_STATE(4479)] = 216112, + [SMALL_STATE(4480)] = 216125, + [SMALL_STATE(4481)] = 216136, + [SMALL_STATE(4482)] = 216147, + [SMALL_STATE(4483)] = 216158, + [SMALL_STATE(4484)] = 216169, + [SMALL_STATE(4485)] = 216180, + [SMALL_STATE(4486)] = 216195, + [SMALL_STATE(4487)] = 216206, + [SMALL_STATE(4488)] = 216217, + [SMALL_STATE(4489)] = 216228, + [SMALL_STATE(4490)] = 216239, + [SMALL_STATE(4491)] = 216250, + [SMALL_STATE(4492)] = 216269, + [SMALL_STATE(4493)] = 216284, + [SMALL_STATE(4494)] = 216295, + [SMALL_STATE(4495)] = 216306, + [SMALL_STATE(4496)] = 216317, + [SMALL_STATE(4497)] = 216328, + [SMALL_STATE(4498)] = 216339, + [SMALL_STATE(4499)] = 216350, + [SMALL_STATE(4500)] = 216361, + [SMALL_STATE(4501)] = 216372, + [SMALL_STATE(4502)] = 216383, + [SMALL_STATE(4503)] = 216394, + [SMALL_STATE(4504)] = 216405, + [SMALL_STATE(4505)] = 216416, + [SMALL_STATE(4506)] = 216433, + [SMALL_STATE(4507)] = 216444, + [SMALL_STATE(4508)] = 216455, + [SMALL_STATE(4509)] = 216466, + [SMALL_STATE(4510)] = 216477, + [SMALL_STATE(4511)] = 216488, + [SMALL_STATE(4512)] = 216499, + [SMALL_STATE(4513)] = 216516, + [SMALL_STATE(4514)] = 216527, + [SMALL_STATE(4515)] = 216538, + [SMALL_STATE(4516)] = 216555, + [SMALL_STATE(4517)] = 216568, + [SMALL_STATE(4518)] = 216583, + [SMALL_STATE(4519)] = 216598, + [SMALL_STATE(4520)] = 216609, + [SMALL_STATE(4521)] = 216624, + [SMALL_STATE(4522)] = 216635, + [SMALL_STATE(4523)] = 216646, + [SMALL_STATE(4524)] = 216657, + [SMALL_STATE(4525)] = 216668, + [SMALL_STATE(4526)] = 216679, + [SMALL_STATE(4527)] = 216694, + [SMALL_STATE(4528)] = 216705, + [SMALL_STATE(4529)] = 216720, + [SMALL_STATE(4530)] = 216735, + [SMALL_STATE(4531)] = 216746, + [SMALL_STATE(4532)] = 216757, + [SMALL_STATE(4533)] = 216768, + [SMALL_STATE(4534)] = 216779, + [SMALL_STATE(4535)] = 216790, + [SMALL_STATE(4536)] = 216801, + [SMALL_STATE(4537)] = 216812, + [SMALL_STATE(4538)] = 216823, + [SMALL_STATE(4539)] = 216838, + [SMALL_STATE(4540)] = 216849, + [SMALL_STATE(4541)] = 216860, + [SMALL_STATE(4542)] = 216879, + [SMALL_STATE(4543)] = 216890, + [SMALL_STATE(4544)] = 216901, + [SMALL_STATE(4545)] = 216912, + [SMALL_STATE(4546)] = 216923, + [SMALL_STATE(4547)] = 216934, + [SMALL_STATE(4548)] = 216945, + [SMALL_STATE(4549)] = 216960, + [SMALL_STATE(4550)] = 216971, + [SMALL_STATE(4551)] = 216990, + [SMALL_STATE(4552)] = 217001, + [SMALL_STATE(4553)] = 217012, + [SMALL_STATE(4554)] = 217023, + [SMALL_STATE(4555)] = 217034, + [SMALL_STATE(4556)] = 217045, + [SMALL_STATE(4557)] = 217060, + [SMALL_STATE(4558)] = 217079, + [SMALL_STATE(4559)] = 217098, + [SMALL_STATE(4560)] = 217109, + [SMALL_STATE(4561)] = 217120, + [SMALL_STATE(4562)] = 217131, + [SMALL_STATE(4563)] = 217142, + [SMALL_STATE(4564)] = 217157, + [SMALL_STATE(4565)] = 217174, + [SMALL_STATE(4566)] = 217185, + [SMALL_STATE(4567)] = 217196, + [SMALL_STATE(4568)] = 217207, + [SMALL_STATE(4569)] = 217218, + [SMALL_STATE(4570)] = 217237, + [SMALL_STATE(4571)] = 217254, + [SMALL_STATE(4572)] = 217265, + [SMALL_STATE(4573)] = 217276, + [SMALL_STATE(4574)] = 217287, + [SMALL_STATE(4575)] = 217298, + [SMALL_STATE(4576)] = 217317, + [SMALL_STATE(4577)] = 217336, + [SMALL_STATE(4578)] = 217347, + [SMALL_STATE(4579)] = 217358, + [SMALL_STATE(4580)] = 217377, + [SMALL_STATE(4581)] = 217392, + [SMALL_STATE(4582)] = 217411, + [SMALL_STATE(4583)] = 217430, + [SMALL_STATE(4584)] = 217441, + [SMALL_STATE(4585)] = 217454, + [SMALL_STATE(4586)] = 217471, + [SMALL_STATE(4587)] = 217490, + [SMALL_STATE(4588)] = 217505, + [SMALL_STATE(4589)] = 217516, + [SMALL_STATE(4590)] = 217535, + [SMALL_STATE(4591)] = 217552, + [SMALL_STATE(4592)] = 217563, + [SMALL_STATE(4593)] = 217582, + [SMALL_STATE(4594)] = 217601, + [SMALL_STATE(4595)] = 217616, + [SMALL_STATE(4596)] = 217631, + [SMALL_STATE(4597)] = 217644, + [SMALL_STATE(4598)] = 217663, + [SMALL_STATE(4599)] = 217680, + [SMALL_STATE(4600)] = 217699, + [SMALL_STATE(4601)] = 217718, + [SMALL_STATE(4602)] = 217733, + [SMALL_STATE(4603)] = 217748, + [SMALL_STATE(4604)] = 217763, + [SMALL_STATE(4605)] = 217782, + [SMALL_STATE(4606)] = 217801, + [SMALL_STATE(4607)] = 217816, + [SMALL_STATE(4608)] = 217833, + [SMALL_STATE(4609)] = 217846, + [SMALL_STATE(4610)] = 217857, + [SMALL_STATE(4611)] = 217876, + [SMALL_STATE(4612)] = 217895, + [SMALL_STATE(4613)] = 217914, + [SMALL_STATE(4614)] = 217925, + [SMALL_STATE(4615)] = 217944, + [SMALL_STATE(4616)] = 217955, + [SMALL_STATE(4617)] = 217966, + [SMALL_STATE(4618)] = 217981, + [SMALL_STATE(4619)] = 218000, + [SMALL_STATE(4620)] = 218011, + [SMALL_STATE(4621)] = 218022, + [SMALL_STATE(4622)] = 218041, + [SMALL_STATE(4623)] = 218052, + [SMALL_STATE(4624)] = 218063, + [SMALL_STATE(4625)] = 218082, + [SMALL_STATE(4626)] = 218099, + [SMALL_STATE(4627)] = 218114, + [SMALL_STATE(4628)] = 218129, + [SMALL_STATE(4629)] = 218140, + [SMALL_STATE(4630)] = 218157, + [SMALL_STATE(4631)] = 218176, + [SMALL_STATE(4632)] = 218189, + [SMALL_STATE(4633)] = 218206, + [SMALL_STATE(4634)] = 218225, + [SMALL_STATE(4635)] = 218240, + [SMALL_STATE(4636)] = 218255, + [SMALL_STATE(4637)] = 218270, + [SMALL_STATE(4638)] = 218285, + [SMALL_STATE(4639)] = 218296, + [SMALL_STATE(4640)] = 218307, + [SMALL_STATE(4641)] = 218324, + [SMALL_STATE(4642)] = 218339, + [SMALL_STATE(4643)] = 218356, + [SMALL_STATE(4644)] = 218371, + [SMALL_STATE(4645)] = 218390, + [SMALL_STATE(4646)] = 218407, + [SMALL_STATE(4647)] = 218422, + [SMALL_STATE(4648)] = 218437, + [SMALL_STATE(4649)] = 218454, + [SMALL_STATE(4650)] = 218473, + [SMALL_STATE(4651)] = 218486, + [SMALL_STATE(4652)] = 218503, + [SMALL_STATE(4653)] = 218514, + [SMALL_STATE(4654)] = 218533, + [SMALL_STATE(4655)] = 218544, + [SMALL_STATE(4656)] = 218563, + [SMALL_STATE(4657)] = 218574, + [SMALL_STATE(4658)] = 218589, + [SMALL_STATE(4659)] = 218600, + [SMALL_STATE(4660)] = 218615, + [SMALL_STATE(4661)] = 218626, + [SMALL_STATE(4662)] = 218637, + [SMALL_STATE(4663)] = 218648, + [SMALL_STATE(4664)] = 218665, + [SMALL_STATE(4665)] = 218676, + [SMALL_STATE(4666)] = 218695, + [SMALL_STATE(4667)] = 218708, + [SMALL_STATE(4668)] = 218719, + [SMALL_STATE(4669)] = 218736, + [SMALL_STATE(4670)] = 218755, + [SMALL_STATE(4671)] = 218766, + [SMALL_STATE(4672)] = 218777, + [SMALL_STATE(4673)] = 218788, + [SMALL_STATE(4674)] = 218803, + [SMALL_STATE(4675)] = 218820, + [SMALL_STATE(4676)] = 218833, + [SMALL_STATE(4677)] = 218846, + [SMALL_STATE(4678)] = 218865, + [SMALL_STATE(4679)] = 218884, + [SMALL_STATE(4680)] = 218901, + [SMALL_STATE(4681)] = 218918, + [SMALL_STATE(4682)] = 218931, + [SMALL_STATE(4683)] = 218950, + [SMALL_STATE(4684)] = 218969, + [SMALL_STATE(4685)] = 218988, + [SMALL_STATE(4686)] = 219007, + [SMALL_STATE(4687)] = 219026, + [SMALL_STATE(4688)] = 219043, + [SMALL_STATE(4689)] = 219058, + [SMALL_STATE(4690)] = 219073, + [SMALL_STATE(4691)] = 219092, + [SMALL_STATE(4692)] = 219111, + [SMALL_STATE(4693)] = 219130, + [SMALL_STATE(4694)] = 219149, + [SMALL_STATE(4695)] = 219168, + [SMALL_STATE(4696)] = 219183, + [SMALL_STATE(4697)] = 219200, + [SMALL_STATE(4698)] = 219219, + [SMALL_STATE(4699)] = 219238, + [SMALL_STATE(4700)] = 219253, + [SMALL_STATE(4701)] = 219268, + [SMALL_STATE(4702)] = 219285, + [SMALL_STATE(4703)] = 219296, + [SMALL_STATE(4704)] = 219307, + [SMALL_STATE(4705)] = 219318, + [SMALL_STATE(4706)] = 219329, + [SMALL_STATE(4707)] = 219340, + [SMALL_STATE(4708)] = 219359, + [SMALL_STATE(4709)] = 219378, + [SMALL_STATE(4710)] = 219393, + [SMALL_STATE(4711)] = 219412, + [SMALL_STATE(4712)] = 219429, + [SMALL_STATE(4713)] = 219448, + [SMALL_STATE(4714)] = 219459, + [SMALL_STATE(4715)] = 219474, + [SMALL_STATE(4716)] = 219493, + [SMALL_STATE(4717)] = 219512, + [SMALL_STATE(4718)] = 219523, + [SMALL_STATE(4719)] = 219538, + [SMALL_STATE(4720)] = 219553, + [SMALL_STATE(4721)] = 219568, + [SMALL_STATE(4722)] = 219585, + [SMALL_STATE(4723)] = 219604, + [SMALL_STATE(4724)] = 219621, + [SMALL_STATE(4725)] = 219632, + [SMALL_STATE(4726)] = 219651, + [SMALL_STATE(4727)] = 219666, + [SMALL_STATE(4728)] = 219685, + [SMALL_STATE(4729)] = 219702, + [SMALL_STATE(4730)] = 219718, + [SMALL_STATE(4731)] = 219734, + [SMALL_STATE(4732)] = 219750, + [SMALL_STATE(4733)] = 219764, + [SMALL_STATE(4734)] = 219778, + [SMALL_STATE(4735)] = 219794, + [SMALL_STATE(4736)] = 219810, + [SMALL_STATE(4737)] = 219826, + [SMALL_STATE(4738)] = 219840, + [SMALL_STATE(4739)] = 219856, + [SMALL_STATE(4740)] = 219872, + [SMALL_STATE(4741)] = 219888, + [SMALL_STATE(4742)] = 219904, + [SMALL_STATE(4743)] = 219920, + [SMALL_STATE(4744)] = 219936, + [SMALL_STATE(4745)] = 219952, + [SMALL_STATE(4746)] = 219966, + [SMALL_STATE(4747)] = 219982, + [SMALL_STATE(4748)] = 219998, + [SMALL_STATE(4749)] = 220012, + [SMALL_STATE(4750)] = 220028, + [SMALL_STATE(4751)] = 220042, + [SMALL_STATE(4752)] = 220058, + [SMALL_STATE(4753)] = 220074, + [SMALL_STATE(4754)] = 220088, + [SMALL_STATE(4755)] = 220102, + [SMALL_STATE(4756)] = 220118, + [SMALL_STATE(4757)] = 220134, + [SMALL_STATE(4758)] = 220150, + [SMALL_STATE(4759)] = 220166, + [SMALL_STATE(4760)] = 220182, + [SMALL_STATE(4761)] = 220198, + [SMALL_STATE(4762)] = 220214, + [SMALL_STATE(4763)] = 220230, + [SMALL_STATE(4764)] = 220246, + [SMALL_STATE(4765)] = 220260, + [SMALL_STATE(4766)] = 220270, + [SMALL_STATE(4767)] = 220280, + [SMALL_STATE(4768)] = 220296, + [SMALL_STATE(4769)] = 220312, + [SMALL_STATE(4770)] = 220328, + [SMALL_STATE(4771)] = 220342, + [SMALL_STATE(4772)] = 220358, + [SMALL_STATE(4773)] = 220374, + [SMALL_STATE(4774)] = 220390, + [SMALL_STATE(4775)] = 220404, + [SMALL_STATE(4776)] = 220418, + [SMALL_STATE(4777)] = 220434, + [SMALL_STATE(4778)] = 220450, + [SMALL_STATE(4779)] = 220464, + [SMALL_STATE(4780)] = 220480, + [SMALL_STATE(4781)] = 220496, + [SMALL_STATE(4782)] = 220512, + [SMALL_STATE(4783)] = 220522, + [SMALL_STATE(4784)] = 220538, + [SMALL_STATE(4785)] = 220554, + [SMALL_STATE(4786)] = 220570, + [SMALL_STATE(4787)] = 220586, + [SMALL_STATE(4788)] = 220602, + [SMALL_STATE(4789)] = 220616, + [SMALL_STATE(4790)] = 220630, + [SMALL_STATE(4791)] = 220646, + [SMALL_STATE(4792)] = 220662, + [SMALL_STATE(4793)] = 220678, + [SMALL_STATE(4794)] = 220694, + [SMALL_STATE(4795)] = 220710, + [SMALL_STATE(4796)] = 220724, + [SMALL_STATE(4797)] = 220740, + [SMALL_STATE(4798)] = 220754, + [SMALL_STATE(4799)] = 220770, + [SMALL_STATE(4800)] = 220786, + [SMALL_STATE(4801)] = 220802, + [SMALL_STATE(4802)] = 220816, + [SMALL_STATE(4803)] = 220830, + [SMALL_STATE(4804)] = 220844, + [SMALL_STATE(4805)] = 220858, + [SMALL_STATE(4806)] = 220874, + [SMALL_STATE(4807)] = 220888, + [SMALL_STATE(4808)] = 220902, + [SMALL_STATE(4809)] = 220918, + [SMALL_STATE(4810)] = 220932, + [SMALL_STATE(4811)] = 220948, + [SMALL_STATE(4812)] = 220964, + [SMALL_STATE(4813)] = 220978, + [SMALL_STATE(4814)] = 220994, + [SMALL_STATE(4815)] = 221010, + [SMALL_STATE(4816)] = 221026, + [SMALL_STATE(4817)] = 221042, + [SMALL_STATE(4818)] = 221058, + [SMALL_STATE(4819)] = 221074, + [SMALL_STATE(4820)] = 221090, + [SMALL_STATE(4821)] = 221106, + [SMALL_STATE(4822)] = 221120, + [SMALL_STATE(4823)] = 221134, + [SMALL_STATE(4824)] = 221150, + [SMALL_STATE(4825)] = 221164, + [SMALL_STATE(4826)] = 221178, + [SMALL_STATE(4827)] = 221192, + [SMALL_STATE(4828)] = 221206, + [SMALL_STATE(4829)] = 221220, + [SMALL_STATE(4830)] = 221236, + [SMALL_STATE(4831)] = 221250, + [SMALL_STATE(4832)] = 221266, + [SMALL_STATE(4833)] = 221280, + [SMALL_STATE(4834)] = 221296, + [SMALL_STATE(4835)] = 221312, + [SMALL_STATE(4836)] = 221328, + [SMALL_STATE(4837)] = 221344, + [SMALL_STATE(4838)] = 221360, + [SMALL_STATE(4839)] = 221376, + [SMALL_STATE(4840)] = 221388, + [SMALL_STATE(4841)] = 221404, + [SMALL_STATE(4842)] = 221416, + [SMALL_STATE(4843)] = 221432, + [SMALL_STATE(4844)] = 221448, + [SMALL_STATE(4845)] = 221462, + [SMALL_STATE(4846)] = 221478, + [SMALL_STATE(4847)] = 221494, + [SMALL_STATE(4848)] = 221510, + [SMALL_STATE(4849)] = 221526, + [SMALL_STATE(4850)] = 221542, + [SMALL_STATE(4851)] = 221552, + [SMALL_STATE(4852)] = 221566, + [SMALL_STATE(4853)] = 221582, + [SMALL_STATE(4854)] = 221592, + [SMALL_STATE(4855)] = 221606, + [SMALL_STATE(4856)] = 221616, + [SMALL_STATE(4857)] = 221626, + [SMALL_STATE(4858)] = 221642, + [SMALL_STATE(4859)] = 221658, + [SMALL_STATE(4860)] = 221674, + [SMALL_STATE(4861)] = 221690, + [SMALL_STATE(4862)] = 221704, + [SMALL_STATE(4863)] = 221718, + [SMALL_STATE(4864)] = 221734, + [SMALL_STATE(4865)] = 221748, + [SMALL_STATE(4866)] = 221764, + [SMALL_STATE(4867)] = 221780, + [SMALL_STATE(4868)] = 221796, + [SMALL_STATE(4869)] = 221810, + [SMALL_STATE(4870)] = 221822, + [SMALL_STATE(4871)] = 221838, + [SMALL_STATE(4872)] = 221852, + [SMALL_STATE(4873)] = 221866, + [SMALL_STATE(4874)] = 221882, + [SMALL_STATE(4875)] = 221894, + [SMALL_STATE(4876)] = 221906, + [SMALL_STATE(4877)] = 221918, + [SMALL_STATE(4878)] = 221930, + [SMALL_STATE(4879)] = 221946, + [SMALL_STATE(4880)] = 221960, + [SMALL_STATE(4881)] = 221972, + [SMALL_STATE(4882)] = 221984, + [SMALL_STATE(4883)] = 221996, + [SMALL_STATE(4884)] = 222010, + [SMALL_STATE(4885)] = 222026, + [SMALL_STATE(4886)] = 222040, + [SMALL_STATE(4887)] = 222054, + [SMALL_STATE(4888)] = 222068, + [SMALL_STATE(4889)] = 222082, + [SMALL_STATE(4890)] = 222098, + [SMALL_STATE(4891)] = 222114, + [SMALL_STATE(4892)] = 222130, + [SMALL_STATE(4893)] = 222146, + [SMALL_STATE(4894)] = 222162, + [SMALL_STATE(4895)] = 222176, + [SMALL_STATE(4896)] = 222190, + [SMALL_STATE(4897)] = 222206, + [SMALL_STATE(4898)] = 222220, + [SMALL_STATE(4899)] = 222234, + [SMALL_STATE(4900)] = 222250, + [SMALL_STATE(4901)] = 222264, + [SMALL_STATE(4902)] = 222280, + [SMALL_STATE(4903)] = 222296, + [SMALL_STATE(4904)] = 222310, + [SMALL_STATE(4905)] = 222326, + [SMALL_STATE(4906)] = 222340, + [SMALL_STATE(4907)] = 222356, + [SMALL_STATE(4908)] = 222372, + [SMALL_STATE(4909)] = 222388, + [SMALL_STATE(4910)] = 222402, + [SMALL_STATE(4911)] = 222416, + [SMALL_STATE(4912)] = 222432, + [SMALL_STATE(4913)] = 222448, + [SMALL_STATE(4914)] = 222464, + [SMALL_STATE(4915)] = 222478, + [SMALL_STATE(4916)] = 222492, + [SMALL_STATE(4917)] = 222506, + [SMALL_STATE(4918)] = 222522, + [SMALL_STATE(4919)] = 222535, + [SMALL_STATE(4920)] = 222546, + [SMALL_STATE(4921)] = 222559, + [SMALL_STATE(4922)] = 222572, + [SMALL_STATE(4923)] = 222585, + [SMALL_STATE(4924)] = 222598, + [SMALL_STATE(4925)] = 222611, + [SMALL_STATE(4926)] = 222620, + [SMALL_STATE(4927)] = 222633, + [SMALL_STATE(4928)] = 222646, + [SMALL_STATE(4929)] = 222659, + [SMALL_STATE(4930)] = 222672, + [SMALL_STATE(4931)] = 222681, + [SMALL_STATE(4932)] = 222694, + [SMALL_STATE(4933)] = 222703, + [SMALL_STATE(4934)] = 222716, + [SMALL_STATE(4935)] = 222725, + [SMALL_STATE(4936)] = 222738, + [SMALL_STATE(4937)] = 222747, + [SMALL_STATE(4938)] = 222758, + [SMALL_STATE(4939)] = 222771, + [SMALL_STATE(4940)] = 222780, + [SMALL_STATE(4941)] = 222789, + [SMALL_STATE(4942)] = 222802, + [SMALL_STATE(4943)] = 222811, + [SMALL_STATE(4944)] = 222824, + [SMALL_STATE(4945)] = 222833, + [SMALL_STATE(4946)] = 222846, + [SMALL_STATE(4947)] = 222859, + [SMALL_STATE(4948)] = 222872, + [SMALL_STATE(4949)] = 222885, + [SMALL_STATE(4950)] = 222898, + [SMALL_STATE(4951)] = 222907, + [SMALL_STATE(4952)] = 222920, + [SMALL_STATE(4953)] = 222933, + [SMALL_STATE(4954)] = 222946, + [SMALL_STATE(4955)] = 222959, + [SMALL_STATE(4956)] = 222972, + [SMALL_STATE(4957)] = 222985, + [SMALL_STATE(4958)] = 222998, + [SMALL_STATE(4959)] = 223011, + [SMALL_STATE(4960)] = 223024, + [SMALL_STATE(4961)] = 223033, + [SMALL_STATE(4962)] = 223042, + [SMALL_STATE(4963)] = 223051, + [SMALL_STATE(4964)] = 223064, + [SMALL_STATE(4965)] = 223077, + [SMALL_STATE(4966)] = 223090, + [SMALL_STATE(4967)] = 223101, + [SMALL_STATE(4968)] = 223114, + [SMALL_STATE(4969)] = 223123, + [SMALL_STATE(4970)] = 223132, + [SMALL_STATE(4971)] = 223145, + [SMALL_STATE(4972)] = 223158, + [SMALL_STATE(4973)] = 223171, + [SMALL_STATE(4974)] = 223184, + [SMALL_STATE(4975)] = 223193, + [SMALL_STATE(4976)] = 223202, + [SMALL_STATE(4977)] = 223211, + [SMALL_STATE(4978)] = 223224, + [SMALL_STATE(4979)] = 223237, + [SMALL_STATE(4980)] = 223248, + [SMALL_STATE(4981)] = 223257, + [SMALL_STATE(4982)] = 223266, + [SMALL_STATE(4983)] = 223279, + [SMALL_STATE(4984)] = 223290, + [SMALL_STATE(4985)] = 223303, + [SMALL_STATE(4986)] = 223312, + [SMALL_STATE(4987)] = 223325, + [SMALL_STATE(4988)] = 223338, + [SMALL_STATE(4989)] = 223351, + [SMALL_STATE(4990)] = 223360, + [SMALL_STATE(4991)] = 223371, + [SMALL_STATE(4992)] = 223384, + [SMALL_STATE(4993)] = 223397, + [SMALL_STATE(4994)] = 223406, + [SMALL_STATE(4995)] = 223419, + [SMALL_STATE(4996)] = 223432, + [SMALL_STATE(4997)] = 223445, + [SMALL_STATE(4998)] = 223456, + [SMALL_STATE(4999)] = 223469, + [SMALL_STATE(5000)] = 223482, + [SMALL_STATE(5001)] = 223495, + [SMALL_STATE(5002)] = 223508, + [SMALL_STATE(5003)] = 223521, + [SMALL_STATE(5004)] = 223532, + [SMALL_STATE(5005)] = 223545, + [SMALL_STATE(5006)] = 223558, + [SMALL_STATE(5007)] = 223571, + [SMALL_STATE(5008)] = 223584, + [SMALL_STATE(5009)] = 223597, + [SMALL_STATE(5010)] = 223610, + [SMALL_STATE(5011)] = 223623, + [SMALL_STATE(5012)] = 223636, + [SMALL_STATE(5013)] = 223649, + [SMALL_STATE(5014)] = 223660, + [SMALL_STATE(5015)] = 223673, + [SMALL_STATE(5016)] = 223686, + [SMALL_STATE(5017)] = 223699, + [SMALL_STATE(5018)] = 223712, + [SMALL_STATE(5019)] = 223725, + [SMALL_STATE(5020)] = 223738, + [SMALL_STATE(5021)] = 223749, + [SMALL_STATE(5022)] = 223762, + [SMALL_STATE(5023)] = 223771, + [SMALL_STATE(5024)] = 223784, + [SMALL_STATE(5025)] = 223797, + [SMALL_STATE(5026)] = 223810, + [SMALL_STATE(5027)] = 223823, + [SMALL_STATE(5028)] = 223836, + [SMALL_STATE(5029)] = 223849, + [SMALL_STATE(5030)] = 223862, + [SMALL_STATE(5031)] = 223875, + [SMALL_STATE(5032)] = 223888, + [SMALL_STATE(5033)] = 223901, + [SMALL_STATE(5034)] = 223914, + [SMALL_STATE(5035)] = 223927, + [SMALL_STATE(5036)] = 223936, + [SMALL_STATE(5037)] = 223949, + [SMALL_STATE(5038)] = 223962, + [SMALL_STATE(5039)] = 223975, + [SMALL_STATE(5040)] = 223988, + [SMALL_STATE(5041)] = 224001, + [SMALL_STATE(5042)] = 224012, + [SMALL_STATE(5043)] = 224025, + [SMALL_STATE(5044)] = 224036, + [SMALL_STATE(5045)] = 224049, + [SMALL_STATE(5046)] = 224062, + [SMALL_STATE(5047)] = 224071, + [SMALL_STATE(5048)] = 224080, + [SMALL_STATE(5049)] = 224089, + [SMALL_STATE(5050)] = 224098, + [SMALL_STATE(5051)] = 224107, + [SMALL_STATE(5052)] = 224120, + [SMALL_STATE(5053)] = 224133, + [SMALL_STATE(5054)] = 224146, + [SMALL_STATE(5055)] = 224159, + [SMALL_STATE(5056)] = 224172, + [SMALL_STATE(5057)] = 224181, + [SMALL_STATE(5058)] = 224194, + [SMALL_STATE(5059)] = 224203, + [SMALL_STATE(5060)] = 224216, + [SMALL_STATE(5061)] = 224229, + [SMALL_STATE(5062)] = 224242, + [SMALL_STATE(5063)] = 224251, + [SMALL_STATE(5064)] = 224264, + [SMALL_STATE(5065)] = 224277, + [SMALL_STATE(5066)] = 224286, + [SMALL_STATE(5067)] = 224295, + [SMALL_STATE(5068)] = 224308, + [SMALL_STATE(5069)] = 224321, + [SMALL_STATE(5070)] = 224334, + [SMALL_STATE(5071)] = 224347, + [SMALL_STATE(5072)] = 224356, + [SMALL_STATE(5073)] = 224369, + [SMALL_STATE(5074)] = 224382, + [SMALL_STATE(5075)] = 224395, + [SMALL_STATE(5076)] = 224408, + [SMALL_STATE(5077)] = 224421, + [SMALL_STATE(5078)] = 224434, + [SMALL_STATE(5079)] = 224447, + [SMALL_STATE(5080)] = 224458, + [SMALL_STATE(5081)] = 224471, + [SMALL_STATE(5082)] = 224484, + [SMALL_STATE(5083)] = 224495, + [SMALL_STATE(5084)] = 224508, + [SMALL_STATE(5085)] = 224521, + [SMALL_STATE(5086)] = 224534, + [SMALL_STATE(5087)] = 224547, + [SMALL_STATE(5088)] = 224560, + [SMALL_STATE(5089)] = 224573, + [SMALL_STATE(5090)] = 224586, + [SMALL_STATE(5091)] = 224599, + [SMALL_STATE(5092)] = 224612, + [SMALL_STATE(5093)] = 224625, + [SMALL_STATE(5094)] = 224638, + [SMALL_STATE(5095)] = 224651, + [SMALL_STATE(5096)] = 224664, + [SMALL_STATE(5097)] = 224677, + [SMALL_STATE(5098)] = 224690, + [SMALL_STATE(5099)] = 224703, + [SMALL_STATE(5100)] = 224714, + [SMALL_STATE(5101)] = 224725, + [SMALL_STATE(5102)] = 224738, + [SMALL_STATE(5103)] = 224751, + [SMALL_STATE(5104)] = 224764, + [SMALL_STATE(5105)] = 224777, + [SMALL_STATE(5106)] = 224790, + [SMALL_STATE(5107)] = 224803, + [SMALL_STATE(5108)] = 224816, + [SMALL_STATE(5109)] = 224829, + [SMALL_STATE(5110)] = 224840, + [SMALL_STATE(5111)] = 224849, + [SMALL_STATE(5112)] = 224862, + [SMALL_STATE(5113)] = 224873, + [SMALL_STATE(5114)] = 224886, + [SMALL_STATE(5115)] = 224897, + [SMALL_STATE(5116)] = 224910, + [SMALL_STATE(5117)] = 224923, + [SMALL_STATE(5118)] = 224932, + [SMALL_STATE(5119)] = 224943, + [SMALL_STATE(5120)] = 224956, + [SMALL_STATE(5121)] = 224969, + [SMALL_STATE(5122)] = 224982, + [SMALL_STATE(5123)] = 224991, + [SMALL_STATE(5124)] = 225004, + [SMALL_STATE(5125)] = 225013, + [SMALL_STATE(5126)] = 225022, + [SMALL_STATE(5127)] = 225035, + [SMALL_STATE(5128)] = 225048, + [SMALL_STATE(5129)] = 225061, + [SMALL_STATE(5130)] = 225074, + [SMALL_STATE(5131)] = 225087, + [SMALL_STATE(5132)] = 225100, + [SMALL_STATE(5133)] = 225109, + [SMALL_STATE(5134)] = 225118, + [SMALL_STATE(5135)] = 225131, + [SMALL_STATE(5136)] = 225144, + [SMALL_STATE(5137)] = 225153, + [SMALL_STATE(5138)] = 225162, + [SMALL_STATE(5139)] = 225175, + [SMALL_STATE(5140)] = 225188, + [SMALL_STATE(5141)] = 225197, + [SMALL_STATE(5142)] = 225206, + [SMALL_STATE(5143)] = 225219, + [SMALL_STATE(5144)] = 225232, + [SMALL_STATE(5145)] = 225245, + [SMALL_STATE(5146)] = 225258, + [SMALL_STATE(5147)] = 225271, + [SMALL_STATE(5148)] = 225280, + [SMALL_STATE(5149)] = 225293, + [SMALL_STATE(5150)] = 225306, + [SMALL_STATE(5151)] = 225315, + [SMALL_STATE(5152)] = 225328, + [SMALL_STATE(5153)] = 225337, + [SMALL_STATE(5154)] = 225348, + [SMALL_STATE(5155)] = 225361, + [SMALL_STATE(5156)] = 225374, + [SMALL_STATE(5157)] = 225387, + [SMALL_STATE(5158)] = 225400, + [SMALL_STATE(5159)] = 225413, + [SMALL_STATE(5160)] = 225422, + [SMALL_STATE(5161)] = 225431, + [SMALL_STATE(5162)] = 225441, + [SMALL_STATE(5163)] = 225451, + [SMALL_STATE(5164)] = 225461, + [SMALL_STATE(5165)] = 225469, + [SMALL_STATE(5166)] = 225479, + [SMALL_STATE(5167)] = 225487, + [SMALL_STATE(5168)] = 225497, + [SMALL_STATE(5169)] = 225507, + [SMALL_STATE(5170)] = 225517, + [SMALL_STATE(5171)] = 225525, + [SMALL_STATE(5172)] = 225535, + [SMALL_STATE(5173)] = 225545, + [SMALL_STATE(5174)] = 225555, + [SMALL_STATE(5175)] = 225565, + [SMALL_STATE(5176)] = 225575, + [SMALL_STATE(5177)] = 225585, + [SMALL_STATE(5178)] = 225595, + [SMALL_STATE(5179)] = 225605, + [SMALL_STATE(5180)] = 225615, + [SMALL_STATE(5181)] = 225625, + [SMALL_STATE(5182)] = 225635, + [SMALL_STATE(5183)] = 225645, + [SMALL_STATE(5184)] = 225655, + [SMALL_STATE(5185)] = 225663, + [SMALL_STATE(5186)] = 225673, + [SMALL_STATE(5187)] = 225683, + [SMALL_STATE(5188)] = 225691, + [SMALL_STATE(5189)] = 225701, + [SMALL_STATE(5190)] = 225711, + [SMALL_STATE(5191)] = 225721, + [SMALL_STATE(5192)] = 225731, + [SMALL_STATE(5193)] = 225741, + [SMALL_STATE(5194)] = 225751, + [SMALL_STATE(5195)] = 225761, + [SMALL_STATE(5196)] = 225771, + [SMALL_STATE(5197)] = 225781, + [SMALL_STATE(5198)] = 225791, + [SMALL_STATE(5199)] = 225801, + [SMALL_STATE(5200)] = 225809, + [SMALL_STATE(5201)] = 225819, + [SMALL_STATE(5202)] = 225829, + [SMALL_STATE(5203)] = 225837, + [SMALL_STATE(5204)] = 225847, + [SMALL_STATE(5205)] = 225857, + [SMALL_STATE(5206)] = 225867, + [SMALL_STATE(5207)] = 225875, + [SMALL_STATE(5208)] = 225883, + [SMALL_STATE(5209)] = 225891, + [SMALL_STATE(5210)] = 225899, + [SMALL_STATE(5211)] = 225907, + [SMALL_STATE(5212)] = 225915, + [SMALL_STATE(5213)] = 225925, + [SMALL_STATE(5214)] = 225935, + [SMALL_STATE(5215)] = 225945, + [SMALL_STATE(5216)] = 225955, + [SMALL_STATE(5217)] = 225965, + [SMALL_STATE(5218)] = 225975, + [SMALL_STATE(5219)] = 225985, + [SMALL_STATE(5220)] = 225995, + [SMALL_STATE(5221)] = 226003, + [SMALL_STATE(5222)] = 226013, + [SMALL_STATE(5223)] = 226023, + [SMALL_STATE(5224)] = 226031, + [SMALL_STATE(5225)] = 226039, + [SMALL_STATE(5226)] = 226049, + [SMALL_STATE(5227)] = 226059, + [SMALL_STATE(5228)] = 226069, + [SMALL_STATE(5229)] = 226079, + [SMALL_STATE(5230)] = 226089, + [SMALL_STATE(5231)] = 226097, + [SMALL_STATE(5232)] = 226107, + [SMALL_STATE(5233)] = 226115, + [SMALL_STATE(5234)] = 226123, + [SMALL_STATE(5235)] = 226131, + [SMALL_STATE(5236)] = 226139, + [SMALL_STATE(5237)] = 226149, + [SMALL_STATE(5238)] = 226159, + [SMALL_STATE(5239)] = 226169, + [SMALL_STATE(5240)] = 226179, + [SMALL_STATE(5241)] = 226189, + [SMALL_STATE(5242)] = 226199, + [SMALL_STATE(5243)] = 226209, + [SMALL_STATE(5244)] = 226219, + [SMALL_STATE(5245)] = 226229, + [SMALL_STATE(5246)] = 226237, + [SMALL_STATE(5247)] = 226247, + [SMALL_STATE(5248)] = 226257, + [SMALL_STATE(5249)] = 226265, + [SMALL_STATE(5250)] = 226275, + [SMALL_STATE(5251)] = 226285, + [SMALL_STATE(5252)] = 226295, + [SMALL_STATE(5253)] = 226303, + [SMALL_STATE(5254)] = 226311, + [SMALL_STATE(5255)] = 226321, + [SMALL_STATE(5256)] = 226331, + [SMALL_STATE(5257)] = 226341, + [SMALL_STATE(5258)] = 226351, + [SMALL_STATE(5259)] = 226361, + [SMALL_STATE(5260)] = 226371, + [SMALL_STATE(5261)] = 226379, + [SMALL_STATE(5262)] = 226387, + [SMALL_STATE(5263)] = 226397, + [SMALL_STATE(5264)] = 226407, + [SMALL_STATE(5265)] = 226417, + [SMALL_STATE(5266)] = 226427, + [SMALL_STATE(5267)] = 226437, + [SMALL_STATE(5268)] = 226447, + [SMALL_STATE(5269)] = 226455, + [SMALL_STATE(5270)] = 226465, + [SMALL_STATE(5271)] = 226475, + [SMALL_STATE(5272)] = 226485, + [SMALL_STATE(5273)] = 226495, + [SMALL_STATE(5274)] = 226505, + [SMALL_STATE(5275)] = 226515, + [SMALL_STATE(5276)] = 226525, + [SMALL_STATE(5277)] = 226535, + [SMALL_STATE(5278)] = 226545, + [SMALL_STATE(5279)] = 226555, + [SMALL_STATE(5280)] = 226565, + [SMALL_STATE(5281)] = 226575, + [SMALL_STATE(5282)] = 226585, + [SMALL_STATE(5283)] = 226595, + [SMALL_STATE(5284)] = 226605, + [SMALL_STATE(5285)] = 226615, + [SMALL_STATE(5286)] = 226625, + [SMALL_STATE(5287)] = 226635, + [SMALL_STATE(5288)] = 226645, + [SMALL_STATE(5289)] = 226653, + [SMALL_STATE(5290)] = 226663, + [SMALL_STATE(5291)] = 226673, + [SMALL_STATE(5292)] = 226683, + [SMALL_STATE(5293)] = 226693, + [SMALL_STATE(5294)] = 226703, + [SMALL_STATE(5295)] = 226713, + [SMALL_STATE(5296)] = 226723, + [SMALL_STATE(5297)] = 226733, + [SMALL_STATE(5298)] = 226743, + [SMALL_STATE(5299)] = 226753, + [SMALL_STATE(5300)] = 226761, + [SMALL_STATE(5301)] = 226771, + [SMALL_STATE(5302)] = 226781, + [SMALL_STATE(5303)] = 226791, + [SMALL_STATE(5304)] = 226801, + [SMALL_STATE(5305)] = 226811, + [SMALL_STATE(5306)] = 226821, + [SMALL_STATE(5307)] = 226831, + [SMALL_STATE(5308)] = 226839, + [SMALL_STATE(5309)] = 226849, + [SMALL_STATE(5310)] = 226857, + [SMALL_STATE(5311)] = 226867, + [SMALL_STATE(5312)] = 226877, + [SMALL_STATE(5313)] = 226887, + [SMALL_STATE(5314)] = 226895, + [SMALL_STATE(5315)] = 226905, + [SMALL_STATE(5316)] = 226915, + [SMALL_STATE(5317)] = 226925, + [SMALL_STATE(5318)] = 226935, + [SMALL_STATE(5319)] = 226945, + [SMALL_STATE(5320)] = 226953, + [SMALL_STATE(5321)] = 226963, + [SMALL_STATE(5322)] = 226973, + [SMALL_STATE(5323)] = 226983, + [SMALL_STATE(5324)] = 226993, + [SMALL_STATE(5325)] = 227003, + [SMALL_STATE(5326)] = 227013, + [SMALL_STATE(5327)] = 227023, + [SMALL_STATE(5328)] = 227033, + [SMALL_STATE(5329)] = 227043, + [SMALL_STATE(5330)] = 227053, + [SMALL_STATE(5331)] = 227063, + [SMALL_STATE(5332)] = 227073, + [SMALL_STATE(5333)] = 227083, + [SMALL_STATE(5334)] = 227091, + [SMALL_STATE(5335)] = 227101, + [SMALL_STATE(5336)] = 227111, + [SMALL_STATE(5337)] = 227121, + [SMALL_STATE(5338)] = 227131, + [SMALL_STATE(5339)] = 227141, + [SMALL_STATE(5340)] = 227151, + [SMALL_STATE(5341)] = 227161, + [SMALL_STATE(5342)] = 227171, + [SMALL_STATE(5343)] = 227179, + [SMALL_STATE(5344)] = 227187, + [SMALL_STATE(5345)] = 227197, + [SMALL_STATE(5346)] = 227207, + [SMALL_STATE(5347)] = 227217, + [SMALL_STATE(5348)] = 227227, + [SMALL_STATE(5349)] = 227237, + [SMALL_STATE(5350)] = 227247, + [SMALL_STATE(5351)] = 227257, + [SMALL_STATE(5352)] = 227267, + [SMALL_STATE(5353)] = 227277, + [SMALL_STATE(5354)] = 227285, + [SMALL_STATE(5355)] = 227295, + [SMALL_STATE(5356)] = 227305, + [SMALL_STATE(5357)] = 227315, + [SMALL_STATE(5358)] = 227323, + [SMALL_STATE(5359)] = 227333, + [SMALL_STATE(5360)] = 227341, + [SMALL_STATE(5361)] = 227351, + [SMALL_STATE(5362)] = 227361, + [SMALL_STATE(5363)] = 227369, + [SMALL_STATE(5364)] = 227379, + [SMALL_STATE(5365)] = 227389, + [SMALL_STATE(5366)] = 227399, + [SMALL_STATE(5367)] = 227409, + [SMALL_STATE(5368)] = 227419, + [SMALL_STATE(5369)] = 227427, + [SMALL_STATE(5370)] = 227437, + [SMALL_STATE(5371)] = 227447, + [SMALL_STATE(5372)] = 227457, + [SMALL_STATE(5373)] = 227467, + [SMALL_STATE(5374)] = 227477, + [SMALL_STATE(5375)] = 227487, + [SMALL_STATE(5376)] = 227495, + [SMALL_STATE(5377)] = 227505, + [SMALL_STATE(5378)] = 227515, + [SMALL_STATE(5379)] = 227523, + [SMALL_STATE(5380)] = 227533, + [SMALL_STATE(5381)] = 227543, + [SMALL_STATE(5382)] = 227553, + [SMALL_STATE(5383)] = 227563, + [SMALL_STATE(5384)] = 227573, + [SMALL_STATE(5385)] = 227583, + [SMALL_STATE(5386)] = 227593, + [SMALL_STATE(5387)] = 227603, + [SMALL_STATE(5388)] = 227613, + [SMALL_STATE(5389)] = 227621, + [SMALL_STATE(5390)] = 227629, + [SMALL_STATE(5391)] = 227639, + [SMALL_STATE(5392)] = 227649, + [SMALL_STATE(5393)] = 227659, + [SMALL_STATE(5394)] = 227667, + [SMALL_STATE(5395)] = 227677, + [SMALL_STATE(5396)] = 227687, + [SMALL_STATE(5397)] = 227697, + [SMALL_STATE(5398)] = 227707, + [SMALL_STATE(5399)] = 227717, + [SMALL_STATE(5400)] = 227727, + [SMALL_STATE(5401)] = 227737, + [SMALL_STATE(5402)] = 227747, + [SMALL_STATE(5403)] = 227757, + [SMALL_STATE(5404)] = 227767, + [SMALL_STATE(5405)] = 227777, + [SMALL_STATE(5406)] = 227785, + [SMALL_STATE(5407)] = 227795, + [SMALL_STATE(5408)] = 227805, + [SMALL_STATE(5409)] = 227815, + [SMALL_STATE(5410)] = 227825, + [SMALL_STATE(5411)] = 227835, + [SMALL_STATE(5412)] = 227845, + [SMALL_STATE(5413)] = 227853, + [SMALL_STATE(5414)] = 227861, + [SMALL_STATE(5415)] = 227871, + [SMALL_STATE(5416)] = 227879, + [SMALL_STATE(5417)] = 227887, + [SMALL_STATE(5418)] = 227897, + [SMALL_STATE(5419)] = 227907, + [SMALL_STATE(5420)] = 227917, + [SMALL_STATE(5421)] = 227927, + [SMALL_STATE(5422)] = 227937, + [SMALL_STATE(5423)] = 227947, + [SMALL_STATE(5424)] = 227957, + [SMALL_STATE(5425)] = 227967, + [SMALL_STATE(5426)] = 227977, + [SMALL_STATE(5427)] = 227987, + [SMALL_STATE(5428)] = 227997, + [SMALL_STATE(5429)] = 228007, + [SMALL_STATE(5430)] = 228015, + [SMALL_STATE(5431)] = 228025, + [SMALL_STATE(5432)] = 228035, + [SMALL_STATE(5433)] = 228045, + [SMALL_STATE(5434)] = 228055, + [SMALL_STATE(5435)] = 228065, + [SMALL_STATE(5436)] = 228073, + [SMALL_STATE(5437)] = 228081, + [SMALL_STATE(5438)] = 228091, + [SMALL_STATE(5439)] = 228099, + [SMALL_STATE(5440)] = 228107, + [SMALL_STATE(5441)] = 228115, + [SMALL_STATE(5442)] = 228125, + [SMALL_STATE(5443)] = 228135, + [SMALL_STATE(5444)] = 228145, + [SMALL_STATE(5445)] = 228155, + [SMALL_STATE(5446)] = 228165, + [SMALL_STATE(5447)] = 228175, + [SMALL_STATE(5448)] = 228185, + [SMALL_STATE(5449)] = 228195, + [SMALL_STATE(5450)] = 228205, + [SMALL_STATE(5451)] = 228215, + [SMALL_STATE(5452)] = 228225, + [SMALL_STATE(5453)] = 228235, + [SMALL_STATE(5454)] = 228245, + [SMALL_STATE(5455)] = 228255, + [SMALL_STATE(5456)] = 228263, + [SMALL_STATE(5457)] = 228273, + [SMALL_STATE(5458)] = 228283, + [SMALL_STATE(5459)] = 228293, + [SMALL_STATE(5460)] = 228303, + [SMALL_STATE(5461)] = 228311, + [SMALL_STATE(5462)] = 228321, + [SMALL_STATE(5463)] = 228331, + [SMALL_STATE(5464)] = 228339, + [SMALL_STATE(5465)] = 228349, + [SMALL_STATE(5466)] = 228357, + [SMALL_STATE(5467)] = 228367, + [SMALL_STATE(5468)] = 228374, + [SMALL_STATE(5469)] = 228381, + [SMALL_STATE(5470)] = 228388, + [SMALL_STATE(5471)] = 228395, + [SMALL_STATE(5472)] = 228402, + [SMALL_STATE(5473)] = 228409, + [SMALL_STATE(5474)] = 228416, + [SMALL_STATE(5475)] = 228423, + [SMALL_STATE(5476)] = 228430, + [SMALL_STATE(5477)] = 228437, + [SMALL_STATE(5478)] = 228444, + [SMALL_STATE(5479)] = 228451, + [SMALL_STATE(5480)] = 228458, + [SMALL_STATE(5481)] = 228465, + [SMALL_STATE(5482)] = 228472, + [SMALL_STATE(5483)] = 228479, + [SMALL_STATE(5484)] = 228486, + [SMALL_STATE(5485)] = 228493, + [SMALL_STATE(5486)] = 228500, + [SMALL_STATE(5487)] = 228507, + [SMALL_STATE(5488)] = 228514, + [SMALL_STATE(5489)] = 228521, + [SMALL_STATE(5490)] = 228528, + [SMALL_STATE(5491)] = 228535, + [SMALL_STATE(5492)] = 228542, + [SMALL_STATE(5493)] = 228549, + [SMALL_STATE(5494)] = 228556, + [SMALL_STATE(5495)] = 228563, + [SMALL_STATE(5496)] = 228570, + [SMALL_STATE(5497)] = 228577, + [SMALL_STATE(5498)] = 228584, + [SMALL_STATE(5499)] = 228591, + [SMALL_STATE(5500)] = 228598, + [SMALL_STATE(5501)] = 228605, + [SMALL_STATE(5502)] = 228612, + [SMALL_STATE(5503)] = 228619, + [SMALL_STATE(5504)] = 228626, + [SMALL_STATE(5505)] = 228633, + [SMALL_STATE(5506)] = 228640, + [SMALL_STATE(5507)] = 228647, + [SMALL_STATE(5508)] = 228654, + [SMALL_STATE(5509)] = 228661, + [SMALL_STATE(5510)] = 228668, + [SMALL_STATE(5511)] = 228675, + [SMALL_STATE(5512)] = 228682, + [SMALL_STATE(5513)] = 228689, + [SMALL_STATE(5514)] = 228696, + [SMALL_STATE(5515)] = 228703, + [SMALL_STATE(5516)] = 228710, + [SMALL_STATE(5517)] = 228717, + [SMALL_STATE(5518)] = 228724, + [SMALL_STATE(5519)] = 228731, + [SMALL_STATE(5520)] = 228738, + [SMALL_STATE(5521)] = 228745, + [SMALL_STATE(5522)] = 228752, + [SMALL_STATE(5523)] = 228759, + [SMALL_STATE(5524)] = 228766, + [SMALL_STATE(5525)] = 228773, + [SMALL_STATE(5526)] = 228780, + [SMALL_STATE(5527)] = 228787, + [SMALL_STATE(5528)] = 228794, + [SMALL_STATE(5529)] = 228801, + [SMALL_STATE(5530)] = 228808, + [SMALL_STATE(5531)] = 228815, + [SMALL_STATE(5532)] = 228822, + [SMALL_STATE(5533)] = 228829, + [SMALL_STATE(5534)] = 228836, + [SMALL_STATE(5535)] = 228843, + [SMALL_STATE(5536)] = 228850, + [SMALL_STATE(5537)] = 228857, + [SMALL_STATE(5538)] = 228864, + [SMALL_STATE(5539)] = 228871, + [SMALL_STATE(5540)] = 228878, + [SMALL_STATE(5541)] = 228885, + [SMALL_STATE(5542)] = 228892, + [SMALL_STATE(5543)] = 228899, + [SMALL_STATE(5544)] = 228906, + [SMALL_STATE(5545)] = 228913, + [SMALL_STATE(5546)] = 228920, + [SMALL_STATE(5547)] = 228927, + [SMALL_STATE(5548)] = 228934, + [SMALL_STATE(5549)] = 228941, + [SMALL_STATE(5550)] = 228948, + [SMALL_STATE(5551)] = 228955, + [SMALL_STATE(5552)] = 228962, + [SMALL_STATE(5553)] = 228969, + [SMALL_STATE(5554)] = 228976, + [SMALL_STATE(5555)] = 228983, + [SMALL_STATE(5556)] = 228990, + [SMALL_STATE(5557)] = 228997, + [SMALL_STATE(5558)] = 229004, + [SMALL_STATE(5559)] = 229011, + [SMALL_STATE(5560)] = 229018, + [SMALL_STATE(5561)] = 229025, + [SMALL_STATE(5562)] = 229032, + [SMALL_STATE(5563)] = 229039, + [SMALL_STATE(5564)] = 229046, + [SMALL_STATE(5565)] = 229053, + [SMALL_STATE(5566)] = 229060, + [SMALL_STATE(5567)] = 229067, + [SMALL_STATE(5568)] = 229074, + [SMALL_STATE(5569)] = 229081, + [SMALL_STATE(5570)] = 229088, + [SMALL_STATE(5571)] = 229095, + [SMALL_STATE(5572)] = 229102, + [SMALL_STATE(5573)] = 229109, + [SMALL_STATE(5574)] = 229116, + [SMALL_STATE(5575)] = 229123, + [SMALL_STATE(5576)] = 229130, + [SMALL_STATE(5577)] = 229137, + [SMALL_STATE(5578)] = 229144, + [SMALL_STATE(5579)] = 229151, + [SMALL_STATE(5580)] = 229158, + [SMALL_STATE(5581)] = 229165, + [SMALL_STATE(5582)] = 229172, + [SMALL_STATE(5583)] = 229179, + [SMALL_STATE(5584)] = 229186, + [SMALL_STATE(5585)] = 229193, + [SMALL_STATE(5586)] = 229200, + [SMALL_STATE(5587)] = 229207, + [SMALL_STATE(5588)] = 229214, + [SMALL_STATE(5589)] = 229221, + [SMALL_STATE(5590)] = 229228, + [SMALL_STATE(5591)] = 229235, + [SMALL_STATE(5592)] = 229242, + [SMALL_STATE(5593)] = 229249, + [SMALL_STATE(5594)] = 229256, + [SMALL_STATE(5595)] = 229263, + [SMALL_STATE(5596)] = 229270, + [SMALL_STATE(5597)] = 229277, + [SMALL_STATE(5598)] = 229284, + [SMALL_STATE(5599)] = 229291, + [SMALL_STATE(5600)] = 229298, + [SMALL_STATE(5601)] = 229305, + [SMALL_STATE(5602)] = 229312, + [SMALL_STATE(5603)] = 229319, + [SMALL_STATE(5604)] = 229326, + [SMALL_STATE(5605)] = 229333, + [SMALL_STATE(5606)] = 229340, + [SMALL_STATE(5607)] = 229347, + [SMALL_STATE(5608)] = 229354, + [SMALL_STATE(5609)] = 229361, + [SMALL_STATE(5610)] = 229368, + [SMALL_STATE(5611)] = 229375, + [SMALL_STATE(5612)] = 229382, + [SMALL_STATE(5613)] = 229389, + [SMALL_STATE(5614)] = 229396, + [SMALL_STATE(5615)] = 229403, + [SMALL_STATE(5616)] = 229410, + [SMALL_STATE(5617)] = 229417, + [SMALL_STATE(5618)] = 229424, + [SMALL_STATE(5619)] = 229431, + [SMALL_STATE(5620)] = 229438, + [SMALL_STATE(5621)] = 229445, + [SMALL_STATE(5622)] = 229452, + [SMALL_STATE(5623)] = 229459, + [SMALL_STATE(5624)] = 229466, + [SMALL_STATE(5625)] = 229473, + [SMALL_STATE(5626)] = 229480, + [SMALL_STATE(5627)] = 229487, + [SMALL_STATE(5628)] = 229494, + [SMALL_STATE(5629)] = 229501, + [SMALL_STATE(5630)] = 229508, + [SMALL_STATE(5631)] = 229515, + [SMALL_STATE(5632)] = 229522, + [SMALL_STATE(5633)] = 229529, + [SMALL_STATE(5634)] = 229536, + [SMALL_STATE(5635)] = 229543, + [SMALL_STATE(5636)] = 229550, + [SMALL_STATE(5637)] = 229557, + [SMALL_STATE(5638)] = 229564, + [SMALL_STATE(5639)] = 229571, + [SMALL_STATE(5640)] = 229578, + [SMALL_STATE(5641)] = 229585, + [SMALL_STATE(5642)] = 229592, + [SMALL_STATE(5643)] = 229599, + [SMALL_STATE(5644)] = 229606, + [SMALL_STATE(5645)] = 229613, + [SMALL_STATE(5646)] = 229620, + [SMALL_STATE(5647)] = 229627, + [SMALL_STATE(5648)] = 229634, + [SMALL_STATE(5649)] = 229641, + [SMALL_STATE(5650)] = 229648, + [SMALL_STATE(5651)] = 229655, + [SMALL_STATE(5652)] = 229662, + [SMALL_STATE(5653)] = 229669, + [SMALL_STATE(5654)] = 229676, + [SMALL_STATE(5655)] = 229683, + [SMALL_STATE(5656)] = 229690, + [SMALL_STATE(5657)] = 229697, + [SMALL_STATE(5658)] = 229704, + [SMALL_STATE(5659)] = 229711, + [SMALL_STATE(5660)] = 229718, + [SMALL_STATE(5661)] = 229725, + [SMALL_STATE(5662)] = 229732, + [SMALL_STATE(5663)] = 229739, + [SMALL_STATE(5664)] = 229746, + [SMALL_STATE(5665)] = 229753, + [SMALL_STATE(5666)] = 229760, + [SMALL_STATE(5667)] = 229767, + [SMALL_STATE(5668)] = 229774, + [SMALL_STATE(5669)] = 229781, + [SMALL_STATE(5670)] = 229788, + [SMALL_STATE(5671)] = 229795, + [SMALL_STATE(5672)] = 229802, + [SMALL_STATE(5673)] = 229809, + [SMALL_STATE(5674)] = 229816, + [SMALL_STATE(5675)] = 229823, + [SMALL_STATE(5676)] = 229830, + [SMALL_STATE(5677)] = 229837, + [SMALL_STATE(5678)] = 229844, + [SMALL_STATE(5679)] = 229851, + [SMALL_STATE(5680)] = 229858, + [SMALL_STATE(5681)] = 229865, + [SMALL_STATE(5682)] = 229872, + [SMALL_STATE(5683)] = 229879, + [SMALL_STATE(5684)] = 229886, + [SMALL_STATE(5685)] = 229893, + [SMALL_STATE(5686)] = 229900, + [SMALL_STATE(5687)] = 229907, + [SMALL_STATE(5688)] = 229914, + [SMALL_STATE(5689)] = 229921, + [SMALL_STATE(5690)] = 229928, + [SMALL_STATE(5691)] = 229935, + [SMALL_STATE(5692)] = 229942, + [SMALL_STATE(5693)] = 229949, + [SMALL_STATE(5694)] = 229956, + [SMALL_STATE(5695)] = 229963, + [SMALL_STATE(5696)] = 229970, + [SMALL_STATE(5697)] = 229977, + [SMALL_STATE(5698)] = 229984, + [SMALL_STATE(5699)] = 229991, + [SMALL_STATE(5700)] = 229998, + [SMALL_STATE(5701)] = 230005, + [SMALL_STATE(5702)] = 230012, + [SMALL_STATE(5703)] = 230019, + [SMALL_STATE(5704)] = 230026, + [SMALL_STATE(5705)] = 230033, + [SMALL_STATE(5706)] = 230040, + [SMALL_STATE(5707)] = 230047, + [SMALL_STATE(5708)] = 230054, + [SMALL_STATE(5709)] = 230061, + [SMALL_STATE(5710)] = 230068, + [SMALL_STATE(5711)] = 230075, + [SMALL_STATE(5712)] = 230082, + [SMALL_STATE(5713)] = 230089, + [SMALL_STATE(5714)] = 230096, + [SMALL_STATE(5715)] = 230103, + [SMALL_STATE(5716)] = 230110, + [SMALL_STATE(5717)] = 230117, + [SMALL_STATE(5718)] = 230124, + [SMALL_STATE(5719)] = 230131, + [SMALL_STATE(5720)] = 230138, + [SMALL_STATE(5721)] = 230145, + [SMALL_STATE(5722)] = 230152, + [SMALL_STATE(5723)] = 230159, + [SMALL_STATE(5724)] = 230166, + [SMALL_STATE(5725)] = 230173, + [SMALL_STATE(5726)] = 230180, + [SMALL_STATE(5727)] = 230187, + [SMALL_STATE(5728)] = 230194, + [SMALL_STATE(5729)] = 230201, + [SMALL_STATE(5730)] = 230208, + [SMALL_STATE(5731)] = 230215, + [SMALL_STATE(5732)] = 230222, + [SMALL_STATE(5733)] = 230229, + [SMALL_STATE(5734)] = 230236, + [SMALL_STATE(5735)] = 230243, + [SMALL_STATE(5736)] = 230250, + [SMALL_STATE(5737)] = 230257, + [SMALL_STATE(5738)] = 230264, + [SMALL_STATE(5739)] = 230271, + [SMALL_STATE(5740)] = 230278, + [SMALL_STATE(5741)] = 230285, + [SMALL_STATE(5742)] = 230292, + [SMALL_STATE(5743)] = 230299, + [SMALL_STATE(5744)] = 230306, + [SMALL_STATE(5745)] = 230313, + [SMALL_STATE(5746)] = 230320, + [SMALL_STATE(5747)] = 230327, + [SMALL_STATE(5748)] = 230334, + [SMALL_STATE(5749)] = 230341, + [SMALL_STATE(5750)] = 230348, + [SMALL_STATE(5751)] = 230355, + [SMALL_STATE(5752)] = 230362, + [SMALL_STATE(5753)] = 230369, + [SMALL_STATE(5754)] = 230376, + [SMALL_STATE(5755)] = 230383, + [SMALL_STATE(5756)] = 230390, + [SMALL_STATE(5757)] = 230397, + [SMALL_STATE(5758)] = 230404, + [SMALL_STATE(5759)] = 230411, + [SMALL_STATE(5760)] = 230418, + [SMALL_STATE(5761)] = 230425, + [SMALL_STATE(5762)] = 230432, + [SMALL_STATE(5763)] = 230439, + [SMALL_STATE(5764)] = 230446, + [SMALL_STATE(5765)] = 230453, + [SMALL_STATE(5766)] = 230460, + [SMALL_STATE(5767)] = 230467, + [SMALL_STATE(5768)] = 230474, + [SMALL_STATE(5769)] = 230481, + [SMALL_STATE(5770)] = 230488, + [SMALL_STATE(5771)] = 230495, + [SMALL_STATE(5772)] = 230502, + [SMALL_STATE(5773)] = 230509, + [SMALL_STATE(5774)] = 230516, + [SMALL_STATE(5775)] = 230523, + [SMALL_STATE(5776)] = 230530, + [SMALL_STATE(5777)] = 230537, + [SMALL_STATE(5778)] = 230544, + [SMALL_STATE(5779)] = 230551, + [SMALL_STATE(5780)] = 230558, + [SMALL_STATE(5781)] = 230565, + [SMALL_STATE(5782)] = 230572, + [SMALL_STATE(5783)] = 230579, + [SMALL_STATE(5784)] = 230586, + [SMALL_STATE(5785)] = 230593, + [SMALL_STATE(5786)] = 230600, + [SMALL_STATE(5787)] = 230607, + [SMALL_STATE(5788)] = 230614, + [SMALL_STATE(5789)] = 230621, + [SMALL_STATE(5790)] = 230628, + [SMALL_STATE(5791)] = 230635, + [SMALL_STATE(5792)] = 230642, + [SMALL_STATE(5793)] = 230649, + [SMALL_STATE(5794)] = 230656, + [SMALL_STATE(5795)] = 230663, + [SMALL_STATE(5796)] = 230670, + [SMALL_STATE(5797)] = 230677, + [SMALL_STATE(5798)] = 230684, + [SMALL_STATE(5799)] = 230691, + [SMALL_STATE(5800)] = 230698, + [SMALL_STATE(5801)] = 230705, + [SMALL_STATE(5802)] = 230712, + [SMALL_STATE(5803)] = 230719, + [SMALL_STATE(5804)] = 230726, + [SMALL_STATE(5805)] = 230733, + [SMALL_STATE(5806)] = 230740, + [SMALL_STATE(5807)] = 230747, + [SMALL_STATE(5808)] = 230754, + [SMALL_STATE(5809)] = 230761, + [SMALL_STATE(5810)] = 230768, + [SMALL_STATE(5811)] = 230775, + [SMALL_STATE(5812)] = 230782, + [SMALL_STATE(5813)] = 230789, + [SMALL_STATE(5814)] = 230796, + [SMALL_STATE(5815)] = 230803, + [SMALL_STATE(5816)] = 230810, + [SMALL_STATE(5817)] = 230817, + [SMALL_STATE(5818)] = 230824, + [SMALL_STATE(5819)] = 230831, + [SMALL_STATE(5820)] = 230838, + [SMALL_STATE(5821)] = 230845, + [SMALL_STATE(5822)] = 230852, + [SMALL_STATE(5823)] = 230859, + [SMALL_STATE(5824)] = 230866, + [SMALL_STATE(5825)] = 230873, + [SMALL_STATE(5826)] = 230880, + [SMALL_STATE(5827)] = 230887, + [SMALL_STATE(5828)] = 230894, + [SMALL_STATE(5829)] = 230901, + [SMALL_STATE(5830)] = 230908, + [SMALL_STATE(5831)] = 230915, + [SMALL_STATE(5832)] = 230922, + [SMALL_STATE(5833)] = 230929, + [SMALL_STATE(5834)] = 230936, + [SMALL_STATE(5835)] = 230943, + [SMALL_STATE(5836)] = 230950, + [SMALL_STATE(5837)] = 230957, + [SMALL_STATE(5838)] = 230964, + [SMALL_STATE(5839)] = 230971, + [SMALL_STATE(5840)] = 230978, }; static TSParseActionEntry ts_parse_actions[] = { @@ -318929,4664 +319095,4668 @@ 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(1651), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1563), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4126), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1602), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(496), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4238), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4152), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4119), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(458), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(488), [59] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5799), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [65] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3980), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4145), - [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4767), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4770), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4411), - [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3009), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), - [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1654), - [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(912), - [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5793), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), - [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), - [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), - [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), - [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), - [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(719), - [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3306), - [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4169), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), - [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4269), + [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), + [79] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4754), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [87] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2403), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2403), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), + [95] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1630), + [97] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), + [99] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5803), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), + [109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), + [113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), + [115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), + [125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(624), + [127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3307), + [129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), + [137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), [139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(970), - [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2155), - [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), - [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(962), + [141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2164), + [155] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(924), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1221), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), - [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2835), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), - [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(944), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1372), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(913), - [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), - [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(939), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), - [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(937), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(936), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(935), - [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1408), - [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(932), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1363), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(918), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(925), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), - [301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2412), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1374), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1384), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(938), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(942), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(971), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1401), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1399), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2604), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(920), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(931), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(930), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), + [225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(916), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(946), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(949), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(933), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1235), + [245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), + [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1231), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(951), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(950), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(969), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3046), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(948), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(945), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(966), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1223), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1651), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(299), + [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1602), + [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(303), [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), - [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1563), - [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1281), - [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5), - [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(493), - [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2127), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4189), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4130), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4126), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(526), - [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5217), - [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5160), - [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5099), - [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(179), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(560), - [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5178), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1550), + [316] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1296), + [319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4), + [322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(496), + [325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2123), + [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4238), + [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4152), + [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4119), + [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(500), + [340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5225), + [343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5172), + [346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5126), + [349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(172), + [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(502), + [355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5188), [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(52), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5181), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5189), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5086), - [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5079), - [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5193), - [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(242), - [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(458), + [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5190), + [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5192), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5118), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5112), + [373] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5199), + [376] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(287), + [379] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(488), [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1066), [385] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(106), - [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(190), - [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1579), - [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5799), + [388] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(181), + [391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1540), + [394] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5809), [397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3980), - [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(995), - [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4145), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(446), - [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(526), - [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(595), - [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4767), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4770), - [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4411), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2576), - [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2576), - [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(3009), - [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5068), - [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1654), - [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(912), - [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1294), - [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5794), - [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5793), - [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5792), - [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 67), - [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 67), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), - [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 67), - [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 67), - [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), - [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2158), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2335), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3734), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), - [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3732), - [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), - [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3148), - [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), - [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2154), - [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), - [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), - [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5335), - [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5359), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), - [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3989), - [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), - [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4212), - [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), - [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(919), - [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), - [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1356), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [400] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1000), + [403] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4269), + [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(476), + [409] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(500), + [412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(531), + [415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4753), + [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4754), + [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(4415), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2403), + [427] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2403), + [430] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(2763), + [433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5106), + [436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1630), + [439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(918), + [442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(1299), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5804), + [448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5803), + [451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_program_repeat1, 2), SHIFT_REPEAT(5802), + [454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 3), + [456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 3), + [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 3, .production_id = 67), + [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 3, .production_id = 67), + [462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_default, 2), + [464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_default, 2), + [466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_case, 4, .production_id = 67), + [468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_case, 4, .production_id = 67), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 1), + [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3726), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2157), + [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), + [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), + [488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), + [490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2163), + [492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2771), + [494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), + [496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2215), + [498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_program, 2), + [502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), + [504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), + [506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1745), + [508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4241), + [530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1747), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), + [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3988), - [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), - [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4186), - [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2342), + [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), + [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), + [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2196), + [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5792), + [566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3977), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), + [570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4162), + [572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), - [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4848), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4849), - [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4282), - [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), - [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2044), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2731), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3120), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3180), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2499), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3238), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2278), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2833), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2722), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), - [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2062), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), - [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5045), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), + [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), + [582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), + [584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(876), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4733), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3549), + [598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3538), + [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), + [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), + [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5717), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), + [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), + [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3156), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2460), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), + [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3105), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2350), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3052), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2758), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3147), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1013), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(354), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1811), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), - [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3105), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3253), - [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), - [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1805), - [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), - [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), + [678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3293), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), + [686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), + [690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1692), + [694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), [696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2068), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3931), - [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), - [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), + [702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), + [704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1038), - [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(324), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1993), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), - [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), - [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2817), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1424), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5768), - [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), - [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), - [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), - [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), - [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(620), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), - [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), - [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3982), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), - [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4178), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1869), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(623), - [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3289), - [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3299), - [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3289), - [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3143), - [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), - [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), - [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1258), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), - [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2834), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5775), - [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), - [828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(725), - [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(679), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2788), - [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1449), - [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), - [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1362), - [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1219), - [866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), - [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), - [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), - [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), - [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), - [884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2493), - [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2505), - [894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2493), - [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2396), - [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), - [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), - [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), - [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), - [914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), - [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5727), - [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(964), - [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(450), - [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(522), - [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(783), - [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(580), - [934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2277), - [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), - [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), - [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), - [950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), - [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), - [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1023), - [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), - [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), - [970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), - [974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), - [976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), - [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3360), - [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), - [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), - [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), - [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), - [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), - [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(787), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [1018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3330), - [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3273), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1766), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1483), - [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), - [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), - [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1273), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), - [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [1046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [1048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1000), - [1050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(432), - [1052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), - [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [1056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3153), - [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [1064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), - [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1778), - [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), - [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), - [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), - [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [1082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), - [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), - [1086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3132), - [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), - [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3132), - [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), - [1096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1786), - [1098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), - [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1316), - [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), - [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [1106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(733), - [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [1112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), - [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(850), - [1120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), - [1124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [1126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), - [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), - [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1299), - [1138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(684), - [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), - [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), - [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), - [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), - [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), - [1158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(531), - [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), - [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [1164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1872), - [1166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2027), - [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), - [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), - [1172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), - [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [1176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), - [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), - [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), - [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), - [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), - [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [1190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(695), - [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(722), - [1194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [1196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), - [1198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), - [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), - [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [1210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), - [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), - [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), - [1218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2540), - [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [1222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2540), - [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), - [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [1228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), - [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), - [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), - [1236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), - [1240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [1242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), - [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), - [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(724), - [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), - [1252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), - [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2921), - [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), - [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), - [1262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), - [1264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), - [1266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), - [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), - [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1579), - [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(444), - [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), - [1280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), - [1286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [1288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [1290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), - [1294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), - [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [1298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), - [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2030), - [1304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1599), - [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), - [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), - [1310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), - [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), - [1314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [1318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [1320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), - [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), - [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2010), - [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), - [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3281), - [1334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [1336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), - [1340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [1342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5605), - [1346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [1348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), - [1350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), - [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(310), - [1354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), - [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [1360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4738), - [1364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4734), - [1366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), - [1368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3271), - [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), - [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), - [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), - [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), - [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2109), - [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [1388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), - [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [1392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(606), - [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), - [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [1398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), - [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), - [1404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), - [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(626), - [1410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [1412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3308), - [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3276), - [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), - [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2206), - [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [1422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), - [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), - [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), - [1428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), - [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [1432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), - [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), - [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5810), - [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), - [1442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [1444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), - [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(834), - [1450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), - [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3225), - [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1028), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1884), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), + [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2871), + [728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2918), + [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5553), + [736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1774), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2094), + [744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), + [746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5692), + [760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1730), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2317), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2291), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2317), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3359), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), + [790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1694), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), + [794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), + [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1274), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), + [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), + [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(777), + [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), + [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(311), + [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(786), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), + [832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3267), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3400), + [836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3182), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1350), + [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1407), + [846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), + [852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), + [854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), + [858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), + [862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), + [876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), + [878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1308), + [880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), + [882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), + [888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), + [890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), + [892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), + [896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3164), + [898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), + [900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), + [904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), + [906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2037), + [908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), + [912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(779), + [916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), + [918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), + [924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(778), + [932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2049), + [940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), + [942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), + [944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(822), + [954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5476), + [960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), + [966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), + [970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2390), + [974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2430), + [976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2390), + [978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), + [980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1430), + [988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), + [990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), + [998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [1000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), + [1002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [1004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [1006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), + [1008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3987), + [1010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), + [1014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(690), + [1018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [1020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), + [1022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(615), + [1024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4748), + [1026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4801), + [1028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), + [1030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [1032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [1034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), + [1036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2805), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [1040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [1042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), + [1044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), + [1046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [1048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 1), + [1050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2356), + [1052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 1), + [1054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), + [1056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [1058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [1060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [1062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [1064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), + [1066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [1068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [1070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), + [1072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1281), + [1074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [1076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [1078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), + [1080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [1082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [1084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [1086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [1088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(407), + [1090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), + [1092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [1094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(653), + [1096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), + [1098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2446), + [1100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2400), + [1102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2446), + [1104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3218), + [1106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [1108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [1110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), + [1112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), + [1114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [1116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1291), + [1118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [1120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(535), + [1122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), + [1124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [1126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [1130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), + [1132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), + [1134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [1136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [1138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(725), + [1140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3305), + [1142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3270), + [1144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3305), + [1146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), + [1148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [1150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), + [1152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), + [1154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1604), + [1156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [1158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1287), + [1160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [1162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3330), + [1164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [1166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [1168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), + [1170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [1172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [1174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [1176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), + [1178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(988), + [1180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4175), + [1182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(357), + [1184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), + [1186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [1188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), + [1190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), + [1192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4862), + [1194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4861), + [1196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4356), + [1198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), + [1200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), + [1202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [1204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [1206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), + [1208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [1210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [1212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1400), + [1214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [1216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), + [1218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), + [1220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [1222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), + [1226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), + [1228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [1230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [1232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), + [1234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), + [1236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [1238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [1240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(618), + [1242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [1244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [1246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), + [1248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2720), + [1250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [1252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), + [1254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [1256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1793), + [1258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [1260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), + [1264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), + [1266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [1268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [1270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), + [1272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [1274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(892), + [1276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), + [1278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), + [1280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [1282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [1284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), + [1286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), + [1288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), + [1290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), + [1292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [1294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1289), + [1296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [1300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), + [1302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), + [1304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [1306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [1308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), + [1310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [1312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(212), + [1314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(831), + [1316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [1318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2755), + [1320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [1322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [1324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [1326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [1328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2075), + [1330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1559), + [1332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [1334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), + [1336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1280), + [1338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [1340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [1342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), + [1344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(358), + [1346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1849), + [1348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [1350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [1352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(564), + [1354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [1356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [1358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3534), + [1360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [1362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), + [1364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [1366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), + [1368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [1372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [1376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [1378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1679), + [1380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), + [1382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), + [1384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1276), + [1386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [1388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [1390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), + [1392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(115), + [1394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), + [1396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), + [1398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), + [1400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [1402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(846), + [1404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [1406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [1408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [1410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), + [1412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [1414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), + [1416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1322), + [1418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1271), + [1420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [1422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), + [1424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), + [1426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [1428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [1430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), + [1432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1003), + [1434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [1436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), + [1438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [1440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [1442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(756), + [1444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3462), + [1446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), + [1448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), + [1450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3053), + [1452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [1454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1941), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1396), [1458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1387), - [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), - [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1266), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1279), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(720), - [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(723), - [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [1474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [1478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(888), - [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), - [1488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2780), - [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [1492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), - [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1764), - [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1284), - [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1285), - [1508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [1510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), - [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [1516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), - [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(909), - [1526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), - [1530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), - [1532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3261), - [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3262), - [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), - [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [1542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), - [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1776), - [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), - [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), - [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), - [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [1554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), - [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [1560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), - [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), - [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), - [1566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(810), - [1570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), - [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3293), - [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), - [1578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2036), - [1580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), - [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [1586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), - [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), - [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1040), - [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), - [1598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), - [1602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(564), - [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), - [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4199), - [1614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [1616] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(549), - [1619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [1623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [1628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), - [1630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), - [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(477), - [1636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), - [1638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [1640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), - [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [1644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), - [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), - [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), - [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [1652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4773), - [1654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4772), - [1656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [1658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4011), - [1660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3896), - [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), - [1664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [1666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1417), - [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), - [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), - [1672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), - [1674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [1676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [1680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2849), - [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), - [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), - [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), - [1690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1886), - [1692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), - [1694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), - [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), - [1698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), - [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(683), - [1706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2385), - [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), - [1710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(341), - [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1784), - [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1561), - [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [1722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(720), - [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), - [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), - [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), - [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), - [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(393), - [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), - [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(534), - [1738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), - [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), - [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), - [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2368), - [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), - [1750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [1752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [1756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(841), - [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2375), - [1764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [1766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), - [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), - [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(592), - [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), - [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), - [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2087), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), - [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2020), - [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(506), - [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2014), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(618), - [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), - [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(486), - [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2078), - [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), - [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(591), - [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), - [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), - [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), - [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), - [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(665), - [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), - [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [1460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [1462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1226), + [1464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2369), + [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(739), + [1468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(738), + [1470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(737), + [1472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(967), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(738), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [1484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [1486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1702), + [1488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1303), + [1490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), + [1494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), + [1496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [1498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), + [1500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), + [1504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [1506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), + [1508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [1510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), + [1512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [1514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1551), + [1516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), + [1518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2100), + [1520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [1522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [1524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [1526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [1528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), + [1532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [1534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), + [1536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), + [1538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [1540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), + [1542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [1544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3389), + [1546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [1548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), + [1550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [1552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), + [1554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [1556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1283), + [1558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [1560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [1562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(614), + [1564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [1566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [1568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1018), + [1570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [1572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(867), + [1574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [1576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), + [1578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [1580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), + [1582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [1584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3487), + [1586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3155), + [1588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [1590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1668), + [1592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), + [1594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1286), + [1596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [1602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), + [1604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), + [1606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [1608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [1610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1820), + [1612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(584), + [1614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2355), + [1616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(648), + [1618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [1620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [1622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1495), + [1624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(864), + [1626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [1628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1436), + [1632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), + [1634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2357), + [1636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [1640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [1642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), + [1644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), + [1646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [1648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4193), + [1650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), + [1652] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(871), + [1655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [1659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [1662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [1664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [1666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [1668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), + [1670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [1672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), + [1674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), + [1676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1, .production_id = 1), + [1678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), + [1680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1775), + [1682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1768), + [1684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), + [1686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3863), + [1688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4868), + [1690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4871), + [1692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [1694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), + [1696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [1698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), + [1700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [1702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [1704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), + [1706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [1708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(316), + [1710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), + [1712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(820), + [1714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2018), + [1716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(763), + [1718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2344), + [1720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [1722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [1724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(370), + [1726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [1728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [1730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [1734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1901), + [1736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [1738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2353), + [1740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [1742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), + [1746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), + [1748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(652), + [1750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), + [1752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [1754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1923), + [1756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(560), + [1758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2352), + [1760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), + [1762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [1764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [1766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(309), + [1768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3427), + [1770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1739), + [1772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), + [1774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), + [1776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2046), + [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), + [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), + [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), + [1792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), + [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), + [1798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(847), + [1800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), + [1802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), + [1804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), + [1806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [1808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [1810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [1812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(751), + [1814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [1818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2107), + [1820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), + [1822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), + [1824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [1826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), + [1828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), + [1830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [1832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(479), + [1834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), + [1836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), + [1838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3550), + [1840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1021), [1842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(922), - [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1343), - [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1026), - [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2038), - [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3511), - [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4247), - [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4245), - [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), - [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), - [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1031), - [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4204), - [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(921), - [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5750), - [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5572), - [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(907), - [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), - [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1223), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), - [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1870), - [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), - [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1874), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(709), - [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(851), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(461), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(549), - [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), - [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), - [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), - [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), - [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), - [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), - [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), + [1846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), + [1848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), + [1850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), + [1852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4216), + [1854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4211), + [1856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [1858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), + [1860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), + [1862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4217), + [1864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(923), + [1866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [1868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5758), + [1870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5794), + [1872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5795), + [1874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3826), + [1876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), + [1878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), + [1880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), + [1882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1730), + [1890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), + [1892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [1894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3867), + [1896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1700), + [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [1900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), + [1902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), + [1904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), + [1908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(597), + [1910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [1914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), + [1918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), + [1922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [1926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), [1928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 1, .production_id = 5), [1930] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 1, .production_id = 5), - [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5663), - [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(650), + [1938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), [1940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 2), [1942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 2), [1944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 2), [1946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 2), [1948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 2), - [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), - [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), - [1956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 92), - [1958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 92), - [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 92), - [1962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 92), - [1964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), - [1966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), - [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), - [1970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [1972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 78), - [1974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 78), - [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 78), - [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 78), - [1980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [1982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), - [1984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), - [1986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 40), - [1988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 40), - [1990] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 40), - [1992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 40), - [1994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [1996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), - [1998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), - [2000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), - [2002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [2004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), - [2006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1225), - [2008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4819), - [2010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), - [2012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), - [2014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), - [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5767), - [2018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), - [2020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), - [2022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [2024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), - [2026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), - [2028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [2030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [2032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 134), - [2034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 134), - [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 134), - [2038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 134), - [2040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [2042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), - [2044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), - [2046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 79), - [2048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 79), - [2050] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 79), - [2052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 79), - [2054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [2056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), - [2058] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), - [2060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [2062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [2064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), - [2066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), - [2070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), - [2072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(615), - [2074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [2076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [2078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4867), - [2080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1652), - [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [2084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [2086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [2088] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [2090] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), - [2092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), - [2094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), - [2096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), - [2098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), - [2100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 109), - [2106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 109), - [2108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 109), - [2110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 109), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [2114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 117), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 117), - [2118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 117), - [2120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 117), - [2122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), - [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), - [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), - [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), - [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), - [2136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 109), - [2138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 109), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 109), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 109), - [2144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), - [2148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(460), - [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 86), - [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 86), - [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 86), - [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 86), - [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), - [2161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [2163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [2165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 136), - [2167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 136), - [2169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 136), - [2171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 136), - [2173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [2175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 23), - [2177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 23), - [2179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [2181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), - [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 106), - [2185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 106), - [2187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [2189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 116), - [2191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 116), - [2193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 116), - [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 116), - [2197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1208), - [2199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), - [2203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), - [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), - [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [2209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(548), - [2211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), - [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), - [2215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2387), - [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3327), - [2221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(963), - [2223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(662), - [2225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [2227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), - [2229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(462), - [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3214), - [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3402), - [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [2244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), - [2246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), - [2248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), - [2252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [2254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), - [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), - [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1278), - [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), - [2264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), - [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4185), - [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), - [2272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3204), - [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3629), - [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [2278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), - [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), - [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2041), - [2284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2042), - [2286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), - [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2371), - [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [2292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [2294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [2296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1011), + [1950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(878), + [1954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), + [1956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [1958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 4, .production_id = 86), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 4, .production_id = 86), + [1962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 86), + [1964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 86), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), + [1968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 134), + [1970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 134), + [1972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 6, .production_id = 134), + [1974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 6, .production_id = 134), + [1976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 2), + [1980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 2), + [1982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(793), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), + [1986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(671), + [1988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_declaration, 1), + [1996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_declaration, 1), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_identifier, 3), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_identifier, 3), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_internal_module, 2, .production_id = 6), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 3, .production_id = 40), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 3, .production_id = 40), + [2014] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 40), + [2016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 40), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), + [2020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__module, 2, .production_id = 23), + [2022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__module, 2, .production_id = 23), + [2024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 109), + [2026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 5, .production_id = 109), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 109), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 109), + [2032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [2034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 109), + [2036] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 109), + [2038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 5, .production_id = 109), + [2040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 5, .production_id = 109), + [2042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [2044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), + [2046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(394), + [2049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3), + [2051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 136), + [2055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 136), + [2057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 6, .production_id = 136), + [2059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 6, .production_id = 136), + [2061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [2063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 3), + [2065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 3), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [2069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 92), + [2071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 92), + [2073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 92), + [2075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 92), + [2077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), + [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), + [2083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2126), + [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), + [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [2089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), + [2093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), + [2095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1871), + [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [2099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5555), + [2101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [2103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4789), + [2105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4803), + [2107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), + [2109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3956), + [2111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [2113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1825), + [2115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_statement_block, 4), + [2117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_statement_block, 4), + [2119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 78), + [2121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 78), + [2123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 78), + [2125] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 78), + [2127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [2129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [2131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), + [2133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [2135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), + [2137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [2139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), + [2141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 79), + [2143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 79), + [2145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 79), + [2147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 79), + [2149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [2151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 106), + [2153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 106), + [2155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 106), + [2157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 106), + [2159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [2161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [2163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), + [2165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), + [2167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [2169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1896), + [2171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [2173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [2175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [2177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_body, 3), + [2179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_body, 3), + [2181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 116), + [2183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 116), + [2185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 116), + [2187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 116), + [2189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [2191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), + [2195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 117), + [2197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 117), + [2199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 117), + [2201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 117), + [2203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [2205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), + [2207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2358), + [2209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [2211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), + [2213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(972), + [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [2217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [2219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), + [2221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(318), + [2224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), + [2226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [2228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(722), + [2230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [2232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), + [2234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), + [2238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), + [2240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), + [2242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), + [2244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), + [2246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), + [2248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), + [2250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2360), + [2252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), + [2254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4206), + [2256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), + [2260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3129), + [2262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2359), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3434), + [2266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2749), + [2270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), + [2274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [2276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [2278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2056), + [2280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2052), + [2282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1328), + [2284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), + [2286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), + [2288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [2290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4045), + [2292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), + [2294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_predefined_type, 1), + [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_predefined_type, 1), [2298] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), - [2301] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3950), - [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), - [2309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1360), - [2311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1020), - [2313] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3871), - [2317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(772), - [2325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), - [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), - [2329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), - [2331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), - [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), - [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), - [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4126), - [2341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(48), - [2347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), - [2350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5779), - [2352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [2354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), - [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5792), - [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2517), - [2368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), - [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), - [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [2376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2386), - [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2437), - [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), - [2384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2368), - [2386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), - [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), - [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2216), - [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [2396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2082), - [2398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1371), - [2400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), - [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1536), - [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), - [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1282), - [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), - [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), - [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), - [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2051), - [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), - [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1027), - [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1680), - [2428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1877), - [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2021), - [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), - [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), - [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1954), - [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1004), - [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), - [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1243), - [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), - [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2416), - [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1382), - [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(968), - [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), - [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), - [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1292), - [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(990), - [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), - [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1779), - [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), - [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(998), - [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1711), - [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2022), - [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), - [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1508), - [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2043), - [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), - [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1344), - [2502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1022), - [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), - [2506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2105), - [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1403), - [2510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2370), - [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4386), - [2514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), - [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), - [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1525), - [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), - [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), - [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), - [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), - [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2677), - [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1406), - [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1244), - [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(977), - [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2050), - [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), - [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), - [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1348), - [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1433), - [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), - [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(980), - [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1802), - [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2584), - [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), - [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1728), - [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), - [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(991), - [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), - [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3062), - [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), - [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), - [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1484), - [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), - [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), - [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), - [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2064), - [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1908), - [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), - [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), - [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1246), - [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), - [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), - [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2024), - [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), - [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), - [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), - [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1413), - [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1253), - [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(974), - [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1267), - [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), - [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [2658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), - [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(989), - [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), - [2672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [2674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), - [2676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), - [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4274), - [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [2684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [2686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [2694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [2696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [2698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2035), - [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5693), - [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), - [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), - [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [2718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1554), - [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), - [2724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), - [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5472), - [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), - [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5550), - [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1661), - [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2023), - [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2093), - [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), - [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1955), - [2746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), - [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), - [2752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [2754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), - [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), - [2758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), - [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), - [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(999), - [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2079), - [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), - [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1368), - [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), - [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), - [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2097), - [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), - [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1354), - [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1025), - [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2067), - [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), - [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1342), - [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), - [2804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2076), - [2806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2272), - [2810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2069), - [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3347), - [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1999), - [2818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [2820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2071), - [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [2824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), - [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3010), - [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4838), - [2832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), - [2834] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3812), - [2837] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3583), - [2841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(491), - [2844] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(5243), - [2848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4264), - [2850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), - [2852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5733), - [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4287), - [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5639), - [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4247), - [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4245), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4086), - [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), - [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), - [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4225), - [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5750), - [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [2882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), - [2884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4314), - [2886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3730), - [2888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), - [2890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3729), - [2892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), - [2894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), - [2896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), - [2898] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), - [2900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), - [2902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), - [2904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), - [2906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), - [2908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), - [2910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), - [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [2914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1445), - [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3758), - [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [2926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), - [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), - [2936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3787), - [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), - [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), - [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [2944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [2946] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), - [2948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), - [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4129), - [2952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3750), - [2957] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), - [2962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), - [2964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3583), - [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(5243), - [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), - [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5494), - [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4208), - [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5679), - [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4170), - [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5546), - [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5720), - [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5718), - [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), - [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), - [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), - [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5698), - [3002] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(332), - [3005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [3007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5516), - [3009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5507), - [3011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4135), - [3013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5491), - [3015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4197), - [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5499), - [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5498), - [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), - [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5544), - [3033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5776), - [3037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), - [3041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5638), - [3043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), - [3045] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(903), - [3048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), - [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1768), - [3052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 10), - [3054] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 10), - [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4931), - [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [3060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5607), - [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5602), - [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [3068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5743), - [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), - [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), - [3076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4240), - [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), - [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5478), - [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5624), - [3090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), - [3092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 33), - [3094] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 33), - [3096] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 142), - [3098] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 142), - [3100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 156), - [3102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 156), - [3104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), - [3106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), - [3108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 10), - [3110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 10), - [3112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 28), - [3114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 28), - [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [3118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), - [3120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), - [3122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 30), - [3124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 30), - [3126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 72), - [3128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 72), - [3130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 134), - [3132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 134), - [3134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), - [3136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), - [3138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), - [3140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), - [3142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 79), - [3144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 79), - [3146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 78), - [3148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 78), - [3150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 88), - [3152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 88), - [3154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), - [3156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), - [3158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 152), - [3160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 152), - [3162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 135), - [3164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 135), - [3166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 85), - [3168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 85), - [3170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 109), - [3172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 109), - [3174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 100), - [3176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 100), - [3178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 109), - [3180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 109), - [3182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 106), - [3184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 106), - [3186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), - [3188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), - [3190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 32), - [3192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 32), - [3194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 36), - [3196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 36), - [3198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 136), - [3200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 136), - [3202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), - [3204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), - [3206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), - [3208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), - [3210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), - [3212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), - [3214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 153), - [3216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 153), - [3218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), - [3220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 2), - [3222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 59), - [3224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 59), - [3226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 62), - [3228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 5, .production_id = 62), - [3230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), - [3232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), - [3234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), - [3236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5767), - [3238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [3240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4013), - [3242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), - [3244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 3), - [3246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 62), - [3248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 3, .production_id = 62), - [3250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 60), - [3252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 60), - [3254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), - [3256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), - [3258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 96), - [3260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 96), - [3262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 74), - [3264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 74), - [3266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 10), - [3268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 10), - [3270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 138), - [3272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 138), - [3274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 21), - [3276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 21), - [3278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), - [3280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), - [3282] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), - [3284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), - [3286] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 34), - [3288] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 34), - [3290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), - [3292] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), - [3294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 40), - [3296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 40), - [3298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 48), - [3300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 48), - [3302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), - [3304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), - [3306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 78), - [3308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 78), - [3310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 29), - [3312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 29), - [3314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [3316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 79), - [3318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), - [3320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), - [3322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 71), - [3324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 71), - [3326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 70), - [3328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 70), - [3330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), - [3332] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), - [3334] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 35), - [3336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 35), - [3338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 62), - [3340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 4, .production_id = 62), - [3342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), - [3344] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), - [3346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 108), - [3348] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 108), - [3350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), - [3352] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), - [3354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 86), - [3356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 86), - [3358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), - [3360] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), - [3362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 110), - [3364] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 110), - [3366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 111), - [3368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 111), - [3370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [3372] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), - [3374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), - [3376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), - [3378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 59), - [3380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 59), - [3382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 125), - [3384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 125), - [3386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 121), - [3388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 121), - [3390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), - [3392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), - [3394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 98), - [3396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 98), - [3398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), - [3400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), - [3402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), - [3404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), - [3406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 36), - [3408] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 36), - [3410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), - [3412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), - [3414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 137), - [3416] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 137), - [3418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), - [3420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), - [3422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 56), - [3424] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 56), - [3426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 19), - [3428] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 19), - [3430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 91), - [3432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 91), - [3434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 115), - [3436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 115), - [3438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [3440] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), - [3442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [3444] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), - [3446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 141), - [3448] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 141), - [3450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 119), - [3452] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 119), - [3454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 116), - [3456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 116), - [3458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), - [3460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), - [3462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 117), - [3464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 117), - [3466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 40), - [3468] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 40), - [3470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), - [3472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), - [3474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), - [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), - [3478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 140), - [3480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 140), - [3482] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), - [3484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), - [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 123), - [3488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 123), - [3490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 124), - [3492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 124), - [3494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [3496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), - [3500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), - [3504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4872), - [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), - [3508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5584), - [3512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2221), - [3514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5573), - [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5812), - [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), - [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), - [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), - [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2819), - [3532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2163), - [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5597), - [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2473), - [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5726), - [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4103), - [3542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), - [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), - [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), - [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2327), - [3556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4095), - [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), - [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2399), - [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [3570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [3574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), - [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), - [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3270), - [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), - [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), - [3590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4897), - [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), - [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3032), - [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3274), - [3602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), - [3604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [3606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), - [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), - [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), - [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3097), - [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3100), - [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3322), - [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), - [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), - [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2119), - [3626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), - [3628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), - [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), - [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3256), - [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), - [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), - [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), - [3642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3177), - [3644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), - [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3505), - [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3562), - [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), - [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), - [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2503), - [3660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), - [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), - [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3326), - [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), - [3670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), - [3672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), - [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3917), - [3676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), - [3678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2735), - [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3054), - [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3057), - [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3300), - [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [3692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), - [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), - [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), - [3698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), - [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3115), - [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3114), - [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3113), - [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3335), - [3708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), - [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [3712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), - [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), - [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3044), - [3720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3215), - [3722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3216), - [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3323), - [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3571), - [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2383), - [3732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), - [3734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), - [3736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2195), - [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), - [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3284), - [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), - [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2321), - [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), - [3752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [3754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), - [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), - [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), - [3760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3069), - [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), - [3764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3329), - [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), - [3768] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), - [3770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), - [3772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 89), - [3774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 89), - [3776] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 113), - [3778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 113), - [3780] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), - [3782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), - [3784] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 50), - [3786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 50), - [3788] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 51), - [3790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 51), - [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), - [3794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1659), - [3796] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), - [3798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(668), - [3800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), - [3802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1750), - [3805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5566), - [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [3810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), - [3812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1724), - [3815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), - [3817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), - [3820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1895), - [3823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), - [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), - [3828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), - [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1677), - [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4127), - [3835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), - [3837] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [3840] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), - [3843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3951), - [3847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(821), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), - [3851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), - [3853] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1847), - [3856] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [3862] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 11), - [3866] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), - [3868] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5814), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), - [3879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), - [3883] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(700), - [3886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), - [3888] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(5431), - [3892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [3894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), - [3896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), - [3898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), - [3900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [3902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3259), - [3904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), - [3906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3263), - [3908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3272), - [3910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [3912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), - [3914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), - [3916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2177), - [3918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), - [3920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), - [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), - [3924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), - [3926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), - [3928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), - [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), - [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), - [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2178), - [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2179), - [3940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2180), - [3942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2179), - [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1856), - [3946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5508), - [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), - [3950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), - [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [3956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), - [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), - [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), - [3962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), - [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1757), - [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2033), - [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), - [3970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), - [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), - [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), - [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), - [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), - [3984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4801), - [3988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), - [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), - [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1841), - [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1839), - [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), - [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), - [4002] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), - [4005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3530), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3524), - [4011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), - [4013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), - [4015] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1842), - [4018] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [4022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3156), - [4024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2123), - [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), - [4034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [4036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), - [4038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), - [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2003), - [4042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5826), - [4044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3502), - [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), - [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), - [4050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), - [4052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2002), - [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), - [4056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), - [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [4060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), - [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [4064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), - [4068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), - [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), - [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), - [4074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [4076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4944), - [4078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), - [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), - [4082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), - [4084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4979), - [4086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), - [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [4090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), - [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), - [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4735), - [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), - [4102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), - [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5777), - [4108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [4110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), - [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), - [4118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5762), - [4120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1971), - [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), - [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4817), - [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), - [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), - [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1940), - [4138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4863), - [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), - [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), - [4152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [4154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1609), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), - [4166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4850), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1885), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(905), - [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2374), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2421), - [4186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), - [4188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4847), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), - [4198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5526), - [4204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2420), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2410), - [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2408), - [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2410), - [4212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), - [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5527), - [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1699), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2128), - [4220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(891), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [4226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), - [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), - [4234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1601), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [4238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), - [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4108), - [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4008), - [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3900), - [4248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), - [4252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), - [4258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4800), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), - [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), - [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4067), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4746), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4747), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4066), - [4276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4015), - [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), - [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), - [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4131), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [4294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [4302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1598), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1597), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1713), - [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), - [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [4334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2845), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), - [4338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2, .production_id = 38), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3251), - [4348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3975), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4161), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3202), - [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3382), - [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3301), - [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [4370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4853), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4105), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1907), - [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(330), - [4390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(808), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [4394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2440), - [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3960), - [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [4400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), - [4404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), - [4408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4110), - [4410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1686), - [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1726), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(585), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2376), - [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2513), - [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3959), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2554), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), - [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [4432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1862), - [4435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2, .production_id = 38), - [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [4439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1822), - [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5732), - [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(454), - [4447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2678), - [4449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), - [4451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2595), - [4453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2987), - [4455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), - [4457] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_rest_pattern, 2), - [4461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), - [4463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [4465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), - [4467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), - [4469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3396), - [4471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), - [4473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [4475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [4477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3411), - [4479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3979), - [4481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [4483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), - [4485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), - [4487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), - [4489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), - [4491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4163), - [4493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), - [4495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), - [4497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2868), - [4499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3162), - [4501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [4503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [4505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), - [4507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [4509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), - [4513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4402), - [4515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1727), - [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [4519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), - [4521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [4525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), - [4537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), - [4539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [4543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4961), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3007), - [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3038), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [4555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3124), - [4557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [4559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [4561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3252), - [4563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), - [4565] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4568] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), - [4573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2453), - [4575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), - [4577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2264), - [4579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2273), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4617), - [4587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 38), - [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), - [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), - [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [4597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [4601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [4603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4071), - [4605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2, .production_id = 38), - [4607] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(331), - [4610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [4612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), - [4614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), - [4616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [4618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), - [4620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), - [4622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3540), - [4626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3549), - [4628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3543), - [4630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), - [4632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), - [4634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [4636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(394), - [4639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(469), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(889), - [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [4646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(750), - [4649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), - [4651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1722), - [4653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1765), - [4655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), - [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), - [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5006), - [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [4666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(873), - [4668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5744), - [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2586), - [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2744), - [4676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), - [4678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4281), - [4680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3319), - [4683] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2386), - [4686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3501), - [4689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2202), - [4692] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3229), - [4695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3400), - [4698] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2517), - [4701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3194), - [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2131), - [4708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2166), - [4710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2815), - [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [4714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), - [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), - [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), - [4720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), - [4722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), - [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), - [4726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2230), - [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [4730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3600), - [4733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(4007), - [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2332), - [4738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3428), - [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), - [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2217), - [4744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [4748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3970), - [4750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4372), - [4754] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), - [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2455), - [4760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), - [4763] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), - [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), - [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [4779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 13), - [4781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 13), - [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [4785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), - [4787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), - [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), - [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4207), - [4793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), - [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), - [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), - [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2342), - [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), - [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), - [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4115), - [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), - [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2404), - [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [4817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2983), - [4819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2326), - [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4093), - [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3008), - [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2203), - [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [4829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), - [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), - [4833] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 11), - [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), - [4837] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), - [4839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), - [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [4843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5561), - [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 45), - [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 45), - [4849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 54), - [4851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 54), - [4853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), - [4855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), - [4857] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), - [4859] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), - [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 53), - [4865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 53), - [4867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [4869] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), - [4871] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [4873] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), - [4875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), - [4877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), - [4879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), - [4881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), - [4883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), - [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), - [4887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 12), - [4889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 12), - [4891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), - [4893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1431), - [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 114), - [4897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [4899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [4901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [4903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(758), - [4905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [4907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), - [4909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(752), - [4913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(755), - [4917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), - [4925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), - [4927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2261), - [4929] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 39), - [4931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 39), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2204), - [4935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 52), - [4937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 52), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 46), - [4941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 83), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 49), - [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), - [4947] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(81), - [4950] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [4953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), - [4956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 46), - [4958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), - [4960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), - [4962] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), - [4964] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), - [4966] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 24), - [4968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 25), - [4970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 24), - [4972] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 77), - [4974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 77), - [4976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(818), - [4978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [4980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1395), - [4982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [4988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [4990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [4992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5325), - [4994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5009), - [4996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [4998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [5000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [5004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(828), - [5006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(829), - [5008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(830), - [5010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [5012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(826), - [5014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), - [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2511), - [5018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 81), - [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 84), - [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 80), - [5024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 80), - [5026] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), - [5028] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), - [5030] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), - [5032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), - [5034] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), - [5036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), - [5038] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), - [5040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), - [5042] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 81), - [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), - [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), - [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 11), - [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 11), - [5052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(80), - [5055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 38), - [5057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 38), - [5059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), - [5061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), - [5063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), - [5065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), - [5067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 82), - [5069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 82), - [5071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 83), - [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 10), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 10), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 84), - [5083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1), - [5086] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1), - [5089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 82), - [5091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 82), - [5093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 47), - [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 47), + [2301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), + [2303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [2305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), + [2307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1032), + [2309] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3962), + [2313] = {.entry = {.count = 3, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3892), + [2317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [2319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4875), + [2321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [2323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), + [2325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [2327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5101), + [2329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(601), + [2331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5791), + [2333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), + [2335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4405), + [2337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3085), + [2339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [2341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), + [2343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4152), + [2345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), + [2347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(44), + [2353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), + [2356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5789), + [2358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5788), + [2360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [2362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3713), + [2364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), + [2366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5804), + [2368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), + [2370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5802), + [2372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [2374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2750), + [2376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), + [2378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2352), + [2380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2365), + [2382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), + [2384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1), + [2386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1830), + [2388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [2390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2206), + [2392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), + [2394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2509), + [2396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2542), + [2398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2212), + [2400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3653), + [2402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [2404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), + [2406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1301), + [2408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(995), + [2410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2090), + [2412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2108), + [2414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1380), + [2416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1048), + [2418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1420), + [2420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1364), + [2422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), + [2424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(973), + [2426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [2428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1434), + [2430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), + [2432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), + [2434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(460), + [2436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [2438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), + [2440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [2442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1446), + [2444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1256), + [2446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(979), + [2448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [2450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1657), + [2452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [2454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1001), + [2456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1465), + [2458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1753), + [2460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), + [2462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(997), + [2464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(359), + [2466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2491), + [2468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1346), + [2470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [2472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [2474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(965), + [2476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1620), + [2478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), + [2480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [2482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1016), + [2484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1558), + [2486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1881), + [2488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1277), + [2490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(987), + [2492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), + [2494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), + [2496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2098), + [2498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2099), + [2500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [2502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2377), + [2504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4323), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [2508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1045), + [2510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3609), + [2512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1683), + [2514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [2516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), + [2518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1015), + [2520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), + [2522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [2524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [2526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(993), + [2528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [2530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), + [2532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2032), + [2534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [2536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), + [2538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1254), + [2540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(976), + [2542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), + [2544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2047), + [2546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1326), + [2548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1008), + [2550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), + [2552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), + [2554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1307), + [2556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(992), + [2558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), + [2560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2029), + [2562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [2564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1338), + [2566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1030), + [2568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [2570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [2572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1270), + [2574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [2576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [2578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1691), + [2580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [2582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1473), + [2584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1268), + [2586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(985), + [2588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [2590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [2592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [2594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(975), + [2596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(352), + [2598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), + [2600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2025), + [2604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1017), + [2608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [2612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [2614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1269), + [2616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(982), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2048), + [2620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), + [2622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [2624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1534), + [2626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2003), + [2628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(994), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3160), + [2636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), + [2638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2070), + [2640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2061), + [2642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), + [2646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2081), + [2650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), + [2652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1930), + [2654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), + [2656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(996), + [2658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [2660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1607), + [2662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [2664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2045), + [2666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2096), + [2668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [2670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1019), + [2672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5700), + [2674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), + [2676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4167), + [2678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5249), + [2680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [2682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [2684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), + [2686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [2688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [2690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [2692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [2694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1503), + [2696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [2698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [2700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), + [2702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), + [2704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2089), + [2706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2091), + [2708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1345), + [2710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), + [2712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1029), + [2714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [2718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), + [2720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5511), + [2722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2077), + [2724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [2726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1496), + [2728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), + [2730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), + [2732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1383), + [2734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1649), + [2736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2016), + [2738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2028), + [2740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1323), + [2742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [2744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2054), + [2746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2034), + [2748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [2750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1014), + [2752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [2754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [2756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), + [2758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), + [2762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2072), + [2764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2084), + [2766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [2768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1039), + [2770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), + [2772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2066), + [2774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), + [2776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1024), + [2778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2017), + [2780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2104), + [2782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2101), + [2784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [2786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1043), + [2788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1895), + [2790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1964), + [2792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1275), + [2794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1002), + [2796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2102), + [2798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1748), + [2800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [2802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2095), + [2804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3309), + [2806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1791), + [2808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2536), + [2810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2886), + [2812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [2814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), + [2816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2092), + [2818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [2820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), + [2822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3360), + [2824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2085), + [2826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), + [2828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4841), + [2830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4839), + [2832] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3816), + [2835] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3600), + [2839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(585), + [2842] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(5236), + [2846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4173), + [2848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [2850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3750), + [2852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5714), + [2854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [2856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), + [2858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), + [2860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [2862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), + [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5806), + [2866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), + [2868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), + [2870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [2872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), + [2874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5758), + [2876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5271), + [2878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [2880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [2882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4352), + [2884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 4), + [2886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 4), + [2888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 3), + [2890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 3), + [2892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3755), + [2894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [2896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3754), + [2898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 5), + [2900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 5), + [2902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 2), + [2904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 2), + [2906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_type, 6), + [2908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_type, 6), + [2910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [2912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1419), + [2914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [2916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [2918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), + [2920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [2922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [2924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [2926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1365), + [2928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4080), + [2930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [2932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1005), + [2934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), + [2936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4049), + [2938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [2940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [2942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [2944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_accessibility_modifier, 1), + [2946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_accessibility_modifier, 1), + [2948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5506), + [2950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [2952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3600), + [2955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(5236), + [2958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [2960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), + [2962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), + [2964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(3730), + [2967] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [2970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [2972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [2974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [2976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4142), + [2978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [2980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), + [2982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [2984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5653), + [2986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [2988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [2990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5623), + [2992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [2994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [2998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5473), + [3000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5781), + [3002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), + [3004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5707), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5708), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4239), + [3012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [3016] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), SHIFT(428), + [3019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), + [3021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5518), + [3023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5531), + [3025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5585), + [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5656), + [3029] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), SHIFT(497), + [3032] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), + [3036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5796), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5787), + [3040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1023), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5523), + [3044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), + [3046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 2, .production_id = 10), + [3048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 2, .production_id = 10), + [3050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), + [3052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5297), + [3054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5549), + [3056] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5548), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5751), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5752), + [3062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [3064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1995), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [3072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), + [3074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), + [3080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), + [3084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5556), + [3088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5554), + [3090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 33), + [3092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 33), + [3094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 2, .production_id = 10), + [3096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 2, .production_id = 10), + [3098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 6, .production_id = 156), + [3100] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 6, .production_id = 156), + [3102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression_statement, 2), + [3104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression_statement, 2), + [3106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_empty_statement, 1), + [3108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_empty_statement, 1), + [3110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_catch_clause, 5, .production_id = 142), + [3112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_catch_clause, 5, .production_id = 142), + [3114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 3, .production_id = 28), + [3116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 3, .production_id = 28), + [3118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [3120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 4, .production_id = 72), + [3122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 4, .production_id = 72), + [3124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 5, .production_id = 108), + [3126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 5, .production_id = 108), + [3128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 19), + [3130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 19), + [3132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 59), + [3134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 59), + [3136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 60), + [3138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 60), + [3140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4), + [3142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4), + [3144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 3, .production_id = 34), + [3146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 3, .production_id = 34), + [3148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_in_statement, 3, .production_id = 30), + [3150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_in_statement, 3, .production_id = 30), + [3152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [3154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 2, .production_id = 4), + [3156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 3), + [3158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 3), + [3160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_do_statement, 5, .production_id = 100), + [3162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_do_statement, 5, .production_id = 100), + [3164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 106), + [3166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 106), + [3168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 6, .production_id = 109), + [3170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 6, .production_id = 109), + [3172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_with_statement, 3, .production_id = 35), + [3174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_with_statement, 3, .production_id = 35), + [3176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 109), + [3178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 6, .production_id = 109), + [3180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4), + [3182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4), + [3184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 3, .production_id = 36), + [3186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 3, .production_id = 36), + [3188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 135), + [3190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 135), + [3192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 4, .production_id = 59), + [3194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 4, .production_id = 59), + [3196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 3, .production_id = 36), + [3198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 3, .production_id = 36), + [3200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 4), + [3202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 4), + [3204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 4), + [3206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 4), + [3208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 4), + [3210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 4), + [3212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_break_statement, 2), + [3214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_break_statement, 2), + [3216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 4, .production_id = 70), + [3218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 4, .production_id = 70), + [3220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 2), + [3222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 2), + [3224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if_statement, 4, .production_id = 71), + [3226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if_statement, 4, .production_id = 71), + [3228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 2), + [3230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 2), + [3232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 116), + [3234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 116), + [3236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 6, .production_id = 117), + [3238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 6, .production_id = 117), + [3240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 137), + [3242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 137), + [3244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 138), + [3246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 6, .production_id = 138), + [3248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [3250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [3252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [3254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), + [3256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [3258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), + [3260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_while_statement, 3, .production_id = 32), + [3262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_while_statement, 3, .production_id = 32), + [3264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 5, .production_id = 62), + [3266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 5, .production_id = 62), + [3268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_continue_statement, 2), + [3270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_continue_statement, 2), + [3272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 79), + [3274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 79), + [3276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_debugger_statement, 2), + [3278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_debugger_statement, 2), + [3280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2), + [3282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2), + [3284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 3), + [3286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 3), + [3288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_throw_statement, 3), + [3290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_throw_statement, 3), + [3292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 4, .production_id = 78), + [3294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 4, .production_id = 78), + [3296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 88), + [3298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 4, .production_id = 88), + [3300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 7, .production_id = 141), + [3302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 7, .production_id = 141), + [3304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 3, .production_id = 40), + [3306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 3, .production_id = 40), + [3308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 4, .production_id = 62), + [3310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 4, .production_id = 62), + [3312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3), + [3314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3), + [3316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_for_statement, 6, .production_id = 125), + [3318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_for_statement, 6, .production_id = 125), + [3320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5), + [3322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5), + [3324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_signature, 4, .production_id = 85), + [3326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_signature, 4, .production_id = 85), + [3328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 78), + [3330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 78), + [3332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 21), + [3334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_labeled_statement, 3, .dynamic_precedence = -1, .production_id = 21), + [3336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 79), + [3338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 79), + [3340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_body, 3), + [3342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_body, 3), + [3344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_finally_clause, 2, .production_id = 10), + [3346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_finally_clause, 2, .production_id = 10), + [3348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_try_statement, 4, .production_id = 74), + [3350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_try_statement, 4, .production_id = 74), + [3352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3, .production_id = 62), + [3354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 3, .production_id = 62), + [3356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 3), + [3358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 3), + [3360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_declaration, 3, .production_id = 48), + [3362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_declaration, 3, .production_id = 48), + [3364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_declaration, 5, .production_id = 86), + [3366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_declaration, 5, .production_id = 86), + [3368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 4, .production_id = 40), + [3370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 4, .production_id = 40), + [3372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 110), + [3374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 110), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 96), + [3378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 5, .production_id = 96), + [3380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 111), + [3382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 111), + [3384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [3386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_interface_declaration, 5, .production_id = 106), + [3388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 134), + [3390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function_declaration, 7, .production_id = 134), + [3392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 3), + [3394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 3), + [3396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_else_clause, 2), + [3398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_else_clause, 2), + [3400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 7, .production_id = 152), + [3402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 7, .production_id = 152), + [3404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 3, .production_id = 56), + [3406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 3, .production_id = 56), + [3408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_body, 5), + [3410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_enum_body, 5), + [3412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 7, .production_id = 136), + [3414] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 7, .production_id = 136), + [3416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_alias, 5), + [3418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_alias, 5), + [3420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 153), + [3422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 7, .production_id = 153), + [3424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_module, 2, .production_id = 6), + [3426] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_module, 2, .production_id = 6), + [3428] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 4, .production_id = 91), + [3430] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 4, .production_id = 91), + [3432] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 121), + [3434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_alias_declaration, 6, .production_id = 121), + [3436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_switch_statement, 3, .production_id = 29), + [3438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_switch_statement, 3, .production_id = 29), + [3440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_clause, 2), + [3442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_clause, 2), + [3444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lexical_declaration, 3), + [3446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lexical_declaration, 3), + [3448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_export_statement, 5, .production_id = 115), + [3450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_export_statement, 5, .production_id = 115), + [3452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 3), + [3454] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 3), + [3456] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [3458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class_declaration, 5, .production_id = 92), + [3460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ambient_declaration, 2), + [3462] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ambient_declaration, 2), + [3464] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 119), + [3466] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_abstract_class_declaration, 5, .production_id = 119), + [3468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 5, .production_id = 98), + [3470] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 5, .production_id = 98), + [3472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_statement, 3), + [3474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import_statement, 3), + [3476] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [3478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [3480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 6, .production_id = 140), + [3482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 6, .production_id = 140), + [3484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 124), + [3486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 124), + [3488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__for_header, 5, .production_id = 123), + [3490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__for_header, 5, .production_id = 123), + [3492] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 4), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 4), + [3496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), + [3498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [3502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), + [3504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1044), + [3506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [3508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), + [3510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4883), + [3512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2161), + [3514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), + [3516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5664), + [3518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3352), + [3520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [3522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [3524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5614), + [3526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4108), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [3540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2601), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3446), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3285), + [3550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3944), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2303), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4065), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2330), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2513), + [3566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), + [3568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2810), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [3572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2113), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3618), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2246), + [3584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [3586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3125), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4840), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5588), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), + [3594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3122), + [3596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3119), + [3598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3573), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [3604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 4), + [3606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 4), + [3608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [3610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [3612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3049), + [3614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3207), + [3616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3208), + [3618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3209), + [3620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3314), + [3622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2114), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2429), + [3630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), + [3632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [3634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3106), + [3636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3610), + [3640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2117), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), + [3646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [3648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3103), + [3650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3104), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [3654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3559), + [3656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3911), + [3658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2111), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2757), + [3662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3170), + [3664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3172), + [3668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3399), + [3670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), + [3672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3915), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3240), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3067), + [3680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3064), + [3682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3059), + [3684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), + [3688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [3690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [3694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), + [3696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3063), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3061), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), + [3702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), + [3704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3919), + [3706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2115), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3367), + [3710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3221), + [3714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3222), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3308), + [3718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [3724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [3726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2116), + [3728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), + [3730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), + [3732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3044), + [3734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3048), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3353), + [3738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3592), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [3744] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 3), + [3746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 3), + [3748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), + [3750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1437), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2727), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2202), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [3758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3181), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2237), + [3762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2349), + [3764] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_arguments, 5), + [3766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_arguments, 5), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [3770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 4, .production_id = 89), + [3772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 4, .production_id = 89), + [3774] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_subscript_expression, 5, .production_id = 113), + [3776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_subscript_expression, 5, .production_id = 113), + [3778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 51), + [3780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 51), + [3782] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_member_expression, 3, .production_id = 50), + [3784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_member_expression, 3, .production_id = 50), + [3786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_non_null_expression, 2), + [3788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_non_null_expression, 2), + [3790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_primary_expression, 1), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(745), + [3794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_primary_expression, 1), + [3796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1661), + [3799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5576), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), + [3804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__augmented_assignment_lhs, 1), + [3806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), + [3810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1983), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5095), + [3814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), + [3816] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1706), + [3819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4117), + [3821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1966), + [3824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1810), + [3827] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), + [3830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), + [3833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [3835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [3838] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1, .production_id = 7), + [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [3843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3846] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1946), + [3852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [3854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(825), + [3856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3858] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 11), + [3862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), + [3864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5496), + [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [3871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(546), + [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [3875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [3881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2158), + [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), + [3885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2122), + [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [3889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [3891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [3893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [3895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), + [3897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [3899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), + [3901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [3903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2175), + [3905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), + [3907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2177), + [3909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2176), + [3911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [3913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5539), + [3915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [3917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [3919] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(861), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1907), + [3924] = {.entry = {.count = 3, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(5441), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), + [3930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [3932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4937), + [3934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3945), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2124), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2027), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [3944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3363), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), + [3948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3362), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3361), + [3952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3506), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), + [3956] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1, .production_id = 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [3960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2380), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2468), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2127), + [3966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [3968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1965), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), + [3980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [3982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2467), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2465), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2466), + [3990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), + [3992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [3994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1876), + [3996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3194), + [4000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), + [4002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2120), + [4004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [4008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [4010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), + [4014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), + [4016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5651), + [4020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), + [4026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), + [4028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1677), + [4030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), + [4032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1664), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2120), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3972), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2129), + [4040] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), REDUCE(aux_sym_object_pattern_repeat1, 1), + [4043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [4045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3537), + [4047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3536), + [4049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3621), + [4051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3685), + [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), + [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [4057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2653), + [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), + [4061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2121), + [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [4067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [4069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1787), + [4075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), + [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), + [4079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), + [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [4083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [4085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2957), + [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1767), + [4089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), + [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [4093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [4095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), + [4097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), + [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1971), + [4101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1950), + [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1940), + [4105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [4107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), + [4109] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1921), + [4112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [4114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [4116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1699), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [4126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1943), + [4128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [4130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [4132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(862), + [4134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1764), + [4140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), + [4142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), + [4144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1822), + [4146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1853), + [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(250), + [4150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4814), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1860), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), + [4156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), + [4158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1873), + [4160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1737), + [4162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), + [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4743), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), + [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), + [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [4172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1962), + [4174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), + [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [4178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4983), + [4182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [4184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), + [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1584), + [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [4190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), + [4192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1590), + [4194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1591), + [4196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4731), + [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1955), + [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), + [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), + [4206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1888), + [4208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1852), + [4210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), + [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), + [4214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [4216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [4222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4796), + [4224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1644), + [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [4228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [4232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4124), + [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), + [4236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), + [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4125), + [4240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), + [4242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4125), + [4244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), + [4246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), + [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5617), + [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), + [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [4254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [4256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4794), + [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), + [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), + [4262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [4264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1788), + [4266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1763), + [4268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [4270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4740), + [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1828), + [4278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1829), + [4280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1855), + [4282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(629), + [4284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4158), + [4286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [4288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [4292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1626), + [4296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1869), + [4298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), + [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3126), + [4306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [4308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3940), + [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [4312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [4314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), + [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), + [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), + [4320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4066), + [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1960), + [4324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1972), + [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [4330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2301), + [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4884), + [4336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1998), + [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1999), + [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [4342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1807), + [4344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2001), + [4346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3991), + [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4171), + [4350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [4352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [4354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4873), + [4356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), + [4360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1617), + [4362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [4364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1772), + [4366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), + [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [4372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(661), + [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1305), + [4378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2861), + [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [4384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [4386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4837), + [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), + [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), + [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), + [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), + [4396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1919), + [4398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1920), + [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [4402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2949), + [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [4406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2484), + [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2487), + [4412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4051), + [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4316), + [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2199), + [4418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [4420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), + [4422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [4424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3266), + [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3533), + [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), + [4430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), + [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3058), + [4434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), + [4436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), + [4438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2476), + [4440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), + [4442] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2347), + [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2456), + [4452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), + [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4116), + [4456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [4458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), + [4460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(478), + [4462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), + [4464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), + [4466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4110), + [4468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), + [4470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), + [4472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3310), + [4474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [4476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), + [4478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), + [4480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1726), + [4482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), + [4484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), + [4488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1616), + [4490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [4492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3392), + [4494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3527), + [4496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2820), + [4498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3149), + [4500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), + [4502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [4504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), + [4506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [4508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2785), + [4510] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1838), + [4513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [4515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), + [4517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [4519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(505), + [4521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [4523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(658), + [4525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), + [4529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [4531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [4533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4848), + [4535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1728), + [4541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1917), + [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), + [4547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2381), + [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2511), + [4551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_rest_pattern, 2), + [4553] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_rest_pattern, 2), + [4557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_pattern, 2), + [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), + [4561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4874), + [4563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [4565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(444), + [4567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3304), + [4569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [4571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), + [4573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extends_type, 1, .production_id = 11), + [4575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_type, 1, .production_id = 11), + [4577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(1840), + [4580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(5637), + [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [4585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4123), + [4587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), + [4589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), + [4591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [4595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), SHIFT(424), + [4598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [4600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(764), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [4608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), + [4610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(397), + [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3990), + [4615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2130), + [4617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 1), + [4619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3546), + [4621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3547), + [4623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3548), + [4625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), + [4629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4982), + [4631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(600), + [4633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), SHIFT(438), + [4636] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(649), + [4639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), + [4641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [4643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), + [4645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [4647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_rest_pattern, 2), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4959), + [4656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [4658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5748), + [4660] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2583), + [4663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2542), + [4666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4293), + [4670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2750), + [4673] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3085), + [4676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3074), + [4679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2206), + [4682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(2365), + [4685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3437), + [4688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3254), + [4691] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3333), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), + [4696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2128), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [4700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), + [4706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3680), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2233), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3357), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2300), + [4718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2884), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2241), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2220), + [4724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5076), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), + [4728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), + [4730] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 1), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), + [4734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 1), + [4736] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(3626), + [4739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), SHIFT(4062), + [4742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2191), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4118), + [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2311), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2408), + [4750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [4752] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), + [4756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__property_name, 1, .production_id = 7), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), + [4759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2528), + [4761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [4763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [4765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3445), + [4767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), + [4769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4073), + [4771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), + [4773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), + [4775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), + [4777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), + [4779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), + [4781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4064), + [4783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3967), + [4785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 2, .production_id = 13), + [4787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 2, .production_id = 13), + [4789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [4791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4264), + [4799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [4803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2287), + [4807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), + [4811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [4813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [4815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 45), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 45), + [4821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2285), + [4823] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1, .production_id = 11), + [4825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [4827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primary_type, 1), + [4831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primary_type, 1), + [4833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), + [4837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), + [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), + [4841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), + [4843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [4845] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_pattern, 2), + [4847] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [4849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(728), + [4851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), + [4853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ternary_expression, 5, .production_id = 114), + [4855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [4857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [4859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(719), + [4861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [4863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [4865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), + [4867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), + [4869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [4871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), + [4873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(701), + [4875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [4877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [4879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), + [4881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(698), + [4883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(697), + [4885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [4887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), + [4889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [4891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2507), + [4893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), + [4895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 49), + [4897] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(100), + [4900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 81), + [4902] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_existential_type, 1), + [4904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_existential_type, 1), + [4906] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1), + [4908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1), + [4910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type, 1), + [4912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type, 1), + [4914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_literal_type, 1, .production_id = 12), + [4918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_literal_type, 1, .production_id = 12), + [4920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 41), + [4922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 41), + [4924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 54), + [4926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 42), + [4928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 42), + [4930] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 47), + [4932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 46), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 46), + [4936] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 43), + [4938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 43), + [4940] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), + [4942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), + [4944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 44), + [4946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 44), + [4948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [4950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), + [4952] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(80), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2227), + [4959] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), + [4961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), + [4963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 47), + [4965] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [4968] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), + [4971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(863), + [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1442), + [4975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [4977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [4981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(704), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), + [4991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [4993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), + [4995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(838), + [4997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), + [5003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_as_expression, 3), + [5005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_as_expression, 3), + [5007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), + [5009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), + [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_assertion, 2), + [5013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_assertion, 2), + [5015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), + [5017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 24), + [5019] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object_pattern, 3, .production_id = 25), + [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 24), + [5023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), + [5025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 2), + [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 2), + [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 3, .production_id = 39), + [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 3, .production_id = 39), + [5033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2321), + [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2339), + [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 22), + [5039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2222), + [5041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), + [5043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), + [5045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_query, 2), + [5047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_query, 2), + [5049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 2), + [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 2), + [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flow_maybe_type, 2), + [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flow_maybe_type, 2), + [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 2), + [5059] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 2), + [5061] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 14), + [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 14), + [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__number, 2, .production_id = 8), + [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__number, 2, .production_id = 8), + [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2, .production_id = 11), + [5071] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2, .production_id = 11), + [5073] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 22), + [5075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_infer_type, 2, .production_id = 38), + [5077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_infer_type, 2, .production_id = 38), + [5079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_index_type_query, 2), + [5081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_type_query, 2), + [5083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generic_type, 2), + [5085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generic_type, 2), + [5087] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 83), + [5089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [5092] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_type, 2), + [5095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 3), [5097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), [5099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 8), - [5101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(80), - [5104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 3), - [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 3), - [5108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1724), - [5110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), - [5112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 3, .production_id = 44), - [5114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 3, .production_id = 44), - [5116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_meta_property, 3), - [5118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_meta_property, 3), - [5120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 87), - [5122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 87), - [5124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), - [5126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), - [5128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 3, .production_id = 43), - [5130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 3, .production_id = 43), - [5132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 42), - [5134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 42), - [5136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), - [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), - [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 14), - [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_update_expression, 2, .production_id = 14), - [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 41), - [5146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 41), - [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_yield_expression, 2), - [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 15), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 15), - [5154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 3, .production_id = 22), - [5156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 90), - [5158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 90), - [5160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [5162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2, .production_id = 8), - [5164] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(80), - [5167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [5170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), - [5173] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_tuple_type, 2), - [5179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), - [5181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), - [5183] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(81), - [5186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 93), - [5188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 93), - [5190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), - [5192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), - [5194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), - [5196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), - [5198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 94), - [5200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 94), - [5202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 76), - [5204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 76), - [5206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 76), - [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), - [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), - [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), - [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), - [5217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), - [5219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), - [5221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), - [5223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 57), - [5225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 57), - [5227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), - [5229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), - [5231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 118), - [5233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 118), - [5235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 24), - [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 24), - [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), - [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), - [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 4), - [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 4), - [5247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(81), - [5250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), - [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), - [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), - [5256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), - [5258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), - [5262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2168), - [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 3), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 3), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), - [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 107), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 107), - [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 22), - [5282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(817), - [5284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [5292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [5294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [5296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5391), - [5300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), - [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(853), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), - [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [5310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(910), - [5312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), - [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(639), - [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), - [5320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), - [5322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2762), - [5324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(79), - [5327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4035), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2746), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [5333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3601), - [5335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3568), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), - [5339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), - [5341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), - [5343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4039), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [5347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3626), - [5349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3552), - [5351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3647), - [5353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), - [5355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), - [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2474), - [5359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [5362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), - [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), - [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), - [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), - [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), - [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), - [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), - [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), - [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3578), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3580), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), - [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), - [5394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3621), - [5396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), - [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), - [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), - [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), - [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), - [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [5410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), - [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), - [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [5422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4020), - [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2388), - [5426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), - [5430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), - [5432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), - [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), - [5438] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(79), - [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(79), - [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4033), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3398), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3574), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3575), - [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3577), - [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), - [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), - [5458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 24), REDUCE(sym_object_pattern, 3, .production_id = 25), - [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), - [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), - [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3620), - [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), - [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), - [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), - [5475] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [5478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), - [5482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3607), - [5484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), - [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), - [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), - [5492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2207), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), - [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3570), - [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3650), - [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), - [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [5510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), - [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(804), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), - [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(89), - [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), - [5539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1428), - [5541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(773), - [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [5545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), - [5547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), - [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(718), - [5551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), - [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), - [5555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(718), - [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(696), - [5559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), - [5561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(587), - [5563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [5565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), - [5567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), - [5569] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(97), - [5572] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(89), - [5575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(97), - [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(774), - [5580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 114), - [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [5590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(525), - [5592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(896), - [5596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), - [5598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [5600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(896), - [5602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [5604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), - [5606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), - [5608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [5610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [5612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), - [5614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(97), - [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 46), - [5619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(84), - [5622] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 46), - [5624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), - [5626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), - [5628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [5630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), - [5632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(89), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [5637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 46), - [5639] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(84), - [5642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), - [5644] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), - [5646] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(84), - [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(890), - [5651] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), REDUCE(sym_assignment_expression, 3, .production_id = 46), - [5654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), - [5656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), - [5658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [5660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), - [5662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(881), - [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(874), - [5668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), - [5670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(877), - [5672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(874), - [5674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [5676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), - [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), - [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), - [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1696), - [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1774), - [5688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), - [5690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(523), - [5692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), - [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), - [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), - [5702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [5704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4249), - [5706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), - [5708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3681), - [5710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), - [5712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), - [5714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), - [5716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(85), - [5719] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(90), - [5722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), - [5724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [5726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), - [5728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [5730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(619), - [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(635), - [5734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(651), - [5736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1366), - [5738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), - [5748] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), - [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), - [5752] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(86), - [5755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5748), - [5759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), - [5761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2939), - [5765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), - [5767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), - [5769] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(86), - [5772] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(90), - [5775] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(85), - [5778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(90), - [5781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(551), - [5783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1425), - [5785] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), - [5787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2019), - [5789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [5791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(518), - [5793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [5795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [5797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), - [5799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), - [5801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [5803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(790), - [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), - [5807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), - [5809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [5811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(621), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(625), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [5823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3321), - [5825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), - [5827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [5833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(649), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(659), - [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), - [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), - [5847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(674), - [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(676), - [5853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), - [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [5859] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(85), - [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), - [5866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [5868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 162), - [5870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 162), - [5872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2866), - [5874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), REDUCE(sym_assignment_expression, 3, .production_id = 20), - [5877] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 46), REDUCE(sym_assignment_expression, 3, .production_id = 46), - [5880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 46), - [5882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [5884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), - [5889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [5891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [5893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [5895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), - [5897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(558), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(562), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), - [5903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [5905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), - [5907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(566), - [5909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(569), - [5911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), - [5913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), - [5915] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), - [5918] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(86), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [5923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [5925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [5927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(749), - [5929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), - [5931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(706), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), - [5939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(795), - [5943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(842), - [5945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [5947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), - [5949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [5951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), - [5953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(816), - [5955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), - [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(833), - [5959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(761), - [5961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [5965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [5967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(836), - [5969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(843), - [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), - [5973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [5981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(87), - [5984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1551), - [5986] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(98), - [5989] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(98), - [5992] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(98), - [5995] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [5999] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [6003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2040), - [6005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [6007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), - [6009] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(78), - [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [6014] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(100), - [6017] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(94), - [6020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(100), - [6023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3359), - [6025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), - [6027] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(78), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(583), - [6032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), - [6038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(780), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(557), - [6044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [6046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), - [6050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), - [6052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [6056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(578), - [6058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [6060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1795), - [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1796), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), - [6066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3455), - [6070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(100), - [6073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 67), - [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [6077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1862), - [6081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5687), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), - [6085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2319), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(760), - [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(743), - [6093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [6095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), - [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), - [6101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(96), - [6104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [6106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), - [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2531), - [6110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), - [6112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), - [6114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(78), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3283), - [6119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1415), - [6121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(756), - [6123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), - [6125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [6127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), - [6129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(732), - [6131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [6133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(691), - [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3282), - [6137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(96), - [6140] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(96), - [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2496), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1213), - [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), - [6151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(94), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4195), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2255), - [6158] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(94), - [6161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), - [6163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [6165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [6167] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), - [6170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), - [6172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [6174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(520), - [6176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), - [6178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), - [6180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(682), - [6182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), - [6184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), - [6186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [6188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(515), - [6190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(513), - [6192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(512), - [6194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(509), - [6196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), - [6198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [6202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(707), - [6204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), - [6206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4375), - [6208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), - [6214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3555), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [6218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), - [6220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3544), - [6222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), - [6224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3551), - [6226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [6228] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 24), REDUCE(sym_object_pattern, 3, .production_id = 25), - [6231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 25), - [6233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), - [6235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1421), - [6237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(609), - [6239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [6241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(608), - [6243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(819), - [6245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(604), - [6247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(603), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), - [6251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(604), - [6253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(603), - [6255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(602), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(608), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(586), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), - [6267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3645), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), - [6273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 46), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3646), - [6279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(83), - [6282] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(88), - [6285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), - [6287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 64), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), - [6293] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), - [6296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), - [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [6300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(82), - [6303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [6305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), - [6311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3955), - [6314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3807), - [6317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), - [6319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(472), - [6322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3555), - [6325] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5578), - [6328] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4782), - [6331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4797), - [6334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3850), - [6337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5068), - [6340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3556), - [6343] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3544), - [6346] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3662), - [6349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3551), - [6352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3597), - [6355] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3788), - [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1135), - [6360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), - [6362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), - [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), - [6368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4661), - [6376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4660), - [6378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), - [6380] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), - [6383] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [6387] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), - [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [6392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [6396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(570), - [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [6400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), - [6402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [6404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(646), - [6406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [6408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [6410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), - [6412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(610), - [6414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(627), - [6416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), - [6418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), - [6420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), - [6422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(653), - [6424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [6426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), - [6428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [6430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [6432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [6434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [6436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [6438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [6440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2283), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), - [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), - [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2268), - [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), - [6457] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(83), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), - [6462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3440), - [6464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2055), - [6466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [6468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [6470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), - [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(88), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [6483] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(88), - [6486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(82), - [6489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4654), - [6491] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), - [6494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4667), - [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(742), - [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(532), - [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), - [6508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(754), - [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(614), - [6512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), - [6514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1812), - [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(685), - [6518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(701), - [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [6522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [6524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(703), - [6526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), - [6528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(710), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), - [6536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(710), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(714), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(703), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [6550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), - [6556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3641), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), - [6560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), - [6564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), - [6566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), - [6570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [6573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), - [6575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4271), - [6580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [6586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [6588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(511), - [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1851), - [6602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1848), - [6604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [6608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), - [6610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1639), - [6612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [6614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), - [6619] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), - [6624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [6626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(99), - [6629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(99), - [6632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [6634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(95), - [6637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), - [6639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), - [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), - [6643] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(95), - [6646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(786), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), - [6650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(880), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [6654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(95), - [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(611), - [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), - [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(759), - [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(744), - [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), - [6667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(99), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(734), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1860), - [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1884), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1674), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1717), - [6684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1720), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), - [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5729), - [6690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4702), - [6694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), - [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3564), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [6710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3676), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [6716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3591), - [6718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4019), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), - [6728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3687), - [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3819), - [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [6734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3623), - [6736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), - [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), - [6740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), - [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [6746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), - [6748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), - [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [6754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), - [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4231), - [6760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), - [6762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1835), - [6764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1743), - [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1749), - [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1746), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4346), - [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [6780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), - [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [6790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), - [6792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4366), - [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4256), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4347), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3581), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4339), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), - [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5018), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4406), - [6828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), - [6830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [6842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3605), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3894), - [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3595), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [6852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), - [6854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4133), - [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), - [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4681), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3587), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), - [6872] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), - [6874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), - [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5533), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4362), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [6886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4022), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4344), - [6890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), - [6892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4215), - [6896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), - [6898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), - [6900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3712), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3736), - [6904] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 50), - [6906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 50), - [6908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), - [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3690), - [6917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), - [6919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), - [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4475), - [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4500), + [5101] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(100), + [5104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_await_expression, 2), + [5106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arrow_function, 4, .production_id = 84), + [5108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 2, .production_id = 15), + [5110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 2, .production_id = 15), + [5112] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(100), + [5115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(80), + [5118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 5, .production_id = 118), + [5120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 5, .production_id = 118), + [5122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 4), + [5124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 4), + [5126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 5, .production_id = 107), + [5128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 5, .production_id = 107), + [5130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 2, .production_id = 10), + [5132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 2, .production_id = 10), + [5134] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 52), + [5136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 52), + [5138] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 3, .production_id = 53), + [5140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 3, .production_id = 53), + [5142] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 94), + [5144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 94), + [5146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 3, .production_id = 54), + [5148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 93), + [5150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 93), + [5152] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1), + [5155] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__primary_type, 1), + [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_type, 3), + [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_type, 3), + [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 3), + [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 3), + [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_call_expression, 4, .production_id = 90), + [5168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_expression, 4, .production_id = 90), + [5170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 76), + [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nested_type_identifier, 3, .production_id = 76), + [5174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_nested_identifier, 3), REDUCE(sym_nested_type_identifier, 3, .production_id = 76), + [5177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_template_string, 2), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_string, 2), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 3), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 3), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_intersection_type, 3), + [5187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_intersection_type, 3), + [5189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array_type, 3), + [5191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_type, 3), + [5193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_constructor_type, 5), + [5195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constructor_type, 5), + [5197] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 5), + [5199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 5), + [5201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arguments, 3), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arguments, 3), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_new_expression, 4, .production_id = 87), + [5207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_new_expression, 4, .production_id = 87), + [5209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_generator_function, 4, .production_id = 82), + [5211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_generator_function, 4, .production_id = 82), + [5213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 84), + [5215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 83), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function, 4, .production_id = 82), + [5219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function, 4, .production_id = 82), + [5221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_arrow_function, 4, .production_id = 81), + [5223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [5226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym_literal_type, 1), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 4, .production_id = 80), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 4, .production_id = 80), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_regex, 4, .production_id = 77), + [5235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_regex, 4, .production_id = 77), + [5237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_class, 3, .production_id = 57), + [5239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class, 3, .production_id = 57), + [5241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_tuple_type, 4), + [5243] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_type, 4), + [5245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3), + [5247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3), + [5249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_lookup_type, 4), + [5251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_lookup_type, 4), + [5253] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(80), + [5256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_type, 4), + [5258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_type, 4), + [5260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 4), + [5262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 4), + [5264] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4), + [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4), + [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_object, 4, .production_id = 24), + [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object, 4, .production_id = 24), + [5272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(805), + [5274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [5276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1513), + [5278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [5280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(803), + [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), + [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(802), + [5288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5386), + [5290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5051), + [5292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(901), + [5294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [5296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(753), + [5298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [5300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), + [5302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(753), + [5304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(782), + [5306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(517), + [5308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [5310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(742), + [5312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2974), + [5314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), + [5316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [5318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [5320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3608), + [5322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3615), + [5324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3614), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3664), + [5328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3691), + [5330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), + [5335] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(84), + [5338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), + [5340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), + [5342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3625), + [5344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3623), + [5346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), + [5348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3661), + [5350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), + [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4046), + [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2346), + [5356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3567), + [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3565), + [5360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3563), + [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3662), + [5364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), + [5366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4019), + [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3617), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3616), + [5374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3613), + [5376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3665), + [5378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3706), + [5380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), + [5382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2211), + [5384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3585), + [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), + [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3589), + [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3678), + [5392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3694), + [5394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4014), + [5396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2752), + [5398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3561), + [5400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [5402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3558), + [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3660), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3700), + [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4040), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3456), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3572), + [5414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3557), + [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3670), + [5420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3699), + [5422] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [5425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4012), + [5427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3020), + [5429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3602), + [5431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3603), + [5433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3604), + [5435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3651), + [5437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3697), + [5439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), + [5441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(84), + [5444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object, 3, .production_id = 24), REDUCE(sym_object_pattern, 3, .production_id = 25), + [5447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), + [5449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [5451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3636), + [5453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3637), + [5455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3638), + [5457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), + [5459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [5461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4032), + [5463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2527), + [5465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3630), + [5467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3631), + [5469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3632), + [5471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3652), + [5473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3696), + [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), + [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3644), + [5479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3649), + [5481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3648), + [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3627), + [5485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3654), + [5487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3693), + [5489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [5491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [5493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(84), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(859), + [5498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), + [5502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(856), + [5504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), + [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), + [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), + [5512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [5514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(854), + [5516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [5530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(544), + [5532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [5534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(543), + [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(908), + [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), + [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), + [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(545), + [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(542), + [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(540), + [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(539), + [5552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), + [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(538), + [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [5558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_augmented_assignment_expression, 3, .production_id = 46), + [5560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(634), + [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [5566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(638), + [5568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(688), + [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [5572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(641), + [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), + [5576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(640), + [5578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(641), + [5580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(642), + [5582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(644), + [5584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), + [5586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(645), + [5588] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(86), + [5591] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(93), + [5594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [5596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_sequence_expression, 3, .production_id = 46), + [5598] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(89), + [5601] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(93), + [5604] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 46), + [5606] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(93), + [5609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1946), + [5611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), + [5613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [5615] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_ternary_expression, 5, .production_id = 114), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 3), + [5619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_assignment_expression, 3, .production_id = 20), + [5621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(89), + [5624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), + [5626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(89), + [5629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(86), + [5632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_yield_expression, 2), + [5634] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(86), + [5637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_await_expression, 2), + [5639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(882), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [5643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(883), + [5645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [5647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(884), + [5649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [5651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(885), + [5659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(886), + [5661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(887), + [5663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(890), + [5669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(97), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5253), + [5674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [5678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3686), + [5680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3688), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3689), + [5684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3702), + [5686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [5688] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(81), + [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(678), + [5695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), + [5697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), + [5699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(824), + [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(765), + [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(757), + [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(762), + [5711] = {.entry = {.count = 1, .reusable = false}}, SHIFT(757), + [5713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(752), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [5719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), + [5721] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(81), + [5724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), + [5726] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_spread_element, 2), + [5728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(766), + [5730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1450), + [5732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(767), + [5734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), + [5736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(898), + [5740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(769), + [5742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), + [5746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(770), + [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), + [5752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(772), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [5756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(773), + [5758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [5760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5709), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2840), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(660), + [5766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 2), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [5770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(657), + [5772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [5774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(647), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(806), + [5778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(637), + [5786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(636), + [5788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(633), + [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(630), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(647), + [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(628), + [5796] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(81), + [5799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1612), + [5801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [5803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), + [5805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [5807] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), REDUCE(sym_assignment_expression, 3, .production_id = 20), + [5810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), + [5812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 63), REDUCE(sym_assignment_expression, 3, .production_id = 46), + [5815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 46), REDUCE(sym_assignment_expression, 3, .production_id = 46), + [5818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_assignment_pattern, 3, .production_id = 46), + [5820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(90), + [5823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(90), + [5826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2009), + [5828] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(90), + [5831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), + [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [5839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(617), + [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(788), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(613), + [5847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(622), + [5849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(616), + [5851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(613), + [5853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(612), + [5855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(607), + [5857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(617), + [5859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), + [5861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [5863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), + [5865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [5867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), + [5869] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(88), + [5872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5427), + [5874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5086), + [5876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [5878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1423), + [5880] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2026), + [5882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(529), + [5884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(88), + [5886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), + [5888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(911), + [5890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [5892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(526), + [5894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), + [5896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), + [5902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(522), + [5904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(528), + [5906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [5908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), + [5910] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(88), + [5913] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(88), + [5916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 2), + [5918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 2), + [5920] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_readonly_type, 2), + [5922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_readonly_type, 2), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(492), + [5926] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 2), + [5928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [5930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(741), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [5934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(740), + [5936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [5938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(736), + [5940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [5942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [5944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(736), + [5946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(735), + [5948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), + [5950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(733), + [5952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(740), + [5954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), + [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [5958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1925), + [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1817), + [5962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(82), + [5965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_union_type, 3), + [5967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_union_type, 3), + [5969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(82), + [5972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(82), + [5975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_type, 7, .production_id = 162), + [5977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_type, 7, .production_id = 162), + [5979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [5981] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(97), + [5984] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(97), + [5987] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [5991] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [5995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_predicate, 3), + [5997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate, 3), + [5999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [6001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(95), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2969), + [6006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1731), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2441), + [6020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1635), + [6022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1789), + [6024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), + [6026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(872), + [6028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), + [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(78), + [6034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(870), + [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), + [6040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(872), + [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [6046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(823), + [6048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(759), + [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [6052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), + [6054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), + [6056] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(78), + [6059] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(83), + [6062] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(83), + [6065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [6067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), + [6069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1821), + [6071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [6073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(663), + [6075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(702), + [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(711), + [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(677), + [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(713), + [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [6087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(713), + [6091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(717), + [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(727), + [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(747), + [6097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [6099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), + [6101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2520), + [6103] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(99), + [6106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [6108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(99), + [6111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [6113] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__initializer, 2, .production_id = 67), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3280), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [6119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(99), + [6122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1838), + [6124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), + [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [6128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(83), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), + [6133] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4882), + [6137] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(78), + [6140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3371), + [6142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(78), + [6145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(95), + [6148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4176), + [6150] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(95), + [6153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_extends_clause_repeat1, 2), + [6157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2830), + [6159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2304), + [6161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(809), + [6163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [6167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(812), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [6171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(815), + [6173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [6177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [6179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [6181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), + [6183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), + [6185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(813), + [6187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), + [6189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [6193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(547), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [6197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), + [6199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(568), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(667), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(716), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), + [6207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(667), + [6209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(716), + [6211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(750), + [6213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(574), + [6217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [6219] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(79), + [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [6224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 2), REDUCE(sym_object_pattern, 2), + [6227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 2), + [6229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_object, 3, .production_id = 24), REDUCE(sym_object_pattern, 3, .production_id = 25), + [6232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3, .production_id = 25), + [6234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), + [6236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), + [6244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3594), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), + [6248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3593), + [6250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [6252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3675), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3520), + [6256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3794), + [6258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 2), REDUCE(sym_array_pattern, 2), + [6261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 2), + [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4533), + [6265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), + [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), + [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), + [6271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [6273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), + [6277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3640), + [6279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [6281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3553), + [6283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3666), + [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), + [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3326), + [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2318), + [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [6293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4495), + [6297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), + [6299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [6301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4547), + [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4549), + [6305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(91), + [6308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(91), + [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), + [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), + [6317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), + [6319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), + [6321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(873), + [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), + [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(594), + [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(599), + [6329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(595), + [6331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), + [6333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), + [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(592), + [6337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(596), + [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(589), + [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1317), + [6343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), + [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4539), + [6347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2019), + [6351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(91), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), + [6360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(94), + [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2308), + [6365] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(94), + [6368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3372), + [6370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(94), + [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2825), + [6375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), + [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), + [6383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2036), + [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5659), + [6389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4782), + [6393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1647), + [6395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1958), + [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1953), + [6399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair, 3, .production_id = 64), + [6401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_pattern, 3, .production_id = 46), + [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [6407] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3958), + [6410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3817), + [6413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), + [6415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(410), + [6418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3594), + [6421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5588), + [6424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4789), + [6427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(4803), + [6430] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3856), + [6433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(5106), + [6436] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3593), + [6439] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3519), + [6442] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3675), + [6445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3520), + [6448] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3620), + [6451] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), SHIFT_REPEAT(3794), + [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [6458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__parameter_name, 1), + [6460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), + [6463] = {.entry = {.count = 3, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [6467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__parameter_name, 1), + [6470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [6472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), + [6474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), + [6478] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(79), + [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), + [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3316), + [6489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(79), + [6492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [6494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(699), + [6496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(691), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(689), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(707), + [6506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [6508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(686), + [6510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(699), + [6512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(687), + [6514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(686), + [6516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(684), + [6518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [6520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), + [6522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(672), + [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), + [6526] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(98), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(654), + [6531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(692), + [6533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(98), + [6535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(693), + [6537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(712), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(705), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(700), + [6547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(705), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(726), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(731), + [6557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1883), + [6559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1879), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [6565] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(98), + [6568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1812), + [6570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1832), + [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), + [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), + [6576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1803), + [6578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1761), + [6582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [6585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__property_name, 1), + [6587] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_primary_expression, 1), REDUCE(sym__property_name, 1), + [6590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [6592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 49), SHIFT(87), + [6595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [6599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [6603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3635), + [6605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), + [6607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), + [6609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3634), + [6611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4325), + [6613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(819), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [6619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [6621] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_unary_expression, 2, .production_id = 8), SHIFT(87), + [6624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(87), + [6627] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [6630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_computed_property_name, 3), + [6632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_array, 3), REDUCE(sym_computed_property_name, 3), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4138), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(866), + [6643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1857), + [6645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1865), + [6647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(619), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(556), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), + [6659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(893), + [6665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), + [6669] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_update_expression, 2, .production_id = 8), SHIFT(98), + [6672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1662), + [6674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1684), + [6676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1729), + [6678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), + [6680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1741), + [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1740), + [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), + [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [6688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3612), + [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [6692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3658), + [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), + [6698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3698), + [6700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3684), + [6702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [6704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3626), + [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), + [6712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [6714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3556), + [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3663), + [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), + [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4253), + [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5681), + [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [6730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3596), + [6732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3673), + [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [6738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1944), + [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [6742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [6744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), + [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), + [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), + [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3584), + [6756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [6758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3674), + [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4568), + [6762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3730), + [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), + [6766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3714), + [6768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1922), + [6770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1961), + [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1954), + [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), + [6776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4583), + [6780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4408), + [6784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3766), + [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3611), + [6788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4337), + [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3763), + [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), + [6796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), + [6798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [6800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3599), + [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4317), + [6806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [6808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3606), + [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [6812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3677), + [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4197), + [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3021), + [6818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4409), + [6822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3775), + [6824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4363), + [6826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4277), + [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4179), + [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), + [6834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), + [6836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3643), + [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [6840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3576), + [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [6844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3569), + [6846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3672), + [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), + [6850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), + [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3679), + [6856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), + [6858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [6860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), + [6864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4322), + [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [6868] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator, 2), + [6870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator, 2), + [6872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [6874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), + [6876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4393), + [6878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4034), + [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4374), + [6884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), + [6886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 50), + [6888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_member_expression, 3, .production_id = 50), + [6890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), + [6893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [6895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 1), + [6897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3703), + [6899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [6901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [6903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3692), + [6905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), + [6907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3752), + [6909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2, .production_id = 24), + [6911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3667), + [6913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [6915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3701), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [6919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4672), + [6921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), + [6923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3971), + [6925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4638), + [6927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3711), + [6929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), [6931] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 15), [6933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decorator_call_expression, 2, .production_id = 15), - [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3996), - [6939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4445), - [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3713), - [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), - [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4284), - [6949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [6951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), - [6953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), - [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), - [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), - [6959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), - [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [6963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3724), - [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3757), - [6967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 86), - [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 86), - [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), - [6973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3737), - [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3733), - [6977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 97), - [6979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 97), - [6981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 109), - [6983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 109), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [6937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [6939] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 1), + [6941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_class_body_repeat1, 1), + [6943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 97), + [6947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 97), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3739), + [6951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [6953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4381), + [6955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [6957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 122), + [6959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 122), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4201), + [6963] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 109), + [6965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 109), + [6967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 134), + [6969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 134), + [6971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 139), + [6973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 139), + [6975] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 4, .production_id = 86), + [6977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 4, .production_id = 86), + [6979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), + [6981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3759), [6985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 154), [6987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 154), - [6989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 5, .production_id = 122), - [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 5, .production_id = 122), - [6993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 155), - [6995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 155), - [6997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), - [6999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 168), - [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 168), - [7003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 169), - [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 169), - [7007] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 65), - [7009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 65), - [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), - [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), - [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), - [7017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 139), - [7019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 139), - [7021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 6, .production_id = 134), - [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 6, .production_id = 134), - [7025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 177), - [7027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 177), - [7029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), - [7031] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3871), - [7034] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3950), - [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), - [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4364), - [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4676), - [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), - [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4670), - [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [7053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), - [7055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [7057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4489), - [7061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3633), - [7063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), - [7065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), - [7067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4633), - [7069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3726), - [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4477), - [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3656), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3655), - [7085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3582), - [7087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), - [7089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), - [7091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), SHIFT_REPEAT(5068), - [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [7096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3657), - [7100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3707), - [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3695), - [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3683), - [7106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [7108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3619), - [7110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [7112] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), - [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [7116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1895), - [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(638), - [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(878), - [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), - [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), - [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(567), - [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(577), - [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(858), - [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(875), - [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), - [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), - [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), - [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(655), - [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), - [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(642), - [7164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), - [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), - [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), - [7172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 61), - [7174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5814), - [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1767), - [7184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 101), - [7186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4144), - [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [7190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 129), - [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), - [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), - [7196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 129), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1915), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3919), - [7206] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 11), - [7209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(5431), - [7212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 61), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), - [7216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), - [7218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), - [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), - [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 101), - [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), - [7232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [7234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), - [7236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [7238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_type_parameter, 1, .production_id = 11), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), - [7243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(1896), - [7246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3918), - [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 129), - [7250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 61), - [7252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), - [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [6989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 7, .production_id = 155), + [6991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 7, .production_id = 155), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [6995] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 168), + [6997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 168), + [6999] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 8, .production_id = 169), + [7001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 8, .production_id = 169), + [7003] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 9, .production_id = 177), + [7005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 9, .production_id = 177), + [7007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3737), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), + [7013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3753), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(471), + [7019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3727), + [7021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_method_definition, 3, .production_id = 65), + [7023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_definition, 3, .production_id = 65), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4413), + [7027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), + [7033] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3962), + [7036] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 1), SHIFT(3892), + [7039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4417), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4864), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4513), + [7047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4655), + [7049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), + [7051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), + [7053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3597), + [7055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3532), + [7057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3791), + [7059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [7061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4692), + [7063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_class_body_repeat1, 2), + [7065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [7067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3749), + [7069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3629), + [7071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3628), + [7073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4717), + [7075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3710), + [7077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [7079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3682), + [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [7083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3659), + [7089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), + [7091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), + [7093] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 2, .production_id = 18), SHIFT_REPEAT(5106), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), + [7098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3799), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3668), + [7104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3669), + [7106] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [7108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_statement_repeat1, 1, .production_id = 2), + [7110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5287), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5611), + [7114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5576), + [7118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(774), + [7120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [7122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [7126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(602), + [7128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(537), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), + [7132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(646), + [7136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(729), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [7144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [7150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(758), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), + [7154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(685), + [7156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), + [7158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [7160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), + [7166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 61), + [7168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [7170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1885), + [7172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), + [7174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 101), + [7176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), + [7178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3903), + [7180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 1, .production_id = 5), + [7182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4134), + [7184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3917), + [7186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 129), + [7188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4250), + [7190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [7192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3909), + [7194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3905), + [7196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 101), + [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), + [7200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), + [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1776), + [7204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_type_parameter, 1, .production_id = 11), + [7207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [7209] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(1675), + [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), + [7214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 129), + [7216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [7218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 1, .production_id = 5), + [7220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [7222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [7224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3900), + [7226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 61), + [7228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3899), + [7230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [7232] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), REDUCE(sym__primary_type, 1, .production_id = 11), + [7235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), SHIFT(5441), + [7238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [7240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), + [7242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 61), + [7246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 129), + [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 129), + [7250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 101), + [7252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 101), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), + [7256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 61), [7258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 5), - [7260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), - [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 101), - [7264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 129), - [7266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 101), - [7268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 61), - [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), - [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), - [7274] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_rest_pattern, 2), - [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1820), - [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1732), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1668), - [7283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4929), - [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5761), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), - [7293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1904), - [7303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4047), - [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3017), - [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [7313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [7315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1990), - [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), - [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), - [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5374), - [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), - [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), - [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [7331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3166), - [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), - [7339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), - [7341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), - [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), - [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3043), - [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4034), - [7349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), - [7351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4030), - [7353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), - [7355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3158), - [7359] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), - [7362] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), - [7364] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), - [7367] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym_predefined_type, 1), - [7370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), - [7372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), REDUCE(sym__parameter_name, 2), - [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), - [7377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), - [7380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), - [7382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3072), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [7386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [7388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), - [7390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), - [7392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), - [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 25), - [7396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 151), - [7398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4238), - [7400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), - [7402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [7406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), - [7410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), - [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [7418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [7424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), - [7426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1968), - [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1952), - [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1775), - [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5745), - [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5722), - [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4082), - [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4383), - [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3583), - [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), - [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4601), - [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), - [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), - [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), - [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [7460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [7466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4425), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [7472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1723), - [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), - [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1919), - [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1602), - [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), - [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4436), - [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4719), - [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), - [7494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 75), - [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), - [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), - [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4418), - [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2047), - [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), - [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2052), - [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4455), - [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4559), - [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), - [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(476), - [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4471), - [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4369), - [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [7538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4384), - [7540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), - [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [7544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5452), - [7546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [7548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 11), - [7550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 85), - [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 103), - [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4127), - [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5650), - [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), - [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), - [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), - [7564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), - [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), - [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(643), - [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 9), - [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), - [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), - [7578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), - [7580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 126), - [7582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 108), - [7584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 151), - [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4587), - [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), - [7590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 143), - [7592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), - [7594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 144), - [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 159), - [7598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 160), - [7600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), - [7602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 170), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 172), - [7606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 179), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4453), - [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [7616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1693), - [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4561), - [7628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), - [7630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [7636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2260), - [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), - [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4520), - [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), - [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), - [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), - [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1889), - [7652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1888), - [7654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4307), - [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2454), - [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 16), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [7674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), - [7676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [7678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4456), - [7680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2515), - [7684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(5460), - [7687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), - [7689] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(333), - [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), - [7694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(4307), - [7697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), - [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(452), - [7702] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), - [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), - [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4523), - [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2144), - [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), - [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4358), - [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3296), - [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), - [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), - [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4511), - [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), - [7732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 55), - [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), - [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4421), - [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4580), - [7740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), - [7742] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(2212), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [7749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2286), - [7751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [7753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), - [7755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), - [7757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1818), - [7759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), - [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [7763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [7765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2247), - [7767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1568), - [7769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2320), - [7771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), - [7775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), - [7777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [7779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(700), - [7782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [7784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [7786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3934), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3407), - [7790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4181), - [7792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4472), - [7794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1822), - [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4538), - [7798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), - [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3987), - [7802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), - [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4429), - [7806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), - [7808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4431), - [7810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), - [7812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5460), - [7814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [7816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [7818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4497), - [7820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), - [7822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), - [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [7826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [7828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), - [7832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [7834] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 9), - [7836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), - [7838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2574), - [7840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4718), - [7842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [7844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), - [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4454), - [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5674), - [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), - [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), - [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), - [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), - [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), - [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4444), - [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), - [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), - [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3467), - [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), - [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), - [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4116), - [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), - [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), - [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4552), - [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4602), - [7900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [7260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 5), + [7262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [7264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), + [7268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [7270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1, .production_id = 11), REDUCE(sym_rest_pattern, 2), + [7273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1511), + [7275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [7277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), + [7279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [7283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 1, .production_id = 5), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5348), + [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4057), + [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3161), + [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1638), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [7297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1858), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), + [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3054), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4007), + [7309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [7311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3050), + [7313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4050), + [7315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4055), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4024), + [7319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), + [7321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [7323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [7325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4054), + [7327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [7329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4041), + [7331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), + [7333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), + [7337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [7339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4984), + [7341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [7343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [7345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), + [7347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [7349] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_object_pattern, 2), REDUCE(sym_object_type, 2), + [7352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), + [7354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [7358] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1, .production_id = 1), REDUCE(sym_predefined_type, 1), + [7361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 1), + [7363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__parameter_name, 1), REDUCE(sym__primary_type, 1), + [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), + [7368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 151), + [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4266), + [7372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 3), + [7374] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_array_pattern, 2), REDUCE(sym_tuple_type, 2), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3197), + [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_annotation, 2), + [7381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 3), + [7383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4, .production_id = 25), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), + [7387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_object_pattern, 4), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2), + [7391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__primary_type, 1), REDUCE(sym__parameter_name, 2), + [7394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1751), + [7396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), + [7398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array_pattern, 4), + [7400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [7402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1778), + [7406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), + [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3729), + [7412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [7414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), + [7416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1897), + [7418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), + [7420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [7422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [7424] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_omitting_type_annotation, 2), + [7426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_opting_type_annotation, 2), + [7428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [7430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5627), + [7432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), + [7434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [7438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), + [7442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 144), + [7444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 8, .production_id = 179), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 5, .production_id = 143), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [7452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 159), + [7454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [7458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3600), + [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 126), + [7462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [7464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4328), + [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 6, .production_id = 160), + [7468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 170), + [7470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 7, .production_id = 172), + [7472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 3), + [7474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1877), + [7476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), + [7478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [7480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1975), + [7484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 4, .production_id = 108), + [7486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), + [7488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4338), + [7490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [7492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [7494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), + [7496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [7498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [7500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [7502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), + [7504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1848), + [7506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1648), + [7508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), + [7510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4682), + [7512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4291), + [7514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4589), + [7516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4345), + [7518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2059), + [7520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2062), + [7524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 5), + [7526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4694), + [7528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), + [7530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [7534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1628), + [7536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_asserts, 3), + [7538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 2), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [7542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [7544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 103), + [7546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 4), + [7548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), + [7550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4370), + [7552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 3, .production_id = 85), + [7554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4569), + [7556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), + [7558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(504), + [7560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [7562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [7564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 1, .production_id = 9), + [7566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [7568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), + [7570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 3), + [7572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4597), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4305), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4392), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4327), + [7594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [7596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_method_signature, 2, .production_id = 75), + [7598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4117), + [7600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [7602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1321), + [7604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [7606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [7608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 151), + [7610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), + [7614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 1, .production_id = 11), + [7616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_formal_parameters, 2), + [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1982), + [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [7624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2194), + [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), + [7628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 2), + [7630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1762), + [7632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), + [7634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [7636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__extends_type, 1), + [7638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), + [7640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), + [7642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [7644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), + [7646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), + [7648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2296), + [7650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), + [7652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), + [7654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [7656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [7658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), + [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4698), + [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), + [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2393), + [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2143), + [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), + [7674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(4298), + [7677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), + [7679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_template_string_repeat1, 2), SHIFT_REPEAT(323), + [7682] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__tuple_type_member, 1), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), + [7686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), + [7690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4600), + [7692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4678), + [7694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), + [7696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4869), + [7698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2149), + [7700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 2, .production_id = 9), + [7702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [7704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4677), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4432), + [7708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4433), + [7710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5470), + [7712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), + [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [7718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), + [7720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4089), + [7722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4434), + [7724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), + [7726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), + [7728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), + [7732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), + [7734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4618), + [7736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4438), + [7738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4440), + [7740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_constraint, 2), + [7742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4649), + [7744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4450), + [7746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 16), + [7748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), + [7752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4612), + [7754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(5470), + [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), + [7759] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_switch_body_repeat1, 2), SHIFT_REPEAT(430), + [7762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), + [7764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), + [7766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1988), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1989), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4712), + [7772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1759), + [7774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [7776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), SHIFT_REPEAT(2259), + [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_type_repeat1, 2), + [7783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [7785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2214), + [7787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1515), + [7791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [7793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), + [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [7797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [7801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4683), + [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3709), + [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), + [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5691), + [7809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), + [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [7813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [7815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [7819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [7821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), + [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [7825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [7827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [7829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__call_signature, 3, .production_id = 55), + [7831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [7833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_predicate_annotation, 2), + [7835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4576), + [7839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__extends_type, 1), + [7841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1840), + [7843] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(861), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4208), + [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), + [7850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [7852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [7854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2826), + [7856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4558), + [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [7860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [7864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [7866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [7868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [7870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [7874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2850), + [7878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), + [7880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3718), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [7888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4445), + [7890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4691), + [7892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), + [7894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2132), + [7896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4367), + [7898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2445), + [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4424), [7902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4447), - [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 175), - [7912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [7914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5665), - [7916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [7918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1582), - [7921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1964), - [7924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1499), - [7927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1947), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), - [7932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 27), - [7934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 9), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 37), - [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), - [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [7946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1473), - [7949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4349), - [7951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), - [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), - [7959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 9), - [7961] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 27), - [7963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), - [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), - [7967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), - [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), - [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), - [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [7977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), - [7979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [7983] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1833), - [7986] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1529), - [7989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), - [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), - [7993] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 27), - [7995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5649), - [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 9), - [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 102), - [8001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 68), - [8003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), - [8005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 102), - [8007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 68), - [8009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1740), - [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), - [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [8016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1620), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), - [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 127), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 128), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 127), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [8030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5509), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5731), - [8034] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 145), - [8036] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), - [8038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 146), - [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 145), - [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 146), - [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 128), - [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 157), - [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 158), - [8052] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 161), - [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 161), - [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 167), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [8060] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 171), - [8062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), - [8064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), - [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [8068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 178), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 158), - [8072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [8074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), - [8076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [8078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), - [8080] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1528), - [8083] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1987), - [8086] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1531), - [8089] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1977), - [8092] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1567), - [8095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4628), - [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4626), - [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4627), - [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [8105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [8107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4658), - [8109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), - [8111] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1700), - [8114] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1660), - [8117] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1468), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [8122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4653), - [8124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4651), - [8126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), - [8128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4666), - [8130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1600), - [8133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1556), - [8136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1682), - [8139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), - [8141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1570), - [8144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [8146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4889), - [8148] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [8150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3414), - [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [8154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4318), - [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), - [8158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3469), - [8160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4741), - [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [8166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), - [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), - [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), - [8174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), - [8176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1980), - [8178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [8180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4788), - [8182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), - [8184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3993), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [8188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), - [8190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4122), - [8192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), - [8194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), - [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), - [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4076), - [8202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(934), - [8204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3, .production_id = 38), - [8206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3, .production_id = 38), - [8208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), - [8210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), - [8212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2160), - [8214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [8216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), - [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [8220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1942), - [8222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(947), - [8224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4762), - [8226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4763), - [8228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), - [8230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1741), - [8232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [8234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [8236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5004), - [8238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [8240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1949), - [8242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [8244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [8246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [8248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4769), - [8250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1932), - [8252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), - [8254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2995), - [8256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1924), - [8258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1590), - [8260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2944), - [8262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [8264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), - [8266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 11), - [8270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), - [8272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1878), - [8274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3983), - [8276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [8278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1792), - [8280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), - [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1813), - [8284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4193), - [8286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1174), - [8288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2976), - [8290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2331), - [8292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(241), - [8295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(265), - [8298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), - [8300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [8302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1958), - [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1863), - [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1819), - [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), - [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1865), - [8312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1866), - [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1913), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1976), - [8318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1923), - [8320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [8322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2159), - [8324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2246), - [8326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), - [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), - [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1772), - [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), - [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), - [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [8344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1739), - [8346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [8348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), - [8350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2186), - [8352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1854), - [8360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), - [8364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 9), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [8368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1961), - [8370] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(4193), - [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), - [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), - [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), - [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), - [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), - [8385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [8387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [8389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), - [8391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), - [8393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4725), - [8395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [8397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1164), - [8399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4605), - [8401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), - [8403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [8405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4607), - [8407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4609), - [8409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4233), - [8411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 9), - [8413] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), - [8415] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(4888), - [8418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), - [8420] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4889), - [8423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [8425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), - [8427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [8429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(208), - [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3711), - [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4624), - [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), - [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3872), - [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1734), - [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 11), - [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), - [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), - [8450] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 104), - [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4248), - [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), - [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2279), - [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4146), - [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4148), - [8462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2324), - [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [8468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(3763), - [8471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4696), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), - [8479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [8481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2407), - [8483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), - [8485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4219), - [8487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4485), - [8489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4992), - [8491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), - [8495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), - [8497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4396), - [8501] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1818), - [8504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), - [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [8508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4947), - [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), - [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [8516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5384), - [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3640), - [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3602), - [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), - [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4265), - [8528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), - [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), - [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 61), - [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4996), - [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 26), - [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4492), - [8544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [8546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), - [8548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [8550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), - [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 68), - [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 69), - [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [8558] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(3653), - [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), - [8563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), - [8565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5471), - [8567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5474), - [8571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4213), - [8573] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(3600), - [8576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), - [8578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4706), - [8580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [8582] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(3679), - [8585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), - [8587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2395), - [8589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [8591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), - [8593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), - [8595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1644), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(700), - [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4510), - [8604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(5329), - [8607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), - [8609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 26), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4053), - [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), - [8617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2391), - [8619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4461), - [8621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4306), - [8623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 163), - [8625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), - [8627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5680), - [8629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2572), - [8631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), - [8633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2797), - [8635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), - [8637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(4799), - [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), - [8642] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(4794), - [8645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), - [8647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2803), - [8649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [8651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4451), - [8653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [8655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2290), - [8657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [8659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5451), - [8661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5289), - [8663] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1268), - [8666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), - [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 85), - [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), - [8672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 105), - [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1463), - [8676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), - [8678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 69), - [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3780), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3612), - [8686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [8688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3716), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [8692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4061), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3295), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3339), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3642), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4680), - [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1460), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1983), - [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 130), - [8712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 131), - [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4280), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3651), - [8720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1496), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5328), - [8730] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 132), - [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 108), - [8734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 126), - [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [8738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [8740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 133), - [8742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3338), - [8744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3351), - [8746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [8748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [8750] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), - [8752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), - [8754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), - [8756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [8758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(3786), - [8761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [8763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(750), - [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1914), - [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), - [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), - [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), - [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [8782] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 147), - [8784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 148), - [8786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [8788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 149), - [8790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 180), - [8792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), - [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 143), - [8796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), - [8798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 176), - [8800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 174), - [8802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 173), - [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 144), - [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 150), - [8808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [8810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [8812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 159), - [8814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 164), - [8816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), - [8818] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 166), - [8820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 165), - [8824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), - [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5669), - [8838] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), - [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1190), - [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), - [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4368), - [8846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4462), - [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), - [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4449), - [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), - [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), - [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4463), - [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), - [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), - [8882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 120), - [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4641), - [8886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 112), - [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), - [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [8894] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3), - [8896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 31), - [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(451), - [8900] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 99), - [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [8906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [8910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 66), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4622), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4621), - [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4620), - [8918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4619), - [8920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 62), - [8922] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 95), - [8924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4637), - [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 58), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4970), - [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 11), - [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), - [8938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2), - [8940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 64), - [8942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [8944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 73), - [8950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 73), - [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1783), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1833), - [8956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), - [8974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1890), - [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [8978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), - [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), - [8982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2252), - [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [8986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 66), - [8988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(416), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1552), - [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5471), - [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1804), - [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), - [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4309), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(389), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), - [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1740), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(425), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5379), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2225), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(411), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [7904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), + [7906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3964), + [7908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4400), + [7910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2951), + [7912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), + [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 157), + [7916] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6), + [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 6, .production_id = 158), + [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1432), + [7922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1510), + [7925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 6, .production_id = 161), + [7927] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1701), + [7930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1563), + [7933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [7935] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1658), + [7938] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 161), + [7940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3570), + [7942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 167), + [7944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7, .production_id = 171), + [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 7), + [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 175), + [7950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), + [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 178), + [7954] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 8, .production_id = 158), + [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), + [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [7960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1777), + [7962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [7964] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1507), + [7967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functional_extension, 2), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functional_extension, 2), + [7971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1760), + [7973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2007), + [7975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), + [7977] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1469), + [7980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 146), + [7982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 145), + [7984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1704), + [7987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1711), + [7990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 146), + [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 5), + [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 5, .production_id = 145), + [7996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5823), + [7998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), + [8000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1183), + [8002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [8004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 128), + [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 127), + [8008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [8010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2002), + [8012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1870), + [8014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), + [8016] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 128), + [8018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), + [8020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 4, .production_id = 127), + [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 27), + [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_construct_signature, 4), + [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_index_signature, 4), + [8028] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1827), + [8031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [8033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), + [8035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), + [8037] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1484), + [8040] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 2, .production_id = 9), + [8042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 68), + [8044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 102), + [8048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [8050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [8052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [8054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4525), + [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 5), + [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1171), + [8060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [8062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 68), + [8066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [8068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), + [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_call_signature, 1, .production_id = 37), + [8072] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1887), + [8075] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1531), + [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 3, .production_id = 102), + [8080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [8082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4532), + [8084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4530), + [8086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4531), + [8088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4546), + [8090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 4, .production_id = 9), + [8092] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 3), + [8094] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1619), + [8097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), + [8099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4560), + [8101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [8103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4380), + [8105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1470), + [8108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1984), + [8111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3776), + [8113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [8115] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1574), + [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 27), + [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), + [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameters, 4), + [8124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3), + [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_property_signature, 2, .production_id = 27), + [8128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parameter_name, 3, .production_id = 9), + [8130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1779), + [8133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), + [8135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 2, .production_id = 17), SHIFT(1561), + [8138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1771), + [8141] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__call_signature, 1, .production_id = 3), SHIFT(1498), + [8144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5590), + [8146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_rest_type, 2), + [8148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_type, 2), + [8150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1585), + [8152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), + [8154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2183), + [8156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), + [8158] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [8160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4806), + [8162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), + [8164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), + [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2, .production_id = 25), + [8168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4422), + [8170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [8172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [8174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), SHIFT_REPEAT(4202), + [8177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_variable_declaration_repeat1, 2), + [8179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), + [8181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [8183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2838), + [8185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), + [8187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 9), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1912), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [8193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2156), + [8195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), + [8197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), + [8199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1918), + [8201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), + [8203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1891), + [8205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), + [8207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3966), + [8209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), + [8211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [8213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [8215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1856), + [8217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [8219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), + [8221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [8223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [8225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [8227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), + [8229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4804), + [8231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [8233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1970), + [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_extends_clause, 3), + [8237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1712), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), + [8241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_template_substitution, 3), + [8243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [8245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_extends_clause, 3), + [8247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1994), + [8249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2004), + [8251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4202), + [8253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [8255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3827), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4775), + [8259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), + [8261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(495), + [8263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4029), + [8265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [8267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [8269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [8271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), + [8273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1733), + [8275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat2, 2), + [8279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat2, 2), SHIFT_REPEAT(4802), + [8282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4774), + [8284] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_string_repeat1, 2), + [8286] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2), SHIFT_REPEAT(4804), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1595), + [8291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2249), + [8293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1864), + [8295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), + [8297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), + [8299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [8301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(210), + [8304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), + [8306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1842), + [8308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [8310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [8312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), + [8314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), + [8316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 2, .production_id = 11), + [8320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [8322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [8324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), + [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), + [8330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), + [8332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), + [8334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [8336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [8338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [8340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4410), + [8342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4348), + [8344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2), SHIFT_REPEAT(218), + [8347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2516), + [8351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2334), + [8353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), + [8357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), + [8359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1874), + [8361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1936), + [8363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), + [8365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4851), + [8367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4854), + [8369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), + [8371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), + [8373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [8375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), + [8377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(928), + [8379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4895), + [8381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [8383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 9), + [8387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1705), + [8389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_extends_clause_repeat1, 2), SHIFT_REPEAT(219), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [8394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [8396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), + [8398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4399), + [8404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1948), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mapped_type_clause, 3, .production_id = 11), + [8408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4401), + [8410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4486), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [8414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2480), + [8416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [8418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [8420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [8422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4070), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4503), + [8430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [8432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), + [8434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1593), + [8436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4502), + [8438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [8440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [8442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), + [8444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [8446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1653), + [8448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2269), + [8450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_functional_extension, 3), + [8452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_functional_extension, 3), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2341), + [8458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [8460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5481), + [8464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4642), + [8466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 130), + [8470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), + [8472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [8474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4721), + [8478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [8480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 2, .production_id = 26), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2340), + [8484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 3, .production_id = 85), + [8488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [8490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [8494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 131), + [8496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 132), + [8498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4964), + [8500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [8502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4877), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 108), + [8506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3622), + [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 4, .production_id = 126), + [8510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4224), + [8514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2337), + [8516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4196), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4228), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2219), + [8522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [8524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [8526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 4, .production_id = 133), + [8530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), + [8532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), + [8534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), + [8536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), + [8538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [8540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [8542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3624), + [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 69), + [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 105), + [8548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_enum_body_repeat1, 2), SHIFT_REPEAT(3787), + [8551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4324), + [8553] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pattern, 1, .dynamic_precedence = -1), SHIFT(649), + [8556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1589), + [8558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [8564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 1), + [8566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 3, .production_id = 104), + [8568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [8570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), SHIFT_REPEAT(3626), + [8573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_pattern_repeat1, 2), + [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4663), + [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), + [8579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2477), + [8583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4063), + [8585] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), SHIFT_REPEAT(3690), + [8588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_object_repeat1, 2), + [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), + [8594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4527), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5043), + [8600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3257), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), + [8606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [8608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), + [8610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_pattern_repeat1, 2), SHIFT_REPEAT(3774), + [8613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), SHIFT_REPEAT(1265), + [8616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_tuple_type_repeat1, 2), + [8618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1539), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 2, .production_id = 61), + [8628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), + [8630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2801), + [8632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 1), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1248), + [8636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), + [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 1, .production_id = 5), + [8642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 147), + [8644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [8648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), + [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2293), + [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), + [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4671), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4687), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5090), + [8666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [8668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [8670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [8672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4199), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [8680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 5), + [8682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), SHIFT_REPEAT(4888), + [8685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2), + [8687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), + [8689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 148), + [8691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 2, .production_id = 26), + [8693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 149), + [8695] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), SHIFT_REPEAT(4886), + [8698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2), + [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3328), + [8702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3595), + [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [8706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 5, .production_id = 150), + [8708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 143), + [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 5, .production_id = 144), + [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3639), + [8714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1482), + [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), + [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2967), + [8724] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 4), + [8726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), + [8728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [8730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [8732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_implements_clause, 3), + [8734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [8736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [8738] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), SHIFT_REPEAT(5339), + [8741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_type_parameters_repeat1, 2), + [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4652), + [8745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3336), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3340), + [8749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3582), + [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1850), + [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3356), + [8755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1866), + [8758] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_parameters, 3), + [8760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(706), + [8762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [8764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4289), + [8766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [8768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [8770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5690), + [8772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3657), + [8774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1464), + [8776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [8778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [8780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), + [8782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), + [8784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [8786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 8, .production_id = 180), + [8788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5230), + [8790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [8792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 176), + [8794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 174), + [8796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 7, .production_id = 173), + [8798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [8800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [8802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [8804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_abstract_method_signature, 6, .production_id = 159), + [8806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 164), + [8808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 166), + [8810] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 165), + [8812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), SHIFT_REPEAT(3676), + [8815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_formal_parameters_repeat1, 2), + [8817] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_public_field_definition, 6, .production_id = 163), + [8819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_implements_clause_repeat1, 2), SHIFT_REPEAT(1762), + [8822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 69), + [8824] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declarator, 3, .production_id = 68), + [8826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [8828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4674), + [8830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), + [8832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [8834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), + [8836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), + [8838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [8840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [8842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4557), + [8844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [8846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_require_clause, 6), + [8848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1214), + [8850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4320), + [8852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [8854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), + [8856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5657), + [8858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [8860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), + [8862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4452), + [8864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [8866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3781), + [8868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [8870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [8872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4707), + [8874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), + [8876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [8878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [8880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [8882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [8884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1838), + [8886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [8888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [8890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4494), + [8892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4493), + [8894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [8896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [8898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4499), + [8900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), + [8902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1967), + [8904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [8906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 2, .production_id = 31), + [8908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1810), + [8910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), + [8912] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 4, .production_id = 120), + [8914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_enum_assignment, 2, .production_id = 112), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4521), + [8918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_tuple_parameter, 3), + [8920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [8922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4500), + [8924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 4, .production_id = 99), + [8926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1966), + [8928] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_named_imports_repeat1, 2, .production_id = 66), + [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [8932] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_export_clause_repeat1, 2, .production_id = 62), + [8934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__import_export_specifier, 3, .production_id = 95), + [8936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__from_clause, 2, .production_id = 58), + [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [8940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [8942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_parameter, 3, .production_id = 11), + [8944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pair_pattern, 3, .production_id = 64), + [8946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_type, 2), + [8948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_tuple_parameter, 2), + [8950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1210), + [8952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), + [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [8956] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_required_parameter, 3, .production_id = 73), + [8958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_optional_parameter, 3, .production_id = 73), + [8960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), + [8962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [8964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), + [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(661), + [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), + [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(420), + [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), + [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5551), + [8976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [8978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), + [8980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [8982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import_clause, 3), + [8984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), + [8986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [8988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), + [8990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3, .production_id = 66), + [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [8994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 3), + [8996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1565), + [8998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1742), + [9000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [9002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [9004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), + [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), + [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3881), + [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), + [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(413), + [9016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1843), + [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(745), + [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), + [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(469), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2209), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(470), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1563), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5353), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), + [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1502), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1916), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(362), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(441), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5389), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(600), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), [9064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_namespace_import, 3), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2489), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1770), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(585), - [9100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(488), - [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(385), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), - [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), - [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), - [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2841), - [9130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(419), - [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), - [9138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1529), - [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(891), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2174), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1928), - [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5304), - [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), - [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(541), - [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), - [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5394), - [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4216), - [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [9172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5536), - [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), - [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [9180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 66), - [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [9190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1773), - [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), - [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2292), - [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1476), - [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(889), - [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5732), - [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), - [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1564), - [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), - [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), - [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), - [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), - [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), - [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(536), - [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), - [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), - [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), - [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4414), - [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), - [9246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1959), - [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), - [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), - [9258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2856), - [9264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(422), - [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), - [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1963), - [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), - [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5729), - [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [9282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5757), - [9284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), - [9286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3367), - [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [9290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), - [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4537), - [9294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2648), - [9296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 66), - [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4535), - [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(421), - [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), - [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(708), - [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1960), - [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1826), - [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1859), - [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), - [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1829), - [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4278), - [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1586), - [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(377), - [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), - [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5422), - [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [9350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), - [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [9356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), - [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(382), - [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(436), - [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1943), - [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1591), - [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2430), - [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1938), - [9382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4119), - [9384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3163), - [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1769), - [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1987), - [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), - [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1977), - [9404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3472), - [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1544), - [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1927), - [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1547), - [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), - [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(414), - [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), - [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4136), - [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1488), - [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2012), - [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), - [9428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [9430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1925), - [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1946), - [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4686), - [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(487), - [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), - [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), - [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1481), - [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5345), - [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5503), - [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), - [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), - [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(367), - [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5677), - [9468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), - [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1825), - [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1956), - [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(366), - [9478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3108), - [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), - [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1745), - [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), - [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), - [9490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), - [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(387), - [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), - [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), - [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), - [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(702), - [9502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2184), - [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), - [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [9510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5648), - [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), - [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), - [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5671), - [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1947), - [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1744), - [9528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [9538] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4275), - [9544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), - [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1981), - [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(418), - [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), - [9554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2336), - [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1499), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), - [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5644), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1873), - [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3860), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3334), - [9588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [9590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2353), - [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1582), - [9596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3443), - [9600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4114), - [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), - [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), - [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1517), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(368), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(399), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(868), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(369), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2228), + [9088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2213), + [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2231), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5547), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(402), + [9108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [9110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(400), + [9112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3260), + [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [9116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3935), + [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), + [9120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3938), + [9122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(452), + [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5313), + [9128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_class_heritage, 2), + [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(743), + [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), + [9134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2282), + [9136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5248), + [9138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 4, .production_id = 66), + [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [9142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2982), + [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(629), + [9146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1766), + [9148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2295), + [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1554), + [9154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [9156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [9158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), + [9160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(353), + [9162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(361), + [9164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [9166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [9168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [9170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), + [9172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [9174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [9176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), + [9178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1583), + [9180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 5, .production_id = 66), + [9182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1524), + [9184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), + [9186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [9188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [9190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5621), + [9192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [9194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [9196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [9198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [9200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [9202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [9204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), + [9206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), + [9208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4090), + [9210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), + [9212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), + [9214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1569), + [9216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [9218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(881), + [9220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3364), + [9222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [9224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [9226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1527), + [9228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(485), + [9230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), + [9232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [9234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2060), + [9236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [9238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [9240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [9242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [9244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1779), + [9246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [9248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1937), + [9250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), + [9252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1836), + [9254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1458), + [9256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [9258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_named_imports, 2), + [9260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [9262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), + [9264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2190), + [9266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [9268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1771), + [9270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), + [9272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [9274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5250), + [9276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3346), + [9278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3342), + [9280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [9282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), + [9284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2361), + [9286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), + [9288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4593), + [9290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2926), + [9292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3419), + [9294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5638), + [9296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1516), + [9298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), + [9300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1576), + [9302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), + [9304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2398), + [9306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), + [9308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [9310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(709), + [9312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3995), + [9314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [9316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), + [9318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), + [9320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1567), + [9322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1514), + [9324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4708), + [9326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [9328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [9330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), + [9332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [9334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [9336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5013), + [9338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5416), + [9340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), + [9342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1639), + [9344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [9346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [9348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [9350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5538), + [9352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [9354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [9356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), + [9358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [9360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [9362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4016), + [9364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [9366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(396), + [9368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(395), + [9370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [9372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(437), + [9374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(388), + [9376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [9378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [9380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5828), + [9382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [9384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [9386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1574), + [9388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [9390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3882), + [9392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1507), + [9394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), + [9396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [9398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1711), + [9400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [9404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1867), + [9406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), + [9408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1625), + [9410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [9412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [9414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(392), + [9416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3311), + [9418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), + [9420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), + [9422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1461), + [9424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(448), + [9426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [9428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1581), + [9430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [9432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [9434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1670), + [9436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [9438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1754), + [9440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), + [9442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [9444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1738), + [9446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1459), + [9448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5822), + [9450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [9452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), + [9454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(356), + [9456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [9458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), + [9460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5285), + [9462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), + [9464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1478), + [9466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5821), + [9468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5655), + [9470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [9472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1979), + [9474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), + [9476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1996), + [9478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(869), + [9480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2817), + [9482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), + [9484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(375), + [9486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [9488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [9490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), + [9492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [9494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [9496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1570), + [9498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), + [9500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [9502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [9504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [9506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), + [9508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(483), + [9510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [9512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1906), + [9514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(532), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), + [9520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [9522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [9524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [9526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5686), + [9528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5658), + [9530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), + [9532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4263), + [9534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), + [9536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [9540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(371), + [9542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [9544] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [9546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), + [9548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [9550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5698), + [9552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), + [9554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4013), + [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5284), + [9558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), + [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [9562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [9566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [9568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [9578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), + [9580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4006), + [9584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5333), + [9586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), + [9588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), + [9590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1531), + [9592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [9594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [9596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5773), + [9598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1619), + [9600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5739), + [9602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1934), + [9604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1490), + [9606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [9608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [9610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [9612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [9614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), }; #ifdef __cplusplus